fixed translations
This commit is contained in:
parent
3bbc766abc
commit
4e4e4d763a
2 changed files with 4 additions and 2 deletions
|
|
@ -28,11 +28,11 @@
|
||||||
%a.paginate
|
%a.paginate
|
||||||
= t("more")
|
= t("more")
|
||||||
- else
|
- else
|
||||||
nobody likes ##{params[:tag]}.
|
= t('.nobody_likes', :tag => "##{params[:tag]}")
|
||||||
= will_paginate @posts
|
= will_paginate @posts
|
||||||
|
|
||||||
.prepend-2.span-7.last
|
.prepend-2.span-7.last
|
||||||
%h3
|
%h3
|
||||||
People tagged with ##{params[:tag]}
|
= t('.people_tagged_with', :tag => "##{params[:tag]}")
|
||||||
.side_stream
|
.side_stream
|
||||||
= render :collection => @people, :partial => 'people/person'
|
= render :collection => @people, :partial => 'people/person'
|
||||||
|
|
|
||||||
|
|
@ -398,6 +398,8 @@ en:
|
||||||
index:
|
index:
|
||||||
whatup: "What's happening on %{pod}"
|
whatup: "What's happening on %{pod}"
|
||||||
posts_tagged_with: "Posts tagged with #%{tag}"
|
posts_tagged_with: "Posts tagged with #%{tag}"
|
||||||
|
nobody_likes: "nobody likes %{tag}."
|
||||||
|
people_tagged_with: "People tagged with %{tag}"
|
||||||
|
|
||||||
profiles:
|
profiles:
|
||||||
edit:
|
edit:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue