fixes to be in sync with latest commits
This commit is contained in:
parent
d91c26fb68
commit
8085a7bcd7
5 changed files with 8 additions and 7 deletions
|
|
@ -7,5 +7,5 @@
|
|||
%p.photo_description
|
||||
= post.caption
|
||||
|
||||
= link_to "view all of #{post.person.real_name}'s photos", person_photos_path(post.person), :class => "small_text"
|
||||
= link_to t('.view_all', :name => post.person.real_name), person_photos_path(post.person), :class => "small_text"
|
||||
|
||||
|
|
|
|||
|
|
@ -2,4 +2,4 @@
|
|||
-# licensed under the Affero General Public License version 3 or later. See
|
||||
-# the COPYRIGHT file.
|
||||
|
||||
= link_to "New #{object.class.to_s} from #{object.person.real_name}", object_path(object.post)
|
||||
= link_to t('.new', :type => object.class.to_s, :from => object.person.real_name), object_path(object.post)
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@
|
|||
➔
|
||||
%ul
|
||||
- if post.public?
|
||||
%li= t('.the_world')
|
||||
%li= t('the_world')
|
||||
- else
|
||||
- for aspect in current_user.aspects_with_post( post.id )
|
||||
%li= link_to aspect.name, aspect
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@
|
|||
.aspect
|
||||
➔
|
||||
- if post.public?
|
||||
= t('.the_world')
|
||||
= t('the_world')
|
||||
- else
|
||||
= current_user.aspects_with_post( post.id ).join(', ')
|
||||
|
||||
|
|
|
|||
|
|
@ -58,7 +58,6 @@ en:
|
|||
shared:
|
||||
stream_element:
|
||||
show_comments: "show comments"
|
||||
the_world: "the world"
|
||||
aspect_nav:
|
||||
manage: "Manage"
|
||||
manage_your_aspects: "Manage your Aspects"
|
||||
|
|
@ -92,6 +91,8 @@ en:
|
|||
outside: "Public messages will be available for others outside of Diaspora to see."
|
||||
logged_in: "logged in to %{service}"
|
||||
manage: "manage connected services"
|
||||
notification:
|
||||
new: "New %{type} from %{from}"
|
||||
aspects:
|
||||
no_friends_message:
|
||||
nobody: "We know you have friends — bring them to Diaspora!"
|
||||
|
|
@ -212,6 +213,8 @@ en:
|
|||
update_photo: "Update Photo"
|
||||
edit:
|
||||
editing: "Editing"
|
||||
photo:
|
||||
view_all: "view all of %{name}'s photos"
|
||||
new:
|
||||
new_photo: "New Photo"
|
||||
back_to_list: "Back to List"
|
||||
|
|
@ -250,8 +253,6 @@ en:
|
|||
new_status_message:
|
||||
tell_me_something_good: "tell me something good"
|
||||
oh_yeah: "oh yeah!"
|
||||
status_message:
|
||||
show_comments: "show comments"
|
||||
show:
|
||||
destroy: "Destroy"
|
||||
helper:
|
||||
|
|
|
|||
Loading…
Reference in a new issue