decidim-forms 0.29.4 → 0.30.0.rc1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/cells/decidim/forms/step_navigation_cell.rb +18 -5
- data/app/commands/decidim/forms/admin/update_questionnaire.rb +1 -82
- data/app/commands/decidim/forms/admin/update_questions.rb +109 -0
- data/app/commands/decidim/forms/answer_questionnaire.rb +10 -3
- data/app/controllers/decidim/forms/admin/concerns/has_questionnaire.rb +39 -3
- data/app/controllers/decidim/forms/admin/concerns/has_questionnaire_answers.rb +2 -2
- data/app/controllers/decidim/forms/concerns/has_questionnaire.rb +12 -4
- data/app/forms/decidim/forms/admin/display_condition_form.rb +1 -1
- data/app/forms/decidim/forms/admin/questionnaire_form.rb +0 -9
- data/app/forms/decidim/forms/admin/questions_form.rb +18 -0
- data/app/forms/decidim/forms/answer_choice_form.rb +5 -0
- data/app/forms/decidim/forms/answer_form.rb +1 -0
- data/app/forms/decidim/forms/questionnaire_form.rb +7 -0
- data/app/helpers/decidim/forms/admin/concerns/has_questionnaire_answers_pagination_helper.rb +1 -1
- data/app/helpers/decidim/forms/admin/concerns/has_questionnaire_answers_url_helper.rb +5 -5
- data/app/jobs/decidim/forms/export_questionnaire_answers_job.rb +5 -1
- data/app/models/decidim/forms/answer_choice.rb +0 -2
- data/app/models/decidim/forms/answer_option.rb +1 -1
- data/app/models/decidim/forms/question.rb +10 -0
- data/app/packs/entrypoints/decidim_forms.js +0 -1
- data/app/packs/entrypoints/decidim_forms_admin.js +6 -0
- data/app/packs/src/decidim/forms/admin/publish_answers_buttons.js +72 -0
- data/app/packs/src/decidim/forms/forms.js +22 -18
- data/app/presenters/decidim/forms/admin/questionnaire_participant_presenter.rb +1 -1
- data/app/presenters/decidim/forms/admin_log/question_presenter.rb +31 -0
- data/app/queries/decidim/forms/questionnaire_user_answers.rb +1 -1
- data/app/views/decidim/forms/admin/questionnaires/_answer_option_template.html.erb +1 -1
- data/app/views/decidim/forms/admin/questionnaires/_display_condition_template.html.erb +1 -1
- data/app/views/decidim/forms/admin/questionnaires/_form.html.erb +0 -89
- data/app/views/decidim/forms/admin/questionnaires/_matrix_row_template.html.erb +1 -1
- data/app/views/decidim/forms/admin/questionnaires/_question.html.erb +3 -3
- data/app/views/decidim/forms/admin/questionnaires/_questions_form.html.erb +80 -0
- data/app/views/decidim/forms/admin/questionnaires/edit.html.erb +0 -20
- data/app/views/decidim/forms/admin/questionnaires/edit_questions.html.erb +47 -0
- data/app/views/decidim/forms/questionnaires/_questionnaire.html.erb +8 -1
- data/app/views/decidim/forms/questionnaires/answers/_files.html.erb +1 -1
- data/app/views/decidim/forms/questionnaires/answers/_sorting.html.erb +12 -6
- data/app/views/decidim/forms/questionnaires/edit.html.erb +47 -0
- data/app/views/decidim/forms/questionnaires/show.html.erb +13 -2
- data/config/assets.rb +1 -2
- data/config/locales/ar.yml +16 -1
- data/config/locales/bg.yml +36 -2
- data/config/locales/ca.yml +53 -13
- data/config/locales/cs.yml +48 -8
- data/config/locales/de.yml +52 -12
- data/config/locales/el.yml +35 -2
- data/config/locales/en.yml +45 -5
- data/config/locales/es-MX.yml +55 -15
- data/config/locales/es-PY.yml +55 -15
- data/config/locales/es.yml +54 -14
- data/config/locales/eu.yml +51 -11
- data/config/locales/fi-plain.yml +50 -10
- data/config/locales/fi.yml +50 -10
- data/config/locales/fr-CA.yml +45 -13
- data/config/locales/fr.yml +45 -13
- data/config/locales/ga-IE.yml +5 -0
- data/config/locales/gl.yml +7 -1
- data/config/locales/hu.yml +10 -1
- data/config/locales/id-ID.yml +7 -1
- data/config/locales/it.yml +27 -3
- data/config/locales/ja.yml +7 -12
- data/config/locales/lb.yml +28 -1
- data/config/locales/lt.yml +35 -2
- data/config/locales/lv.yml +11 -1
- data/config/locales/nl.yml +23 -0
- data/config/locales/no.yml +27 -0
- data/config/locales/pl.yml +37 -2
- data/config/locales/pt-BR.yml +29 -0
- data/config/locales/pt.yml +27 -0
- data/config/locales/ro-RO.yml +44 -17
- data/config/locales/ru.yml +1 -2
- data/config/locales/sk.yml +10 -1
- data/config/locales/sl.yml +7 -0
- data/config/locales/sv.yml +12 -16
- data/config/locales/tr-TR.yml +23 -0
- data/config/locales/zh-CN.yml +23 -0
- data/config/locales/zh-TW.yml +35 -2
- data/db/migrate/20190315203056_add_session_token_to_decidim_forms_answers.rb +1 -1
- data/db/migrate/20241122142230_add_survey_answers_published_at_to_questions.rb +7 -0
- data/decidim-forms.gemspec +1 -2
- data/lib/decidim/api/answer_option_type.rb +1 -1
- data/lib/decidim/api/question_type.rb +4 -4
- data/lib/decidim/api/questionnaire_type.rb +4 -4
- data/lib/decidim/exporters/form_pdf.rb +114 -11
- data/lib/decidim/forms/download_your_data_user_answers_serializer.rb +0 -4
- data/lib/decidim/forms/test/factories.rb +2 -2
- data/lib/decidim/forms/test/shared_examples/has_questionnaire.rb +44 -4
- data/lib/decidim/forms/test/shared_examples/manage_questionnaire_answers.rb +17 -17
- data/lib/decidim/forms/test/shared_examples/manage_questionnaires/add_display_conditions.rb +19 -21
- data/lib/decidim/forms/test/shared_examples/manage_questionnaires/add_questions.rb +70 -94
- data/lib/decidim/forms/test/shared_examples/manage_questionnaires/update_display_conditions.rb +15 -18
- data/lib/decidim/forms/test/shared_examples/manage_questionnaires/update_questions.rb +90 -125
- data/lib/decidim/forms/test/shared_examples/manage_questionnaires.rb +4 -25
- data/lib/decidim/forms/version.rb +1 -1
- data/lib/decidim/forms.rb +0 -1
- metadata +18 -33
- data/app/packs/entrypoints/decidim_questionnaire_answers_pdf.js +0 -1
- data/app/packs/entrypoints/decidim_questionnaire_answers_pdf.scss +0 -1
- data/app/packs/stylesheets/decidim/forms/questionnaire-answers-pdf.scss +0 -69
- data/app/views/decidim/forms/admin/questionnaires/answers/export/_answer.html.erb +0 -31
- data/app/views/decidim/forms/admin/questionnaires/answers/export/pdf.html.erb +0 -13
- data/app/views/layouts/decidim/forms/admin/questionnaires/questionnaire_answers.html.erb +0 -12
- data/config/initializers/wicked_pdf.rb +0 -26
- data/config/locales/ca-IT.yml +0 -198
- data/lib/decidim/exporters/form_pdf_controller_helper.rb +0 -13
data/config/locales/en.yml
CHANGED
@@ -24,17 +24,39 @@ en:
|
|
24
24
|
missing: are not complete
|
25
25
|
too_many: You can choose a maximum of %{count}.
|
26
26
|
questionnaire:
|
27
|
-
request_invalid: There was
|
27
|
+
request_invalid: There was a problem handling the request. Please try again.
|
28
28
|
decidim:
|
29
|
+
download_your_data:
|
30
|
+
help:
|
31
|
+
answers:
|
32
|
+
answer: The answer to the question
|
33
|
+
id: The unique identifier of the answer
|
34
|
+
question: The question that was answered
|
35
|
+
questionnaire: The questionnaire that was answered
|
36
|
+
user: The user who answered the questionnaire
|
37
|
+
show:
|
38
|
+
answers: Answers export
|
39
|
+
survey_user_answers: Survey user answers
|
29
40
|
forms:
|
30
41
|
admin:
|
31
42
|
models:
|
32
43
|
components:
|
44
|
+
allow_answers: Allow answers
|
45
|
+
allow_editing_answers: Allow registered users to edit own survey answers
|
46
|
+
allow_unregistered: Allow unregistered users to answer the survey
|
47
|
+
allow_unregistered_help: If active, no login will be required in order to answer the survey. This may lead to poor or unreliable data and it will be more vulnerable to automated attacks. Use with caution! Mind that a participant could answer the same survey multiple times, by using different browsers or the "private browsing" feature of her web browser.
|
48
|
+
announcement: Announcement
|
49
|
+
clean_after_publish: Delete answers when publishing the survey
|
33
50
|
description: Description
|
51
|
+
ends_at: Answers accepted until
|
52
|
+
ends_at_help: Leave blank for no specific date
|
53
|
+
starts_at: Answers accepted from
|
54
|
+
starts_at_help: Leave blank for no specific date
|
34
55
|
tos: Terms of service
|
35
56
|
questionnaires:
|
36
57
|
actions:
|
37
58
|
back: Back to questions
|
59
|
+
publish_answers: Publish answers
|
38
60
|
show: Show responses
|
39
61
|
answer_option:
|
40
62
|
answer_option: Answer option
|
@@ -79,16 +101,18 @@ en:
|
|
79
101
|
edit:
|
80
102
|
save: Save
|
81
103
|
title: Edit questionnaire
|
82
|
-
|
104
|
+
edit_questions:
|
83
105
|
add_question: Add question
|
84
106
|
add_separator: Add separator
|
85
107
|
add_title_and_description: Add title and description
|
86
|
-
|
108
|
+
save: Save
|
109
|
+
title: Questions
|
110
|
+
form:
|
111
|
+
add_question: Add question
|
87
112
|
collapse: Collapse all questions
|
88
113
|
expand: Expand all questions
|
89
114
|
preview: Preview
|
90
115
|
title: Edit form for %{questionnaire_for}
|
91
|
-
unpublished_warning: The form is not published. You may modify its questions, but doing so will delete current answers.
|
92
116
|
matrix_row:
|
93
117
|
matrix_row: Row
|
94
118
|
remove: Remove
|
@@ -107,6 +131,13 @@ en:
|
|
107
131
|
remove: Remove
|
108
132
|
statement: Statement
|
109
133
|
up: Up
|
134
|
+
questions_form:
|
135
|
+
already_answered_warning: The form is already answered by some users so you cannot modify its questions.
|
136
|
+
collapse: Collapse all questions
|
137
|
+
expand: Expand all questions
|
138
|
+
unpublished_warning: The form is not published. You may modify its questions, but doing so will delete current answers.
|
139
|
+
update:
|
140
|
+
success: Survey questions successfully saved.
|
110
141
|
separator:
|
111
142
|
down: Down
|
112
143
|
remove: Remove
|
@@ -125,6 +156,9 @@ en:
|
|
125
156
|
invalid: There was a problem saving the form.
|
126
157
|
success: Form successfully saved.
|
127
158
|
admin_log:
|
159
|
+
question:
|
160
|
+
publish_answers: "%{user_name} published the %{resource_name} question's answers on the %{space_name} space"
|
161
|
+
unpublish_answers: "%{user_name} unpublished the %{resource_name} question's answers on the %{space_name} space"
|
128
162
|
questionnaire:
|
129
163
|
update: "%{user_name} updated the %{resource_name} questionnaire"
|
130
164
|
errors:
|
@@ -167,6 +201,9 @@ en:
|
|
167
201
|
questionnaire_answered:
|
168
202
|
body: You have already answered this form.
|
169
203
|
title: Already answered
|
204
|
+
questionnaire_answered_edit:
|
205
|
+
body: You have already answered this form. %{link}
|
206
|
+
edit: Edit your answers
|
170
207
|
questionnaire_closed:
|
171
208
|
body: The form is closed and cannot be answered.
|
172
209
|
title: Form closed
|
@@ -181,9 +218,12 @@ en:
|
|
181
218
|
tos_agreement: By participating you accept its Terms of Service
|
182
219
|
step_navigation:
|
183
220
|
show:
|
184
|
-
|
221
|
+
are_you_sure_edit: You will be able to edit your answers. Are you sure?
|
222
|
+
are_you_sure_edit_guest: If you want to be able to edit your answers afterwards, then you need to log in or create an account.
|
223
|
+
are_you_sure_no_edit: This action cannot be undone and you will not be able to edit your answers. Are you sure?
|
185
224
|
back: Back
|
186
225
|
continue: Continue
|
226
|
+
disallowed: You are not allowed to edit your answers.
|
187
227
|
submit: Submit
|
188
228
|
user_answers_serializer:
|
189
229
|
body: Answer
|
data/config/locales/es-MX.yml
CHANGED
@@ -21,25 +21,47 @@ es-MX:
|
|
21
21
|
body:
|
22
22
|
too_long: es demasiado largo
|
23
23
|
choices:
|
24
|
-
missing: no están
|
24
|
+
missing: no están completos
|
25
25
|
too_many: Puedes elegir un máximo de %{count} opciones.
|
26
26
|
questionnaire:
|
27
|
-
request_invalid:
|
27
|
+
request_invalid: Se ha producido un problema al procesar la solicitud. Por favor, vuelve a intentarlo.
|
28
28
|
decidim:
|
29
|
+
download_your_data:
|
30
|
+
help:
|
31
|
+
answers:
|
32
|
+
answer: La respuesta a la pregunta
|
33
|
+
id: El identificador único de la respuesta
|
34
|
+
question: La pregunta que se respondió
|
35
|
+
questionnaire: La encuesta que fue respondida
|
36
|
+
user: La usuaria que respondió a la encuesta
|
37
|
+
show:
|
38
|
+
answers: Exportar las respuestas
|
39
|
+
survey_user_answers: Respuestas de las usuarias a la encuesta
|
29
40
|
forms:
|
30
41
|
admin:
|
31
42
|
models:
|
32
43
|
components:
|
44
|
+
allow_answers: Permitir respuestas
|
45
|
+
allow_editing_answers: Permitir a las usuarias registradas editar sus respuestas en la encuesta
|
46
|
+
allow_unregistered: Permitir a las usuarias no registradas responder a la encuesta
|
47
|
+
allow_unregistered_help: Si está activo, no será necesario iniciar sesión para responder a la encuesta. Esto puede llevar a datos pobres o poco fiables y será más vulnerable a ataques automatizados. ¡Usar con precaución! Es importante que un participante pueda responder a la misma encuesta varias veces, utilizando diferentes navegadores o la función de "navegación privada" de su navegador web.
|
48
|
+
announcement: Aviso
|
49
|
+
clean_after_publish: Borrar respuestas al publicar la encuesta
|
33
50
|
description: Descripción
|
51
|
+
ends_at: Respuestas aceptadas hasta
|
52
|
+
ends_at_help: Dejar en blanco si no hay ninguna fecha específica
|
53
|
+
starts_at: Respuestas aceptadas desde
|
54
|
+
starts_at_help: Dejar en blanco si no hay ninguna fecha específica
|
34
55
|
tos: Términos y condiciones de uso
|
35
56
|
questionnaires:
|
36
57
|
actions:
|
37
58
|
back: Volver a las preguntas
|
59
|
+
publish_answers: Publicar respuestas
|
38
60
|
show: Mostrar las respuestas
|
39
61
|
answer_option:
|
40
62
|
answer_option: Opción de respuesta
|
41
63
|
free_text: Texto libre
|
42
|
-
remove:
|
64
|
+
remove: Retirar
|
43
65
|
statement: Declaración
|
44
66
|
answers:
|
45
67
|
actions:
|
@@ -55,7 +77,7 @@ es-MX:
|
|
55
77
|
export_response:
|
56
78
|
title: survey_user_answers_%{token}
|
57
79
|
index:
|
58
|
-
title: "%{total}
|
80
|
+
title: "%{total} total de respuestas"
|
59
81
|
show:
|
60
82
|
title: 'Respuesta #%{number}'
|
61
83
|
display_condition:
|
@@ -79,16 +101,18 @@ es-MX:
|
|
79
101
|
edit:
|
80
102
|
save: Guardar
|
81
103
|
title: Editar el cuestionario
|
82
|
-
|
104
|
+
edit_questions:
|
83
105
|
add_question: Añadir pregunta
|
84
106
|
add_separator: Añadir separador
|
85
107
|
add_title_and_description: Añadir título y descripción
|
86
|
-
|
108
|
+
save: Guardar
|
109
|
+
title: Preguntas
|
110
|
+
form:
|
111
|
+
add_question: Añadir pregunta
|
87
112
|
collapse: Contraer todas las preguntas
|
88
113
|
expand: Expandir todos las preguntas
|
89
114
|
preview: Previsualizar
|
90
115
|
title: Editar formulario para %{questionnaire_for}
|
91
|
-
unpublished_warning: El formulario no está publicado. Puedes modificar sus preguntas, pero al hacerlo se borrarán las respuestas actuales.
|
92
116
|
matrix_row:
|
93
117
|
matrix_row: Fila
|
94
118
|
remove: Retirar
|
@@ -107,6 +131,13 @@ es-MX:
|
|
107
131
|
remove: Borrar
|
108
132
|
statement: Declaración
|
109
133
|
up: Arriba
|
134
|
+
questions_form:
|
135
|
+
already_answered_warning: No puedes modificar las preguntas porque algunas participantes ya han respondido el formulario.
|
136
|
+
collapse: Contraer todas las preguntas
|
137
|
+
expand: Desplegar todas las preguntas
|
138
|
+
unpublished_warning: El formulario no está publicado. Puedes modificar sus preguntas, pero al hacerlo se borrarán las respuestas actuales.
|
139
|
+
update:
|
140
|
+
success: Pregunta/s añadida/s correctamente a la encuesta.
|
110
141
|
separator:
|
111
142
|
down: Bajar
|
112
143
|
remove: Eliminar
|
@@ -125,6 +156,9 @@ es-MX:
|
|
125
156
|
invalid: Ha habido errores al guardar el cuestionario.
|
126
157
|
success: Formulario guardado correctamente.
|
127
158
|
admin_log:
|
159
|
+
question:
|
160
|
+
publish_answers: "%{user_name} publicó respuestas a las preguntas de la encuesta %{resource_name} en el espacio de participación %{space_name}"
|
161
|
+
unpublish_answers: "%{user_name} despublicó respuestas a las preguntas de la encuesta %{resource_name} en el espacio de participación %{space_name}"
|
128
162
|
questionnaire:
|
129
163
|
update: "%{user_name} actualizó el cuestionario %{resource_name}"
|
130
164
|
errors:
|
@@ -150,7 +184,7 @@ es-MX:
|
|
150
184
|
questionnaires:
|
151
185
|
answer:
|
152
186
|
invalid: Ha habido errores al responder al cuestionario.
|
153
|
-
max_choices_alert:
|
187
|
+
max_choices_alert: Hay demasiadas opciones seleccionadas
|
154
188
|
success: Has respondido al cuestionario con éxito.
|
155
189
|
question:
|
156
190
|
max_choices: 'Opciones máximas: %{n}'
|
@@ -158,8 +192,8 @@ es-MX:
|
|
158
192
|
answer_questionnaire:
|
159
193
|
already_have_an_account?: '¿Ya tienes una cuenta?'
|
160
194
|
are_you_new?: '¿Eres una nueva usuaria?'
|
161
|
-
sign_in_description: Inicia
|
162
|
-
sign_up_description: Crea una cuenta de participante para
|
195
|
+
sign_in_description: Inicia sesión para realizar la encuesta
|
196
|
+
sign_up_description: Crea una cuenta de participante para realizar la encuesta
|
163
197
|
title: Responde al cuestionario
|
164
198
|
current_step: Paso %{step}
|
165
199
|
empty: Aún no hay preguntas configuradas para este formulario.
|
@@ -167,6 +201,9 @@ es-MX:
|
|
167
201
|
questionnaire_answered:
|
168
202
|
body: Ya has respondido este cuestionario.
|
169
203
|
title: Ya has respondido
|
204
|
+
questionnaire_answered_edit:
|
205
|
+
body: 'Ya has respondido a este formulario: %{link}'
|
206
|
+
edit: Editar las respuestas
|
170
207
|
questionnaire_closed:
|
171
208
|
body: El cuestionario está cerrado y ya no puedes responder.
|
172
209
|
title: Cuestionario cerrado
|
@@ -181,18 +218,21 @@ es-MX:
|
|
181
218
|
tos_agreement: Al responder aceptas los Términos y condiciones de uso
|
182
219
|
step_navigation:
|
183
220
|
show:
|
184
|
-
|
221
|
+
are_you_sure_edit: Podrás editar tus respuestas. ¿Seguro que quieres continuar?
|
222
|
+
are_you_sure_edit_guest: Si quieres poder editar tus respuestas más tarde, necesitas inicies tu sesión o crees una cuenta.
|
223
|
+
are_you_sure_no_edit: Esta acción no se puede deshacer y no podrás editar tus respuestas. ¿Seguro que quieres continuar?
|
185
224
|
back: Atrás
|
186
225
|
continue: Continuar
|
226
|
+
disallowed: No puedes editar tus respuestas.
|
187
227
|
submit: Enviar
|
188
228
|
user_answers_serializer:
|
189
229
|
body: Respuesta
|
190
230
|
completion: Finalización
|
191
231
|
created_at: Respondido en
|
192
232
|
id: ID de respuesta
|
193
|
-
ip_hash: Hash de
|
233
|
+
ip_hash: Hash de Dirección IP
|
194
234
|
question: Pregunta
|
195
|
-
registered:
|
235
|
+
registered: Registrado
|
196
236
|
session_token: Identificador de usuaria
|
197
|
-
unregistered: No
|
198
|
-
user_status: Estado
|
237
|
+
unregistered: No registrado
|
238
|
+
user_status: Estado del usuario
|
data/config/locales/es-PY.yml
CHANGED
@@ -21,25 +21,47 @@ es-PY:
|
|
21
21
|
body:
|
22
22
|
too_long: es demasiado largo
|
23
23
|
choices:
|
24
|
-
missing: no están
|
24
|
+
missing: no están completos
|
25
25
|
too_many: Puedes elegir un máximo de %{count} opciones.
|
26
26
|
questionnaire:
|
27
|
-
request_invalid:
|
27
|
+
request_invalid: Se ha producido un problema al procesar la solicitud. Por favor, vuelve a intentarlo.
|
28
28
|
decidim:
|
29
|
+
download_your_data:
|
30
|
+
help:
|
31
|
+
answers:
|
32
|
+
answer: La respuesta a la pregunta
|
33
|
+
id: El identificador único de la respuesta
|
34
|
+
question: La pregunta que se respondió
|
35
|
+
questionnaire: La encuesta que fue respondida
|
36
|
+
user: La usuaria que respondió a la encuesta
|
37
|
+
show:
|
38
|
+
answers: Exportar las respuestas
|
39
|
+
survey_user_answers: Respuestas de las usuarias a la encuesta
|
29
40
|
forms:
|
30
41
|
admin:
|
31
42
|
models:
|
32
43
|
components:
|
44
|
+
allow_answers: Permitir respuestas
|
45
|
+
allow_editing_answers: Permitir a las usuarias registradas editar sus respuestas en la encuesta
|
46
|
+
allow_unregistered: Permitir a las usuarias no registradas responder a la encuesta
|
47
|
+
allow_unregistered_help: Si está activo, no será necesario iniciar sesión para responder a la encuesta. Esto puede llevar a datos pobres o poco fiables y será más vulnerable a ataques automatizados. ¡Usar con precaución! Es importante que un participante pueda responder a la misma encuesta varias veces, utilizando diferentes navegadores o la función de "navegación privada" de su navegador web.
|
48
|
+
announcement: Aviso
|
49
|
+
clean_after_publish: Borrar respuestas al publicar la encuesta
|
33
50
|
description: Descripción
|
51
|
+
ends_at: Respuestas aceptadas hasta
|
52
|
+
ends_at_help: Dejar en blanco si no hay ninguna fecha específica
|
53
|
+
starts_at: Respuestas aceptadas desde
|
54
|
+
starts_at_help: Dejar en blanco si no hay ninguna fecha específica
|
34
55
|
tos: Términos y condiciones de uso
|
35
56
|
questionnaires:
|
36
57
|
actions:
|
37
58
|
back: Volver a las preguntas
|
59
|
+
publish_answers: Publicar respuestas
|
38
60
|
show: Mostrar las respuestas
|
39
61
|
answer_option:
|
40
62
|
answer_option: Opción de respuesta
|
41
63
|
free_text: Texto libre
|
42
|
-
remove:
|
64
|
+
remove: Retirar
|
43
65
|
statement: Declaración
|
44
66
|
answers:
|
45
67
|
actions:
|
@@ -55,7 +77,7 @@ es-PY:
|
|
55
77
|
export_response:
|
56
78
|
title: survey_user_answers_%{token}
|
57
79
|
index:
|
58
|
-
title: "%{total}
|
80
|
+
title: "%{total} total de respuestas"
|
59
81
|
show:
|
60
82
|
title: 'Respuesta #%{number}'
|
61
83
|
display_condition:
|
@@ -79,16 +101,18 @@ es-PY:
|
|
79
101
|
edit:
|
80
102
|
save: Guardar
|
81
103
|
title: Editar el cuestionario
|
82
|
-
|
104
|
+
edit_questions:
|
83
105
|
add_question: Añadir pregunta
|
84
106
|
add_separator: Añadir separador
|
85
107
|
add_title_and_description: Añadir título y descripción
|
86
|
-
|
108
|
+
save: Guardar
|
109
|
+
title: Preguntas
|
110
|
+
form:
|
111
|
+
add_question: Añadir pregunta
|
87
112
|
collapse: Contraer todas las preguntas
|
88
113
|
expand: Expandir todos las preguntas
|
89
114
|
preview: Previsualizar
|
90
115
|
title: Editar formulario para %{questionnaire_for}
|
91
|
-
unpublished_warning: El formulario no está publicado. Puedes modificar sus preguntas, pero al hacerlo se borrarán las respuestas actuales.
|
92
116
|
matrix_row:
|
93
117
|
matrix_row: Fila
|
94
118
|
remove: Retirar
|
@@ -107,6 +131,13 @@ es-PY:
|
|
107
131
|
remove: Borrar
|
108
132
|
statement: Declaración
|
109
133
|
up: Arriba
|
134
|
+
questions_form:
|
135
|
+
already_answered_warning: No puedes modificar las preguntas porque algunas participantes ya han respondido el formulario.
|
136
|
+
collapse: Contraer todas las preguntas
|
137
|
+
expand: Desplegar todas las preguntas
|
138
|
+
unpublished_warning: El formulario no está publicado. Puedes modificar sus preguntas, pero al hacerlo se borrarán las respuestas actuales.
|
139
|
+
update:
|
140
|
+
success: Pregunta/s añadida/s correctamente a la encuesta.
|
110
141
|
separator:
|
111
142
|
down: Bajar
|
112
143
|
remove: Eliminar
|
@@ -125,6 +156,9 @@ es-PY:
|
|
125
156
|
invalid: Ha habido errores al guardar el cuestionario.
|
126
157
|
success: Formulario guardado correctamente.
|
127
158
|
admin_log:
|
159
|
+
question:
|
160
|
+
publish_answers: "%{user_name} publicó respuestas a las preguntas de la encuesta %{resource_name} en el espacio de participación %{space_name}"
|
161
|
+
unpublish_answers: "%{user_name} despublicó respuestas a las preguntas de la encuesta %{resource_name} en el espacio de participación %{space_name}"
|
128
162
|
questionnaire:
|
129
163
|
update: "%{user_name} actualizó el cuestionario %{resource_name}"
|
130
164
|
errors:
|
@@ -150,7 +184,7 @@ es-PY:
|
|
150
184
|
questionnaires:
|
151
185
|
answer:
|
152
186
|
invalid: Ha habido errores al responder al cuestionario.
|
153
|
-
max_choices_alert:
|
187
|
+
max_choices_alert: Hay demasiadas opciones seleccionadas
|
154
188
|
success: Has respondido al cuestionario con éxito.
|
155
189
|
question:
|
156
190
|
max_choices: 'Opciones máximas: %{n}'
|
@@ -158,8 +192,8 @@ es-PY:
|
|
158
192
|
answer_questionnaire:
|
159
193
|
already_have_an_account?: '¿Ya tienes una cuenta?'
|
160
194
|
are_you_new?: '¿Eres una nueva usuaria?'
|
161
|
-
sign_in_description: Inicia
|
162
|
-
sign_up_description: Crea una cuenta de participante para
|
195
|
+
sign_in_description: Inicia sesión para realizar la encuesta
|
196
|
+
sign_up_description: Crea una cuenta de participante para realizar la encuesta
|
163
197
|
title: Responde al cuestionario
|
164
198
|
current_step: Paso %{step}
|
165
199
|
empty: Aún no hay preguntas configuradas para este formulario.
|
@@ -167,6 +201,9 @@ es-PY:
|
|
167
201
|
questionnaire_answered:
|
168
202
|
body: Ya has respondido este cuestionario.
|
169
203
|
title: Ya has respondido
|
204
|
+
questionnaire_answered_edit:
|
205
|
+
body: 'Ya has respondido a este formulario: %{link}'
|
206
|
+
edit: Editar las respuestas
|
170
207
|
questionnaire_closed:
|
171
208
|
body: El cuestionario está cerrado y ya no puedes responder.
|
172
209
|
title: Cuestionario cerrado
|
@@ -181,18 +218,21 @@ es-PY:
|
|
181
218
|
tos_agreement: Al responder aceptas los Términos y condiciones de uso
|
182
219
|
step_navigation:
|
183
220
|
show:
|
184
|
-
|
221
|
+
are_you_sure_edit: Podrás editar tus respuestas. ¿Seguro que quieres continuar?
|
222
|
+
are_you_sure_edit_guest: Si quieres poder editar tus respuestas más tarde, necesitas inicies tu sesión o crees una cuenta.
|
223
|
+
are_you_sure_no_edit: Esta acción no se puede deshacer y no podrás editar tus respuestas. ¿Seguro que quieres continuar?
|
185
224
|
back: Atrás
|
186
225
|
continue: Continuar
|
226
|
+
disallowed: No puedes editar tus respuestas.
|
187
227
|
submit: Enviar
|
188
228
|
user_answers_serializer:
|
189
229
|
body: Respuesta
|
190
230
|
completion: Finalización
|
191
231
|
created_at: Respondido en
|
192
232
|
id: ID de respuesta
|
193
|
-
ip_hash: Hash de
|
233
|
+
ip_hash: Hash de Dirección IP
|
194
234
|
question: Pregunta
|
195
|
-
registered:
|
235
|
+
registered: Registrado
|
196
236
|
session_token: Identificador de usuaria
|
197
|
-
unregistered: No
|
198
|
-
user_status: Estado
|
237
|
+
unregistered: No registrado
|
238
|
+
user_status: Estado del usuario
|
data/config/locales/es.yml
CHANGED
@@ -21,20 +21,42 @@ es:
|
|
21
21
|
body:
|
22
22
|
too_long: es demasiado largo
|
23
23
|
choices:
|
24
|
-
missing: no están
|
24
|
+
missing: no están completos
|
25
25
|
too_many: Puedes elegir un máximo de %{count} opciones.
|
26
26
|
questionnaire:
|
27
|
-
request_invalid:
|
27
|
+
request_invalid: Se ha producido un problema al procesar la solicitud. Por favor, vuelve a intentarlo.
|
28
28
|
decidim:
|
29
|
+
download_your_data:
|
30
|
+
help:
|
31
|
+
answers:
|
32
|
+
answer: La respuesta a la pregunta
|
33
|
+
id: El identificador único de la respuesta
|
34
|
+
question: La pregunta que se respondió
|
35
|
+
questionnaire: La encuesta que fue respondida
|
36
|
+
user: La usuaria que respondió a la encuesta
|
37
|
+
show:
|
38
|
+
answers: Exportar las respuestas
|
39
|
+
survey_user_answers: Respuestas de las usuarias a la encuesta
|
29
40
|
forms:
|
30
41
|
admin:
|
31
42
|
models:
|
32
43
|
components:
|
44
|
+
allow_answers: Permitir respuestas
|
45
|
+
allow_editing_answers: Permitir a las usuarias registradas editar sus respuestas en la encuesta
|
46
|
+
allow_unregistered: Permitir a las usuarias no registradas responder a la encuesta
|
47
|
+
allow_unregistered_help: Si está activo, no será necesario iniciar sesión para responder a la encuesta. Esto puede llevar a datos pobres o poco fiables y será más vulnerable a ataques automatizados. ¡Usar con precaución! Es importante que un participante pueda responder a la misma encuesta varias veces, utilizando diferentes navegadores o la función de "navegación privada" de su navegador web.
|
48
|
+
announcement: Aviso
|
49
|
+
clean_after_publish: Borrar respuestas al publicar la encuesta
|
33
50
|
description: Descripción
|
51
|
+
ends_at: Respuestas aceptadas hasta
|
52
|
+
ends_at_help: Dejar en blanco si no hay ninguna fecha específica
|
53
|
+
starts_at: Respuestas aceptadas desde
|
54
|
+
starts_at_help: Dejar en blanco si no hay ninguna fecha específica
|
34
55
|
tos: Términos y condiciones de uso
|
35
56
|
questionnaires:
|
36
57
|
actions:
|
37
58
|
back: Volver a las preguntas
|
59
|
+
publish_answers: Publicar respuestas
|
38
60
|
show: Mostrar las respuestas
|
39
61
|
answer_option:
|
40
62
|
answer_option: Opción de respuesta
|
@@ -55,7 +77,7 @@ es:
|
|
55
77
|
export_response:
|
56
78
|
title: survey_user_answers_%{token}
|
57
79
|
index:
|
58
|
-
title: "%{total} respuestas
|
80
|
+
title: "%{total} respuestas totales"
|
59
81
|
show:
|
60
82
|
title: 'Respuesta #%{number}'
|
61
83
|
display_condition:
|
@@ -79,16 +101,18 @@ es:
|
|
79
101
|
edit:
|
80
102
|
save: Guardar
|
81
103
|
title: Editar el cuestionario
|
82
|
-
|
104
|
+
edit_questions:
|
83
105
|
add_question: Añadir pregunta
|
84
106
|
add_separator: Añadir separador
|
85
107
|
add_title_and_description: Añadir título y descripción
|
86
|
-
|
108
|
+
save: Guardar
|
109
|
+
title: Preguntas
|
110
|
+
form:
|
111
|
+
add_question: Añadir pregunta
|
87
112
|
collapse: Contraer todas las preguntas
|
88
113
|
expand: Expandir todos las preguntas
|
89
114
|
preview: Previsualizar
|
90
115
|
title: Editar formulario para %{questionnaire_for}
|
91
|
-
unpublished_warning: El formulario no está publicado. Puedes modificar sus preguntas, pero al hacerlo se borrarán las respuestas actuales.
|
92
116
|
matrix_row:
|
93
117
|
matrix_row: Fila
|
94
118
|
remove: Eliminar
|
@@ -107,6 +131,13 @@ es:
|
|
107
131
|
remove: Eliminar
|
108
132
|
statement: Declaración
|
109
133
|
up: Arriba
|
134
|
+
questions_form:
|
135
|
+
already_answered_warning: No puedes modificar las preguntas porque algunas participantes ya han respondido el formulario.
|
136
|
+
collapse: Contraer todas las preguntas
|
137
|
+
expand: Desplegar todas las preguntas
|
138
|
+
unpublished_warning: El formulario no está publicado. Puedes modificar sus preguntas, pero al hacerlo se borrarán las respuestas actuales.
|
139
|
+
update:
|
140
|
+
success: Pregunta/s añadida/s correctamente a la encuesta.
|
110
141
|
separator:
|
111
142
|
down: Bajar
|
112
143
|
remove: Eliminar
|
@@ -125,6 +156,9 @@ es:
|
|
125
156
|
invalid: Se ha producido un error al guardar el formulario.
|
126
157
|
success: Formulario guardado correctamente.
|
127
158
|
admin_log:
|
159
|
+
question:
|
160
|
+
publish_answers: "%{user_name} publicó respuestas a las preguntas de la encuesta %{resource_name} en el espacio de participación %{space_name}"
|
161
|
+
unpublish_answers: "%{user_name} despublicó respuestas a las preguntas de la encuesta %{resource_name} en el espacio de participación %{space_name}"
|
128
162
|
questionnaire:
|
129
163
|
update: "%{user_name} actualizó el cuestionario %{resource_name}"
|
130
164
|
errors:
|
@@ -150,7 +184,7 @@ es:
|
|
150
184
|
questionnaires:
|
151
185
|
answer:
|
152
186
|
invalid: Se ha producido un error al responder el formulario.
|
153
|
-
max_choices_alert:
|
187
|
+
max_choices_alert: Hay demasiadas opciones seleccionadas
|
154
188
|
success: Has respondido al formulario correctamente.
|
155
189
|
question:
|
156
190
|
max_choices: 'Opciones máximas: %{n}'
|
@@ -158,8 +192,8 @@ es:
|
|
158
192
|
answer_questionnaire:
|
159
193
|
already_have_an_account?: '¿Ya tienes una cuenta?'
|
160
194
|
are_you_new?: '¿Eres una nueva usuaria?'
|
161
|
-
sign_in_description: Inicia
|
162
|
-
sign_up_description: Crea una cuenta de participante para
|
195
|
+
sign_in_description: Inicia sesión para realizar la encuesta
|
196
|
+
sign_up_description: Crea una cuenta de participante para realizar la encuesta
|
163
197
|
title: Responde el formulario
|
164
198
|
current_step: Paso %{step}
|
165
199
|
empty: Aún no hay preguntas configuradas para este formulario.
|
@@ -167,6 +201,9 @@ es:
|
|
167
201
|
questionnaire_answered:
|
168
202
|
body: Ya has respondido a este formulario.
|
169
203
|
title: Ya has respondido
|
204
|
+
questionnaire_answered_edit:
|
205
|
+
body: 'Ya has respondido a este formulario: %{link}'
|
206
|
+
edit: Editar las respuestas
|
170
207
|
questionnaire_closed:
|
171
208
|
body: El formulario está cerrado y no puedes responder.
|
172
209
|
title: Formulario cerrado
|
@@ -181,18 +218,21 @@ es:
|
|
181
218
|
tos_agreement: Al participar aceptas los Términos y condiciones de uso
|
182
219
|
step_navigation:
|
183
220
|
show:
|
184
|
-
|
221
|
+
are_you_sure_edit: Podrás editar tus respuestas. ¿Seguro que quieres continuar?
|
222
|
+
are_you_sure_edit_guest: Si quieres poder editar tus respuestas más tarde, necesitas inicies tu sesión o crees una cuenta.
|
223
|
+
are_you_sure_no_edit: Esta acción no se puede deshacer y no podrás editar tus respuestas. ¿Seguro que quieres continuar?
|
185
224
|
back: Atrás
|
186
225
|
continue: Continuar
|
226
|
+
disallowed: No puedes editar tus respuestas.
|
187
227
|
submit: Enviar respuestas
|
188
228
|
user_answers_serializer:
|
189
229
|
body: Respuesta
|
190
230
|
completion: Finalización
|
191
231
|
created_at: Respondido el
|
192
232
|
id: Identificador de respuesta
|
193
|
-
ip_hash: Hash de
|
233
|
+
ip_hash: Hash de Dirección IP
|
194
234
|
question: Pregunta
|
195
|
-
registered:
|
235
|
+
registered: Registrado
|
196
236
|
session_token: Identificador de usuaria
|
197
|
-
unregistered: No
|
198
|
-
user_status: Estado
|
237
|
+
unregistered: No registrado
|
238
|
+
user_status: Estado del usuario
|