decidim-forms 0.29.6 → 0.30.0.rc1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/cells/decidim/forms/step_navigation_cell.rb +18 -5
- data/app/commands/decidim/forms/admin/update_questionnaire.rb +1 -82
- data/app/commands/decidim/forms/admin/update_questions.rb +109 -0
- data/app/commands/decidim/forms/answer_questionnaire.rb +10 -3
- data/app/controllers/decidim/forms/admin/concerns/has_questionnaire.rb +39 -3
- data/app/controllers/decidim/forms/admin/concerns/has_questionnaire_answers.rb +2 -2
- data/app/controllers/decidim/forms/concerns/has_questionnaire.rb +12 -4
- data/app/forms/decidim/forms/admin/display_condition_form.rb +1 -1
- data/app/forms/decidim/forms/admin/questionnaire_form.rb +0 -9
- data/app/forms/decidim/forms/admin/questions_form.rb +18 -0
- data/app/forms/decidim/forms/answer_choice_form.rb +5 -0
- data/app/forms/decidim/forms/answer_form.rb +1 -0
- data/app/forms/decidim/forms/questionnaire_form.rb +7 -0
- data/app/helpers/decidim/forms/admin/concerns/has_questionnaire_answers_pagination_helper.rb +1 -1
- data/app/helpers/decidim/forms/admin/concerns/has_questionnaire_answers_url_helper.rb +5 -5
- data/app/jobs/decidim/forms/export_questionnaire_answers_job.rb +5 -1
- data/app/models/decidim/forms/answer_choice.rb +0 -2
- data/app/models/decidim/forms/answer_option.rb +1 -1
- data/app/models/decidim/forms/question.rb +10 -0
- data/app/packs/entrypoints/decidim_forms.js +0 -1
- data/app/packs/entrypoints/decidim_forms_admin.js +6 -0
- data/app/packs/src/decidim/forms/admin/publish_answers_buttons.js +72 -0
- data/app/packs/src/decidim/forms/forms.js +4 -25
- data/app/presenters/decidim/forms/admin/questionnaire_participant_presenter.rb +1 -1
- data/app/presenters/decidim/forms/admin_log/question_presenter.rb +31 -0
- data/app/queries/decidim/forms/questionnaire_user_answers.rb +1 -1
- data/app/views/decidim/forms/admin/questionnaires/_answer_option_template.html.erb +1 -1
- data/app/views/decidim/forms/admin/questionnaires/_display_condition_template.html.erb +1 -1
- data/app/views/decidim/forms/admin/questionnaires/_form.html.erb +0 -89
- data/app/views/decidim/forms/admin/questionnaires/_matrix_row_template.html.erb +1 -1
- data/app/views/decidim/forms/admin/questionnaires/_question.html.erb +14 -4
- data/app/views/decidim/forms/admin/questionnaires/_questions_form.html.erb +80 -0
- data/app/views/decidim/forms/admin/questionnaires/_separator.html.erb +10 -3
- data/app/views/decidim/forms/admin/questionnaires/_title_and_description.html.erb +11 -1
- data/app/views/decidim/forms/admin/questionnaires/edit.html.erb +0 -20
- data/app/views/decidim/forms/admin/questionnaires/edit_questions.html.erb +47 -0
- data/app/views/decidim/forms/questionnaires/_answer.html.erb +1 -1
- data/app/views/decidim/forms/questionnaires/_questionnaire.html.erb +8 -1
- data/app/views/decidim/forms/questionnaires/answers/_files.html.erb +1 -1
- data/app/views/decidim/forms/questionnaires/answers/_long_answer.html.erb +1 -1
- data/app/views/decidim/forms/questionnaires/answers/_short_answer.html.erb +1 -1
- data/app/views/decidim/forms/questionnaires/answers/_sorting.html.erb +12 -6
- data/app/views/decidim/forms/questionnaires/edit.html.erb +47 -0
- data/app/views/decidim/forms/questionnaires/show.html.erb +13 -2
- data/config/assets.rb +1 -2
- data/config/locales/ar.yml +18 -1
- data/config/locales/bg.yml +42 -2
- data/config/locales/ca.yml +59 -13
- data/config/locales/cs.yml +54 -8
- data/config/locales/de.yml +56 -10
- data/config/locales/el.yml +41 -2
- data/config/locales/en.yml +51 -5
- data/config/locales/es-MX.yml +61 -15
- data/config/locales/es-PY.yml +61 -15
- data/config/locales/es.yml +60 -14
- data/config/locales/eu.yml +58 -12
- data/config/locales/fi-plain.yml +56 -10
- data/config/locales/fi.yml +56 -10
- data/config/locales/fr-CA.yml +51 -13
- data/config/locales/fr.yml +51 -13
- data/config/locales/ga-IE.yml +9 -0
- data/config/locales/gl.yml +11 -1
- data/config/locales/hu.yml +14 -1
- data/config/locales/id-ID.yml +9 -1
- data/config/locales/it.yml +31 -3
- data/config/locales/ja.yml +13 -12
- data/config/locales/lb.yml +32 -1
- data/config/locales/lt.yml +41 -2
- data/config/locales/lv.yml +15 -1
- data/config/locales/nl.yml +29 -0
- data/config/locales/no.yml +33 -0
- data/config/locales/pl.yml +43 -2
- data/config/locales/pt-BR.yml +35 -0
- data/config/locales/pt.yml +31 -0
- data/config/locales/ro-RO.yml +50 -17
- data/config/locales/ru.yml +3 -2
- data/config/locales/sk.yml +12 -1
- data/config/locales/sl.yml +7 -0
- data/config/locales/sv.yml +17 -15
- data/config/locales/tr-TR.yml +27 -0
- data/config/locales/val-ES.yml +2 -0
- data/config/locales/zh-CN.yml +27 -0
- data/config/locales/zh-TW.yml +41 -2
- data/db/migrate/20190315203056_add_session_token_to_decidim_forms_answers.rb +1 -1
- data/db/migrate/20241122142230_add_survey_answers_published_at_to_questions.rb +7 -0
- data/decidim-forms.gemspec +1 -2
- data/lib/decidim/api/answer_option_type.rb +1 -1
- data/lib/decidim/api/question_type.rb +4 -4
- data/lib/decidim/api/questionnaire_type.rb +4 -4
- data/lib/decidim/exporters/form_pdf.rb +114 -11
- data/lib/decidim/forms/download_your_data_user_answers_serializer.rb +0 -4
- data/lib/decidim/forms/test/factories.rb +2 -2
- data/lib/decidim/forms/test/shared_examples/has_questionnaire.rb +46 -7
- data/lib/decidim/forms/test/shared_examples/manage_questionnaire_answers.rb +17 -17
- data/lib/decidim/forms/test/shared_examples/manage_questionnaires/add_display_conditions.rb +19 -21
- data/lib/decidim/forms/test/shared_examples/manage_questionnaires/add_questions.rb +70 -94
- data/lib/decidim/forms/test/shared_examples/manage_questionnaires/update_display_conditions.rb +15 -18
- data/lib/decidim/forms/test/shared_examples/manage_questionnaires/update_questions.rb +115 -247
- data/lib/decidim/forms/test/shared_examples/manage_questionnaires.rb +3 -29
- data/lib/decidim/forms/version.rb +1 -1
- data/lib/decidim/forms.rb +0 -1
- metadata +18 -33
- data/app/packs/entrypoints/decidim_questionnaire_answers_pdf.js +0 -1
- data/app/packs/entrypoints/decidim_questionnaire_answers_pdf.scss +0 -1
- data/app/packs/stylesheets/decidim/forms/questionnaire-answers-pdf.scss +0 -69
- data/app/views/decidim/forms/admin/questionnaires/answers/export/_answer.html.erb +0 -31
- data/app/views/decidim/forms/admin/questionnaires/answers/export/pdf.html.erb +0 -13
- data/app/views/layouts/decidim/forms/admin/questionnaires/questionnaire_answers.html.erb +0 -12
- data/config/initializers/wicked_pdf.rb +0 -26
- data/config/locales/ca-IT.yml +0 -192
- data/lib/decidim/exporters/form_pdf_controller_helper.rb +0 -13
data/config/locales/de.yml
CHANGED
|
@@ -4,8 +4,8 @@ de:
|
|
|
4
4
|
attributes:
|
|
5
5
|
answer:
|
|
6
6
|
body: Antworten
|
|
7
|
-
choices:
|
|
8
|
-
selected_choices: Ausgewählte
|
|
7
|
+
choices: Auswahl
|
|
8
|
+
selected_choices: Ausgewählte Auswahl
|
|
9
9
|
question:
|
|
10
10
|
max_choices: Maximale Anzahl von Auswahlmöglichkeiten
|
|
11
11
|
question_type: Art
|
|
@@ -22,19 +22,41 @@ de:
|
|
|
22
22
|
too_long: ist zu lang
|
|
23
23
|
choices:
|
|
24
24
|
missing: sind nicht vollständig
|
|
25
|
-
too_many: Sie können
|
|
25
|
+
too_many: Sie können ein Maximum von %{count} auswählen.
|
|
26
26
|
questionnaire:
|
|
27
|
-
request_invalid:
|
|
27
|
+
request_invalid: Bei der Verarbeitung der Anfrage ist ein Fehler auftreten. Bitte versuchen Sie es erneut.
|
|
28
28
|
decidim:
|
|
29
|
+
download_your_data:
|
|
30
|
+
help:
|
|
31
|
+
answers:
|
|
32
|
+
answer: Die Antwort auf die Frage
|
|
33
|
+
id: Die eindeutige Bezeichnung der Antwort
|
|
34
|
+
question: Die Frage, die beantwortet wurde
|
|
35
|
+
questionnaire: Der Fragebogen, der beantwortet wurde
|
|
36
|
+
user: Der Benutzer, der den Fragebogen beantwortet hat
|
|
37
|
+
show:
|
|
38
|
+
answers: Antworten exportieren
|
|
39
|
+
survey_user_answers: Antworten zur Benutzerumfrage
|
|
29
40
|
forms:
|
|
30
41
|
admin:
|
|
31
42
|
models:
|
|
32
43
|
components:
|
|
44
|
+
allow_answers: Antworten zulassen
|
|
45
|
+
allow_editing_answers: Registrierten Benutzern die Bearbeitung eigener Umfrageantworten ermöglichen
|
|
46
|
+
allow_unregistered: Nicht registrierten Benutzern erlauben, die Umfrage zu beantworten
|
|
47
|
+
allow_unregistered_help: Wenn aktiviert, ist keine Anmeldung erforderlich, um die Umfrage zu beantworten. Dies kann zu schlechten oder unzuverlässigen Daten führen und ist anfälliger für automatisierte Angriffe. Verwenden Sie diese Funktion mit Vorsicht! Beachten Sie, dass ein Teilnehmer die gleiche Umfrage mehrfach beantworten kann, indem er verschiedene Browser oder die "Private Browsing"-Funktion ihres Web-Browsers nutzt.
|
|
48
|
+
announcement: Ankündigung
|
|
49
|
+
clean_after_publish: Antworten bei Veröffentlichung des Fragebogens löschen
|
|
33
50
|
description: Beschreibung
|
|
51
|
+
ends_at: Antworten akzeptiert bis
|
|
52
|
+
ends_at_help: Leer lassen für unbestimmtes Datum
|
|
53
|
+
starts_at: Antworten akzeptiert von
|
|
54
|
+
starts_at_help: Leer lassen für unbestimmtes Datum
|
|
34
55
|
tos: Nutzungsbedingungen
|
|
35
56
|
questionnaires:
|
|
36
57
|
actions:
|
|
37
58
|
back: Zurück zu Fragen
|
|
59
|
+
publish_answers: Antworten veröffentlichen
|
|
38
60
|
show: Antworten anzeigen
|
|
39
61
|
answer_option:
|
|
40
62
|
answer_option: Antwortoption
|
|
@@ -43,7 +65,7 @@ de:
|
|
|
43
65
|
statement: Aussage
|
|
44
66
|
answers:
|
|
45
67
|
actions:
|
|
46
|
-
back: Zurück zu
|
|
68
|
+
back: Zurück zu Antworten
|
|
47
69
|
export: Exportieren
|
|
48
70
|
next: Nächste ›
|
|
49
71
|
previous: "‹ Vorherige"
|
|
@@ -79,16 +101,18 @@ de:
|
|
|
79
101
|
edit:
|
|
80
102
|
save: Speichern
|
|
81
103
|
title: Fragebogen bearbeiten
|
|
82
|
-
|
|
104
|
+
edit_questions:
|
|
83
105
|
add_question: Frage hinzufügen
|
|
84
106
|
add_separator: Trennzeichen hinzufügen
|
|
85
107
|
add_title_and_description: Titel und Beschreibung hinzufügen
|
|
86
|
-
|
|
108
|
+
save: Speichern
|
|
109
|
+
title: Fragen
|
|
110
|
+
form:
|
|
111
|
+
add_question: Frage hinzufügen
|
|
87
112
|
collapse: Alle Fragen einklappen
|
|
88
113
|
expand: Alle Fragen ausklappen
|
|
89
114
|
preview: Vorschau
|
|
90
115
|
title: Formular für %{questionnaire_for} bearbeiten
|
|
91
|
-
unpublished_warning: Das Formular ist nicht veröffentlicht. Sie können die Fragen ändern, aber dadurch werden die aktuellen Antworten gelöscht.
|
|
92
116
|
matrix_row:
|
|
93
117
|
matrix_row: Zeile
|
|
94
118
|
remove: Löschen
|
|
@@ -101,24 +125,40 @@ de:
|
|
|
101
125
|
any: Irgendein
|
|
102
126
|
collapse: Einklappen
|
|
103
127
|
description: Beschreibung
|
|
128
|
+
down: Nieder
|
|
104
129
|
expand: Ausklappen
|
|
105
130
|
question: Frage
|
|
106
131
|
remove: Löschen
|
|
107
132
|
statement: Aussage
|
|
133
|
+
up: Oben
|
|
134
|
+
questions_form:
|
|
135
|
+
already_answered_warning: Der Fragebogen wird bereits von einigen Benutzern beantwortet, sodass Sie die Fragen nicht ändern können.
|
|
136
|
+
collapse: Alle Fragen einklappen
|
|
137
|
+
expand: Alle Fragen ausklappen
|
|
138
|
+
unpublished_warning: Das Formular ist nicht veröffentlicht. Sie können die Fragen ändern, aber dadurch werden die aktuellen Antworten gelöscht.
|
|
139
|
+
update:
|
|
140
|
+
success: Umfrage erfolgreich gespeichert.
|
|
108
141
|
separator:
|
|
142
|
+
down: Runter
|
|
109
143
|
remove: Löschen
|
|
110
144
|
separator: Trennzeichen
|
|
145
|
+
up: Hoch
|
|
111
146
|
title_and_description:
|
|
112
147
|
collapse: Einklappen
|
|
113
148
|
description: Beschreibung
|
|
149
|
+
down: Runter
|
|
114
150
|
expand: Ausklappen
|
|
115
151
|
remove: Entfernen
|
|
116
152
|
title: Titel
|
|
117
153
|
title_and_description: Titel und Beschreibung
|
|
154
|
+
up: Hinauf
|
|
118
155
|
update:
|
|
119
156
|
invalid: Beim Speichern des Fragebogens sind Fehler aufgetreten.
|
|
120
157
|
success: Formular erfolgreich gespeichert.
|
|
121
158
|
admin_log:
|
|
159
|
+
question:
|
|
160
|
+
publish_answers: "%{user_name} hat die Antworten zu den Fragen %{resource_name} im Bereich %{space_name} veröffentlicht"
|
|
161
|
+
unpublish_answers: "%{user_name} hat die Antworten zu den Fragen %{resource_name} im Bereich %{space_name} verborgen"
|
|
122
162
|
questionnaire:
|
|
123
163
|
update: "%{user_name} hat die Umfrage %{resource_name} aktualisiert"
|
|
124
164
|
errors:
|
|
@@ -144,7 +184,7 @@ de:
|
|
|
144
184
|
questionnaires:
|
|
145
185
|
answer:
|
|
146
186
|
invalid: Bei der Beantwortung des Fragebogens sind Fehler aufgetreten.
|
|
147
|
-
max_choices_alert: Es
|
|
187
|
+
max_choices_alert: Es wurden zu viele Auswahlmöglichkeiten ausgewählt
|
|
148
188
|
success: Fragebogen erfolgreich beantwortet.
|
|
149
189
|
question:
|
|
150
190
|
max_choices: 'Max Auswahlmöglichkeiten: %{n}'
|
|
@@ -161,6 +201,9 @@ de:
|
|
|
161
201
|
questionnaire_answered:
|
|
162
202
|
body: Sie haben diesen Fragebogen bereits beantwortet.
|
|
163
203
|
title: Schon beantwortet
|
|
204
|
+
questionnaire_answered_edit:
|
|
205
|
+
body: Sie haben dieses Formular bereits beantwortet. %{link}
|
|
206
|
+
edit: Antworten bearbeiten
|
|
164
207
|
questionnaire_closed:
|
|
165
208
|
body: Der Fragebogen ist geschlossen und kann nicht beantwortet werden.
|
|
166
209
|
title: Fragebogen geschlossen
|
|
@@ -175,9 +218,12 @@ de:
|
|
|
175
218
|
tos_agreement: 'Mit Ihrer Teilnahme stimmen Sie folgenden Nutzungsbedingungen zu:'
|
|
176
219
|
step_navigation:
|
|
177
220
|
show:
|
|
178
|
-
|
|
221
|
+
are_you_sure_edit: Sie werden Ihre Antworten bearbeiten können. Sind Sie sicher?
|
|
222
|
+
are_you_sure_edit_guest: Wenn Sie Ihre Antworten nachträglich bearbeiten möchten, müssen Sie sich anmelden oder ein Konto erstellen.
|
|
223
|
+
are_you_sure_no_edit: Diese Aktion kann nicht rückgängig gemacht werden und Sie können Ihre Antworten nicht mehr bearbeiten. Sind Sie sicher?
|
|
179
224
|
back: Zurück
|
|
180
225
|
continue: Weiter
|
|
226
|
+
disallowed: Sie dürfen Ihre Antworten nicht bearbeiten.
|
|
181
227
|
submit: einreichen
|
|
182
228
|
user_answers_serializer:
|
|
183
229
|
body: Antwort
|
data/config/locales/el.yml
CHANGED
|
@@ -4,6 +4,8 @@ el:
|
|
|
4
4
|
attributes:
|
|
5
5
|
answer:
|
|
6
6
|
body: Απάντηση
|
|
7
|
+
choices: Επιλογές
|
|
8
|
+
selected_choices: Επιλεγμένες επιλογές
|
|
7
9
|
question:
|
|
8
10
|
max_choices: Μέγιστος αριθμός επιλογών
|
|
9
11
|
question_type: Τύπος
|
|
@@ -12,8 +14,14 @@ el:
|
|
|
12
14
|
max_characters: Όριο χαρακτήρων (αφήστε στο 0 αν δεν υπάρχει όριο)
|
|
13
15
|
errors:
|
|
14
16
|
models:
|
|
15
|
-
|
|
16
|
-
|
|
17
|
+
answer:
|
|
18
|
+
attributes:
|
|
19
|
+
add_documents:
|
|
20
|
+
needs_to_be_reattached: Πρέπει να επισυναφθεί ξανά
|
|
21
|
+
body:
|
|
22
|
+
too_long: είναι πολύ μεγάλο
|
|
23
|
+
choices:
|
|
24
|
+
missing: δεν έχουν ολοκληρωθεί
|
|
17
25
|
decidim:
|
|
18
26
|
forms:
|
|
19
27
|
admin:
|
|
@@ -27,14 +35,24 @@ el:
|
|
|
27
35
|
show: Εμφάνιση απαντήσεων
|
|
28
36
|
answer_option:
|
|
29
37
|
answer_option: Επιλογή απάντησης
|
|
38
|
+
free_text: Ελεύθερο κείμενο
|
|
30
39
|
remove: Κατάργηση
|
|
31
40
|
statement: Δήλωση
|
|
32
41
|
answers:
|
|
33
42
|
actions:
|
|
43
|
+
back: Επιστροφή στις απαντήσεις
|
|
44
|
+
export: Εξαγωγή
|
|
45
|
+
next: Επόμενη ›
|
|
46
|
+
previous: "‹ Προηγούμενη"
|
|
34
47
|
show: Εμφάνιση απαντήσεων
|
|
35
48
|
empty: Δεν υπάρχουν απαντήσεις ακόμη
|
|
49
|
+
export:
|
|
50
|
+
answer:
|
|
51
|
+
title: 'Απάντηση #%{number}'
|
|
36
52
|
export_response:
|
|
37
53
|
title: survey_user_answers_%{token}
|
|
54
|
+
index:
|
|
55
|
+
title: "%{total} συνολικές απαντήσεις"
|
|
38
56
|
show:
|
|
39
57
|
title: 'Απάντηση #%{number}'
|
|
40
58
|
display_condition:
|
|
@@ -76,26 +94,35 @@ el:
|
|
|
76
94
|
any: Οποιαδήποτε
|
|
77
95
|
collapse: Σύμπτυξη
|
|
78
96
|
description: Περιγραφή
|
|
97
|
+
down: Κάτω
|
|
79
98
|
expand: Ανάπτυξη
|
|
80
99
|
question: Ερώτηση
|
|
81
100
|
remove: Κατάργηση
|
|
82
101
|
statement: Δήλωση
|
|
102
|
+
up: Επάνω
|
|
83
103
|
separator:
|
|
104
|
+
down: Κάτω
|
|
84
105
|
remove: Κατάργηση
|
|
85
106
|
separator: Διαχωριστικό
|
|
107
|
+
up: Επάνω
|
|
86
108
|
title_and_description:
|
|
87
109
|
collapse: Σύμπτυξη
|
|
88
110
|
description: Περιγραφή
|
|
111
|
+
down: Κάτω
|
|
89
112
|
expand: Ανάπτυξη
|
|
90
113
|
remove: Αφαίρεση
|
|
91
114
|
title: Τίτλος
|
|
92
115
|
title_and_description: Τίτλος και περιγραφή
|
|
116
|
+
up: Πάνω
|
|
93
117
|
update:
|
|
94
118
|
invalid: Υπήρξε ένα πρόβλημα κατά την αποθήκευση της φόρμας.
|
|
95
119
|
success: Η φόρμα αποθηκεύτηκε επιτυχώς.
|
|
96
120
|
admin_log:
|
|
97
121
|
questionnaire:
|
|
98
122
|
update: "Ο/Η %{user_name} ενημέρωσε το %{resource_name} ερωτηματολόγιο"
|
|
123
|
+
errors:
|
|
124
|
+
answer:
|
|
125
|
+
body: Το σώμα δεν μπορεί να είναι κενό
|
|
99
126
|
images:
|
|
100
127
|
dimensions: "Π %{width} x Υ %{height} px"
|
|
101
128
|
processors:
|
|
@@ -111,14 +138,20 @@ el:
|
|
|
111
138
|
single_option: Μία επιλογή
|
|
112
139
|
sorting: Ταξινόμηση
|
|
113
140
|
title_and_description: Τίτλος και περιγραφή
|
|
141
|
+
questionnaire_answer_presenter:
|
|
142
|
+
download_attachment: Λήψη συνημμένου
|
|
114
143
|
questionnaires:
|
|
115
144
|
answer:
|
|
116
145
|
invalid: Υπήρξε ένα πρόβλημα κατά την απάντηση της φόρμας.
|
|
146
|
+
max_choices_alert: Υπάρχουν πάρα πολλές επιλεγμένες επιλογές
|
|
117
147
|
success: Η φόρμα απαντήθηκε με επιτυχία.
|
|
118
148
|
question:
|
|
119
149
|
max_choices: 'Μέγιστες επιλογές: %{n}'
|
|
120
150
|
show:
|
|
121
151
|
answer_questionnaire:
|
|
152
|
+
already_have_an_account?: Έχετε ήδη λογαριασμό;
|
|
153
|
+
are_you_new?: Νέος χρήστης;
|
|
154
|
+
sign_up_description: Δημιουργήστε ένα λογαριασμό συμμετέχοντα για να κάνετε την έρευνα
|
|
122
155
|
title: Απαντήστε στη φόρμα
|
|
123
156
|
current_step: Βήμα %{step}
|
|
124
157
|
of_total_steps: από %{total_steps}
|
|
@@ -144,6 +177,12 @@ el:
|
|
|
144
177
|
submit: Υποβολή
|
|
145
178
|
user_answers_serializer:
|
|
146
179
|
body: Απάντηση
|
|
180
|
+
completion: Ολοκλήρωση
|
|
147
181
|
created_at: Απαντήθηκε στις
|
|
148
182
|
id: Αναγνωριστικό απάντησης
|
|
183
|
+
ip_hash: IP Hash
|
|
149
184
|
question: Ερώτηση
|
|
185
|
+
registered: Έχει εγγραφεί
|
|
186
|
+
session_token: Αναγνωριστικό χρήστη
|
|
187
|
+
unregistered: Δεν έχει εγγραφεί
|
|
188
|
+
user_status: Κατάσταση χρήστη
|
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
|
|
@@ -101,24 +125,40 @@ en:
|
|
|
101
125
|
any: Any
|
|
102
126
|
collapse: Collapse
|
|
103
127
|
description: Description
|
|
128
|
+
down: Down
|
|
104
129
|
expand: Expand
|
|
105
130
|
question: Question
|
|
106
131
|
remove: Remove
|
|
107
132
|
statement: Statement
|
|
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.
|
|
108
141
|
separator:
|
|
142
|
+
down: Down
|
|
109
143
|
remove: Remove
|
|
110
144
|
separator: Separator
|
|
145
|
+
up: Up
|
|
111
146
|
title_and_description:
|
|
112
147
|
collapse: Collapse
|
|
113
148
|
description: Description
|
|
149
|
+
down: Down
|
|
114
150
|
expand: Expand
|
|
115
151
|
remove: Remove
|
|
116
152
|
title: Title
|
|
117
153
|
title_and_description: Title and description
|
|
154
|
+
up: Up
|
|
118
155
|
update:
|
|
119
156
|
invalid: There was a problem saving the form.
|
|
120
157
|
success: Form successfully saved.
|
|
121
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"
|
|
122
162
|
questionnaire:
|
|
123
163
|
update: "%{user_name} updated the %{resource_name} questionnaire"
|
|
124
164
|
errors:
|
|
@@ -161,6 +201,9 @@ en:
|
|
|
161
201
|
questionnaire_answered:
|
|
162
202
|
body: You have already answered this form.
|
|
163
203
|
title: Already answered
|
|
204
|
+
questionnaire_answered_edit:
|
|
205
|
+
body: You have already answered this form. %{link}
|
|
206
|
+
edit: Edit your answers
|
|
164
207
|
questionnaire_closed:
|
|
165
208
|
body: The form is closed and cannot be answered.
|
|
166
209
|
title: Form closed
|
|
@@ -175,9 +218,12 @@ en:
|
|
|
175
218
|
tos_agreement: By participating you accept its Terms of Service
|
|
176
219
|
step_navigation:
|
|
177
220
|
show:
|
|
178
|
-
|
|
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?
|
|
179
224
|
back: Back
|
|
180
225
|
continue: Continue
|
|
226
|
+
disallowed: You are not allowed to edit your answers.
|
|
181
227
|
submit: Submit
|
|
182
228
|
user_answers_serializer:
|
|
183
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
|
|
@@ -101,24 +125,40 @@ es-MX:
|
|
|
101
125
|
any: Alguna
|
|
102
126
|
collapse: Contraer
|
|
103
127
|
description: Descripción
|
|
128
|
+
down: Abajo
|
|
104
129
|
expand: Expandir
|
|
105
130
|
question: Pregunta
|
|
106
131
|
remove: Borrar
|
|
107
132
|
statement: Declaración
|
|
133
|
+
up: Arriba
|
|
134
|
+
questions_form:
|
|
135
|
+
already_answered_warning: No puedes modificar las preguntas porque algunas participantes ya han respondido el formulario.
|
|
136
|
+
collapse: Contraer todas las preguntas
|
|
137
|
+
expand: Desplegar todas las preguntas
|
|
138
|
+
unpublished_warning: El formulario no está publicado. Puedes modificar sus preguntas, pero al hacerlo se borrarán las respuestas actuales.
|
|
139
|
+
update:
|
|
140
|
+
success: Pregunta/s añadida/s correctamente a la encuesta.
|
|
108
141
|
separator:
|
|
142
|
+
down: Bajar
|
|
109
143
|
remove: Eliminar
|
|
110
144
|
separator: Separador
|
|
145
|
+
up: Subir
|
|
111
146
|
title_and_description:
|
|
112
147
|
collapse: Contraer
|
|
113
148
|
description: Descripción
|
|
149
|
+
down: Bajar
|
|
114
150
|
expand: Expandir
|
|
115
151
|
remove: Eliminar
|
|
116
152
|
title: Título
|
|
117
153
|
title_and_description: Título y descripción
|
|
154
|
+
up: Subir
|
|
118
155
|
update:
|
|
119
156
|
invalid: Ha habido errores al guardar el cuestionario.
|
|
120
157
|
success: Formulario guardado correctamente.
|
|
121
158
|
admin_log:
|
|
159
|
+
question:
|
|
160
|
+
publish_answers: "%{user_name} publicó respuestas a las preguntas de la encuesta %{resource_name} en el espacio de participación %{space_name}"
|
|
161
|
+
unpublish_answers: "%{user_name} despublicó respuestas a las preguntas de la encuesta %{resource_name} en el espacio de participación %{space_name}"
|
|
122
162
|
questionnaire:
|
|
123
163
|
update: "%{user_name} actualizó el cuestionario %{resource_name}"
|
|
124
164
|
errors:
|
|
@@ -144,7 +184,7 @@ es-MX:
|
|
|
144
184
|
questionnaires:
|
|
145
185
|
answer:
|
|
146
186
|
invalid: Ha habido errores al responder al cuestionario.
|
|
147
|
-
max_choices_alert:
|
|
187
|
+
max_choices_alert: Hay demasiadas opciones seleccionadas
|
|
148
188
|
success: Has respondido al cuestionario con éxito.
|
|
149
189
|
question:
|
|
150
190
|
max_choices: 'Opciones máximas: %{n}'
|
|
@@ -152,8 +192,8 @@ es-MX:
|
|
|
152
192
|
answer_questionnaire:
|
|
153
193
|
already_have_an_account?: '¿Ya tienes una cuenta?'
|
|
154
194
|
are_you_new?: '¿Eres una nueva usuaria?'
|
|
155
|
-
sign_in_description: Inicia
|
|
156
|
-
sign_up_description: Crea una cuenta de participante para
|
|
195
|
+
sign_in_description: Inicia sesión para realizar la encuesta
|
|
196
|
+
sign_up_description: Crea una cuenta de participante para realizar la encuesta
|
|
157
197
|
title: Responde al cuestionario
|
|
158
198
|
current_step: Paso %{step}
|
|
159
199
|
empty: Aún no hay preguntas configuradas para este formulario.
|
|
@@ -161,6 +201,9 @@ es-MX:
|
|
|
161
201
|
questionnaire_answered:
|
|
162
202
|
body: Ya has respondido este cuestionario.
|
|
163
203
|
title: Ya has respondido
|
|
204
|
+
questionnaire_answered_edit:
|
|
205
|
+
body: 'Ya has respondido a este formulario: %{link}'
|
|
206
|
+
edit: Editar las respuestas
|
|
164
207
|
questionnaire_closed:
|
|
165
208
|
body: El cuestionario está cerrado y ya no puedes responder.
|
|
166
209
|
title: Cuestionario cerrado
|
|
@@ -175,18 +218,21 @@ es-MX:
|
|
|
175
218
|
tos_agreement: Al responder aceptas los Términos y condiciones de uso
|
|
176
219
|
step_navigation:
|
|
177
220
|
show:
|
|
178
|
-
|
|
221
|
+
are_you_sure_edit: Podrás editar tus respuestas. ¿Seguro que quieres continuar?
|
|
222
|
+
are_you_sure_edit_guest: Si quieres poder editar tus respuestas más tarde, necesitas inicies tu sesión o crees una cuenta.
|
|
223
|
+
are_you_sure_no_edit: Esta acción no se puede deshacer y no podrás editar tus respuestas. ¿Seguro que quieres continuar?
|
|
179
224
|
back: Atrás
|
|
180
225
|
continue: Continuar
|
|
226
|
+
disallowed: No puedes editar tus respuestas.
|
|
181
227
|
submit: Enviar
|
|
182
228
|
user_answers_serializer:
|
|
183
229
|
body: Respuesta
|
|
184
230
|
completion: Finalización
|
|
185
231
|
created_at: Respondido en
|
|
186
232
|
id: ID de respuesta
|
|
187
|
-
ip_hash: Hash de
|
|
233
|
+
ip_hash: Hash de Dirección IP
|
|
188
234
|
question: Pregunta
|
|
189
|
-
registered:
|
|
235
|
+
registered: Registrado
|
|
190
236
|
session_token: Identificador de usuaria
|
|
191
|
-
unregistered: No
|
|
192
|
-
user_status: Estado
|
|
237
|
+
unregistered: No registrado
|
|
238
|
+
user_status: Estado del usuario
|