devise-bootstrap-views 0.0.9 → 0.0.10
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +9 -1
- data/app/views/erb/confirmations/new.html.erb +18 -0
- data/app/views/erb/mailer/confirmation_instructions.html.erb +6 -0
- data/app/views/erb/mailer/reset_password_instructions.html.erb +8 -0
- data/app/views/erb/mailer/unlock_instructions.html.erb +7 -0
- data/app/views/erb/passwords/edit.html.erb +24 -0
- data/app/views/erb/passwords/new.html.erb +17 -0
- data/app/views/erb/registrations/edit.html.erb +31 -0
- data/app/views/erb/registrations/new.html.erb +24 -0
- data/app/views/{devise → erb}/sessions/new.html.erb +7 -7
- data/app/views/erb/shared/_links.html.erb +25 -0
- data/app/views/erb/unlocks/new.html.erb +16 -0
- data/app/views/haml/confirmations/new.html.haml +11 -0
- data/app/views/haml/mailer/confirmation_instructions.html.haml +4 -0
- data/app/views/haml/mailer/reset_password_instructions.html.haml +5 -0
- data/app/views/haml/mailer/unlock_instructions.html.haml +4 -0
- data/app/views/haml/passwords/edit.html.haml +15 -0
- data/app/views/haml/passwords/new.html.haml +11 -0
- data/app/views/haml/registrations/edit.html.haml +27 -0
- data/app/views/haml/registrations/new.html.haml +17 -0
- data/app/views/haml/sessions/new.html.haml +18 -0
- data/app/views/haml/shared/_links.html.haml +19 -0
- data/app/views/haml/unlocks/new.html.haml +11 -0
- data/app/views/slim/confirmations/new.html.slim +12 -0
- data/app/views/slim/mailer/confirmation_instructions.html.slim +7 -0
- data/app/views/slim/mailer/reset_password_instructions.html.slim +10 -0
- data/app/views/slim/mailer/unlock_instructions.html.slim +8 -0
- data/app/views/slim/passwords/edit.html.slim +16 -0
- data/app/views/slim/passwords/new.html.slim +12 -0
- data/app/views/slim/registrations/edit.html.slim +34 -0
- data/app/views/slim/registrations/new.html.slim +18 -0
- data/app/views/slim/sessions/new.html.slim +19 -0
- data/app/views/slim/shared/_links.html.slim +19 -0
- data/app/views/slim/unlocks/new.html.slim +12 -0
- data/lib/generators/devise/views/bootstrap_haml_templates/bootstrap_haml_templates_generator.rb +10 -0
- data/lib/generators/devise/views/bootstrap_slim_templates/bootstrap_slim_templates_generator.rb +10 -0
- data/lib/generators/devise/views/bootstrap_templates/bootstrap_templates_generator.rb +1 -1
- data/lib/generators/devise/views/locale/locale_generator.rb +6 -3
- data/lib/version.rb +1 -1
- data/locales/af.yml +120 -0
- data/locales/ar.yml +60 -48
- data/locales/az.yml +118 -0
- data/locales/bg.yml +120 -0
- data/locales/bn.yml +120 -0
- data/locales/bs.yml +122 -0
- data/locales/ca.yml +86 -25
- data/locales/cs.yml +97 -86
- data/locales/da.yml +120 -0
- data/locales/de-CH.yml +122 -0
- data/locales/de.yml +72 -62
- data/locales/el.yml +120 -0
- data/locales/en-GB.yml +120 -0
- data/locales/en.yml +95 -87
- data/locales/es-MX.yml +120 -0
- data/locales/es.yml +85 -16
- data/locales/et.yml +120 -0
- data/locales/fa.yml +120 -0
- data/locales/fi.yml +120 -0
- data/locales/fr-CA.yml +120 -0
- data/locales/fr.yml +86 -17
- data/locales/he.yml +120 -0
- data/locales/hr.yml +122 -0
- data/locales/hu.yml +75 -14
- data/locales/id.yml +118 -0
- data/locales/is.yml +120 -0
- data/locales/it.yml +73 -4
- data/locales/ja.yml +120 -0
- data/locales/ko.yml +118 -0
- data/locales/lt.yml +121 -0
- data/locales/lv.yml +121 -0
- data/locales/my.yml +118 -0
- data/locales/nb.yml +120 -0
- data/locales/nl.yml +75 -14
- data/locales/nn-NO.yml +120 -0
- data/locales/no.yml +120 -0
- data/locales/pl.yml +77 -12
- data/locales/pt-BR.yml +73 -9
- data/locales/pt.yml +120 -0
- data/locales/ro.yml +121 -0
- data/locales/ru.yml +78 -55
- data/locales/sk.yml +121 -0
- data/locales/sl.yml +122 -0
- data/locales/sr-RS.yml +122 -0
- data/locales/sr.yml +122 -0
- data/locales/sv.yml +120 -0
- data/locales/th.yml +118 -0
- data/locales/tr.yml +74 -7
- data/locales/uk.yml +101 -35
- data/locales/vi.yml +120 -0
- data/locales/zh-CN.yml +101 -40
- data/locales/zh-HK.yml +118 -0
- data/locales/zh-TW.yml +101 -38
- metadata +74 -14
- data/app/views/devise/confirmations/new.html.erb +0 -18
- data/app/views/devise/mailer/confirmation_instructions.html.erb +0 -6
- data/app/views/devise/mailer/reset_password_instructions.html.erb +0 -8
- data/app/views/devise/mailer/unlock_instructions.html.erb +0 -7
- data/app/views/devise/passwords/edit.html.erb +0 -24
- data/app/views/devise/passwords/new.html.erb +0 -17
- data/app/views/devise/registrations/edit.html.erb +0 -31
- data/app/views/devise/registrations/new.html.erb +0 -24
- data/app/views/devise/shared/_links.html.erb +0 -25
- data/app/views/devise/unlocks/new.html.erb +0 -16
data/locales/fr.yml
CHANGED
@@ -1,51 +1,120 @@
|
|
1
1
|
fr:
|
2
|
+
activerecord:
|
3
|
+
attributes:
|
4
|
+
user:
|
5
|
+
current_password: Mot de passe actuel
|
6
|
+
email: Courriel
|
7
|
+
password: Mot de passe
|
8
|
+
password_confirmation: Confirmation du mot de passe
|
9
|
+
remember_me: Se souvenir de moi
|
10
|
+
reset_password_token:
|
11
|
+
unlock_token: Clé de déblocage
|
12
|
+
models:
|
13
|
+
user: Utilisateur
|
2
14
|
devise:
|
3
15
|
confirmations:
|
16
|
+
confirmed: Votre compte a été confirmé avec succès.
|
4
17
|
new:
|
5
18
|
resend_confirmation_instructions: Renvoyer les instructions de confirmation
|
19
|
+
send_instructions: Vous allez recevoir sous quelques minutes un courriel comportant des instructions pour confirmer votre compte.
|
20
|
+
send_paranoid_instructions: Si votre courriel existe sur notre base de données, vous recevrez sous quelques minutes un message avec des instructions pour confirmer votre compte.
|
21
|
+
failure:
|
22
|
+
already_authenticated: Vous êtes déjà connecté(e).
|
23
|
+
inactive: Votre compte n’est pas encore activé.
|
24
|
+
invalid: Courriel ou mot de passe incorrect.
|
25
|
+
last_attempt: Il vous reste une chance avant que votre compte soit bloqué.
|
26
|
+
locked: Votre compte est verrouillé.
|
27
|
+
not_found_in_database: Courriel ou mot de passe incorrect.
|
28
|
+
timeout: Votre session est expirée, veuillez vous reconnecter pour continuer.
|
29
|
+
unauthenticated: Vous devez vous connecter ou vous enregistrer pour continuer.
|
30
|
+
unconfirmed: Vous devez confirmer votre compte par courriel.
|
6
31
|
mailer:
|
7
32
|
confirmation_instructions:
|
8
|
-
action: Confirmer mon
|
9
|
-
greeting: Bienvenue %{recipient}
|
10
|
-
instruction:
|
11
|
-
subject: Instructions
|
33
|
+
action: Confirmer mon courriel
|
34
|
+
greeting: Bienvenue %{recipient}!
|
35
|
+
instruction: 'Vous pouvez confirmer votre courriel grâce au lien ci-dessous:'
|
36
|
+
subject: Instructions de confirmation
|
37
|
+
password_change:
|
38
|
+
greeting: Bonjour %{recipient}!
|
39
|
+
message: Nous vous contactons pour vous notifier que votre mot de passe a été modifié.
|
40
|
+
subject: Mot de passe modifié.
|
12
41
|
reset_password_instructions:
|
13
42
|
action: Changer mon mot de passe
|
14
|
-
greeting: Bonjour %{recipient}
|
15
|
-
instruction:
|
16
|
-
instruction_2: Si vous n'avez pas émis cette demande, merci d'ignorer
|
43
|
+
greeting: Bonjour %{recipient}!
|
44
|
+
instruction: 'Quelqu''un a demandé un lien pour changer votre mot de passe, le voici :'
|
45
|
+
instruction_2: Si vous n'avez pas émis cette demande, merci d'ignorer ce courriel.
|
17
46
|
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
|
47
|
+
subject: Instructions pour changer le mot de passe
|
19
48
|
unlock_instructions:
|
20
49
|
action: Débloquer mon compte
|
21
|
-
greeting: Bonjour %{recipient}
|
22
|
-
instruction:
|
23
|
-
message: Votre compte a été bloqué suite à un nombre d'essais de connexions
|
24
|
-
subject: Instructions pour
|
50
|
+
greeting: Bonjour %{recipient}!
|
51
|
+
instruction: 'Suivez ce lien pour débloquer votre compte:'
|
52
|
+
message: Votre compte a été bloqué suite à un nombre d'essais de connexions manquées trop important
|
53
|
+
subject: Instructions pour déverrouiller le compte
|
54
|
+
omniauth_callbacks:
|
55
|
+
failure: 'Nous ne pouvons pas vous authentifier depuis %{kind} pour la raison suivante : ''%{reason}''.'
|
56
|
+
success: Autorisé avec succès par votre compte %{kind}.
|
25
57
|
passwords:
|
58
|
+
edit:
|
59
|
+
change_my_password: Changer mon mot de passe
|
60
|
+
change_your_password: Changer votre mot de passe
|
61
|
+
confirm_new_password: Confirmez votre nouveau mot de passe
|
62
|
+
new_password: Nouveau mot de passe
|
26
63
|
new:
|
27
64
|
forgot_your_password: Mot de passe oublié ?
|
28
65
|
send_me_reset_password_instructions: Envoyez-moi des instructions pour réinitialiser mon mot de passe
|
66
|
+
no_token: Vous ne pouvez pas accéder à cette page si vous n’y accédez pas depuis un courriel de réinitialisation de mot de passe. Si vous venez en effet d’un tel courriel, vérifiez que vous avez copié l’adresse URL en entier.
|
67
|
+
send_instructions: Vous allez recevoir sous quelques minutes un courriel vous indiquant comment réinitialiser votre mot de passe.
|
68
|
+
send_paranoid_instructions: Si votre courriel existe dans notre base de données, vous recevrez un lien vous permettant de récupérer votre mot de passe.
|
69
|
+
updated: Votre mot de passe a été modifié avec succès. Vous êtes maintenant connecté(e).
|
70
|
+
updated_not_active: Votre mot de passe a été modifié avec succès.
|
29
71
|
registrations:
|
72
|
+
destroyed: Au revoir ! Votre compte a été annulé avec succès. Nous espérons vous revoir bientôt.
|
30
73
|
edit:
|
31
|
-
are_you_sure: Êtes-vous sûr
|
74
|
+
are_you_sure: "Êtes-vous sûr ?"
|
32
75
|
cancel_my_account: Supprimer mon compte
|
76
|
+
currently_waiting_confirmation_for_email: 'Confirmation en attente pour: %{email}'
|
33
77
|
leave_blank_if_you_don_t_want_to_change_it: laissez ce champ vide pour le laisser inchangé
|
34
|
-
title: Éditer %{resource}
|
78
|
+
title: "Éditer %{resource}"
|
79
|
+
unhappy: 'Pas content '
|
80
|
+
update: Modifier
|
35
81
|
we_need_your_current_password_to_confirm_your_changes: nous avons besoin de votre mot de passe actuel pour valider ces modifications
|
36
82
|
new:
|
37
83
|
sign_up: Inscription
|
84
|
+
signed_up: Bienvenue ! Vous vous êtes enregistré(e) avec succès.
|
85
|
+
signed_up_but_inactive: Vous vous êtes enregistré(e) avec succès. Cependant, nous n’avons pas pu vous connecter car votre compte n’a pas encore été activé.
|
86
|
+
signed_up_but_locked: Vous vous êtes enregistré(e) avec succès. Cependant, nous n’avons pas pu vous connecter car votre compte est verrouillé.
|
87
|
+
signed_up_but_unconfirmed: Un message avec un lien de confirmation vous a été envoyé par mail. Veuillez suivre ce lien pour activer votre compte.
|
88
|
+
update_needs_confirmation: Vous avez modifié votre compte avec succès, mais nous devons vérifier votre nouvelle adresse de courriel. Veuillez consulter vos courriels et cliquer sur le lien de confirmation pour confirmer votre nouvelle adresse.
|
89
|
+
updated: Votre compte a été modifié avec succès.
|
38
90
|
sessions:
|
91
|
+
already_signed_out: Déconnecté(e).
|
39
92
|
new:
|
40
93
|
sign_in: Connexion
|
94
|
+
signed_in: Connecté(e) avec succès.
|
95
|
+
signed_out: Déconnecté(e) avec succès.
|
41
96
|
shared:
|
42
97
|
links:
|
43
|
-
|
44
|
-
|
98
|
+
back: Retour
|
99
|
+
didn_t_receive_confirmation_instructions: Vous n'avez pas reçu le courriel de confirmation ?
|
100
|
+
didn_t_receive_unlock_instructions: Vous n'avez pas reçu le courriel de déblocage ?
|
45
101
|
forgot_your_password: Mot de passe oublié ?
|
46
102
|
sign_in: Connexion
|
47
103
|
sign_in_with_provider: Connexion avec %{provider}
|
48
104
|
sign_up: Inscription
|
49
105
|
unlocks:
|
50
106
|
new:
|
51
|
-
resend_unlock_instructions: Renvoyer les instructions de
|
107
|
+
resend_unlock_instructions: Renvoyer les instructions de déblocage
|
108
|
+
send_instructions: Vous allez recevoir sous quelques minutes un courriel comportant des instructions pour déverrouiller votre compte.
|
109
|
+
send_paranoid_instructions: Si votre courriel existe sur notre base de données, vous recevrez sous quelques minutes un message avec des instructions pour déverrouiller votre compte.
|
110
|
+
unlocked: Votre compte a été déverrouillé avec succès. Veuillez vous connecter.
|
111
|
+
errors:
|
112
|
+
messages:
|
113
|
+
already_confirmed: a déjà été confirmé(e)
|
114
|
+
confirmation_period_expired: doit être confirmé(e) en %{period}, veuillez en demander un(e) autre
|
115
|
+
expired: est expiré, veuillez en demander un autre
|
116
|
+
not_found: n’a pas été trouvé(e)
|
117
|
+
not_locked: n’était pas verrouillé(e)
|
118
|
+
not_saved:
|
119
|
+
one: 'une erreur a empêché ce (cet ou cette) %{resource} d’être enregistré(e) :'
|
120
|
+
other: "%{count} erreurs ont empêché ce (cet ou cette) %{resource} d’être enregistré(e) :"
|
data/locales/he.yml
ADDED
@@ -0,0 +1,120 @@
|
|
1
|
+
he:
|
2
|
+
activerecord:
|
3
|
+
attributes:
|
4
|
+
user:
|
5
|
+
current_password: "סיסמא נוכחית"
|
6
|
+
email: "אימייל"
|
7
|
+
password: "סיסמא"
|
8
|
+
password_confirmation: "אישור סיסמא"
|
9
|
+
remember_me: "זכור אותי"
|
10
|
+
reset_password_token:
|
11
|
+
unlock_token:
|
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
|
+
last_attempt: "יש לך עוד ניסיון אחד לפני שהחשבון שלך ינעל."
|
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
|
+
password_change:
|
38
|
+
greeting:
|
39
|
+
message:
|
40
|
+
subject:
|
41
|
+
reset_password_instructions:
|
42
|
+
action: "שנה סיסמא"
|
43
|
+
greeting: "שלום %{recipient}!"
|
44
|
+
instruction: "נתקבלה בקשה לשינוי הסיסמא שלך וביכולתך לעשות זאת בעזרת הקישור המוצג למטה."
|
45
|
+
instruction_2: "אם אתה לא ביקשת זאת, אנא התעלם מאימייל זה."
|
46
|
+
instruction_3: "סיסמאתך תוחלף רק אם תלחץ על הקישור המוצג מעל ותיצור סיסמא חדשה."
|
47
|
+
subject: "הוראות לאיפוס סיסמא"
|
48
|
+
unlock_instructions:
|
49
|
+
action: "בטל נעילת חשבון"
|
50
|
+
greeting: "שלום %{recipient}!"
|
51
|
+
instruction: "לחץ על הלינק המוצג למטה בכדי לבטל את נעילת חשבונך:"
|
52
|
+
message: "חשבונך ננעל עקב מספר רב של ניסיונות כניסה כושלים."
|
53
|
+
subject: "הוראות להסרת נעילה"
|
54
|
+
omniauth_callbacks:
|
55
|
+
failure: לא הצלחנו לאמת את זהותך מסוג %{kind} בגלל "%{reason}"
|
56
|
+
success:
|
57
|
+
passwords:
|
58
|
+
edit:
|
59
|
+
change_my_password: "שנה סיסמא"
|
60
|
+
change_your_password: "שינוי סיסמא"
|
61
|
+
confirm_new_password: "אישור סיסמא חדשה"
|
62
|
+
new_password: "סיסמא חדשה"
|
63
|
+
new:
|
64
|
+
forgot_your_password: "שכחת סיסמא?"
|
65
|
+
send_me_reset_password_instructions: "שלח לי הוראות שיחזור סיסמא"
|
66
|
+
no_token: "אינך יכול/ה לגשת לעמוד זה אם לא הופנת מאימייל לשינוי סיסמא. אם את/ה כן מגיע משם, אנא ודא/י שהשתמשת בכתובת אינטרנט המלאה."
|
67
|
+
send_instructions: "בדקות הקרובות יגיע אליך אימייל עם הנחיות כיצד לאפס את סיסמתך."
|
68
|
+
send_paranoid_instructions: "אם האימייל שלך קיים במאגר, אנו נשלח לך לינק לחידוש סיסמא באימייל."
|
69
|
+
updated: "סיסמתך שונתה בהצלחה. כעת הנך מחובר/ת."
|
70
|
+
updated_not_active: "הסיסמא שלך שונתה בהצלחה."
|
71
|
+
registrations:
|
72
|
+
destroyed: "חשבונך נמחק בהצלחה. מקווים לראותך בעתיד."
|
73
|
+
edit:
|
74
|
+
are_you_sure: "האם את בטוח?"
|
75
|
+
cancel_my_account: "בטל את החשבון שלי"
|
76
|
+
currently_waiting_confirmation_for_email: "ממתין לאישור של הכתובת: %{email}"
|
77
|
+
leave_blank_if_you_don_t_want_to_change_it: "השאר ריק אם אין ברצונך לשנותו"
|
78
|
+
title: "ערוך %{resource}"
|
79
|
+
unhappy: "לא מרוצה"
|
80
|
+
update: "עדכן"
|
81
|
+
we_need_your_current_password_to_confirm_your_changes: "אנחנו זקוקים לסיסמאתך הנוכחית על מנת לבצע את השינויים שביקשת"
|
82
|
+
new:
|
83
|
+
sign_up: "הרשמה"
|
84
|
+
signed_up: "נרשמת בהצלחה. אם נדרש, יישלח אליך אימייל לאישור הרשמתך."
|
85
|
+
signed_up_but_inactive: "ההרשמה בוצעה בהצלחה, אך לא יכולנו להכניס אותך למערכת מכיוון שעוד לא הפעלת את חשבונך"
|
86
|
+
signed_up_but_locked: "ההרשמה בוצעה בהצלחה, אך לא יכולנו להכניס אותך למערכת מכיוון שחשבונתך נעול."
|
87
|
+
signed_up_but_unconfirmed: "הודעה עם לינק לאישור חשבונך נשלח לאימייל שלך. אנא פתח/י את הלינק על מנת להפעיל את חשבונך."
|
88
|
+
update_needs_confirmation: "עידכנת את חשבונך בהצלחה, אבל אנחנו צריכים לאשר את האימייל החדש שלך. אנא בדק/י את האימייל שלך ולחצ/י על הלינק על מנת לאשר את חשבון האימייל החדש."
|
89
|
+
updated: "עדכנת בהצלחה את חשבונך."
|
90
|
+
sessions:
|
91
|
+
already_signed_out: "התנתקות מוצלחת"
|
92
|
+
new:
|
93
|
+
sign_in: "כניסה"
|
94
|
+
signed_in: "התחברת בהצלחה"
|
95
|
+
signed_out: "התנתקת בהצלחה."
|
96
|
+
shared:
|
97
|
+
links:
|
98
|
+
back: "חזור"
|
99
|
+
didn_t_receive_confirmation_instructions: "לא קיבלת את הוראות האישור?"
|
100
|
+
didn_t_receive_unlock_instructions: "לא קיבלת את הוראות ביטול הנעילה?"
|
101
|
+
forgot_your_password: "שכחת סיסמא?"
|
102
|
+
sign_in: "כניסה"
|
103
|
+
sign_in_with_provider: "כניסה באמצעות %{provider}"
|
104
|
+
sign_up: "הרשמה"
|
105
|
+
unlocks:
|
106
|
+
new:
|
107
|
+
resend_unlock_instructions: "שלח שוב הוראות ביטול נעילה"
|
108
|
+
send_instructions: "בדקות הקרובות יישלח אליך אימייל עם הנחיות כיצד להסיר את הנעילה מחשבונך."
|
109
|
+
send_paranoid_instructions: "אם חשבונך קיים, את/ה תקבל/י אימייל עם הוראות כיצד להפעיל מחדש את חשבונך."
|
110
|
+
unlocked: "הנעילה הוסרה בהצלחה. כעת הנך מחובר/ת."
|
111
|
+
errors:
|
112
|
+
messages:
|
113
|
+
already_confirmed: "כבר אושר. אני נסה להיכנס למערכת."
|
114
|
+
confirmation_period_expired:
|
115
|
+
expired: "פג תוקף, אנא בקש אחד חדש."
|
116
|
+
not_found: "לא נמצא."
|
117
|
+
not_locked: "לא היה נעול."
|
118
|
+
not_saved:
|
119
|
+
one: "שגיאה אחת מנעה את ה%{resource} מלהישמר:"
|
120
|
+
other: "%{count} שגיאות מנעו מ%{resource} מלהישמר:"
|
data/locales/hr.yml
ADDED
@@ -0,0 +1,122 @@
|
|
1
|
+
hr:
|
2
|
+
activerecord:
|
3
|
+
attributes:
|
4
|
+
user:
|
5
|
+
current_password:
|
6
|
+
email:
|
7
|
+
password:
|
8
|
+
password_confirmation:
|
9
|
+
remember_me:
|
10
|
+
reset_password_token:
|
11
|
+
unlock_token:
|
12
|
+
models:
|
13
|
+
user:
|
14
|
+
devise:
|
15
|
+
confirmations:
|
16
|
+
confirmed: Vaš račun je uspješno potvrđen. Sad ste prijavljeni.
|
17
|
+
new:
|
18
|
+
resend_confirmation_instructions:
|
19
|
+
send_instructions: U roku nekoliko minuta ćete primiti e-mail s uputama za potvrdu Vašeg računa.
|
20
|
+
send_paranoid_instructions: Ukoliko se Vaša email adresa nalazi u našoj bazi u roku od nekoliko minuta ćete primiti mail s uputama kako potvrditi Vaš račun.
|
21
|
+
failure:
|
22
|
+
already_authenticated: Već ste prijavljeni.
|
23
|
+
inactive: Vaš račun još nije aktiviran.
|
24
|
+
invalid: Neispravan e-mail ili lozinka.
|
25
|
+
last_attempt: Imate još jedan pokušaj prije nego Vaš račun bude zaključan.
|
26
|
+
locked: Vaš račun je zaključan.
|
27
|
+
not_found_in_database: Neispravan e-mail ili lozinka.
|
28
|
+
timeout: Vrijeme trajanja Vaše sesije je isteklo. Za nastavak se prijavite ponovno.
|
29
|
+
unauthenticated: Za nastavak se morate prijaviti ili registrirati.
|
30
|
+
unconfirmed: Prije nastavka morate potvrditi Vaš račun.
|
31
|
+
mailer:
|
32
|
+
confirmation_instructions:
|
33
|
+
action:
|
34
|
+
greeting:
|
35
|
+
instruction:
|
36
|
+
subject: Upute za potvrdu korisničkog računa
|
37
|
+
password_change:
|
38
|
+
greeting:
|
39
|
+
message:
|
40
|
+
subject:
|
41
|
+
reset_password_instructions:
|
42
|
+
action:
|
43
|
+
greeting:
|
44
|
+
instruction:
|
45
|
+
instruction_2:
|
46
|
+
instruction_3:
|
47
|
+
subject: Upute za promjenu lozinke
|
48
|
+
unlock_instructions:
|
49
|
+
action:
|
50
|
+
greeting:
|
51
|
+
instruction:
|
52
|
+
message:
|
53
|
+
subject: Upute za otključavanje korisničkog računa
|
54
|
+
omniauth_callbacks:
|
55
|
+
failure: Nismo Vas u mogućnosti autorizirati sa %{kind} računom zbog "%{reason}".
|
56
|
+
success: Uspješna autorizacija sa %{kind} računa.
|
57
|
+
passwords:
|
58
|
+
edit:
|
59
|
+
change_my_password:
|
60
|
+
change_your_password:
|
61
|
+
confirm_new_password:
|
62
|
+
new_password:
|
63
|
+
new:
|
64
|
+
forgot_your_password:
|
65
|
+
send_me_reset_password_instructions:
|
66
|
+
no_token: Ne možete pristupiti ovoj stranici ako niste kliknuli na link u emailu za resetiranje lozinke.
|
67
|
+
send_instructions: U roku nekoliko minuta ćete primiti e-mail s uputama za promjenu Vaše lozinke.
|
68
|
+
send_paranoid_instructions: Ukoliko se Vaša email adresa nalazi u našoj bazi, na istu ćete u roku od nekoliko minuta primiti link za resetiranje lozinke.
|
69
|
+
updated: Vaša lozinka je uspješno promjenjena. Sad ste prijavljeni.
|
70
|
+
updated_not_active: Vaša lozinka je uspješno promijenjena.
|
71
|
+
registrations:
|
72
|
+
destroyed: Pozdrav! Vaš račun je uspješno obrisan. Nadamo se da ćete se brzo vratiti.
|
73
|
+
edit:
|
74
|
+
are_you_sure:
|
75
|
+
cancel_my_account:
|
76
|
+
currently_waiting_confirmation_for_email:
|
77
|
+
leave_blank_if_you_don_t_want_to_change_it:
|
78
|
+
title:
|
79
|
+
unhappy:
|
80
|
+
update:
|
81
|
+
we_need_your_current_password_to_confirm_your_changes:
|
82
|
+
new:
|
83
|
+
sign_up:
|
84
|
+
signed_up: Dobrodošli! Uspješno ste se registrirali.
|
85
|
+
signed_up_but_inactive: Uspješno ste se registrirali. Doduše, ne možete se prijaviti u sustav zato što Vaš račun još nije aktiviran.
|
86
|
+
signed_up_but_locked: Uspješno ste se registrirali. Nažalost ne možete se prijaviti jer Vam je račun zaključan.
|
87
|
+
signed_up_but_unconfirmed: Poruka s linkom za potvrdu je poslana na Vašu e-mail adresu. Molimo kliknite na link da aktivirate Vaš račun.
|
88
|
+
update_needs_confirmation: Uspješno ste ažurirali Vaš račun, ali trebamo potvrditi Vašu novu e-mail adresu. Molimo provjerite svoje sanduče i kliknite na link za potvrdu.
|
89
|
+
updated: Uspješno ste izmjenili Vaš račun.
|
90
|
+
sessions:
|
91
|
+
already_signed_out:
|
92
|
+
new:
|
93
|
+
sign_in:
|
94
|
+
signed_in: Uspješno ste se prijavili.
|
95
|
+
signed_out: Uspješno ste se odjavili.
|
96
|
+
shared:
|
97
|
+
links:
|
98
|
+
back:
|
99
|
+
didn_t_receive_confirmation_instructions:
|
100
|
+
didn_t_receive_unlock_instructions:
|
101
|
+
forgot_your_password:
|
102
|
+
sign_in:
|
103
|
+
sign_in_with_provider:
|
104
|
+
sign_up:
|
105
|
+
unlocks:
|
106
|
+
new:
|
107
|
+
resend_unlock_instructions:
|
108
|
+
send_instructions: U roku nekoliko minuta ćete primiti e-mail s uputama za otključavanje Vašeg računa.
|
109
|
+
send_paranoid_instructions: Ako Vaš račun postoji, na email ćete u roku nekoliko minuta primiti upute kako ga otključati.
|
110
|
+
unlocked: Vaš račun je uspješno otključan. Molimo prijavite se.
|
111
|
+
errors:
|
112
|
+
messages:
|
113
|
+
already_confirmed: je već potvrđen, molimo pokušajte se prijaviti
|
114
|
+
confirmation_period_expired: je trebao biti potvrđen tijekom perioda %{period}, molimo tražite novi
|
115
|
+
expired: je istekao, molimo zatražite novi
|
116
|
+
not_found: nije pronađeno
|
117
|
+
not_locked: nije zaključan
|
118
|
+
not_saved:
|
119
|
+
few: "%{count} greške sprečavaju snimanje %{resource}:"
|
120
|
+
many: "%{count} grešaka sprečavaju snimanje %{resource}:"
|
121
|
+
one: '1 greška sprečava snimanje %{resource}:'
|
122
|
+
other: "%{count} grešaka sprečavaju snimanje %{resource}:"
|
data/locales/hu.yml
CHANGED
@@ -1,53 +1,101 @@
|
|
1
1
|
hu:
|
2
|
+
activerecord:
|
3
|
+
attributes:
|
4
|
+
user:
|
5
|
+
current_password: Jelenlegi jelszó
|
6
|
+
email: E-mail
|
7
|
+
password: Jelszó
|
8
|
+
password_confirmation: Jelszó megerősítése
|
9
|
+
remember_me: Megjegyez
|
10
|
+
reset_password_token:
|
11
|
+
unlock_token:
|
12
|
+
models:
|
13
|
+
user: Felhasználó
|
2
14
|
devise:
|
3
15
|
confirmations:
|
16
|
+
confirmed: Fiók megerősítve. Bejelentkezve a felhasználói fiókba.
|
4
17
|
new:
|
5
18
|
resend_confirmation_instructions: Megerősítő levél újraküldése
|
19
|
+
send_instructions: A megadott címre egy email érkezik a megerősítő linkkel.
|
20
|
+
send_paranoid_instructions: Ha az email cím már létezik az adatbázisban, egy emailt küldtünk a további teendőkkel a fiók megerősítéséhez.
|
21
|
+
failure:
|
22
|
+
already_authenticated: Már belépett.
|
23
|
+
inactive: A fiók még nincs aktiválva.
|
24
|
+
invalid: Hibás email cím vagy jelszó.
|
25
|
+
last_attempt: Már csak egy próbálkozási lehetőség maradt, mielőtt a fiók zárolásra kerül.
|
26
|
+
locked: A fiók zárolva lett.
|
27
|
+
not_found_in_database: Hibás email cím vagy jelszó.
|
28
|
+
timeout: A munkafolyamat lejárt. Újboli bejelentkezés szükséges.
|
29
|
+
unauthenticated: A folytatáshoz bejelentkezés szükséges.
|
30
|
+
unconfirmed: A folytatáshoz az email cím megerősítése szükséges.
|
6
31
|
mailer:
|
7
32
|
confirmation_instructions:
|
8
33
|
action: Fiók megerősítése
|
9
34
|
greeting: Kedves %{recipient}!
|
10
|
-
instruction:
|
11
|
-
subject:
|
35
|
+
instruction: 'A fiók megerősítéséhez rá kell kattintani az alábbi linkre:'
|
36
|
+
subject: Email cím megerősítés
|
37
|
+
password_change:
|
38
|
+
greeting:
|
39
|
+
message:
|
40
|
+
subject:
|
12
41
|
reset_password_instructions:
|
13
42
|
action: Jelszó megváltoztatása
|
14
43
|
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.
|
44
|
+
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
45
|
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
46
|
instruction_3: Amennyiben nem kattint az alábbi linkre, jelszava továbbra is ugyanaz marad, mint eddig.
|
18
|
-
subject:
|
47
|
+
subject: Jelszó megváltoztatása
|
19
48
|
unlock_instructions:
|
20
49
|
action: Zárolás feloldása
|
21
50
|
greeting: Kedves %{recipient}!
|
22
|
-
instruction:
|
51
|
+
instruction: 'A zárolás feloldásához az alábbi linkre kell kattintani:'
|
23
52
|
message: A felhasználói fiókja zárolva lett túl sok sikertelen belépési kísérlet miatt.
|
24
|
-
subject:
|
53
|
+
subject: Fiók zárolásának megszüntetése
|
54
|
+
omniauth_callbacks:
|
55
|
+
failure: 'Nem sikerült azonosítani %{kind} fiókkal, az ok: "%{reason}".'
|
56
|
+
success: Sikeres azonosítás %{kind} fiókkal.
|
25
57
|
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
58
|
edit:
|
59
|
+
change_my_password: Jelszó megváltoztatása
|
30
60
|
change_your_password: Jelszó megváltoztatása
|
31
|
-
new_password: Új jelszó
|
32
61
|
confirm_new_password: Jelszó megerősítése
|
33
|
-
|
62
|
+
new_password: "Új jelszó"
|
63
|
+
new:
|
64
|
+
forgot_your_password: Elfelejtette a jelszavát?
|
65
|
+
send_me_reset_password_instructions: Jelszóviszaállítási teendők küldése
|
66
|
+
no_token: Ezt az oldalt csak a jelszóváltoztató e-mailben küldött linkre kattintva lehet elérni, és ellenőrizni kell, hogy a címsorban az e-mailben található teljes webcím szerepel-e.
|
67
|
+
send_instructions: A megadott címre egy email érkezik hamarosan a további teendőkről.
|
68
|
+
send_paranoid_instructions: Ha az email cím már létezik az adatbázisban, egy jelszó-visszaállító emailt küldtünk a megadott címre.
|
69
|
+
updated: A jelszó megváltozott. Bejelentkezve a felhasználói fiókba
|
70
|
+
updated_not_active: A jelszó megváltozott
|
34
71
|
registrations:
|
72
|
+
destroyed: Felhasználói fiók törölve. Reméljük, még visszatér hozzánk.
|
35
73
|
edit:
|
36
74
|
are_you_sure: Biztos benne?
|
37
75
|
cancel_my_account: Fiók megszüntetése
|
76
|
+
currently_waiting_confirmation_for_email: 'Még várjuk a következő e-mail cím megerősítését: %{email}'
|
38
77
|
leave_blank_if_you_don_t_want_to_change_it: csak változás esetén kitöltendő
|
39
78
|
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
79
|
unhappy: Szomorú
|
80
|
+
update: Módosítás
|
81
|
+
we_need_your_current_password_to_confirm_your_changes: a változtatás végrehajtásához szükséges a jelenlegi jelszó
|
44
82
|
new:
|
45
83
|
sign_up: Regisztráció
|
84
|
+
signed_up: Sikeres regisztráció.
|
85
|
+
signed_up_but_inactive: A regisztráció sikerült, azonban a bejelentkezés még nem lehetséges, mert a fiók nincs aktiválva.
|
86
|
+
signed_up_but_locked: A regisztráció sikerült, azonban a bejelentkezés még nem lehetséges, mert a fiók zárolt.
|
87
|
+
signed_up_but_unconfirmed: Egy megerősítő linket küldtünk a megadott e-mail címre. Nézze meg az e-mailjeit, és kattintson a küldött linkre a fiók aktiválásához.
|
88
|
+
update_needs_confirmation: A fiók módosítása sikeres, de meg kell erősíteni az e-mail címet. Nézze meg az e-mailjeit, és kattintson a küldött linkre hogy megerősítse az e-mail cím létezését.
|
89
|
+
updated: Sikeres fiók módosítás.
|
46
90
|
sessions:
|
91
|
+
already_signed_out: A kijelentkezés már megtörtént.
|
47
92
|
new:
|
48
93
|
sign_in: Belépés
|
94
|
+
signed_in: Sikeres bejelentkezés.
|
95
|
+
signed_out: A kijelentkezés sikeres.
|
49
96
|
shared:
|
50
97
|
links:
|
98
|
+
back: Vissza
|
51
99
|
didn_t_receive_confirmation_instructions: Nem kapta meg a megerősítő levelet?
|
52
100
|
didn_t_receive_unlock_instructions: Nem kapta meg a feloldáshoz a levelet?
|
53
101
|
forgot_your_password: Elfelejtette a jelszavát?
|
@@ -57,3 +105,16 @@ hu:
|
|
57
105
|
unlocks:
|
58
106
|
new:
|
59
107
|
resend_unlock_instructions: Feloldási teendők újraküldése
|
108
|
+
send_instructions: Hamarosan a megadott címre érkezik egy email a fiók zárolásának megszüntetésével kapcsolatban.
|
109
|
+
send_paranoid_instructions: Ha a fiók létezik, egy emailt küldtünk a további teendőkkel a fiók zárolásának megszüntetéséhez.
|
110
|
+
unlocked: A felhasználói fiók zárolása megszűnt. Bejelentkezve a felhasználói fiókba.
|
111
|
+
errors:
|
112
|
+
messages:
|
113
|
+
already_confirmed: már meg van erősítve
|
114
|
+
confirmation_period_expired: "%{period} letelte előtt kell megerősíteni, igényelj egy újat"
|
115
|
+
expired: lejárt, igényelj egy újat
|
116
|
+
not_found: nem található
|
117
|
+
not_locked: nincs zárolva
|
118
|
+
not_saved:
|
119
|
+
one: '1 hiba miatt %{resource} mentése nem lehetséges:'
|
120
|
+
other: "%{count} hiba miatt %{resource} mentése nem lehetséges:"
|