Merge branch 'globalize'
This commit is contained in:
commit
4b380d55c3
|
@ -18,3 +18,5 @@
|
|||
/config/secrets.yml
|
||||
/db/schema.rb
|
||||
/erd.pdf
|
||||
/public/uploads/tmp/*
|
||||
/public/uploads/speaker_profile/*
|
|
@ -5,11 +5,11 @@ class ApplicationController < ActionController::Base
|
|||
before_filter :configure_permitted_parameters, if: :devise_controller?
|
||||
before_action :set_locale
|
||||
|
||||
def default_url_options(options={})
|
||||
if params[:locale]
|
||||
{locale: I18n.locale}
|
||||
def self.default_url_options(options={})
|
||||
if I18n.locale != I18n.default_locale
|
||||
options.merge({locale: I18n.locale})
|
||||
else
|
||||
{}
|
||||
options
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
@ -75,6 +75,12 @@ bg:
|
|||
invalid: не е валиден e-mail адрес
|
||||
password_confirmation:
|
||||
confirmation: не съответства на паролата
|
||||
speaker_profile:
|
||||
attributes:
|
||||
twitter:
|
||||
invalid: може да съдържа максимум 15 символа, които могат да бъдат само букви, числа или долна черта
|
||||
github:
|
||||
invalid: може да съдържа само букви, числа и тирета и не може да започва с тире
|
||||
errors:
|
||||
messages:
|
||||
improbable_phone: 'не е валиден телефонен номер'
|
|
@ -75,6 +75,12 @@ en:
|
|||
invalid: is not a valid e-mail address
|
||||
password_confirmation:
|
||||
confirmation: does not match the password
|
||||
speaker_profile:
|
||||
attributes:
|
||||
twitter:
|
||||
invalid: can contain a maximum of 15 symbols that need to be alphabet charachters, digits or an underscore
|
||||
github:
|
||||
invalid: can contain only alphabet characters, digits or a dash and cannot start with a dash
|
||||
errors:
|
||||
messages:
|
||||
improbable_phone: 'not a valid phone number'
|
|
@ -14,14 +14,12 @@ bg:
|
|||
password_confirmation: Отново въведената отгоре парола
|
||||
speaker_profile:
|
||||
picture: Ваша снимка
|
||||
first_name:
|
||||
last_name:
|
||||
organisation: Организацията, която представлявате
|
||||
public_email: E-mail адрес, който ще бъде видим за посетителите
|
||||
mobile_phone: Мобилен телефон, който ще бъде видим само за организаторите
|
||||
biography: Опишете се с няколко изречения, говорейки за себе си в трето лице :)
|
||||
github: Github username
|
||||
twitter: Twitter username, без кльомбичка отпред
|
||||
github: Потребителското Ви име в Github
|
||||
twitter: Потребителското Ви име в Twitter
|
||||
lecture:
|
||||
title: Заглавието на лекцията Ви
|
||||
subtitle: Подзаглавието на лекцията Ви (ако има такова)
|
||||
|
|
|
@ -14,14 +14,12 @@ en:
|
|||
password_confirmation: Repeat the password
|
||||
speaker_profile:
|
||||
picture: Your photo
|
||||
first_name: First name
|
||||
last_name: Last name
|
||||
organisation: Your organization
|
||||
public_email: E-mail address, visible to the visitors
|
||||
mobile_phone: Mobile phone, visible for the organizers only
|
||||
biography: Describe yourself in a few sentences in third person :).
|
||||
github: Your Github account
|
||||
twitter: Your Twitter account
|
||||
github: Your Github username
|
||||
twitter: Your Twitter username
|
||||
lecture:
|
||||
title: Title of your talk
|
||||
subtitle: Sub-title of your talk (if applicable)
|
||||
|
|
Loading…
Reference in New Issue