devise-i18n-views 0.2.8 → 0.3.0

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.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 693fff6f02d67e42c82eb55af1abcd11df1eb4ff
4
+ data.tar.gz: 70d9c10155b3c77f0a57657cb3fd177a962b3efc
5
+ SHA512:
6
+ metadata.gz: 067587aa4e9c2e53d1cdae6d5f5a03afd66d987844af15582dab0a35709b8f84ac3084b5f67feadf721c3a1eb5b36f9d476a266c54d67f83c7a26b9ac4536c59
7
+ data.tar.gz: 2b68f67f4372b7e99cc998e4295b6569a7a30f36bb402b89d0beb84ab5d403712e588356b7fecdc2a6f6f2d844fbc2d3c81cc9447c21f86e450cce151fb346b8
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.2.8
1
+ 0.3.0
@@ -1,6 +1,6 @@
1
+ <% require 'devise/version' %>
1
2
  <p><%= t('.greeting', :recipient => @resource.email, :default => "Welcome #{@resource.email}!") %></p>
2
3
 
3
4
  <p><%= t('.instruction', :default => "You can confirm your account email through the link below:") %></p>
4
-
5
5
  <p><%= link_to t('.action', :default => "Confirm my account"),
6
- confirmation_url(@resource, :confirmation_token => @resource.confirmation_token) %></p>
6
+ confirmation_url(@resource, :confirmation_token => (Devise::VERSION.start_with?('3.') ? @token : @resource.confirmation_token)) %></p>
@@ -1,8 +1,9 @@
1
+ <% require 'devise/version' %>
1
2
  <p><%= t('.greeting', :recipient => @resource.email, :default => "Hello #{@resource.email}!") %></p>
2
3
 
3
4
  <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
 
5
- <p><%= link_to t('.action', :default => "Change my password"), edit_password_url(@resource, :reset_password_token => @resource.reset_password_token) %></p>
6
+ <p><%= link_to t('.action', :default => "Change my password"), edit_password_url(@resource, :reset_password_token => (Devise::VERSION.start_with?('3.') ? @token : @resource.reset_password_token)) %></p>
6
7
 
7
8
  <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>
9
+ <p><%= t('.instruction_3', :default => "Your password won't change until you access the link above and create a new one.") %></p>
@@ -1,7 +1,8 @@
1
+ <% require 'devise/version' %>
1
2
  <p><%= t('.greeting', :recipient => @resource.email, :default => "Hello #{@resource.email}!") %></p>
2
3
 
3
4
  <p><%= t('.message', :default => "Your account has been locked due to an excessive amount of unsuccessful sign in attempts.") %></p>
4
5
 
5
6
  <p><%= t('.instruction', :default => "Click the link below to unlock your account:") %></p>
6
7
 
7
- <p><%= link_to t('.action', :default => "Unlock my account"), unlock_url(@resource, :unlock_token => @resource.unlock_token) %></p>
8
+ <p><%= link_to t('.action', :default => "Unlock my account"), unlock_url(@resource, :unlock_token => (Devise::VERSION.start_with?('3.') ? @token :@resource.unlock_token)) %></p>
@@ -1,4 +1,4 @@
1
- <h2><%= t('.title', :resource => resource_class.model_name.human , :default => 'Edit #{resource_name.to_s.humanize}') %></h2>
1
+ <h2><%= t('.title', :resource => resource_class.model_name.human , :default => "Edit #{resource_name.to_s.humanize}") %></h2>
2
2
 
3
3
  <%= form_for(resource, :as => resource_name, :url => registration_path(resource_name), :html => { :method => :put }) do |f| %>
4
4
  <%= devise_error_messages! %>
@@ -6,6 +6,12 @@
6
6
  <div><%= f.label :email %><br />
7
7
  <%= f.email_field :email %></div>
8
8
 
9
+ <%- if devise_mapping.confirmable? && resource.pending_reconfirmation? -%>
10
+ <p>
11
+ <%= t('.currently_waiting_confirmation_for_email', :email => resource.unconfirmed_email, :default => "Currently waiting confirmation for: %{email}") %>
12
+ </p>
13
+ <%- end -%>
14
+
9
15
  <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
16
  <%= f.password_field :password, :autocomplete => "off" %></div>
11
17
 
@@ -22,4 +28,4 @@
22
28
 
23
29
  <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
30
 
25
- <%= link_to "Back", :back %>
31
+ <%= link_to t('devise.shared.links.back', :default => "Back"), :back %>
@@ -2,14 +2,15 @@
2
2
  # DO NOT EDIT THIS FILE DIRECTLY
3
3
  # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
4
  # -*- encoding: utf-8 -*-
5
+ # stub: devise-i18n-views 0.3.0 ruby lib
5
6
 
6
7
  Gem::Specification.new do |s|
7
8
  s.name = "devise-i18n-views"
8
- s.version = "0.2.8"
9
+ s.version = "0.3.0"
9
10
 
10
11
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
12
  s.authors = ["mcasimir"]
12
- s.date = "2013-09-23"
13
+ s.date = "2014-08-04"
13
14
  s.description = "I18n support for devise views"
14
15
  s.email = "maurizio.cas@gmail.com"
15
16
  s.extra_rdoc_files = [
@@ -42,19 +43,28 @@ Gem::Specification.new do |s|
42
43
  "lib/devise-i18n-views.rb",
43
44
  "lib/generators/devise/views/i18n_templates/i18n_templates_generator.rb",
44
45
  "lib/generators/devise/views/locale/locale_generator.rb",
46
+ "locales/bg.yml",
45
47
  "locales/ca.yml",
48
+ "locales/cs.yml",
49
+ "locales/da-DK.yml",
46
50
  "locales/de.yml",
47
51
  "locales/en.yml",
48
52
  "locales/es-AR.yml",
49
53
  "locales/es-ES.yml",
50
54
  "locales/es.yml",
55
+ "locales/fi.yml",
51
56
  "locales/fr.yml",
52
57
  "locales/hu.yml",
53
58
  "locales/it.yml",
59
+ "locales/ja.yml",
60
+ "locales/nb.yml",
54
61
  "locales/nl.yml",
55
62
  "locales/pl.yml",
56
63
  "locales/pt-BR.yml",
64
+ "locales/pt-PT.yml",
57
65
  "locales/ru.yml",
66
+ "locales/sk.yml",
67
+ "locales/tr.yml",
58
68
  "locales/zh-CN.yml",
59
69
  "locales/zh-TW.yml",
60
70
  "spec/devise-i18n-views_spec.rb",
@@ -63,11 +73,11 @@ Gem::Specification.new do |s|
63
73
  s.homepage = "http://github.com/mcasimir/devise-i18n-views"
64
74
  s.licenses = ["MIT"]
65
75
  s.require_paths = ["lib"]
66
- s.rubygems_version = "1.8.25"
76
+ s.rubygems_version = "2.1.9"
67
77
  s.summary = "I18n support for devise views"
68
78
 
69
79
  if s.respond_to? :specification_version then
70
- s.specification_version = 3
80
+ s.specification_version = 4
71
81
 
72
82
  if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
73
83
  s.add_development_dependency(%q<rspec>, [">= 2.4.0"])
data/locales/bg.yml ADDED
@@ -0,0 +1,115 @@
1
+ bg:
2
+ activerecord:
3
+ attributes:
4
+ user:
5
+ current_password: "Текуща парола"
6
+ current_sign_in_at: "Влезли в"
7
+ email: "Емейл"
8
+ last_sign_in_at: "Последно влизане в"
9
+ password: "Парола"
10
+ password_confirmation: "Потвърждаване на паролата"
11
+ remember_me: "Запомни ме"
12
+ models:
13
+ user: "Потребител"
14
+ devise:
15
+ confirmations:
16
+ confirmed: "Регистрацията Ви е потвърдена. Влязохте успешно."
17
+ new:
18
+ resend_confirmation_instructions: "Повторно изпращане на инструкции за потвърждаване"
19
+ send_instructions: "Ще получите имейл с инструкции за потвърждаване на Вашата регистрация до няколко минути."
20
+ send_paranoid_instructions: "Ако Вашият имейл адрес съществува в нашата база данни, ще получите имейл с инструкции за потвърждаване на Вашия профил до няколко минути."
21
+ failure:
22
+ already_authenticated: "Вече сте влезли в профила си."
23
+ inactive: "Профилът Ви все още не е активиран."
24
+ invalid: "Невалиден имейл адрес или парола."
25
+ invalid_token: "Невалиден идентификационен ключ."
26
+ locked: "Профилът Ви е заключен."
27
+ not_found_in_database: "Невалиден имейл адрес или парола."
28
+ timeout: "Сесията Ви е изтекла, моля влезте отново, за да продължите."
29
+ unauthenticated: "Преди да продължите, трябва да влезете в профила си или да се регистрирате."
30
+ unconfirmed: "Преди да продължите, трябва да потвърдите регистрацията си."
31
+ mailer:
32
+ confirmation_instructions:
33
+ action: "Потвърждаване на профил"
34
+ greeting: "Добре дошли, %{recipient}!"
35
+ instruction: "Можете да потвърдите Вашия имейл адрес чрез долния линка:"
36
+ subject: "Инструкции за потвърждаване"
37
+ reset_password_instructions:
38
+ action: "Смяна на парола"
39
+ greeting: "Здравей, %{recipient}!"
40
+ instruction: "Някой е поискал линк за смяна на парола. Можете да смените паролата си чрез долния линк."
41
+ instruction_2: "В случай, че не сте поискали смяна на паролата, моля игнорирайте настоящия имейл."
42
+ instruction_3: "Паролата Ви няма да бъде сменена докато не използвате горния линк, за да създадете новва."
43
+ subject: "Инструкции за смяна на паролата"
44
+ unlock_instructions:
45
+ action: "Отключване на профил"
46
+ greeting: "Здравей, %{recipient}!"
47
+ instruction: "Натиснете върху донлия линк, за да отключите профила си:"
48
+ message: "Профилът Ви е заключен поради надвишаване броя на неуспешните опити за вход."
49
+ subject: "Инструкции за отключване"
50
+ omniauth_callbacks:
51
+ failure: Не успяхме да ви оторизираме чрез %{kind}, защото "%{reason}".
52
+ success: "Успешно оторизиран чрез %{kind} профил."
53
+ passwords:
54
+ edit:
55
+ change_my_password: "Смяна на парола"
56
+ change_your_password: "Смяна на парола"
57
+ confirm_new_password: "Потвърждение на нова парола"
58
+ new_password: "Нова парола"
59
+ new:
60
+ forgot_your_password: "Забравена парола?"
61
+ send_me_reset_password_instructions: "Изпрати инструкции за възстановяване на парола"
62
+ no_token: "Може да достъпвате тази страница само от имейл за промяна на паролата. Ако сте отворили тази страница от такъв имейл, уверете се, че използвате целия URL-адрес, който сме ви изпратили."
63
+ send_instructions: "Ще получите имейл с инструкции как да промените паролата си до няколко минути."
64
+ send_paranoid_instructions: "Ако вашият имейл адрес съществува в базата ни, ще получите инструкции за промяна на вашата парола."
65
+ updated: "Паролата Ви е променена успешно. Влязохте успешно в профила си."
66
+ updated_not_active: "Паролата Ви е променена успешно."
67
+ registrations:
68
+ destroyed: "Довиждане! Вашият профил беше успешно изтрит. Надяваме се скоро да Ви видим отново."
69
+ edit:
70
+ are_you_sure: "Сигурни ли сте?"
71
+ cancel_my_account: "Закриване на профил"
72
+ currently_waiting_confirmation_for_email: "Очаква се потвърждение за: %{email}"
73
+ leave_blank_if_you_don_t_want_to_change_it: "оставете празно, ако не искате да го променяте"
74
+ title: "Редакция на %{resource}"
75
+ unhappy: "Недоволни"
76
+ update: "Обновяване"
77
+ we_need_your_current_password_to_confirm_your_changes: "въведете настоящата си парола за потвърждаване на промените"
78
+ new:
79
+ sign_up: "Регистрация"
80
+ signed_up: "Добре дошли! Вие се регистрирахте успешно."
81
+ signed_up_but_inactive: "Регистирахте се успешно. Въпреки това, не можете да влезете в профила си, защото той все още не е активиран."
82
+ signed_up_but_locked: "Регистрирахте се успешно. Въпреки това, не можете да влезете в профила си, защото той е заключен."
83
+ signed_up_but_unconfirmed: "Писмо с линк за потвърждаване на профила Ви беше изпратено на вашия имейл адрес. Моля, отворете линка, за да активирате Вашия профил."
84
+ update_needs_confirmation: "Обновихте профила си успешно, но трябва да проверим Вашия нов имейл адрес. Моля, проверете пощата си и отворете линка за потвърждаване на новия адрес."
85
+ updated: "Обновихте профила си успешно."
86
+ sessions:
87
+ new:
88
+ sign_in: "Вход"
89
+ signed_in: "Влязохте успешно."
90
+ signed_out: "Излязохте успешно."
91
+ shared:
92
+ links:
93
+ back: "Назад"
94
+ didn_t_receive_confirmation_instructions: "Не сте получили инструкции за потвърждаване?"
95
+ didn_t_receive_unlock_instructions: "Не сте получили инструкции за отключване?"
96
+ forgot_your_password: "Забравена парола?"
97
+ sign_in: "Вход"
98
+ sign_in_with_provider: "Вход с %{provider}"
99
+ sign_up: "Регистрация"
100
+ unlocks:
101
+ new:
102
+ resend_unlock_instructions: "Повторно изпращане на инструкции за отключване"
103
+ send_instructions: "Ще получите имейл с инструкции как да отключите профила си до няколко минути."
104
+ send_paranoid_instructions: "Ако профилът Ви съществува в базата ни, ще получите имейл с инструкции за отключването му до няколко минути."
105
+ unlocked: "Профилът Ви е отключен успешно. За да продължите, моля влезте."
106
+ errors:
107
+ messages:
108
+ already_confirmed: "е вече потвърден, моля опитайте да влезете в профила си"
109
+ confirmation_period_expired: "трябва да се потвърди в рамките на %{period}, моля направете нова заявка за потвърждаване"
110
+ expired: "е изтекъл, моля заявете нов"
111
+ not_found: "не е намерен"
112
+ not_locked: "не бе заключен"
113
+ not_saved:
114
+ one: "Една грешка попречи този %{resource} да бъде записан:"
115
+ other: "%{count} грешки попречиха този %{resource} да бъде записан:"
data/locales/ca.yml CHANGED
@@ -1,59 +1,113 @@
1
1
  ca:
2
+ activerecord:
3
+ attributes:
4
+ user:
5
+ current_password:
6
+ current_sign_in_at:
7
+ email:
8
+ last_sign_in_at:
9
+ password:
10
+ password_confirmation:
11
+ remember_me:
12
+ models:
13
+ user:
2
14
  devise:
3
15
  confirmations:
16
+ confirmed:
4
17
  new:
5
18
  resend_confirmation_instructions: Reenviar instruccions de confirmació
19
+ send_instructions:
20
+ send_paranoid_instructions:
21
+ failure:
22
+ already_authenticated:
23
+ inactive:
24
+ invalid:
25
+ invalid_token:
26
+ locked:
27
+ not_found_in_database:
28
+ timeout:
29
+ unauthenticated:
30
+ unconfirmed:
6
31
  mailer:
7
32
  confirmation_instructions:
8
33
  action: Confirmar el meu compte
9
34
  greeting: Benvingut %{recipient}!
10
- instruction: ! "Pots confirmar el correu electrònic del teu compte a través d'aquest enllaç:"
11
- subject: Instruccions de confirmació
35
+ instruction: 'Pots confirmar el correu electrònic del teu compte a través d''aquest enllaç:'
36
+ subject: Instruccions de confirmació
12
37
  reset_password_instructions:
13
- action: Canviar la meva contrasenya
14
- greeting: Hola %{recipient}!
15
- instruction: Algú ha sol·licitat un enllaç per a canviar la teva contrasenya, pots fer-ho amb el següent enllaç.
16
- instruction_2: Si tu no ho has sol·licitat, si us plau ignora aquest email.
17
- instruction_3: La teva contrasenya no serà canviada fins que accedeixis a l'enllaç i en creïs una nova.
38
+ action: Canviar la meva contrasenya
39
+ greeting: Hola %{recipient}!
40
+ instruction: Algú ha sol·licitat un enllaç per a canviar la teva contrasenya, pots fer-ho amb el següent enllaç.
41
+ instruction_2: Si tu no ho has sol·licitat, si us plau ignora aquest email.
42
+ instruction_3: La teva contrasenya no serà canviada fins que accedeixis a l'enllaç i en creïs una nova.
18
43
  subject: Instruccions per a regenerar la contrasenya
19
44
  unlock_instructions:
20
- action: Desbloquejar el meu compte
45
+ action: Desbloquejar el meu compte
21
46
  greeting: Hola %{recipient}!
22
- instruction: ! 'Obre el següent enllaç per a desbloquejar el teu compte:'
23
- message: El teu compte s'ha bloquejat a causa d'una quantitat excessiva d'intents fallits per a accedir-hi.
47
+ instruction: 'Obre el següent enllaç per a desbloquejar el teu compte:'
48
+ message: El teu compte s'ha bloquejat a causa d'una quantitat excessiva d'intents fallits per a accedir-hi.
24
49
  subject: Instruccions de desbloqueig
50
+ omniauth_callbacks:
51
+ failure:
52
+ success:
25
53
  passwords:
26
- new:
27
- forgot_your_password: Has oblidat la teva contrasenya?
28
- send_me_reset_password_instructions: Enviar les instruccions per a regenerar la meva contrasenya
29
54
  edit:
55
+ change_my_password: Canviar la meva contrasenya
30
56
  change_your_password: Canviar la teva contrasenya
31
- new_password: Nova contrasenya
32
57
  confirm_new_password: Confirmar nova contrasenya
33
- change_my_password: Canviar la meva contrasenya
58
+ new_password: Nova contrasenya
59
+ new:
60
+ forgot_your_password: Has oblidat la teva contrasenya?
61
+ send_me_reset_password_instructions: Enviar les instruccions per a regenerar la meva contrasenya
62
+ no_token:
63
+ send_instructions:
64
+ send_paranoid_instructions:
65
+ updated:
66
+ updated_not_active:
34
67
  registrations:
68
+ destroyed:
35
69
  edit:
36
70
  are_you_sure: Estàs segur?
37
71
  cancel_my_account: Cancel·lar el meu compte
38
- leave_blank_if_you_don_t_want_to_change_it: deixa'l en blanc si no el vols canviar
72
+ currently_waiting_confirmation_for_email:
73
+ leave_blank_if_you_don_t_want_to_change_it: deixa'l en blanc si no el vols canviar
39
74
  title: Editar %{resource}
40
- we_need_your_current_password_to_confirm_your_changes: necessitem la teva contrasenya actual per a confirmar els canvis
41
- update: Actualitzar
42
- cancel_my_account: Cancel·lar el meu compte
43
75
  unhappy: Descontent
76
+ update: Actualitzar
77
+ we_need_your_current_password_to_confirm_your_changes: necessitem la teva contrasenya actual per a confirmar els canvis
44
78
  new:
45
79
  sign_up: Registrar-se
80
+ signed_up:
81
+ signed_up_but_inactive:
82
+ signed_up_but_locked:
83
+ signed_up_but_unconfirmed:
84
+ update_needs_confirmation:
85
+ updated:
46
86
  sessions:
47
87
  new:
48
- sign_in: Iniciar sessió
88
+ sign_in: Iniciar sessió
89
+ signed_in:
90
+ signed_out:
49
91
  shared:
50
92
  links:
51
- didn_t_receive_confirmation_instructions: No has rebut les instruccions de confirmació?
52
- didn_t_receive_unlock_instructions: No has rebut les instruccions de desbloqueig?
93
+ back:
94
+ didn_t_receive_confirmation_instructions: No has rebut les instruccions de confirmació?
95
+ didn_t_receive_unlock_instructions: No has rebut les instruccions de desbloqueig?
53
96
  forgot_your_password: Has oblidat la teva contrasenya?
54
- sign_in: Iniciar sessió
97
+ sign_in: Iniciar sessió
55
98
  sign_in_with_provider: Iniciar sessió amb %{provider}
56
99
  sign_up: Registrar-se
57
100
  unlocks:
58
101
  new:
59
- resend_unlock_instructions: Reenviar instruccions de desbloqueig
102
+ resend_unlock_instructions: Reenviar instruccions de desbloqueig
103
+ send_instructions:
104
+ send_paranoid_instructions:
105
+ unlocked:
106
+ errors:
107
+ messages:
108
+ already_confirmed:
109
+ confirmation_period_expired:
110
+ expired:
111
+ not_found:
112
+ not_locked:
113
+ not_saved:
data/locales/cs.yml ADDED
@@ -0,0 +1,113 @@
1
+ cs:
2
+ activerecord:
3
+ attributes:
4
+ user:
5
+ current_password:
6
+ current_sign_in_at:
7
+ email:
8
+ last_sign_in_at:
9
+ password:
10
+ password_confirmation:
11
+ remember_me:
12
+ models:
13
+ user:
14
+ devise:
15
+ confirmations:
16
+ confirmed:
17
+ new:
18
+ resend_confirmation_instructions: Opět poslat instrukce pro potvrzení
19
+ send_instructions:
20
+ send_paranoid_instructions:
21
+ failure:
22
+ already_authenticated:
23
+ inactive:
24
+ invalid:
25
+ invalid_token:
26
+ locked:
27
+ not_found_in_database:
28
+ timeout:
29
+ unauthenticated:
30
+ unconfirmed:
31
+ mailer:
32
+ confirmation_instructions:
33
+ action: Potvrdit můj účet
34
+ greeting: Vítejte, %{recipient}!
35
+ instruction: Můžete potvrdit svůj účet pomocí odkazu níže
36
+ subject: Instrukce pro potvrzení
37
+ reset_password_instructions:
38
+ action: Změnit mé heslo
39
+ greeting: Ahoj %{recipient}!
40
+ instruction: Někdo si vyžádal odkaz pro změnu vašeho hesla, to můžete udělat pomocí odkazu níže.
41
+ instruction_2: Pokud jste si toto nevyžádali, můžete tento e-mail ignorovat.
42
+ instruction_3: Vaše heslo se nezmění dokud nepřejdete na výše uvedený odkaz a nevytvoříte nové heslo
43
+ subject: Instrukce pro změnu hesla
44
+ unlock_instructions:
45
+ action: Odblokovat můj účet
46
+ greeting: Ahoj %{recipient}!
47
+ instruction: 'Přejděte na odkaz níže pro odblokování účtu:'
48
+ message: Váš účet byl zablokován pro nadměrný počet neúspěšných pokusů o přihlášení.
49
+ subject: Instrukce pro odblokování
50
+ omniauth_callbacks:
51
+ failure:
52
+ success:
53
+ passwords:
54
+ edit:
55
+ change_my_password:
56
+ change_your_password:
57
+ confirm_new_password:
58
+ new_password:
59
+ new:
60
+ forgot_your_password: Zapomněl jste své heslo?
61
+ send_me_reset_password_instructions: Poslat instrukce pro obnovení hesla
62
+ no_token:
63
+ send_instructions:
64
+ send_paranoid_instructions:
65
+ updated:
66
+ updated_not_active:
67
+ registrations:
68
+ destroyed:
69
+ edit:
70
+ are_you_sure: Jste si jistý?
71
+ cancel_my_account: Zrušit můj účet
72
+ currently_waiting_confirmation_for_email:
73
+ leave_blank_if_you_don_t_want_to_change_it: nech prázdné, pokud to nechceš měnit
74
+ title: Upravit %{resource}
75
+ unhappy:
76
+ update:
77
+ we_need_your_current_password_to_confirm_your_changes: Potřebujeme vaše současné heslo pro potvrzení změn
78
+ new:
79
+ sign_up: Registrovat
80
+ signed_up:
81
+ signed_up_but_inactive:
82
+ signed_up_but_locked:
83
+ signed_up_but_unconfirmed:
84
+ update_needs_confirmation:
85
+ updated:
86
+ sessions:
87
+ new:
88
+ sign_in: Přihlásit
89
+ signed_in:
90
+ signed_out:
91
+ shared:
92
+ links:
93
+ back:
94
+ didn_t_receive_confirmation_instructions: Nedostali jste informace pro potvrzení?
95
+ didn_t_receive_unlock_instructions: Nedostali jste instrukce pro odblokování?
96
+ forgot_your_password: Zapomněli jste heslo?
97
+ sign_in: Přihlásit
98
+ sign_in_with_provider: Přihlásit se s %{provider}
99
+ sign_up: Registrovat
100
+ unlocks:
101
+ new:
102
+ resend_unlock_instructions: Znovu odeslat instrukce pro odblokování
103
+ send_instructions:
104
+ send_paranoid_instructions:
105
+ unlocked:
106
+ errors:
107
+ messages:
108
+ already_confirmed:
109
+ confirmation_period_expired:
110
+ expired:
111
+ not_found:
112
+ not_locked:
113
+ not_saved: