decidim-forms 0.30.9 → 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 +15 -15
- 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 +18 -16
- 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 -11
- 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 +47 -66
- 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 +8 -29
- 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_response_presenter.rb +89 -0
- 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 +25 -15
- data/app/views/decidim/forms/admin/questionnaires/_questions_form.html.erb +14 -21
- data/app/views/decidim/forms/admin/questionnaires/_response_option.html.erb +45 -0
- data/app/views/decidim/forms/admin/questionnaires/_response_option_template.html.erb +7 -0
- data/app/views/decidim/forms/admin/questionnaires/_separator.html.erb +15 -5
- data/app/views/decidim/forms/admin/questionnaires/_title_and_description.html.erb +15 -5
- 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 +24 -22
- 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 +2 -22
- data/config/locales/bg.yml +10 -36
- data/config/locales/ca-IT.yml +82 -76
- data/config/locales/ca.yml +82 -76
- data/config/locales/cs.yml +79 -76
- data/config/locales/de.yml +80 -74
- data/config/locales/el.yml +10 -36
- data/config/locales/en.yml +90 -84
- data/config/locales/es-MX.yml +82 -76
- data/config/locales/es-PY.yml +82 -76
- data/config/locales/es.yml +80 -74
- data/config/locales/eu.yml +83 -77
- data/config/locales/fi-plain.yml +78 -72
- data/config/locales/fi.yml +76 -70
- data/config/locales/fr-CA.yml +72 -70
- data/config/locales/fr.yml +72 -70
- data/config/locales/ga-IE.yml +4 -7
- data/config/locales/gl.yml +4 -22
- data/config/locales/hu.yml +4 -22
- data/config/locales/id-ID.yml +2 -22
- data/config/locales/it.yml +8 -40
- data/config/locales/ja.yml +87 -81
- data/config/locales/lb.yml +8 -36
- data/config/locales/lt.yml +10 -36
- data/config/locales/lv.yml +4 -22
- data/config/locales/nl.yml +10 -36
- data/config/locales/no.yml +10 -36
- data/config/locales/pl.yml +10 -36
- data/config/locales/pt-BR.yml +10 -120
- data/config/locales/pt.yml +8 -36
- data/config/locales/ro-RO.yml +30 -52
- data/config/locales/ru.yml +2 -9
- data/config/locales/sk.yml +3 -183
- data/config/locales/sl.yml +0 -5
- data/config/locales/sv.yml +77 -70
- data/config/locales/tr-TR.yml +8 -36
- data/config/locales/val-ES.yml +2 -0
- data/config/locales/zh-CN.yml +8 -36
- data/config/locales/zh-TW.yml +10 -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 +35 -43
- 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 +178 -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 -90
- 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 +43 -140
- data/lib/decidim/forms/test/shared_examples/manage_questionnaires.rb +4 -6
- 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 -46
- 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/presenters/decidim/forms/admin/questionnaire_answer_presenter.rb +0 -112
- data/app/queries/decidim/forms/questionnaire_user_answers.rb +0 -32
- data/app/views/decidim/forms/admin/questionnaires/_answer_option.html.erb +0 -45
- 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 -60
- 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/test/shared_examples/manage_questionnaires/draggable_behavior.rb +0 -47
- 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
|
-
back: Volver a las
|
|
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}'
|
|
58
|
+
back: Volver a las preguntas
|
|
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,45 +96,73 @@ 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
|
|
106
|
+
down: Abajo
|
|
128
107
|
expand: Expandir
|
|
129
108
|
question: Pregunta
|
|
130
109
|
remove: Eliminar
|
|
131
110
|
statement: Declaración
|
|
111
|
+
up: Arriba
|
|
132
112
|
questions_form:
|
|
133
|
-
|
|
113
|
+
already_responded_warning: La encuesta ya está contestada por algunas usuarias, así que no puedes modificar sus preguntas.
|
|
134
114
|
collapse: Contraer todas las preguntas
|
|
135
115
|
expand: Desplegar todas las preguntas
|
|
136
116
|
unpublished_warning: El formulario no está publicado. Puedes modificar sus preguntas, pero al hacerlo se borrarán las respuestas actuales.
|
|
137
117
|
update:
|
|
138
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}'
|
|
139
141
|
separator:
|
|
142
|
+
down: Bajar
|
|
140
143
|
remove: Eliminar
|
|
141
144
|
separator: Separador
|
|
145
|
+
up: Subir
|
|
142
146
|
title_and_description:
|
|
143
147
|
collapse: Contraer
|
|
144
148
|
description: Descripción
|
|
149
|
+
down: Bajar
|
|
145
150
|
expand: Expandir
|
|
146
151
|
remove: Eliminar
|
|
147
152
|
title: Título
|
|
148
153
|
title_and_description: Título y descripción
|
|
154
|
+
up: Subir
|
|
149
155
|
update:
|
|
150
156
|
invalid: Se ha producido un error al guardar el formulario.
|
|
151
157
|
success: Formulario guardado correctamente.
|
|
152
158
|
admin_log:
|
|
153
159
|
question:
|
|
154
|
-
|
|
155
|
-
|
|
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}"
|
|
156
162
|
questionnaire:
|
|
157
163
|
update: "%{user_name} actualizó el cuestionario %{resource_name}"
|
|
158
164
|
errors:
|
|
159
|
-
|
|
165
|
+
response:
|
|
160
166
|
body: El campo no puede estar en blanco
|
|
161
167
|
images:
|
|
162
168
|
dimensions: "%{width} x %{height} px"
|
|
@@ -165,39 +171,27 @@ es:
|
|
|
165
171
|
resize_to_fit: Esta imagen será redimensionada para ajustarse a %{dimensions}.
|
|
166
172
|
question_types:
|
|
167
173
|
files: Archivos
|
|
168
|
-
|
|
174
|
+
long_response: Respuesta larga
|
|
169
175
|
matrix_multiple: Matriz (opción múltiple)
|
|
170
176
|
matrix_single: Matriz (opción única)
|
|
171
177
|
multiple_option: Opción múltiple
|
|
172
|
-
|
|
178
|
+
short_response: Respuesta larga
|
|
173
179
|
single_option: Opción única
|
|
174
180
|
sorting: Ordenación
|
|
175
181
|
title_and_description: Titulo y descripción
|
|
176
|
-
|
|
182
|
+
questionnaire_response_presenter:
|
|
177
183
|
download_attachment: Descargar el archivo adjunto
|
|
178
184
|
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
185
|
question:
|
|
184
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.
|
|
185
191
|
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
192
|
current_step: Paso %{step}
|
|
193
193
|
empty: Aún no hay preguntas configuradas para este formulario.
|
|
194
194
|
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
195
|
questionnaire_closed:
|
|
202
196
|
body: El formulario está cerrado y no puedes responder.
|
|
203
197
|
title: Formulario cerrado
|
|
@@ -209,20 +203,32 @@ es:
|
|
|
209
203
|
title: Javascript está desactivado
|
|
210
204
|
questionnaire_not_published:
|
|
211
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
|
|
212
218
|
tos_agreement: Al participar aceptas los Términos y condiciones de uso
|
|
213
219
|
step_navigation:
|
|
214
220
|
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
|
|
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?
|
|
217
223
|
back: Atrás
|
|
218
224
|
continue: Continuar
|
|
219
225
|
disallowed: No puedes editar tus respuestas.
|
|
220
226
|
submit: Enviar respuestas
|
|
221
|
-
|
|
227
|
+
user_responses_serializer:
|
|
222
228
|
body: Respuesta
|
|
223
229
|
completion: Finalización
|
|
224
230
|
created_at: Respondido el
|
|
225
|
-
id:
|
|
231
|
+
id: ID de la repuesta
|
|
226
232
|
ip_hash: Hash de la dirección IP
|
|
227
233
|
question: Pregunta
|
|
228
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, berriro saiatu.
|
|
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
|
|
54
|
-
starts_at_help:
|
|
53
|
+
starts_at: Erantzunak noiztik onartuta
|
|
54
|
+
starts_at_help: Utzi zuriz data zehatzik ez badago
|
|
55
55
|
tos: Zerbitzu-baldintzak
|
|
56
56
|
questionnaires:
|
|
57
57
|
actions:
|
|
58
|
-
back:
|
|
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'
|
|
58
|
+
back: Itzuli galderetara
|
|
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
|
|
97
|
-
|
|
98
|
-
|
|
74
|
+
response_option: Erantzuteko aukera
|
|
75
|
+
save_warning: Gogoratu formularioa gorde behar duzula, bistaratze-baldintzak konfiguratu aurretik
|
|
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,45 +96,73 @@ eu:
|
|
|
118
96
|
remove: Kendu
|
|
119
97
|
statement: Adierazpena
|
|
120
98
|
question:
|
|
121
|
-
|
|
122
|
-
add_display_condition: Bistaratzeko baldintza gehitu
|
|
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
|
|
106
|
+
down: Behera
|
|
128
107
|
expand: Zabaldu
|
|
129
108
|
question: Galdera
|
|
130
109
|
remove: Kendu
|
|
131
110
|
statement: Adierazpena
|
|
111
|
+
up: Gora
|
|
132
112
|
questions_form:
|
|
133
|
-
|
|
113
|
+
already_responded_warning: Formularioa parte-hartzaile batzuek erantzuten dute dagoeneko; beraz, ezin dituzu galderak aldatu.
|
|
134
114
|
collapse: Kolapsatu galdera guztiak
|
|
135
115
|
expand: Zabaldu galdera guztiak
|
|
136
116
|
unpublished_warning: Galdetegia ez dago argitaratuta. Galderak alda ditzakezu, baina eginez gero, oraingo erantzunak ezabatuko dituzu.
|
|
137
117
|
update:
|
|
138
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'
|
|
139
141
|
separator:
|
|
142
|
+
down: Behera
|
|
140
143
|
remove: Kendu
|
|
141
144
|
separator: Bereizlea
|
|
145
|
+
up: Gora
|
|
142
146
|
title_and_description:
|
|
143
|
-
collapse:
|
|
147
|
+
collapse: Kolapsoa
|
|
144
148
|
description: Deskribapena
|
|
149
|
+
down: Behera
|
|
145
150
|
expand: Zabaldu
|
|
146
151
|
remove: Kendu
|
|
147
152
|
title: Izenburua
|
|
148
153
|
title_and_description: Izenburua eta deskribapena
|
|
154
|
+
up: Gora
|
|
149
155
|
update:
|
|
150
156
|
invalid: Arazo bat egon da inprimakia gordetzean.
|
|
151
157
|
success: Galdetegia zuzen gorde da.
|
|
152
158
|
admin_log:
|
|
153
159
|
question:
|
|
154
|
-
|
|
155
|
-
|
|
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"
|
|
156
162
|
questionnaire:
|
|
157
163
|
update: "%{user_name} parte-hartzaileak %{resource_name} galdetegia eguneratu du"
|
|
158
164
|
errors:
|
|
159
|
-
|
|
165
|
+
response:
|
|
160
166
|
body: Testua ezin da hutsik egon
|
|
161
167
|
images:
|
|
162
168
|
dimensions: "%{width} x %{height} px"
|
|
@@ -165,39 +171,27 @@ eu:
|
|
|
165
171
|
resize_to_fit: Irudi hau bigunduko eta birdimentsionatuko da %{dimensions} neurrira.
|
|
166
172
|
question_types:
|
|
167
173
|
files: Fitxategiak
|
|
168
|
-
|
|
174
|
+
long_response: Erantzun luzea
|
|
169
175
|
matrix_multiple: Matrizea (aukera anitzekoa)
|
|
170
176
|
matrix_single: Matrizea (aukera bakarrekoa)
|
|
171
177
|
multiple_option: Hainbat aukera
|
|
172
|
-
|
|
178
|
+
short_response: Erantzun laburra
|
|
173
179
|
single_option: Aukera bakarra
|
|
174
180
|
sorting: Sailkaketa
|
|
175
181
|
title_and_description: Izenburua eta deskribapena
|
|
176
|
-
|
|
182
|
+
questionnaire_response_presenter:
|
|
177
183
|
download_attachment: Deskargatu eranskina
|
|
178
184
|
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
185
|
question:
|
|
184
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.
|
|
185
191
|
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
192
|
current_step: '%{step} urratsa'
|
|
193
193
|
empty: Oraindik ez dago galderarik konfiguratuta galdetegi honetan.
|
|
194
194
|
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
195
|
questionnaire_closed:
|
|
202
196
|
body: Galdetegia itxita dago eta ezin da erantzun.
|
|
203
197
|
title: Galdeketa itxia
|
|
@@ -208,7 +202,19 @@ eu:
|
|
|
208
202
|
body: Galdetegi honen ezaugarri batzuk desaktibatu egingo dira. Zure esperientzia hobetzeko, gaitu JavaScript zure nabigatzailean.
|
|
209
203
|
title: Javascript desaktibatuta dago
|
|
210
204
|
questionnaire_not_published:
|
|
211
|
-
body:
|
|
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
|
|
212
218
|
tos_agreement: Parte hartzean, haren zerbitzu-baldintzak onartzen dituzu
|
|
213
219
|
step_navigation:
|
|
214
220
|
show:
|
|
@@ -218,11 +224,11 @@ eu:
|
|
|
218
224
|
continue: Jarraitu
|
|
219
225
|
disallowed: Ezin dituzu zure erantzunak editatu.
|
|
220
226
|
submit: Bidali
|
|
221
|
-
|
|
227
|
+
user_responses_serializer:
|
|
222
228
|
body: Erantzuna
|
|
223
229
|
completion: Amaiera
|
|
224
|
-
created_at:
|
|
225
|
-
id:
|
|
230
|
+
created_at: Noiz erantzunda
|
|
231
|
+
id: Erantzunaren IDa
|
|
226
232
|
ip_hash: IP Helbidearen traola
|
|
227
233
|
question: Galdera
|
|
228
234
|
registered: Erregistratuta
|