decidim-forms 0.29.6 → 0.30.0.rc1
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/app/cells/decidim/forms/step_navigation_cell.rb +18 -5
- data/app/commands/decidim/forms/admin/update_questionnaire.rb +1 -82
- data/app/commands/decidim/forms/admin/update_questions.rb +109 -0
- data/app/commands/decidim/forms/answer_questionnaire.rb +10 -3
- data/app/controllers/decidim/forms/admin/concerns/has_questionnaire.rb +39 -3
- data/app/controllers/decidim/forms/admin/concerns/has_questionnaire_answers.rb +2 -2
- data/app/controllers/decidim/forms/concerns/has_questionnaire.rb +12 -4
- data/app/forms/decidim/forms/admin/display_condition_form.rb +1 -1
- data/app/forms/decidim/forms/admin/questionnaire_form.rb +0 -9
- data/app/forms/decidim/forms/admin/questions_form.rb +18 -0
- data/app/forms/decidim/forms/answer_choice_form.rb +5 -0
- data/app/forms/decidim/forms/answer_form.rb +1 -0
- data/app/forms/decidim/forms/questionnaire_form.rb +7 -0
- data/app/helpers/decidim/forms/admin/concerns/has_questionnaire_answers_pagination_helper.rb +1 -1
- data/app/helpers/decidim/forms/admin/concerns/has_questionnaire_answers_url_helper.rb +5 -5
- data/app/jobs/decidim/forms/export_questionnaire_answers_job.rb +5 -1
- data/app/models/decidim/forms/answer_choice.rb +0 -2
- data/app/models/decidim/forms/answer_option.rb +1 -1
- data/app/models/decidim/forms/question.rb +10 -0
- data/app/packs/entrypoints/decidim_forms.js +0 -1
- data/app/packs/entrypoints/decidim_forms_admin.js +6 -0
- data/app/packs/src/decidim/forms/admin/publish_answers_buttons.js +72 -0
- data/app/packs/src/decidim/forms/forms.js +4 -25
- data/app/presenters/decidim/forms/admin/questionnaire_participant_presenter.rb +1 -1
- data/app/presenters/decidim/forms/admin_log/question_presenter.rb +31 -0
- data/app/queries/decidim/forms/questionnaire_user_answers.rb +1 -1
- data/app/views/decidim/forms/admin/questionnaires/_answer_option_template.html.erb +1 -1
- data/app/views/decidim/forms/admin/questionnaires/_display_condition_template.html.erb +1 -1
- data/app/views/decidim/forms/admin/questionnaires/_form.html.erb +0 -89
- data/app/views/decidim/forms/admin/questionnaires/_matrix_row_template.html.erb +1 -1
- data/app/views/decidim/forms/admin/questionnaires/_question.html.erb +14 -4
- data/app/views/decidim/forms/admin/questionnaires/_questions_form.html.erb +80 -0
- data/app/views/decidim/forms/admin/questionnaires/_separator.html.erb +10 -3
- data/app/views/decidim/forms/admin/questionnaires/_title_and_description.html.erb +11 -1
- data/app/views/decidim/forms/admin/questionnaires/edit.html.erb +0 -20
- data/app/views/decidim/forms/admin/questionnaires/edit_questions.html.erb +47 -0
- data/app/views/decidim/forms/questionnaires/_answer.html.erb +1 -1
- data/app/views/decidim/forms/questionnaires/_questionnaire.html.erb +8 -1
- data/app/views/decidim/forms/questionnaires/answers/_files.html.erb +1 -1
- data/app/views/decidim/forms/questionnaires/answers/_long_answer.html.erb +1 -1
- data/app/views/decidim/forms/questionnaires/answers/_short_answer.html.erb +1 -1
- data/app/views/decidim/forms/questionnaires/answers/_sorting.html.erb +12 -6
- data/app/views/decidim/forms/questionnaires/edit.html.erb +47 -0
- data/app/views/decidim/forms/questionnaires/show.html.erb +13 -2
- data/config/assets.rb +1 -2
- data/config/locales/ar.yml +18 -1
- data/config/locales/bg.yml +42 -2
- data/config/locales/ca.yml +59 -13
- data/config/locales/cs.yml +54 -8
- data/config/locales/de.yml +56 -10
- data/config/locales/el.yml +41 -2
- data/config/locales/en.yml +51 -5
- data/config/locales/es-MX.yml +61 -15
- data/config/locales/es-PY.yml +61 -15
- data/config/locales/es.yml +60 -14
- data/config/locales/eu.yml +58 -12
- data/config/locales/fi-plain.yml +56 -10
- data/config/locales/fi.yml +56 -10
- data/config/locales/fr-CA.yml +51 -13
- data/config/locales/fr.yml +51 -13
- data/config/locales/ga-IE.yml +9 -0
- data/config/locales/gl.yml +11 -1
- data/config/locales/hu.yml +14 -1
- data/config/locales/id-ID.yml +9 -1
- data/config/locales/it.yml +31 -3
- data/config/locales/ja.yml +13 -12
- data/config/locales/lb.yml +32 -1
- data/config/locales/lt.yml +41 -2
- data/config/locales/lv.yml +15 -1
- data/config/locales/nl.yml +29 -0
- data/config/locales/no.yml +33 -0
- data/config/locales/pl.yml +43 -2
- data/config/locales/pt-BR.yml +35 -0
- data/config/locales/pt.yml +31 -0
- data/config/locales/ro-RO.yml +50 -17
- data/config/locales/ru.yml +3 -2
- data/config/locales/sk.yml +12 -1
- data/config/locales/sl.yml +7 -0
- data/config/locales/sv.yml +17 -15
- data/config/locales/tr-TR.yml +27 -0
- data/config/locales/val-ES.yml +2 -0
- data/config/locales/zh-CN.yml +27 -0
- data/config/locales/zh-TW.yml +41 -2
- data/db/migrate/20190315203056_add_session_token_to_decidim_forms_answers.rb +1 -1
- data/db/migrate/20241122142230_add_survey_answers_published_at_to_questions.rb +7 -0
- data/decidim-forms.gemspec +1 -2
- data/lib/decidim/api/answer_option_type.rb +1 -1
- data/lib/decidim/api/question_type.rb +4 -4
- data/lib/decidim/api/questionnaire_type.rb +4 -4
- data/lib/decidim/exporters/form_pdf.rb +114 -11
- data/lib/decidim/forms/download_your_data_user_answers_serializer.rb +0 -4
- data/lib/decidim/forms/test/factories.rb +2 -2
- data/lib/decidim/forms/test/shared_examples/has_questionnaire.rb +46 -7
- data/lib/decidim/forms/test/shared_examples/manage_questionnaire_answers.rb +17 -17
- data/lib/decidim/forms/test/shared_examples/manage_questionnaires/add_display_conditions.rb +19 -21
- data/lib/decidim/forms/test/shared_examples/manage_questionnaires/add_questions.rb +70 -94
- data/lib/decidim/forms/test/shared_examples/manage_questionnaires/update_display_conditions.rb +15 -18
- data/lib/decidim/forms/test/shared_examples/manage_questionnaires/update_questions.rb +115 -247
- data/lib/decidim/forms/test/shared_examples/manage_questionnaires.rb +3 -29
- data/lib/decidim/forms/version.rb +1 -1
- data/lib/decidim/forms.rb +0 -1
- metadata +18 -33
- data/app/packs/entrypoints/decidim_questionnaire_answers_pdf.js +0 -1
- data/app/packs/entrypoints/decidim_questionnaire_answers_pdf.scss +0 -1
- data/app/packs/stylesheets/decidim/forms/questionnaire-answers-pdf.scss +0 -69
- data/app/views/decidim/forms/admin/questionnaires/answers/export/_answer.html.erb +0 -31
- data/app/views/decidim/forms/admin/questionnaires/answers/export/pdf.html.erb +0 -13
- data/app/views/layouts/decidim/forms/admin/questionnaires/questionnaire_answers.html.erb +0 -12
- data/config/initializers/wicked_pdf.rb +0 -26
- data/config/locales/ca-IT.yml +0 -192
- data/lib/decidim/exporters/form_pdf_controller_helper.rb +0 -13
data/config/locales/es-PY.yml
CHANGED
|
@@ -21,25 +21,47 @@ es-PY:
|
|
|
21
21
|
body:
|
|
22
22
|
too_long: es demasiado largo
|
|
23
23
|
choices:
|
|
24
|
-
missing: no están
|
|
24
|
+
missing: no están completos
|
|
25
25
|
too_many: Puedes elegir un máximo de %{count} opciones.
|
|
26
26
|
questionnaire:
|
|
27
|
-
request_invalid:
|
|
27
|
+
request_invalid: Se ha producido un problema al procesar la solicitud. Por favor, vuelve a intentarlo.
|
|
28
28
|
decidim:
|
|
29
|
+
download_your_data:
|
|
30
|
+
help:
|
|
31
|
+
answers:
|
|
32
|
+
answer: La respuesta a la pregunta
|
|
33
|
+
id: El identificador único de la respuesta
|
|
34
|
+
question: La pregunta que se respondió
|
|
35
|
+
questionnaire: La encuesta que fue respondida
|
|
36
|
+
user: La usuaria que respondió a la encuesta
|
|
37
|
+
show:
|
|
38
|
+
answers: Exportar las respuestas
|
|
39
|
+
survey_user_answers: Respuestas de las usuarias a la encuesta
|
|
29
40
|
forms:
|
|
30
41
|
admin:
|
|
31
42
|
models:
|
|
32
43
|
components:
|
|
44
|
+
allow_answers: Permitir respuestas
|
|
45
|
+
allow_editing_answers: Permitir a las usuarias registradas editar sus respuestas en la encuesta
|
|
46
|
+
allow_unregistered: Permitir a las usuarias no registradas responder a la encuesta
|
|
47
|
+
allow_unregistered_help: Si está activo, no será necesario iniciar sesión para responder a la encuesta. Esto puede llevar a datos pobres o poco fiables y será más vulnerable a ataques automatizados. ¡Usar con precaución! Es importante que un participante pueda responder a la misma encuesta varias veces, utilizando diferentes navegadores o la función de "navegación privada" de su navegador web.
|
|
48
|
+
announcement: Aviso
|
|
49
|
+
clean_after_publish: Borrar respuestas al publicar la encuesta
|
|
33
50
|
description: Descripción
|
|
51
|
+
ends_at: Respuestas aceptadas hasta
|
|
52
|
+
ends_at_help: Dejar en blanco si no hay ninguna fecha específica
|
|
53
|
+
starts_at: Respuestas aceptadas desde
|
|
54
|
+
starts_at_help: Dejar en blanco si no hay ninguna fecha específica
|
|
34
55
|
tos: Términos y condiciones de uso
|
|
35
56
|
questionnaires:
|
|
36
57
|
actions:
|
|
37
58
|
back: Volver a las preguntas
|
|
59
|
+
publish_answers: Publicar respuestas
|
|
38
60
|
show: Mostrar las respuestas
|
|
39
61
|
answer_option:
|
|
40
62
|
answer_option: Opción de respuesta
|
|
41
63
|
free_text: Texto libre
|
|
42
|
-
remove:
|
|
64
|
+
remove: Retirar
|
|
43
65
|
statement: Declaración
|
|
44
66
|
answers:
|
|
45
67
|
actions:
|
|
@@ -55,7 +77,7 @@ es-PY:
|
|
|
55
77
|
export_response:
|
|
56
78
|
title: survey_user_answers_%{token}
|
|
57
79
|
index:
|
|
58
|
-
title: "%{total}
|
|
80
|
+
title: "%{total} total de respuestas"
|
|
59
81
|
show:
|
|
60
82
|
title: 'Respuesta #%{number}'
|
|
61
83
|
display_condition:
|
|
@@ -79,16 +101,18 @@ es-PY:
|
|
|
79
101
|
edit:
|
|
80
102
|
save: Guardar
|
|
81
103
|
title: Editar el cuestionario
|
|
82
|
-
|
|
104
|
+
edit_questions:
|
|
83
105
|
add_question: Añadir pregunta
|
|
84
106
|
add_separator: Añadir separador
|
|
85
107
|
add_title_and_description: Añadir título y descripción
|
|
86
|
-
|
|
108
|
+
save: Guardar
|
|
109
|
+
title: Preguntas
|
|
110
|
+
form:
|
|
111
|
+
add_question: Añadir pregunta
|
|
87
112
|
collapse: Contraer todas las preguntas
|
|
88
113
|
expand: Expandir todos las preguntas
|
|
89
114
|
preview: Previsualizar
|
|
90
115
|
title: Editar formulario para %{questionnaire_for}
|
|
91
|
-
unpublished_warning: El formulario no está publicado. Puedes modificar sus preguntas, pero al hacerlo se borrarán las respuestas actuales.
|
|
92
116
|
matrix_row:
|
|
93
117
|
matrix_row: Fila
|
|
94
118
|
remove: Retirar
|
|
@@ -101,24 +125,40 @@ es-PY:
|
|
|
101
125
|
any: Alguna
|
|
102
126
|
collapse: Contraer
|
|
103
127
|
description: Descripción
|
|
128
|
+
down: Abajo
|
|
104
129
|
expand: Expandir
|
|
105
130
|
question: Pregunta
|
|
106
131
|
remove: Borrar
|
|
107
132
|
statement: Declaración
|
|
133
|
+
up: Arriba
|
|
134
|
+
questions_form:
|
|
135
|
+
already_answered_warning: No puedes modificar las preguntas porque algunas participantes ya han respondido el formulario.
|
|
136
|
+
collapse: Contraer todas las preguntas
|
|
137
|
+
expand: Desplegar todas las preguntas
|
|
138
|
+
unpublished_warning: El formulario no está publicado. Puedes modificar sus preguntas, pero al hacerlo se borrarán las respuestas actuales.
|
|
139
|
+
update:
|
|
140
|
+
success: Pregunta/s añadida/s correctamente a la encuesta.
|
|
108
141
|
separator:
|
|
142
|
+
down: Bajar
|
|
109
143
|
remove: Eliminar
|
|
110
144
|
separator: Separador
|
|
145
|
+
up: Subir
|
|
111
146
|
title_and_description:
|
|
112
147
|
collapse: Contraer
|
|
113
148
|
description: Descripción
|
|
149
|
+
down: Bajar
|
|
114
150
|
expand: Expandir
|
|
115
151
|
remove: Eliminar
|
|
116
152
|
title: Título
|
|
117
153
|
title_and_description: Título y descripción
|
|
154
|
+
up: Subir
|
|
118
155
|
update:
|
|
119
156
|
invalid: Ha habido errores al guardar el cuestionario.
|
|
120
157
|
success: Formulario guardado correctamente.
|
|
121
158
|
admin_log:
|
|
159
|
+
question:
|
|
160
|
+
publish_answers: "%{user_name} publicó respuestas a las preguntas de la encuesta %{resource_name} en el espacio de participación %{space_name}"
|
|
161
|
+
unpublish_answers: "%{user_name} despublicó respuestas a las preguntas de la encuesta %{resource_name} en el espacio de participación %{space_name}"
|
|
122
162
|
questionnaire:
|
|
123
163
|
update: "%{user_name} actualizó el cuestionario %{resource_name}"
|
|
124
164
|
errors:
|
|
@@ -144,7 +184,7 @@ es-PY:
|
|
|
144
184
|
questionnaires:
|
|
145
185
|
answer:
|
|
146
186
|
invalid: Ha habido errores al responder al cuestionario.
|
|
147
|
-
max_choices_alert:
|
|
187
|
+
max_choices_alert: Hay demasiadas opciones seleccionadas
|
|
148
188
|
success: Has respondido al cuestionario con éxito.
|
|
149
189
|
question:
|
|
150
190
|
max_choices: 'Opciones máximas: %{n}'
|
|
@@ -152,8 +192,8 @@ es-PY:
|
|
|
152
192
|
answer_questionnaire:
|
|
153
193
|
already_have_an_account?: '¿Ya tienes una cuenta?'
|
|
154
194
|
are_you_new?: '¿Eres una nueva usuaria?'
|
|
155
|
-
sign_in_description: Inicia
|
|
156
|
-
sign_up_description: Crea una cuenta de participante para
|
|
195
|
+
sign_in_description: Inicia sesión para realizar la encuesta
|
|
196
|
+
sign_up_description: Crea una cuenta de participante para realizar la encuesta
|
|
157
197
|
title: Responde al cuestionario
|
|
158
198
|
current_step: Paso %{step}
|
|
159
199
|
empty: Aún no hay preguntas configuradas para este formulario.
|
|
@@ -161,6 +201,9 @@ es-PY:
|
|
|
161
201
|
questionnaire_answered:
|
|
162
202
|
body: Ya has respondido este cuestionario.
|
|
163
203
|
title: Ya has respondido
|
|
204
|
+
questionnaire_answered_edit:
|
|
205
|
+
body: 'Ya has respondido a este formulario: %{link}'
|
|
206
|
+
edit: Editar las respuestas
|
|
164
207
|
questionnaire_closed:
|
|
165
208
|
body: El cuestionario está cerrado y ya no puedes responder.
|
|
166
209
|
title: Cuestionario cerrado
|
|
@@ -175,18 +218,21 @@ es-PY:
|
|
|
175
218
|
tos_agreement: Al responder aceptas los Términos y condiciones de uso
|
|
176
219
|
step_navigation:
|
|
177
220
|
show:
|
|
178
|
-
|
|
221
|
+
are_you_sure_edit: Podrás editar tus respuestas. ¿Seguro que quieres continuar?
|
|
222
|
+
are_you_sure_edit_guest: Si quieres poder editar tus respuestas más tarde, necesitas inicies tu sesión o crees una cuenta.
|
|
223
|
+
are_you_sure_no_edit: Esta acción no se puede deshacer y no podrás editar tus respuestas. ¿Seguro que quieres continuar?
|
|
179
224
|
back: Atrás
|
|
180
225
|
continue: Continuar
|
|
226
|
+
disallowed: No puedes editar tus respuestas.
|
|
181
227
|
submit: Enviar
|
|
182
228
|
user_answers_serializer:
|
|
183
229
|
body: Respuesta
|
|
184
230
|
completion: Finalización
|
|
185
231
|
created_at: Respondido en
|
|
186
232
|
id: ID de respuesta
|
|
187
|
-
ip_hash: Hash de
|
|
233
|
+
ip_hash: Hash de Dirección IP
|
|
188
234
|
question: Pregunta
|
|
189
|
-
registered:
|
|
235
|
+
registered: Registrado
|
|
190
236
|
session_token: Identificador de usuaria
|
|
191
|
-
unregistered: No
|
|
192
|
-
user_status: Estado
|
|
237
|
+
unregistered: No registrado
|
|
238
|
+
user_status: Estado del usuario
|
data/config/locales/es.yml
CHANGED
|
@@ -21,20 +21,42 @@ es:
|
|
|
21
21
|
body:
|
|
22
22
|
too_long: es demasiado largo
|
|
23
23
|
choices:
|
|
24
|
-
missing: no están
|
|
24
|
+
missing: no están completos
|
|
25
25
|
too_many: Puedes elegir un máximo de %{count} opciones.
|
|
26
26
|
questionnaire:
|
|
27
|
-
request_invalid:
|
|
27
|
+
request_invalid: Se ha producido un problema al procesar la solicitud. Por favor, vuelve a intentarlo.
|
|
28
28
|
decidim:
|
|
29
|
+
download_your_data:
|
|
30
|
+
help:
|
|
31
|
+
answers:
|
|
32
|
+
answer: La respuesta a la pregunta
|
|
33
|
+
id: El identificador único de la respuesta
|
|
34
|
+
question: La pregunta que se respondió
|
|
35
|
+
questionnaire: La encuesta que fue respondida
|
|
36
|
+
user: La usuaria que respondió a la encuesta
|
|
37
|
+
show:
|
|
38
|
+
answers: Exportar las respuestas
|
|
39
|
+
survey_user_answers: Respuestas de las usuarias a la encuesta
|
|
29
40
|
forms:
|
|
30
41
|
admin:
|
|
31
42
|
models:
|
|
32
43
|
components:
|
|
44
|
+
allow_answers: Permitir respuestas
|
|
45
|
+
allow_editing_answers: Permitir a las usuarias registradas editar sus respuestas en la encuesta
|
|
46
|
+
allow_unregistered: Permitir a las usuarias no registradas responder a la encuesta
|
|
47
|
+
allow_unregistered_help: Si está activo, no será necesario iniciar sesión para responder a la encuesta. Esto puede llevar a datos pobres o poco fiables y será más vulnerable a ataques automatizados. ¡Usar con precaución! Es importante que un participante pueda responder a la misma encuesta varias veces, utilizando diferentes navegadores o la función de "navegación privada" de su navegador web.
|
|
48
|
+
announcement: Aviso
|
|
49
|
+
clean_after_publish: Borrar respuestas al publicar la encuesta
|
|
33
50
|
description: Descripción
|
|
51
|
+
ends_at: Respuestas aceptadas hasta
|
|
52
|
+
ends_at_help: Dejar en blanco si no hay ninguna fecha específica
|
|
53
|
+
starts_at: Respuestas aceptadas desde
|
|
54
|
+
starts_at_help: Dejar en blanco si no hay ninguna fecha específica
|
|
34
55
|
tos: Términos y condiciones de uso
|
|
35
56
|
questionnaires:
|
|
36
57
|
actions:
|
|
37
58
|
back: Volver a las preguntas
|
|
59
|
+
publish_answers: Publicar respuestas
|
|
38
60
|
show: Mostrar las respuestas
|
|
39
61
|
answer_option:
|
|
40
62
|
answer_option: Opción de respuesta
|
|
@@ -55,7 +77,7 @@ es:
|
|
|
55
77
|
export_response:
|
|
56
78
|
title: survey_user_answers_%{token}
|
|
57
79
|
index:
|
|
58
|
-
title: "%{total} respuestas
|
|
80
|
+
title: "%{total} respuestas totales"
|
|
59
81
|
show:
|
|
60
82
|
title: 'Respuesta #%{number}'
|
|
61
83
|
display_condition:
|
|
@@ -79,16 +101,18 @@ es:
|
|
|
79
101
|
edit:
|
|
80
102
|
save: Guardar
|
|
81
103
|
title: Editar el cuestionario
|
|
82
|
-
|
|
104
|
+
edit_questions:
|
|
83
105
|
add_question: Añadir pregunta
|
|
84
106
|
add_separator: Añadir separador
|
|
85
107
|
add_title_and_description: Añadir título y descripción
|
|
86
|
-
|
|
108
|
+
save: Guardar
|
|
109
|
+
title: Preguntas
|
|
110
|
+
form:
|
|
111
|
+
add_question: Añadir pregunta
|
|
87
112
|
collapse: Contraer todas las preguntas
|
|
88
113
|
expand: Expandir todos las preguntas
|
|
89
114
|
preview: Previsualizar
|
|
90
115
|
title: Editar formulario para %{questionnaire_for}
|
|
91
|
-
unpublished_warning: El formulario no está publicado. Puedes modificar sus preguntas, pero al hacerlo se borrarán las respuestas actuales.
|
|
92
116
|
matrix_row:
|
|
93
117
|
matrix_row: Fila
|
|
94
118
|
remove: Eliminar
|
|
@@ -101,24 +125,40 @@ es:
|
|
|
101
125
|
any: Alguna
|
|
102
126
|
collapse: Contraer
|
|
103
127
|
description: Descripción
|
|
128
|
+
down: Abajo
|
|
104
129
|
expand: Expandir
|
|
105
130
|
question: Pregunta
|
|
106
131
|
remove: Eliminar
|
|
107
132
|
statement: Declaración
|
|
133
|
+
up: Arriba
|
|
134
|
+
questions_form:
|
|
135
|
+
already_answered_warning: No puedes modificar las preguntas porque algunas participantes ya han respondido el formulario.
|
|
136
|
+
collapse: Contraer todas las preguntas
|
|
137
|
+
expand: Desplegar todas las preguntas
|
|
138
|
+
unpublished_warning: El formulario no está publicado. Puedes modificar sus preguntas, pero al hacerlo se borrarán las respuestas actuales.
|
|
139
|
+
update:
|
|
140
|
+
success: Pregunta/s añadida/s correctamente a la encuesta.
|
|
108
141
|
separator:
|
|
142
|
+
down: Bajar
|
|
109
143
|
remove: Eliminar
|
|
110
144
|
separator: Separador
|
|
145
|
+
up: Subir
|
|
111
146
|
title_and_description:
|
|
112
147
|
collapse: Contraer
|
|
113
148
|
description: Descripción
|
|
149
|
+
down: Bajar
|
|
114
150
|
expand: Expandir
|
|
115
151
|
remove: Eliminar
|
|
116
152
|
title: Título
|
|
117
153
|
title_and_description: Título y descripción
|
|
154
|
+
up: Subir
|
|
118
155
|
update:
|
|
119
156
|
invalid: Se ha producido un error al guardar el formulario.
|
|
120
157
|
success: Formulario guardado correctamente.
|
|
121
158
|
admin_log:
|
|
159
|
+
question:
|
|
160
|
+
publish_answers: "%{user_name} publicó respuestas a las preguntas de la encuesta %{resource_name} en el espacio de participación %{space_name}"
|
|
161
|
+
unpublish_answers: "%{user_name} despublicó respuestas a las preguntas de la encuesta %{resource_name} en el espacio de participación %{space_name}"
|
|
122
162
|
questionnaire:
|
|
123
163
|
update: "%{user_name} actualizó el cuestionario %{resource_name}"
|
|
124
164
|
errors:
|
|
@@ -144,7 +184,7 @@ es:
|
|
|
144
184
|
questionnaires:
|
|
145
185
|
answer:
|
|
146
186
|
invalid: Se ha producido un error al responder el formulario.
|
|
147
|
-
max_choices_alert:
|
|
187
|
+
max_choices_alert: Hay demasiadas opciones seleccionadas
|
|
148
188
|
success: Has respondido al formulario correctamente.
|
|
149
189
|
question:
|
|
150
190
|
max_choices: 'Opciones máximas: %{n}'
|
|
@@ -152,8 +192,8 @@ es:
|
|
|
152
192
|
answer_questionnaire:
|
|
153
193
|
already_have_an_account?: '¿Ya tienes una cuenta?'
|
|
154
194
|
are_you_new?: '¿Eres una nueva usuaria?'
|
|
155
|
-
sign_in_description: Inicia
|
|
156
|
-
sign_up_description: Crea una cuenta de participante para
|
|
195
|
+
sign_in_description: Inicia sesión para realizar la encuesta
|
|
196
|
+
sign_up_description: Crea una cuenta de participante para realizar la encuesta
|
|
157
197
|
title: Responde el formulario
|
|
158
198
|
current_step: Paso %{step}
|
|
159
199
|
empty: Aún no hay preguntas configuradas para este formulario.
|
|
@@ -161,6 +201,9 @@ es:
|
|
|
161
201
|
questionnaire_answered:
|
|
162
202
|
body: Ya has respondido a este formulario.
|
|
163
203
|
title: Ya has respondido
|
|
204
|
+
questionnaire_answered_edit:
|
|
205
|
+
body: 'Ya has respondido a este formulario: %{link}'
|
|
206
|
+
edit: Editar las respuestas
|
|
164
207
|
questionnaire_closed:
|
|
165
208
|
body: El formulario está cerrado y no puedes responder.
|
|
166
209
|
title: Formulario cerrado
|
|
@@ -175,18 +218,21 @@ es:
|
|
|
175
218
|
tos_agreement: Al participar aceptas los Términos y condiciones de uso
|
|
176
219
|
step_navigation:
|
|
177
220
|
show:
|
|
178
|
-
|
|
221
|
+
are_you_sure_edit: Podrás editar tus respuestas. ¿Seguro que quieres continuar?
|
|
222
|
+
are_you_sure_edit_guest: Si quieres poder editar tus respuestas más tarde, necesitas inicies tu sesión o crees una cuenta.
|
|
223
|
+
are_you_sure_no_edit: Esta acción no se puede deshacer y no podrás editar tus respuestas. ¿Seguro que quieres continuar?
|
|
179
224
|
back: Atrás
|
|
180
225
|
continue: Continuar
|
|
226
|
+
disallowed: No puedes editar tus respuestas.
|
|
181
227
|
submit: Enviar respuestas
|
|
182
228
|
user_answers_serializer:
|
|
183
229
|
body: Respuesta
|
|
184
230
|
completion: Finalización
|
|
185
231
|
created_at: Respondido el
|
|
186
232
|
id: Identificador de respuesta
|
|
187
|
-
ip_hash: Hash de
|
|
233
|
+
ip_hash: Hash de Dirección IP
|
|
188
234
|
question: Pregunta
|
|
189
|
-
registered:
|
|
235
|
+
registered: Registrado
|
|
190
236
|
session_token: Identificador de usuaria
|
|
191
|
-
unregistered: No
|
|
192
|
-
user_status: Estado
|
|
237
|
+
unregistered: No registrado
|
|
238
|
+
user_status: Estado del usuario
|
data/config/locales/eu.yml
CHANGED
|
@@ -10,31 +10,53 @@ eu:
|
|
|
10
10
|
max_choices: Gehieneko aukera kopurua
|
|
11
11
|
question_type: Mota
|
|
12
12
|
questionnaire_question:
|
|
13
|
-
mandatory:
|
|
13
|
+
mandatory: Derrigorrezkoa
|
|
14
14
|
max_characters: Karaktereen muga (utzi 0 mugarik ez badago)
|
|
15
15
|
errors:
|
|
16
16
|
models:
|
|
17
17
|
answer:
|
|
18
18
|
attributes:
|
|
19
19
|
add_documents:
|
|
20
|
-
needs_to_be_reattached:
|
|
20
|
+
needs_to_be_reattached: Fitxategia berriro erantsi behar da
|
|
21
21
|
body:
|
|
22
22
|
too_long: luzeegia da
|
|
23
23
|
choices:
|
|
24
24
|
missing: ez dira osatu
|
|
25
25
|
too_many: Gehienez, %{count} aukeratu ahal duzu.
|
|
26
26
|
questionnaire:
|
|
27
|
-
request_invalid:
|
|
27
|
+
request_invalid: Arazo bat izan da eskaera kudeatzean. Mesedez, saiatu berriro.
|
|
28
28
|
decidim:
|
|
29
|
+
download_your_data:
|
|
30
|
+
help:
|
|
31
|
+
answers:
|
|
32
|
+
answer: Galderaren erantzuna
|
|
33
|
+
id: Erantzunaren identifikatzaile bakarra
|
|
34
|
+
question: Erantzun zen galdera
|
|
35
|
+
questionnaire: Erantzun zen galdetegia
|
|
36
|
+
user: Inkesta erantzun du parte-hartzailea
|
|
37
|
+
show:
|
|
38
|
+
answers: Esportatu erantzunak
|
|
39
|
+
survey_user_answers: Inkesta parte-hartzaile erantzunak
|
|
29
40
|
forms:
|
|
30
41
|
admin:
|
|
31
42
|
models:
|
|
32
43
|
components:
|
|
44
|
+
allow_answers: Baimendu erantzunak
|
|
45
|
+
allow_editing_answers: Eman aukera erregistratutako parte-hartzaileei inkestako erantzunak editatzeko
|
|
46
|
+
allow_unregistered: Baimentzea erregistratu gabeko parte-hartzaileek inkesta erantzutea
|
|
47
|
+
allow_unregistered_help: Aktibatuta badago ez da beharrezkoa saioa hastea inkesta erantzuteko. Honen ondorioz datu eskas edo fidagarritasun gutxikoak bildu litezke. Kontuz erabili! Izan ere, parte-hartzaile berak hainbat aldiz erantzun litzake nabigatzaile desberdinetatik edo "nabigazio pribatuaren" aukera erabiliz.
|
|
48
|
+
announcement: Oharra
|
|
49
|
+
clean_after_publish: Ezabatu erantzunak inkesta argitaratzean
|
|
33
50
|
description: Deskribapena
|
|
51
|
+
ends_at: Erantzunak noiz arte onartuta
|
|
52
|
+
ends_at_help: Utzi zuriz data zehatzik ez badago
|
|
53
|
+
starts_at: Erantzunak noiztik onartuak
|
|
54
|
+
starts_at_help: Utzi zuriz data zehatzik ez badago
|
|
34
55
|
tos: Zerbitzu-baldintzak
|
|
35
56
|
questionnaires:
|
|
36
57
|
actions:
|
|
37
58
|
back: Itzuli galderetara
|
|
59
|
+
publish_answers: Argitaratu erantzunak
|
|
38
60
|
show: Erakutsi erantzunak
|
|
39
61
|
answer_option:
|
|
40
62
|
answer_option: Erantzun aukera
|
|
@@ -55,7 +77,7 @@ eu:
|
|
|
55
77
|
export_response:
|
|
56
78
|
title: survey_user_answers_%{token}
|
|
57
79
|
index:
|
|
58
|
-
title: "Guztira
|
|
80
|
+
title: "Guztira %{total} erantzun"
|
|
59
81
|
show:
|
|
60
82
|
title: '#%{number} erantzun'
|
|
61
83
|
display_condition:
|
|
@@ -78,17 +100,19 @@ eu:
|
|
|
78
100
|
select_condition_type: Hautatu baldintza mota bat
|
|
79
101
|
edit:
|
|
80
102
|
save: Gorde
|
|
81
|
-
title:
|
|
82
|
-
|
|
103
|
+
title: Editatu galdetegia
|
|
104
|
+
edit_questions:
|
|
83
105
|
add_question: Gehitu galdera
|
|
84
106
|
add_separator: Gehitu banatzailea
|
|
85
107
|
add_title_and_description: Gehitu izenburua eta deskribapena
|
|
86
|
-
|
|
108
|
+
save: Gorde
|
|
109
|
+
title: Galderak
|
|
110
|
+
form:
|
|
111
|
+
add_question: Gehitu galdera
|
|
87
112
|
collapse: Bildu galdera guztiak
|
|
88
113
|
expand: Zabaldu galdera guztiak
|
|
89
114
|
preview: Aurreikusi
|
|
90
115
|
title: Editatu galdetegia honetarako %{questionnaire_for}
|
|
91
|
-
unpublished_warning: Galdetegia ez dago argitaratuta. Galderak alda ditzakezu, baina eginez gero, oraingo erantzunak ezabatuko dituzu.
|
|
92
116
|
matrix_row:
|
|
93
117
|
matrix_row: Errenkada
|
|
94
118
|
remove: Kendu
|
|
@@ -101,29 +125,45 @@ eu:
|
|
|
101
125
|
any: Edozein
|
|
102
126
|
collapse: Bildu
|
|
103
127
|
description: Deskribapena
|
|
128
|
+
down: Behera
|
|
104
129
|
expand: Zabaldu
|
|
105
130
|
question: Galdera
|
|
106
131
|
remove: Kendu
|
|
107
132
|
statement: Adierazpena
|
|
133
|
+
up: Gora
|
|
134
|
+
questions_form:
|
|
135
|
+
already_answered_warning: Formularioa parte-hartzaile batzuek erantzuten dute dagoeneko; beraz, ezin dituzu galderak aldatu.
|
|
136
|
+
collapse: Kolapsatu galdera guztiak
|
|
137
|
+
expand: Zabaldu galdera guztiak
|
|
138
|
+
unpublished_warning: Galdetegia ez dago argitaratuta. Galderak alda ditzakezu, baina eginez gero, oraingo erantzunak ezabatuko dituzu.
|
|
139
|
+
update:
|
|
140
|
+
success: Inkestaren galderak zuzen gordeta.
|
|
108
141
|
separator:
|
|
142
|
+
down: Behera
|
|
109
143
|
remove: Kendu
|
|
110
144
|
separator: Bereizlea
|
|
145
|
+
up: Gora
|
|
111
146
|
title_and_description:
|
|
112
147
|
collapse: Kolapsoa
|
|
113
148
|
description: Deskribapena
|
|
149
|
+
down: Behera
|
|
114
150
|
expand: Zabaldu
|
|
115
151
|
remove: Kendu
|
|
116
152
|
title: Izenburua
|
|
117
153
|
title_and_description: Izenburua eta deskribapena
|
|
154
|
+
up: Gora
|
|
118
155
|
update:
|
|
119
156
|
invalid: Arazo bat egon da inprimakia gordetzean.
|
|
120
157
|
success: Galdetegia zuzen gorde da.
|
|
121
158
|
admin_log:
|
|
159
|
+
question:
|
|
160
|
+
publish_answers: "%{user_name} parte-hartzaileak argitaratu du %{resource_name} inkesta %{space_name} espazioan"
|
|
161
|
+
unpublish_answers: "%{user_name} parte-hartzaileak argitaratu du %{resource_name} inkesta %{space_name} espazioan"
|
|
122
162
|
questionnaire:
|
|
123
163
|
update: "%{user_name} parte-hartzaileak %{resource_name} galdetegia eguneratu du"
|
|
124
164
|
errors:
|
|
125
165
|
answer:
|
|
126
|
-
body:
|
|
166
|
+
body: "Gorputza ezin da hutsik egon\n"
|
|
127
167
|
images:
|
|
128
168
|
dimensions: "%{width} x %{height} px"
|
|
129
169
|
processors:
|
|
@@ -144,7 +184,7 @@ eu:
|
|
|
144
184
|
questionnaires:
|
|
145
185
|
answer:
|
|
146
186
|
invalid: Akats bat gertatu da galdeketa erantzutean.
|
|
147
|
-
max_choices_alert: Aukera gehiegi hautatuta
|
|
187
|
+
max_choices_alert: Aukera gehiegi daude hautatuta
|
|
148
188
|
success: Formularioa zuzen erantzunda.
|
|
149
189
|
question:
|
|
150
190
|
max_choices: 'Gehieneko aukerak: %{n}'
|
|
@@ -161,6 +201,9 @@ eu:
|
|
|
161
201
|
questionnaire_answered:
|
|
162
202
|
body: Dagoeneko inkesta hau erantzun duzu.
|
|
163
203
|
title: Dagoeneko erantzunda
|
|
204
|
+
questionnaire_answered_edit:
|
|
205
|
+
body: Dagoeneko inkesta hau erantzun duzu.%{link}
|
|
206
|
+
edit: Editatu zure erantzunak
|
|
164
207
|
questionnaire_closed:
|
|
165
208
|
body: Galdetegia itxita dago eta ezin da erantzun.
|
|
166
209
|
title: Galdeketa itxia
|
|
@@ -175,16 +218,19 @@ eu:
|
|
|
175
218
|
tos_agreement: Parte hartzean, haren zerbitzu-baldintzak onartzen dituzu
|
|
176
219
|
step_navigation:
|
|
177
220
|
show:
|
|
178
|
-
|
|
221
|
+
are_you_sure_edit: Zure erantzunak editatu ahal izango dituzu. Ziur zaude?
|
|
222
|
+
are_you_sure_edit_guest: Erantzunak editatu nahi badituzu, orduan sartu behar zara edo kontu bat sortu behar duzu.
|
|
223
|
+
are_you_sure_no_edit: Ekintza hau ezin da desegin eta ezin izango dituzu zure erantzunak editatu. Ziur zaude?
|
|
179
224
|
back: Atzera
|
|
180
225
|
continue: Jarraitu
|
|
226
|
+
disallowed: Ezin dituzu zure erantzunak editatu.
|
|
181
227
|
submit: Bidali
|
|
182
228
|
user_answers_serializer:
|
|
183
229
|
body: Erantzuna
|
|
184
230
|
completion: Amaiera
|
|
185
231
|
created_at: Erantzunda
|
|
186
232
|
id: Erantzun IDa
|
|
187
|
-
ip_hash: IP Helbidearen
|
|
233
|
+
ip_hash: IP Helbidearen Hash
|
|
188
234
|
question: Galdera
|
|
189
235
|
registered: Erregistratuta
|
|
190
236
|
session_token: Parte-hartzailearen identifikatzailea
|