some fixes to translations
This commit is contained in:
parent
5e4219b09e
commit
c3a79f7298
5 changed files with 12 additions and 7 deletions
|
|
@ -25,7 +25,7 @@ class UsersController < ApplicationController
|
||||||
# change email notifications
|
# change email notifications
|
||||||
if params[:user][:disable_mail]
|
if params[:user][:disable_mail]
|
||||||
@user.update_attributes(:disable_mail => params[:user][:disable_mail])
|
@user.update_attributes(:disable_mail => params[:user][:disable_mail])
|
||||||
flash[:notice] = I18n.t 'users.update.email_notification_changed'
|
flash[:notice] = I18n.t 'users.update.email_notifications_changed'
|
||||||
# change passowrd
|
# change passowrd
|
||||||
elsif params[:user][:password] && params[:user][:password_confirmation]
|
elsif params[:user][:password] && params[:user][:password_confirmation]
|
||||||
if @user.update_attributes(:password => params[:user][:password], :password_confirmation => params[:user][:password_confirmation])
|
if @user.update_attributes(:password => params[:user][:password], :password_confirmation => params[:user][:password_confirmation])
|
||||||
|
|
|
||||||
|
|
@ -34,7 +34,7 @@
|
||||||
- for aspect in aspects_with_person
|
- for aspect in aspects_with_person
|
||||||
= render :partial => 'aspects/aspect_badge', :locals => {:aspect => aspect}
|
= render :partial => 'aspects/aspect_badge', :locals => {:aspect => aspect}
|
||||||
.right
|
.right
|
||||||
= link_to "edit aspect membership", "#", :id=> "edit_contact_aspects"
|
= link_to t('.edit_membership'), "#", :id=> "edit_contact_aspects"
|
||||||
|
|
||||||
.edit{:class => ("hidden" if contact)}
|
.edit{:class => ("hidden" if contact)}
|
||||||
|
|
||||||
|
|
@ -46,5 +46,5 @@
|
||||||
|
|
||||||
- if contact
|
- if contact
|
||||||
.right
|
.right
|
||||||
= link_to "done editing", "#", :id => "done_contact_aspects"
|
= link_to t('aspects.aspect_contacts.done_editing'), "#", :id => "done_contact_aspects"
|
||||||
= link_to t('people.profile_sidebar.remove_contact'), person, :confirm => t('are_you_sure'), :method => :delete
|
= link_to t('people.profile_sidebar.remove_contact'), person, :confirm => t('are_you_sure'), :method => :delete
|
||||||
|
|
|
||||||
|
|
@ -6,9 +6,9 @@
|
||||||
.share_with_header
|
.share_with_header
|
||||||
= person_image_link(@person, :size => :thumb_medium)
|
= person_image_link(@person, :size => :thumb_medium)
|
||||||
%h3
|
%h3
|
||||||
= "Start sharing with #{@person.name}"
|
= t('.share_with', :name => @person.name)
|
||||||
%p
|
%p
|
||||||
= "Once #{@person.first_name} accepts, you'll start seeing each other's posts on Diaspora"
|
= t('.accepts', :name => @person.first_name)
|
||||||
|
|
||||||
= render :partial => 'share_with_pane',
|
= render :partial => 'share_with_pane',
|
||||||
:locals => {:person => @person,
|
:locals => {:person => @person,
|
||||||
|
|
|
||||||
|
|
@ -233,7 +233,7 @@ en:
|
||||||
password_not_changed: "Password Change Failed"
|
password_not_changed: "Password Change Failed"
|
||||||
language_changed: "Language Changed"
|
language_changed: "Language Changed"
|
||||||
language_not_changed: "Language Change Failed"
|
language_not_changed: "Language Change Failed"
|
||||||
email_notifications_changed: "Language Change Failed"
|
email_notifications_changed: "Email notifications changed"
|
||||||
public:
|
public:
|
||||||
does_not_exist: "User %{username} does not exist!"
|
does_not_exist: "User %{username} does not exist!"
|
||||||
comments:
|
comments:
|
||||||
|
|
@ -373,6 +373,11 @@ en:
|
||||||
helper:
|
helper:
|
||||||
results_for: " results for %{params}"
|
results_for: " results for %{params}"
|
||||||
people_on_pod_are_aware_of: " people on pod are aware of"
|
people_on_pod_are_aware_of: " people on pod are aware of"
|
||||||
|
share_with:
|
||||||
|
share_with: "Start sharing with %{name}"
|
||||||
|
accepts: "Once %{name} accepts, you'll start seeing each other's posts on Diaspora"
|
||||||
|
aspect_list:
|
||||||
|
edit_membership: "edit aspect membership"
|
||||||
requests:
|
requests:
|
||||||
manage_aspect_contacts:
|
manage_aspect_contacts:
|
||||||
manage_within: "Manage contacts within"
|
manage_within: "Manage contacts within"
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,7 @@ module YoutubeTitles
|
||||||
unless title.nil?
|
unless title.nil?
|
||||||
title = title.to_s[7..-9]
|
title = title.to_s[7..-9]
|
||||||
end
|
end
|
||||||
title || I18n.t('application.helper.youtube_title.unknown')
|
title || I18n.t('application.helper.video_title.unknown')
|
||||||
end
|
end
|
||||||
def get_youtube_title text
|
def get_youtube_title text
|
||||||
self[:youtube_titles] ||= {}
|
self[:youtube_titles] ||= {}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue