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,73 @@
|
|
1
|
+
hu:
|
2
|
+
refinery:
|
3
|
+
plugins:
|
4
|
+
refinery_authentication_devise:
|
5
|
+
title: Felhasználók
|
6
|
+
description: Felhasználók kezelése
|
7
|
+
authentication:
|
8
|
+
devise:
|
9
|
+
admin:
|
10
|
+
users:
|
11
|
+
delete: Felhasználó végleges eltávolítása
|
12
|
+
edit: Felhasználó szerkesztése
|
13
|
+
update:
|
14
|
+
lockout_prevented: Nem távolíthatod el a 'Felhasználók' kiegészítőt ebből a bejelentkezett fiókból.
|
15
|
+
form:
|
16
|
+
blank_password_keeps_current: 'A jelenlegi jelszó megtartásához hagyd a mezőt üresen'
|
17
|
+
plugin_access: Kiegészítő hozzáférés
|
18
|
+
role_access: Szerep hozzáférés
|
19
|
+
enable_all: összes engedélyezése
|
20
|
+
actions:
|
21
|
+
create_new_user: Új felhasználó hozzáadása
|
22
|
+
user:
|
23
|
+
email_user: Levél küldése a felhasználónak
|
24
|
+
preview: '(%{who}) hozzáadva %{created_at}'
|
25
|
+
sessions:
|
26
|
+
new:
|
27
|
+
hello_please_sign_in: Helló! Kérlek jelentkezz be.
|
28
|
+
sign_in: Bejelentkezés
|
29
|
+
forgot_password: Elfelejtettem a jelszavam
|
30
|
+
user_mailer:
|
31
|
+
reset_notification:
|
32
|
+
subject: Jelszó helyreállítás
|
33
|
+
reset_request_received_for: "%{username} felhasználó jelszó helyreállítást kezdeményezett"
|
34
|
+
visit_this_url: 'Látogasd meg ezt az URL-t, hogy új jelszót adhass meg'
|
35
|
+
remain_same_if_no_action: 'A jelszavad a régi marad, ha nem teszel semmit'
|
36
|
+
users:
|
37
|
+
new:
|
38
|
+
fill_form: Töltsd ki a részleteket a kezdéshez.
|
39
|
+
sign_up: Regisztráció
|
40
|
+
create:
|
41
|
+
welcome: 'Üdv a Refinery-ben, %{who}'
|
42
|
+
forgot:
|
43
|
+
email_address: Email Cím
|
44
|
+
enter_email_address: Add meg a fiókodhoz tartozó email címed.
|
45
|
+
reset_password: Jelszó helyreállítás
|
46
|
+
blank_email: Nem adtál meg email címet.
|
47
|
+
email_not_associated_with_account_html: "Sajnáljuk, '%{email}' egyik fiókhoz sincs társítva.<br />Biztosan helyes email címet írtál be?"
|
48
|
+
email_reset_sent: 'Elküldünk egy levelet neked, ami tartalmazza a helyreállításhoz szükséges webcímet.'
|
49
|
+
password_encryption: 'Újra be kell állítanod a jelszavad, mert változtatások történtek a Refinery által használt jelszó titkosító módszerben, így a jelszavak még nagyobb biztonságban lesznek.'
|
50
|
+
reset:
|
51
|
+
successful: "'%{email}' email címhez tartozó jelszó helyreállítás sikeresen megtörtént"
|
52
|
+
pick_new_password_for: "Válassz új jelszót a(z) %{email} címhez"
|
53
|
+
reset_password: Jelszó beállítása
|
54
|
+
roles:
|
55
|
+
superuser: Superuser
|
56
|
+
refinery: Refinery
|
57
|
+
devise:
|
58
|
+
failure:
|
59
|
+
unauthenticated: A folytatáshoz be kell jelentkezned.
|
60
|
+
invalid: "Sajnáljuk, a felhasználóneved vagy jelszavad helytelen."
|
61
|
+
sessions:
|
62
|
+
signed_in: Sikeres bejelentkezés.
|
63
|
+
activerecord:
|
64
|
+
models:
|
65
|
+
refinery/authentication/devise/user: felhasználó
|
66
|
+
attributes:
|
67
|
+
refinery/authentication/devise/user:
|
68
|
+
login: Felhasználónév vagy email cím
|
69
|
+
username: Felhasználónév
|
70
|
+
password: Jelszó
|
71
|
+
password_confirmation: Jelszó megerősítés
|
72
|
+
email: Email
|
73
|
+
remember_me: Emlékezz rám
|
@@ -0,0 +1,77 @@
|
|
1
|
+
it:
|
2
|
+
refinery:
|
3
|
+
plugins:
|
4
|
+
refinery_authentication_devise:
|
5
|
+
title: Utenti
|
6
|
+
description: Gestione degli utenti
|
7
|
+
authentication:
|
8
|
+
devise:
|
9
|
+
admin:
|
10
|
+
users:
|
11
|
+
delete: Elimina questo utente
|
12
|
+
edit: Modifica questo utente
|
13
|
+
update:
|
14
|
+
lockout_prevented: "Non è possibile rimuovere la sezione 'Utenti' dall'account attualmente connesso."
|
15
|
+
form:
|
16
|
+
blank_password_keeps_current: Lasciando il campo Password vuoto essa non verrà modificata
|
17
|
+
plugin_access: "Abilitare l'accesso alle sezioni"
|
18
|
+
role_access: Ruoli autorizzati
|
19
|
+
enable_all: seleziona tutto
|
20
|
+
actions:
|
21
|
+
create_new_user: Crea un nuovo utente
|
22
|
+
user:
|
23
|
+
email_user: E-mail a questo utente
|
24
|
+
preview: "(%{who}) creato il %{created_at}"
|
25
|
+
sessions:
|
26
|
+
new:
|
27
|
+
forgot_password: Password dimenticata?
|
28
|
+
sign_in: Entra
|
29
|
+
hello_please_sign_in: Ciao! Accedi per favore.
|
30
|
+
user_mailer:
|
31
|
+
reset_notification:
|
32
|
+
subject: Link per reimpostare la password
|
33
|
+
reset_request_received_for: "È stata richiesta la reimpostazione della password per %{username}"
|
34
|
+
visit_this_url: Visita questo URL per scegliere una nuova password
|
35
|
+
remain_same_if_no_action: "La password rimarrà la stessa se non si effettua una scelta"
|
36
|
+
users:
|
37
|
+
new:
|
38
|
+
fill_form: Compila il form sottostante con i tuoi dati
|
39
|
+
sign_up: Registrati
|
40
|
+
create:
|
41
|
+
welcome: "Benvenuto in Refinery, %{who}"
|
42
|
+
forgot:
|
43
|
+
email_address: Indirizzo e-mail
|
44
|
+
enter_email_address: "Inserisci l'indirizzo di posta elettronica per l'utente."
|
45
|
+
reset_password: Reimpostazione della password
|
46
|
+
blank_email: "Non hai inserito l'indirizzo email."
|
47
|
+
email_not_associated_with_account_html: "Spiacenti, '%{email}' non è associato ad alcun account. <br/>Sei sicuro di aver scritto l'indirizzo email corretto?"
|
48
|
+
email_reset_sent: Ti è stata inviata una e-mail con il link per reimpostare la password.
|
49
|
+
password_encryption: "È necessario reimpostare la password, poiché ci sono stati cambiamenti nei metodi di crittografia della password, in modo da rendere più sicuro l'accesso."
|
50
|
+
reset:
|
51
|
+
successful: "Il ripristino della password è avvenuto con successo per %{email}"
|
52
|
+
pick_new_password_for: "Scegli una nuova password per %{email}"
|
53
|
+
reset_password: Reimposta la password
|
54
|
+
roles:
|
55
|
+
superuser: Superuser
|
56
|
+
refinery: Refinery
|
57
|
+
activerecord:
|
58
|
+
models:
|
59
|
+
refinery/authentication/devise/user: utente
|
60
|
+
attributes:
|
61
|
+
refinery/authentication/devise/user:
|
62
|
+
login: accesso
|
63
|
+
username: username
|
64
|
+
password: password
|
65
|
+
password_confirmation:
|
66
|
+
email: Email
|
67
|
+
remember_me: Ricordati di me
|
68
|
+
full_name: Nome completo
|
69
|
+
devise:
|
70
|
+
failure:
|
71
|
+
unauthenticated: "Devi accedere o registrarti per continuare."
|
72
|
+
invalid: "Indirizzo email o password non validi."
|
73
|
+
not_found_in_database: "Spiacenti, la tua username e/o password sono incorretti."
|
74
|
+
sessions:
|
75
|
+
signed_in: "Accesso effettuato con successo."
|
76
|
+
refinery_user:
|
77
|
+
signed_out: Uscito con successo.
|
@@ -0,0 +1,73 @@
|
|
1
|
+
ja:
|
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: 現在使用中のアカウントから'ユーザ'プラグインを削除する事は出来ません。
|
15
|
+
form:
|
16
|
+
blank_password_keeps_current: 空にしておくと現在のパスワードがそのまま保存されます。
|
17
|
+
plugin_access: プラグインアクセス
|
18
|
+
role_access: ロールアクセス
|
19
|
+
enable_all: 全てを有効にする
|
20
|
+
actions:
|
21
|
+
create_new_user: ユーザの新規作成
|
22
|
+
user:
|
23
|
+
email_user: このユーザにメールを送信
|
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: '%{who}さん、Refineryへようこそ。'
|
36
|
+
forgot:
|
37
|
+
email_address: メールアドレス
|
38
|
+
enter_email_address: メールアドレスを記入して下さい。
|
39
|
+
reset_password: パスワードのリセット
|
40
|
+
blank_email: メールアドレス欄が空欄です
|
41
|
+
email_not_associated_with_account_html: "「%{email}」は記録に無いアドレスです。<br />今一度確認して下さい。"
|
42
|
+
email_reset_sent: パスワードをリセットする為のリンクをメールで送信しました。
|
43
|
+
password_encryption: パスワードの暗号が強化されましたので、パスワードをリセットする必要があります。
|
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: ログイン
|
69
|
+
username: アカウント名
|
70
|
+
password: パスワード
|
71
|
+
password_confirmation: パスワードの確認
|
72
|
+
email: メールアドレス
|
73
|
+
remember_me: ユーザ情報を記憶する
|
@@ -0,0 +1,73 @@
|
|
1
|
+
ko:
|
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: 현재 로그인한 계정에서 사용자 플러그인 접근 권한을 제거할 수 없습니다.
|
15
|
+
form:
|
16
|
+
blank_password_keeps_current: 빈 칸으로 두면 비밀번호를 변경하지 않습니다
|
17
|
+
plugin_access: 플러그인 권한
|
18
|
+
role_access: 역할 등급
|
19
|
+
enable_all: 모두 허가
|
20
|
+
actions:
|
21
|
+
create_new_user: 새 사용자 추가
|
22
|
+
user:
|
23
|
+
email_user: 사용자에게 메일 발송
|
24
|
+
preview: '(%{who}) %{created_at} 에 추가됨'
|
25
|
+
sessions:
|
26
|
+
new:
|
27
|
+
hello_please_sign_in: 환영합니다! 로그인 해 주세요.
|
28
|
+
sign_in: 로그인
|
29
|
+
forgot_password: 비밀번호 찾기
|
30
|
+
user_mailer:
|
31
|
+
reset_notification:
|
32
|
+
subject: 비밀번호 초기화 안내
|
33
|
+
reset_request_received_for: "%{username}님의 비밀번호를 초기화합니다."
|
34
|
+
visit_this_url: 아래 주소의 페이지를 방문하여 비밀번호를 초기화하세요.
|
35
|
+
remain_same_if_no_action: 아무런 요청이 없다면 비밀번호는 변경되지 않습니다.
|
36
|
+
users:
|
37
|
+
new:
|
38
|
+
fill_form: 시작하기 전에 아래의 정보를 채워주세요.
|
39
|
+
sign_up: 회원가입
|
40
|
+
create:
|
41
|
+
welcome: '%{who}님, Refinery에 오신 것을 환영합니다.'
|
42
|
+
forgot:
|
43
|
+
email_address: 메일 주소
|
44
|
+
enter_email_address: 계정에 등록된 메일 주소를 입력하세요.
|
45
|
+
reset_password: 비밀번호 초기화
|
46
|
+
blank_email: 메일 주소가 입력되지 않았습니다.
|
47
|
+
email_not_associated_with_account_html: "죄송합니다. '%{email}'로 등록된 계정을 찾을 수 없습니다.<br />메일 주소를 올바르게 입력했는지 확인해주세요."
|
48
|
+
email_reset_sent: 비밀번호 초기화 링크를 담은 메일을 발송했습니다.
|
49
|
+
password_encryption: 더 강력한 보안을 위해 Refinery의 비밀번호 암호화 방식이 변경되었습니다. 새 암호화를 적용하기 위해 비밀번호를 재설정해주세요.
|
50
|
+
reset:
|
51
|
+
successful: "'%{email}' 계정의 비밀번호가 초기화되었습니다"
|
52
|
+
pick_new_password_for: "%{email} 계정의 비밀번호를 재설정하세요"
|
53
|
+
reset_password: 비밀번호 초기화
|
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: 아이디
|
69
|
+
username: 아이디
|
70
|
+
password: 비밀번호
|
71
|
+
password_confirmation: 비밀번호 확인
|
72
|
+
email: 이메일
|
73
|
+
remember_me: 자동접속
|
@@ -0,0 +1,56 @@
|
|
1
|
+
lt:
|
2
|
+
refinery:
|
3
|
+
plugins:
|
4
|
+
refinery_authentication_devise:
|
5
|
+
title: Vartotojai
|
6
|
+
description: Valdyti vartotojus
|
7
|
+
authentication:
|
8
|
+
devise:
|
9
|
+
admin:
|
10
|
+
users:
|
11
|
+
delete: Pašalinti vartotoją visam laikui
|
12
|
+
edit: Redaguoti vartotoją
|
13
|
+
update:
|
14
|
+
lockout_prevented: Jūs negalite pašalinti 'Vartotojų' įskiepio iš šiuo metu naudojamos paskyros.
|
15
|
+
form:
|
16
|
+
blank_password_keeps_current: "Jei paliksite slaptažodžio laukelį tuščią, jis išliks nepakites"
|
17
|
+
enable_all: aktyvuoti visus
|
18
|
+
actions:
|
19
|
+
create_new_user: Pridėti naują vartotoją
|
20
|
+
user:
|
21
|
+
email_user: Siųsti el. laišką vartotojui
|
22
|
+
preview: '(%{who}) sukurtas %{created_at}'
|
23
|
+
sessions:
|
24
|
+
new:
|
25
|
+
hello_please_sign_in: Sveiki! Prašome prisijungti.
|
26
|
+
sign_in: Prisijungti
|
27
|
+
forgot_password: Aš pamiršau slaptažodį
|
28
|
+
users:
|
29
|
+
new:
|
30
|
+
fill_form: 'Įveskite savo informaciją, kad galėtume pradėti.'
|
31
|
+
sign_up: Registruotis
|
32
|
+
create:
|
33
|
+
welcome: 'Sveiki prisijungę prie Refinery, %{who}'
|
34
|
+
forgot:
|
35
|
+
email_address: El. pašto adresas
|
36
|
+
enter_email_address: Prašome nurodyti el. pašto adresą savo paskyrai.
|
37
|
+
reset_password: Slaptažodžio keitimas
|
38
|
+
blank_email: Jūs neįvedėte slaptažodžio
|
39
|
+
email_not_associated_with_account_html: "Atsiprašome, '%{email}' nėra susietas su jokia paskyra.<br />Ar tikrai nurodėte teisingą el. pašto adresą?"
|
40
|
+
email_reset_sent: El. laiškas buvo nusiųstas jums su nuoroda kur galite pakeisti slaptažodį.
|
41
|
+
reset:
|
42
|
+
successful: "'%{email}' slaptažodis sėkmingai atnaujintas"
|
43
|
+
pick_new_password_for: 'Nurodykite naują %{email} slaptažodį'
|
44
|
+
reset_password: Pakeisti slaptažodį
|
45
|
+
user_mailer:
|
46
|
+
reset_notification:
|
47
|
+
subject: Nuoroda slaptažodžio keitimui
|
48
|
+
activerecord:
|
49
|
+
models:
|
50
|
+
refinery/authentication/devise/user: vartotojas
|
51
|
+
attributes:
|
52
|
+
refinery/authentication/devise/user:
|
53
|
+
login: Prisijungti
|
54
|
+
email: El. paštas
|
55
|
+
password: Slaptažodis
|
56
|
+
remember_me: Prisiminti mane
|
@@ -0,0 +1,73 @@
|
|
1
|
+
lv:
|
2
|
+
refinery:
|
3
|
+
plugins:
|
4
|
+
refinery_authentication_devise:
|
5
|
+
title: Lietotāji
|
6
|
+
description: Lietotāju pārvaldīšana
|
7
|
+
authentication:
|
8
|
+
devise:
|
9
|
+
admin:
|
10
|
+
users:
|
11
|
+
delete: Dzēst šo lietotāju
|
12
|
+
edit: Labot šo lietotāju
|
13
|
+
update:
|
14
|
+
lockout_prevented: Jūs nevarat dzēst pieeju 'Lietotāju' spraudnim kontam ar kuru pašlaik esat pieslēdzies.
|
15
|
+
form:
|
16
|
+
blank_password_keeps_current: 'Atstājot paroles lauku tukšu, tiks paturēta pašreizējā parole'
|
17
|
+
plugin_access: Spraudņu piekļuve
|
18
|
+
role_access: Lomu piekļuve
|
19
|
+
enable_all: iespējot visu
|
20
|
+
actions:
|
21
|
+
create_new_user: Izveidot jaunu lietotāju
|
22
|
+
user:
|
23
|
+
email_user: Sūtīt epastu šim lietotājam
|
24
|
+
preview: '(%{who}) izveidots %{created_at}'
|
25
|
+
sessions:
|
26
|
+
new:
|
27
|
+
hello_please_sign_in: 'Sveicināti! Lūdzu, veiciet autentifikāciju.'
|
28
|
+
sign_in: Ienākt
|
29
|
+
forgot_password: Aizmirsu paroli
|
30
|
+
users:
|
31
|
+
new:
|
32
|
+
fill_form: 'Aizpildiet zemāk redzamos laukus, lai varam sākt.'
|
33
|
+
sign_up: Izveidot
|
34
|
+
create:
|
35
|
+
welcome: 'Laipni lūdzam Refinery, %{who}'
|
36
|
+
forgot:
|
37
|
+
email_address: Epasta adrese
|
38
|
+
enter_email_address: 'Lūdzu, norādiet sava konta epasta adresi.'
|
39
|
+
reset_password: Atjaunot paroli
|
40
|
+
blank_email: Jūs nenorādījāt epasta adresi.
|
41
|
+
email_not_associated_with_account_html: "Atvainojiet, epasts '%{email}' nav piesaistīts nevienam kontam.<br />Vai tiešām norādījāt korektu epastu?"
|
42
|
+
email_reset_sent: "Uz jūsu epastu tika izsūtīta vēstule, kura satur saiti, lai atjaunotu paroli."
|
43
|
+
password_encryption: 'Jums ir jāatjauno parole, jo tika veiktas izmaiņas Refinery paroļu kriptēšanas sistēmā.'
|
44
|
+
reset:
|
45
|
+
successful: "Paroles atjaunošana noritēja sekmīgi priekš '%{email}'"
|
46
|
+
pick_new_password_for: 'Izveidojiet jaunu paroli priekš %{email}'
|
47
|
+
reset_password: Atjaunot paroli
|
48
|
+
user_mailer:
|
49
|
+
reset_notification:
|
50
|
+
subject: 'Saite, lai atjaunotu paroli'
|
51
|
+
reset_request_received_for: 'Paroles nomaiņas pieprasījums priekš %{username}'
|
52
|
+
visit_this_url: 'Apmeklējiet šo adresi, lai izveidotu jaunu paroli'
|
53
|
+
remain_same_if_no_action: 'Esošā parole netiks mainīta, ja neveiksiet turpmākās darbības'
|
54
|
+
roles:
|
55
|
+
superuser: Superlietotājs
|
56
|
+
refinery: Refinery
|
57
|
+
devise:
|
58
|
+
failure:
|
59
|
+
unauthenticated: 'Pirms turpināt, jums ir jāveic autentifikācija.'
|
60
|
+
invalid: 'Atvainojiet, nepareizs lietotāja vārds/epasts vai parole.'
|
61
|
+
sessions:
|
62
|
+
signed_in: Autentifikācija noritēja veiksmīgi.
|
63
|
+
activerecord:
|
64
|
+
models:
|
65
|
+
refinery/authentication/devise/user: lietotājs
|
66
|
+
attributes:
|
67
|
+
refinery/authentication/devise/user:
|
68
|
+
login: Lietotāja vārds/Epasts
|
69
|
+
username: Lietotāja vārds
|
70
|
+
password: Parole
|
71
|
+
password_confirmation: Parole atkārtoti
|
72
|
+
email: Epasts
|
73
|
+
remember_me: Atcerēties mani
|
@@ -0,0 +1,73 @@
|
|
1
|
+
nb:
|
2
|
+
refinery:
|
3
|
+
plugins:
|
4
|
+
refinery_authentication_devise:
|
5
|
+
title: Brukere
|
6
|
+
description: Behandle brukere
|
7
|
+
authentication:
|
8
|
+
devise:
|
9
|
+
admin:
|
10
|
+
users:
|
11
|
+
delete: Fjern denne brukeren permanent
|
12
|
+
edit: Rediger denne brukeren
|
13
|
+
update:
|
14
|
+
lockout_prevented: "Du kan ikke fjerne tillegget 'Brukere' når du er logget inn med denne brukeren"
|
15
|
+
form:
|
16
|
+
blank_password_keeps_current: La feltet forbli tomt om du ikke ønsker å endre passordet
|
17
|
+
plugin_access: Tilgang til komponenter
|
18
|
+
role_access: Rolletilgang
|
19
|
+
enable_all: merk alle
|
20
|
+
actions:
|
21
|
+
create_new_user: Lag ny bruker
|
22
|
+
user:
|
23
|
+
email_user: Send en e-post til denne brukeren
|
24
|
+
preview: '(%{who}) opprettet %{created_at}'
|
25
|
+
sessions:
|
26
|
+
new:
|
27
|
+
hello_please_sign_in: "Hei! Vennligst logg inn."
|
28
|
+
sign_in: Logg inn
|
29
|
+
forgot_password: Jeg glemte passordet mitt
|
30
|
+
users:
|
31
|
+
new:
|
32
|
+
fill_form: Fyll ut detaljene dine nedenfor slik at vi kan komme i gang.
|
33
|
+
sign_up: Registrer deg
|
34
|
+
create:
|
35
|
+
welcome: 'Velkommen til Refinery, %{who}'
|
36
|
+
forgot:
|
37
|
+
email_address: E-post Adresse
|
38
|
+
enter_email_address: Vennligst tast inn e-post adressen for din konto.
|
39
|
+
reset_password: Tilbakestill passord
|
40
|
+
blank_email: Du har ikke oppgitt noen e-post adresse.
|
41
|
+
email_not_associated_with_account_html: "Beklager, '%{email}' er ikke tilknyttet noen konto.<br/>Er du sikker på at du tastet inn riktig e-post adresse?"
|
42
|
+
email_reset_sent: En e-post har blitt sendt til deg med en lenke for å tilbakestille passordet ditt.
|
43
|
+
password_encryption: Du må tilbakestille ditt passord da det er gjort endringer i krypteringsteknologien som Refinery benttter. Endringene gjør at passordene lagres med en enda sterkere kryptering enn tidlgere.
|
44
|
+
reset:
|
45
|
+
successful: "Passordet for %{email} er nå tilbakestilt"
|
46
|
+
pick_new_password_for: "Velg et nytt passord for %{email}"
|
47
|
+
reset_password: Tilbakestill passord
|
48
|
+
user_mailer:
|
49
|
+
reset_notification:
|
50
|
+
subject: Lenke for å tilbakestille passordet ditt
|
51
|
+
reset_request_received_for: "Forespørsel om å tilbakestille passordet er mottatt for %{username}"
|
52
|
+
visit_this_url: Åpne denne lenken for å velge ditt nye passord
|
53
|
+
remain_same_if_no_action: Ditt passord vil ikke bli endret om du ikke gjør noe
|
54
|
+
roles:
|
55
|
+
superuser: Superbruker
|
56
|
+
refinery: Refinery
|
57
|
+
devise:
|
58
|
+
failure:
|
59
|
+
unauthenticated: Du må logge deg inn før du kan fortsette.
|
60
|
+
invalid: "Beklager, brukernavnet eller passordet du oppga var ikke riktig."
|
61
|
+
sessions:
|
62
|
+
signed_in: Du er nå logget inn.
|
63
|
+
activerecord:
|
64
|
+
models:
|
65
|
+
refinery/authentication/devise/user: bruker
|
66
|
+
attributes:
|
67
|
+
refinery/authentication/devise/user:
|
68
|
+
login: Logg inn
|
69
|
+
username: Brukernavn
|
70
|
+
password: Passord
|
71
|
+
password_confirmation: Bekreft passord
|
72
|
+
email: E-post
|
73
|
+
remember_me: Husk meg
|
@@ -0,0 +1,77 @@
|
|
1
|
+
nl:
|
2
|
+
refinery:
|
3
|
+
plugins:
|
4
|
+
refinery_authentication_devise:
|
5
|
+
title: Gebruikers
|
6
|
+
description: Gebruikers beheren
|
7
|
+
authentication:
|
8
|
+
devise:
|
9
|
+
admin:
|
10
|
+
users:
|
11
|
+
delete: Deze gebruiker definitief verwijderen
|
12
|
+
edit: Deze gebruiker bewerken
|
13
|
+
update:
|
14
|
+
lockout_prevented: "U kunt de plugin 'Gebruikers' niet deactiveren voor het account waarmee u op dit moment bent ingelogd."
|
15
|
+
form:
|
16
|
+
blank_password_keeps_current: 'Als u dit veld leeg laat, blijft het huidige wachtwoord behouden'
|
17
|
+
plugin_access: Toegang tot plugins
|
18
|
+
role_access: Toegang tot rollen
|
19
|
+
enable_all: alles aanvinken
|
20
|
+
actions:
|
21
|
+
create_new_user: Een nieuwe gebruiker toevoegen
|
22
|
+
user:
|
23
|
+
email_user: Deze gebruiker e-mailen
|
24
|
+
preview: '(%{who}) is toegevoegd op %{created_at}'
|
25
|
+
sessions:
|
26
|
+
new:
|
27
|
+
hello_please_sign_in: Hallo! Log in om verder te gaan.
|
28
|
+
sign_in: Inloggen
|
29
|
+
forgot_password: Ik ben mijn wachtwoord vergeten
|
30
|
+
user_mailer:
|
31
|
+
reset_notification:
|
32
|
+
subject: Link om een nieuw wachtwoord aan te vragen
|
33
|
+
reset_request_received_for: 'Aanvraag voor een nieuw wachtwoord voor %{username}'
|
34
|
+
visit_this_url: Bezoek dit adres om een nieuw wachtwoord in te stellen
|
35
|
+
remain_same_if_no_action: 'Als u niet op dit bericht reageert blijft uw wachtwoord ongewijzigd'
|
36
|
+
users:
|
37
|
+
new:
|
38
|
+
fill_form: 'Vul het onderstaande formulier in, om te kunnen beginnen.'
|
39
|
+
sign_up: Registreer
|
40
|
+
create:
|
41
|
+
welcome: 'Welkom bij Refinery, %{who}'
|
42
|
+
forgot:
|
43
|
+
email_address: E-mailadres
|
44
|
+
enter_email_address: Vul het e-mailadres van uw account in.
|
45
|
+
reset_password: Een nieuw wachtwoord aanvragen
|
46
|
+
blank_email: Uw heeft geen e-mailadres ingevuld.
|
47
|
+
email_not_associated_with_account_html: "Sorry, '%{email}' is niet gekoppeld aan een account. <br/>Weet u zeker dat u het juiste e-mailadres heeft ingevuld?"
|
48
|
+
email_reset_sent: Er is een e-mail naar u verzonden met een link om een nieuw wachtwoord in te stellen.
|
49
|
+
password_encryption: 'U moet een nieuw wachtwoord instellen omdat de wachtwoordversleuteling van Refinery is verbeterd, hiermee wordt uw wachtwoord nog veiliger opgeslagen.'
|
50
|
+
reset:
|
51
|
+
successful: "Het instellen van een nieuw wachtwoord voor %{email} is gelukt."
|
52
|
+
pick_new_password_for: 'Kies een nieuw wachtwoord voor %{email}'
|
53
|
+
reset_password: Nieuw wachtwoord instellen
|
54
|
+
roles:
|
55
|
+
superuser: Beheerder
|
56
|
+
refinery: Refinery-gebruiker
|
57
|
+
devise:
|
58
|
+
failure:
|
59
|
+
unauthenticated: U moet inloggen om verder te kunnen
|
60
|
+
invalid: 'Sorry, uw wachtwoord, of gebruikersnaam is onjuist.'
|
61
|
+
not_found_in_database: 'Sorry, uw wachtwoord, of gebruikersnaam is onjuist.'
|
62
|
+
sessions:
|
63
|
+
signed_in: U bent ingelogd.
|
64
|
+
refinery_user:
|
65
|
+
signed_out: U bent uitgelogd.
|
66
|
+
activerecord:
|
67
|
+
models:
|
68
|
+
refinery/authentication/devise/user: gebruiker
|
69
|
+
attributes:
|
70
|
+
refinery/authentication/devise/user:
|
71
|
+
login: Gebruikersnaam
|
72
|
+
username: Gebruikersnaam
|
73
|
+
password: Wachtwoord
|
74
|
+
password_confirmation: Bevestiging wachtwoord
|
75
|
+
email: E-mail
|
76
|
+
remember_me: Onthoud mijn gegevens
|
77
|
+
full_name: Volledige naam
|
@@ -0,0 +1,73 @@
|
|
1
|
+
pl:
|
2
|
+
refinery:
|
3
|
+
plugins:
|
4
|
+
refinery_authentication_devise:
|
5
|
+
title: Użytkownicy
|
6
|
+
description: Zarządzaj użytkownikami
|
7
|
+
authentication:
|
8
|
+
devise:
|
9
|
+
admin:
|
10
|
+
users:
|
11
|
+
delete: Usuń tego użytkownika na zawsze
|
12
|
+
edit: Edttuj tego użytkownika
|
13
|
+
update:
|
14
|
+
lockout_prevented: Z obecnie zalogowanego konta nie można usunąć pluginu 'Użytkownicy'.
|
15
|
+
form:
|
16
|
+
blank_password_keeps_current: Pozostawienie pola hasło pustym pozostawi hasło nie zmienionym
|
17
|
+
plugin_access: Plugin dostępu
|
18
|
+
role_access: Rola dostępu
|
19
|
+
enable_all: aktywuj wszystkich
|
20
|
+
actions:
|
21
|
+
create_new_user: Dodaj nowego użytkownika
|
22
|
+
user:
|
23
|
+
email_user: Wyślij e-mail do tego użytkownika
|
24
|
+
preview: "(%{who}) dodany %{created_at}"
|
25
|
+
sessions:
|
26
|
+
new:
|
27
|
+
hello_please_sign_in: Hej! Proszę zaloguj się.
|
28
|
+
sign_in: Zaloguj się
|
29
|
+
forgot_password: Zapomniane hasło
|
30
|
+
users:
|
31
|
+
new:
|
32
|
+
fill_form: Uzupełnij dane poniżej aby zacząć używać tej strony.
|
33
|
+
sign_up: Zarejestruj się
|
34
|
+
create:
|
35
|
+
welcome: "Witaj w Refinery, %{who}"
|
36
|
+
forgot:
|
37
|
+
email_address: Adres e-mail
|
38
|
+
enter_email_address: Proszę podaj adres e-mail dla Twojego konta.
|
39
|
+
reset_password: Reset hasła
|
40
|
+
blank_email: Nie podano żadnego adresu e-mail.
|
41
|
+
email_not_associated_with_account_html: "Przepraszamy, '%{email}' nie jest adresem żadnego z zarejestrowanych użytkownikiem. <br />Czy to na pewno prawidłowy adres?"
|
42
|
+
email_reset_sent: Został wysłany e-mail z linkiem umożliwiającym reset hasła.
|
43
|
+
password_encryption: Musisz zmienić swoje hasło ponieważ wprowadziliśmy zmiany w używanej w Rafinery metodzie szyfrowania. Teraz hasła są jeszcze lepiej chronione.
|
44
|
+
reset:
|
45
|
+
successful: "Hasło zresetowane dla '%{email}'"
|
46
|
+
pick_new_password_for: "Wybierz nowe hasło dla %{email}"
|
47
|
+
reset_password: Reset hasła
|
48
|
+
user_mailer:
|
49
|
+
reset_notification:
|
50
|
+
subject: Link do resetu hasła
|
51
|
+
reset_request_received_for: 'Prośba o zmianę hasła dla %{username}'
|
52
|
+
visit_this_url: Odwiedź stronę aby ustawić nowe hasło
|
53
|
+
remain_same_if_no_action: Twoje hasło nie zostanie zmienione jeśli nie odwiedzisz strony
|
54
|
+
roles:
|
55
|
+
superuser: Superużytkownik
|
56
|
+
refinery: Refinery
|
57
|
+
activerecord:
|
58
|
+
models:
|
59
|
+
refinery/authentication/devise/user: użytkownik
|
60
|
+
attributes:
|
61
|
+
refinery/authentication/devise/user:
|
62
|
+
login: Nazwa użytkownika lub e-mail
|
63
|
+
username: Nazwa użytkownika
|
64
|
+
email: E-mail
|
65
|
+
password: Hasło
|
66
|
+
password_confirmation: Potwierdzenie hasła
|
67
|
+
remember_me: Zapamiętaj mnie
|
68
|
+
devise:
|
69
|
+
failure:
|
70
|
+
unauthenticated: 'Musisz się zalogować lub zarejestrować aby kontynuować.'
|
71
|
+
invalid: 'Niepoprawny email lub hasło.'
|
72
|
+
sessions:
|
73
|
+
signed_in: 'Użytkownik został zalogowany.'
|