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/fr.yml
CHANGED
@@ -17,24 +17,38 @@ fr:
|
|
17
17
|
answer:
|
18
18
|
attributes:
|
19
19
|
add_documents:
|
20
|
-
needs_to_be_reattached: Doit être
|
20
|
+
needs_to_be_reattached: Doit être téléchargé de nouveau
|
21
21
|
body:
|
22
22
|
too_long: est trop long
|
23
23
|
choices:
|
24
24
|
missing: ne sont pas complets
|
25
25
|
too_many: Vous pouvez choisir un maximum de %{count}.
|
26
26
|
questionnaire:
|
27
|
-
request_invalid: Une erreur s'est produite. Veuillez
|
27
|
+
request_invalid: Une erreur s'est produite lors du traitement de la requête. Veuillez essayer à nouveau.
|
28
28
|
decidim:
|
29
|
+
download_your_data:
|
30
|
+
show:
|
31
|
+
answers: Export des réponses
|
32
|
+
survey_user_answers: Réponses à l'enquête
|
29
33
|
forms:
|
30
34
|
admin:
|
31
35
|
models:
|
32
36
|
components:
|
37
|
+
allow_answers: Autoriser les réponses
|
38
|
+
allow_editing_answers: Autoriser les utilisateurs enregistrés à modifier leurs propres réponses à l'enquête
|
39
|
+
allow_unregistered: Autoriser les utilisateurs non enregistrés à répondre à l'enquête
|
40
|
+
announcement: Annonce
|
41
|
+
clean_after_publish: Supprimer les réponses lors de la publication de l’enquête
|
33
42
|
description: La description
|
43
|
+
ends_at: Réponses acceptées jusqu'au
|
44
|
+
ends_at_help: Laisser vide si aucune date spécifique
|
45
|
+
starts_at: Réponses acceptées à partir du
|
46
|
+
starts_at_help: Laisser vide si aucune date spécifique
|
34
47
|
tos: Conditions d'utilisation
|
35
48
|
questionnaires:
|
36
49
|
actions:
|
37
50
|
back: Retour aux questions
|
51
|
+
publish_answers: Publier les réponses
|
38
52
|
show: Afficher les réponses
|
39
53
|
answer_option:
|
40
54
|
answer_option: Option de réponse
|
@@ -51,11 +65,11 @@ fr:
|
|
51
65
|
empty: Pas encore de réponses
|
52
66
|
export:
|
53
67
|
answer:
|
54
|
-
title: 'Réponse
|
68
|
+
title: 'Réponse n°%{number}'
|
55
69
|
export_response:
|
56
70
|
title: réponses_utilisateur_sondage_%{token}
|
57
71
|
index:
|
58
|
-
title: "%{total} réponses
|
72
|
+
title: "%{total} réponses totales"
|
59
73
|
show:
|
60
74
|
title: 'Réponse n°%{number}'
|
61
75
|
display_condition:
|
@@ -79,16 +93,18 @@ fr:
|
|
79
93
|
edit:
|
80
94
|
save: sauvegarder
|
81
95
|
title: Modifier le questionnaire
|
82
|
-
|
96
|
+
edit_questions:
|
83
97
|
add_question: Ajouter une question
|
84
98
|
add_separator: Ajouter un séparateur
|
85
99
|
add_title_and_description: Ajouter un titre et une description
|
86
|
-
|
100
|
+
save: Enregistrer
|
101
|
+
title: Questions
|
102
|
+
form:
|
103
|
+
add_question: Ajouter une question
|
87
104
|
collapse: Réduire toutes les questions
|
88
105
|
expand: Développer toutes les questions
|
89
106
|
preview: Aperçu
|
90
107
|
title: Modifier le questionnaire pour %{questionnaire_for}
|
91
|
-
unpublished_warning: Le formulaire n'est pas publié. Vous pouvez modifier ses questions, mais cela supprimera les réponses actuelles.
|
92
108
|
matrix_row:
|
93
109
|
matrix_row: Ligne
|
94
110
|
remove: Retirer
|
@@ -107,6 +123,13 @@ fr:
|
|
107
123
|
remove: Retirer
|
108
124
|
statement: Déclaration
|
109
125
|
up: Monter
|
126
|
+
questions_form:
|
127
|
+
already_answered_warning: Certains utilisateurs ont déjà répondu au formulaire, vous ne pouvez donc pas modifier ses questions.
|
128
|
+
collapse: Replier toutes les questions
|
129
|
+
expand: Déplier toutes les questions
|
130
|
+
unpublished_warning: Le formulaire n'est pas publié. Vous pouvez modifier ses questions, mais cela supprimera les réponses actuelles.
|
131
|
+
update:
|
132
|
+
success: Les questions de l'enquête ont été sauvegardées avec succès.
|
110
133
|
separator:
|
111
134
|
down: Bas
|
112
135
|
remove: Retirer
|
@@ -125,11 +148,14 @@ fr:
|
|
125
148
|
invalid: Il y a eu des erreurs lors de la sauvegarde du questionnaire.
|
126
149
|
success: Le questionnaire a bien été sauvegardé.
|
127
150
|
admin_log:
|
151
|
+
question:
|
152
|
+
publish_answers: "%{user_name} a publié les réponses aux questions de %{resource_name} sur l'espace %{space_name}"
|
153
|
+
unpublish_answers: "%{user_name} a dépublié les réponses aux questions de %{resource_name} sur l'espace %{space_name}"
|
128
154
|
questionnaire:
|
129
155
|
update: "%{user_name} a modifié le questionnaire %{resource_name}"
|
130
156
|
errors:
|
131
157
|
answer:
|
132
|
-
body:
|
158
|
+
body: ne peut être vide
|
133
159
|
images:
|
134
160
|
dimensions: "%{width} x %{height} px"
|
135
161
|
processors:
|
@@ -156,10 +182,10 @@ fr:
|
|
156
182
|
max_choices: 'Choix maximum: %{n}'
|
157
183
|
show:
|
158
184
|
answer_questionnaire:
|
159
|
-
already_have_an_account?: Vous avez déjà un compte?
|
185
|
+
already_have_an_account?: Vous avez déjà un compte ?
|
160
186
|
are_you_new?: Nouvel utilisateur ?
|
161
187
|
sign_in_description: Connectez-vous pour répondre à l'enquête
|
162
|
-
sign_up_description:
|
188
|
+
sign_up_description: Créez votre compte utilisateur pour répondre à l'enquête
|
163
189
|
title: Répondez au questionnaire
|
164
190
|
current_step: Étape %{step}
|
165
191
|
empty: Aucune question configurée pour ce formulaire pour le moment.
|
@@ -167,6 +193,9 @@ fr:
|
|
167
193
|
questionnaire_answered:
|
168
194
|
body: Vous avez déjà répondu à ce questionnaire.
|
169
195
|
title: Déjà répondu
|
196
|
+
questionnaire_answered_edit:
|
197
|
+
body: Vous avez déjà répondu à ce formulaire. %{link}
|
198
|
+
edit: Modifier vos réponses
|
170
199
|
questionnaire_closed:
|
171
200
|
body: Le questionnaire est fermé et vous ne pouvez pas y répondre.
|
172
201
|
title: Questionnaire fermé
|
@@ -181,13 +210,16 @@ fr:
|
|
181
210
|
tos_agreement: En participant, vous acceptez ces conditions d'utilisation
|
182
211
|
step_navigation:
|
183
212
|
show:
|
184
|
-
|
213
|
+
are_you_sure_edit: Vous serez en mesure de modifier vos réponses. Êtes-vous sûr(e)?
|
214
|
+
are_you_sure_edit_guest: Si vous voulez pouvoir modifier vos réponses par la suite, vous devez vous connecter ou créer un compte.
|
215
|
+
are_you_sure_no_edit: Cette action ne peut pas être annulée et vous ne pourrez pas modifier vos réponses. Êtes-vous sûr(e) ?
|
185
216
|
back: Revenir en arrière
|
186
217
|
continue: Continuer
|
218
|
+
disallowed: Vous n'êtes pas autorisé(e) à modifier vos réponses.
|
187
219
|
submit: Soumettre
|
188
220
|
user_answers_serializer:
|
189
221
|
body: Répondre
|
190
|
-
completion:
|
222
|
+
completion: Fin
|
191
223
|
created_at: Répondu le
|
192
224
|
id: ID de réponse
|
193
225
|
ip_hash: Hachage IP
|
@@ -195,4 +227,4 @@ fr:
|
|
195
227
|
registered: Enregistré
|
196
228
|
session_token: Identifiant de l'utilisateur
|
197
229
|
unregistered: Non enregistré
|
198
|
-
user_status:
|
230
|
+
user_status: Statut de l'utilisateur
|
data/config/locales/ga-IE.yml
CHANGED
@@ -4,6 +4,7 @@ ga:
|
|
4
4
|
attributes:
|
5
5
|
answer:
|
6
6
|
body: Freagra
|
7
|
+
choices: Roghanna
|
7
8
|
question:
|
8
9
|
question_type: Cineál
|
9
10
|
decidim:
|
@@ -12,6 +13,9 @@ ga:
|
|
12
13
|
questionnaires:
|
13
14
|
answer_option:
|
14
15
|
remove: Bain as
|
16
|
+
answers:
|
17
|
+
actions:
|
18
|
+
export: Easpórtáil
|
15
19
|
display_condition:
|
16
20
|
condition_question: Ceist
|
17
21
|
condition_types:
|
@@ -46,4 +50,5 @@ ga:
|
|
46
50
|
submit: Deimhnigh
|
47
51
|
user_answers_serializer:
|
48
52
|
body: Freagra
|
53
|
+
ip_hash: Hais IP
|
49
54
|
question: Ceist
|
data/config/locales/gl.yml
CHANGED
@@ -9,6 +9,12 @@ gl:
|
|
9
9
|
question_type: Tipo
|
10
10
|
questionnaire_question:
|
11
11
|
mandatory: Obrigatorio
|
12
|
+
errors:
|
13
|
+
models:
|
14
|
+
answer:
|
15
|
+
attributes:
|
16
|
+
choices:
|
17
|
+
missing: non están completos
|
12
18
|
decidim:
|
13
19
|
forms:
|
14
20
|
admin:
|
@@ -19,6 +25,7 @@ gl:
|
|
19
25
|
questionnaires:
|
20
26
|
answer_option:
|
21
27
|
answer_option: Opción de resposta
|
28
|
+
free_text: Texto libre
|
22
29
|
remove: Quitar
|
23
30
|
statement: Declaración
|
24
31
|
edit:
|
@@ -84,4 +91,3 @@ gl:
|
|
84
91
|
user_answers_serializer:
|
85
92
|
created_at: Respondeu
|
86
93
|
id: ID de resposta
|
87
|
-
question: Pregunta
|
data/config/locales/hu.yml
CHANGED
@@ -9,6 +9,12 @@ hu:
|
|
9
9
|
question_type: Típus
|
10
10
|
questionnaire_question:
|
11
11
|
mandatory: Kötelező
|
12
|
+
errors:
|
13
|
+
models:
|
14
|
+
answer:
|
15
|
+
attributes:
|
16
|
+
choices:
|
17
|
+
missing: nem teljesek
|
12
18
|
decidim:
|
13
19
|
forms:
|
14
20
|
admin:
|
@@ -19,6 +25,7 @@ hu:
|
|
19
25
|
questionnaires:
|
20
26
|
answer_option:
|
21
27
|
answer_option: Válasz opció
|
28
|
+
free_text: Szabadszöveg
|
22
29
|
remove: Eltávolít
|
23
30
|
statement: Nyilatkozat
|
24
31
|
edit:
|
@@ -88,4 +95,6 @@ hu:
|
|
88
95
|
user_answers_serializer:
|
89
96
|
created_at: Válaszolt
|
90
97
|
id: Válasz azonosító
|
91
|
-
|
98
|
+
registered: Regisztrált
|
99
|
+
unregistered: Nem regisztrált
|
100
|
+
user_status: Felhasználó státusza
|
data/config/locales/id-ID.yml
CHANGED
@@ -9,6 +9,12 @@ id:
|
|
9
9
|
question_type: Mengetik
|
10
10
|
questionnaire_question:
|
11
11
|
mandatory: Wajib
|
12
|
+
errors:
|
13
|
+
models:
|
14
|
+
answer:
|
15
|
+
attributes:
|
16
|
+
choices:
|
17
|
+
missing: tidak lengkap
|
12
18
|
decidim:
|
13
19
|
forms:
|
14
20
|
admin:
|
@@ -19,6 +25,7 @@ id:
|
|
19
25
|
questionnaires:
|
20
26
|
answer_option:
|
21
27
|
answer_option: Opsi jawaban
|
28
|
+
free_text: Teks gratis
|
22
29
|
remove: Menghapus
|
23
30
|
statement: Pernyataan
|
24
31
|
edit:
|
@@ -70,4 +77,3 @@ id:
|
|
70
77
|
user_answers_serializer:
|
71
78
|
created_at: Dijawab pada
|
72
79
|
id: ID jawaban
|
73
|
-
question: Pertanyaan
|
data/config/locales/it.yml
CHANGED
@@ -4,12 +4,24 @@ it:
|
|
4
4
|
attributes:
|
5
5
|
answer:
|
6
6
|
body: Risposta
|
7
|
+
choices: Scelte
|
8
|
+
selected_choices: Scelte selezionate
|
7
9
|
question:
|
8
10
|
max_choices: Numero massimo di scelte
|
9
11
|
question_type: Tipo
|
10
12
|
questionnaire_question:
|
11
13
|
mandatory: Obbligatorio
|
12
14
|
max_characters: Limite di caratteri (lasciare a 0 se nessum limite)
|
15
|
+
errors:
|
16
|
+
models:
|
17
|
+
answer:
|
18
|
+
attributes:
|
19
|
+
add_documents:
|
20
|
+
needs_to_be_reattached: Deve essere allegato nuovamente
|
21
|
+
body:
|
22
|
+
too_long: è troppo lungo
|
23
|
+
choices:
|
24
|
+
missing: non sono completi
|
13
25
|
decidim:
|
14
26
|
forms:
|
15
27
|
admin:
|
@@ -23,14 +35,22 @@ it:
|
|
23
35
|
show: Mostra risposte
|
24
36
|
answer_option:
|
25
37
|
answer_option: Opzione di risposta
|
38
|
+
free_text: Testo libero
|
26
39
|
remove: Rimuovere
|
27
40
|
statement: dichiarazione
|
28
41
|
answers:
|
29
42
|
actions:
|
43
|
+
back: Torna alle risposte
|
44
|
+
export: Esporta
|
30
45
|
show: Mostra risposte
|
31
46
|
empty: Ancora nessuna risposta
|
47
|
+
export:
|
48
|
+
answer:
|
49
|
+
title: 'Risposta #%{number}'
|
32
50
|
export_response:
|
33
51
|
title: risposte_utente_sondaggio_%{token}
|
52
|
+
index:
|
53
|
+
title: "%{total} risposte totali"
|
34
54
|
show:
|
35
55
|
title: 'Risposta #%{number}'
|
36
56
|
display_condition:
|
@@ -56,12 +76,10 @@ it:
|
|
56
76
|
title: Modifica questionario
|
57
77
|
form:
|
58
78
|
add_question: Aggiungi domanda
|
59
|
-
already_answered_warning: Alcuni utenti hanno già risposto al modulo, per cui non è possibile modificarne i quesiti.
|
60
79
|
collapse: Comprimi tutte le domande
|
61
80
|
expand: Espandi tutte le domande
|
62
81
|
preview: Anteprima
|
63
82
|
title: Modifica formulario per %{questionnaire_for}
|
64
|
-
unpublished_warning: Il modulo non è pubblicato. Puoi modificare le sue domande, ma in questo modo cancellerai le risposte correnti.
|
65
83
|
matrix_row:
|
66
84
|
matrix_row: Riga
|
67
85
|
remove: Rimuovere
|
@@ -102,6 +120,7 @@ it:
|
|
102
120
|
questionnaires:
|
103
121
|
answer:
|
104
122
|
invalid: Ci sono stati errori nel rispondere al questionario.
|
123
|
+
max_choices_alert: Sono state selezionate troppe opzioni
|
105
124
|
success: Il questionario ha risposto con successo.
|
106
125
|
question:
|
107
126
|
max_choices: 'Scelte massime: %{n}'
|
@@ -127,12 +146,17 @@ it:
|
|
127
146
|
tos_agreement: Partecipando accetti i suoi Termini di servizio
|
128
147
|
step_navigation:
|
129
148
|
show:
|
130
|
-
are_you_sure: Questa azione non può essere annullata e non potrai modificare le tue risposte. Sei sicuro?
|
131
149
|
back: Indietro
|
132
150
|
continue: Continua
|
133
151
|
submit: Invia
|
134
152
|
user_answers_serializer:
|
135
153
|
body: Risposta
|
154
|
+
completion: Completamento
|
136
155
|
created_at: Risposto
|
137
156
|
id: ID risposta
|
157
|
+
ip_hash: Hash Ip
|
138
158
|
question: Domanda
|
159
|
+
registered: Registrato
|
160
|
+
session_token: Identificativo dell'utente
|
161
|
+
unregistered: Non registrato
|
162
|
+
user_status: Stato utente
|
data/config/locales/ja.yml
CHANGED
@@ -4,7 +4,7 @@ ja:
|
|
4
4
|
attributes:
|
5
5
|
answer:
|
6
6
|
body: 回答
|
7
|
-
choices:
|
7
|
+
choices: 選択項目
|
8
8
|
selected_choices: 選択した項目
|
9
9
|
question:
|
10
10
|
max_choices: 選択肢の最大数
|
@@ -19,12 +19,12 @@ ja:
|
|
19
19
|
add_documents:
|
20
20
|
needs_to_be_reattached: 再添付が必要
|
21
21
|
body:
|
22
|
-
too_long:
|
22
|
+
too_long: 長すぎます
|
23
23
|
choices:
|
24
24
|
missing: は完全ではありません
|
25
25
|
too_many: 最大 %{count} 個まで選択できます。
|
26
26
|
questionnaire:
|
27
|
-
request_invalid:
|
27
|
+
request_invalid: リクエストの処理中に問題が発生しました。もう一度やり直してください。
|
28
28
|
decidim:
|
29
29
|
forms:
|
30
30
|
admin:
|
@@ -38,12 +38,12 @@ ja:
|
|
38
38
|
show: 回答を表示
|
39
39
|
answer_option:
|
40
40
|
answer_option: 回答オプション
|
41
|
-
free_text:
|
41
|
+
free_text: フリーテキスト
|
42
42
|
remove: 削除
|
43
43
|
statement: ステートメント
|
44
44
|
answers:
|
45
45
|
actions:
|
46
|
-
back:
|
46
|
+
back: 返信に戻る
|
47
47
|
export: エクスポート
|
48
48
|
next: 次 ›
|
49
49
|
previous: "‹ 前"
|
@@ -55,7 +55,7 @@ ja:
|
|
55
55
|
export_response:
|
56
56
|
title: survey_user_answers_%{token}
|
57
57
|
index:
|
58
|
-
title: "
|
58
|
+
title: "合計%{total} 件の回答"
|
59
59
|
show:
|
60
60
|
title: '回答 #%{number}'
|
61
61
|
display_condition:
|
@@ -81,14 +81,10 @@ ja:
|
|
81
81
|
title: アンケートを編集
|
82
82
|
form:
|
83
83
|
add_question: 質問を追加
|
84
|
-
add_separator: 区切り文字を追加
|
85
|
-
add_title_and_description: タイトルと説明を追加
|
86
|
-
already_answered_warning: このフォームはすでに回答しているユーザーがいるため、質問を修正することはできません。
|
87
84
|
collapse: すべての質問を閉じる
|
88
85
|
expand: すべての質問を展開
|
89
86
|
preview: プレビュー
|
90
87
|
title: '%{questionnaire_for} のフォームを編集'
|
91
|
-
unpublished_warning: フォームは公開されていません。質問を修正することはできますが、そうすると現在の回答が削除されます。
|
92
88
|
matrix_row:
|
93
89
|
matrix_row: 行
|
94
90
|
remove: 削除
|
@@ -158,7 +154,7 @@ ja:
|
|
158
154
|
answer_questionnaire:
|
159
155
|
already_have_an_account?: 既にアカウントをお持ちですか?
|
160
156
|
are_you_new?: 新しいユーザーですか?
|
161
|
-
sign_in_description:
|
157
|
+
sign_in_description: ログインしてアンケートに答える
|
162
158
|
sign_up_description: アンケートに答えるために参加者アカウントを作成します
|
163
159
|
title: フォームに回答
|
164
160
|
current_step: ステップ %{step}
|
@@ -181,7 +177,6 @@ ja:
|
|
181
177
|
tos_agreement: 参加することにより、利用規約に同意します。
|
182
178
|
step_navigation:
|
183
179
|
show:
|
184
|
-
are_you_sure: この操作は元に戻すことができず、回答を編集することはできません。よろしいですか?
|
185
180
|
back: 戻る
|
186
181
|
continue: 続ける
|
187
182
|
submit: 送信
|
data/config/locales/lb.yml
CHANGED
@@ -4,12 +4,24 @@ lb:
|
|
4
4
|
attributes:
|
5
5
|
answer:
|
6
6
|
body: Äntwert
|
7
|
+
choices: Choixen
|
8
|
+
selected_choices: Ausgewählte Auswahl
|
7
9
|
question:
|
8
10
|
max_choices: Maximale Anzahl von Auswahlmöglichkeiten
|
9
11
|
question_type: Zort
|
10
12
|
questionnaire_question:
|
11
13
|
mandatory: Verpflichtend
|
12
14
|
max_characters: Maximale Anzahl Zeichen (0 bedeutet kein Limit)
|
15
|
+
errors:
|
16
|
+
models:
|
17
|
+
answer:
|
18
|
+
attributes:
|
19
|
+
add_documents:
|
20
|
+
needs_to_be_reattached: Muss erneut angehängt werden
|
21
|
+
body:
|
22
|
+
too_long: ist zu lang
|
23
|
+
choices:
|
24
|
+
missing: sind nicht vollständig
|
13
25
|
decidim:
|
14
26
|
forms:
|
15
27
|
admin:
|
@@ -23,14 +35,22 @@ lb:
|
|
23
35
|
show: Antworten anzeigen
|
24
36
|
answer_option:
|
25
37
|
answer_option: Antwortoption
|
38
|
+
free_text: Freier Text
|
26
39
|
remove: Löschen
|
27
40
|
statement: Aussage
|
28
41
|
answers:
|
29
42
|
actions:
|
43
|
+
back: Zurück zu Antworten
|
44
|
+
export: Exportieren
|
30
45
|
show: Antworten anzeigen
|
31
46
|
empty: Noch keine Antworten
|
47
|
+
export:
|
48
|
+
answer:
|
49
|
+
title: 'Antwort #%{number}'
|
32
50
|
export_response:
|
33
51
|
title: Umfrage_Benutzer_Antworten_%{token}
|
52
|
+
index:
|
53
|
+
title: "%{total} Antworten insgesamt"
|
34
54
|
show:
|
35
55
|
title: 'Antwort #%{number}'
|
36
56
|
display_condition:
|
@@ -100,6 +120,7 @@ lb:
|
|
100
120
|
questionnaires:
|
101
121
|
answer:
|
102
122
|
invalid: Bei der Beantwortung des Fragebogens sind Fehler aufgetreten.
|
123
|
+
max_choices_alert: Es wurden zu viele Auswahlmöglichkeiten ausgewählt
|
103
124
|
success: Fragebogen erfolgreich beantwortet.
|
104
125
|
question:
|
105
126
|
max_choices: 'Max Auswahlmöglichkeiten: %{n}'
|
@@ -130,6 +151,12 @@ lb:
|
|
130
151
|
submit: einreichen
|
131
152
|
user_answers_serializer:
|
132
153
|
body: Antwort
|
154
|
+
completion: Abschluss
|
133
155
|
created_at: Beantwortet am
|
134
156
|
id: ID beantworten
|
135
|
-
|
157
|
+
ip_hash: IP-Hash
|
158
|
+
question: Frage
|
159
|
+
registered: Registriert
|
160
|
+
session_token: Benutzerkennung
|
161
|
+
unregistered: Nicht registriert
|
162
|
+
user_status: Benutzerstatus
|
data/config/locales/lt.yml
CHANGED
@@ -4,6 +4,8 @@ lt:
|
|
4
4
|
attributes:
|
5
5
|
answer:
|
6
6
|
body: Atsakymas
|
7
|
+
choices: Pasirinkimai
|
8
|
+
selected_choices: Pasirinkti pasirinkimai
|
7
9
|
question:
|
8
10
|
max_choices: Maksimalus pasirinkimų skaičius
|
9
11
|
question_type: Tipas
|
@@ -12,8 +14,14 @@ lt:
|
|
12
14
|
max_characters: Simbolių limitas (palikti 0 jei limito nėra)
|
13
15
|
errors:
|
14
16
|
models:
|
15
|
-
|
16
|
-
|
17
|
+
answer:
|
18
|
+
attributes:
|
19
|
+
add_documents:
|
20
|
+
needs_to_be_reattached: Reikia pridėti iš naujo
|
21
|
+
body:
|
22
|
+
too_long: per ilgas
|
23
|
+
choices:
|
24
|
+
missing: nepilnas - trūksta elementų
|
17
25
|
decidim:
|
18
26
|
forms:
|
19
27
|
admin:
|
@@ -27,14 +35,24 @@ lt:
|
|
27
35
|
show: Rodyti atsakymus
|
28
36
|
answer_option:
|
29
37
|
answer_option: Atsakymo variantas
|
38
|
+
free_text: Laisva forma
|
30
39
|
remove: Pašalinti
|
31
40
|
statement: Pareiškimas
|
32
41
|
answers:
|
33
42
|
actions:
|
43
|
+
back: Grįžti į atsakymus
|
44
|
+
export: Eksportuoti
|
45
|
+
next: Kitas ›
|
46
|
+
previous: "‹ Ankst."
|
34
47
|
show: Rodyti atsakymus
|
35
48
|
empty: Atsakymų dar nėra
|
49
|
+
export:
|
50
|
+
answer:
|
51
|
+
title: 'Atsakymas #%{number}'
|
36
52
|
export_response:
|
37
53
|
title: apklausa_naudotoju_atsakymai_%{token}
|
54
|
+
index:
|
55
|
+
title: "%{total} iš viso atsakymų"
|
38
56
|
show:
|
39
57
|
title: 'Atsakymas #%{number}'
|
40
58
|
display_condition:
|
@@ -102,6 +120,9 @@ lt:
|
|
102
120
|
admin_log:
|
103
121
|
questionnaire:
|
104
122
|
update: "%{user_name} atnaujino %{resource_name} klausimyną"
|
123
|
+
errors:
|
124
|
+
answer:
|
125
|
+
body: Pagrindinė dalis negali būti tuščia
|
105
126
|
images:
|
106
127
|
dimensions: "%{width} x %{height} px"
|
107
128
|
processors:
|
@@ -117,14 +138,20 @@ lt:
|
|
117
138
|
single_option: Vienas variantas
|
118
139
|
sorting: Rūšiavimas
|
119
140
|
title_and_description: Pavadinimas ir aprašymas
|
141
|
+
questionnaire_answer_presenter:
|
142
|
+
download_attachment: Parsisiųsti priedą
|
120
143
|
questionnaires:
|
121
144
|
answer:
|
122
145
|
invalid: Atsakant į šią formą iškilo problema.
|
146
|
+
max_choices_alert: Per daug pasirinktų variantų
|
123
147
|
success: Į formos klausimus atsakyta.
|
124
148
|
question:
|
125
149
|
max_choices: 'Didžiausias pasirinkčių skaičius: %{n}'
|
126
150
|
show:
|
127
151
|
answer_questionnaire:
|
152
|
+
already_have_an_account?: Jau turite paskyrą?
|
153
|
+
are_you_new?: Naujas naudotojas?
|
154
|
+
sign_up_description: Norėdami dalyvauti apklausoje, susikurkite dalyvio paskyrą
|
128
155
|
title: Atsakyti į formos klausimus
|
129
156
|
current_step: Žingsnis %{step}
|
130
157
|
of_total_steps: iš%{total_steps}
|
@@ -150,6 +177,12 @@ lt:
|
|
150
177
|
submit: Pateikti
|
151
178
|
user_answers_serializer:
|
152
179
|
body: Atsakymas
|
180
|
+
completion: Užbaigimas
|
153
181
|
created_at: Atsakyta
|
154
182
|
id: Atsakymo ID
|
183
|
+
ip_hash: IP adreso "hash" kodas
|
155
184
|
question: Klausimas
|
185
|
+
registered: Užregistruota
|
186
|
+
session_token: Naudotojo identifikatorius
|
187
|
+
unregistered: Neregistruoti
|
188
|
+
user_status: Naudotojo būsena
|
data/config/locales/lv.yml
CHANGED
@@ -9,6 +9,12 @@ lv:
|
|
9
9
|
question_type: Veids
|
10
10
|
questionnaire_question:
|
11
11
|
mandatory: Obligāti
|
12
|
+
errors:
|
13
|
+
models:
|
14
|
+
answer:
|
15
|
+
attributes:
|
16
|
+
choices:
|
17
|
+
missing: nav pabeigti
|
12
18
|
decidim:
|
13
19
|
forms:
|
14
20
|
admin:
|
@@ -19,6 +25,7 @@ lv:
|
|
19
25
|
questionnaires:
|
20
26
|
answer_option:
|
21
27
|
answer_option: Atbildes iespēja
|
28
|
+
free_text: Brīva vieta tekstam
|
22
29
|
remove: Noņemt
|
23
30
|
statement: Paziņojums
|
24
31
|
edit:
|
@@ -64,6 +71,7 @@ lv:
|
|
64
71
|
questionnaires:
|
65
72
|
answer:
|
66
73
|
invalid: Atbildot uz veidlapas jautājumiem, radās problēma.
|
74
|
+
max_choices_alert: Ir izvēlēti pārāk daudzi varianti
|
67
75
|
success: Uz veidlapas jautājumiem ir veiksmīgi atbildēts.
|
68
76
|
question:
|
69
77
|
max_choices: 'Maksimālais izvēļu skaits: %{n}'
|
@@ -90,4 +98,6 @@ lv:
|
|
90
98
|
user_answers_serializer:
|
91
99
|
created_at: Atbildēts
|
92
100
|
id: Atbildes ID
|
93
|
-
|
101
|
+
registered: Reģistrēts
|
102
|
+
unregistered: Nereģistrēts
|
103
|
+
user_status: Lietotāja statuss
|
data/config/locales/nl.yml
CHANGED
@@ -4,11 +4,19 @@ nl:
|
|
4
4
|
attributes:
|
5
5
|
answer:
|
6
6
|
body: Antwoord
|
7
|
+
choices: Keuzes
|
8
|
+
selected_choices: Geselecteerde keuzes
|
7
9
|
question:
|
8
10
|
max_choices: Maximum aantal keuzes
|
9
11
|
question_type: Type
|
10
12
|
questionnaire_question:
|
11
13
|
mandatory: Verplicht
|
14
|
+
errors:
|
15
|
+
models:
|
16
|
+
answer:
|
17
|
+
attributes:
|
18
|
+
choices:
|
19
|
+
missing: zijn niet compleet
|
12
20
|
decidim:
|
13
21
|
forms:
|
14
22
|
admin:
|
@@ -22,14 +30,22 @@ nl:
|
|
22
30
|
show: Antwoorden tonen
|
23
31
|
answer_option:
|
24
32
|
answer_option: Antwoord optie
|
33
|
+
free_text: Vrije tekst
|
25
34
|
remove: Verwijderen
|
26
35
|
statement: Uitspraak
|
27
36
|
answers:
|
28
37
|
actions:
|
38
|
+
back: Terug naar antwoorden
|
39
|
+
export: Exporteren
|
29
40
|
show: Toon antwoorden
|
30
41
|
empty: Nog geen antwoorden
|
42
|
+
export:
|
43
|
+
answer:
|
44
|
+
title: 'Antwoord #%{number}'
|
31
45
|
export_response:
|
32
46
|
title: survey_user_answers_%{token}
|
47
|
+
index:
|
48
|
+
title: "%{total} totale antwoorden"
|
33
49
|
show:
|
34
50
|
title: 'Antwoord #%{number}'
|
35
51
|
display_condition:
|
@@ -107,6 +123,7 @@ nl:
|
|
107
123
|
questionnaires:
|
108
124
|
answer:
|
109
125
|
invalid: Er zijn fouten opgetreden bij het beantwoorden van de vragenlijst.
|
126
|
+
max_choices_alert: Er zijn te veel keuzes geselecteerd
|
110
127
|
success: Vragenlijst met succes beantwoord.
|
111
128
|
question:
|
112
129
|
max_choices: 'Max. Keuzes: %{n}'
|
@@ -137,6 +154,12 @@ nl:
|
|
137
154
|
submit: Verzenden
|
138
155
|
user_answers_serializer:
|
139
156
|
body: Beantwoorden
|
157
|
+
completion: Voltooiing
|
140
158
|
created_at: Beantwoord
|
141
159
|
id: Antwoord ID
|
160
|
+
ip_hash: IP Hash
|
142
161
|
question: Vraag
|
162
|
+
registered: Geregistreerd
|
163
|
+
session_token: Gebruiker identificatie
|
164
|
+
unregistered: Niet-geregistreerd
|
165
|
+
user_status: Gebruiker-status
|