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/ca.yml
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
ca:
|
2
2
|
activemodel:
|
3
3
|
attributes:
|
4
|
+
config:
|
5
|
+
available_methods: Mètodes disponibles
|
6
|
+
offline: Fora de línia
|
7
|
+
offline_explanation: Instruccions per a la verificació fora de línia
|
8
|
+
online: En línia
|
4
9
|
id_document_information:
|
5
10
|
document_number: Número de document (amb lletra)
|
6
11
|
document_type: Tipus del document
|
@@ -9,6 +14,8 @@ ca:
|
|
9
14
|
document_type: Tipus del teu document
|
10
15
|
user: Usuari
|
11
16
|
verification_attachment: Còpia escanejada del teu document
|
17
|
+
offline_confirmation:
|
18
|
+
email: Correu electrònic d'usuari
|
12
19
|
postal_letter_address:
|
13
20
|
full_address: Adreça completa
|
14
21
|
postal_letter_confirmation:
|
@@ -20,6 +27,11 @@ ca:
|
|
20
27
|
admin:
|
21
28
|
menu:
|
22
29
|
authorization_workflows: Verificacions
|
30
|
+
admin_log:
|
31
|
+
organization:
|
32
|
+
update_id_documents_config: "%{user_name} ha actualitzat la configuració de verificació mitjançant documents d'identitat"
|
33
|
+
user:
|
34
|
+
grant_id_documents_offline_verification: "%{user_name} ha verificat %{resource_name} utilitzant la verificació presencial mitjançant documents d'identitat"
|
23
35
|
authorization_handlers:
|
24
36
|
admin:
|
25
37
|
id_documents:
|
@@ -70,6 +82,13 @@ ca:
|
|
70
82
|
other: 'La participació està restringida als usuaris amb algun dels següents codis postals: %{postal_codes}.'
|
71
83
|
id_documents:
|
72
84
|
admin:
|
85
|
+
config:
|
86
|
+
edit:
|
87
|
+
title: Configuració dels documents d'identitat
|
88
|
+
update: Actualitzar
|
89
|
+
update:
|
90
|
+
error: S'ha produït un error en actualitzar la configuració.
|
91
|
+
success: La configuració s'ha actualitzat correctament
|
73
92
|
confirmations:
|
74
93
|
create:
|
75
94
|
error: La verificació no coincideix. Torna-ho a provar o rebutja la verificació perquè l'usuari pugui modificar-la
|
@@ -78,19 +97,36 @@ ca:
|
|
78
97
|
introduce_user_data: Introdueix les dades de la imatge
|
79
98
|
reject: Rebutjar
|
80
99
|
verify: Verificar
|
100
|
+
offline_confirmations:
|
101
|
+
create:
|
102
|
+
error: La verificació no coincideix. Torna-ho a provar o digue-li a l'usuari que la modifiqui
|
103
|
+
success: S'ha verificat l'usuari correctament
|
104
|
+
new:
|
105
|
+
cancel: Cancel · lar
|
106
|
+
introduce_user_data: Introdueix el correu electrònic de l'usuari i les dades del document
|
107
|
+
verify: Verificar
|
81
108
|
pending_authorizations:
|
82
109
|
index:
|
83
|
-
|
110
|
+
config: Configuració
|
111
|
+
offline_verification: Verificació presencial
|
112
|
+
title: Verificacions online pendents
|
84
113
|
verification_number: 'Verificació #%{n}'
|
85
114
|
rejections:
|
86
115
|
create:
|
87
116
|
success: S'ha rebutjat la verificació. Es demanarà a l'usuari que modifiqui els seus documents
|
88
117
|
authorizations:
|
118
|
+
choose:
|
119
|
+
choose_a_type: "Si us plau selecciona com et vols verificar:"
|
120
|
+
offline: Presencial
|
121
|
+
online: Online
|
122
|
+
title: Verifica't utilitzant el teu document d'identitat
|
89
123
|
create:
|
90
124
|
error: S'ha produït un problema en penjar el document
|
91
125
|
success: Document penjat correctament
|
92
126
|
edit:
|
93
127
|
being_reviewed: Estem revisant els teus documents. Et verificarem aviat
|
128
|
+
offline: Utilitzar la verificació presencial
|
129
|
+
online: Utilitzar la verificació online
|
94
130
|
rejection_clarity: Assegura't que la informació sigui visible a la imatge carregada
|
95
131
|
rejection_correctness: Assegura't que la informació introduïda sigui correcta
|
96
132
|
rejection_notice: S'ha produït un problema amb la teva verificació. Siusplau torna-ho a provar
|
@@ -133,6 +169,20 @@ ca:
|
|
133
169
|
update:
|
134
170
|
error: El teu codi de verificació no coincideix amb el nostre. Si us plau, revisa la carta que t'hem enviat
|
135
171
|
success: Felicitats. T'has verificat correctament
|
172
|
+
sms:
|
173
|
+
authorizations:
|
174
|
+
create:
|
175
|
+
error: S'ha produït un problema amb la teva sol·licitud
|
176
|
+
success: Gràcies! Hem enviat un SMS al teu telèfon.
|
177
|
+
edit:
|
178
|
+
send: Confirmar
|
179
|
+
title: Introdueix el codi de verificació que has rebut
|
180
|
+
new:
|
181
|
+
send: Envia'm un SMS
|
182
|
+
title: Sol·licita el teu codi de verificació
|
183
|
+
update:
|
184
|
+
error: El codi de verificació que has introduït no coincideix amb el nostre. Si us plau, revisa el SMS que t'hem enviat.
|
185
|
+
success: Felicitats. T'has verificat correctament.
|
136
186
|
errors:
|
137
187
|
messages:
|
138
188
|
uppercase_only_letters_numbers: ha d'estar en majúscules i contenir lletres i/o nombres
|
data/config/locales/de.yml
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
de:
|
2
2
|
activemodel:
|
3
3
|
attributes:
|
4
|
+
config:
|
5
|
+
available_methods: Verfügbare Methoden
|
6
|
+
offline: Offline
|
7
|
+
offline_explanation: Anweisungen zur Offline-Verifizierung
|
8
|
+
online: Online
|
4
9
|
id_document_information:
|
5
10
|
document_number: Dokumentennummer (mit Buchstaben)
|
6
11
|
document_type: Art des Dokuments
|
@@ -9,6 +14,8 @@ de:
|
|
9
14
|
document_type: Art Ihres Dokuments
|
10
15
|
user: Benutzer
|
11
16
|
verification_attachment: Gescannte Kopie Ihres Dokuments
|
17
|
+
offline_confirmation:
|
18
|
+
email: Benutzer Email
|
12
19
|
postal_letter_address:
|
13
20
|
full_address: Vollständige Adresse
|
14
21
|
postal_letter_confirmation:
|
@@ -20,6 +27,11 @@ de:
|
|
20
27
|
admin:
|
21
28
|
menu:
|
22
29
|
authorization_workflows: Überprüfungen
|
30
|
+
admin_log:
|
31
|
+
organization:
|
32
|
+
update_id_documents_config: "%{user_name} hat die Überprüfungskonfiguration für Identitätsdokumente aktualisiert"
|
33
|
+
user:
|
34
|
+
grant_id_documents_offline_verification: "%{user_name} verifiziert %{resource_name} über eine Offline-Verifizierung von Identitätsdokumenten"
|
23
35
|
authorization_handlers:
|
24
36
|
admin:
|
25
37
|
id_documents:
|
@@ -70,6 +82,13 @@ de:
|
|
70
82
|
other: 'Die Teilnahme ist auf Benutzer mit einer der folgenden Postleitzahlen beschränkt: %{postal_codes}.'
|
71
83
|
id_documents:
|
72
84
|
admin:
|
85
|
+
config:
|
86
|
+
edit:
|
87
|
+
title: Konfiguration der Identitätsdokumente
|
88
|
+
update: Aktualisieren
|
89
|
+
update:
|
90
|
+
error: Beim Aktualisieren der Konfiguration ist ein Fehler aufgetreten.
|
91
|
+
success: Konfiguration erfolgreich aktualisiert
|
73
92
|
confirmations:
|
74
93
|
create:
|
75
94
|
error: Überprüfung stimmt nicht überein. Versuchen Sie es erneut oder lehnen Sie die Überprüfung ab, damit der Benutzer sie ändern kann
|
@@ -78,19 +97,36 @@ de:
|
|
78
97
|
introduce_user_data: Stellen Sie die Daten in das Bild ein
|
79
98
|
reject: Ablehnen
|
80
99
|
verify: Überprüfen
|
100
|
+
offline_confirmations:
|
101
|
+
create:
|
102
|
+
error: Die Überprüfung stimmt nicht überein. Versuchen Sie es erneut oder teilen Sie dem Benutzer mit, es zu ändern
|
103
|
+
success: Benutzer erfolgreich verifiziert
|
104
|
+
new:
|
105
|
+
cancel: Stornieren
|
106
|
+
introduce_user_data: Geben Sie die Benutzer-E-Mail und die Dokumentdaten ein
|
107
|
+
verify: Überprüfen
|
81
108
|
pending_authorizations:
|
82
109
|
index:
|
110
|
+
config: Konfig
|
111
|
+
offline_verification: Offline-Überprüfung
|
83
112
|
title: Ausstehende Überprüfungen
|
84
113
|
verification_number: 'Überprüfung #%{n}'
|
85
114
|
rejections:
|
86
115
|
create:
|
87
116
|
success: Überprüfung abgelehnt Benutzer wird aufgefordert, ihre Dokumente zu ändern
|
88
117
|
authorizations:
|
118
|
+
choose:
|
119
|
+
choose_a_type: "Bitte wählen Sie aus, wie Sie verifiziert werden möchten:"
|
120
|
+
offline: Offline
|
121
|
+
online: Online
|
122
|
+
title: Überprüfen Sie sich anhand Ihres Ausweisdokuments
|
89
123
|
create:
|
90
124
|
error: Beim Hochladen Ihres Dokuments ist ein Problem aufgetreten
|
91
125
|
success: Dokument erfolgreich hochgeladen
|
92
126
|
edit:
|
93
127
|
being_reviewed: Wir überprüfen Ihre Dokumente. Sie werden in Kürze bestätigt
|
128
|
+
offline: Offline-Bestätigung verwenden
|
129
|
+
online: Online-Bestätigung verwenden
|
94
130
|
rejection_clarity: Stellen Sie sicher, dass die Informationen im hochgeladenen Bild deutlich sichtbar sind
|
95
131
|
rejection_correctness: Stellen Sie sicher, dass die eingegebenen Informationen korrekt sind
|
96
132
|
rejection_notice: Bei der Überprüfung ist ein Problem aufgetreten. Bitte versuche es erneut
|
@@ -133,6 +169,20 @@ de:
|
|
133
169
|
update:
|
134
170
|
error: Ihr Bestätigungscode stimmt nicht mit unserem überein. Bitte überprüfen Sie den Brief, den wir Ihnen geschickt haben
|
135
171
|
success: Herzliche Glückwünsche. Sie wurden erfolgreich verifiziert
|
172
|
+
sms:
|
173
|
+
authorizations:
|
174
|
+
create:
|
175
|
+
error: Es gab ein Problem mit ihrer Anfrage
|
176
|
+
success: Vielen Dank! Wir haben eine SMS an Ihr Telefon gesendet.
|
177
|
+
edit:
|
178
|
+
send: Bestätigen
|
179
|
+
title: Geben Sie den Bestätigungscode ein, den Sie erhalten haben
|
180
|
+
new:
|
181
|
+
send: Senden Sie mir eine SMS
|
182
|
+
title: Fordern Sie Ihren Bestätigungscode an
|
183
|
+
update:
|
184
|
+
error: Ihr Bestätigungscode stimmt nicht mit unserem überein. Bitte überprüfen Sie die SMS, die wir Ihnen gesendet haben.
|
185
|
+
success: Herzliche Glückwünsche. Sie wurden erfolgreich verifiziert.
|
136
186
|
errors:
|
137
187
|
messages:
|
138
188
|
uppercase_only_letters_numbers: muss groß geschrieben sein und darf nur Buchstaben und / oder Zahlen enthalten
|
data/config/locales/en.yml
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
en:
|
2
2
|
activemodel:
|
3
3
|
attributes:
|
4
|
+
config:
|
5
|
+
available_methods: Available methods
|
6
|
+
offline: Offline
|
7
|
+
offline_explanation: Instructions for offline verification
|
8
|
+
online: Online
|
4
9
|
id_document_information:
|
5
10
|
document_number: Document number (with letter)
|
6
11
|
document_type: Type of the document
|
@@ -9,6 +14,8 @@ en:
|
|
9
14
|
document_type: Type of your document
|
10
15
|
user: User
|
11
16
|
verification_attachment: Scanned copy of your document
|
17
|
+
offline_confirmation:
|
18
|
+
email: User email
|
12
19
|
postal_letter_address:
|
13
20
|
full_address: Full address
|
14
21
|
postal_letter_confirmation:
|
@@ -20,6 +27,11 @@ en:
|
|
20
27
|
admin:
|
21
28
|
menu:
|
22
29
|
authorization_workflows: Verifications
|
30
|
+
admin_log:
|
31
|
+
organization:
|
32
|
+
update_id_documents_config: "%{user_name} updated the Identity Documents verification configuration"
|
33
|
+
user:
|
34
|
+
grant_id_documents_offline_verification: "%{user_name} verified %{resource_name} using an offline Identity Documents verification"
|
23
35
|
authorization_handlers:
|
24
36
|
admin:
|
25
37
|
id_documents:
|
@@ -70,6 +82,13 @@ en:
|
|
70
82
|
other: 'Participation is restricted to users with any of the following postal codes: %{postal_codes}.'
|
71
83
|
id_documents:
|
72
84
|
admin:
|
85
|
+
config:
|
86
|
+
edit:
|
87
|
+
title: Identity documents configuration
|
88
|
+
update: Update
|
89
|
+
update:
|
90
|
+
error: There was an error updating the configuration.
|
91
|
+
success: Configuration successfully updated
|
73
92
|
confirmations:
|
74
93
|
create:
|
75
94
|
error: Verification doesn't match. Try again or reject the verification so the user can amend it
|
@@ -78,19 +97,36 @@ en:
|
|
78
97
|
introduce_user_data: Introduce the data in the picture
|
79
98
|
reject: Reject
|
80
99
|
verify: Verify
|
100
|
+
offline_confirmations:
|
101
|
+
create:
|
102
|
+
error: Verification doesn't match. Try again or tell the user to amend it
|
103
|
+
success: User successfully verified
|
104
|
+
new:
|
105
|
+
cancel: Cancel
|
106
|
+
introduce_user_data: Introduce the user email and the document data
|
107
|
+
verify: Verify
|
81
108
|
pending_authorizations:
|
82
109
|
index:
|
83
|
-
|
110
|
+
config: Config
|
111
|
+
offline_verification: Offline verification
|
112
|
+
title: Pending online verifications
|
84
113
|
verification_number: 'Verification #%{n}'
|
85
114
|
rejections:
|
86
115
|
create:
|
87
116
|
success: Verification rejected. User will be prompted to amend her documents
|
88
117
|
authorizations:
|
118
|
+
choose:
|
119
|
+
choose_a_type: "Please select how you want to be verified:"
|
120
|
+
offline: Offline
|
121
|
+
online: Online
|
122
|
+
title: Verify yourself using your identity document
|
89
123
|
create:
|
90
124
|
error: There was a problem uploading your document
|
91
125
|
success: Document uploaded successfully
|
92
126
|
edit:
|
93
127
|
being_reviewed: We're reviewing your documents. You'll be verified shortly
|
128
|
+
offline: Use offline verification
|
129
|
+
online: Use online verification
|
94
130
|
rejection_clarity: Make sure the information is clearly visible in the uploaded image
|
95
131
|
rejection_correctness: Make sure the information entered is correct
|
96
132
|
rejection_notice: There was a problem with your verification. Please try again
|
@@ -133,6 +169,20 @@ en:
|
|
133
169
|
update:
|
134
170
|
error: Your verification code doesn't match ours. Please double-check the letter we sent to you
|
135
171
|
success: Congratulations. You've been successfully verified
|
172
|
+
sms:
|
173
|
+
authorizations:
|
174
|
+
create:
|
175
|
+
error: There was a problem with your request
|
176
|
+
success: Thanks! We've sent an SMS to your phone.
|
177
|
+
edit:
|
178
|
+
send: Confirm
|
179
|
+
title: Introduce the verification code you received
|
180
|
+
new:
|
181
|
+
send: Send me an SMS
|
182
|
+
title: Request your verification code
|
183
|
+
update:
|
184
|
+
error: Your verification code doesn't match ours. Please double-check the SMS we sent you.
|
185
|
+
success: Congratulations. You've been successfully verified.
|
136
186
|
errors:
|
137
187
|
messages:
|
138
188
|
uppercase_only_letters_numbers: must be all uppercase and contain only letters and/or numbers
|
data/config/locales/es-PY.yml
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
es-PY:
|
2
2
|
activemodel:
|
3
3
|
attributes:
|
4
|
+
config:
|
5
|
+
available_methods: Metodos disponibles
|
6
|
+
offline: Desconectado
|
7
|
+
offline_explanation: Instrucciones para la verificación fuera de línea
|
8
|
+
online: En línea
|
4
9
|
id_document_information:
|
5
10
|
document_number: Número de documento (con letra)
|
6
11
|
document_type: Tipo de documento
|
@@ -9,6 +14,8 @@ es-PY:
|
|
9
14
|
document_type: Tipo de tu documento
|
10
15
|
user: Usuario
|
11
16
|
verification_attachment: Copia escaneada de tu documento
|
17
|
+
offline_confirmation:
|
18
|
+
email: Email del usuario
|
12
19
|
postal_letter_address:
|
13
20
|
full_address: Dirección completa
|
14
21
|
postal_letter_confirmation:
|
@@ -20,6 +27,11 @@ es-PY:
|
|
20
27
|
admin:
|
21
28
|
menu:
|
22
29
|
authorization_workflows: Verificaciones
|
30
|
+
admin_log:
|
31
|
+
organization:
|
32
|
+
update_id_documents_config: "%{user_name} ha actualizado la configuración de verificación mediante documentos de identidad"
|
33
|
+
user:
|
34
|
+
grant_id_documents_offline_verification: "%{user_name} ha verificado %{resource_name} utilizando una verificación presencial mediante documentos de identidad"
|
23
35
|
authorization_handlers:
|
24
36
|
admin:
|
25
37
|
id_documents:
|
@@ -70,6 +82,13 @@ es-PY:
|
|
70
82
|
other: 'La participación está restringida a usuarios con cualquiera de los siguientes códigos postales: %{postal_codes}.'
|
71
83
|
id_documents:
|
72
84
|
admin:
|
85
|
+
config:
|
86
|
+
edit:
|
87
|
+
title: Configuración de documentos de identidad
|
88
|
+
update: Actualizar
|
89
|
+
update:
|
90
|
+
error: Se ha producido un error al actualizar la configuración.
|
91
|
+
success: Configuración actualizada correctamente
|
73
92
|
confirmations:
|
74
93
|
create:
|
75
94
|
error: La verificación no coincide. Inténtalo de nuevo o rechaza la verificación para que el usuario pueda modificarla
|
@@ -78,19 +97,36 @@ es-PY:
|
|
78
97
|
introduce_user_data: Introduce los datos de la imagen
|
79
98
|
reject: Rechazar
|
80
99
|
verify: Verificar
|
100
|
+
offline_confirmations:
|
101
|
+
create:
|
102
|
+
error: La verificación no coincide. Inténtalo de nuevo o dile al usuario que lo corrija
|
103
|
+
success: Usuario verificado correctamente
|
104
|
+
new:
|
105
|
+
cancel: Cancelar
|
106
|
+
introduce_user_data: Introduce el correo electrónico del usuario y los datos del documento
|
107
|
+
verify: Verificar
|
81
108
|
pending_authorizations:
|
82
109
|
index:
|
110
|
+
config: Configurar
|
111
|
+
offline_verification: Verificación presencial
|
83
112
|
title: Verificaciones pendientes
|
84
113
|
verification_number: 'Verificación #%{n}'
|
85
114
|
rejections:
|
86
115
|
create:
|
87
116
|
success: Verificación rechazada. Se le pedirá al usuario que modifique sus documentos
|
88
117
|
authorizations:
|
118
|
+
choose:
|
119
|
+
choose_a_type: "Por favor selecciona como quieres ser verificado:"
|
120
|
+
offline: Presencial
|
121
|
+
online: Online
|
122
|
+
title: Verifícate utilizando tu documento de identidad
|
89
123
|
create:
|
90
124
|
error: Hubo un problema al subir tu documento
|
91
125
|
success: El documento se ha subido correctamente
|
92
126
|
edit:
|
93
127
|
being_reviewed: Estamos revisando tus documentos. Serás verificado en breve
|
128
|
+
offline: Utiliza la verificación presencial
|
129
|
+
online: Utiliza la verificación online
|
94
130
|
rejection_clarity: Asegúrate de que la información sea claramente visible en la imagen subida
|
95
131
|
rejection_correctness: Asegúrate de que la información ingresada sea correcta
|
96
132
|
rejection_notice: Hubo un problema con tu verificación. Inténtalo de nuevo
|
@@ -133,6 +169,20 @@ es-PY:
|
|
133
169
|
update:
|
134
170
|
error: Tu código de verificación no coincide con el nuestro. Por favor, revisa la carta que te enviamos
|
135
171
|
success: Felicidades. Has sido verificado correctamente
|
172
|
+
sms:
|
173
|
+
authorizations:
|
174
|
+
create:
|
175
|
+
error: Hubo un problema con tu solicitud
|
176
|
+
success: '¡Gracias! Hemos enviado un SMS a tu teléfono.'
|
177
|
+
edit:
|
178
|
+
send: Confirmar
|
179
|
+
title: Introduce el código de verificación que has recibido
|
180
|
+
new:
|
181
|
+
send: Mándame un SMS
|
182
|
+
title: Solicita tu código de verificación
|
183
|
+
update:
|
184
|
+
error: Tu código de verificación no coincide con el nuestro. Por favor, vuelve a comprobar los SMS que te enviamos.
|
185
|
+
success: Felicidades. Has sido verificado con éxito.
|
136
186
|
errors:
|
137
187
|
messages:
|
138
188
|
uppercase_only_letters_numbers: debe ser todo en mayúsculas y contener solo letras y/o números
|
data/config/locales/es.yml
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
es:
|
2
2
|
activemodel:
|
3
3
|
attributes:
|
4
|
+
config:
|
5
|
+
available_methods: Metodos disponibles
|
6
|
+
offline: Desconectado
|
7
|
+
offline_explanation: Instrucciones para la verificación fuera de línea
|
8
|
+
online: En línea
|
4
9
|
id_document_information:
|
5
10
|
document_number: Número de documento (con letra)
|
6
11
|
document_type: Tipo de documento
|
@@ -9,6 +14,8 @@ es:
|
|
9
14
|
document_type: Tipo de tu documento
|
10
15
|
user: Usuario
|
11
16
|
verification_attachment: Copia escaneada de tu documento
|
17
|
+
offline_confirmation:
|
18
|
+
email: Email del usuario
|
12
19
|
postal_letter_address:
|
13
20
|
full_address: Dirección completa
|
14
21
|
postal_letter_confirmation:
|
@@ -20,6 +27,11 @@ es:
|
|
20
27
|
admin:
|
21
28
|
menu:
|
22
29
|
authorization_workflows: Verificaciones
|
30
|
+
admin_log:
|
31
|
+
organization:
|
32
|
+
update_id_documents_config: "%{user_name} ha actualizado la configuración de verificación mediante documentos de identidad"
|
33
|
+
user:
|
34
|
+
grant_id_documents_offline_verification: "%{user_name} ha verificado %{resource_name} utilizando una verificación presencial mediante documentos de identidad"
|
23
35
|
authorization_handlers:
|
24
36
|
admin:
|
25
37
|
id_documents:
|
@@ -70,6 +82,13 @@ es:
|
|
70
82
|
other: 'La participación está restringida a usuarios con cualquiera de los siguientes códigos postales: %{postal_codes}.'
|
71
83
|
id_documents:
|
72
84
|
admin:
|
85
|
+
config:
|
86
|
+
edit:
|
87
|
+
title: Configuración de documentos de identidad
|
88
|
+
update: Actualizar
|
89
|
+
update:
|
90
|
+
error: Se ha producido un error al actualizar la configuración.
|
91
|
+
success: Configuración actualizada correctamente
|
73
92
|
confirmations:
|
74
93
|
create:
|
75
94
|
error: La verificación no coincide. Inténtalo de nuevo o rechaza la verificación para que el usuario pueda modificarla
|
@@ -78,19 +97,36 @@ es:
|
|
78
97
|
introduce_user_data: Introduce los datos de la imagen
|
79
98
|
reject: Rechazar
|
80
99
|
verify: Verificar
|
100
|
+
offline_confirmations:
|
101
|
+
create:
|
102
|
+
error: La verificación no coincide. Inténtalo de nuevo o dile al usuario que lo corrija
|
103
|
+
success: Usuario verificado correctamente
|
104
|
+
new:
|
105
|
+
cancel: Cancelar
|
106
|
+
introduce_user_data: Introduce el correo electrónico del usuario y los datos del documento
|
107
|
+
verify: Verificar
|
81
108
|
pending_authorizations:
|
82
109
|
index:
|
83
|
-
|
110
|
+
config: Configurar
|
111
|
+
offline_verification: Verificación presencial
|
112
|
+
title: Verificaciones online pendientes
|
84
113
|
verification_number: 'Verificación #%{n}'
|
85
114
|
rejections:
|
86
115
|
create:
|
87
116
|
success: Verificación rechazada. Se le pedirá al usuario que modifique sus documentos
|
88
117
|
authorizations:
|
118
|
+
choose:
|
119
|
+
choose_a_type: "Por favor selecciona como quieres ser verificado:"
|
120
|
+
offline: Presencial
|
121
|
+
online: Online
|
122
|
+
title: Verifícate utilizando tu documento de identidad
|
89
123
|
create:
|
90
124
|
error: Hubo un problema al subir tu documento
|
91
125
|
success: El documento se ha subido correctamente
|
92
126
|
edit:
|
93
127
|
being_reviewed: Estamos revisando tus documentos. Serás verificado en breve
|
128
|
+
offline: Utiliza la verificación presencial
|
129
|
+
online: Utiliza la verificación online
|
94
130
|
rejection_clarity: Asegúrate de que la información sea claramente visible en la imagen subida
|
95
131
|
rejection_correctness: Asegúrate de que la información ingresada sea correcta
|
96
132
|
rejection_notice: Hubo un problema con tu verificación. Inténtalo de nuevo
|
@@ -133,6 +169,20 @@ es:
|
|
133
169
|
update:
|
134
170
|
error: Tu código de verificación no coincide con el nuestro. Por favor, revisa la carta que te enviamos
|
135
171
|
success: Felicidades. Has sido verificado correctamente
|
172
|
+
sms:
|
173
|
+
authorizations:
|
174
|
+
create:
|
175
|
+
error: Hubo un problema con tu solicitud
|
176
|
+
success: '¡Gracias! Hemos enviado un SMS a tu teléfono.'
|
177
|
+
edit:
|
178
|
+
send: Confirmar
|
179
|
+
title: Introduce el código de verificación que has recibido
|
180
|
+
new:
|
181
|
+
send: Mándame un SMS
|
182
|
+
title: Solicita tu código de verificación
|
183
|
+
update:
|
184
|
+
error: Tu código de verificación no coincide con el nuestro. Por favor, vuelve a comprobar los SMS que te enviamos.
|
185
|
+
success: Felicidades. Has sido verificado con éxito.
|
136
186
|
errors:
|
137
187
|
messages:
|
138
188
|
uppercase_only_letters_numbers: debe ser todo en mayúsculas y contener solo letras y/o números
|