decidim-verifications 0.15.2 → 0.16.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +37 -7
- data/app/commands/decidim/verifications/id_documents/admin/confirm_user_offline_authorization.rb +74 -0
- data/app/commands/decidim/verifications/id_documents/admin/update_config.rb +39 -0
- data/app/controllers/decidim/verifications/id_documents/admin/config_controller.rb +40 -0
- data/app/controllers/decidim/verifications/id_documents/admin/offline_confirmations_controller.rb +40 -0
- data/app/controllers/decidim/verifications/id_documents/admin/pending_authorizations_controller.rb +13 -2
- data/app/controllers/decidim/verifications/id_documents/authorizations_controller.rb +30 -2
- data/app/controllers/decidim/verifications/sms/authorizations_controller.rb +76 -0
- data/app/forms/decidim/verifications/id_documents/admin/config_form.rb +42 -0
- data/app/forms/decidim/verifications/id_documents/admin/offline_confirmation_form.rb +16 -0
- data/app/forms/decidim/verifications/id_documents/information_form.rb +12 -1
- data/app/forms/decidim/verifications/id_documents/upload_form.rb +2 -1
- data/app/forms/decidim/verifications/sms/confirmation_form.rb +19 -0
- data/app/forms/decidim/verifications/sms/mobile_phone_form.rb +59 -0
- data/app/views/decidim/verifications/id_documents/admin/config/edit.html.erb +26 -0
- data/app/views/decidim/verifications/id_documents/admin/confirmations/new.html.erb +1 -0
- data/app/views/decidim/verifications/id_documents/admin/offline_confirmations/new.html.erb +24 -0
- data/app/views/decidim/verifications/id_documents/admin/pending_authorizations/index.html.erb +3 -1
- data/app/views/decidim/verifications/id_documents/authorizations/_form.html.erb +17 -0
- data/app/views/decidim/verifications/id_documents/authorizations/choose.html.erb +21 -0
- data/app/views/decidim/verifications/id_documents/authorizations/edit.html.erb +14 -23
- data/app/views/decidim/verifications/id_documents/authorizations/new.html.erb +6 -13
- data/app/views/decidim/verifications/sms/authorizations/edit.html.erb +27 -0
- data/app/views/decidim/verifications/sms/authorizations/new.html.erb +27 -0
- data/config/locales/ca.yml +51 -1
- data/config/locales/de.yml +50 -0
- data/config/locales/en.yml +51 -1
- data/config/locales/es-PY.yml +50 -0
- data/config/locales/es.yml +51 -1
- data/config/locales/eu.yml +50 -0
- data/config/locales/fi-pl.yml +51 -1
- data/config/locales/fi.yml +51 -1
- data/config/locales/fr.yml +50 -0
- data/config/locales/gl.yml +50 -0
- data/config/locales/hu.yml +50 -0
- data/config/locales/id-ID.yml +51 -1
- data/config/locales/it.yml +50 -0
- data/config/locales/nl.yml +50 -0
- data/config/locales/pl.yml +50 -0
- data/config/locales/pt-BR.yml +50 -0
- data/config/locales/pt.yml +50 -0
- data/config/locales/sv.yml +50 -0
- data/config/locales/tr-TR.yml +51 -1
- data/lib/decidim/verifications.rb +1 -0
- data/lib/decidim/verifications/id_documents/admin_engine.rb +3 -0
- data/lib/decidim/verifications/id_documents/engine.rb +6 -2
- data/lib/decidim/verifications/sms.rb +4 -0
- data/lib/decidim/verifications/sms/engine.rb +29 -0
- data/lib/decidim/verifications/sms/example_gateway.rb +21 -0
- data/lib/decidim/verifications/version.rb +1 -1
- metadata +27 -9
data/config/locales/hu.yml
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
hu:
|
2
2
|
activemodel:
|
3
3
|
attributes:
|
4
|
+
config:
|
5
|
+
available_methods: Elérhető módszerek
|
6
|
+
offline: Offline
|
7
|
+
offline_explanation: Az offline ellenőrzésre vonatkozó utasítások
|
8
|
+
online: Online
|
4
9
|
id_document_information:
|
5
10
|
document_number: Dokumentum száma (betűvel)
|
6
11
|
document_type: A dokumentum típusa
|
@@ -9,6 +14,8 @@ hu:
|
|
9
14
|
document_type: Dokumentumod típusa
|
10
15
|
user: Felhasználó
|
11
16
|
verification_attachment: Dokumentumod szkennelt példánya
|
17
|
+
offline_confirmation:
|
18
|
+
email: Felhasználói e-mail
|
12
19
|
postal_letter_address:
|
13
20
|
full_address: Teljes lakcím
|
14
21
|
postal_letter_confirmation:
|
@@ -20,6 +27,11 @@ hu:
|
|
20
27
|
admin:
|
21
28
|
menu:
|
22
29
|
authorization_workflows: Ellenőrzések
|
30
|
+
admin_log:
|
31
|
+
organization:
|
32
|
+
update_id_documents_config: "%{user_name} frissítette az azonosító dokumentumok ellenőrzési konfigurációját"
|
33
|
+
user:
|
34
|
+
grant_id_documents_offline_verification: "%{user_name} ellenőrzött %{resource_name} egy offline azonosító dokumentum ellenőrzésével"
|
23
35
|
authorization_handlers:
|
24
36
|
admin:
|
25
37
|
id_documents:
|
@@ -70,6 +82,13 @@ hu:
|
|
70
82
|
other: 'A részvétel %{postal_codes} irányítószámú felhasználókra korlátozódik.'
|
71
83
|
id_documents:
|
72
84
|
admin:
|
85
|
+
config:
|
86
|
+
edit:
|
87
|
+
title: Azonosító dokumentumok konfigurálása
|
88
|
+
update: frissítés
|
89
|
+
update:
|
90
|
+
error: Hiba történt a konfiguráció frissítésében.
|
91
|
+
success: A konfiguráció sikeresen frissült
|
73
92
|
confirmations:
|
74
93
|
create:
|
75
94
|
error: Az ellenőrzés nem sikerült. Próbáld újra vagy utasítsd el az ellenőrzést, így a felhasználó kijavíthatja
|
@@ -78,19 +97,36 @@ hu:
|
|
78
97
|
introduce_user_data: Add meg a képen látható adatokat
|
79
98
|
reject: Elutasít
|
80
99
|
verify: Ellenőrzés
|
100
|
+
offline_confirmations:
|
101
|
+
create:
|
102
|
+
error: Az ellenőrzés nem egyezik. Próbálja újra vagy mondja meg a felhasználót, hogy módosítsa azt
|
103
|
+
success: A felhasználó sikeresen ellenőrizte
|
104
|
+
new:
|
105
|
+
cancel: Megszünteti
|
106
|
+
introduce_user_data: Ismertesse a felhasználói e-mailt és a dokumentumadatokat
|
107
|
+
verify: Ellenőrizze
|
81
108
|
pending_authorizations:
|
82
109
|
index:
|
110
|
+
config: config
|
111
|
+
offline_verification: Offline ellenőrzés
|
83
112
|
title: Folyamatban lévő ellenőrzések
|
84
113
|
verification_number: 'Ellenőrzés #%{n}'
|
85
114
|
rejections:
|
86
115
|
create:
|
87
116
|
success: Ellenőrzés elutasítva. A felhasználónak módosítania kell dokumentumain
|
88
117
|
authorizations:
|
118
|
+
choose:
|
119
|
+
choose_a_type: "Kérjük, adja meg, hogy miként szeretné ellenőrizni:"
|
120
|
+
offline: Offline
|
121
|
+
online: Online
|
122
|
+
title: Ellenőrizze magát személyazonosító okmányával
|
89
123
|
create:
|
90
124
|
error: Hiba történt a dokumentum feltöltése során
|
91
125
|
success: Dokumentum feltöltése sikeres
|
92
126
|
edit:
|
93
127
|
being_reviewed: Megvizsgáljuk a dokumentumokat. Hamarosan jelentkezünk
|
128
|
+
offline: Az offline ellenőrzés használata
|
129
|
+
online: Online ellenőrzés használatával
|
94
130
|
rejection_clarity: Győződj meg, hogy az információk jól láthatóak a feltöltött képen
|
95
131
|
rejection_correctness: Győződjön meg a megadott adatok helyességéről
|
96
132
|
rejection_notice: Hiba történt az ellenőrzés során. Kérlek próbáld újra
|
@@ -133,6 +169,20 @@ hu:
|
|
133
169
|
update:
|
134
170
|
error: Az ellenőrző kód nem egyezik a miénkkel. Kérlek, nézd át mégegyszer az elküldött levelet
|
135
171
|
success: Gratulálunk. Az ellenőrzésed sikeres volt
|
172
|
+
sms:
|
173
|
+
authorizations:
|
174
|
+
create:
|
175
|
+
error: Probléma volt a kéréssel
|
176
|
+
success: Kösz! SMS-t küldtünk telefonjára.
|
177
|
+
edit:
|
178
|
+
send: megerősít
|
179
|
+
title: Vigye be a kapott ellenőrző kódot
|
180
|
+
new:
|
181
|
+
send: Küldj nekem egy SMS-t
|
182
|
+
title: Kérjen ellenőrző kódot
|
183
|
+
update:
|
184
|
+
error: Az ellenőrző kód nem egyezik a miénk. Kérjük, ellenőrizze az SMS-t, amit elküldtek.
|
185
|
+
success: Gratulálunk. Sikeresen ellenőrizte.
|
136
186
|
errors:
|
137
187
|
messages:
|
138
188
|
uppercase_only_letters_numbers: kizárólag nagybetűt és/vagy számokat használhatsz
|
data/config/locales/id-ID.yml
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
id:
|
2
2
|
activemodel:
|
3
3
|
attributes:
|
4
|
+
config:
|
5
|
+
available_methods: Metode yang tersedia
|
6
|
+
offline: Offline
|
7
|
+
offline_explanation: Petunjuk untuk verifikasi offline
|
8
|
+
online: On line
|
4
9
|
id_document_information:
|
5
10
|
document_number: Nomor dokumen (dengan huruf)
|
6
11
|
document_type: Jenis dokumen
|
@@ -9,6 +14,8 @@ id:
|
|
9
14
|
document_type: Jenis dokumen Anda
|
10
15
|
user: Pengguna
|
11
16
|
verification_attachment: Salinan hasil pindaian dokumen Anda
|
17
|
+
offline_confirmation:
|
18
|
+
email: Email pengguna
|
12
19
|
postal_letter_address:
|
13
20
|
full_address: Alamat lengkap
|
14
21
|
postal_letter_confirmation:
|
@@ -20,6 +27,11 @@ id:
|
|
20
27
|
admin:
|
21
28
|
menu:
|
22
29
|
authorization_workflows: Verifikasi
|
30
|
+
admin_log:
|
31
|
+
organization:
|
32
|
+
update_id_documents_config: "%{user_name} memperbarui konfigurasi verifikasi Dokumen Identitas"
|
33
|
+
user:
|
34
|
+
grant_id_documents_offline_verification: "%{user_name} diverifikasi %{resource_name} menggunakan verifikasi Dokumen Identitas offline"
|
23
35
|
authorization_handlers:
|
24
36
|
admin:
|
25
37
|
id_documents:
|
@@ -69,6 +81,13 @@ id:
|
|
69
81
|
other: 'Partisipasi dibatasi untuk pengguna dengan salah satu kode pos berikut: %{postal_codes}.'
|
70
82
|
id_documents:
|
71
83
|
admin:
|
84
|
+
config:
|
85
|
+
edit:
|
86
|
+
title: Konfigurasi dokumen identitas
|
87
|
+
update: Memperbarui
|
88
|
+
update:
|
89
|
+
error: Terjadi kesalahan saat memperbarui konfigurasi.
|
90
|
+
success: Konfigurasi berhasil diperbarui
|
72
91
|
confirmations:
|
73
92
|
create:
|
74
93
|
error: Verifikasi tidak cocok. Coba lagi atau tolak verifikasi sehingga pengguna dapat mengubahnya
|
@@ -77,19 +96,36 @@ id:
|
|
77
96
|
introduce_user_data: Perkenalkan data dalam gambar
|
78
97
|
reject: Menolak
|
79
98
|
verify: Memeriksa
|
99
|
+
offline_confirmations:
|
100
|
+
create:
|
101
|
+
error: Verifikasi tidak cocok. Coba lagi atau beri tahu pengguna untuk mengubahnya
|
102
|
+
success: Pengguna berhasil diverifikasi
|
103
|
+
new:
|
104
|
+
cancel: Membatalkan
|
105
|
+
introduce_user_data: Perkenalkan email pengguna dan data dokumen
|
106
|
+
verify: Memeriksa
|
80
107
|
pending_authorizations:
|
81
108
|
index:
|
82
|
-
|
109
|
+
config: Config
|
110
|
+
offline_verification: Verifikasi offline
|
111
|
+
title: Verifikasi online yang tertunda
|
83
112
|
verification_number: 'Verifikasi #%{n}'
|
84
113
|
rejections:
|
85
114
|
create:
|
86
115
|
success: Verifikasi ditolak. Pengguna akan diminta untuk mengubah dokumennya
|
87
116
|
authorizations:
|
117
|
+
choose:
|
118
|
+
choose_a_type: "Silakan pilih bagaimana Anda ingin diverifikasi:"
|
119
|
+
offline: Offline
|
120
|
+
online: On line
|
121
|
+
title: Verifikasi diri Anda menggunakan dokumen identitas Anda
|
88
122
|
create:
|
89
123
|
error: Ada masalah saat mengunggah dokumen Anda
|
90
124
|
success: Dokumen berhasil diunggah
|
91
125
|
edit:
|
92
126
|
being_reviewed: Kami sedang meninjau dokumen Anda. Anda akan segera diverifikasi
|
127
|
+
offline: Gunakan verifikasi offline
|
128
|
+
online: Gunakan verifikasi online
|
93
129
|
rejection_clarity: Pastikan informasinya terlihat jelas di gambar yang diunggah
|
94
130
|
rejection_correctness: Pastikan informasi yang dimasukkan sudah benar
|
95
131
|
rejection_notice: Ada masalah dengan verifikasi Anda. Silakan coba lagi
|
@@ -132,6 +168,20 @@ id:
|
|
132
168
|
update:
|
133
169
|
error: Kode verifikasi Anda tidak sesuai dengan kami. Silakan periksa kembali surat yang kami kirimkan kepada Anda
|
134
170
|
success: Selamat. Anda telah berhasil diverifikasi
|
171
|
+
sms:
|
172
|
+
authorizations:
|
173
|
+
create:
|
174
|
+
error: Ada masalah dengan permintaan anda
|
175
|
+
success: Terima kasih! Kami telah mengirim SMS ke ponsel Anda.
|
176
|
+
edit:
|
177
|
+
send: Memastikan
|
178
|
+
title: Perkenalkan kode verifikasi yang Anda terima
|
179
|
+
new:
|
180
|
+
send: Kirimi saya SMS
|
181
|
+
title: Minta kode verifikasi Anda
|
182
|
+
update:
|
183
|
+
error: Kode verifikasi Anda tidak sesuai dengan kami. Harap periksa kembali SMS yang kami kirimkan kepada Anda.
|
184
|
+
success: Selamat. Anda telah berhasil diverifikasi.
|
135
185
|
errors:
|
136
186
|
messages:
|
137
187
|
uppercase_only_letters_numbers: harus semuanya huruf besar dan hanya berisi huruf dan / atau angka
|
data/config/locales/it.yml
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
it:
|
2
2
|
activemodel:
|
3
3
|
attributes:
|
4
|
+
config:
|
5
|
+
available_methods: Metodi disponibili
|
6
|
+
offline: disconnesso
|
7
|
+
offline_explanation: Istruzioni per la verifica offline
|
8
|
+
online: in linea
|
4
9
|
id_document_information:
|
5
10
|
document_number: Numero del documento (con lettera)
|
6
11
|
document_type: Tipo del documento
|
@@ -9,6 +14,8 @@ it:
|
|
9
14
|
document_type: Tipo del tuo documento
|
10
15
|
user: Utente
|
11
16
|
verification_attachment: Copia scannerizzata del tuo documento
|
17
|
+
offline_confirmation:
|
18
|
+
email: Email dell'utente
|
12
19
|
postal_letter_address:
|
13
20
|
full_address: Indirizzo completo
|
14
21
|
postal_letter_confirmation:
|
@@ -20,6 +27,11 @@ it:
|
|
20
27
|
admin:
|
21
28
|
menu:
|
22
29
|
authorization_workflows: Verifiche
|
30
|
+
admin_log:
|
31
|
+
organization:
|
32
|
+
update_id_documents_config: "%{user_name} aggiornato la configurazione di verifica dei documenti di identità"
|
33
|
+
user:
|
34
|
+
grant_id_documents_offline_verification: "%{user_name} verificato %{resource_name} utilizzando una verifica dei documenti di identità offline"
|
23
35
|
authorization_handlers:
|
24
36
|
admin:
|
25
37
|
id_documents:
|
@@ -70,6 +82,13 @@ it:
|
|
70
82
|
other: 'La partecipazione è riservata agli utenti con uno dei seguenti codici postali: %{postal_codes}.'
|
71
83
|
id_documents:
|
72
84
|
admin:
|
85
|
+
config:
|
86
|
+
edit:
|
87
|
+
title: Configurazione dei documenti di identità
|
88
|
+
update: Aggiornare
|
89
|
+
update:
|
90
|
+
error: Si è verificato un errore durante l'aggiornamento della configurazione.
|
91
|
+
success: Configurazione aggiornata con successo
|
73
92
|
confirmations:
|
74
93
|
create:
|
75
94
|
error: La verifica non corrisponde. Prova di nuovo o rifiuta la verifica in modo che l'utente possa modificarla
|
@@ -78,19 +97,36 @@ it:
|
|
78
97
|
introduce_user_data: Introduci i dati nella foto
|
79
98
|
reject: Rifiuta
|
80
99
|
verify: Verifica
|
100
|
+
offline_confirmations:
|
101
|
+
create:
|
102
|
+
error: La verifica non corrisponde. Riprovare o chiedere all'utente di modificarlo
|
103
|
+
success: Utente verificato con successo
|
104
|
+
new:
|
105
|
+
cancel: Annulla
|
106
|
+
introduce_user_data: Inserisci l'email dell'utente e i dati del documento
|
107
|
+
verify: Verificare
|
81
108
|
pending_authorizations:
|
82
109
|
index:
|
110
|
+
config: config
|
111
|
+
offline_verification: Verifica offline
|
83
112
|
title: Verifiche pendenti
|
84
113
|
verification_number: 'Verifica n. %{n}'
|
85
114
|
rejections:
|
86
115
|
create:
|
87
116
|
success: Verifica respinta. L'utente serà richiesto di modificare i suoi documenti
|
88
117
|
authorizations:
|
118
|
+
choose:
|
119
|
+
choose_a_type: "Si prega di selezionare come si desidera essere verificato:"
|
120
|
+
offline: disconnesso
|
121
|
+
online: in linea
|
122
|
+
title: Verifica te stesso usando il tuo documento di identità
|
89
123
|
create:
|
90
124
|
error: Si è verificato un problema durante il caricamento del documento
|
91
125
|
success: Documento caricato con successo
|
92
126
|
edit:
|
93
127
|
being_reviewed: Stiamo esaminando i tuoi documenti. Sarai verificato prossimamente
|
128
|
+
offline: Utilizza la verifica offline
|
129
|
+
online: Utilizza la verifica online
|
94
130
|
rejection_clarity: Assicurati che le informazioni siano chiaramente visibili nell'immagine caricata
|
95
131
|
rejection_correctness: Assicurati che le informazioni inserite siano corrette
|
96
132
|
rejection_notice: C'è stato un problema con la tua verifica. Per favore riprova
|
@@ -133,6 +169,20 @@ it:
|
|
133
169
|
update:
|
134
170
|
error: Il tuo codice di verifica non corrisponde al nostro. Per favore controlla la lettera che ti abbiamo inviato
|
135
171
|
success: Felicitazioni. Sei stato verificato con successo
|
172
|
+
sms:
|
173
|
+
authorizations:
|
174
|
+
create:
|
175
|
+
error: c'è stato un problema con la tua richiesta
|
176
|
+
success: Grazie! Abbiamo inviato un SMS al tuo telefono.
|
177
|
+
edit:
|
178
|
+
send: Confermare
|
179
|
+
title: Inserisci il codice di verifica che hai ricevuto
|
180
|
+
new:
|
181
|
+
send: Mandami un sms
|
182
|
+
title: Richiedi il tuo codice di verifica
|
183
|
+
update:
|
184
|
+
error: Il tuo codice di verifica non corrisponde al nostro. Si prega di ricontrollare l'SMS che ti abbiamo inviato.
|
185
|
+
success: Congratulazioni. Sei stato verificato con successo.
|
136
186
|
errors:
|
137
187
|
messages:
|
138
188
|
uppercase_only_letters_numbers: deve essere tutto in maiuscolo e contenere solo lettere e / o numeri
|
data/config/locales/nl.yml
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
nl:
|
2
2
|
activemodel:
|
3
3
|
attributes:
|
4
|
+
config:
|
5
|
+
available_methods: Beschikbare methoden
|
6
|
+
offline: offline
|
7
|
+
offline_explanation: Instructies voor offline verificatie
|
8
|
+
online: Online
|
4
9
|
id_document_information:
|
5
10
|
document_number: Documentnummer (met letter)
|
6
11
|
document_type: Type van het document
|
@@ -9,6 +14,8 @@ nl:
|
|
9
14
|
document_type: Type van uw document
|
10
15
|
user: Gebruiker
|
11
16
|
verification_attachment: Gescande kopie van uw document
|
17
|
+
offline_confirmation:
|
18
|
+
email: E-mailadres gebruiker
|
12
19
|
postal_letter_address:
|
13
20
|
full_address: Volledig adres
|
14
21
|
postal_letter_confirmation:
|
@@ -20,6 +27,11 @@ nl:
|
|
20
27
|
admin:
|
21
28
|
menu:
|
22
29
|
authorization_workflows: keuringen
|
30
|
+
admin_log:
|
31
|
+
organization:
|
32
|
+
update_id_documents_config: "%{user_name} heeft de verificatieconfiguratie Identity Documents bijgewerkt"
|
33
|
+
user:
|
34
|
+
grant_id_documents_offline_verification: "%{user_name} geverifieerd %{resource_name} met behulp van een offline verificatie van identiteitsdocumenten"
|
23
35
|
authorization_handlers:
|
24
36
|
admin:
|
25
37
|
id_documents:
|
@@ -70,6 +82,13 @@ nl:
|
|
70
82
|
other: 'Deelname is beperkt tot gebruikers met een van de volgende postcodes: %{postal_codes}.'
|
71
83
|
id_documents:
|
72
84
|
admin:
|
85
|
+
config:
|
86
|
+
edit:
|
87
|
+
title: Configuratie van identiteitsdocumenten
|
88
|
+
update: Bijwerken
|
89
|
+
update:
|
90
|
+
error: Er is een fout opgetreden bij het bijwerken van de configuratie.
|
91
|
+
success: Configuratie succesvol bijgewerkt
|
73
92
|
confirmations:
|
74
93
|
create:
|
75
94
|
error: Verificatie komt niet overeen. Probeer het opnieuw of verwerp de verificatie zodat de gebruiker het kan wijzigen
|
@@ -78,19 +97,36 @@ nl:
|
|
78
97
|
introduce_user_data: Introduceer de gegevens in de afbeelding
|
79
98
|
reject: Weigeren
|
80
99
|
verify: Verifiëren
|
100
|
+
offline_confirmations:
|
101
|
+
create:
|
102
|
+
error: Verificatie komt niet overeen. Probeer het opnieuw of laat de gebruiker het wijzigen
|
103
|
+
success: Gebruiker succesvol geverifieerd
|
104
|
+
new:
|
105
|
+
cancel: annuleren
|
106
|
+
introduce_user_data: Voer de e-mail van de gebruiker en de documentgegevens in
|
107
|
+
verify: Verifiëren
|
81
108
|
pending_authorizations:
|
82
109
|
index:
|
110
|
+
config: config
|
111
|
+
offline_verification: Offline verificatie
|
83
112
|
title: In afwachting van verificaties
|
84
113
|
verification_number: 'Verificatie # %{n}'
|
85
114
|
rejections:
|
86
115
|
create:
|
87
116
|
success: Verificatie gewijgerd. De gebruiker wordt gevraagd om haar documenten te wijzigen
|
88
117
|
authorizations:
|
118
|
+
choose:
|
119
|
+
choose_a_type: "Selecteer alstublieft hoe u wilt worden geverifieerd:"
|
120
|
+
offline: offline
|
121
|
+
online: Online
|
122
|
+
title: Verifieer jezelf met je identiteitsdocument
|
89
123
|
create:
|
90
124
|
error: Er is een probleem opgetreden bij het uploaden van uw document
|
91
125
|
success: Document met succes geüpload
|
92
126
|
edit:
|
93
127
|
being_reviewed: We beoordelen uw documenten. U wordt binnenkort geverifieerd
|
128
|
+
offline: Gebruik offline verificatie
|
129
|
+
online: Gebruik online verificatie
|
94
130
|
rejection_clarity: Zorg ervoor dat de informatie duidelijk zichtbaar is in de geüploade afbeelding
|
95
131
|
rejection_correctness: Zorg ervoor dat de ingevoerde informatie juist is
|
96
132
|
rejection_notice: Er is een probleem met uw verificatie. Probeer het opnieuw
|
@@ -133,6 +169,20 @@ nl:
|
|
133
169
|
update:
|
134
170
|
error: Uw verificatiecode komt niet overeen met de onze. Controleer alstublieft de brief die we u hebben gestuurd
|
135
171
|
success: Hartelijk gefeliciteerd. U bent succesvol geverifieerd
|
172
|
+
sms:
|
173
|
+
authorizations:
|
174
|
+
create:
|
175
|
+
error: Er was een probleem met je verzoek
|
176
|
+
success: Bedankt! We hebben een sms naar je telefoon gestuurd.
|
177
|
+
edit:
|
178
|
+
send: Bevestigen
|
179
|
+
title: Voer de verificatiecode in die u heeft ontvangen
|
180
|
+
new:
|
181
|
+
send: Stuur me een sms
|
182
|
+
title: Vraag uw verificatiecode aan
|
183
|
+
update:
|
184
|
+
error: Uw verificatiecode komt niet overeen met de onze. Controleer nogmaals de sms die we u hebben gestuurd.
|
185
|
+
success: Gefeliciteerd. U bent succesvol geverifieerd.
|
136
186
|
errors:
|
137
187
|
messages:
|
138
188
|
uppercase_only_letters_numbers: moet allemaal in hoofdletters zijn en alleen letters en / of cijfers bevatten
|
data/config/locales/pl.yml
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
pl:
|
2
2
|
activemodel:
|
3
3
|
attributes:
|
4
|
+
config:
|
5
|
+
available_methods: Dostępne metody
|
6
|
+
offline: Offline
|
7
|
+
offline_explanation: Instrukcje do weryfikacji offline
|
8
|
+
online: online
|
4
9
|
id_document_information:
|
5
10
|
document_number: Numer dokumentu (z literą)
|
6
11
|
document_type: Typ dokumentu
|
@@ -9,6 +14,8 @@ pl:
|
|
9
14
|
document_type: Typ twojego dokumentu
|
10
15
|
user: Użytkownik
|
11
16
|
verification_attachment: Zeskanowana kopia twojego dokumentu
|
17
|
+
offline_confirmation:
|
18
|
+
email: Adres e-mail użytkownika
|
12
19
|
postal_letter_address:
|
13
20
|
full_address: Pełny adres
|
14
21
|
postal_letter_confirmation:
|
@@ -20,6 +27,11 @@ pl:
|
|
20
27
|
admin:
|
21
28
|
menu:
|
22
29
|
authorization_workflows: Weryfikacje
|
30
|
+
admin_log:
|
31
|
+
organization:
|
32
|
+
update_id_documents_config: "%{user_name} zaktualizowano konfigurację weryfikacji dokumentów tożsamości"
|
33
|
+
user:
|
34
|
+
grant_id_documents_offline_verification: "%{user_name} zweryfikowanych %{resource_name} przy użyciu weryfikacji dokumentów tożsamości offline"
|
23
35
|
authorization_handlers:
|
24
36
|
admin:
|
25
37
|
id_documents:
|
@@ -72,6 +84,13 @@ pl:
|
|
72
84
|
other: 'Udział jest ograniczony do użytkowników, którzy mają jeden z następujących kodów pocztowych: %{postal_codes}.'
|
73
85
|
id_documents:
|
74
86
|
admin:
|
87
|
+
config:
|
88
|
+
edit:
|
89
|
+
title: Konfiguracja dokumentów tożsamości
|
90
|
+
update: Aktualizacja
|
91
|
+
update:
|
92
|
+
error: Wystąpił błąd podczas aktualizowania konfiguracji.
|
93
|
+
success: Konfiguracja została pomyślnie zaktualizowana
|
75
94
|
confirmations:
|
76
95
|
create:
|
77
96
|
error: Weryfikacja nie pasuje. Spróbuj ponownie lub odrzuć weryfikację, aby użytkownik mógł ją poprawić
|
@@ -80,19 +99,36 @@ pl:
|
|
80
99
|
introduce_user_data: Przedstaw dane w obrazie
|
81
100
|
reject: Odrzucać
|
82
101
|
verify: Zweryfikować
|
102
|
+
offline_confirmations:
|
103
|
+
create:
|
104
|
+
error: Weryfikacja nie pasuje. Spróbuj ponownie lub powiedz użytkownikowi, aby to poprawił
|
105
|
+
success: Użytkownik pomyślnie zweryfikowany
|
106
|
+
new:
|
107
|
+
cancel: Anuluj
|
108
|
+
introduce_user_data: Przedstaw adres e-mail użytkownika i dane dokumentu
|
109
|
+
verify: Zweryfikować
|
83
110
|
pending_authorizations:
|
84
111
|
index:
|
112
|
+
config: Config
|
113
|
+
offline_verification: Weryfikacja offline
|
85
114
|
title: Oczekujące weryfikacje
|
86
115
|
verification_number: 'Weryfikacja # %{n}'
|
87
116
|
rejections:
|
88
117
|
create:
|
89
118
|
success: Weryfikacja odrzucona. Użytkownik zostanie poproszony o zmianę swoich dokumentów
|
90
119
|
authorizations:
|
120
|
+
choose:
|
121
|
+
choose_a_type: "Wybierz sposób weryfikacji:"
|
122
|
+
offline: Offline
|
123
|
+
online: online
|
124
|
+
title: Zweryfikuj się, używając swojego dokumentu tożsamości
|
91
125
|
create:
|
92
126
|
error: Podczas przesyłania dokumentu wystąpił problem
|
93
127
|
success: Dokument przesłany pomyślnie
|
94
128
|
edit:
|
95
129
|
being_reviewed: Sprawdzamy Twoje dokumenty. Wkrótce zostaniesz zweryfikowany
|
130
|
+
offline: Użyj weryfikacji offline
|
131
|
+
online: Użyj weryfikacji online
|
96
132
|
rejection_clarity: Upewnij się, że informacje są wyraźnie widoczne w przesłanym obrazie
|
97
133
|
rejection_correctness: Upewnij się, że wprowadzone informacje są poprawne
|
98
134
|
rejection_notice: Wystąpił problem z Twoją weryfikacją. Proszę spróbuj ponownie
|
@@ -135,6 +171,20 @@ pl:
|
|
135
171
|
update:
|
136
172
|
error: Twój kod weryfikacyjny nie pasuje do naszego. Proszę dokładnie sprawdzić list, który do Ciebie wysłaliśmy
|
137
173
|
success: Gratulacje. Twoja weryfikacja została pomyślnie zakończona
|
174
|
+
sms:
|
175
|
+
authorizations:
|
176
|
+
create:
|
177
|
+
error: Był problem z Twoją prośbą
|
178
|
+
success: Dzięki! Wysłaliśmy SMS-a na Twój telefon.
|
179
|
+
edit:
|
180
|
+
send: Potwierdzać
|
181
|
+
title: Wprowadź kod weryfikacyjny, który otrzymałeś
|
182
|
+
new:
|
183
|
+
send: Wyślij mi SMS-a
|
184
|
+
title: Poproś o kod weryfikacyjny
|
185
|
+
update:
|
186
|
+
error: Twój kod weryfikacyjny nie pasuje do naszego. Sprawdź dokładnie SMS, który Ci wysłaliśmy.
|
187
|
+
success: Gratulacje. Twoja weryfikacja została pomyślnie zakończona.
|
138
188
|
errors:
|
139
189
|
messages:
|
140
190
|
uppercase_only_letters_numbers: musi być wielkimi literami i zawierać wyłącznie litery i / lub cyfry
|