decidim-forms 0.30.3 → 0.31.0.rc2
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 +11 -11
- 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 +1 -1
- data/app/views/decidim/forms/admin/questionnaires/_title_and_description.html.erb +2 -2
- 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 -37
- 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 +73 -74
- data/config/locales/el.yml +3 -37
- 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 +72 -72
- data/config/locales/fi-plain.yml +71 -71
- data/config/locales/fi.yml +69 -69
- data/config/locales/fr-CA.yml +71 -67
- data/config/locales/fr.yml +71 -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 -41
- data/config/locales/ja.yml +80 -80
- data/config/locales/lb.yml +3 -37
- data/config/locales/lt.yml +3 -37
- data/config/locales/lv.yml +0 -22
- data/config/locales/nl.yml +3 -37
- data/config/locales/no.yml +3 -37
- data/config/locales/pl.yml +3 -37
- data/config/locales/pt-BR.yml +3 -37
- data/config/locales/pt.yml +3 -37
- 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 -37
- data/config/locales/zh-CN.yml +3 -37
- data/config/locales/zh-TW.yml +3 -37
- 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 +47 -44
- 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 respuestas
|
|
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
|
|
@@ -130,12 +108,34 @@ es:
|
|
|
130
108
|
remove: Eliminar
|
|
131
109
|
statement: Declaración
|
|
132
110
|
questions_form:
|
|
133
|
-
|
|
111
|
+
already_responded_warning: La encuesta ya está contestada por algunas usuarias, así que no puedes modificar sus preguntas.
|
|
134
112
|
collapse: Contraer todas las preguntas
|
|
135
113
|
expand: Desplegar todas las preguntas
|
|
136
114
|
unpublished_warning: El formulario no está publicado. Puedes modificar sus preguntas, pero al hacerlo se borrarán las respuestas actuales.
|
|
137
115
|
update:
|
|
138
116
|
success: Pregunta/s añadida/s correctamente a la encuesta.
|
|
117
|
+
response_option:
|
|
118
|
+
free_text: Texto libre
|
|
119
|
+
remove: Eliminar
|
|
120
|
+
response_option: Opción de respuesta
|
|
121
|
+
statement: Enunciado
|
|
122
|
+
responses:
|
|
123
|
+
actions:
|
|
124
|
+
back: Volver a las respuestas
|
|
125
|
+
export: Exportar
|
|
126
|
+
next: Siguiente ›
|
|
127
|
+
previous: "‹ Anterior"
|
|
128
|
+
show: Mostrar las respuestas
|
|
129
|
+
empty: Aún no hay respuestas
|
|
130
|
+
export:
|
|
131
|
+
response:
|
|
132
|
+
title: 'Respuesta #%{number}'
|
|
133
|
+
export_response:
|
|
134
|
+
title: repuestas_usuaria_encuesta_%{token}
|
|
135
|
+
index:
|
|
136
|
+
title: "%{total} respuestas en total"
|
|
137
|
+
show:
|
|
138
|
+
title: 'Respuesta #%{number}'
|
|
139
139
|
separator:
|
|
140
140
|
remove: Eliminar
|
|
141
141
|
separator: Separador
|
|
@@ -151,12 +151,12 @@ es:
|
|
|
151
151
|
success: Formulario guardado correctamente.
|
|
152
152
|
admin_log:
|
|
153
153
|
question:
|
|
154
|
-
|
|
155
|
-
|
|
154
|
+
publish_responses: "%{user_name} publicó las respuestas a las preguntas de la encuesta %{resource_name} en el espacio de participación %{space_name}"
|
|
155
|
+
unpublish_responses: "%{user_name} despublicó las respuestas a las preguntas de la encuesta %{resource_name} en el espacio de participación %{space_name}"
|
|
156
156
|
questionnaire:
|
|
157
157
|
update: "%{user_name} actualizó el cuestionario %{resource_name}"
|
|
158
158
|
errors:
|
|
159
|
-
|
|
159
|
+
response:
|
|
160
160
|
body: El campo no puede estar en blanco
|
|
161
161
|
images:
|
|
162
162
|
dimensions: "%{width} x %{height} px"
|
|
@@ -165,39 +165,27 @@ es:
|
|
|
165
165
|
resize_to_fit: Esta imagen será redimensionada para ajustarse a %{dimensions}.
|
|
166
166
|
question_types:
|
|
167
167
|
files: Archivos
|
|
168
|
-
|
|
168
|
+
long_response: Respuesta larga
|
|
169
169
|
matrix_multiple: Matriz (opción múltiple)
|
|
170
170
|
matrix_single: Matriz (opción única)
|
|
171
171
|
multiple_option: Opción múltiple
|
|
172
|
-
|
|
172
|
+
short_response: Respuesta larga
|
|
173
173
|
single_option: Opción única
|
|
174
174
|
sorting: Ordenación
|
|
175
175
|
title_and_description: Titulo y descripción
|
|
176
|
-
|
|
176
|
+
questionnaire_response_presenter:
|
|
177
177
|
download_attachment: Descargar el archivo adjunto
|
|
178
178
|
questionnaires:
|
|
179
|
-
answer:
|
|
180
|
-
invalid: Se ha producido un error al responder el formulario.
|
|
181
|
-
max_choices_alert: Has seleccionado demasiadas opciones
|
|
182
|
-
success: Has respondido al formulario correctamente.
|
|
183
179
|
question:
|
|
184
180
|
max_choices: 'Opciones máximas: %{n}'
|
|
181
|
+
response:
|
|
182
|
+
invalid: Se ha producido un error al responder el formulario.
|
|
183
|
+
max_choices_alert: Has seleccionado demasiadas opciones
|
|
184
|
+
success: El formulario se ha respondido correctamente.
|
|
185
185
|
show:
|
|
186
|
-
answer_questionnaire:
|
|
187
|
-
already_have_an_account?: '¿Ya tienes una cuenta?'
|
|
188
|
-
are_you_new?: '¿Eres una nueva usuaria?'
|
|
189
|
-
sign_in_description: Inicia tu sesión para responder la encuesta
|
|
190
|
-
sign_up_description: Crea una cuenta de participante para responder la encuesta
|
|
191
|
-
title: Responde el formulario
|
|
192
186
|
current_step: Paso %{step}
|
|
193
187
|
empty: Aún no hay preguntas configuradas para este formulario.
|
|
194
188
|
of_total_steps: de %{total_steps}
|
|
195
|
-
questionnaire_answered:
|
|
196
|
-
body: Ya has respondido a este formulario.
|
|
197
|
-
title: Ya has respondido
|
|
198
|
-
questionnaire_answered_edit:
|
|
199
|
-
body: 'Ya has respondido a este formulario: %{link}'
|
|
200
|
-
edit: Editar las respuestas
|
|
201
189
|
questionnaire_closed:
|
|
202
190
|
body: El formulario está cerrado y no puedes responder.
|
|
203
191
|
title: Formulario cerrado
|
|
@@ -209,20 +197,32 @@ es:
|
|
|
209
197
|
title: Javascript está desactivado
|
|
210
198
|
questionnaire_not_published:
|
|
211
199
|
body: Este formulario no se ha publicado todavía.
|
|
200
|
+
questionnaire_responded:
|
|
201
|
+
body: Ya has respondido a este formulario.
|
|
202
|
+
title: Ya has respondido
|
|
203
|
+
questionnaire_responded_edit:
|
|
204
|
+
body: 'Ya has respondido a este formulario: %{link}'
|
|
205
|
+
edit: Edita tus respuestas
|
|
206
|
+
response_questionnaire:
|
|
207
|
+
already_have_an_account?: '¿Ya tienes una cuenta?'
|
|
208
|
+
are_you_new?: '¿Eres una nueva usuaria?'
|
|
209
|
+
sign_in_description: Inicia tu sesión para responder la encuesta
|
|
210
|
+
sign_up_description: Crea una cuenta de participante para responder la encuesta
|
|
211
|
+
title: Responder al formulario
|
|
212
212
|
tos_agreement: Al participar aceptas los Términos y condiciones de uso
|
|
213
213
|
step_navigation:
|
|
214
214
|
show:
|
|
215
|
-
are_you_sure_edit_guest: Si quieres poder editar tus respuestas más tarde,
|
|
216
|
-
are_you_sure_no_edit: Esta acción
|
|
215
|
+
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.
|
|
216
|
+
are_you_sure_no_edit: Esta acción es irreversible y no podrás editar tus respuestas posteriormente. ¿Seguro que quieres continuar?
|
|
217
217
|
back: Atrás
|
|
218
218
|
continue: Continuar
|
|
219
219
|
disallowed: No puedes editar tus respuestas.
|
|
220
220
|
submit: Enviar respuestas
|
|
221
|
-
|
|
221
|
+
user_responses_serializer:
|
|
222
222
|
body: Respuesta
|
|
223
223
|
completion: Finalización
|
|
224
224
|
created_at: Respondido el
|
|
225
|
-
id:
|
|
225
|
+
id: ID de la repuesta
|
|
226
226
|
ip_hash: Hash de la dirección IP
|
|
227
227
|
question: Pregunta
|
|
228
228
|
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:
|
|
47
|
-
allow_unregistered_help: Aktibatuta badago ez da beharrezkoa saioa hastea inkesta erantzuteko.
|
|
44
|
+
allow_editing_responses: Eman aukera erregistratutako parte-hartzaileei inkestako erantzunak editatzeko
|
|
45
|
+
allow_responses: Baimendu erantzunak
|
|
46
|
+
allow_unregistered: Ahalbidetu erregistratu gabeko erabiltzaileek inkestari erantzun diezaioten
|
|
47
|
+
allow_unregistered_help: Aktibatuta badago, ez da beharrezkoa saioa hastea inkesta erantzuteko. Horrek datu txarrak edo fidagarriak ez direnak ekar ditzake, eta eraso automatizatuen aurrean ahulagoa izango da. Kontuz ibili! Kontuan izan parte-hartzaile batek inkesta berari hainbat aldiz erantzun ahal izango liokeela, hainbat nabigatzaile erabiliz edo bere web nabigatzailearen "nabigazio pribatua" ezaugarria 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 erantzunetara
|
|
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
|
|
@@ -130,12 +108,34 @@ eu:
|
|
|
130
108
|
remove: Kendu
|
|
131
109
|
statement: Adierazpena
|
|
132
110
|
questions_form:
|
|
133
|
-
|
|
111
|
+
already_responded_warning: Formularioa parte-hartzaile batzuek erantzuten dute dagoeneko; beraz, ezin dituzu galderak aldatu.
|
|
134
112
|
collapse: Kolapsatu galdera guztiak
|
|
135
113
|
expand: Zabaldu galdera guztiak
|
|
136
114
|
unpublished_warning: Galdetegia ez dago argitaratuta. Galderak alda ditzakezu, baina eginez gero, oraingo erantzunak ezabatuko dituzu.
|
|
137
115
|
update:
|
|
138
116
|
success: Inkestaren galderak zuzen gordeta.
|
|
117
|
+
response_option:
|
|
118
|
+
free_text: Testu librea
|
|
119
|
+
remove: Kendu
|
|
120
|
+
response_option: Erantzuteko aukera
|
|
121
|
+
statement: Adierazpena
|
|
122
|
+
responses:
|
|
123
|
+
actions:
|
|
124
|
+
back: Itzuli erantzunetara
|
|
125
|
+
export: Esportatu
|
|
126
|
+
next: Hurrengoa ›
|
|
127
|
+
previous: "‹ Aurrekoa"
|
|
128
|
+
show: Erakutsi erantzunak
|
|
129
|
+
empty: Oraindik erantzunik ez
|
|
130
|
+
export:
|
|
131
|
+
response:
|
|
132
|
+
title: '#%{number} erantzun'
|
|
133
|
+
export_response:
|
|
134
|
+
title: galdetegia_parte-hartzailea_erantzunak_%{token}
|
|
135
|
+
index:
|
|
136
|
+
title: "Guztira, %{total} erantzun"
|
|
137
|
+
show:
|
|
138
|
+
title: '#%{number} erantzun'
|
|
139
139
|
separator:
|
|
140
140
|
remove: Kendu
|
|
141
141
|
separator: Bereizlea
|
|
@@ -151,12 +151,12 @@ eu:
|
|
|
151
151
|
success: Galdetegia zuzen gorde da.
|
|
152
152
|
admin_log:
|
|
153
153
|
question:
|
|
154
|
-
|
|
155
|
-
|
|
154
|
+
publish_responses: "%{user_name} parte-hartzaileak argitaratu ditu %{resource_name} inkestari emandako erantzunak %{space_name} espazioan"
|
|
155
|
+
unpublish_responses: "%{user_name} parte-hartzaileak %{resource_name} inkestari emandako erantzunen argitalpena kendu du %{space_name} espazioan"
|
|
156
156
|
questionnaire:
|
|
157
157
|
update: "%{user_name} parte-hartzaileak %{resource_name} galdetegia eguneratu du"
|
|
158
158
|
errors:
|
|
159
|
-
|
|
159
|
+
response:
|
|
160
160
|
body: Testua ezin da hutsik egon
|
|
161
161
|
images:
|
|
162
162
|
dimensions: "%{width} x %{height} px"
|
|
@@ -165,39 +165,27 @@ eu:
|
|
|
165
165
|
resize_to_fit: Irudi hau bigunduko eta birdimentsionatuko da %{dimensions} neurrira.
|
|
166
166
|
question_types:
|
|
167
167
|
files: Fitxategiak
|
|
168
|
-
|
|
168
|
+
long_response: Erantzun luzea
|
|
169
169
|
matrix_multiple: Matrizea (aukera anitzekoa)
|
|
170
170
|
matrix_single: Matrizea (aukera bakarrekoa)
|
|
171
171
|
multiple_option: Hainbat aukera
|
|
172
|
-
|
|
172
|
+
short_response: Erantzun laburra
|
|
173
173
|
single_option: Aukera bakarra
|
|
174
174
|
sorting: Sailkaketa
|
|
175
175
|
title_and_description: Izenburua eta deskribapena
|
|
176
|
-
|
|
176
|
+
questionnaire_response_presenter:
|
|
177
177
|
download_attachment: Deskargatu eranskina
|
|
178
178
|
questionnaires:
|
|
179
|
-
answer:
|
|
180
|
-
invalid: Akats bat gertatu da galdeketa erantzutean.
|
|
181
|
-
max_choices_alert: Aukera gehiegi hautatuta da
|
|
182
|
-
success: Formularioa zuzen erantzunda.
|
|
183
179
|
question:
|
|
184
180
|
max_choices: 'Gehieneko aukerak: %{n}'
|
|
181
|
+
response:
|
|
182
|
+
invalid: Arazo bat egon da galdetegia erantzutean.
|
|
183
|
+
max_choices_alert: Aukera gehiegi hautatuta da
|
|
184
|
+
success: Galdetegia zuzen erantzun da.
|
|
185
185
|
show:
|
|
186
|
-
answer_questionnaire:
|
|
187
|
-
already_have_an_account?: Baduzu kontu bat?
|
|
188
|
-
are_you_new?: Parte-hartzaile berria?
|
|
189
|
-
sign_in_description: Hasi saioa inkesta egiteko
|
|
190
|
-
sign_up_description: Sortu parte-hartzaileen kontua inkesta egiteko
|
|
191
|
-
title: Erantzun formularioa
|
|
192
186
|
current_step: '%{step} urratsa'
|
|
193
187
|
empty: Oraindik ez dago galderarik konfiguratuta galdetegi honetan.
|
|
194
188
|
of_total_steps: '%{total_steps} etik'
|
|
195
|
-
questionnaire_answered:
|
|
196
|
-
body: Dagoeneko inkesta hau erantzun duzu.
|
|
197
|
-
title: Dagoeneko erantzunda
|
|
198
|
-
questionnaire_answered_edit:
|
|
199
|
-
body: Dagoeneko inkesta hau erantzun duzu.%{link}
|
|
200
|
-
edit: Editatu zure erantzunak
|
|
201
189
|
questionnaire_closed:
|
|
202
190
|
body: Galdetegia itxita dago eta ezin da erantzun.
|
|
203
191
|
title: Galdeketa itxia
|
|
@@ -209,6 +197,18 @@ eu:
|
|
|
209
197
|
title: Javascript desaktibatuta dago
|
|
210
198
|
questionnaire_not_published:
|
|
211
199
|
body: Argitalpen hau oraindik ez da argitaratu.
|
|
200
|
+
questionnaire_responded:
|
|
201
|
+
body: Dagoeneko inkesta hau erantzun duzu.
|
|
202
|
+
title: Dagoeneko erantzunda
|
|
203
|
+
questionnaire_responded_edit:
|
|
204
|
+
body: Dagoeneko galdetegi hau erantzun duzu.%{link}
|
|
205
|
+
edit: Editatu zure erantzunak
|
|
206
|
+
response_questionnaire:
|
|
207
|
+
already_have_an_account?: Baduzu kontu bat?
|
|
208
|
+
are_you_new?: Parte-hartzaile berria?
|
|
209
|
+
sign_in_description: Hasi saioa inkesta egiteko
|
|
210
|
+
sign_up_description: Sortu parte-hartzaileen kontua inkesta egiteko
|
|
211
|
+
title: Erantzun galdetegia
|
|
212
212
|
tos_agreement: Parte hartzean, haren zerbitzu-baldintzak onartzen dituzu
|
|
213
213
|
step_navigation:
|
|
214
214
|
show:
|
|
@@ -218,11 +218,11 @@ eu:
|
|
|
218
218
|
continue: Jarraitu
|
|
219
219
|
disallowed: Ezin dituzu zure erantzunak editatu.
|
|
220
220
|
submit: Bidali
|
|
221
|
-
|
|
221
|
+
user_responses_serializer:
|
|
222
222
|
body: Erantzuna
|
|
223
223
|
completion: Amaiera
|
|
224
|
-
created_at:
|
|
225
|
-
id:
|
|
224
|
+
created_at: Noiz erantzunda
|
|
225
|
+
id: Erantzunaren IDa
|
|
226
226
|
ip_hash: IP Helbidearen traola
|
|
227
227
|
question: Galdera
|
|
228
228
|
registered: Erregistratuta
|