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/de-CH.yml
ADDED
@@ -0,0 +1,122 @@
|
|
1
|
+
de-CH:
|
2
|
+
activerecord:
|
3
|
+
attributes:
|
4
|
+
user:
|
5
|
+
current_password: Bisheriges Passwort
|
6
|
+
email: E-Mail
|
7
|
+
password: Passwort
|
8
|
+
password_confirmation: Passwortbestätigung
|
9
|
+
remember_me: Angemeldet bleiben
|
10
|
+
reset_password_token: Passwort-Zurücksetzen-Token
|
11
|
+
unlock_token: Entsperrungs-Token
|
12
|
+
models:
|
13
|
+
user: Benutzer
|
14
|
+
devise:
|
15
|
+
confirmations:
|
16
|
+
confirmed: Vielen Dank für Ihre Registrierung. Sie sind jetzt angemeldet.
|
17
|
+
new:
|
18
|
+
resend_confirmation_instructions: Anleitung zur Bestätigung noch mal schicken
|
19
|
+
send_instructions: Sie erhalten in wenigen Minuten eine E-Mail, mit der Sie Ihre Registrierung bestätigen können.
|
20
|
+
send_paranoid_instructions: Falls Ihre E-Mail-Adresse in unserer Datenbank existiert, erhalten Sie in wenigen Minuten eine E-Mail, mit der Sie Ihre Registrierung bestätigen können.
|
21
|
+
failure:
|
22
|
+
already_authenticated: Sie sind bereits angemeldet.
|
23
|
+
inactive: Ihr Account ist nicht aktiv.
|
24
|
+
invalid: Ungültige Anmeldedaten.
|
25
|
+
last_attempt: Sie haben noch einen Versuch, bis Ihr Account gesperrt wird.
|
26
|
+
locked: Ihr Account ist gesperrt.
|
27
|
+
not_found_in_database: Ungültige Anmeldedaten.
|
28
|
+
timeout: Ihre Sitzung ist abgelaufen, bitte melden Sie sich erneut an.
|
29
|
+
unauthenticated: Sie müssen sich anmelden oder registrieren, bevor Sie fortfahren können.
|
30
|
+
unconfirmed: Sie müssen Ihren Account bestätigen, bevor Sie fortfahren können.
|
31
|
+
mailer:
|
32
|
+
confirmation_instructions:
|
33
|
+
action: Mein Konto bestätigen
|
34
|
+
greeting: Willkommen %{recipient}!
|
35
|
+
instruction: 'Folgen Sie dem untenstehenden Link, um Ihr Konto zu bestätigen:'
|
36
|
+
subject: Anleitung zur Bestätigung Ihres Accounts
|
37
|
+
password_change:
|
38
|
+
greeting: Hallo %{recipient}!
|
39
|
+
message: Wir kontaktieren Sie, um Ihnen mitzuteilen, dass Ihr Passwort geändert wurde.
|
40
|
+
subject: Passwort geändert
|
41
|
+
reset_password_instructions:
|
42
|
+
action: Passwort ändern
|
43
|
+
greeting: Hallo %{recipient}!
|
44
|
+
instruction: Jemand hat einen Link angefordert, um Ihr Passwort zu ändern. Klicken Sie auf den unten aufgeführten Link um das Passwort zu ändern.
|
45
|
+
instruction_2: Bitte ignorieren Sie diese E-Mail, wenn Sie kein neues Passwort angefordert haben.
|
46
|
+
instruction_3: Das Passwort wird nicht geändert bis Sie den obenstehenden Link abrufen und ein neues Passwort bestimmen.
|
47
|
+
subject: Anleitung für das Zurücksetzen Ihres Passworts
|
48
|
+
unlock_instructions:
|
49
|
+
action: Mein Konto entsperren
|
50
|
+
greeting: Hallo %{recipient}!
|
51
|
+
instruction: 'Folgen Sie dem untenstehenden Link, um Ihr Konto zu entsperren:'
|
52
|
+
message: Ihr Konto wurde aufgrund einer großen Anzahl von fehlgeschlagenen Anmeldeversuchen gesperrt.
|
53
|
+
subject: Anleitung für die Account-Freischaltung
|
54
|
+
omniauth_callbacks:
|
55
|
+
failure: Sie konnten nicht mit Ihrem %{kind}-Account angemeldet werden, weil "%{reason}".
|
56
|
+
success: Sie haben sich erfolgreich mit Ihrem %{kind}-Account angemeldet.
|
57
|
+
passwords:
|
58
|
+
edit:
|
59
|
+
change_my_password: "Ändere mein Passwort"
|
60
|
+
change_your_password: Passwort ändern
|
61
|
+
confirm_new_password: Neues Passwort bestätigen
|
62
|
+
new_password: Neues Passwort
|
63
|
+
new:
|
64
|
+
forgot_your_password: Haben Sie Ihr Passwort vergessen?
|
65
|
+
send_me_reset_password_instructions: Schicken Sie mir die Anleitung, um mein Passwort zurückzusetzen
|
66
|
+
no_token: Sie können sich nicht auf dieser Seite anmelden, wenn Sie nicht von einer Passwort-Zurücksetzen-E-Mail kommen. Wenn Sie von solch einer E-Mail kommen, überprüfen Sie bitte, ob Sie die gesamte URL verwendeten.
|
67
|
+
send_instructions: Sie erhalten in wenigen Minuten eine E-Mail mit der Anleitung, wie Sie Ihr Passwort zurücksetzen können.
|
68
|
+
send_paranoid_instructions: Falls Ihre E-Mail-Adresse in unserer Datenbank existiert, erhalten Sie in wenigen Minuten eine E-Mail, mit der Anleitung, wie Sie Ihr Passwort zurücksetzen können.
|
69
|
+
updated: "\t\nIhr Passwort wurde geändert. Sie sind jetzt angemeldet."
|
70
|
+
updated_not_active: Ihr Passwort wurde geändert.
|
71
|
+
registrations:
|
72
|
+
destroyed: Ihr Account wurde gelöscht.
|
73
|
+
edit:
|
74
|
+
are_you_sure: Sind Sie sicher?
|
75
|
+
cancel_my_account: Konto löschen
|
76
|
+
currently_waiting_confirmation_for_email: Warte auf Bestätigung von %{email}.
|
77
|
+
leave_blank_if_you_don_t_want_to_change_it: freilassen, wenn Sie das nicht ändern wollen
|
78
|
+
title: "%{resource} bearbeiten"
|
79
|
+
unhappy: Unglücklich
|
80
|
+
update: Aktualisieren
|
81
|
+
we_need_your_current_password_to_confirm_your_changes: wir benötigen Ihr aktuelles Passwort, um die Änderung zu bestätigen
|
82
|
+
new:
|
83
|
+
sign_up: Registrieren
|
84
|
+
signed_up: Sie haben sich erfolgreich registriert.
|
85
|
+
signed_up_but_inactive: Sie haben sich erfolgreich registriert. Wir konnten Sie jedoch nicht anmelden, weil Ihr Account noch nicht aktiviert ist.
|
86
|
+
signed_up_but_locked: Sie haben sich erfolgreich registriert. Wir konnten Sie jedoch nicht anmelden, weil Ihr Account gesperrt ist.
|
87
|
+
signed_up_but_unconfirmed: Sie erhalten in wenigen Minuten eine E-Mail mit einem Link für die Bestätigung der Registrierung. Klicken Sie auf den Link um Ihren Account zu aktivieren.
|
88
|
+
update_needs_confirmation: Ihre Daten wurden aktualisiert, aber Sie müssen Ihre neue E-Mail-Adresse bestätigen. Sie erhalten in wenigen Minuten eine E-Mail, mit der Sie die Änderung Ihrer E-Mail-Adresse abschließen können.
|
89
|
+
updated: Ihre Daten wurden aktualisiert.
|
90
|
+
sessions:
|
91
|
+
already_signed_out: Erfolgreich abgemeldet.
|
92
|
+
new:
|
93
|
+
sign_in: Anmelden
|
94
|
+
signed_in: Erfolgreich angemeldet.
|
95
|
+
signed_out: Erfolgreich abgemeldet.
|
96
|
+
shared:
|
97
|
+
links:
|
98
|
+
back: Zurück
|
99
|
+
didn_t_receive_confirmation_instructions: Keine Anleitung zur Bestätigung erhalten?
|
100
|
+
didn_t_receive_unlock_instructions: Keine Anleitung zum Entsperren erhalten?
|
101
|
+
forgot_your_password: Passwort vergessen?
|
102
|
+
sign_in: |2
|
103
|
+
|
104
|
+
Anmelden
|
105
|
+
sign_in_with_provider: Mit %{provider} anmelden
|
106
|
+
sign_up: Registrieren
|
107
|
+
unlocks:
|
108
|
+
new:
|
109
|
+
resend_unlock_instructions: Anleitung zum Entsperren noch mal schicken
|
110
|
+
send_instructions: Sie erhalten in wenigen Minuten eine E-Mail mit der Anleitung, wie Sie Ihren Account entsperren können.
|
111
|
+
send_paranoid_instructions: Falls Ihre E-Mail-Adresse in unserer Datenbank existiert, erhalten Sie in wenigen Minuten eine E-Mail, mit der Anleitung, wie Sie Ihren Account entsperren können.
|
112
|
+
unlocked: Ihr Account wurde entsperrt. Sie sind jetzt angemeldet.
|
113
|
+
errors:
|
114
|
+
messages:
|
115
|
+
already_confirmed: wurde bereits bestätigt, bitte versuchen Sie, sich anzumelden
|
116
|
+
confirmation_period_expired: muss innerhalb von %{period} bestätigt werden, bitte neu anfordern.
|
117
|
+
expired: ist abgelaufen, bitte neu anfordern
|
118
|
+
not_found: nicht gefunden
|
119
|
+
not_locked: ist nicht gesperrt
|
120
|
+
not_saved:
|
121
|
+
one: "%{resource} konnte aufgrund eines Fehlers nicht gespeichert werden:"
|
122
|
+
other: "%{count} Fehler verhinderten das Speichern von %{resource}:"
|
data/locales/de.yml
CHANGED
@@ -1,82 +1,101 @@
|
|
1
1
|
de:
|
2
|
+
activerecord:
|
3
|
+
attributes:
|
4
|
+
user:
|
5
|
+
current_password: Bisheriges Passwort
|
6
|
+
email: E-Mail
|
7
|
+
password: Passwort
|
8
|
+
password_confirmation: Passwortbestätigung
|
9
|
+
remember_me: Angemeldet bleiben
|
10
|
+
reset_password_token: Passwort-Zurücksetzen-Token
|
11
|
+
unlock_token: Entsperrungs-Token
|
12
|
+
models:
|
13
|
+
user: Benutzer
|
2
14
|
devise:
|
3
15
|
confirmations:
|
16
|
+
confirmed: Vielen Dank für Ihre Registrierung. Sie sind jetzt angemeldet.
|
4
17
|
new:
|
5
18
|
resend_confirmation_instructions: Anleitung zur Bestätigung noch mal schicken
|
6
|
-
|
7
|
-
|
8
|
-
send_paranoid_instructions: Falls Ihre E-Mail-Adresse in unserer Datenbank existiert, werden Sie in wenigen Minuten eine E-Mail mit Anweisungen erhalten, wie Sie Ihr Konto bestätigen.
|
19
|
+
send_instructions: Sie erhalten in wenigen Minuten eine E-Mail, mit der Sie Ihre Registrierung bestätigen können.
|
20
|
+
send_paranoid_instructions: Falls Ihre E-Mail-Adresse in unserer Datenbank existiert, erhalten Sie in wenigen Minuten eine E-Mail, mit der Sie Ihre Registrierung bestätigen können.
|
9
21
|
failure:
|
10
|
-
already_authenticated:
|
11
|
-
inactive:
|
12
|
-
invalid:
|
13
|
-
|
14
|
-
locked:
|
15
|
-
not_found_in_database:
|
16
|
-
timeout:
|
17
|
-
unauthenticated:
|
18
|
-
unconfirmed:
|
22
|
+
already_authenticated: Sie sind bereits angemeldet.
|
23
|
+
inactive: Ihr Account ist nicht aktiv.
|
24
|
+
invalid: Ungültige Anmeldedaten.
|
25
|
+
last_attempt: Sie haben noch einen Versuch, bis Ihr Account gesperrt wird.
|
26
|
+
locked: Ihr Account ist gesperrt.
|
27
|
+
not_found_in_database: Ungültige Anmeldedaten.
|
28
|
+
timeout: Ihre Sitzung ist abgelaufen, bitte melden Sie sich erneut an.
|
29
|
+
unauthenticated: Sie müssen sich anmelden oder registrieren, bevor Sie fortfahren können.
|
30
|
+
unconfirmed: Sie müssen Ihren Account bestätigen, bevor Sie fortfahren können.
|
19
31
|
mailer:
|
20
32
|
confirmation_instructions:
|
21
33
|
action: Mein Konto bestätigen
|
22
34
|
greeting: Willkommen %{recipient}!
|
23
|
-
instruction:
|
35
|
+
instruction: 'Folgen Sie dem untenstehenden Link, um Ihr Konto zu bestätigen:'
|
24
36
|
subject: Anleitung zur Bestätigung Ihres Accounts
|
37
|
+
password_change:
|
38
|
+
greeting: Hallo %{recipient}!
|
39
|
+
message: Wir kontaktieren Sie, um Ihnen mitzuteilen, dass Ihr Passwort geändert wurde.
|
40
|
+
subject: Passwort geändert
|
25
41
|
reset_password_instructions:
|
26
42
|
action: Passwort ändern
|
27
43
|
greeting: Hallo %{recipient}!
|
28
|
-
instruction: Jemand hat einen Link angefordert, um Ihr Passwort zu ändern
|
29
|
-
instruction_2:
|
30
|
-
instruction_3: Das Passwort wird nicht geändert bis Sie den obenstehenden Link abrufen
|
31
|
-
subject: Anleitung
|
44
|
+
instruction: Jemand hat einen Link angefordert, um Ihr Passwort zu ändern. Klicken Sie auf den unten aufgeführten Link um das Passwort zu ändern.
|
45
|
+
instruction_2: Bitte ignorieren Sie diese E-Mail, wenn Sie kein neues Passwort angefordert haben.
|
46
|
+
instruction_3: Das Passwort wird nicht geändert bis Sie den obenstehenden Link abrufen und ein neues Passwort bestimmen.
|
47
|
+
subject: Anleitung für das Zurücksetzen Ihres Passworts
|
32
48
|
unlock_instructions:
|
33
49
|
action: Mein Konto entsperren
|
34
50
|
greeting: Hallo %{recipient}!
|
35
|
-
instruction:
|
51
|
+
instruction: 'Folgen Sie dem untenstehenden Link, um Ihr Konto zu entsperren:'
|
36
52
|
message: Ihr Konto wurde aufgrund einer großen Anzahl von fehlgeschlagenen Anmeldeversuchen gesperrt.
|
37
|
-
subject: Anleitung
|
53
|
+
subject: Anleitung für die Account-Freischaltung
|
38
54
|
omniauth_callbacks:
|
39
|
-
failure:
|
40
|
-
success:
|
55
|
+
failure: Sie konnten nicht mit Ihrem %{kind}-Account angemeldet werden, weil "%{reason}".
|
56
|
+
success: Sie haben sich erfolgreich mit Ihrem %{kind}-Account angemeldet.
|
41
57
|
passwords:
|
42
|
-
new:
|
43
|
-
forgot_your_password: Haben Sie Ihr Passwort vergessen?
|
44
|
-
send_me_reset_password_instructions: Schicken Sie mir die Anleitung, mein Passwort zurückzusetzen
|
45
58
|
edit:
|
59
|
+
change_my_password: "Ändere mein Passwort"
|
46
60
|
change_your_password: Passwort ändern
|
47
|
-
new_password: Neues Passwort
|
48
61
|
confirm_new_password: Neues Passwort bestätigen
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
62
|
+
new_password: Neues Passwort
|
63
|
+
new:
|
64
|
+
forgot_your_password: Haben Sie Ihr Passwort vergessen?
|
65
|
+
send_me_reset_password_instructions: Schicken Sie mir die Anleitung, mein Passwort zurückzusetzen
|
66
|
+
no_token: Sie können sich nicht auf dieser Seite anmelden, wenn Sie nicht von einer Passwort-Zurücksetzen-E-Mail kommen. Wenn Sie von solch einer E-Mail kommen, überprüfen Sie bitte, ob Sie die gesamte URL verwendeten.
|
67
|
+
send_instructions: Sie erhalten in wenigen Minuten eine E-Mail mit der Anleitung, wie Sie Ihr Passwort zurücksetzen können.
|
68
|
+
send_paranoid_instructions: Falls Ihre E-Mail-Adresse in unserer Datenbank existiert, erhalten Sie in wenigen Minuten eine E-Mail, mit der Anleitung, wie Sie Ihr Passwort zurücksetzen können.
|
69
|
+
updated: Ihr Passwort wurde geändert. Sie sind jetzt angemeldet.
|
70
|
+
updated_not_active: Ihr Passwort wurde geändert.
|
55
71
|
registrations:
|
72
|
+
destroyed: Ihr Account wurde gelöscht.
|
56
73
|
edit:
|
57
74
|
are_you_sure: Sind Sie sicher?
|
58
75
|
cancel_my_account: Konto löschen
|
76
|
+
currently_waiting_confirmation_for_email: Warte auf Bestätigung von %{email}.
|
59
77
|
leave_blank_if_you_don_t_want_to_change_it: freilassen, wenn Sie das nicht ändern wollen
|
60
|
-
title:
|
78
|
+
title: "%{resource} bearbeiten"
|
79
|
+
unhappy: Unglücklich
|
80
|
+
update: Aktualisieren
|
61
81
|
we_need_your_current_password_to_confirm_your_changes: wir benötigen Ihr aktuelles Passwort, um die Änderung zu bestätigen
|
62
|
-
update: "Aktualisieren"
|
63
|
-
unhappy: "Unglücklich"
|
64
82
|
new:
|
65
83
|
sign_up: Registrieren
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
updated: "Ihr Konto wurde erfolgreich aktualisiert."
|
84
|
+
signed_up: Sie haben sich erfolgreich registriert.
|
85
|
+
signed_up_but_inactive: Sie haben sich erfolgreich registriert. Wir konnten Sie jedoch nicht anmelden, weil Ihr Account noch nicht aktiviert ist.
|
86
|
+
signed_up_but_locked: Sie haben sich erfolgreich registriert. Wir konnten Sie jedoch nicht anmelden, weil Ihr Account gesperrt ist.
|
87
|
+
signed_up_but_unconfirmed: Sie erhalten in wenigen Minuten eine E-Mail mit einem Link für die Bestätigung der Registrierung. Klicken Sie auf den Link um Ihren Account zu aktivieren.
|
88
|
+
update_needs_confirmation: Ihre Daten wurden aktualisiert, aber Sie müssen Ihre neue E-Mail-Adresse bestätigen. Sie erhalten in wenigen Minuten eine E-Mail, mit der Sie die Änderung Ihrer E-Mail-Adresse abschließen können.
|
89
|
+
updated: Ihre Daten wurden aktualisiert.
|
73
90
|
sessions:
|
74
|
-
|
75
|
-
signed_out: "Erfolgreich abgemeldet."
|
91
|
+
already_signed_out: Erfolgreich abgemeldet.
|
76
92
|
new:
|
77
93
|
sign_in: Anmelden
|
94
|
+
signed_in: Erfolgreich angemeldet.
|
95
|
+
signed_out: Erfolgreich abgemeldet.
|
78
96
|
shared:
|
79
97
|
links:
|
98
|
+
back: Zurück
|
80
99
|
didn_t_receive_confirmation_instructions: Keine Anleitung zur Bestätigung erhalten?
|
81
100
|
didn_t_receive_unlock_instructions: Keine Anleitung zum Entsperren erhalten?
|
82
101
|
forgot_your_password: Passwort vergessen?
|
@@ -86,25 +105,16 @@ de:
|
|
86
105
|
unlocks:
|
87
106
|
new:
|
88
107
|
resend_unlock_instructions: Anleitung zum Entsperren noch mal schicken
|
89
|
-
send_instructions:
|
90
|
-
send_paranoid_instructions:
|
91
|
-
unlocked:
|
108
|
+
send_instructions: Sie erhalten in wenigen Minuten eine E-Mail mit der Anleitung, wie Sie Ihren Account entsperren können.
|
109
|
+
send_paranoid_instructions: Falls Ihre E-Mail-Adresse in unserer Datenbank existiert, erhalten Sie in wenigen Minuten eine E-Mail, mit der Anleitung, wie Sie Ihren Account entsperren können.
|
110
|
+
unlocked: Ihr Account wurde entsperrt. Sie sind jetzt angemeldet.
|
92
111
|
errors:
|
93
112
|
messages:
|
94
|
-
already_confirmed:
|
95
|
-
confirmation_period_expired:
|
96
|
-
expired:
|
97
|
-
not_found:
|
98
|
-
not_locked:
|
113
|
+
already_confirmed: wurde bereits bestätigt, bitte versuchen Sie, sich anzumelden
|
114
|
+
confirmation_period_expired: musste innerhalb von %{period} bestätigt werden, bitte neu anfordern.
|
115
|
+
expired: ist abgelaufen, bitte neu anfordern
|
116
|
+
not_found: nicht gefunden
|
117
|
+
not_locked: ist nicht gesperrt
|
99
118
|
not_saved:
|
100
|
-
one: "
|
101
|
-
other: "%{count} Fehler verhinderten
|
102
|
-
activerecord:
|
103
|
-
models:
|
104
|
-
user: "Benutzer"
|
105
|
-
attributes:
|
106
|
-
user:
|
107
|
-
current_sign_in_at: "Angemeldet am"
|
108
|
-
email: "E-Mail"
|
109
|
-
password: "Passwort"
|
110
|
-
last_sign_in_at: "Zuletzt angemeldet am"
|
119
|
+
one: "%{resource} konnte aufgrund eines Fehlers nicht gespeichert werden:"
|
120
|
+
other: "%{count} Fehler verhinderten das Speichern von %{resource}:"
|
data/locales/el.yml
ADDED
@@ -0,0 +1,120 @@
|
|
1
|
+
el:
|
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: "Εάν το email σας υπάρχει στη βάση δεδομένων μας, θα λάβετε ένα μήνυμα με οδηγίες επιβεβαίωσης του λογαριασμού σας σε λίγα λεπτά."
|
21
|
+
failure:
|
22
|
+
already_authenticated: "Έχετε ήδη συνδεθεί."
|
23
|
+
inactive: "Ο λογαριασμός σας δεν έχει ενεργοποιηθεί ακόμη."
|
24
|
+
invalid: "Μη αποδεκτό email ή κωδικός."
|
25
|
+
last_attempt: "Έχετε μία ακόμα προσπάθεια πριν κλειδωθεί ο λογαριασμός σας."
|
26
|
+
locked: "Ο λογαριασμός σας είναι κλειδωμένος."
|
27
|
+
not_found_in_database: "Μη αποδεκτό email ή κωδικός."
|
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: "Ταυτοποιηθήκατε επιτυχώς από λογαριασμό %{kind}."
|
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: "Δεν μπορείτε να προσπελάσετε αυτή τη σελίδα παρά μόνο ερχόμενοι από μήνυμα επαναφοράς κωδικού. Εάν έρχεστε από email επαναφοράς κωδικού, επιβεβαιώστε πως χρησιμοποιήσατε ολόκληρη τη διεύθυνση που σας δόθηκε."
|
67
|
+
send_instructions: "Θα λάβετε ένα μήνυμα με οδηγίες επαναφοράς του κωδικού σας σε λίγα λεπτά."
|
68
|
+
send_paranoid_instructions: "Εάν το email σας υπάρχει στη βάση δεδομένων μας, θα λάβετε ένα μήνυμα με οδηγίες επαναφοράς του κωδικού σας σε λίγα λεπτά."
|
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: "Ενημερώσατε το λογαριασμό σας επιτυχώς, αλλά πρέπει να επιβεβαιώσουμε το νέο σας email. Παρακαλώ ελέγξτε τα μηνύματά σας και ανοίξτε το σύνδεσμο για να επιβεβαιώσετε τη νέα διεύθυνση."
|
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: "πρέπει να επιβεβαιωθεί εντός %{period}, παρακαλώ ζητήστε νέο"
|
115
|
+
expired: "έχει λήξει, παρακαλώ ζητήστε νέο"
|
116
|
+
not_found: "δεν βρέθηκε"
|
117
|
+
not_locked: "δεν κλειδώθηκε"
|
118
|
+
not_saved:
|
119
|
+
one: 1 λάθος δεν επέτρεψε την αποθήκευση του %{resource}
|
120
|
+
other: "%{count} λάθη δεν επέτρεψαν την αποθήκευση του %{resource}"
|
data/locales/en-GB.yml
ADDED
@@ -0,0 +1,120 @@
|
|
1
|
+
en-GB:
|
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: Your account was successfully confirmed.
|
17
|
+
new:
|
18
|
+
resend_confirmation_instructions:
|
19
|
+
send_instructions: You will receive an email with instructions about how to confirm your account in a few minutes.
|
20
|
+
send_paranoid_instructions: If your email exists on our database, you will receive an email with instructions about how to confirm your account in a few minutes.
|
21
|
+
failure:
|
22
|
+
already_authenticated: You are already signed in.
|
23
|
+
inactive: Your account was not activated yet.
|
24
|
+
invalid: Invalid email or password.
|
25
|
+
last_attempt: You have one more attempt before your account will be locked.
|
26
|
+
locked: Your account is locked.
|
27
|
+
not_found_in_database: Invalid email or password.
|
28
|
+
timeout: Your session expired, please sign in again to continue.
|
29
|
+
unauthenticated: You need to sign in or sign up before continuing.
|
30
|
+
unconfirmed: You have to confirm your account before continuing.
|
31
|
+
mailer:
|
32
|
+
confirmation_instructions:
|
33
|
+
action:
|
34
|
+
greeting:
|
35
|
+
instruction:
|
36
|
+
subject: Confirmation instructions
|
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: Reset password instructions
|
48
|
+
unlock_instructions:
|
49
|
+
action:
|
50
|
+
greeting:
|
51
|
+
instruction:
|
52
|
+
message:
|
53
|
+
subject: Unlock Instructions
|
54
|
+
omniauth_callbacks:
|
55
|
+
failure: Could not authenticate you from %{kind} because "%{reason}".
|
56
|
+
success: Successfully authenticated from %{kind} account.
|
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: You can't access this page without coming from a password reset email. If you do come from a password reset email, please make sure you used the full URL provided.
|
67
|
+
send_instructions: You will receive an email with instructions about how to reset your password in a few minutes.
|
68
|
+
send_paranoid_instructions: If your email exists on our database, you will receive a password recovery link on your email
|
69
|
+
updated: Your password was changed successfully. You are now signed in.
|
70
|
+
updated_not_active: Your password was changed successfully.
|
71
|
+
registrations:
|
72
|
+
destroyed: Bye! Your account was successfully cancelled. We hope to see you again soon.
|
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: Welcome! You have signed up successfully.
|
85
|
+
signed_up_but_inactive: You have signed up successfully. However, we could not sign you in because your account is not yet activated.
|
86
|
+
signed_up_but_locked: You have signed up successfully. However, we could not sign you in because your account is locked.
|
87
|
+
signed_up_but_unconfirmed: A message with a confirmation link has been sent to your email address. Please open the link to activate your account.
|
88
|
+
update_needs_confirmation: You updated your account successfully, but we need to verify your new email address. Please check your email and click on the confirm link to finalise confirming your new email address.
|
89
|
+
updated: You updated your account successfully.
|
90
|
+
sessions:
|
91
|
+
already_signed_out: Signed out successfully.
|
92
|
+
new:
|
93
|
+
sign_in:
|
94
|
+
signed_in: Signed in successfully.
|
95
|
+
signed_out: Signed out successfully.
|
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: You will receive an email with instructions about how to unlock your account in a few minutes.
|
109
|
+
send_paranoid_instructions: If your account exists, you will receive an email with instructions about how to unlock it in a few minutes.
|
110
|
+
unlocked: Your account has been unlocked successfully. Please sign in to continue.
|
111
|
+
errors:
|
112
|
+
messages:
|
113
|
+
already_confirmed: was already confirmed, please try signing in
|
114
|
+
confirmation_period_expired: needs to be confirmed within %{period}, please request a new one
|
115
|
+
expired: has expired, please request a new one
|
116
|
+
not_found: not found
|
117
|
+
not_locked: was not locked
|
118
|
+
not_saved:
|
119
|
+
one: '1 error prohibited this %{resource} from being saved:'
|
120
|
+
other: "%{count} errors prohibited this %{resource} from being saved:"
|