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/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:
|
|
@@ -27,11 +31,15 @@ ga:
|
|
|
27
31
|
question:
|
|
28
32
|
add_matrix_row: Suimigh ró
|
|
29
33
|
any: Ar Bith
|
|
34
|
+
down: Síos
|
|
30
35
|
expand: Méadaigh
|
|
31
36
|
question: Ceist
|
|
32
37
|
remove: Bain as
|
|
38
|
+
up: Thuas
|
|
33
39
|
separator:
|
|
40
|
+
down: Ísligh
|
|
34
41
|
remove: Bain as
|
|
42
|
+
up: Ardaigh
|
|
35
43
|
question_types:
|
|
36
44
|
files: Comhaid
|
|
37
45
|
sorting: Sórtáil
|
|
@@ -42,4 +50,5 @@ ga:
|
|
|
42
50
|
submit: Deimhnigh
|
|
43
51
|
user_answers_serializer:
|
|
44
52
|
body: Freagra
|
|
53
|
+
ip_hash: Hais IP
|
|
45
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:
|
|
@@ -32,16 +39,20 @@ gl:
|
|
|
32
39
|
add_answer_option: Engadir unha opción de resposta
|
|
33
40
|
any: Calquera
|
|
34
41
|
description: Descrición
|
|
42
|
+
down: Baixo
|
|
35
43
|
question: Pregunta
|
|
36
44
|
remove: Quitar
|
|
37
45
|
statement: Declaración
|
|
46
|
+
up: Arriba
|
|
38
47
|
title_and_description:
|
|
39
48
|
collapse: Contraer
|
|
40
49
|
description: Descrición
|
|
50
|
+
down: Abaixo
|
|
41
51
|
expand: Expandir
|
|
42
52
|
remove: Eliminar
|
|
43
53
|
title: Título
|
|
44
54
|
title_and_description: Título e descrición
|
|
55
|
+
up: Arriba
|
|
45
56
|
update:
|
|
46
57
|
invalid: Produciuse un erro ao gardar o cuestionario.
|
|
47
58
|
images:
|
|
@@ -80,4 +91,3 @@ gl:
|
|
|
80
91
|
user_answers_serializer:
|
|
81
92
|
created_at: Respondeu
|
|
82
93
|
id: ID de resposta
|
|
83
|
-
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:
|
|
@@ -35,17 +42,21 @@ hu:
|
|
|
35
42
|
any: Bármilyen
|
|
36
43
|
collapse: Összecsukás
|
|
37
44
|
description: Leírás
|
|
45
|
+
down: Le
|
|
38
46
|
expand: Kibontás
|
|
39
47
|
question: Kérdés
|
|
40
48
|
remove: Eltávolít
|
|
41
49
|
statement: Nyilatkozat
|
|
50
|
+
up: Fel
|
|
42
51
|
title_and_description:
|
|
43
52
|
collapse: Összecsuk
|
|
44
53
|
description: Leírás
|
|
54
|
+
down: Le
|
|
45
55
|
expand: Kibont
|
|
46
56
|
remove: Eltávolít
|
|
47
57
|
title: Cím
|
|
48
58
|
title_and_description: Cím és leírás
|
|
59
|
+
up: Fel
|
|
49
60
|
update:
|
|
50
61
|
invalid: Hiba történt a kérdőív mentésekor.
|
|
51
62
|
images:
|
|
@@ -84,4 +95,6 @@ hu:
|
|
|
84
95
|
user_answers_serializer:
|
|
85
96
|
created_at: Válaszolt
|
|
86
97
|
id: Válasz azonosító
|
|
87
|
-
|
|
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:
|
|
@@ -32,9 +39,11 @@ id:
|
|
|
32
39
|
add_answer_option: Tambahkan opsi jawaban
|
|
33
40
|
any: Apa saja
|
|
34
41
|
description: Deskripsi
|
|
42
|
+
down: Turun
|
|
35
43
|
question: Pertanyaan
|
|
36
44
|
remove: Menghapus
|
|
37
45
|
statement: Pernyataan
|
|
46
|
+
up: Naik
|
|
38
47
|
update:
|
|
39
48
|
invalid: Terjadi masalah saat menyimpan formulir.
|
|
40
49
|
question_types:
|
|
@@ -68,4 +77,3 @@ id:
|
|
|
68
77
|
user_answers_serializer:
|
|
69
78
|
created_at: Dijawab pada
|
|
70
79
|
id: ID jawaban
|
|
71
|
-
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
|
|
@@ -74,13 +92,17 @@ it:
|
|
|
74
92
|
any: Qualunque
|
|
75
93
|
collapse: Comprimi
|
|
76
94
|
description: Descrizione
|
|
95
|
+
down: Giù
|
|
77
96
|
expand: Espandi
|
|
78
97
|
question: Domanda
|
|
79
98
|
remove: Rimuovere
|
|
80
99
|
statement: dichiarazione
|
|
100
|
+
up: Su
|
|
81
101
|
separator:
|
|
102
|
+
down: Giù
|
|
82
103
|
remove: Elimina
|
|
83
104
|
separator: Separatore
|
|
105
|
+
up: Su
|
|
84
106
|
update:
|
|
85
107
|
invalid: Si sono verificati errori durante il salvataggio del questionario.
|
|
86
108
|
success: Modulo salvato correttamente.
|
|
@@ -98,6 +120,7 @@ it:
|
|
|
98
120
|
questionnaires:
|
|
99
121
|
answer:
|
|
100
122
|
invalid: Ci sono stati errori nel rispondere al questionario.
|
|
123
|
+
max_choices_alert: Sono state selezionate troppe opzioni
|
|
101
124
|
success: Il questionario ha risposto con successo.
|
|
102
125
|
question:
|
|
103
126
|
max_choices: 'Scelte massime: %{n}'
|
|
@@ -123,12 +146,17 @@ it:
|
|
|
123
146
|
tos_agreement: Partecipando accetti i suoi Termini di servizio
|
|
124
147
|
step_navigation:
|
|
125
148
|
show:
|
|
126
|
-
are_you_sure: Questa azione non può essere annullata e non potrai modificare le tue risposte. Sei sicuro?
|
|
127
149
|
back: Indietro
|
|
128
150
|
continue: Continua
|
|
129
151
|
submit: Invia
|
|
130
152
|
user_answers_serializer:
|
|
131
153
|
body: Risposta
|
|
154
|
+
completion: Completamento
|
|
132
155
|
created_at: Risposto
|
|
133
156
|
id: ID risposta
|
|
157
|
+
ip_hash: Hash Ip
|
|
134
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: 削除
|
|
@@ -101,20 +97,26 @@ ja:
|
|
|
101
97
|
any: 任意の
|
|
102
98
|
collapse: 折りたたむ
|
|
103
99
|
description: 説明
|
|
100
|
+
down: 下
|
|
104
101
|
expand: 展開
|
|
105
102
|
question: 質問
|
|
106
103
|
remove: 削除
|
|
107
104
|
statement: ステートメント
|
|
105
|
+
up: 上へ
|
|
108
106
|
separator:
|
|
107
|
+
down: 下
|
|
109
108
|
remove: 削除
|
|
110
109
|
separator: 区切り記号
|
|
110
|
+
up: 上へ
|
|
111
111
|
title_and_description:
|
|
112
112
|
collapse: 折りたたむ
|
|
113
113
|
description: 説明
|
|
114
|
+
down: 下へ
|
|
114
115
|
expand: 展開する
|
|
115
116
|
remove: 削除
|
|
116
117
|
title: タイトル
|
|
117
118
|
title_and_description: タイトルと説明
|
|
119
|
+
up: 上へ
|
|
118
120
|
update:
|
|
119
121
|
invalid: フォームの保存に失敗しました。
|
|
120
122
|
success: フォームを保存しました。
|
|
@@ -152,7 +154,7 @@ ja:
|
|
|
152
154
|
answer_questionnaire:
|
|
153
155
|
already_have_an_account?: 既にアカウントをお持ちですか?
|
|
154
156
|
are_you_new?: 新しいユーザーですか?
|
|
155
|
-
sign_in_description:
|
|
157
|
+
sign_in_description: ログインしてアンケートに答える
|
|
156
158
|
sign_up_description: アンケートに答えるために参加者アカウントを作成します
|
|
157
159
|
title: フォームに回答
|
|
158
160
|
current_step: ステップ %{step}
|
|
@@ -175,7 +177,6 @@ ja:
|
|
|
175
177
|
tos_agreement: 参加することにより、利用規約に同意します。
|
|
176
178
|
step_navigation:
|
|
177
179
|
show:
|
|
178
|
-
are_you_sure: この操作は元に戻すことができず、回答を編集することはできません。よろしいですか?
|
|
179
180
|
back: 戻る
|
|
180
181
|
continue: 続ける
|
|
181
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:
|
|
@@ -72,13 +92,17 @@ lb:
|
|
|
72
92
|
any: Irgendein
|
|
73
93
|
collapse: Zouklappen
|
|
74
94
|
description: Beschreiwung
|
|
95
|
+
down: Runter
|
|
75
96
|
expand: Ausklappen
|
|
76
97
|
question: Fro
|
|
77
98
|
remove: Löschen
|
|
78
99
|
statement: Aussage
|
|
100
|
+
up: Hoch
|
|
79
101
|
separator:
|
|
102
|
+
down: Runter
|
|
80
103
|
remove: Löschen
|
|
81
104
|
separator: Trennzeichen
|
|
105
|
+
up: Hoch
|
|
82
106
|
update:
|
|
83
107
|
invalid: Beim Speichern des Fragebogens sind Fehler aufgetreten.
|
|
84
108
|
success: Formular erfolgreich gespeichert.
|
|
@@ -96,6 +120,7 @@ lb:
|
|
|
96
120
|
questionnaires:
|
|
97
121
|
answer:
|
|
98
122
|
invalid: Bei der Beantwortung des Fragebogens sind Fehler aufgetreten.
|
|
123
|
+
max_choices_alert: Es wurden zu viele Auswahlmöglichkeiten ausgewählt
|
|
99
124
|
success: Fragebogen erfolgreich beantwortet.
|
|
100
125
|
question:
|
|
101
126
|
max_choices: 'Max Auswahlmöglichkeiten: %{n}'
|
|
@@ -126,6 +151,12 @@ lb:
|
|
|
126
151
|
submit: einreichen
|
|
127
152
|
user_answers_serializer:
|
|
128
153
|
body: Antwort
|
|
154
|
+
completion: Abschluss
|
|
129
155
|
created_at: Beantwortet am
|
|
130
156
|
id: ID beantworten
|
|
131
|
-
|
|
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:
|
|
@@ -76,26 +94,35 @@ lt:
|
|
|
76
94
|
any: Bet koks
|
|
77
95
|
collapse: Suskleisti
|
|
78
96
|
description: Aprašymas
|
|
97
|
+
down: Žemyn
|
|
79
98
|
expand: Išplėsti
|
|
80
99
|
question: Klausimas
|
|
81
100
|
remove: Pašalinti
|
|
82
101
|
statement: Pareiškimas
|
|
102
|
+
up: Į viršų
|
|
83
103
|
separator:
|
|
104
|
+
down: Žemyn
|
|
84
105
|
remove: Pašalinti
|
|
85
106
|
separator: Skirtukas
|
|
107
|
+
up: Į viršų
|
|
86
108
|
title_and_description:
|
|
87
109
|
collapse: Suskleisti
|
|
88
110
|
description: Aprašymas
|
|
111
|
+
down: Žemyn
|
|
89
112
|
expand: Išplėsti
|
|
90
113
|
remove: Pašalinti
|
|
91
114
|
title: Pavadinimas
|
|
92
115
|
title_and_description: Pavadinimas ir aprašymas
|
|
116
|
+
up: Aukštyn
|
|
93
117
|
update:
|
|
94
118
|
invalid: Išsaugant šią formą iškilo problema.
|
|
95
119
|
success: Forma sėkmingai išsaugota.
|
|
96
120
|
admin_log:
|
|
97
121
|
questionnaire:
|
|
98
122
|
update: "%{user_name} atnaujino %{resource_name} klausimyną"
|
|
123
|
+
errors:
|
|
124
|
+
answer:
|
|
125
|
+
body: Pagrindinė dalis negali būti tuščia
|
|
99
126
|
images:
|
|
100
127
|
dimensions: "%{width} x %{height} px"
|
|
101
128
|
processors:
|
|
@@ -111,14 +138,20 @@ lt:
|
|
|
111
138
|
single_option: Vienas variantas
|
|
112
139
|
sorting: Rūšiavimas
|
|
113
140
|
title_and_description: Pavadinimas ir aprašymas
|
|
141
|
+
questionnaire_answer_presenter:
|
|
142
|
+
download_attachment: Parsisiųsti priedą
|
|
114
143
|
questionnaires:
|
|
115
144
|
answer:
|
|
116
145
|
invalid: Atsakant į šią formą iškilo problema.
|
|
146
|
+
max_choices_alert: Per daug pasirinktų variantų
|
|
117
147
|
success: Į formos klausimus atsakyta.
|
|
118
148
|
question:
|
|
119
149
|
max_choices: 'Didžiausias pasirinkčių skaičius: %{n}'
|
|
120
150
|
show:
|
|
121
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ą
|
|
122
155
|
title: Atsakyti į formos klausimus
|
|
123
156
|
current_step: Žingsnis %{step}
|
|
124
157
|
of_total_steps: iš%{total_steps}
|
|
@@ -144,6 +177,12 @@ lt:
|
|
|
144
177
|
submit: Pateikti
|
|
145
178
|
user_answers_serializer:
|
|
146
179
|
body: Atsakymas
|
|
180
|
+
completion: Užbaigimas
|
|
147
181
|
created_at: Atsakyta
|
|
148
182
|
id: Atsakymo ID
|
|
183
|
+
ip_hash: IP adreso "hash" kodas
|
|
149
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:
|
|
@@ -38,13 +45,17 @@ lv:
|
|
|
38
45
|
any: Jebkura
|
|
39
46
|
collapse: Sakļaut
|
|
40
47
|
description: Apraksts
|
|
48
|
+
down: Lejup
|
|
41
49
|
expand: Izvērst
|
|
42
50
|
question: Jautājums
|
|
43
51
|
remove: Noņemt
|
|
44
52
|
statement: Paziņojums
|
|
53
|
+
up: Augšup
|
|
45
54
|
separator:
|
|
55
|
+
down: Lejup
|
|
46
56
|
remove: Noņemt
|
|
47
57
|
separator: Atdalītājs
|
|
58
|
+
up: Augšup
|
|
48
59
|
update:
|
|
49
60
|
invalid: Saglabājot veidlapu, radās problēma.
|
|
50
61
|
images:
|
|
@@ -60,6 +71,7 @@ lv:
|
|
|
60
71
|
questionnaires:
|
|
61
72
|
answer:
|
|
62
73
|
invalid: Atbildot uz veidlapas jautājumiem, radās problēma.
|
|
74
|
+
max_choices_alert: Ir izvēlēti pārāk daudzi varianti
|
|
63
75
|
success: Uz veidlapas jautājumiem ir veiksmīgi atbildēts.
|
|
64
76
|
question:
|
|
65
77
|
max_choices: 'Maksimālais izvēļu skaits: %{n}'
|
|
@@ -86,4 +98,6 @@ lv:
|
|
|
86
98
|
user_answers_serializer:
|
|
87
99
|
created_at: Atbildēts
|
|
88
100
|
id: Atbildes ID
|
|
89
|
-
|
|
101
|
+
registered: Reģistrēts
|
|
102
|
+
unregistered: Nereģistrēts
|
|
103
|
+
user_status: Lietotāja statuss
|