devise-foundation-views 0.0.1

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 (68) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +9 -0
  3. data/.travis.yml +4 -0
  4. data/Gemfile +4 -0
  5. data/LICENSE.txt +21 -0
  6. data/README.md +49 -0
  7. data/Rakefile +1 -0
  8. data/app/assets/stylesheets/devise_foundation_views_less.less +10 -0
  9. data/app/assets/stylesheets/devise_foundation_views_scss.scss +9 -0
  10. data/app/views/devise/confirmations/new.html.erb +22 -0
  11. data/app/views/devise/mailer/confirmation_instructions.html.erb +6 -0
  12. data/app/views/devise/mailer/reset_password_instructions.html.erb +8 -0
  13. data/app/views/devise/mailer/unlock_instructions.html.erb +7 -0
  14. data/app/views/devise/passwords/edit.html.erb +25 -0
  15. data/app/views/devise/passwords/new.html.erb +21 -0
  16. data/app/views/devise/registrations/edit.html.erb +31 -0
  17. data/app/views/devise/registrations/new.html.erb +27 -0
  18. data/app/views/devise/sessions/new.html.erb +30 -0
  19. data/app/views/devise/shared/_links.html.erb +25 -0
  20. data/app/views/devise/unlocks/new.html.erb +21 -0
  21. data/app/views/devise_haml/confirmations/new.html.haml +13 -0
  22. data/app/views/devise_haml/mailer/confirmation_instructions.html.haml +3 -0
  23. data/app/views/devise_haml/mailer/reset_password_instructions.html.haml +5 -0
  24. data/app/views/devise_haml/mailer/unlock_instructions.html.haml +4 -0
  25. data/app/views/devise_haml/passwords/edit.html.haml +16 -0
  26. data/app/views/devise_haml/passwords/new.html.haml +13 -0
  27. data/app/views/devise_haml/registrations/edit.html.haml +22 -0
  28. data/app/views/devise_haml/registrations/new.html.haml +17 -0
  29. data/app/views/devise_haml/sessions/new.html.haml +19 -0
  30. data/app/views/devise_haml/shared/_links.html.haml +19 -0
  31. data/app/views/devise_haml/unlocks/new.html.haml +13 -0
  32. data/app/views/devise_slim/confirmations/new.html.slim +13 -0
  33. data/app/views/devise_slim/mailer/confirmation_instructions.html.slim +4 -0
  34. data/app/views/devise_slim/mailer/reset_password_instructions.html.slim +6 -0
  35. data/app/views/devise_slim/mailer/unlock_instructions.html.slim +4 -0
  36. data/app/views/devise_slim/passwords/edit.html.slim +17 -0
  37. data/app/views/devise_slim/passwords/new.html.slim +13 -0
  38. data/app/views/devise_slim/registrations/edit.html.slim +23 -0
  39. data/app/views/devise_slim/registrations/new.html.slim +18 -0
  40. data/app/views/devise_slim/sessions/new.html.slim +19 -0
  41. data/app/views/devise_slim/shared/_links.html.slim +19 -0
  42. data/app/views/devise_slim/unlocks/new.html.slim +14 -0
  43. data/devise-foundation-views.gemspec +32 -0
  44. data/lib/devise-foundation-views.rb +28 -0
  45. data/lib/devise_foundation_views_helper.rb +22 -0
  46. data/lib/generators/devise/views/foundation_templates/foundation_templates_generator.rb +25 -0
  47. data/lib/generators/devise/views/locale/locale_generator.rb +10 -0
  48. data/lib/version.rb +3 -0
  49. data/locales/ar.yml +112 -0
  50. data/locales/ca.yml +59 -0
  51. data/locales/cs.yml +110 -0
  52. data/locales/de.yml +110 -0
  53. data/locales/en.yml +111 -0
  54. data/locales/es-AR.yml +51 -0
  55. data/locales/es-ES.yml +59 -0
  56. data/locales/es.yml +51 -0
  57. data/locales/fr.yml +51 -0
  58. data/locales/hu.yml +59 -0
  59. data/locales/it.yml +51 -0
  60. data/locales/nl.yml +59 -0
  61. data/locales/pl.yml +57 -0
  62. data/locales/pt-BR.yml +56 -0
  63. data/locales/ru.yml +56 -0
  64. data/locales/tr.yml +51 -0
  65. data/locales/uk.yml +56 -0
  66. data/locales/zh-CN.yml +58 -0
  67. data/locales/zh-TW.yml +57 -0
  68. metadata +139 -0
data/locales/es.yml ADDED
@@ -0,0 +1,51 @@
1
+ es:
2
+ devise:
3
+ confirmations:
4
+ new:
5
+ resend_confirmation_instructions: Reenviar instrucciones de confirmación
6
+ mailer:
7
+ confirmation_instructions:
8
+ action: Confirmar mi cuenta
9
+ greeting: ¡Bienvenido %{recipient}!
10
+ instruction: ! 'Usted puede confirmar el correo electrónico de su cuenta a través de este enlace:'
11
+ subject: Instrucciones de confirmación
12
+ reset_password_instructions:
13
+ action: Cambiar mi contraseña
14
+ greeting: ¡Hola %{recipient}!
15
+ instruction: Alguien ha solicitado un enlace para cambiar su contraseña, lo que se puede realizar con el siguiente enlace.
16
+ instruction_2: Si usted no lo ha solicitado, por favor ignore este correo electrónico.
17
+ instruction_3: Su contraseña no será cambiada hasta que usted acceda el enlace y cree uno nuevo.
18
+ subject: Instrucciones para resetear contraseña
19
+ unlock_instructions:
20
+ action: Desbloquear mi cuenta
21
+ greeting: ¡Hola %{recipient}!
22
+ instruction: ! 'Haga click en el siguiente enlace para desbloquear su cuenta:'
23
+ message: Su cuenta ha sido bloqueada debido a una cantidad excesiva de intentos infructuosos para ingresar.
24
+ subject: Instrucciones de desbloqueo
25
+ passwords:
26
+ new:
27
+ forgot_your_password: ¿Ha olvidado su contraseña?
28
+ send_me_reset_password_instructions: Envíeme las instrucciones para resetear mi contraseña
29
+ registrations:
30
+ edit:
31
+ are_you_sure: ¿Está usted seguro?
32
+ cancel_my_account: Anular mi cuenta
33
+ leave_blank_if_you_don_t_want_to_change_it: dejar en blanco si no desea cambiarlo
34
+ title: Editar %{resource}
35
+ we_need_your_current_password_to_confirm_your_changes: necesitamos su contraseña actual para confirmar los cambios
36
+ new:
37
+ sign_up: Registrarse
38
+ sessions:
39
+ new:
40
+ sign_in: Iniciar sésion
41
+ shared:
42
+ links:
43
+ didn_t_receive_confirmation_instructions: ¿No ha recibido las instrucciones de confirmación?
44
+ didn_t_receive_unlock_instructions: No ha recibido instrucciones para desbloquear?
45
+ forgot_your_password: ¿Ha olvidado su contraseña?
46
+ sign_in: Iniciar sésion
47
+ sign_in_with_provider: Iniciar sésion con %{provider}
48
+ sign_up: Registrarse
49
+ unlocks:
50
+ new:
51
+ resend_unlock_instructions: Reenviar instrucciones para desbloquear
data/locales/fr.yml ADDED
@@ -0,0 +1,51 @@
1
+ fr:
2
+ devise:
3
+ confirmations:
4
+ new:
5
+ resend_confirmation_instructions: Renvoyer les instructions de confirmation
6
+ mailer:
7
+ confirmation_instructions:
8
+ action: Confirmer mon email
9
+ greeting: Bienvenue %{recipient} !
10
+ instruction: ! 'Vous pouvez confirmer votre email grâce au lien ci-dessous :'
11
+ subject: Instructions pour confirmer votre compte
12
+ reset_password_instructions:
13
+ action: Changer mon mot de passe
14
+ greeting: Bonjour %{recipient} !
15
+ instruction: ! 'Quelqu''un a demandé un lien pour changer votre mot de passe, le voici :'
16
+ instruction_2: Si vous n'avez pas émis cette demande, merci d'ignorer cet email.
17
+ instruction_3: Votre mot de passe ne changera pas tant que vous n'aurez pas cliqué sur ce lien et renseigné un nouveau mot de passe.
18
+ subject: Instructions pour réinitialiser votre mot de passe
19
+ unlock_instructions:
20
+ action: Débloquer mon compte
21
+ greeting: Bonjour %{recipient} !
22
+ instruction: ! 'Suivez ce lien pour débloquer votre compte :'
23
+ message: Votre compte a été bloqué suite à un nombre d'essais de connexions manqués trop important
24
+ subject: Instructions pour débloquer votre compte
25
+ passwords:
26
+ new:
27
+ forgot_your_password: Mot de passe oublié ?
28
+ send_me_reset_password_instructions: Envoyez-moi des instructions pour réinitialiser mon mot de passe
29
+ registrations:
30
+ edit:
31
+ are_you_sure: Êtes-vous sûr ?!
32
+ cancel_my_account: Supprimer mon compte
33
+ leave_blank_if_you_don_t_want_to_change_it: laissez ce champ vide pour le laisser inchangé
34
+ title: Éditer %{resource}
35
+ we_need_your_current_password_to_confirm_your_changes: nous avons besoin de votre mot de passe actuel pour valider ces modifications
36
+ new:
37
+ sign_up: Inscription
38
+ sessions:
39
+ new:
40
+ sign_in: Connexion
41
+ shared:
42
+ links:
43
+ didn_t_receive_confirmation_instructions: Vous n'avez pas reçu le mail de confirmation ?
44
+ didn_t_receive_unlock_instructions: Vous n'avez pas reçu le mail de débloquage ?
45
+ forgot_your_password: Mot de passe oublié ?
46
+ sign_in: Connexion
47
+ sign_in_with_provider: Connexion avec %{provider}
48
+ sign_up: Inscription
49
+ unlocks:
50
+ new:
51
+ resend_unlock_instructions: Renvoyer les instructions de débloquage
data/locales/hu.yml ADDED
@@ -0,0 +1,59 @@
1
+ hu:
2
+ devise:
3
+ confirmations:
4
+ new:
5
+ resend_confirmation_instructions: Megerősítő levél újraküldése
6
+ mailer:
7
+ confirmation_instructions:
8
+ action: Fiók megerősítése
9
+ greeting: Kedves %{reciipient}!
10
+ instruction: ! 'A fiók megerősítéséhez rá kell kattintani az alábbi linkre:'
11
+ subject: A fiók megerősítéséhez szükséges teendők
12
+ reset_password_instructions:
13
+ action: Jelszó megváltoztatása
14
+ greeting: Kedves %{recipient}!
15
+ instruction: Ön, vagy valaki más az ön nevében jelszóváltoztatást kérvényezett, mely a lenti linkre kattintva lehetséges.
16
+ instruction_2: Amennyiben ön nem kezdeményezte a jelszavának megváltoztatását, kérem hagyja figyelmen kívül ezt a levelet.
17
+ instruction_3: Amennyiben nem kattint az alábbi linkre, jelszava továbbra is ugyanaz marad, mint eddig.
18
+ subject: A jelszó megváltoztatásához szükséges teendők
19
+ unlock_instructions:
20
+ action: Zárolás feloldása
21
+ greeting: Kedves %{recipient}!
22
+ instruction: ! 'A zárolás feloldásához az alábbi linkre kell kattintani:'
23
+ message: A felhasználói fiókja zárolva lett túl sok sikertelen belépési kísérlet miatt.
24
+ subject: Fiókzárolás feloldásához szükséges teendők
25
+ passwords:
26
+ new:
27
+ forgot_your_password: Elfelejtette a jelszavát?
28
+ send_me_reset_password_instructions: Jelszóviszaállítási teendők küldése
29
+ edit:
30
+ change_your_password: Jelszó megváltoztatása
31
+ new_password: Új jelszó
32
+ confirm_new_password: Jelszó megerősítése
33
+ change_my_password: Jelszó megváltoztatása
34
+ registrations:
35
+ edit:
36
+ are_you_sure: Biztos benne?
37
+ cancel_my_account: Fiók megszüntetése
38
+ leave_blank_if_you_don_t_want_to_change_it: csak változás esetén kitöltendő
39
+ title: "%{resource} módosítása"
40
+ we_need_your_current_password_to_confirm_your_changes: a változtatás végrehajtásához szükséges a jelenlegi jelszó
41
+ update: Módosítás
42
+ cancel_my_account: Fiók megszüntetése
43
+ unhappy: Szomorú
44
+ new:
45
+ sign_up: Regisztráció
46
+ sessions:
47
+ new:
48
+ sign_in: Belépés
49
+ shared:
50
+ links:
51
+ didn_t_receive_confirmation_instructions: Nem kapta meg a megerősítő levelet?
52
+ didn_t_receive_unlock_instructions: Nem kapta meg a feloldáshoz a levelet?
53
+ forgot_your_password: Elfelejtette a jelszavát?
54
+ sign_in: Belépés
55
+ sign_in_with_provider: "%{provider} belépés"
56
+ sign_up: Regisztráció
57
+ unlocks:
58
+ new:
59
+ resend_unlock_instructions: Feloldási teendők újraküldése
data/locales/it.yml ADDED
@@ -0,0 +1,51 @@
1
+ it:
2
+ devise:
3
+ confirmations:
4
+ new:
5
+ resend_confirmation_instructions: Invia di nuovo le istruzioni per la conferma
6
+ mailer:
7
+ confirmation_instructions:
8
+ action: Conferma il mio account
9
+ greeting: Benvenuto %{recipient}!
10
+ instruction: ! 'Puoi confermare il tuo account cliccando sul link qui sotto:'
11
+ subject: Istruzioni per la conferma
12
+ reset_password_instructions:
13
+ action: Cambia la mia password
14
+ greeting: Ciao %{recipient}!
15
+ instruction: Qualcuno ha richiesto di resettare la tua password, se lo vuoi davvero puoi farlo cliccando sul link qui sotto.
16
+ instruction_2: Se non sei stato tu ad effettuare questa richiesta puoi ignorare questa mail.
17
+ instruction_3: La tua password non cambierà finchè non accederai al link sopra.
18
+ subject: Istruzioni per resettare la password
19
+ unlock_instructions:
20
+ action: Sblocca il mio account
21
+ greeting: Ciao %{recipient}!
22
+ instruction: ! 'Clicca sul link qui sotto per sbloccare il tuo account:'
23
+ message: Il tuo account è stato bloccato a seguito di un numero eccessivo di tentativi di accesso falliti.
24
+ subject: Istruzioni per lo sblocco
25
+ passwords:
26
+ new:
27
+ forgot_your_password: Password dimenticata?
28
+ send_me_reset_password_instructions: Inviami le istruzioni per resettare la password
29
+ registrations:
30
+ edit:
31
+ are_you_sure: Sei sicuro?
32
+ cancel_my_account: Rimuovi il mio account
33
+ leave_blank_if_you_don_t_want_to_change_it: lascia in bianco se non vuoi cambiarla
34
+ title: Modifica %{resource}
35
+ we_need_your_current_password_to_confirm_your_changes: abbiamo bisogno della tua password attuale per confermare i cambiamenti
36
+ new:
37
+ sign_up: Registrati
38
+ sessions:
39
+ new:
40
+ sign_in: Accedi
41
+ shared:
42
+ links:
43
+ didn_t_receive_confirmation_instructions: Non hai ricevuto le istruzioni per la conferma?
44
+ didn_t_receive_unlock_instructions: Non hai ricevuto le istruzioni per lo sblocco?
45
+ forgot_your_password: Password dimenticata?
46
+ sign_in: Accedi
47
+ sign_in_with_provider: Accedi con %{provider}
48
+ sign_up: Registrati
49
+ unlocks:
50
+ new:
51
+ resend_unlock_instructions: Invia di nuovo le istruzioni per lo sblocco
data/locales/nl.yml ADDED
@@ -0,0 +1,59 @@
1
+ nl:
2
+ devise:
3
+ confirmations:
4
+ new:
5
+ resend_confirmation_instructions: Verstuur bevestiging-instructies opnieuw
6
+ mailer:
7
+ confirmation_instructions:
8
+ action: Bevestig mijn account
9
+ greeting: Welkom %{recipient}!
10
+ instruction: ! 'U kunt uw email bevestigen via onderstaande link:'
11
+ subject: Bevestiging-instructies
12
+ reset_password_instructions:
13
+ action: Verander mijn wachtwoord
14
+ greeting: Hallo %{recipient}!
15
+ instruction: Iemand heeft een link gevraagd om uw wachtwoord te wijzigen; dit kan via onderstaande link.
16
+ instruction_2: Als u dit niet heeft gedaan, negeer deze mail alstublieft.
17
+ instruction_3: Uw wachtwoord zal niet wijzigen totdat u bovenstaande link heeft gevolgd en een nieuw wachtwoord heeft aangevraagd.
18
+ subject: Reset wachtwoord instructies
19
+ unlock_instructions:
20
+ action: Ontgrendel mijn account
21
+ greeting: Hallo %{recipient}!
22
+ instruction: ! 'U kunt uw account ontgrendelen via onderstaande link:'
23
+ message: Uw account is vergrendeld wegens te veel mislukte pogingen in te loggen.
24
+ subject: Ontgrendel instructies
25
+ passwords:
26
+ new:
27
+ forgot_your_password: Wachtwoord vergeten?
28
+ send_me_reset_password_instructions: Stuur me wachtwoord reset instructies
29
+ edit:
30
+ change_your_password: Wijzig uw wachtwoord
31
+ new_password: Nieuw wachtwoord
32
+ confirm_new_password: Bevestig nieuw wachtwoord
33
+ change_my_password: Verander mijn wachtwoord
34
+ registrations:
35
+ edit:
36
+ are_you_sure: Weet u het zeker?
37
+ cancel_my_account: Annuleer mijn account
38
+ leave_blank_if_you_don_t_want_to_change_it: laat leeg als u het niet wilt wijzigen
39
+ title: Bewerk %{resource}
40
+ we_need_your_current_password_to_confirm_your_changes: we hebben uw huidige wachtwoord nodig om uw veranderingen te bevestigen
41
+ update: Bijwerken
42
+ cancel_my_account: Annuleer mijn account
43
+ unhappy: Niet blij
44
+ new:
45
+ sign_up: Maak account aan
46
+ sessions:
47
+ new:
48
+ sign_in: Inloggen
49
+ shared:
50
+ links:
51
+ didn_t_receive_confirmation_instructions: Geen bevestigingsmail ontvangen?
52
+ didn_t_receive_unlock_instructions: Geen ontgrendel-instructies ontvangen?
53
+ forgot_your_password: Wachtwoord vergeten?
54
+ sign_in: Inloggen
55
+ sign_in_with_provider: Inloggen met %{provider}
56
+ sign_up: Maak account aan
57
+ unlocks:
58
+ new:
59
+ resend_unlock_instructions: Verstuur ontgrendel-instructies opnieuw
data/locales/pl.yml ADDED
@@ -0,0 +1,57 @@
1
+ pl:
2
+ devise:
3
+ confirmations:
4
+ new:
5
+ resend_confirmation_instructions: Wyślij ponownie instrukcje aktywacji
6
+ mailer:
7
+ confirmation_instructions:
8
+ action: Potwierdź swoje konto
9
+ greeting: Witaj %{recipient}!
10
+ instruction: ! 'Możesz potwierdzić swoje konto przy pomocy poniższego linku:'
11
+ subject: Instrukcja aktywacji konta
12
+ reset_password_instructions:
13
+ action: Zmień swoje hasło
14
+ greeting: Cześć %{recipient}!
15
+ instruction: 'Ktoś zażądał zmiany hasła do Twojego konta. Hasło możesz zmienić wchodząc na poniższy link:'
16
+ instruction_2: Jeśli to nie Ty zażądałeś zmiany hasła, proszę zignoruj tę wiadomość.
17
+ instruction_3: Twoje hasło nie ulegnie zmianie dopóki nie wejdziesz na poniższy link i nie ustawisz nowego.
18
+ subject: Instrukcja zmiany hasła
19
+ unlock_instructions:
20
+ action: Odblokuj swoje konto
21
+ greeting: Cześć %{recipient}!
22
+ instruction: ! 'Kliknij poniższy link aby odblokować swoje konto.'
23
+ message: Twoje konto zostało zablokowane z powodu zbyt dużej ilości nieprawidłowych prób zalogowania się na nie.
24
+ subject: Instrukcja odblokowania konta
25
+ passwords:
26
+ new:
27
+ forgot_your_password: Zapomniałeś swoje hasło?
28
+ send_me_reset_password_instructions: Wyślij instrukcje zmiany hasła
29
+ edit:
30
+ change_your_password: Zmień swoje hasło
31
+ new_password: Nowe hasło
32
+ confirm_new_password: Powtórz nowe hasło
33
+ change_my_password: Zmień swoje hasło
34
+ registrations:
35
+ edit:
36
+ are_you_sure: Jesteś pewny?
37
+ cancel_my_account: Anuluj moje konto
38
+ leave_blank_if_you_don_t_want_to_change_it: pozostaw puste jeśli nie chcesz wprowadzać zmian
39
+ title: Edytuj %{resource}
40
+ we_need_your_current_password_to_confirm_your_changes: potrzebujemy Twojego bieżącego hasła aby potwierdzić zmiany
41
+ update: Zaktualizuj
42
+ new:
43
+ sign_up: Zarejestruj się
44
+ sessions:
45
+ new:
46
+ sign_in: Zaloguj się
47
+ shared:
48
+ links:
49
+ didn_t_receive_confirmation_instructions: Nie otrzymałeś instrukcji aktywacji konta?
50
+ didn_t_receive_unlock_instructions: Nie otrzymałeś instrukcji odblokowania konta?
51
+ forgot_your_password: Zapomniałeś hasło?
52
+ sign_in: Zaloguj się
53
+ sign_in_with_provider: Zaloguj się przez %{provider}
54
+ sign_up: Zarejestruj się
55
+ unlocks:
56
+ new:
57
+ resend_unlock_instructions: Wyślij instrukcje odblokowania konta
data/locales/pt-BR.yml ADDED
@@ -0,0 +1,56 @@
1
+ pt-BR:
2
+ devise:
3
+ confirmations:
4
+ new:
5
+ resend_confirmation_instructions: Reenviar instruções de confirmação
6
+ mailer:
7
+ confirmation_instructions:
8
+ action: Confirmar minha conta
9
+ greeting: Bem-vindo %{recipient}!
10
+ instruction: ! 'Você pode confirmar sua conta através do link abaixo:'
11
+ subject: Instruções de confirmação
12
+ reset_password_instructions:
13
+ action: Redefinir minha senha
14
+ greeting: Olá %{recipient}!
15
+ instruction: Alguém fez o pedido para redefinir sua senha, e você pode fazer isso clicando no link abaixo.
16
+ instruction_2: Se você não fez este pedido, por favor ignore este e-mail.
17
+ instruction_3: Sua senha não será alterada até que você acesse o link abaixo e crie uma nova.
18
+ subject: Instruções para redefinição da senha
19
+ unlock_instructions:
20
+ action: Desbloquear minha conta
21
+ greeting: Olá %{recipient}!
22
+ instruction: ! 'Clique no link abaixo para desbloquear sua conta:'
23
+ message: Sua conta foi bloqueada devido ao excessivo número de tentativas de acesso inválidas.
24
+ subject: Instruções de desbloqueio
25
+ passwords:
26
+ new:
27
+ forgot_your_password: Esqueceu sua senha?
28
+ send_me_reset_password_instructions: Enviar instruções para redefinição da senha
29
+ edit:
30
+ change_your_password: Altere sua senha
31
+ new_password: Nova senha
32
+ confirm_new_password: Confirme a nova senha
33
+ change_my_password: Alterar minha senha
34
+ registrations:
35
+ edit:
36
+ are_you_sure: Você tem certeza?
37
+ cancel_my_account: Cancelar minha conta
38
+ leave_blank_if_you_don_t_want_to_change_it: deixe em branco caso não queira alterá-la
39
+ title: Editar %{resource}
40
+ we_need_your_current_password_to_confirm_your_changes: precisamos da sua senha atual para confirmar suas mudanças
41
+ new:
42
+ sign_up: Inscrever-se
43
+ sessions:
44
+ new:
45
+ sign_in: Login
46
+ shared:
47
+ links:
48
+ didn_t_receive_confirmation_instructions: Não recebeu instruções de confirmação?
49
+ didn_t_receive_unlock_instructions: Não recebeu instruções de desbloqueio?
50
+ forgot_your_password: Esqueceu sua senha?
51
+ sign_in: Login
52
+ sign_in_with_provider: Entrar com %{provider}
53
+ sign_up: Inscrever-se
54
+ unlocks:
55
+ new:
56
+ resend_unlock_instructions: Reenviar instruções de desbloqueio
data/locales/ru.yml ADDED
@@ -0,0 +1,56 @@
1
+ ru:
2
+ devise:
3
+ confirmations:
4
+ new:
5
+ resend_confirmation_instructions: "Выслать повторно письмо с активацией"
6
+ mailer:
7
+ confirmation_instructions:
8
+ action: "Активировать"
9
+ greeting: "Привет \"%{recipient}!\""
10
+ instruction: "Вы можете активировать свою учетную запись, нажав ссылку снизу:"
11
+ subject: "Активация учетной записи"
12
+ reset_password_instructions:
13
+ action: "Изменить пароль"
14
+ greeting: "Привет \"%{recipient}\"!"
15
+ instruction: "Вы (или кто-то еще) запросили изменение пароля. Для изменение пароля нажимите ссылку ниже:"
16
+ instruction_2: "Если вы не запрашивали изменение пароля - проигнорируйте это сообщение"
17
+ instruction_3: "Ваш пароль не изменится пока вы не нажмете на ссылку и не введете новый."
18
+ subject: "Запрос на изменение пароля"
19
+ unlock_instructions:
20
+ action: "Разблокировать учетную запись"
21
+ greeting: "Привет \"%{recipient}\"!"
22
+ instruction: "Нажмите ссылку для активации учетной записи:"
23
+ message: "Ваша учетная запись была заблокирована в связи с превышением лимита неудачных попыток входа."
24
+ subject: "Инструкции для разблокировки учетной записи"
25
+ passwords:
26
+ new:
27
+ forgot_your_password: "Забыли пароль?"
28
+ send_me_reset_password_instructions: "Выслать новый пароль"
29
+ edit:
30
+ change_your_password: "Изменить пароль"
31
+ new_password: "Новый пароль"
32
+ confirm_new_password: Повторите новый пароль"
33
+ change_my_password: "Изменить мой пароль"
34
+ registrations:
35
+ edit:
36
+ are_you_sure: "Вы уверены?"
37
+ cancel_my_account: "Удалить учетную запись"
38
+ leave_blank_if_you_don_t_want_to_change_it: "оставьте поле пустым, если не хотите ничего менять"
39
+ title: "Редактировать \"%{resource}\""
40
+ we_need_your_current_password_to_confirm_your_changes: "введите текущий пароль для подтверждения изменений"
41
+ new:
42
+ sign_up: "Регистрация"
43
+ sessions:
44
+ new:
45
+ sign_in: "Войти"
46
+ shared:
47
+ links:
48
+ didn_t_receive_confirmation_instructions: "Не получили подтверждение?"
49
+ didn_t_receive_unlock_instructions: "Не получили код разблокировки?"
50
+ forgot_your_password: "Забыли пароль?"
51
+ sign_in: "Войти"
52
+ sign_in_with_provider: "Войти с помощью: \"%{provider}\""
53
+ sign_up: "Регистрация"
54
+ unlocks:
55
+ new:
56
+ resend_unlock_instructions: "Выслать подтверждение заново"