some fixes to the translations of the mobile site
This commit is contained in:
parent
eba99c84ba
commit
14f4e1aa57
4 changed files with 10 additions and 9 deletions
|
|
@ -48,7 +48,7 @@
|
||||||
|
|
||||||
%br
|
%br
|
||||||
%br
|
%br
|
||||||
%b your aspects
|
%b= t('.your_aspects')
|
||||||
%br
|
%br
|
||||||
- for aspect in @all_aspects
|
- for aspect in @all_aspects
|
||||||
= link_to aspect, aspects_path('a_ids[]' => aspect.id)
|
= link_to aspect, aspects_path('a_ids[]' => aspect.id)
|
||||||
|
|
@ -56,7 +56,7 @@
|
||||||
%br
|
%br
|
||||||
|
|
||||||
%br
|
%br
|
||||||
= link_to 'logout', destroy_user_session_path
|
= link_to t('layouts.header.logout'), destroy_user_session_path
|
||||||
|
|
||||||
|
|
||||||
-if current_user
|
-if current_user
|
||||||
|
|
@ -79,7 +79,7 @@
|
||||||
= @notification_count
|
= @notification_count
|
||||||
|
|
||||||
%h4
|
%h4
|
||||||
your aspects
|
= t('.your_aspects')
|
||||||
|
|
||||||
%ul{:data => {:role => 'listview', :inset => 'true'}}
|
%ul{:data => {:role => 'listview', :inset => 'true'}}
|
||||||
%li
|
%li
|
||||||
|
|
@ -90,12 +90,11 @@
|
||||||
|
|
||||||
|
|
||||||
#footer
|
#footer
|
||||||
logged in as
|
= link_to t('.logged_in_as' :name => current_user.name), current_user.person
|
||||||
= link_to current_user.name, current_user.person
|
|
||||||
|
|
||||||
%br
|
%br
|
||||||
%br
|
%br
|
||||||
%b your aspects
|
%b= t('.your_aspects')
|
||||||
%br
|
%br
|
||||||
- for aspect in @all_aspects
|
- for aspect in @all_aspects
|
||||||
= link_to aspect, aspects_path('a_ids[]' => aspect.id)
|
= link_to aspect, aspects_path('a_ids[]' => aspect.id)
|
||||||
|
|
@ -103,4 +102,4 @@
|
||||||
%br
|
%br
|
||||||
|
|
||||||
%br
|
%br
|
||||||
= link_to 'logout', destroy_user_session_path
|
= link_to t('layouts.header.logout'), destroy_user_session_path
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@
|
||||||
= form_tag(people_path, :method => 'get') do
|
= form_tag(people_path, :method => 'get') do
|
||||||
%div{:data => {:role => 'fieldcontain', :inline => 'true'}}
|
%div{:data => {:role => 'fieldcontain', :inline => 'true'}}
|
||||||
= search_field_tag :q
|
= search_field_tag :q
|
||||||
= submit_tag :search, 'data-inline' => 'true'
|
= submit_tag t('search'), 'data-inline' => 'true'
|
||||||
|
|
||||||
|
|
||||||
- if params[:q].blank?
|
- if params[:q].blank?
|
||||||
|
|
|
||||||
|
|
@ -25,6 +25,6 @@
|
||||||
- unless params[:a_ids]
|
- unless params[:a_ids]
|
||||||
%input{:type => 'checkbox', :name => 'status_message[public]', :id => 'public', :class => 'custom', :value => 'true'}
|
%input{:type => 'checkbox', :name => 'status_message[public]', :id => 'public', :class => 'custom', :value => 'true'}
|
||||||
%label{:for => 'public'}
|
%label{:for => 'public'}
|
||||||
make public?
|
= t('.make_public')
|
||||||
= status.submit t('.share'), 'data-inline' => 'true', 'data-theme' => 'b'
|
= status.submit t('.share'), 'data-inline' => 'true', 'data-theme' => 'b'
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -97,6 +97,8 @@ en:
|
||||||
powered_by: "POWERED BY DIASPORA*"
|
powered_by: "POWERED BY DIASPORA*"
|
||||||
whats_new: "what's new?"
|
whats_new: "what's new?"
|
||||||
have_a_problem: "Have a problem? Find an answer here"
|
have_a_problem: "Have a problem? Find an answer here"
|
||||||
|
your_aspects: "your aspects"
|
||||||
|
logged_in_as: "logged in as %{name}"
|
||||||
shared:
|
shared:
|
||||||
publisher:
|
publisher:
|
||||||
posting: "Posting..."
|
posting: "Posting..."
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue