refinerycms-authentication-devise 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +89 -0
- data/.travis.yml +15 -0
- data/Gemfile +50 -0
- data/Rakefile +20 -0
- data/app/controllers/refinery/authentication/devise/admin/users_controller.rb +147 -0
- data/app/controllers/refinery/authentication/devise/passwords_controller.rb +58 -0
- data/app/controllers/refinery/authentication/devise/sessions_controller.rb +39 -0
- data/app/controllers/refinery/authentication/devise/users_controller.rb +50 -0
- data/app/decorators/controllers/action_controller_base_decorator.rb +25 -0
- data/app/decorators/controllers/refinery/admin_controller_decorator.rb +20 -0
- data/app/decorators/controllers/refinery/application_controller_decorator.rb +7 -0
- data/app/mailers/refinery/authentication/devise/user_mailer.rb +26 -0
- data/app/models/refinery/authentication/devise/nil_user.rb +31 -0
- data/app/models/refinery/authentication/devise/role.rb +22 -0
- data/app/models/refinery/authentication/devise/roles_users.rb +12 -0
- data/app/models/refinery/authentication/devise/user.rb +166 -0
- data/app/models/refinery/authentication/devise/user_plugin.rb +11 -0
- data/app/views/refinery/authentication/devise/admin/users/_actions.html.erb +7 -0
- data/app/views/refinery/authentication/devise/admin/users/_form.html.erb +94 -0
- data/app/views/refinery/authentication/devise/admin/users/_records.html.erb +10 -0
- data/app/views/refinery/authentication/devise/admin/users/_user.html.erb +23 -0
- data/app/views/refinery/authentication/devise/admin/users/_users.html.erb +4 -0
- data/app/views/refinery/authentication/devise/admin/users/edit.html.erb +1 -0
- data/app/views/refinery/authentication/devise/admin/users/index.html.erb +6 -0
- data/app/views/refinery/authentication/devise/admin/users/new.html.erb +1 -0
- data/app/views/refinery/authentication/devise/passwords/edit.html.erb +26 -0
- data/app/views/refinery/authentication/devise/passwords/new.html.erb +17 -0
- data/app/views/refinery/authentication/devise/sessions/new.html.erb +27 -0
- data/app/views/refinery/authentication/devise/user_mailer/reset_notification.html.erb +12 -0
- data/app/views/refinery/authentication/devise/user_mailer/reset_notification.text.plain.erb +7 -0
- data/app/views/refinery/authentication/devise/users/new.html.erb +29 -0
- data/app/views/refinery/layouts/login.html.erb +22 -0
- data/bin/rails +5 -0
- data/bin/rake +21 -0
- data/bin/rspec +22 -0
- data/bin/spring +18 -0
- data/config/locales/bg.yml +73 -0
- data/config/locales/ca.yml +75 -0
- data/config/locales/cs.yml +77 -0
- data/config/locales/da.yml +73 -0
- data/config/locales/de.yml +73 -0
- data/config/locales/el.yml +73 -0
- data/config/locales/en.yml +77 -0
- data/config/locales/es.yml +73 -0
- data/config/locales/fi.yml +73 -0
- data/config/locales/fr.yml +73 -0
- data/config/locales/hu.yml +73 -0
- data/config/locales/it.yml +77 -0
- data/config/locales/ja.yml +73 -0
- data/config/locales/ko.yml +73 -0
- data/config/locales/lt.yml +56 -0
- data/config/locales/lv.yml +73 -0
- data/config/locales/nb.yml +73 -0
- data/config/locales/nl.yml +77 -0
- data/config/locales/pl.yml +73 -0
- data/config/locales/pt-BR.yml +69 -0
- data/config/locales/pt.yml +73 -0
- data/config/locales/rs.yml +73 -0
- data/config/locales/ru.yml +70 -0
- data/config/locales/sk.yml +73 -0
- data/config/locales/sl.yml +62 -0
- data/config/locales/sv.yml +65 -0
- data/config/locales/tr.yml +73 -0
- data/config/locales/uk.yml +71 -0
- data/config/locales/vi.yml +73 -0
- data/config/locales/zh-CN.yml +73 -0
- data/config/locales/zh-TW.yml +74 -0
- data/config/routes.rb +49 -0
- data/db/migrate/20100913234705_create_refinerycms_authentication_schema.rb +43 -0
- data/db/migrate/20120301234455_add_slug_to_refinery_users.rb +7 -0
- data/db/migrate/20130805143059_add_full_name_to_refinery_users.rb +5 -0
- data/db/migrate/20150503125200_rename_tables_to_new_namespace.rb +17 -0
- data/lib/generators/refinery/authentication/devise/generator.rb +18 -0
- data/lib/generators/refinery/authentication/devise/templates/config/initializers/refinery/authentication/devise.rb.erb +8 -0
- data/lib/refinery/authentication/devise/authorisation_adapter.rb +36 -0
- data/lib/refinery/authentication/devise/authorisation_manager.rb +30 -0
- data/lib/refinery/authentication/devise/configuration.rb +22 -0
- data/lib/refinery/authentication/devise/engine.rb +43 -0
- data/lib/refinery/authentication/devise/initialiser.rb +228 -0
- data/lib/refinery/authentication/devise/system.rb +63 -0
- data/lib/refinery/authentication/devise.rb +26 -0
- data/lib/refinerycms-authentication-devise.rb +1 -0
- data/license.md +21 -0
- data/readme.md +11 -0
- data/refinerycms-authentication-devise.gemspec +22 -0
- data/spec/controllers/refinery/authentication/devise/admin/users_controller_spec.rb +90 -0
- data/spec/factories/user.rb +27 -0
- data/spec/features/refinery/authentication/devise/admin/users_spec.rb +88 -0
- data/spec/features/refinery/authentication/devise/passwords_spec.rb +71 -0
- data/spec/features/refinery/authentication/devise/sessions_spec.rb +103 -0
- data/spec/lib/refinery/authentication/devise/configuration_spec.rb +41 -0
- data/spec/models/refinery/user_spec.rb +285 -0
- data/spec/spec_helper.rb +27 -0
- data/spec/support/refinery/authentication/devise/controller_macros.rb +48 -0
- data/spec/support/refinery/authentication/devise/feature_macros.rb +26 -0
- data/tasks/rspec.rake +4 -0
- metadata +225 -0
@@ -0,0 +1,75 @@
|
|
1
|
+
ca:
|
2
|
+
refinery:
|
3
|
+
plugins:
|
4
|
+
refinery_authentication_devise:
|
5
|
+
title: Usuaris
|
6
|
+
description: Gestionar usuaris
|
7
|
+
authentication:
|
8
|
+
devise:
|
9
|
+
admin:
|
10
|
+
users:
|
11
|
+
delete: Esborrar a aquest usuari per sempre
|
12
|
+
edit: Editar aquest usuari
|
13
|
+
update:
|
14
|
+
lockout_prevented: "No pots eliminar el plugin 'Usuaris' per a l'usuari actual."
|
15
|
+
form:
|
16
|
+
blank_password_keeps_current: "Deixar la contrasenya en blanc mantindrà l'actual"
|
17
|
+
plugin_access: Gestionar plugins
|
18
|
+
role_access: Gestionar rols
|
19
|
+
enable_all: permetre tot
|
20
|
+
actions:
|
21
|
+
create_new_user: Crear nou usuari
|
22
|
+
user:
|
23
|
+
email_user: Enviar un email a aquest usuari
|
24
|
+
preview: '(%{who}) creat %{created_at}'
|
25
|
+
sessions:
|
26
|
+
new:
|
27
|
+
hello_please_sign_in: "Hola! Per favor, identifica't."
|
28
|
+
sign_in: Entrar
|
29
|
+
forgot_password: He oblidat la meva contrasenya
|
30
|
+
user_mailer:
|
31
|
+
reset_notification:
|
32
|
+
subject: Enllaç per canviar la teva contrasenya
|
33
|
+
reset_request_received_for: "Petició de restabliment de contrasenya rebut per %{username}"
|
34
|
+
visit_this_url: Visita aquesta URL per establir una contrasenya nova
|
35
|
+
remain_same_if_no_action: La contrasenya serà la mateixa si no realitzes aquesta acció
|
36
|
+
users:
|
37
|
+
new:
|
38
|
+
fill_form: Emplena els detalls següents per poder començar.
|
39
|
+
sign_up: Registrar-me
|
40
|
+
create:
|
41
|
+
welcome: 'Benvingut a Refinery, %{who}.'
|
42
|
+
forgot:
|
43
|
+
email_address: Adreça e-mail
|
44
|
+
enter_email_address: "Indica l'e-mail del teu compte."
|
45
|
+
reset_password: Resetear contrasenya
|
46
|
+
blank_email: No has indicat un e-mail vàlid.
|
47
|
+
email_not_associated_with_account_html: "Perdò, però, '%{email}' no està associat a cap compte.<br />Segur que ho has teclejat correctament?"
|
48
|
+
email_reset_sent: "T'hem enviat un e-mail amb un enllaç per canviar la teva contrasenya."
|
49
|
+
password_encryption: "Necessites restablir la teva contrasenya perque va haver-hi canvis en els mètodes d'encriptació de contrasenyes que Refinery usa, ja que ara les contrasenyes són emmagatzemades amb una encriptació més forta que abans."
|
50
|
+
reset:
|
51
|
+
successful: "Contrasenya canviada correctament per a '%{email}'"
|
52
|
+
pick_new_password_for: "Tria una nova contrasenya per a %{email}"
|
53
|
+
reset_password: Canviar contrasenya
|
54
|
+
roles:
|
55
|
+
superuser: Superusuari
|
56
|
+
refinery: Refinery
|
57
|
+
devise:
|
58
|
+
failure:
|
59
|
+
unauthenticated: Necessites accedir al teu compte o registrar-te abans de continuar.
|
60
|
+
invalid: Contrasenya o Email incorrecte.
|
61
|
+
not_found_in_database: "Sorry, your login or password was incorrect."
|
62
|
+
sessions:
|
63
|
+
signed_in: 'Has accedit correctament.'
|
64
|
+
activerecord:
|
65
|
+
models:
|
66
|
+
refinery/authentication/devise/user: usuari
|
67
|
+
attributes:
|
68
|
+
refinery/authentication/devise/user:
|
69
|
+
login: Usuari o email
|
70
|
+
username: Usuari
|
71
|
+
password: Contrasenya
|
72
|
+
password_confirmation: Confirmar contrasenya
|
73
|
+
email: Email
|
74
|
+
remember_me: Recordar-me
|
75
|
+
full_name: Nom complet
|
@@ -0,0 +1,77 @@
|
|
1
|
+
cs:
|
2
|
+
refinery:
|
3
|
+
plugins:
|
4
|
+
refinery_authentication_devise:
|
5
|
+
title: Uživatelé
|
6
|
+
description: Spravovat uživatele
|
7
|
+
authentication:
|
8
|
+
devise:
|
9
|
+
admin:
|
10
|
+
users:
|
11
|
+
delete: Smazat tohoto uživatele
|
12
|
+
edit: Editovat tohoto uživatele
|
13
|
+
update:
|
14
|
+
lockout_prevented: Nemůžete odstranit 'Users' plugin z aktuálně přihlášeného konta.
|
15
|
+
form:
|
16
|
+
blank_password_keeps_current: Pokud necháte toto pole prázné bude zachováno stávající heslo
|
17
|
+
plugin_access: Přístup k pluginům
|
18
|
+
role_access: Přiřadit role
|
19
|
+
enable_all: povolit vše
|
20
|
+
actions:
|
21
|
+
create_new_user: Přidat nového uživatele
|
22
|
+
user:
|
23
|
+
email_user: Poslat uživateli email
|
24
|
+
preview: '(%{who}) přidán %{created_at}'
|
25
|
+
sessions:
|
26
|
+
new:
|
27
|
+
hello_please_sign_in: "Přihlašte se, prosím"
|
28
|
+
sign_in: Přihlásit se
|
29
|
+
forgot_password: Zapomenuté heslo
|
30
|
+
user_mailer:
|
31
|
+
reset_notification:
|
32
|
+
subject: Odkaz pro vytvoření nového hesla
|
33
|
+
reset_request_received_for: "Požadavek pro vytvoření nového hesla pro uživatelský účet %{username}"
|
34
|
+
visit_this_url: Navštivte tuto URL pro zvolení nového hesla
|
35
|
+
remain_same_if_no_action: 'Vaše heslo zůstane nezměněné, pokud neprovedete žádnou akci.'
|
36
|
+
users:
|
37
|
+
new:
|
38
|
+
fill_form: Vyplňte údaje níže a můžeme začít.
|
39
|
+
sign_up: Registrace
|
40
|
+
create:
|
41
|
+
welcome: 'Vítejte %{who}'
|
42
|
+
forgot:
|
43
|
+
email_address: Emailová adresa
|
44
|
+
enter_email_address: "Prosím, zadejte emailovou adresu."
|
45
|
+
reset_password: Resetovat heslo
|
46
|
+
blank_email: Musíte zadat emailovou adresu.
|
47
|
+
email_not_associated_with_account_html: "Email '%{email}' není asociován z žádným uživatelským kontem.<br />Jste si jisti, že jste použili správnou adresu?"
|
48
|
+
email_reset_sent: Byl vám odeslán email s odkazem na resetování hesla.
|
49
|
+
password_encryption: 'Musíte si změnit heslo, protože nastala změna v šifrovací metodě ukládáných hesel. Refinery se stává více bezpečnější než dříve.'
|
50
|
+
reset:
|
51
|
+
successful: "Heslo bylo úspěšně resetováno pro '%{email}'"
|
52
|
+
pick_new_password_for: 'Zadejte nové heslo pro %{email}'
|
53
|
+
reset_password: Reset hesla
|
54
|
+
roles:
|
55
|
+
superuser: Super uživatel
|
56
|
+
refinery: Refinery
|
57
|
+
devise:
|
58
|
+
failure:
|
59
|
+
unauthenticated: Pro pokračování se musíte přihlásit.
|
60
|
+
invalid: "Promiňte, vaše uživatelské jméno nebo heslo je neplatné."
|
61
|
+
not_found_in_database: "Promiňte, vaše uživatelské jméno nebo heslo je neplatné."
|
62
|
+
sessions:
|
63
|
+
signed_in: Úspěšné přihlášení.
|
64
|
+
refinery_user:
|
65
|
+
signed_out: Úspěšně odhlášení.
|
66
|
+
activerecord:
|
67
|
+
models:
|
68
|
+
refinery/authentication/devise/user: uživatel
|
69
|
+
attributes:
|
70
|
+
refinery/authentication/devise/user:
|
71
|
+
login: Uživatelské jméno nebo email
|
72
|
+
email: Email
|
73
|
+
username: Uživatelské jméno
|
74
|
+
password: Heslo
|
75
|
+
password_confirmation: Potvrdit heslo
|
76
|
+
remember_me: Zapamatovat heslo
|
77
|
+
full_name: Celé jméno
|
@@ -0,0 +1,73 @@
|
|
1
|
+
da:
|
2
|
+
refinery:
|
3
|
+
plugins:
|
4
|
+
refinery_authentication_devise:
|
5
|
+
title: Brugere
|
6
|
+
description: Vedligehold brugere
|
7
|
+
authentication:
|
8
|
+
devise:
|
9
|
+
admin:
|
10
|
+
users:
|
11
|
+
delete: Slet bruger
|
12
|
+
edit: Redigér bruger
|
13
|
+
update:
|
14
|
+
lockout_prevented: "Du kan ikke deaktivere 'Brugere' for en bruger, der er logget på."
|
15
|
+
form:
|
16
|
+
blank_password_keeps_current: 'Hvis du ikke indtaster noget, beholdes den nuværende adgangskode'
|
17
|
+
plugin_access: Plugin adgang
|
18
|
+
role_access: Rolle adgang
|
19
|
+
enable_all: aktivér alle
|
20
|
+
actions:
|
21
|
+
create_new_user: Tilføj en ny bruger
|
22
|
+
user:
|
23
|
+
email_user: Send email
|
24
|
+
preview: '(%{who}) oprettet %{created_at}'
|
25
|
+
sessions:
|
26
|
+
new:
|
27
|
+
hello_please_sign_in: Hej! Du skal logge ind.
|
28
|
+
sign_in: Log ind
|
29
|
+
forgot_password: Jeg har glemt mit password
|
30
|
+
users:
|
31
|
+
new:
|
32
|
+
fill_form: 'Indtast dine oplysninger, så vi kan få dig i gang med Refinery.'
|
33
|
+
sign_up: Opret bruger
|
34
|
+
create:
|
35
|
+
welcome: 'Velkommen til Refinery, %{who}'
|
36
|
+
forgot:
|
37
|
+
email_address: Email-adresse
|
38
|
+
enter_email_address: Indtast den email-adresse du har tilknyttet din konto.
|
39
|
+
reset_password: Nulstil adgangskode
|
40
|
+
blank_email: Du har ikke angivet en email-adresse.
|
41
|
+
email_not_associated_with_account_html: "Beklager, '%{email}' er ikke tilknyttet nogen konto.<br/>Er du sikker på du har skrevet den rigtige email-adresse?"
|
42
|
+
email_reset_sent: En email er blevet sendt til dig med et link til nulstille din adgangskode.
|
43
|
+
password_encryption: 'Du er nødt til at nulstille dit password, da vi har opdateret den kryptering som Refinery bruger.'
|
44
|
+
reset:
|
45
|
+
successful: "Adgangskode er nulstillet for %{email}"
|
46
|
+
pick_new_password_for: "Vælge en ny adgangskode for %{email}"
|
47
|
+
reset_password: Nulstil adgangskode
|
48
|
+
user_mailer:
|
49
|
+
reset_notification:
|
50
|
+
subject: Link til nulstilling af din adgangskode
|
51
|
+
reset_request_received_for: "%{username} har bedt om at få ændret adgangskode"
|
52
|
+
visit_this_url: Gå til denne URL for at vælge en ny adgangskode
|
53
|
+
remain_same_if_no_action: 'Foretager du dig ikke yderligere, så ændres din adgangskode ikke'
|
54
|
+
roles:
|
55
|
+
superuser: Administrator
|
56
|
+
refinery: Refinery
|
57
|
+
devise:
|
58
|
+
failure:
|
59
|
+
unauthenticated: Du skal logge ind for at kunne fortsætte.
|
60
|
+
invalid: "Email eller kodeord er ikke gyldig."
|
61
|
+
sessions:
|
62
|
+
signed_in: Du er nu logget ind.
|
63
|
+
activerecord:
|
64
|
+
models:
|
65
|
+
refinery/authentication/devise/user: bruger
|
66
|
+
attributes:
|
67
|
+
refinery/authentication/devise/user:
|
68
|
+
login: Log ind
|
69
|
+
username: Brugernavn
|
70
|
+
password: Adgangskode
|
71
|
+
password_confirmation: Bekræft adgangskode
|
72
|
+
email: Email
|
73
|
+
remember_me: Husk mig
|
@@ -0,0 +1,73 @@
|
|
1
|
+
de:
|
2
|
+
refinery:
|
3
|
+
plugins:
|
4
|
+
refinery_authentication_devise:
|
5
|
+
title: Benutzer
|
6
|
+
description: Verwaltet Benutzer
|
7
|
+
authentication:
|
8
|
+
devise:
|
9
|
+
admin:
|
10
|
+
users:
|
11
|
+
delete: Diesen Benutzer für immer löschen
|
12
|
+
edit: Diesen Benutzer bearbeiten
|
13
|
+
update:
|
14
|
+
lockout_prevented: Sie können die Erweiterung 'Benutzer' nicht vom aktuellen Konto entfernen.
|
15
|
+
form:
|
16
|
+
blank_password_keeps_current: 'Wird das Passwort leer gelassen, wird das aktuelle Passwort beibehalten'
|
17
|
+
plugin_access: Zugriff auf Erweiterungen
|
18
|
+
role_access: Zugriff auf Funktionen
|
19
|
+
enable_all: Alles aktivieren
|
20
|
+
actions:
|
21
|
+
create_new_user: Neuen Benutzer anlegen
|
22
|
+
user:
|
23
|
+
email_user: Diesem Benutzer emailen
|
24
|
+
preview: '(%{who}) angelegt am %{created_at}'
|
25
|
+
sessions:
|
26
|
+
new:
|
27
|
+
hello_please_sign_in: Hallo! Bitte melden Sie sich an.
|
28
|
+
sign_in: Anmelden
|
29
|
+
forgot_password: Ich habe mein Passwort vergessen
|
30
|
+
users:
|
31
|
+
new:
|
32
|
+
fill_form: 'Füllen Sie die Details unten aus, damit wir anfangen können.'
|
33
|
+
sign_up: Anmelden
|
34
|
+
create:
|
35
|
+
welcome: 'Willkommen bei Refinery, %{who}'
|
36
|
+
forgot:
|
37
|
+
email_address: E-Mail-Adresse
|
38
|
+
enter_email_address: Bitte geben Sie die E-Mail-Adresse für Ihre Konto an.
|
39
|
+
reset_password: Passwort zurücksetzen
|
40
|
+
blank_email: Sie haben keine E-Mail-Adresse angegeben.
|
41
|
+
email_not_associated_with_account_html: "Tut mir leid, '%{email}' ist mit keinem Konto verbunden.<br />Sind Sie sicher, dass Sie die richtige E-Mail-Adresse eingegeben haben?"
|
42
|
+
email_reset_sent: 'Es wurde Ihnen eine E-Mail mit einem Link geschickt, durch den Sie ihr Passwort zurücksetzen können.'
|
43
|
+
password_encryption: 'Sie müssen ihr Passwort zurücksetzen, da es Änderungen in der Art der Passwortverschlüsselung gab, die Refinery nutzt, so dass Passwörter sogar noch stärker verschlüsselt werden als vorher.'
|
44
|
+
reset:
|
45
|
+
successful: "Passwort für '%{email}' erfolgreich zurückgesetzt"
|
46
|
+
pick_new_password_for: 'Wählen Sie ein neues Passwort für %{email}'
|
47
|
+
reset_password: Passwort zurücksetzen
|
48
|
+
user_mailer:
|
49
|
+
reset_notification:
|
50
|
+
subject: Link zum Zurücksetzen Ihres Passworts
|
51
|
+
reset_request_received_for: 'Anfrage zum Zurücksetzen des Passworts für %{username} erhalten'
|
52
|
+
visit_this_url: 'Besuchen Sie diese URL, um ein neues Passwort zu wählen'
|
53
|
+
remain_same_if_no_action: 'Das Passwort bleibt das gleiche, wenn nichts unternommen wird'
|
54
|
+
roles:
|
55
|
+
superuser: Superuser
|
56
|
+
refinery: Refinery
|
57
|
+
devise:
|
58
|
+
failure:
|
59
|
+
unauthenticated: 'Sie müssen sich anmelden, um fortzufahren.'
|
60
|
+
invalid: 'Tut mir leid, Ihr Login oder Passwort war nicht korrekt.'
|
61
|
+
sessions:
|
62
|
+
signed_in: Erfolgreich angemeldet.
|
63
|
+
activerecord:
|
64
|
+
models:
|
65
|
+
refinery/authentication/devise/user: Benutzer
|
66
|
+
attributes:
|
67
|
+
refinery/authentication/devise/user:
|
68
|
+
login: Login
|
69
|
+
username: Benutzername
|
70
|
+
password: Passwort
|
71
|
+
password_confirmation: Passwort Bestätigung
|
72
|
+
email: E-Mail
|
73
|
+
remember_me: Login merken
|
@@ -0,0 +1,73 @@
|
|
1
|
+
el:
|
2
|
+
refinery:
|
3
|
+
plugins:
|
4
|
+
refinery_authentication_devise:
|
5
|
+
title: Χρήστες
|
6
|
+
description: Διαχείριση Χρηστών
|
7
|
+
authentication:
|
8
|
+
devise:
|
9
|
+
admin:
|
10
|
+
users:
|
11
|
+
delete: Διαγραφή χρήστη
|
12
|
+
edit: Επεξεργασία χρήστη
|
13
|
+
update:
|
14
|
+
lockout_prevented: Δεν μπορείτε να διαγράψετε το 'Users' plugin για αυτόν τον λογαριασμό.
|
15
|
+
form:
|
16
|
+
blank_password_keeps_current: Αφήνοντας κενό τον κωδικό δε θα άλλαξει
|
17
|
+
plugin_access: Πρόσβαση Plugin
|
18
|
+
role_access: Ρόλος Πρόσβασης
|
19
|
+
enable_all: ενεργοποίηση όλων
|
20
|
+
actions:
|
21
|
+
create_new_user: Προσθήκη χρήστη
|
22
|
+
user:
|
23
|
+
email_user: Αποστολή email σε χρήστη
|
24
|
+
preview: '(%{who}) προσθέθηκε στις %{created_at}'
|
25
|
+
sessions:
|
26
|
+
new:
|
27
|
+
hello_please_sign_in: Γεια! Παρακαλώ συνδεθείτε.
|
28
|
+
sign_in: Σύνδεση
|
29
|
+
forgot_password: Ξέχασα τον κωδικό μου
|
30
|
+
users:
|
31
|
+
new:
|
32
|
+
fill_form: Συμπλήρωσε τα στοιχεία σου παρακάτω για να ξεκινήσουμε.
|
33
|
+
sign_up: Εγγραφή
|
34
|
+
create:
|
35
|
+
welcome: 'Καλώς ήλθατε στο Refinery, %{who}'
|
36
|
+
forgot:
|
37
|
+
email_address: Διεύθυνση Email
|
38
|
+
enter_email_address: Παρακαλώ γράψτε το ηλεκτρονικό σας ταχυδρομείο.
|
39
|
+
reset_password: Αλλαγή κωδικού
|
40
|
+
blank_email: Δε γράψατε το email σας.
|
41
|
+
email_not_associated_with_account_html: "Συγγνώμη, '%{email}' δεν αντιστοιχεί σε κάποιο λογαριασμό.<br />Γράψατε σίγουρα το email σας σωστά;"
|
42
|
+
email_reset_sent: Σας έχει αποσταλεί email με ένα σύνδεσμο για να αλλάξετε κωδικό.
|
43
|
+
password_encryption: Πρέπει να αλλάξετε τον κωδικό σας γιατί υπήρχαν αλλαγές στον τρόπο που το Refinery κρυπτογραφεί τον κωδικό σας με στόχο την μεγαλύτερη ασφάλειά σας.
|
44
|
+
reset:
|
45
|
+
successful: "Ο κωδικός άλλαξε για '%{email}'"
|
46
|
+
pick_new_password_for: 'Διαλέξτε έναν νέο κωδικό για το %{email}'
|
47
|
+
reset_password: Αλλαγή κωδικού
|
48
|
+
user_mailer:
|
49
|
+
reset_notification:
|
50
|
+
subject: Σύνδεσμος για την αλλαγή του κωδικού σας
|
51
|
+
reset_request_received_for: 'Αίτημα αλλαγής κωδικού από %{username}'
|
52
|
+
visit_this_url: Επισκεφθείτε αυτόν τον σύνδεσμο για να αλλάξετε κωδικό.
|
53
|
+
remain_same_if_no_action: Ο κωδικός σας θα παραμείνει ο ίδιος αν δεν προβείται σε κάποια ενέργεια.
|
54
|
+
roles:
|
55
|
+
superuser: Διαχειριστής
|
56
|
+
refinery: Refinery
|
57
|
+
devise:
|
58
|
+
failure:
|
59
|
+
unauthenticated: Πρέπει να συνδεθείτε για να συνεχίσετε.
|
60
|
+
invalid: 'Συγγνώμη, το όνομα χρήστη ή ο κωδικός δεν είναι έγκυρα.'
|
61
|
+
sessions:
|
62
|
+
signed_in: Συνδεθείκατε επιτυχώς.
|
63
|
+
activerecord:
|
64
|
+
models:
|
65
|
+
refinery/authentication/devise/user: χρήστης
|
66
|
+
attributes:
|
67
|
+
refinery/authentication/devise/user:
|
68
|
+
login: Login
|
69
|
+
username: Όνομα χρήστη
|
70
|
+
password: Κωδικός
|
71
|
+
password_confirmation: Επιβεβαίωση Κωδικού
|
72
|
+
email: Email
|
73
|
+
remember_me: Θυμήσου με
|
@@ -0,0 +1,77 @@
|
|
1
|
+
en:
|
2
|
+
refinery:
|
3
|
+
plugins:
|
4
|
+
refinery_authentication_devise:
|
5
|
+
title: Users
|
6
|
+
description: Manage users
|
7
|
+
authentication:
|
8
|
+
devise:
|
9
|
+
admin:
|
10
|
+
users:
|
11
|
+
delete: Remove this user forever
|
12
|
+
edit: Edit this user
|
13
|
+
update:
|
14
|
+
lockout_prevented: You cannot remove the 'Users' plugin from the currently logged in account.
|
15
|
+
form:
|
16
|
+
blank_password_keeps_current: Leaving password blank keeps the current password
|
17
|
+
plugin_access: Plugin access
|
18
|
+
role_access: Role access
|
19
|
+
enable_all: enable all
|
20
|
+
actions:
|
21
|
+
create_new_user: Add new user
|
22
|
+
user:
|
23
|
+
email_user: Email this user
|
24
|
+
preview: '(%{who}) added %{created_at}'
|
25
|
+
sessions:
|
26
|
+
new:
|
27
|
+
hello_please_sign_in: Hello! Please sign in.
|
28
|
+
sign_in: Sign in
|
29
|
+
forgot_password: I forgot my password
|
30
|
+
user_mailer:
|
31
|
+
reset_notification:
|
32
|
+
subject: Link to reset your password
|
33
|
+
reset_request_received_for: "Request to reset password received for %{username}"
|
34
|
+
visit_this_url: Visit this URL to choose a new password
|
35
|
+
remain_same_if_no_action: Your password will remain the same if no action is taken
|
36
|
+
users:
|
37
|
+
new:
|
38
|
+
fill_form: Fill out your details below so that we can get you started.
|
39
|
+
sign_up: Sign up
|
40
|
+
create:
|
41
|
+
welcome: 'Welcome to Refinery, %{who}.'
|
42
|
+
forgot:
|
43
|
+
email_address: Email Address
|
44
|
+
enter_email_address: Please enter the email address for your account.
|
45
|
+
reset_password: Reset password
|
46
|
+
blank_email: You did not enter an email address.
|
47
|
+
email_not_associated_with_account_html: "Sorry, '%{email}' isn't associated with any accounts.<br />Are you sure you typed the correct email address?"
|
48
|
+
email_reset_sent: An email has been sent to you with a link to reset your password.
|
49
|
+
password_encryption: You need to reset your password because there were changes in the password encryption methods that Refinery uses so that passwords are stored with even stronger encryption than before.
|
50
|
+
reset:
|
51
|
+
successful: "Password reset successfully for '%{email}'"
|
52
|
+
pick_new_password_for: "Pick a new password for %{email}"
|
53
|
+
reset_password: Reset password
|
54
|
+
roles:
|
55
|
+
superuser: Superuser
|
56
|
+
refinery: Refinery
|
57
|
+
devise:
|
58
|
+
failure:
|
59
|
+
unauthenticated: You need to sign in before continuing.
|
60
|
+
invalid: "Sorry, your login or password was incorrect."
|
61
|
+
not_found_in_database: "Sorry, your login or password was incorrect."
|
62
|
+
sessions:
|
63
|
+
signed_in: Signed in successfully.
|
64
|
+
refinery_user:
|
65
|
+
signed_out: Signed out successfully.
|
66
|
+
activerecord:
|
67
|
+
models:
|
68
|
+
refinery/authentication/devise/user: user
|
69
|
+
attributes:
|
70
|
+
refinery/authentication/devise/user:
|
71
|
+
login: Username or email
|
72
|
+
username: Username
|
73
|
+
password: Password
|
74
|
+
password_confirmation: Password confirmation
|
75
|
+
email: Email
|
76
|
+
remember_me: Remember me
|
77
|
+
full_name: Full Name
|
@@ -0,0 +1,73 @@
|
|
1
|
+
es:
|
2
|
+
refinery:
|
3
|
+
plugins:
|
4
|
+
refinery_authentication_devise:
|
5
|
+
title: Usuarios
|
6
|
+
description: Gestionar usuarios
|
7
|
+
authentication:
|
8
|
+
devise:
|
9
|
+
admin:
|
10
|
+
users:
|
11
|
+
delete: Borrar a este usuario para siempre
|
12
|
+
edit: Editar este usuario
|
13
|
+
update:
|
14
|
+
lockout_prevented: No puedes eliminar el plugin 'Usuarios' para el usuario actual.
|
15
|
+
form:
|
16
|
+
blank_password_keeps_current: Dejar la contraseña en blanco mantendrá la actual
|
17
|
+
plugin_access: Gestionar plugins
|
18
|
+
role_access: Gestionar roles
|
19
|
+
enable_all: permitir todo
|
20
|
+
actions:
|
21
|
+
create_new_user: Crear nuevo usuario
|
22
|
+
user:
|
23
|
+
email_user: Enviar un email a este usuario
|
24
|
+
preview: '(%{who}) creado %{created_at}'
|
25
|
+
sessions:
|
26
|
+
new:
|
27
|
+
hello_please_sign_in: 'Hola! Por favor, identifícate.'
|
28
|
+
sign_in: Entrar
|
29
|
+
forgot_password: He olvidado mi contraseña
|
30
|
+
users:
|
31
|
+
new:
|
32
|
+
fill_form: Rellena los detalles siguientes para poder comenzar.
|
33
|
+
sign_up: Registrarme
|
34
|
+
create:
|
35
|
+
welcome: 'Bienvenido a Refinery, %{who}'
|
36
|
+
forgot:
|
37
|
+
email_address: Dirección e-mail
|
38
|
+
enter_email_address: Indica el e-mail de tu cuenta.
|
39
|
+
reset_password: Resetear contraseña
|
40
|
+
blank_email: No has indicado un e-mail válido.
|
41
|
+
email_not_associated_with_account_html: "Lo siento, el e-mail '%{email}' no está asociado a ninguna cuenta.<br />¿Seguro que lo has tecleado correctamente?"
|
42
|
+
email_reset_sent: Te hemos enviado un e-mail con un enlace para cambiar tu contraseña.
|
43
|
+
password_encryption: Necesitas restablecer tu contraseña debido a que hubo cambios en los métodos de encriptación de contraseñas que Refinery usa, ya que ahora las contraseñas son almacenadas con una encriptación más fuerte que antes.
|
44
|
+
reset:
|
45
|
+
successful: "Contraseña cambiada correctamente para '%{email}'"
|
46
|
+
pick_new_password_for: "Elige una nueva contraseña para %{email}"
|
47
|
+
reset_password: Cambiar contraseña
|
48
|
+
user_mailer:
|
49
|
+
reset_notification:
|
50
|
+
subject: Enlace para cambiar tu contraseña
|
51
|
+
reset_request_received_for: Petición de restablecimiento de contraseña recibido por %{username}
|
52
|
+
visit_this_url: Ve a esta URL para establecer una contraseña nueva
|
53
|
+
remain_same_if_no_action: la contraseña será la misma si no realizas esta acción
|
54
|
+
roles:
|
55
|
+
superuser: Superusuario
|
56
|
+
refinery: Refinery
|
57
|
+
activerecord:
|
58
|
+
models:
|
59
|
+
refinery/authentication/devise/user: usuario
|
60
|
+
attributes:
|
61
|
+
refinery/authentication/devise/user:
|
62
|
+
login: Usuario
|
63
|
+
username: Usuario
|
64
|
+
email: E-mail
|
65
|
+
password: Contraseña
|
66
|
+
password_confirmation: Confirmar contraseña
|
67
|
+
remember_me: Recordarme
|
68
|
+
devise:
|
69
|
+
failure:
|
70
|
+
unauthenticated: 'Necesitas acceder a tu cuenta o registrarte antes de continuar.'
|
71
|
+
invalid: 'Contraseña o Email incorrecto.'
|
72
|
+
sessions:
|
73
|
+
signed_in: 'Has ingresado correctamente.'
|
@@ -0,0 +1,73 @@
|
|
1
|
+
fi:
|
2
|
+
refinery:
|
3
|
+
plugins:
|
4
|
+
refinery_authentication_devise:
|
5
|
+
title: Käyttäjät
|
6
|
+
description: Hallitse käyttäjiä
|
7
|
+
authentication:
|
8
|
+
devise:
|
9
|
+
admin:
|
10
|
+
users:
|
11
|
+
delete: Poista tämä käyttäjä ikuisesti
|
12
|
+
edit: Muokkaa tätä käyttäjää
|
13
|
+
update:
|
14
|
+
lockout_prevented: "Et voi poistaa 'Käyttäjät-' palikkaa tunnukselta, jolla olet kirjautunut sisään."
|
15
|
+
form:
|
16
|
+
blank_password_keeps_current: "Jätä tyhjäksi, jos et halua vaihtaa salasanaa"
|
17
|
+
plugin_access: Palikkaluvat
|
18
|
+
role_access: Rooliluvat
|
19
|
+
enable_all: "salli kaikki"
|
20
|
+
actions:
|
21
|
+
create_new_user: Lisää uusi käyttäjä
|
22
|
+
user:
|
23
|
+
email_user: Lähetä sähköpostia tälle käyttäjälle
|
24
|
+
preview: '(%{who}) lisätty %{created_at}'
|
25
|
+
sessions:
|
26
|
+
new:
|
27
|
+
hello_please_sign_in: "Hei! Ole hyvä, ja kirjaudu."
|
28
|
+
sign_in: Kirjaudu
|
29
|
+
forgot_password: Unohdin salasanani
|
30
|
+
users:
|
31
|
+
new:
|
32
|
+
fill_form: "Täytä alhaalla olevat tiedot, että voimme aloittaa."
|
33
|
+
sign_up: Rekisteröidy
|
34
|
+
create:
|
35
|
+
welcome: 'Tervetuloa Refineryyn, %{who}'
|
36
|
+
forgot:
|
37
|
+
email_address: Sähköpostiosoite
|
38
|
+
enter_email_address: Kirjoita tunnuksesi sähköpostiosoite.
|
39
|
+
reset_password: Nollaa salasana
|
40
|
+
blank_email: Et kirjoittanut sähköpostiosoitetta.
|
41
|
+
email_not_associated_with_account_html: "Valitettavasti osoitetta '%{email}' ei löydy tietokannasta.<br />Oletko varma, että kirjoitit oikean osoitteen?"
|
42
|
+
email_reset_sent: "Sinulle on lähetetty sähköposti, jonka kautta voit vaihtaa salasanan."
|
43
|
+
password_encryption: "Sinun täytyy vaihtaa salasanasi, koska Refineryn käyttämää salausmenetelmää on vaihdettu turvallisuussyistä."
|
44
|
+
reset:
|
45
|
+
successful: "Salasana nollattu onnistuneesti osoitteelle '%{email}'"
|
46
|
+
pick_new_password_for: "Kirjoita uusi salasana osoitteelle %{email}"
|
47
|
+
reset_password: Nollaa salasana
|
48
|
+
user_mailer:
|
49
|
+
reset_notification:
|
50
|
+
subject: Linkki salasanan nollaukseen
|
51
|
+
reset_request_received_for: "Pyyntö nollata käyttäjän %{username} salasana"
|
52
|
+
visit_this_url: Käy tässä osoitteessa valitaksesi uuden salasanan
|
53
|
+
remain_same_if_no_action: "Jos et tee mitään, salasanaasi ei vaihdeta"
|
54
|
+
roles:
|
55
|
+
superuser: Superuser
|
56
|
+
refinery: Refinery
|
57
|
+
devise:
|
58
|
+
failure:
|
59
|
+
unauthenticated: Sinun täytyy kirjautua sisään.
|
60
|
+
invalid: "Käyttäjää ei löytynyt, tai salasana oli väärä."
|
61
|
+
sessions:
|
62
|
+
signed_in: Kirjautuminen onnistui.
|
63
|
+
activerecord:
|
64
|
+
models:
|
65
|
+
refinery/authentication/devise/user: käyttäjä
|
66
|
+
attributes:
|
67
|
+
refinery/authentication/devise/user:
|
68
|
+
login: Käyttäjätunnus
|
69
|
+
username: Käyttäjätunnus
|
70
|
+
password: Salasana
|
71
|
+
password_confirmation: Salasana (uudelleen)
|
72
|
+
email: Sähköpostiosoite
|
73
|
+
remember_me: Muista kirjautumiseni tällä tietokoneella
|
@@ -0,0 +1,73 @@
|
|
1
|
+
fr:
|
2
|
+
refinery:
|
3
|
+
plugins:
|
4
|
+
refinery_authentication_devise:
|
5
|
+
title: Utilisateurs
|
6
|
+
description: Gestion des utilisateurs
|
7
|
+
authentication:
|
8
|
+
devise:
|
9
|
+
admin:
|
10
|
+
users:
|
11
|
+
delete: Supprimer définitivement cet utilisateur
|
12
|
+
edit: Modifier cet utilisateur
|
13
|
+
update:
|
14
|
+
lockout_prevented: Vous ne pouvez pas supprimer l'accès au plugin de gestion des utilisateurs pour l'utilisateur sur lequel vous êtes actuellement authentifié.
|
15
|
+
form:
|
16
|
+
blank_password_keeps_current: Laisser le mot de passe vide permet de conserver le mot de passe actuel
|
17
|
+
plugin_access: Plugin d'accès
|
18
|
+
role_access: Rôle d'accès
|
19
|
+
enable_all: tout activer
|
20
|
+
actions:
|
21
|
+
create_new_user: Créer un nouvel utilisateur
|
22
|
+
user:
|
23
|
+
email_user: Envoyer un e-mail à cet utilisateur
|
24
|
+
preview: "(%{who}) créé le %{created_at}"
|
25
|
+
sessions:
|
26
|
+
new:
|
27
|
+
hello_please_sign_in: Bonjour ! Veuillez vous identifier.
|
28
|
+
sign_in: Authentification
|
29
|
+
forgot_password: J'ai oublié mon mot de passe
|
30
|
+
users:
|
31
|
+
new:
|
32
|
+
fill_form: Remplissez vos coordonnées ci-dessous pour commencer.
|
33
|
+
sign_up: Enregistrement
|
34
|
+
create:
|
35
|
+
welcome: "Bienvenue dans Refinery, %{who}"
|
36
|
+
forgot:
|
37
|
+
email_address: Adresse e-mail
|
38
|
+
enter_email_address: Veuillez entrer votre adresse e-mail.
|
39
|
+
reset_password: Changer le mot de passe
|
40
|
+
blank_email: "Vous n'avez pas entré d'adresse e-mail."
|
41
|
+
email_not_associated_with_account_html: "Désolé, '%{email}' n'est asssocié à aucun compte.<br />Etes-vous sûr d'avoir correctement entré votre adresse e-mail ?"
|
42
|
+
email_reset_sent: Un e-mail vous a été envoyé. Il contient un lien vous permettant de changer votre mot de passe.
|
43
|
+
password_encryption: Vous devez modifier votre mot de passe car Refinery utilise de nouvelles méthodes de cryptage. Les nouveaux mots de passe seront stockés avec un niveau de sécurité plus élevé.
|
44
|
+
reset:
|
45
|
+
successful: "Le mot de passe pour '%{email}' a bien été changé."
|
46
|
+
pick_new_password_for: "Choisissez un nouveau mot de passe pour %{email}"
|
47
|
+
reset_password: Changer le mot de passe
|
48
|
+
user_mailer:
|
49
|
+
reset_notification:
|
50
|
+
subject: Lien pour changer votre mot de passe
|
51
|
+
reset_request_received_for: "Une demande de changement de mot de passe a été reçue pour %{username}"
|
52
|
+
visit_this_url: Visitez cette URL pour choisir un nouveau mot de passe
|
53
|
+
remain_same_if_no_action: Votre mot de passe restera le même si aucune action n'est choisie
|
54
|
+
roles:
|
55
|
+
superuser: Superuser
|
56
|
+
refinery: Refinery
|
57
|
+
devise:
|
58
|
+
failure:
|
59
|
+
unauthenticated: Vous devez vous connecter ou vous inscrire pour continuer.
|
60
|
+
invalid: Courriel ou mot de passe incorrect.
|
61
|
+
sessions:
|
62
|
+
signed_in: Réussite de la connexion.
|
63
|
+
activerecord:
|
64
|
+
models:
|
65
|
+
refinery/authentication/devise/user: utilisateur
|
66
|
+
attributes:
|
67
|
+
refinery/authentication/devise/user:
|
68
|
+
login: Nom d'utilisateur
|
69
|
+
username: Nom d'utilisateur
|
70
|
+
email: E-mail
|
71
|
+
password: Mot de passe
|
72
|
+
password_confirmation: Confirmer mot de passe
|
73
|
+
remember_me: Se souvenir de moi
|