found some untranslatable strings
This commit is contained in:
parent
eef0901f36
commit
381c53b775
3 changed files with 14 additions and 3 deletions
|
|
@ -8,12 +8,12 @@
|
||||||
➔
|
➔
|
||||||
%ul
|
%ul
|
||||||
- if post.public?
|
- if post.public?
|
||||||
the world
|
=t('the_world')
|
||||||
- else
|
- else
|
||||||
- for aspect in current_user.aspects_with_post( post.id )
|
- for aspect in current_user.aspects_with_post( post.id )
|
||||||
%li= link_to aspect.name, aspect
|
%li= link_to aspect.name, aspect
|
||||||
#person_nav_links
|
#person_nav_links
|
||||||
= link_to t('.view_profile'), person_path(person)
|
= link_to t('.view_profile'), person_path(person)
|
||||||
= link_to t('_photos'), person_photos_path(person)
|
= link_to t('_photos'), person_photos_path(person)
|
||||||
= link_to 'status messages', person_status_messages_path(person)
|
= link_to t('.status messages'), person_status_messages_path(person)
|
||||||
= "viewing: #{@post_type.to_s.titleize}" if defined?(@post_type)
|
= "#{t('.viewing')}: #{@post_type.to_s.titleize}" if defined?(@post_type)
|
||||||
|
|
|
||||||
|
|
@ -3,3 +3,4 @@
|
||||||
-# the COPYRIGHT file.
|
-# the COPYRIGHT file.
|
||||||
|
|
||||||
= markdownify(post.message)
|
= markdownify(post.message)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -81,6 +81,8 @@ en:
|
||||||
reshare: "Reshare"
|
reshare: "Reshare"
|
||||||
author_info:
|
author_info:
|
||||||
view_profile: "View profile"
|
view_profile: "View profile"
|
||||||
|
status_messages: "status messages"
|
||||||
|
viewing: "viewing"
|
||||||
add_friend_dropdown:
|
add_friend_dropdown:
|
||||||
add_to: "add to %{aspect}"
|
add_to: "add to %{aspect}"
|
||||||
public_explain:
|
public_explain:
|
||||||
|
|
@ -204,10 +206,15 @@ en:
|
||||||
new_status_message:
|
new_status_message:
|
||||||
tell_me_something_good: "tell me something good"
|
tell_me_something_good: "tell me something good"
|
||||||
oh_yeah: "oh yeah!"
|
oh_yeah: "oh yeah!"
|
||||||
|
status_message:
|
||||||
|
show_comments: "show comments"
|
||||||
|
the_world: "the world"
|
||||||
show:
|
show:
|
||||||
destroy: "Destroy"
|
destroy: "Destroy"
|
||||||
helper:
|
helper:
|
||||||
no_message_to_display: "No message to display."
|
no_message_to_display: "No message to display."
|
||||||
|
index:
|
||||||
|
status_messages: "status messages"
|
||||||
people:
|
people:
|
||||||
person:
|
person:
|
||||||
add_friend: "add friend"
|
add_friend: "add friend"
|
||||||
|
|
@ -224,6 +231,9 @@ en:
|
||||||
request_people: "If you'd like, you can request to place him/her in one of your aspects."
|
request_people: "If you'd like, you can request to place him/her in one of your aspects."
|
||||||
already_requested: "You have already sent a request to %{name}."
|
already_requested: "You have already sent a request to %{name}."
|
||||||
does_not_exist: "Person does not exist!"
|
does_not_exist: "Person does not exist!"
|
||||||
|
bio_epic: "bio-epic"
|
||||||
|
gender: "gender"
|
||||||
|
born: "born"
|
||||||
edit:
|
edit:
|
||||||
info_available_to: "This info will be available to whomever you connect with on Diaspora."
|
info_available_to: "This info will be available to whomever you connect with on Diaspora."
|
||||||
your_profile: "Your profile"
|
your_profile: "Your profile"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue