decidim-forms 0.30.2 → 0.31.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/README.md +10 -10
- data/app/cells/decidim/forms/matrix_readonly/show.erb +1 -1
- data/app/cells/decidim/forms/matrix_readonly_cell.rb +3 -3
- data/app/cells/decidim/forms/question_readonly/show.erb +5 -5
- data/app/cells/decidim/forms/question_readonly/title_and_description.erb +3 -3
- data/app/cells/decidim/forms/response_readonly_cell.rb +9 -0
- data/app/cells/decidim/forms/step_navigation/show.erb +3 -3
- data/app/cells/decidim/forms/step_navigation_cell.rb +3 -3
- data/app/commands/decidim/forms/admin/update_questions.rb +6 -6
- data/app/commands/decidim/forms/{answer_questionnaire.rb → response_questionnaire.rb} +35 -35
- data/app/controllers/decidim/forms/admin/concerns/has_questionnaire.rb +12 -12
- data/app/controllers/decidim/forms/admin/concerns/{has_questionnaire_answers.rb → has_questionnaire_responses.rb} +23 -19
- data/app/controllers/decidim/forms/concerns/has_questionnaire.rb +38 -33
- data/app/forms/decidim/forms/admin/display_condition_form.rb +14 -14
- data/app/forms/decidim/forms/admin/question_form.rb +3 -3
- data/app/forms/decidim/forms/admin/{answer_option_form.rb → response_option_form.rb} +3 -3
- data/app/forms/decidim/forms/questionnaire_form.rb +8 -9
- data/app/forms/decidim/forms/{answer_choice_form.rb → response_choice_form.rb} +5 -5
- data/app/forms/decidim/forms/{answer_form.rb → response_form.rb} +9 -9
- data/app/helpers/decidim/forms/admin/application_helper.rb +2 -2
- data/app/helpers/decidim/forms/admin/concerns/{has_questionnaire_answers_pagination_helper.rb → has_questionnaire_responses_pagination_helper.rb} +4 -4
- data/app/helpers/decidim/forms/admin/concerns/{has_questionnaire_answers_url_helper.rb → has_questionnaire_responses_url_helper.rb} +5 -5
- data/app/helpers/decidim/forms/admin/questionnaire_responses_helper.rb +32 -0
- data/app/helpers/decidim/forms/application_helper.rb +1 -2
- data/app/jobs/decidim/forms/{export_questionnaire_answers_job.rb → export_questionnaire_responses_job.rb} +5 -5
- data/app/models/decidim/forms/display_condition.rb +20 -20
- data/app/models/decidim/forms/question.rb +14 -13
- data/app/models/decidim/forms/question_matrix_row.rb +1 -1
- data/app/models/decidim/forms/questionnaire.rb +11 -6
- data/app/models/decidim/forms/{answer.rb → response.rb} +9 -9
- data/app/models/decidim/forms/response_choice.rb +22 -0
- data/app/models/decidim/forms/{answer_option.rb → response_option.rb} +5 -5
- data/app/packs/entrypoints/decidim_forms_admin.js +3 -3
- data/app/packs/src/decidim/forms/admin/collapsible_questions.js +12 -10
- data/app/packs/src/decidim/forms/admin/forms.js +35 -35
- data/app/packs/src/decidim/forms/admin/{publish_answers_buttons.js → publish_responses_buttons.js} +12 -12
- data/app/packs/src/decidim/forms/display_conditions.component.js +12 -12
- data/app/packs/src/decidim/forms/forms.js +4 -4
- data/app/packs/stylesheets/decidim/forms/forms.scss +2 -2
- data/app/presenters/decidim/forms/admin/questionnaire_participant_presenter.rb +13 -13
- data/app/presenters/decidim/forms/admin/{questionnaire_answer_presenter.rb → questionnaire_response_presenter.rb} +15 -15
- data/app/presenters/decidim/forms/admin_log/question_presenter.rb +3 -3
- data/app/presenters/decidim/forms/{answer_option_presenter.rb → response_option_presenter.rb} +2 -2
- data/app/queries/decidim/forms/questionnaire_participant.rb +5 -5
- data/app/queries/decidim/forms/questionnaire_participants.rb +6 -6
- data/app/queries/decidim/forms/questionnaire_user_responses.rb +32 -0
- data/app/views/decidim/forms/admin/questionnaires/_display_condition.html.erb +9 -9
- data/app/views/decidim/forms/admin/questionnaires/_form.html.erb +2 -2
- data/app/views/decidim/forms/admin/questionnaires/_matrix_row.html.erb +3 -3
- data/app/views/decidim/forms/admin/questionnaires/_question.html.erb +16 -16
- data/app/views/decidim/forms/admin/questionnaires/_questions_form.html.erb +11 -10
- data/app/views/decidim/forms/admin/questionnaires/{_answer_option.html.erb → _response_option.html.erb} +7 -7
- data/app/views/decidim/forms/admin/questionnaires/_response_option_template.html.erb +7 -0
- data/app/views/decidim/forms/admin/questionnaires/_separator.html.erb +10 -7
- data/app/views/decidim/forms/admin/questionnaires/_title_and_description.html.erb +7 -7
- data/app/views/decidim/forms/admin/questionnaires/edit.html.erb +1 -1
- data/app/views/decidim/forms/admin/questionnaires/edit_questions.html.erb +8 -8
- data/app/views/decidim/forms/admin/questionnaires/responses/index.html.erb +80 -0
- data/app/views/decidim/forms/admin/questionnaires/responses/show.html.erb +43 -0
- data/app/views/decidim/forms/questionnaires/_questionnaire.html.erb +22 -26
- data/app/views/decidim/forms/questionnaires/_questionnaire_readonly.html.erb +8 -3
- data/app/views/decidim/forms/questionnaires/_response.html.erb +61 -0
- data/app/views/decidim/forms/questionnaires/edit.html.erb +2 -2
- data/app/views/decidim/forms/questionnaires/responses/_files.html.erb +1 -0
- data/app/views/decidim/forms/questionnaires/responses/_long_response.html.erb +3 -0
- data/app/views/decidim/forms/questionnaires/{answers → responses}/_matrix_multiple.html.erb +16 -15
- data/app/views/decidim/forms/questionnaires/{answers → responses}/_matrix_single.html.erb +17 -16
- data/app/views/decidim/forms/questionnaires/responses/_multiple_option.html.erb +26 -0
- data/app/views/decidim/forms/questionnaires/responses/_separator.html.erb +1 -0
- data/app/views/decidim/forms/questionnaires/responses/_short_response.html.erb +3 -0
- data/app/views/decidim/forms/questionnaires/responses/_single_option.html.erb +33 -0
- data/app/views/decidim/forms/questionnaires/responses/_sorting.html.erb +26 -0
- data/app/views/decidim/forms/questionnaires/responses/_title_and_description.html.erb +1 -0
- data/app/views/decidim/forms/questionnaires/show.html.erb +10 -10
- data/config/assets.rb +2 -2
- data/config/locales/ar.yml +0 -22
- data/config/locales/bg.yml +3 -36
- data/config/locales/ca-IT.yml +73 -73
- data/config/locales/ca.yml +73 -73
- data/config/locales/cs.yml +72 -75
- data/config/locales/de.yml +72 -72
- data/config/locales/el.yml +3 -36
- data/config/locales/en.yml +83 -83
- data/config/locales/es-MX.yml +75 -75
- data/config/locales/es-PY.yml +75 -75
- data/config/locales/es.yml +73 -73
- data/config/locales/eu.yml +71 -71
- data/config/locales/fi-plain.yml +71 -71
- data/config/locales/fi.yml +69 -69
- data/config/locales/fr-CA.yml +70 -67
- data/config/locales/fr.yml +70 -67
- data/config/locales/ga-IE.yml +0 -7
- data/config/locales/gl.yml +0 -22
- data/config/locales/hu.yml +0 -22
- data/config/locales/id-ID.yml +0 -22
- data/config/locales/it.yml +3 -40
- data/config/locales/ja.yml +80 -80
- data/config/locales/lb.yml +3 -36
- data/config/locales/lt.yml +3 -36
- data/config/locales/lv.yml +0 -22
- data/config/locales/nl.yml +3 -36
- data/config/locales/no.yml +3 -36
- data/config/locales/pl.yml +3 -36
- data/config/locales/pt-BR.yml +3 -36
- data/config/locales/pt.yml +3 -36
- data/config/locales/ro-RO.yml +22 -51
- data/config/locales/ru.yml +0 -9
- data/config/locales/sk.yml +0 -22
- data/config/locales/sl.yml +0 -5
- data/config/locales/sv.yml +82 -54
- data/config/locales/tr-TR.yml +3 -36
- data/config/locales/zh-CN.yml +3 -36
- data/config/locales/zh-TW.yml +3 -36
- data/db/migrate/20190315203056_add_session_token_to_decidim_forms_answers.rb +1 -1
- data/db/migrate/20250314150250_rename_answer_to_response_in_decidim_forms.rb +30 -0
- data/db/migrate/20250319130003_change_question_types_in_questions.rb +14 -0
- data/lib/decidim/api/question_matrix_row_type.rb +13 -0
- data/lib/decidim/api/question_type.rb +4 -3
- data/lib/decidim/api/questionnaire_type.rb +1 -0
- data/lib/decidim/api/response_option_type.rb +13 -0
- data/lib/decidim/exporters/form_pdf.rb +33 -33
- data/lib/decidim/forms/api.rb +2 -1
- data/lib/decidim/forms/{download_your_data_user_answers_serializer.rb → download_your_data_user_responses_serializer.rb} +3 -3
- data/lib/decidim/forms/engine.rb +2 -2
- data/lib/decidim/forms/test/factories.rb +24 -24
- data/lib/decidim/forms/test/shared_examples/has_questionnaire.rb +176 -176
- data/lib/decidim/forms/test/shared_examples/manage_questionnaire_responses.rb +159 -0
- data/lib/decidim/forms/test/shared_examples/manage_questionnaires/add_display_conditions.rb +19 -19
- data/lib/decidim/forms/test/shared_examples/manage_questionnaires/add_questions.rb +44 -44
- data/lib/decidim/forms/test/shared_examples/manage_questionnaires/update_display_conditions.rb +10 -10
- data/lib/decidim/forms/test/shared_examples/manage_questionnaires/update_questions.rb +18 -18
- data/lib/decidim/forms/test/shared_examples/manage_questionnaires.rb +4 -4
- data/lib/decidim/forms/test.rb +1 -1
- data/lib/decidim/forms/user_responses_serializer.rb +110 -0
- data/lib/decidim/forms/version.rb +1 -1
- data/lib/decidim/forms.rb +2 -2
- metadata +48 -45
- data/app/cells/decidim/forms/answer_readonly_cell.rb +0 -9
- data/app/helpers/decidim/forms/admin/questionnaire_answers_helper.rb +0 -30
- data/app/models/decidim/forms/answer_choice.rb +0 -22
- data/app/queries/decidim/forms/questionnaire_user_answers.rb +0 -32
- data/app/views/decidim/forms/admin/questionnaires/_answer_option_template.html.erb +0 -7
- data/app/views/decidim/forms/admin/questionnaires/answers/index.html.erb +0 -49
- data/app/views/decidim/forms/admin/questionnaires/answers/show.html.erb +0 -43
- data/app/views/decidim/forms/questionnaires/_answer.html.erb +0 -61
- data/app/views/decidim/forms/questionnaires/answers/_files.html.erb +0 -1
- data/app/views/decidim/forms/questionnaires/answers/_long_answer.html.erb +0 -3
- data/app/views/decidim/forms/questionnaires/answers/_multiple_option.html.erb +0 -25
- data/app/views/decidim/forms/questionnaires/answers/_separator.html.erb +0 -1
- data/app/views/decidim/forms/questionnaires/answers/_short_answer.html.erb +0 -3
- data/app/views/decidim/forms/questionnaires/answers/_single_option.html.erb +0 -32
- data/app/views/decidim/forms/questionnaires/answers/_sorting.html.erb +0 -26
- data/app/views/decidim/forms/questionnaires/answers/_title_and_description.html.erb +0 -1
- data/lib/decidim/api/answer_option_type.rb +0 -13
- data/lib/decidim/forms/test/shared_examples/manage_questionnaire_answers.rb +0 -149
- data/lib/decidim/forms/user_answers_serializer.rb +0 -105
- /data/app/cells/decidim/forms/{answer_readonly → response_readonly}/show.erb +0 -0
data/config/locales/es.yml
CHANGED
@@ -2,19 +2,21 @@
|
|
2
2
|
es:
|
3
3
|
activemodel:
|
4
4
|
attributes:
|
5
|
-
answer:
|
6
|
-
body: Responder
|
7
|
-
choices: Opciones
|
8
|
-
selected_choices: Opciones seleccionadas
|
9
5
|
question:
|
10
6
|
max_choices: Número máximo de opciones
|
11
7
|
question_type: Tipo
|
12
8
|
questionnaire_question:
|
13
9
|
mandatory: Obligatorio
|
14
10
|
max_characters: Límite de caracteres (dejar a 0 si no hay límite)
|
11
|
+
response:
|
12
|
+
body: Respuesta
|
13
|
+
choices: Opciones
|
14
|
+
selected_choices: Opciones seleccionadas
|
15
15
|
errors:
|
16
16
|
models:
|
17
|
-
|
17
|
+
questionnaire:
|
18
|
+
request_invalid: Se ha producido un problema al procesar la solicitud. Por favor, vuelve a intentarlo.
|
19
|
+
response:
|
18
20
|
attributes:
|
19
21
|
add_documents:
|
20
22
|
needs_to_be_reattached: Es necesario volver a adjuntar el fichero
|
@@ -23,81 +25,57 @@ es:
|
|
23
25
|
choices:
|
24
26
|
missing: no están completas
|
25
27
|
too_many: Puedes elegir un máximo de %{count} opciones.
|
26
|
-
questionnaire:
|
27
|
-
request_invalid: Se ha producido un problema al procesar la solicitud. Por favor, vuelve a intentarlo.
|
28
28
|
decidim:
|
29
29
|
download_your_data:
|
30
30
|
help:
|
31
|
-
|
32
|
-
|
33
|
-
id: El identificador único de la respuesta
|
31
|
+
responses:
|
32
|
+
id: El identificador único del resultado
|
34
33
|
question: La pregunta que se respondió
|
35
34
|
questionnaire: La encuesta que fue respondida
|
36
|
-
|
35
|
+
response: La respuesta a la pregunta
|
36
|
+
user: La usuaria que respondió al cuestionario
|
37
37
|
show:
|
38
|
-
|
39
|
-
|
38
|
+
responses: Exportar respuestas
|
39
|
+
survey_user_responses: Respuestas de las usuarias a la encuesta
|
40
40
|
forms:
|
41
41
|
admin:
|
42
42
|
models:
|
43
43
|
components:
|
44
|
-
|
45
|
-
|
44
|
+
allow_editing_responses: Permitir a las usuarias registradas editar sus respuestas en la encuesta
|
45
|
+
allow_responses: Permitir respuestas
|
46
46
|
allow_unregistered: Permitir a las usuarias no registradas responder a la encuesta
|
47
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
48
|
announcement: Aviso
|
49
|
-
clean_after_publish: Borrar respuestas al publicar la encuesta
|
49
|
+
clean_after_publish: Borrar las respuestas al publicar la encuesta
|
50
50
|
description: Descripción
|
51
51
|
ends_at: Respuestas aceptadas hasta
|
52
52
|
ends_at_help: Dejar en blanco si no hay ninguna fecha específica
|
53
|
-
starts_at: Respuestas aceptadas
|
53
|
+
starts_at: Respuestas aceptadas hasta
|
54
54
|
starts_at_help: Dejar en blanco si no hay ninguna fecha específica
|
55
55
|
tos: Términos y condiciones de uso
|
56
56
|
questionnaires:
|
57
57
|
actions:
|
58
58
|
back: Volver a las preguntas
|
59
|
-
|
60
|
-
show:
|
61
|
-
answer_option:
|
62
|
-
answer_option: Opción de respuesta
|
63
|
-
free_text: Texto libre
|
64
|
-
remove: Eliminar
|
65
|
-
statement: Declaración
|
66
|
-
answers:
|
67
|
-
actions:
|
68
|
-
back: Volver a las respuestas
|
69
|
-
export: Exportar
|
70
|
-
next: Siguiente ›
|
71
|
-
previous: "‹ Anterior"
|
72
|
-
show: Mostrar las respuestas
|
73
|
-
empty: Aún no hay respuestas
|
74
|
-
export:
|
75
|
-
answer:
|
76
|
-
title: 'Respuesta #%{number}'
|
77
|
-
export_response:
|
78
|
-
title: survey_user_answers_%{token}
|
79
|
-
index:
|
80
|
-
title: "%{total} respuestas en total"
|
81
|
-
show:
|
82
|
-
title: 'Respuesta #%{number}'
|
59
|
+
publish_responses: Publicar las respuestas
|
60
|
+
show: Respuestas
|
83
61
|
display_condition:
|
84
|
-
answer_option: Opción de respuesta
|
85
62
|
condition_question: Pregunta
|
86
63
|
condition_type: Condición
|
87
64
|
condition_types:
|
88
|
-
answered: Contestada
|
89
65
|
equal: Igual a
|
90
66
|
match: Incluye texto
|
91
|
-
not_answered: No contestada
|
92
67
|
not_equal: No es igual
|
68
|
+
not_responded: Sin respuesta
|
69
|
+
responded: Respondida
|
93
70
|
condition_value: Texto incluido
|
94
71
|
display_condition: Condición de visualización
|
95
72
|
mandatory: Esta condición debe cumplirse siempre independientemente del estado de otras condiciones
|
96
73
|
remove: Eliminar
|
74
|
+
response_option: Opción de respuesta
|
97
75
|
save_warning: Recuerda guardar el formulario antes de configurar las condiciones de visualización
|
98
|
-
select_answer_option: Seleccionar opción de respuesta
|
99
76
|
select_condition_question: Seleccionar una pregunta
|
100
77
|
select_condition_type: Selecciona un tipo de condición
|
78
|
+
select_response_option: Seleccionar opción de respuesta
|
101
79
|
edit:
|
102
80
|
save: Guardar
|
103
81
|
title: Editar el cuestionario
|
@@ -118,10 +96,10 @@ es:
|
|
118
96
|
remove: Eliminar
|
119
97
|
statement: Declaración
|
120
98
|
question:
|
121
|
-
add_answer_option: Añadir una opción de respuesta
|
122
99
|
add_display_condition: Agregar condición de visualización
|
123
100
|
add_display_condition_info: Guardar el formulario para configurar las condiciones de visualización
|
124
101
|
add_matrix_row: Añadir fila
|
102
|
+
add_response_option: Añadir opción de respuesta
|
125
103
|
any: Alguna
|
126
104
|
collapse: Contraer
|
127
105
|
description: Descripción
|
@@ -132,12 +110,34 @@ es:
|
|
132
110
|
statement: Declaración
|
133
111
|
up: Arriba
|
134
112
|
questions_form:
|
135
|
-
|
113
|
+
already_responded_warning: La encuesta ya está contestada por algunas usuarias, así que no puedes modificar sus preguntas.
|
136
114
|
collapse: Contraer todas las preguntas
|
137
115
|
expand: Desplegar todas las preguntas
|
138
116
|
unpublished_warning: El formulario no está publicado. Puedes modificar sus preguntas, pero al hacerlo se borrarán las respuestas actuales.
|
139
117
|
update:
|
140
118
|
success: Pregunta/s añadida/s correctamente a la encuesta.
|
119
|
+
response_option:
|
120
|
+
free_text: Texto libre
|
121
|
+
remove: Eliminar
|
122
|
+
response_option: Opción de respuesta
|
123
|
+
statement: Enunciado
|
124
|
+
responses:
|
125
|
+
actions:
|
126
|
+
back: Volver a las respuestas
|
127
|
+
export: Exportar
|
128
|
+
next: Siguiente ›
|
129
|
+
previous: "‹ Anterior"
|
130
|
+
show: Mostrar las respuestas
|
131
|
+
empty: Aún no hay respuestas
|
132
|
+
export:
|
133
|
+
response:
|
134
|
+
title: 'Respuesta #%{number}'
|
135
|
+
export_response:
|
136
|
+
title: repuestas_usuaria_encuesta_%{token}
|
137
|
+
index:
|
138
|
+
title: "%{total} respuestas en total"
|
139
|
+
show:
|
140
|
+
title: 'Respuesta #%{number}'
|
141
141
|
separator:
|
142
142
|
down: Bajar
|
143
143
|
remove: Eliminar
|
@@ -157,12 +157,12 @@ es:
|
|
157
157
|
success: Formulario guardado correctamente.
|
158
158
|
admin_log:
|
159
159
|
question:
|
160
|
-
|
161
|
-
|
160
|
+
publish_responses: "%{user_name} publicó las respuestas a las preguntas de la encuesta %{resource_name} en el espacio de participación %{space_name}"
|
161
|
+
unpublish_responses: "%{user_name} despublicó las respuestas a las preguntas de la encuesta %{resource_name} en el espacio de participación %{space_name}"
|
162
162
|
questionnaire:
|
163
163
|
update: "%{user_name} actualizó el cuestionario %{resource_name}"
|
164
164
|
errors:
|
165
|
-
|
165
|
+
response:
|
166
166
|
body: El campo no puede estar en blanco
|
167
167
|
images:
|
168
168
|
dimensions: "%{width} x %{height} px"
|
@@ -171,39 +171,27 @@ es:
|
|
171
171
|
resize_to_fit: Esta imagen será redimensionada para ajustarse a %{dimensions}.
|
172
172
|
question_types:
|
173
173
|
files: Archivos
|
174
|
-
|
174
|
+
long_response: Respuesta larga
|
175
175
|
matrix_multiple: Matriz (opción múltiple)
|
176
176
|
matrix_single: Matriz (opción única)
|
177
177
|
multiple_option: Opción múltiple
|
178
|
-
|
178
|
+
short_response: Respuesta larga
|
179
179
|
single_option: Opción única
|
180
180
|
sorting: Ordenación
|
181
181
|
title_and_description: Titulo y descripción
|
182
|
-
|
182
|
+
questionnaire_response_presenter:
|
183
183
|
download_attachment: Descargar el archivo adjunto
|
184
184
|
questionnaires:
|
185
|
-
answer:
|
186
|
-
invalid: Se ha producido un error al responder el formulario.
|
187
|
-
max_choices_alert: Has seleccionado demasiadas opciones
|
188
|
-
success: Has respondido al formulario correctamente.
|
189
185
|
question:
|
190
186
|
max_choices: 'Opciones máximas: %{n}'
|
187
|
+
response:
|
188
|
+
invalid: Se ha producido un error al responder el formulario.
|
189
|
+
max_choices_alert: Has seleccionado demasiadas opciones
|
190
|
+
success: El formulario se ha respondido correctamente.
|
191
191
|
show:
|
192
|
-
answer_questionnaire:
|
193
|
-
already_have_an_account?: '¿Ya tienes una cuenta?'
|
194
|
-
are_you_new?: '¿Eres una nueva usuaria?'
|
195
|
-
sign_in_description: Inicia tu sesión para responder la encuesta
|
196
|
-
sign_up_description: Crea una cuenta de participante para responder la encuesta
|
197
|
-
title: Responde el formulario
|
198
192
|
current_step: Paso %{step}
|
199
193
|
empty: Aún no hay preguntas configuradas para este formulario.
|
200
194
|
of_total_steps: de %{total_steps}
|
201
|
-
questionnaire_answered:
|
202
|
-
body: Ya has respondido a este formulario.
|
203
|
-
title: Ya has respondido
|
204
|
-
questionnaire_answered_edit:
|
205
|
-
body: 'Ya has respondido a este formulario: %{link}'
|
206
|
-
edit: Editar las respuestas
|
207
195
|
questionnaire_closed:
|
208
196
|
body: El formulario está cerrado y no puedes responder.
|
209
197
|
title: Formulario cerrado
|
@@ -215,20 +203,32 @@ es:
|
|
215
203
|
title: Javascript está desactivado
|
216
204
|
questionnaire_not_published:
|
217
205
|
body: Este formulario no se ha publicado todavía.
|
206
|
+
questionnaire_responded:
|
207
|
+
body: Ya has respondido a este formulario.
|
208
|
+
title: Ya has respondido
|
209
|
+
questionnaire_responded_edit:
|
210
|
+
body: 'Ya has respondido a este formulario: %{link}'
|
211
|
+
edit: Edita tus respuestas
|
212
|
+
response_questionnaire:
|
213
|
+
already_have_an_account?: '¿Ya tienes una cuenta?'
|
214
|
+
are_you_new?: '¿Eres una nueva usuaria?'
|
215
|
+
sign_in_description: Inicia tu sesión para responder la encuesta
|
216
|
+
sign_up_description: Crea una cuenta de participante para responder la encuesta
|
217
|
+
title: Responder al formulario
|
218
218
|
tos_agreement: Al participar aceptas los Términos y condiciones de uso
|
219
219
|
step_navigation:
|
220
220
|
show:
|
221
|
-
are_you_sure_edit_guest: Si quieres poder editar tus respuestas más tarde,
|
222
|
-
are_you_sure_no_edit: Esta acción
|
221
|
+
are_you_sure_edit_guest: Si quieres poder editar tus respuestas más tarde, es necesario que inicies tu sesión o te crees una cuenta.
|
222
|
+
are_you_sure_no_edit: Esta acción es irreversible y no podrás editar tus respuestas posteriormente. ¿Seguro que quieres continuar?
|
223
223
|
back: Atrás
|
224
224
|
continue: Continuar
|
225
225
|
disallowed: No puedes editar tus respuestas.
|
226
226
|
submit: Enviar respuestas
|
227
|
-
|
227
|
+
user_responses_serializer:
|
228
228
|
body: Respuesta
|
229
229
|
completion: Finalización
|
230
230
|
created_at: Respondido el
|
231
|
-
id:
|
231
|
+
id: ID de la repuesta
|
232
232
|
ip_hash: Hash de la dirección IP
|
233
233
|
question: Pregunta
|
234
234
|
registered: Registrada
|
data/config/locales/eu.yml
CHANGED
@@ -2,19 +2,21 @@
|
|
2
2
|
eu:
|
3
3
|
activemodel:
|
4
4
|
attributes:
|
5
|
-
answer:
|
6
|
-
body: Erantzuna
|
7
|
-
choices: Aukerak
|
8
|
-
selected_choices: Hautatutako aukerak
|
9
5
|
question:
|
10
6
|
max_choices: Gehieneko aukera kopurua
|
11
7
|
question_type: Mota
|
12
8
|
questionnaire_question:
|
13
9
|
mandatory: Nahitaezkoa
|
14
10
|
max_characters: Karaktereen muga (utzi 0 mugarik ez badago)
|
11
|
+
response:
|
12
|
+
body: Erantzuna
|
13
|
+
choices: Aukerak
|
14
|
+
selected_choices: Hautatutako aukerak
|
15
15
|
errors:
|
16
16
|
models:
|
17
|
-
|
17
|
+
questionnaire:
|
18
|
+
request_invalid: Arazo bat izan da eskaera kudeatzean. Mesedez, saiatu berriro.
|
19
|
+
response:
|
18
20
|
attributes:
|
19
21
|
add_documents:
|
20
22
|
needs_to_be_reattached: Berriro erantsi behar da
|
@@ -23,81 +25,57 @@ eu:
|
|
23
25
|
choices:
|
24
26
|
missing: ez dira osatu
|
25
27
|
too_many: Gehienez, %{count} aukeratu ahal duzu.
|
26
|
-
questionnaire:
|
27
|
-
request_invalid: Arazo bat izan da eskaera kudeatzean. Mesedez, saiatu berriro.
|
28
28
|
decidim:
|
29
29
|
download_your_data:
|
30
30
|
help:
|
31
|
-
|
32
|
-
answer: Galderaren erantzuna
|
31
|
+
responses:
|
33
32
|
id: Erantzunaren identifikatzaile bakarra
|
34
33
|
question: Erantzun zen galdera
|
35
34
|
questionnaire: Erantzun zen galdetegia
|
36
|
-
|
35
|
+
response: Galderaren erantzuna
|
36
|
+
user: Inkesta erantzun duen parte-hartzailea
|
37
37
|
show:
|
38
|
-
|
39
|
-
|
38
|
+
responses: Esportatu erantzunak
|
39
|
+
survey_user_responses: Aztertu parte-hartzaileen erantzunak
|
40
40
|
forms:
|
41
41
|
admin:
|
42
42
|
models:
|
43
43
|
components:
|
44
|
-
|
45
|
-
|
46
|
-
allow_unregistered:
|
44
|
+
allow_editing_responses: Eman aukera erregistratutako parte-hartzaileei inkestako erantzunak editatzeko
|
45
|
+
allow_responses: Baimendu erantzunak
|
46
|
+
allow_unregistered: Baimendu erregistratu gabe dauden parte-hartzailei galdetegia erantzutea
|
47
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
48
|
announcement: Oharra
|
49
49
|
clean_after_publish: Ezabatu erantzunak inkesta argitaratzean
|
50
50
|
description: Deskribapena
|
51
51
|
ends_at: Erantzunak noiz arte onartuta
|
52
52
|
ends_at_help: Utzi zuriz data zehatzik ez badago
|
53
|
-
starts_at: Erantzunak noiztik
|
53
|
+
starts_at: Erantzunak noiztik onartuta
|
54
54
|
starts_at_help: Utzi zuriz data zehatzik ez badago
|
55
55
|
tos: Zerbitzu-baldintzak
|
56
56
|
questionnaires:
|
57
57
|
actions:
|
58
58
|
back: Itzuli galderetara
|
59
|
-
|
60
|
-
show:
|
61
|
-
answer_option:
|
62
|
-
answer_option: Erantzun aukera
|
63
|
-
free_text: Testu librea
|
64
|
-
remove: Kendu
|
65
|
-
statement: Adierazpena
|
66
|
-
answers:
|
67
|
-
actions:
|
68
|
-
back: Itzuli erantzunetara
|
69
|
-
export: Esportatu
|
70
|
-
next: Hurrengoa ›
|
71
|
-
previous: "‹ Aurrekoa"
|
72
|
-
show: Erakutsi erantzunak
|
73
|
-
empty: Oraindik ez dago erantzunik
|
74
|
-
export:
|
75
|
-
answer:
|
76
|
-
title: '#%{number} erantzun'
|
77
|
-
export_response:
|
78
|
-
title: survey_user_answers_%{token}
|
79
|
-
index:
|
80
|
-
title: "Guztira, %{total} erantzun"
|
81
|
-
show:
|
82
|
-
title: '#%{number} erantzun'
|
59
|
+
publish_responses: Argitaratu erantzunak
|
60
|
+
show: Erantzunak
|
83
61
|
display_condition:
|
84
|
-
answer_option: Erantzuteko aukera
|
85
62
|
condition_question: Galdera
|
86
63
|
condition_type: Baldintza
|
87
64
|
condition_types:
|
88
|
-
answered: Erantzunda
|
89
65
|
equal: Honen berdina
|
90
66
|
match: Testua barne
|
91
|
-
not_answered: Erantzun gabe
|
92
67
|
not_equal: Ez da berdina
|
68
|
+
not_responded: Erantzun gabe
|
69
|
+
responded: Erantzunda
|
93
70
|
condition_value: Testua barne
|
94
71
|
display_condition: Bistaratzeko baldintza
|
95
72
|
mandatory: Baldintza hau beti bete behar da, beste baldintza batzuen egoera edozein dela ere
|
96
73
|
remove: Kendu
|
74
|
+
response_option: Erantzuteko aukera
|
97
75
|
save_warning: Gogoratu formularioa gorde behar duzula, bistaratze-baldintzak konfiguratu aurretik
|
98
|
-
select_answer_option: Hautatu erantzun-aukera
|
99
76
|
select_condition_question: Hautatu galdera bat
|
100
77
|
select_condition_type: Hautatu baldintza mota bat
|
78
|
+
select_response_option: Hautatu erantzuteko aukera
|
101
79
|
edit:
|
102
80
|
save: Gorde
|
103
81
|
title: Galdetegia editau
|
@@ -118,10 +96,10 @@ eu:
|
|
118
96
|
remove: Kendu
|
119
97
|
statement: Adierazpena
|
120
98
|
question:
|
121
|
-
add_answer_option: Gehitu erantzun aukera
|
122
99
|
add_display_condition: Gehitu bistaratzeko baldintza
|
123
100
|
add_display_condition_info: Gorde galdetegia bistaratzeko baldintzak konfiguratzeko
|
124
101
|
add_matrix_row: Gehitu errenkada
|
102
|
+
add_response_option: Erantsi erantzuteko aukera
|
125
103
|
any: Edozein
|
126
104
|
collapse: Bildu
|
127
105
|
description: Deskribapena
|
@@ -132,12 +110,34 @@ eu:
|
|
132
110
|
statement: Adierazpena
|
133
111
|
up: Gora
|
134
112
|
questions_form:
|
135
|
-
|
113
|
+
already_responded_warning: Formularioa parte-hartzaile batzuek erantzuten dute dagoeneko; beraz, ezin dituzu galderak aldatu.
|
136
114
|
collapse: Kolapsatu galdera guztiak
|
137
115
|
expand: Zabaldu galdera guztiak
|
138
116
|
unpublished_warning: Galdetegia ez dago argitaratuta. Galderak alda ditzakezu, baina eginez gero, oraingo erantzunak ezabatuko dituzu.
|
139
117
|
update:
|
140
118
|
success: Inkestaren galderak zuzen gordeta.
|
119
|
+
response_option:
|
120
|
+
free_text: Testu librea
|
121
|
+
remove: Kendu
|
122
|
+
response_option: Erantzuteko aukera
|
123
|
+
statement: Adierazpena
|
124
|
+
responses:
|
125
|
+
actions:
|
126
|
+
back: Itzuli erantzunetara
|
127
|
+
export: Esportatu
|
128
|
+
next: Hurrengoa ›
|
129
|
+
previous: "‹ Aurrekoa"
|
130
|
+
show: Erakutsi erantzunak
|
131
|
+
empty: Oraindik erantzunik ez
|
132
|
+
export:
|
133
|
+
response:
|
134
|
+
title: '#%{number} erantzun'
|
135
|
+
export_response:
|
136
|
+
title: galdetegia_parte-hartzailea_erantzunak_%{token}
|
137
|
+
index:
|
138
|
+
title: "Guztira, %{total} erantzun"
|
139
|
+
show:
|
140
|
+
title: '#%{number} erantzun'
|
141
141
|
separator:
|
142
142
|
down: Behera
|
143
143
|
remove: Kendu
|
@@ -157,12 +157,12 @@ eu:
|
|
157
157
|
success: Galdetegia zuzen gorde da.
|
158
158
|
admin_log:
|
159
159
|
question:
|
160
|
-
|
161
|
-
|
160
|
+
publish_responses: "%{user_name} parte-hartzaileak argitaratu ditu %{resource_name} inkestari emandako erantzunak %{space_name} espazioan"
|
161
|
+
unpublish_responses: "%{user_name} parte-hartzaileak %{resource_name} inkestari emandako erantzunen argitalpena kendu du %{space_name} espazioan"
|
162
162
|
questionnaire:
|
163
163
|
update: "%{user_name} parte-hartzaileak %{resource_name} galdetegia eguneratu du"
|
164
164
|
errors:
|
165
|
-
|
165
|
+
response:
|
166
166
|
body: Testua ezin da hutsik egon
|
167
167
|
images:
|
168
168
|
dimensions: "%{width} x %{height} px"
|
@@ -171,39 +171,27 @@ eu:
|
|
171
171
|
resize_to_fit: Irudi hau bigunduko eta birdimentsionatuko da %{dimensions} neurrira.
|
172
172
|
question_types:
|
173
173
|
files: Fitxategiak
|
174
|
-
|
174
|
+
long_response: Erantzun luzea
|
175
175
|
matrix_multiple: Matrizea (aukera anitzekoa)
|
176
176
|
matrix_single: Matrizea (aukera bakarrekoa)
|
177
177
|
multiple_option: Hainbat aukera
|
178
|
-
|
178
|
+
short_response: Erantzun laburra
|
179
179
|
single_option: Aukera bakarra
|
180
180
|
sorting: Sailkaketa
|
181
181
|
title_and_description: Izenburua eta deskribapena
|
182
|
-
|
182
|
+
questionnaire_response_presenter:
|
183
183
|
download_attachment: Deskargatu eranskina
|
184
184
|
questionnaires:
|
185
|
-
answer:
|
186
|
-
invalid: Akats bat gertatu da galdeketa erantzutean.
|
187
|
-
max_choices_alert: Aukera gehiegi hautatuta da
|
188
|
-
success: Formularioa zuzen erantzunda.
|
189
185
|
question:
|
190
186
|
max_choices: 'Gehieneko aukerak: %{n}'
|
187
|
+
response:
|
188
|
+
invalid: Arazo bat egon da galdetegia erantzutean.
|
189
|
+
max_choices_alert: Aukera gehiegi hautatuta da
|
190
|
+
success: Galdetegia zuzen erantzun da.
|
191
191
|
show:
|
192
|
-
answer_questionnaire:
|
193
|
-
already_have_an_account?: Baduzu kontu bat?
|
194
|
-
are_you_new?: Parte-hartzaile berria?
|
195
|
-
sign_in_description: Hasi saioa inkesta egiteko
|
196
|
-
sign_up_description: Sortu parte-hartzaileen kontua inkesta egiteko
|
197
|
-
title: Erantzun formularioa
|
198
192
|
current_step: '%{step} urratsa'
|
199
193
|
empty: Oraindik ez dago galderarik konfiguratuta galdetegi honetan.
|
200
194
|
of_total_steps: '%{total_steps} etik'
|
201
|
-
questionnaire_answered:
|
202
|
-
body: Dagoeneko inkesta hau erantzun duzu.
|
203
|
-
title: Dagoeneko erantzunda
|
204
|
-
questionnaire_answered_edit:
|
205
|
-
body: Dagoeneko inkesta hau erantzun duzu.%{link}
|
206
|
-
edit: Editatu zure erantzunak
|
207
195
|
questionnaire_closed:
|
208
196
|
body: Galdetegia itxita dago eta ezin da erantzun.
|
209
197
|
title: Galdeketa itxia
|
@@ -215,6 +203,18 @@ eu:
|
|
215
203
|
title: Javascript desaktibatuta dago
|
216
204
|
questionnaire_not_published:
|
217
205
|
body: Argitalpen hau oraindik ez da argitaratu.
|
206
|
+
questionnaire_responded:
|
207
|
+
body: Dagoeneko inkesta hau erantzun duzu.
|
208
|
+
title: Dagoeneko erantzunda
|
209
|
+
questionnaire_responded_edit:
|
210
|
+
body: Dagoeneko galdetegi hau erantzun duzu.%{link}
|
211
|
+
edit: Editatu zure erantzunak
|
212
|
+
response_questionnaire:
|
213
|
+
already_have_an_account?: Baduzu kontu bat?
|
214
|
+
are_you_new?: Parte-hartzaile berria?
|
215
|
+
sign_in_description: Hasi saioa inkesta egiteko
|
216
|
+
sign_up_description: Sortu parte-hartzaileen kontua inkesta egiteko
|
217
|
+
title: Erantzun galdetegia
|
218
218
|
tos_agreement: Parte hartzean, haren zerbitzu-baldintzak onartzen dituzu
|
219
219
|
step_navigation:
|
220
220
|
show:
|
@@ -224,11 +224,11 @@ eu:
|
|
224
224
|
continue: Jarraitu
|
225
225
|
disallowed: Ezin dituzu zure erantzunak editatu.
|
226
226
|
submit: Bidali
|
227
|
-
|
227
|
+
user_responses_serializer:
|
228
228
|
body: Erantzuna
|
229
229
|
completion: Amaiera
|
230
|
-
created_at:
|
231
|
-
id:
|
230
|
+
created_at: Noiz erantzunda
|
231
|
+
id: Erantzunaren IDa
|
232
232
|
ip_hash: IP Helbidearen traola
|
233
233
|
question: Galdera
|
234
234
|
registered: Erregistratuta
|