devise-i18n-bootstrap 0.3.0.beta

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (45) hide show
  1. checksums.yaml +7 -0
  2. data/.document +5 -0
  3. data/.project +12 -0
  4. data/.rspec +1 -0
  5. data/Gemfile +9 -0
  6. data/LICENSE.txt +20 -0
  7. data/README.md +55 -0
  8. data/Rakefile +30 -0
  9. data/VERSION +1 -0
  10. data/app/views/devise/_links.erb +3 -0
  11. data/app/views/devise/confirmations/new.html.erb +12 -0
  12. data/app/views/devise/mailer/confirmation_instructions.html.erb +6 -0
  13. data/app/views/devise/mailer/reset_password_instructions.html.erb +8 -0
  14. data/app/views/devise/mailer/unlock_instructions.html.erb +7 -0
  15. data/app/views/devise/passwords/edit.html.erb +16 -0
  16. data/app/views/devise/passwords/new.html.erb +12 -0
  17. data/app/views/devise/registrations/edit.html.erb +25 -0
  18. data/app/views/devise/registrations/new.html.erb +18 -0
  19. data/app/views/devise/sessions/new.html.erb +17 -0
  20. data/app/views/devise/shared/_links.erb +25 -0
  21. data/app/views/devise/unlocks/new.html.erb +12 -0
  22. data/config/locales/bg.yml +101 -0
  23. data/config/locales/ca.yml +59 -0
  24. data/config/locales/de.yml +113 -0
  25. data/config/locales/en.yml +110 -0
  26. data/config/locales/es-AR.yml +51 -0
  27. data/config/locales/es-ES.yml +59 -0
  28. data/config/locales/es.yml +51 -0
  29. data/config/locales/fr.yml +51 -0
  30. data/config/locales/hu.yml +59 -0
  31. data/config/locales/it.yml +51 -0
  32. data/config/locales/nl.yml +59 -0
  33. data/config/locales/pl.yml +57 -0
  34. data/config/locales/pt-BR.yml +51 -0
  35. data/config/locales/ru.yml +56 -0
  36. data/config/locales/tr.yml +51 -0
  37. data/config/locales/zh-CN.yml +57 -0
  38. data/config/locales/zh-TW.yml +57 -0
  39. data/devise-i18n-bootstrap.gemspec +95 -0
  40. data/lib/devise-i18n-bootstrap.rb +23 -0
  41. data/lib/generators/devise/views/i18n_templates/i18n_templates_generator.rb +10 -0
  42. data/lib/generators/devise/views/locale/locale_generator.rb +10 -0
  43. data/spec/devise-i18n-bootstrap_spec.rb +8 -0
  44. data/spec/spec_helper.rb +3 -0
  45. metadata +159 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: e078d066df6a96d3d9118b67a33b4607bcc9880c
4
+ data.tar.gz: 195754d35af3beb57151d5b38b7c5c68bb3071e9
5
+ SHA512:
6
+ metadata.gz: bf1e28348d13cd61608b36d47b3b1d8f251d9baf93673063fe44abffda67245305145f1b60276ad4756cddc82a00f297ea7b05047c48d0c6cf3e4bf6178face4
7
+ data.tar.gz: 64d3202ebcd1cfc29ff4a0d18aebe0c0253f47cb2d85e5780d0808153b873b79fa0e9790e4075ed95fabd4dcd518a897646d860145356ce83613bab30e7277fe
data/.document ADDED
@@ -0,0 +1,5 @@
1
+ lib/**/*.rb
2
+ bin/*
3
+ -
4
+ features/**/*.feature
5
+ LICENSE.txt
data/.project ADDED
@@ -0,0 +1,12 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <projectDescription>
3
+ <name>devise-i18n-views</name>
4
+ <comment></comment>
5
+ <projects>
6
+ </projects>
7
+ <buildSpec>
8
+ </buildSpec>
9
+ <natures>
10
+ <nature>com.aptana.ruby.core.rubynature</nature>
11
+ </natures>
12
+ </projectDescription>
data/.rspec ADDED
@@ -0,0 +1 @@
1
+ --colour
data/Gemfile ADDED
@@ -0,0 +1,9 @@
1
+ source "http://rubygems.org"
2
+
3
+ group :development do
4
+ gem "rspec", ">= 2.4.0"
5
+ gem "bundler"
6
+ gem "jeweler", "~> 1.8.3"
7
+ gem 'i18n-spec'
8
+ gem 'localeapp'
9
+ end
data/LICENSE.txt ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2012 mcasimir
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,55 @@
1
+ # devise-i18n-bootstrap
2
+
3
+ It's forked from devise-i18n-views gem. This gem is under development. I18n support and translations for **[Devise v2.+](https://github.com/plataformatec/devise)** views.
4
+
5
+ ## Install
6
+
7
+ Add the following line to your `Gemfile`
8
+
9
+ ``` rb
10
+ gem 'devise-i18n-bootstrap'
11
+ ```
12
+
13
+ and run `bundle install`.
14
+
15
+ Then you need to install the required translations in your `config/locales`. You can do this either manually (downloading them from [devise-i18n-views/locales](https://github.com/mcasimir/devise-i18n-views/tree/master/locales)) or through the apposite generator `devise:views:locale`, eg.
16
+
17
+ ``` sh
18
+ rails g devise:views:locale it
19
+ ```
20
+
21
+ will generate `config/locales/devise.views.it.yml`.
22
+
23
+ ## Customizing Views
24
+
25
+ The `devise:views:i18n_templates` generator will copy all views to your application, so you can modify the files as you wish:
26
+
27
+ ``` sh
28
+ rails g devise:views:i18n_templates
29
+ ```
30
+
31
+ ## Contributing to devise-i18n-views
32
+ ### with Localeapp
33
+
34
+ - Edit the translations directly on the [devise-i18n-views](http://www.localeapp.com/projects/public?search=devise-i18n-views) project on Locale.
35
+ - **That's it!**
36
+ - The maintainer will then pull translations from the Locale project and push to Github.
37
+
38
+ ### manually
39
+
40
+ * Fork the latest master
41
+ * Create a translation file or edit an existing one under `locales`
42
+ * Make a pull request
43
+
44
+ Happy translating!
45
+
46
+ ## Translation file stub
47
+
48
+ Please refer to [devise-i18n-views/locales/en.yml](https://github.com/mcasimir/devise-i18n-views/blob/master/locales/en.yml) to grab a stub for your translation
49
+
50
+ ## Copyright
51
+
52
+ Copyright (c) 2012 mcasimir. See LICENSE.txt for
53
+ further details.
54
+
55
+ A ruby translation project managed on [Locale](http://www.localeapp.com/) that's open to all!
data/Rakefile ADDED
@@ -0,0 +1,30 @@
1
+ # encoding: utf-8
2
+
3
+ require 'rubygems'
4
+ require 'bundler'
5
+ begin
6
+ Bundler.setup(:default, :development)
7
+ rescue Bundler::BundlerError => e
8
+ $stderr.puts e.message
9
+ $stderr.puts "Run `bundle install` to install missing gems"
10
+ exit e.status_code
11
+ end
12
+ require 'rake'
13
+
14
+ require 'jeweler'
15
+ Jeweler::Tasks.new do |gem|
16
+ # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
17
+ gem.name = "devise-i18n-bootstrap"
18
+ gem.homepage = "http://github.com/maximalink/devise-i18n-bootstrap"
19
+ gem.license = "MIT"
20
+ gem.summary = %Q{I18n support for devise views based on Twitter Bootstrap 3}
21
+ gem.description = %Q{I18n support for devise views based on Twitter Bootstrap 3}
22
+ gem.email = 'nyitrai@maximalink.com'
23
+ gem.authors = ['mcasimir', 'Jozsef Nyitrai']
24
+ # dependencies defined in Gemfile
25
+ end
26
+ Jeweler::RubygemsDotOrgTasks.new
27
+
28
+ require 'rspec/core/rake_task'
29
+
30
+ RSpec::Core::RakeTask.new
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.3.0.beta
@@ -0,0 +1,3 @@
1
+ <% ActiveSupport::Deprecation.warn "Rendering partials devise/_links.erb is deprecated" \
2
+ "please use devise/shared/_links.erb instead."%>
3
+ <%= render "shared/links" %>
@@ -0,0 +1,12 @@
1
+ <h2><%= t('.resend_confirmation_instructions', :default => 'Resend confirmation instructions') %></h2>
2
+
3
+ <%= form_for(resource, :as => resource_name, :url => confirmation_path(resource_name), :html => { :method => :post }) do |f| %>
4
+ <%= devise_error_messages! %>
5
+
6
+ <div><%= f.label :email %><br />
7
+ <%= f.email_field :email %></div>
8
+
9
+ <div><%= f.submit t('.resend_confirmation_instructions', :default => 'Resend confirmation instructions') %></div>
10
+ <% end %>
11
+
12
+ <%= render "devise/shared/links" %>
@@ -0,0 +1,6 @@
1
+ <p><%= t('.greeting', :recipient => @resource.email, :default => "Welcome #{@resource.email}!") %></p>
2
+
3
+ <p><%= t('.instruction', :default => "You can confirm your account email through the link below:") %></p>
4
+
5
+ <p><%= link_to t('.action', :default => "Confirm my account"),
6
+ confirmation_url(@resource, :confirmation_token => @resource.confirmation_token) %></p>
@@ -0,0 +1,8 @@
1
+ <p><%= t('.greeting', :recipient => @resource.email, :default => "Hello #{@resource.email}!") %></p>
2
+
3
+ <p><%= t('.instruction', :default => "Someone has requested a link to change your password, and you can do this through the link below.") %></p>
4
+
5
+ <p><%= link_to t('.action', :default => "Change my password"), edit_password_url(@resource, :reset_password_token => @resource.reset_password_token) %></p>
6
+
7
+ <p><%= t('.instruction_2', :default => "If you didn't request this, please ignore this email.") %></p>
8
+ <p><%= t('.instruction_3', :default => "Your password won't change until you access the link above and create a new one.") %></p>
@@ -0,0 +1,7 @@
1
+ <p><%= t('.greeting', :recipient => @resource.email, :default => "Hello #{@resource.email}!") %></p>
2
+
3
+ <p><%= t('.message', :default => "Your account has been locked due to an excessive amount of unsuccessful sign in attempts.") %></p>
4
+
5
+ <p><%= t('.instruction', :default => "Click the link below to unlock your account:") %></p>
6
+
7
+ <p><%= link_to t('.action', :default => "Unlock my account"), unlock_url(@resource, :unlock_token => @resource.unlock_token) %></p>
@@ -0,0 +1,16 @@
1
+ <h2><%= t('.change_your_password', :default => 'Change your password') %></h2>
2
+
3
+ <%= form_for(resource, :as => resource_name, :url => password_path(resource_name), :html => { :method => :put }) do |f| %>
4
+ <%= devise_error_messages! %>
5
+ <%= f.hidden_field :reset_password_token %>
6
+
7
+ <div><%= f.label :password, t('.new_password', :default => 'New password') %><br />
8
+ <%= f.password_field :password %></div>
9
+
10
+ <div><%= f.label :password_confirmation, t('.confirm_new_password', :default => 'Confirm new password') %><br />
11
+ <%= f.password_field :password_confirmation %></div>
12
+
13
+ <div><%= f.submit t('.change_my_password', :default => 'Change my password') %></div>
14
+ <% end %>
15
+
16
+ <%= render "devise/shared/links" %>
@@ -0,0 +1,12 @@
1
+ <h2><%= t('.forgot_your_password', :default => 'Forgot your password?') %></h2>
2
+
3
+ <%= form_for(resource, :as => resource_name, :url => password_path(resource_name), :html => { :method => :post }) do |f| %>
4
+ <%= devise_error_messages! %>
5
+
6
+ <div><%= f.label :email %><br />
7
+ <%= f.email_field :email %></div>
8
+
9
+ <div><%= f.submit t('.send_me_reset_password_instructions', :default => "Send me reset password instructions") %></div>
10
+ <% end %>
11
+
12
+ <%= render "devise/shared/links" %>
@@ -0,0 +1,25 @@
1
+ <h2><%= t('.title', :resource => resource_class.model_name.human , :default => 'Edit #{resource_name.to_s.humanize}') %></h2>
2
+
3
+ <%= form_for(resource, :as => resource_name, :url => registration_path(resource_name), :html => { :method => :put }) do |f| %>
4
+ <%= devise_error_messages! %>
5
+
6
+ <div><%= f.label :email %><br />
7
+ <%= f.email_field :email %></div>
8
+
9
+ <div><%= f.label :password %> <i>(<%= t('.leave_blank_if_you_don_t_want_to_change_it', :default => "leave blank if you don't want to change it") %>)</i><br />
10
+ <%= f.password_field :password, :autocomplete => "off" %></div>
11
+
12
+ <div><%= f.label :password_confirmation %><br />
13
+ <%= f.password_field :password_confirmation %></div>
14
+
15
+ <div><%= f.label :current_password %> <i>(<%= t('.we_need_your_current_password_to_confirm_your_changes', :default => 'we need your current password to confirm your changes') %>)</i><br />
16
+ <%= f.password_field :current_password %></div>
17
+
18
+ <div><%= f.submit t('.update', :default => 'Update') %></div>
19
+ <% end %>
20
+
21
+ <h3><%= t('.cancel_my_account', :default => 'Cancel my account') %></h3>
22
+
23
+ <p><%= t('.unhappy', :default => 'Unhappy') %>? <%= link_to t('.cancel_my_account', :default => 'Cancel my account'), registration_path(resource_name), :data => { :confirm => t('.are_you_sure', :default => "Are you sure?") }, :method => :delete %>.</p>
24
+
25
+ <%= link_to t('.back', :default => 'Back'), :back %>
@@ -0,0 +1,18 @@
1
+ <h2><%= t('.sign_up', :default => 'Sign up') %></h2>
2
+
3
+ <%= form_for(resource, :as => resource_name, :url => registration_path(resource_name)) do |f| %>
4
+ <%= devise_error_messages! %>
5
+
6
+ <div><%= f.label :email %><br />
7
+ <%= f.email_field :email %></div>
8
+
9
+ <div><%= f.label :password %><br />
10
+ <%= f.password_field :password %></div>
11
+
12
+ <div><%= f.label :password_confirmation %><br />
13
+ <%= f.password_field :password_confirmation %></div>
14
+
15
+ <div><%= f.submit t('.sign_up', :default => 'Sign up') %></div>
16
+ <% end %>
17
+
18
+ <%= render "devise/shared/links" %>
@@ -0,0 +1,17 @@
1
+ <h2><%= t('.sign_in', :default => "Sign in") %></h2>
2
+
3
+ <%= form_for(resource, :as => resource_name, :url => session_path(resource_name)) do |f| %>
4
+ <div><%= f.label :email %><br />
5
+ <%= f.email_field :email %></div>
6
+
7
+ <div><%= f.label :password %><br />
8
+ <%= f.password_field :password %></div>
9
+
10
+ <% if devise_mapping.rememberable? -%>
11
+ <div><%= f.check_box :remember_me %> <%= f.label :remember_me %></div>
12
+ <% end -%>
13
+
14
+ <div><%= f.submit t('.sign_in', :default => "Sign in") %></div>
15
+ <% end %>
16
+
17
+ <%= render "devise/shared/links" %>
@@ -0,0 +1,25 @@
1
+ <%- if controller_name != 'sessions' %>
2
+ <%= link_to t(".sign_in", :default => "Sign in"), new_session_path(resource_name) %><br />
3
+ <% end -%>
4
+
5
+ <%- if devise_mapping.registerable? && controller_name != 'registrations' %>
6
+ <%= link_to t(".sign_up", :default => "Sign up"), new_registration_path(resource_name) %><br />
7
+ <% end -%>
8
+
9
+ <%- if devise_mapping.recoverable? && controller_name != 'passwords' %>
10
+ <%= link_to t(".forgot_your_password", :default => "Forgot your password?"), new_password_path(resource_name) %><br />
11
+ <% end -%>
12
+
13
+ <%- if devise_mapping.confirmable? && controller_name != 'confirmations' %>
14
+ <%= link_to t('.didn_t_receive_confirmation_instructions', :default => "Didn't receive confirmation instructions?"), new_confirmation_path(resource_name) %><br />
15
+ <% end -%>
16
+
17
+ <%- if devise_mapping.lockable? && resource_class.unlock_strategy_enabled?(:email) && controller_name != 'unlocks' %>
18
+ <%= link_to t('.didn_t_receive_unlock_instructions', :default => "Didn't receive unlock instructions?"), new_unlock_path(resource_name) %><br />
19
+ <% end -%>
20
+
21
+ <%- if devise_mapping.omniauthable? %>
22
+ <%- resource_class.omniauth_providers.each do |provider| %>
23
+ <%= link_to t('.sign_in_with_provider', :provider => provider.to_s.titleize, :default => "Sign in with #{provider.to_s.titleize}"), omniauth_authorize_path(resource_name, provider) %><br />
24
+ <% end -%>
25
+ <% end -%>
@@ -0,0 +1,12 @@
1
+ <h2><%= t('.resend_unlock_instructions', :default => "Resend unlock instructions") %></h2>
2
+
3
+ <%= form_for(resource, :as => resource_name, :url => unlock_path(resource_name), :html => { :method => :post }) do |f| %>
4
+ <%= devise_error_messages! %>
5
+
6
+ <div><%= f.label :email %><br />
7
+ <%= f.email_field :email %></div>
8
+
9
+ <div><%= f.submit t('.resend_unlock_instructions', :default => "Resend unlock instructions") %></div>
10
+ <% end %>
11
+
12
+ <%= render "devise/shared/links" %>
@@ -0,0 +1,101 @@
1
+ bg:
2
+ devise:
3
+ confirmations:
4
+ new:
5
+ resend_confirmation_instructions: "Повторно изпращане на инструкции за потвърждаване"
6
+ confirmed: "Регистрацията Ви е потвърдена. Влязохте успешно."
7
+ send_instructions: "Ще получите имейл с инструкции за потвърждаване на Вашата регистрация до няколко минути."
8
+ send_paranoid_instructions: "Ако Вашият имейл адрес съществува в нашата база данни, ще получите имейл с инструкции за потвърждаване на Вашия профил до няколко минути."
9
+ failure:
10
+ already_authenticated: "Вече сте влезли в профила си."
11
+ inactive: "Профилът Ви все още не е активиран."
12
+ invalid: "Невалиден имейл адрес или парола."
13
+ invalid_token: "Невалиден идентификационен ключ."
14
+ locked: "Профилът Ви е заключен."
15
+ not_found_in_database: "Невалиден имейл адрес или парола."
16
+ timeout: "Сесията Ви е изтекла, моля влезте отново, за да продължите."
17
+ unauthenticated: "Преди да продължите, трябва да влезете в профила си или да се регистрирате."
18
+ unconfirmed: "Преди да продължите, трябва да потвърдите регистрацията си."
19
+ mailer:
20
+ confirmation_instructions:
21
+ action: "Потвърждаване на профил"
22
+ greeting: "Добре дошли, %{recipient}!"
23
+ instruction: "Можете да потвърдите Вашия имейл адрес чрез долния линка:"
24
+ subject: "Инструкции за потвърждаване"
25
+ reset_password_instructions:
26
+ action: "Смяна на парола"
27
+ greeting: "Здравей, %{recipient}!"
28
+ instruction: "Някой е поискал линк за смяна на парола. Можете да смените паролата си чрез долния линк."
29
+ instruction_2: "В случай, че не сте поискали смяна на паролата, моля игнорирайте настоящия имейл."
30
+ instruction_3: "Паролата Ви няма да бъде сменена докато не използвате горния линк, за да създадете новва."
31
+ subject: "Инструкции за смяна на паролата"
32
+ unlock_instructions:
33
+ action: "Отключване на профил"
34
+ greeting: "Здравей, %{recipient}!"
35
+ instruction: "Натиснете върху донлия линк, за да отключите профила си:"
36
+ message: "Профилът Ви е заключен поради надвишаване броя на неуспешните опити за вход."
37
+ subject: "Инструкции за отключване"
38
+ omniauth_callbacks:
39
+ failure: "Не успяхме да ви оторизираме чрез %{kind}, защото \"%{reason}\"."
40
+ success: "Успешно оторизиран чрез %{kind} профил."
41
+ passwords:
42
+ new:
43
+ forgot_your_password: "Забравена парола?"
44
+ send_me_reset_password_instructions: "Изпрати инструкции за възстановяване на парола"
45
+ edit:
46
+ change_your_password: "Смяна на парола"
47
+ new_password: "Нова парола"
48
+ confirm_new_password: "Потвърждение на нова парола"
49
+ change_my_password: "Смяна на парола"
50
+ no_token: "Може да достъпвате тази страница само от имейл за промяна на паролата. Ако сте отворили тази страница от такъв имейл, уверете се, че използвате целия URL-адрес, който сме ви изпратили."
51
+ send_instructions: "Ще получите имейл с инструкции как да промените паролата си до няколко минути."
52
+ send_paranoid_instructions: "Ако вашият имейл адрес съществува в базата ни, ще получите инструкции за промяна на вашата парола."
53
+ updated: "Паролата Ви е променена успешно. Влязохте успешно в профила си."
54
+ updated_not_active: "Паролата Ви е променена успешно."
55
+ registrations:
56
+ edit:
57
+ are_you_sure: "Сигурни ли сте?"
58
+ cancel_my_account: "Закриване на профил"
59
+ leave_blank_if_you_don_t_want_to_change_it: "оставете празно, ако не искате да го променяте"
60
+ title: "Редакция на %{resource}"
61
+ we_need_your_current_password_to_confirm_your_changes: "въведете настоящата си парола за потвърждаване на промените"
62
+ update: "Обновяване"
63
+ unhappy: "Недоволни"
64
+ new:
65
+ sign_up: "Регистрация"
66
+ destroyed: "Довиждане! Вашият профил беше успешно изтрит. Надяваме се скоро да Ви видим отново."
67
+ signed_up: "Добре дошли! Вие се регистрирахте успешно."
68
+ signed_up_but_inactive: "Регистирахте се успешно. Въпреки това, не можете да влезете в профила си, защото той все още не е активиран."
69
+ signed_up_but_locked: "Регистрирахте се успешно. Въпреки това, не можете да влезете в профила си, защото той е заключен."
70
+ signed_up_but_unconfirmed: "Писмо с линк за потвърждаване на профила Ви беше изпратено на вашия имейл адрес. Моля, отворете линка, за да активирате Вашия профил."
71
+ update_needs_confirmation: "Обновихте профила си успешно, но трябва да проверим Вашия нов имейл адрес. Моля, проверете пощата си и отворете линка за потвърждаване на новия адрес."
72
+ updated: "Обновихте профила си успешно."
73
+ sessions:
74
+ signed_in: "Влязохте успешно."
75
+ signed_out: "Излязохте успешно."
76
+ new:
77
+ sign_in: "Вход"
78
+ shared:
79
+ links:
80
+ didn_t_receive_confirmation_instructions: "Не сте получили инструкции за потвърждаване?"
81
+ didn_t_receive_unlock_instructions: "Не сте получили инструкции за отключване?"
82
+ forgot_your_password: "Забравена парола?"
83
+ sign_in: "Вход"
84
+ sign_in_with_provider: "Вход с %{provider}"
85
+ sign_up: "Регистрация"
86
+ unlocks:
87
+ new:
88
+ resend_unlock_instructions: "Повторно изпращане на инструкции за отключване"
89
+ send_instructions: "Ще получите имейл с инструкции как да отключите профила си до няколко минути."
90
+ send_paranoid_instructions: "Ако профилът Ви съществува в базата ни, ще получите имейл с инструкции за отключването му до няколко минути."
91
+ unlocked: "Профилът Ви е отключен успешно. За да продължите, моля влезте."
92
+ errors:
93
+ messages:
94
+ already_confirmed: "е вече потвърден, моля опитайте да влезете в профила си"
95
+ confirmation_period_expired: "трябва да се потвърди в рамките на %{period}, моля направете нова заявка за потвърждаване"
96
+ expired: "е изтекъл, моля заявете нов"
97
+ not_found: "не е намерен"
98
+ not_locked: "не бе заключен"
99
+ not_saved:
100
+ one: "Една грешка попречи този %{resource} да бъде записан:"
101
+ other: "%{count} грешки попречиха този %{resource} да бъде записан:"