decidim-forms 0.30.2 → 0.31.0.rc1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +10 -10
- data/app/cells/decidim/forms/matrix_readonly/show.erb +1 -1
- data/app/cells/decidim/forms/matrix_readonly_cell.rb +3 -3
- data/app/cells/decidim/forms/question_readonly/show.erb +5 -5
- data/app/cells/decidim/forms/question_readonly/title_and_description.erb +3 -3
- data/app/cells/decidim/forms/response_readonly_cell.rb +9 -0
- data/app/cells/decidim/forms/step_navigation/show.erb +3 -3
- data/app/cells/decidim/forms/step_navigation_cell.rb +3 -3
- data/app/commands/decidim/forms/admin/update_questions.rb +6 -6
- data/app/commands/decidim/forms/{answer_questionnaire.rb → response_questionnaire.rb} +35 -35
- data/app/controllers/decidim/forms/admin/concerns/has_questionnaire.rb +12 -12
- data/app/controllers/decidim/forms/admin/concerns/{has_questionnaire_answers.rb → has_questionnaire_responses.rb} +23 -19
- data/app/controllers/decidim/forms/concerns/has_questionnaire.rb +38 -33
- data/app/forms/decidim/forms/admin/display_condition_form.rb +14 -14
- data/app/forms/decidim/forms/admin/question_form.rb +3 -3
- data/app/forms/decidim/forms/admin/{answer_option_form.rb → response_option_form.rb} +3 -3
- data/app/forms/decidim/forms/questionnaire_form.rb +8 -9
- data/app/forms/decidim/forms/{answer_choice_form.rb → response_choice_form.rb} +5 -5
- data/app/forms/decidim/forms/{answer_form.rb → response_form.rb} +9 -9
- data/app/helpers/decidim/forms/admin/application_helper.rb +2 -2
- data/app/helpers/decidim/forms/admin/concerns/{has_questionnaire_answers_pagination_helper.rb → has_questionnaire_responses_pagination_helper.rb} +4 -4
- data/app/helpers/decidim/forms/admin/concerns/{has_questionnaire_answers_url_helper.rb → has_questionnaire_responses_url_helper.rb} +5 -5
- data/app/helpers/decidim/forms/admin/questionnaire_responses_helper.rb +32 -0
- data/app/helpers/decidim/forms/application_helper.rb +1 -2
- data/app/jobs/decidim/forms/{export_questionnaire_answers_job.rb → export_questionnaire_responses_job.rb} +5 -5
- data/app/models/decidim/forms/display_condition.rb +20 -20
- data/app/models/decidim/forms/question.rb +14 -13
- data/app/models/decidim/forms/question_matrix_row.rb +1 -1
- data/app/models/decidim/forms/questionnaire.rb +11 -6
- data/app/models/decidim/forms/{answer.rb → response.rb} +9 -9
- data/app/models/decidim/forms/response_choice.rb +22 -0
- data/app/models/decidim/forms/{answer_option.rb → response_option.rb} +5 -5
- data/app/packs/entrypoints/decidim_forms_admin.js +3 -3
- data/app/packs/src/decidim/forms/admin/collapsible_questions.js +12 -10
- data/app/packs/src/decidim/forms/admin/forms.js +35 -35
- data/app/packs/src/decidim/forms/admin/{publish_answers_buttons.js → publish_responses_buttons.js} +12 -12
- data/app/packs/src/decidim/forms/display_conditions.component.js +12 -12
- data/app/packs/src/decidim/forms/forms.js +4 -4
- data/app/packs/stylesheets/decidim/forms/forms.scss +2 -2
- data/app/presenters/decidim/forms/admin/questionnaire_participant_presenter.rb +13 -13
- data/app/presenters/decidim/forms/admin/{questionnaire_answer_presenter.rb → questionnaire_response_presenter.rb} +15 -15
- data/app/presenters/decidim/forms/admin_log/question_presenter.rb +3 -3
- data/app/presenters/decidim/forms/{answer_option_presenter.rb → response_option_presenter.rb} +2 -2
- data/app/queries/decidim/forms/questionnaire_participant.rb +5 -5
- data/app/queries/decidim/forms/questionnaire_participants.rb +6 -6
- data/app/queries/decidim/forms/questionnaire_user_responses.rb +32 -0
- data/app/views/decidim/forms/admin/questionnaires/_display_condition.html.erb +9 -9
- data/app/views/decidim/forms/admin/questionnaires/_form.html.erb +2 -2
- data/app/views/decidim/forms/admin/questionnaires/_matrix_row.html.erb +3 -3
- data/app/views/decidim/forms/admin/questionnaires/_question.html.erb +16 -16
- data/app/views/decidim/forms/admin/questionnaires/_questions_form.html.erb +11 -10
- data/app/views/decidim/forms/admin/questionnaires/{_answer_option.html.erb → _response_option.html.erb} +7 -7
- data/app/views/decidim/forms/admin/questionnaires/_response_option_template.html.erb +7 -0
- data/app/views/decidim/forms/admin/questionnaires/_separator.html.erb +10 -7
- data/app/views/decidim/forms/admin/questionnaires/_title_and_description.html.erb +7 -7
- data/app/views/decidim/forms/admin/questionnaires/edit.html.erb +1 -1
- data/app/views/decidim/forms/admin/questionnaires/edit_questions.html.erb +8 -8
- data/app/views/decidim/forms/admin/questionnaires/responses/index.html.erb +80 -0
- data/app/views/decidim/forms/admin/questionnaires/responses/show.html.erb +43 -0
- data/app/views/decidim/forms/questionnaires/_questionnaire.html.erb +22 -26
- data/app/views/decidim/forms/questionnaires/_questionnaire_readonly.html.erb +8 -3
- data/app/views/decidim/forms/questionnaires/_response.html.erb +61 -0
- data/app/views/decidim/forms/questionnaires/edit.html.erb +2 -2
- data/app/views/decidim/forms/questionnaires/responses/_files.html.erb +1 -0
- data/app/views/decidim/forms/questionnaires/responses/_long_response.html.erb +3 -0
- data/app/views/decidim/forms/questionnaires/{answers → responses}/_matrix_multiple.html.erb +16 -15
- data/app/views/decidim/forms/questionnaires/{answers → responses}/_matrix_single.html.erb +17 -16
- data/app/views/decidim/forms/questionnaires/responses/_multiple_option.html.erb +26 -0
- data/app/views/decidim/forms/questionnaires/responses/_separator.html.erb +1 -0
- data/app/views/decidim/forms/questionnaires/responses/_short_response.html.erb +3 -0
- data/app/views/decidim/forms/questionnaires/responses/_single_option.html.erb +33 -0
- data/app/views/decidim/forms/questionnaires/responses/_sorting.html.erb +26 -0
- data/app/views/decidim/forms/questionnaires/responses/_title_and_description.html.erb +1 -0
- data/app/views/decidim/forms/questionnaires/show.html.erb +10 -10
- data/config/assets.rb +2 -2
- data/config/locales/ar.yml +0 -22
- data/config/locales/bg.yml +3 -36
- data/config/locales/ca-IT.yml +73 -73
- data/config/locales/ca.yml +73 -73
- data/config/locales/cs.yml +72 -75
- data/config/locales/de.yml +72 -72
- data/config/locales/el.yml +3 -36
- data/config/locales/en.yml +83 -83
- data/config/locales/es-MX.yml +75 -75
- data/config/locales/es-PY.yml +75 -75
- data/config/locales/es.yml +73 -73
- data/config/locales/eu.yml +71 -71
- data/config/locales/fi-plain.yml +71 -71
- data/config/locales/fi.yml +69 -69
- data/config/locales/fr-CA.yml +70 -67
- data/config/locales/fr.yml +70 -67
- data/config/locales/ga-IE.yml +0 -7
- data/config/locales/gl.yml +0 -22
- data/config/locales/hu.yml +0 -22
- data/config/locales/id-ID.yml +0 -22
- data/config/locales/it.yml +3 -40
- data/config/locales/ja.yml +80 -80
- data/config/locales/lb.yml +3 -36
- data/config/locales/lt.yml +3 -36
- data/config/locales/lv.yml +0 -22
- data/config/locales/nl.yml +3 -36
- data/config/locales/no.yml +3 -36
- data/config/locales/pl.yml +3 -36
- data/config/locales/pt-BR.yml +3 -36
- data/config/locales/pt.yml +3 -36
- data/config/locales/ro-RO.yml +22 -51
- data/config/locales/ru.yml +0 -9
- data/config/locales/sk.yml +0 -22
- data/config/locales/sl.yml +0 -5
- data/config/locales/sv.yml +82 -54
- data/config/locales/tr-TR.yml +3 -36
- data/config/locales/zh-CN.yml +3 -36
- data/config/locales/zh-TW.yml +3 -36
- data/db/migrate/20190315203056_add_session_token_to_decidim_forms_answers.rb +1 -1
- data/db/migrate/20250314150250_rename_answer_to_response_in_decidim_forms.rb +30 -0
- data/db/migrate/20250319130003_change_question_types_in_questions.rb +14 -0
- data/lib/decidim/api/question_matrix_row_type.rb +13 -0
- data/lib/decidim/api/question_type.rb +4 -3
- data/lib/decidim/api/questionnaire_type.rb +1 -0
- data/lib/decidim/api/response_option_type.rb +13 -0
- data/lib/decidim/exporters/form_pdf.rb +33 -33
- data/lib/decidim/forms/api.rb +2 -1
- data/lib/decidim/forms/{download_your_data_user_answers_serializer.rb → download_your_data_user_responses_serializer.rb} +3 -3
- data/lib/decidim/forms/engine.rb +2 -2
- data/lib/decidim/forms/test/factories.rb +24 -24
- data/lib/decidim/forms/test/shared_examples/has_questionnaire.rb +176 -176
- data/lib/decidim/forms/test/shared_examples/manage_questionnaire_responses.rb +159 -0
- data/lib/decidim/forms/test/shared_examples/manage_questionnaires/add_display_conditions.rb +19 -19
- data/lib/decidim/forms/test/shared_examples/manage_questionnaires/add_questions.rb +44 -44
- data/lib/decidim/forms/test/shared_examples/manage_questionnaires/update_display_conditions.rb +10 -10
- data/lib/decidim/forms/test/shared_examples/manage_questionnaires/update_questions.rb +18 -18
- data/lib/decidim/forms/test/shared_examples/manage_questionnaires.rb +4 -4
- data/lib/decidim/forms/test.rb +1 -1
- data/lib/decidim/forms/user_responses_serializer.rb +110 -0
- data/lib/decidim/forms/version.rb +1 -1
- data/lib/decidim/forms.rb +2 -2
- metadata +48 -45
- data/app/cells/decidim/forms/answer_readonly_cell.rb +0 -9
- data/app/helpers/decidim/forms/admin/questionnaire_answers_helper.rb +0 -30
- data/app/models/decidim/forms/answer_choice.rb +0 -22
- data/app/queries/decidim/forms/questionnaire_user_answers.rb +0 -32
- data/app/views/decidim/forms/admin/questionnaires/_answer_option_template.html.erb +0 -7
- data/app/views/decidim/forms/admin/questionnaires/answers/index.html.erb +0 -49
- data/app/views/decidim/forms/admin/questionnaires/answers/show.html.erb +0 -43
- data/app/views/decidim/forms/questionnaires/_answer.html.erb +0 -61
- data/app/views/decidim/forms/questionnaires/answers/_files.html.erb +0 -1
- data/app/views/decidim/forms/questionnaires/answers/_long_answer.html.erb +0 -3
- data/app/views/decidim/forms/questionnaires/answers/_multiple_option.html.erb +0 -25
- data/app/views/decidim/forms/questionnaires/answers/_separator.html.erb +0 -1
- data/app/views/decidim/forms/questionnaires/answers/_short_answer.html.erb +0 -3
- data/app/views/decidim/forms/questionnaires/answers/_single_option.html.erb +0 -32
- data/app/views/decidim/forms/questionnaires/answers/_sorting.html.erb +0 -26
- data/app/views/decidim/forms/questionnaires/answers/_title_and_description.html.erb +0 -1
- data/lib/decidim/api/answer_option_type.rb +0 -13
- data/lib/decidim/forms/test/shared_examples/manage_questionnaire_answers.rb +0 -149
- data/lib/decidim/forms/user_answers_serializer.rb +0 -105
- /data/app/cells/decidim/forms/{answer_readonly → response_readonly}/show.erb +0 -0
data/config/locales/id-ID.yml
CHANGED
@@ -2,8 +2,6 @@
|
|
2
2
|
id:
|
3
3
|
activemodel:
|
4
4
|
attributes:
|
5
|
-
answer:
|
6
|
-
body: Menjawab
|
7
5
|
question:
|
8
6
|
max_choices: Jumlah pilihan maksimum
|
9
7
|
question_type: Mengetik
|
@@ -17,10 +15,6 @@ id:
|
|
17
15
|
description: Deskripsi
|
18
16
|
tos: Ketentuan layanan
|
19
17
|
questionnaires:
|
20
|
-
answer_option:
|
21
|
-
answer_option: Opsi jawaban
|
22
|
-
remove: Menghapus
|
23
|
-
statement: Pernyataan
|
24
18
|
edit:
|
25
19
|
save: Menyimpan
|
26
20
|
form:
|
@@ -29,7 +23,6 @@ id:
|
|
29
23
|
remove: Menghapus
|
30
24
|
statement: Pernyataan
|
31
25
|
question:
|
32
|
-
add_answer_option: Tambahkan opsi jawaban
|
33
26
|
any: Apa saja
|
34
27
|
description: Deskripsi
|
35
28
|
down: Turun
|
@@ -40,25 +33,14 @@ id:
|
|
40
33
|
update:
|
41
34
|
invalid: Terjadi masalah saat menyimpan formulir.
|
42
35
|
question_types:
|
43
|
-
long_answer: Jawaban panjang
|
44
36
|
multiple_option: Opsi berganda
|
45
|
-
short_answer: Jawaban singkat
|
46
37
|
single_option: Opsi tunggal
|
47
38
|
sorting: Penyortiran
|
48
39
|
questionnaires:
|
49
|
-
answer:
|
50
|
-
invalid: Ada masalah saat menjawab formulir.
|
51
|
-
success: Formulir berhasil dijawab.
|
52
40
|
question:
|
53
41
|
max_choices: 'Pilihan maksimal: %{n}'
|
54
42
|
show:
|
55
|
-
answer_questionnaire:
|
56
|
-
title: Jawab formulirnya
|
57
|
-
questionnaire_answered:
|
58
|
-
body: Anda sudah menjawab formulir ini.
|
59
|
-
title: Sudah dijawab
|
60
43
|
questionnaire_closed:
|
61
|
-
body: Formulir ditutup dan tidak dapat dijawab.
|
62
44
|
title: Formulir ditutup
|
63
45
|
questionnaire_for_private_users:
|
64
46
|
body: Formulir ini hanya tersedia untuk pengguna pribadi
|
@@ -67,7 +49,3 @@ id:
|
|
67
49
|
step_navigation:
|
68
50
|
show:
|
69
51
|
submit: Menyerahkan
|
70
|
-
user_answers_serializer:
|
71
|
-
created_at: Dijawab pada
|
72
|
-
id: ID jawaban
|
73
|
-
question: Pertanyaan
|
data/config/locales/it.yml
CHANGED
@@ -2,8 +2,6 @@
|
|
2
2
|
it:
|
3
3
|
activemodel:
|
4
4
|
attributes:
|
5
|
-
answer:
|
6
|
-
body: Risposta
|
7
5
|
question:
|
8
6
|
max_choices: Numero massimo di scelte
|
9
7
|
question_type: Tipo
|
@@ -20,35 +18,18 @@ it:
|
|
20
18
|
questionnaires:
|
21
19
|
actions:
|
22
20
|
back: Torna alle domande
|
23
|
-
show: Mostra risposte
|
24
|
-
answer_option:
|
25
|
-
answer_option: Opzione di risposta
|
26
|
-
remove: Rimuovere
|
27
|
-
statement: dichiarazione
|
28
|
-
answers:
|
29
|
-
actions:
|
30
|
-
show: Mostra risposte
|
31
|
-
empty: Ancora nessuna risposta
|
32
|
-
export_response:
|
33
|
-
title: risposte_utente_sondaggio_%{token}
|
34
|
-
show:
|
35
|
-
title: 'Risposta #%{number}'
|
36
21
|
display_condition:
|
37
|
-
answer_option: Opzione di risposta
|
38
22
|
condition_question: Domanda
|
39
23
|
condition_type: Condizione
|
40
24
|
condition_types:
|
41
|
-
answered: Chiusa
|
42
25
|
equal: Equilibrato
|
43
26
|
match: Include testo
|
44
|
-
not_answered: Senza risposta
|
45
27
|
not_equal: Non uguale a
|
46
28
|
condition_value: Testo incluso
|
47
29
|
display_condition: Stato di visualizzazione
|
48
30
|
mandatory: Questa condizione deve essere soddisfatta sempre indipendentemente dallo stato di altre condizioni
|
49
31
|
remove: Rimuovi
|
50
32
|
save_warning: Ricorda di salvare il modulo prima di configurare le condizioni di visualizzazione
|
51
|
-
select_answer_option: Selezionare l'opzione di risposta
|
52
33
|
select_condition_question: Seleziona una domanda
|
53
34
|
select_condition_type: Seleziona regola
|
54
35
|
edit:
|
@@ -65,7 +46,6 @@ it:
|
|
65
46
|
remove: Rimuovere
|
66
47
|
statement: dichiarazione
|
67
48
|
question:
|
68
|
-
add_answer_option: Aggiungi l'opzione di risposta
|
69
49
|
add_display_condition: Aggiungere condizione di visualizzazione
|
70
50
|
add_display_condition_info: Salva il modulo per configurare le condizioni di visualizzazione
|
71
51
|
add_matrix_row: Aggiungi riga
|
@@ -78,9 +58,9 @@ it:
|
|
78
58
|
remove: Rimuovere
|
79
59
|
statement: dichiarazione
|
80
60
|
up: Su
|
81
|
-
|
82
|
-
|
83
|
-
|
61
|
+
responses:
|
62
|
+
actions:
|
63
|
+
show: Mostra risposte
|
84
64
|
separator:
|
85
65
|
down: Giù
|
86
66
|
remove: Elimina
|
@@ -93,29 +73,18 @@ it:
|
|
93
73
|
dimensions: "%{width} x %{height} px"
|
94
74
|
question_types:
|
95
75
|
files: I file
|
96
|
-
long_answer: Risposta lunga
|
97
76
|
matrix_multiple: Matrice (opzione multipla)
|
98
77
|
matrix_single: Matrice (opzione singola)
|
99
78
|
multiple_option: Opzione multipla
|
100
|
-
short_answer: Risposta breve
|
101
79
|
single_option: Opzione singola
|
102
80
|
sorting: Ordinamento
|
103
81
|
questionnaires:
|
104
|
-
answer:
|
105
|
-
invalid: Ci sono stati errori nel rispondere al questionario.
|
106
|
-
success: Il questionario ha risposto con successo.
|
107
82
|
question:
|
108
83
|
max_choices: 'Scelte massime: %{n}'
|
109
84
|
show:
|
110
|
-
answer_questionnaire:
|
111
|
-
title: Rispondi al questionario
|
112
85
|
current_step: Passo %{step}
|
113
86
|
of_total_steps: di %{total_steps}
|
114
|
-
questionnaire_answered:
|
115
|
-
body: Hai già risposto a questo questionario.
|
116
|
-
title: Ho già risposto
|
117
87
|
questionnaire_closed:
|
118
|
-
body: Il questionario è chiuso e non è possibile rispondere.
|
119
88
|
title: Questionario chiuso
|
120
89
|
questionnaire_for_private_users:
|
121
90
|
body: Il questionario è disponibile solo per gli utenti privati
|
@@ -128,12 +97,6 @@ it:
|
|
128
97
|
tos_agreement: Partecipando accetti i suoi Termini di servizio
|
129
98
|
step_navigation:
|
130
99
|
show:
|
131
|
-
are_you_sure_no_edit: Questa azione non può essere annullata e non potrai modificare le tue risposte. Sei sicuro?
|
132
100
|
back: Indietro
|
133
101
|
continue: Continua
|
134
102
|
submit: Invia
|
135
|
-
user_answers_serializer:
|
136
|
-
body: Risposta
|
137
|
-
created_at: Risposto
|
138
|
-
id: ID risposta
|
139
|
-
question: Domanda
|
data/config/locales/ja.yml
CHANGED
@@ -2,19 +2,21 @@
|
|
2
2
|
ja:
|
3
3
|
activemodel:
|
4
4
|
attributes:
|
5
|
-
answer:
|
6
|
-
body: 回答
|
7
|
-
choices: 項目
|
8
|
-
selected_choices: 選択した項目
|
9
5
|
question:
|
10
6
|
max_choices: 選択肢の最大数
|
11
7
|
question_type: タイプ
|
12
8
|
questionnaire_question:
|
13
9
|
mandatory: 必須
|
14
10
|
max_characters: 文字数制限 (制限がない場合は0にしてください)
|
11
|
+
response:
|
12
|
+
body: 応答
|
13
|
+
choices: 項目
|
14
|
+
selected_choices: 選択した項目
|
15
15
|
errors:
|
16
16
|
models:
|
17
|
-
|
17
|
+
questionnaire:
|
18
|
+
request_invalid: リクエストの処理中に問題が発生しました。もう一度やり直してください。
|
19
|
+
response:
|
18
20
|
attributes:
|
19
21
|
add_documents:
|
20
22
|
needs_to_be_reattached: 再添付が必要
|
@@ -23,81 +25,57 @@ ja:
|
|
23
25
|
choices:
|
24
26
|
missing: は完全ではありません
|
25
27
|
too_many: 最大 %{count} 個まで選択できます。
|
26
|
-
questionnaire:
|
27
|
-
request_invalid: リクエストの処理中に問題が発生しました。もう一度やり直してください。
|
28
28
|
decidim:
|
29
29
|
download_your_data:
|
30
30
|
help:
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
user:
|
31
|
+
responses:
|
32
|
+
id: レスポンスの固有ID
|
33
|
+
question: 応答された質問
|
34
|
+
questionnaire: 応答されたアンケート
|
35
|
+
response: 質問への応答
|
36
|
+
user: アンケートに応答したユーザー
|
37
37
|
show:
|
38
|
-
|
39
|
-
|
38
|
+
responses: 応答のエクスポート
|
39
|
+
survey_user_responses: アンケートユーザーの応答
|
40
40
|
forms:
|
41
41
|
admin:
|
42
42
|
models:
|
43
43
|
components:
|
44
|
-
|
45
|
-
|
46
|
-
allow_unregistered:
|
47
|
-
allow_unregistered_help:
|
44
|
+
allow_editing_responses: 登録ユーザーが自分のアンケート応答を編集できるようにする
|
45
|
+
allow_responses: 応答を許可
|
46
|
+
allow_unregistered: 未登録ユーザーがアンケートに応答できるようにする
|
47
|
+
allow_unregistered_help: 有効にした場合、アンケートへの回答にログインは必要ありません。 これは、データが貧弱または信頼性が低下する可能性があり、自動化された攻撃に対してより脆弱になります。 注意して使用してください。参加者は、異なるブラウザまたは彼女のWebブラウザの「プライベートブラウジング」機能を使用することで、同じアンケートに複数回応答できることに留意してください。
|
48
48
|
announcement: お知らせ
|
49
49
|
clean_after_publish: アンケートを公開するときに回答を削除する
|
50
50
|
description: 説明
|
51
|
-
ends_at:
|
51
|
+
ends_at: 応答受付の終了日時
|
52
52
|
ends_at_help: 特定の日付がない場合は空白のままにしてください
|
53
|
-
starts_at:
|
53
|
+
starts_at: 応答受付の開始日時
|
54
54
|
starts_at_help: 特定の日付がない場合は空白のままにしてください
|
55
55
|
tos: 利用規約
|
56
56
|
questionnaires:
|
57
57
|
actions:
|
58
58
|
back: 質問に戻る
|
59
|
-
|
60
|
-
show:
|
61
|
-
answer_option:
|
62
|
-
answer_option: 回答オプション
|
63
|
-
free_text: 自由形式テキスト
|
64
|
-
remove: 削除
|
65
|
-
statement: ステートメント
|
66
|
-
answers:
|
67
|
-
actions:
|
68
|
-
back: 応答に戻る
|
69
|
-
export: エクスポート
|
70
|
-
next: 次 ›
|
71
|
-
previous: "‹ 前"
|
72
|
-
show: 回答を表示
|
73
|
-
empty: まだ回答がありません
|
74
|
-
export:
|
75
|
-
answer:
|
76
|
-
title: '応答 #%{number}'
|
77
|
-
export_response:
|
78
|
-
title: survey_user_answers_%{token}
|
79
|
-
index:
|
80
|
-
title: "総回答数 %{total} 件"
|
81
|
-
show:
|
82
|
-
title: '回答 #%{number}'
|
59
|
+
publish_responses: 応答を公開
|
60
|
+
show: 応答
|
83
61
|
display_condition:
|
84
|
-
answer_option: 回答オプション
|
85
62
|
condition_question: 質問
|
86
63
|
condition_type: 条件
|
87
64
|
condition_types:
|
88
|
-
answered: 回答済み
|
89
65
|
equal: 等しい
|
90
66
|
match: テキストを含む
|
91
|
-
not_answered: 応答がありません
|
92
67
|
not_equal: 等しくない
|
68
|
+
not_responded: 応答がありません
|
69
|
+
responded: 応答済み
|
93
70
|
condition_value: 含まれるテキスト
|
94
71
|
display_condition: 条件を表示
|
95
72
|
mandatory: 他の条件にかかわらず、この条件は常に満たされる必要があります
|
96
73
|
remove: 削除
|
74
|
+
response_option: 応答オプション
|
97
75
|
save_warning: 表示条件を設定する前にフォームを保存してください
|
98
|
-
select_answer_option: 回答オプションを選択
|
99
76
|
select_condition_question: 質問を選択
|
100
77
|
select_condition_type: 条件の種類を選択
|
78
|
+
select_response_option: 応答オプションを選択
|
101
79
|
edit:
|
102
80
|
save: 保存
|
103
81
|
title: アンケートを編集
|
@@ -118,10 +96,10 @@ ja:
|
|
118
96
|
remove: 削除
|
119
97
|
statement: ステートメント
|
120
98
|
question:
|
121
|
-
add_answer_option: 回答オプションを追加
|
122
99
|
add_display_condition: 表示条件を追加
|
123
100
|
add_display_condition_info: 表示条件を設定するためにフォームを保存します
|
124
101
|
add_matrix_row: 行を追加
|
102
|
+
add_response_option: 応答オプションを追加
|
125
103
|
any: 任意の
|
126
104
|
collapse: 折りたたむ
|
127
105
|
description: 説明
|
@@ -132,12 +110,34 @@ ja:
|
|
132
110
|
statement: ステートメント
|
133
111
|
up: 上へ
|
134
112
|
questions_form:
|
135
|
-
|
113
|
+
already_responded_warning: このフォームはすでに応答しているユーザーがいるため、質問を修正することはできません。
|
136
114
|
collapse: すべての質問を閉じる
|
137
115
|
expand: すべての質問を展開
|
138
|
-
unpublished_warning:
|
116
|
+
unpublished_warning: フォームは公開されていません。質問を修正することはできますが、そうすると現在の応答が削除されます。
|
139
117
|
update:
|
140
118
|
success: アンケートの質問を保存しました。
|
119
|
+
response_option:
|
120
|
+
free_text: 自由形式テキスト
|
121
|
+
remove: 削除
|
122
|
+
response_option: 応答オプション
|
123
|
+
statement: ステートメント
|
124
|
+
responses:
|
125
|
+
actions:
|
126
|
+
back: 応答に戻る
|
127
|
+
export: エクスポート
|
128
|
+
next: 次 ›
|
129
|
+
previous: "‹ 前"
|
130
|
+
show: 回答を表示
|
131
|
+
empty: 応答はまだありません
|
132
|
+
export:
|
133
|
+
response:
|
134
|
+
title: '応答 #%{number}'
|
135
|
+
export_response:
|
136
|
+
title: survey_user_responses_%{token}
|
137
|
+
index:
|
138
|
+
title: "総回答数 %{total} 件"
|
139
|
+
show:
|
140
|
+
title: '応答 #%{number}'
|
141
141
|
separator:
|
142
142
|
down: 下
|
143
143
|
remove: 削除
|
@@ -157,12 +157,12 @@ ja:
|
|
157
157
|
success: フォームを保存しました。
|
158
158
|
admin_log:
|
159
159
|
question:
|
160
|
-
|
161
|
-
|
160
|
+
publish_responses: "%{user_name} が %{resource_name} の質問の回答を %{space_name} スペースに公開しました"
|
161
|
+
unpublish_responses: "%{user_name} は %{resource_name} の質問の回答を %{space_name} スペースで非公開にしました"
|
162
162
|
questionnaire:
|
163
163
|
update: "%{user_name} が %{resource_name} アンケートを更新しました"
|
164
164
|
errors:
|
165
|
-
|
165
|
+
response:
|
166
166
|
body: 本文は空白にできません
|
167
167
|
images:
|
168
168
|
dimensions: "%{width} x %{height} px"
|
@@ -171,41 +171,29 @@ ja:
|
|
171
171
|
resize_to_fit: この画像は %{dimensions} に合うようにリサイズされます。
|
172
172
|
question_types:
|
173
173
|
files: ファイル
|
174
|
-
|
174
|
+
long_response: 長い応答
|
175
175
|
matrix_multiple: マトリクス (複数オプション)
|
176
176
|
matrix_single: マトリクス(シングルオプション)
|
177
177
|
multiple_option: 複数のオプション
|
178
|
-
|
178
|
+
short_response: 短い応答
|
179
179
|
single_option: 単一オプション
|
180
180
|
sorting: 並び替え
|
181
181
|
title_and_description: タイトルと説明
|
182
|
-
|
182
|
+
questionnaire_response_presenter:
|
183
183
|
download_attachment: 添付ファイルをダウンロード
|
184
184
|
questionnaires:
|
185
|
-
answer:
|
186
|
-
invalid: フォームの回答に問題がありました。
|
187
|
-
max_choices_alert: 選択された選択肢が多すぎます
|
188
|
-
success: フォームは正常に回答しました。
|
189
185
|
question:
|
190
186
|
max_choices: '最大選択肢: %{n}'
|
187
|
+
response:
|
188
|
+
invalid: フォームへの応答で問題が発生しました。
|
189
|
+
max_choices_alert: 選択された選択肢が多すぎます
|
190
|
+
success: フォームに応答しました。
|
191
191
|
show:
|
192
|
-
answer_questionnaire:
|
193
|
-
already_have_an_account?: 既にアカウントをお持ちですか?
|
194
|
-
are_you_new?: 新しいユーザーですか?
|
195
|
-
sign_in_description: アンケートにログインする
|
196
|
-
sign_up_description: アンケートに答えるために参加者アカウントを作成します
|
197
|
-
title: フォームに回答
|
198
192
|
current_step: ステップ %{step}
|
199
193
|
empty: このフォームに設定された質問はまだありません。
|
200
194
|
of_total_steps: / %{total_steps}
|
201
|
-
questionnaire_answered:
|
202
|
-
body: このフォームには既に回答済みです。
|
203
|
-
title: すでに回答済み
|
204
|
-
questionnaire_answered_edit:
|
205
|
-
body: すでにこのフォームに回答しています。 %{link}
|
206
|
-
edit: 回答を編集する
|
207
195
|
questionnaire_closed:
|
208
|
-
body:
|
196
|
+
body: フォームが閉じられているため、応答できません。
|
209
197
|
title: フォームを閉じました
|
210
198
|
questionnaire_for_private_users:
|
211
199
|
body: このフォームはプライベートユーザーのみ利用できます
|
@@ -215,20 +203,32 @@ ja:
|
|
215
203
|
title: JavaScriptは無効です
|
216
204
|
questionnaire_not_published:
|
217
205
|
body: このフォームはまだ公開されていません。
|
206
|
+
questionnaire_responded:
|
207
|
+
body: すでにこのフォームに応答しています。
|
208
|
+
title: すでに応答しています
|
209
|
+
questionnaire_responded_edit:
|
210
|
+
body: すでにこのフォームに回答しています。 %{link}
|
211
|
+
edit: 回答を編集する
|
212
|
+
response_questionnaire:
|
213
|
+
already_have_an_account?: 既にアカウントをお持ちですか?
|
214
|
+
are_you_new?: 新しいユーザーですか?
|
215
|
+
sign_in_description: アンケートにログインする
|
216
|
+
sign_up_description: アンケートに答えるために参加者アカウントを作成します
|
217
|
+
title: フォームへの応答
|
218
218
|
tos_agreement: 参加することにより、利用規約に同意します。
|
219
219
|
step_navigation:
|
220
220
|
show:
|
221
221
|
are_you_sure_edit_guest: 回答を後で編集できるようにしたい場合は、ログインまたはアカウントを作成する必要があります。
|
222
|
-
are_you_sure_no_edit:
|
222
|
+
are_you_sure_no_edit: この操作は元に戻すことができず、応答を編集することができません。よろしいですか?
|
223
223
|
back: 戻る
|
224
224
|
continue: 続ける
|
225
225
|
disallowed: 回答を編集する権限がありません。
|
226
226
|
submit: 送信
|
227
|
-
|
228
|
-
body:
|
227
|
+
user_responses_serializer:
|
228
|
+
body: 応答
|
229
229
|
completion: 完了
|
230
|
-
created_at:
|
231
|
-
id:
|
230
|
+
created_at: 応答日時
|
231
|
+
id: 応答ID
|
232
232
|
ip_hash: IP ハッシュ
|
233
233
|
question: 質問
|
234
234
|
registered: 登録済み
|
data/config/locales/lb.yml
CHANGED
@@ -2,8 +2,6 @@
|
|
2
2
|
lb:
|
3
3
|
activemodel:
|
4
4
|
attributes:
|
5
|
-
answer:
|
6
|
-
body: Äntwert
|
7
5
|
question:
|
8
6
|
max_choices: Maximale Anzahl von Auswahlmöglichkeiten
|
9
7
|
question_type: Zort
|
@@ -20,35 +18,18 @@ lb:
|
|
20
18
|
questionnaires:
|
21
19
|
actions:
|
22
20
|
back: Zurück zu Fragen
|
23
|
-
show: Antworten anzeigen
|
24
|
-
answer_option:
|
25
|
-
answer_option: Antwortoption
|
26
|
-
remove: Löschen
|
27
|
-
statement: Aussage
|
28
|
-
answers:
|
29
|
-
actions:
|
30
|
-
show: Antworten anzeigen
|
31
|
-
empty: Noch keine Antworten
|
32
|
-
export_response:
|
33
|
-
title: Umfrage_Benutzer_Antworten_%{token}
|
34
|
-
show:
|
35
|
-
title: 'Antwort #%{number}'
|
36
21
|
display_condition:
|
37
|
-
answer_option: Antwortoption
|
38
22
|
condition_question: Frage
|
39
23
|
condition_type: Bedingung
|
40
24
|
condition_types:
|
41
|
-
answered: Beantwortet
|
42
25
|
equal: Gleich
|
43
26
|
match: Beinhaltet Text
|
44
|
-
not_answered: Unbeantwortet
|
45
27
|
not_equal: Nicht gleich
|
46
28
|
condition_value: Enthaltener Text
|
47
29
|
display_condition: Bedingung anzeigen
|
48
30
|
mandatory: Diese Bedingung muss immer erfüllt werden, unabhängig vom Status anderer Bedingungen
|
49
31
|
remove: Löschen
|
50
32
|
save_warning: Vergessen Sie nicht, das Formular zu speichern, bevor Sie die Anzeigebedingungen konfigurieren
|
51
|
-
select_answer_option: Antwortoption auswählen
|
52
33
|
select_condition_question: Eine Frage
|
53
34
|
select_condition_type: Wählen Sie einen Bedingungstyp
|
54
35
|
edit:
|
@@ -65,7 +46,6 @@ lb:
|
|
65
46
|
remove: Löschen
|
66
47
|
statement: Aussage
|
67
48
|
question:
|
68
|
-
add_answer_option: Antwortoption hinzufügen
|
69
49
|
add_display_condition: Anzeigebedingung hinzufügen
|
70
50
|
add_display_condition_info: Speichern Sie das Formular, um die Anzeigebedingungen zu konfigurieren
|
71
51
|
add_matrix_row: Zeile hinzufügen
|
@@ -78,6 +58,9 @@ lb:
|
|
78
58
|
remove: Löschen
|
79
59
|
statement: Aussage
|
80
60
|
up: Hoch
|
61
|
+
responses:
|
62
|
+
actions:
|
63
|
+
show: Antworten anzeigen
|
81
64
|
separator:
|
82
65
|
down: Runter
|
83
66
|
remove: Löschen
|
@@ -90,29 +73,18 @@ lb:
|
|
90
73
|
dimensions: "%{width} x %{height} px"
|
91
74
|
question_types:
|
92
75
|
files: Dateien
|
93
|
-
long_answer: Lange Antwort
|
94
76
|
matrix_multiple: Matrix (Mehrfachoption)
|
95
77
|
matrix_single: Matrix (Einzelne Option)
|
96
78
|
multiple_option: Mehrfachoption
|
97
|
-
short_answer: Kurze Antwort
|
98
79
|
single_option: Einzelne Option
|
99
80
|
sorting: Sortierung
|
100
81
|
questionnaires:
|
101
|
-
answer:
|
102
|
-
invalid: Bei der Beantwortung des Fragebogens sind Fehler aufgetreten.
|
103
|
-
success: Fragebogen erfolgreich beantwortet.
|
104
82
|
question:
|
105
83
|
max_choices: 'Max Auswahlmöglichkeiten: %{n}'
|
106
84
|
show:
|
107
|
-
answer_questionnaire:
|
108
|
-
title: Beantworten Sie den Fragebogen
|
109
85
|
current_step: Schritt %{step}
|
110
86
|
of_total_steps: von %{total_steps}
|
111
|
-
questionnaire_answered:
|
112
|
-
body: Sie haben diesen Fragebogen bereits beantwortet.
|
113
|
-
title: Schon beantwortet
|
114
87
|
questionnaire_closed:
|
115
|
-
body: Der Fragebogen ist geschlossen und kann nicht beantwortet werden.
|
116
88
|
title: Fragebogen geschlossen
|
117
89
|
questionnaire_for_private_users:
|
118
90
|
body: Der Fragebogen ist nur für Privatanwender verfügbar
|
@@ -128,8 +100,3 @@ lb:
|
|
128
100
|
back: Zurück
|
129
101
|
continue: Weiter
|
130
102
|
submit: einreichen
|
131
|
-
user_answers_serializer:
|
132
|
-
body: Antwort
|
133
|
-
created_at: Beantwortet am
|
134
|
-
id: ID beantworten
|
135
|
-
question: Fro
|
data/config/locales/lt.yml
CHANGED
@@ -2,8 +2,6 @@
|
|
2
2
|
lt:
|
3
3
|
activemodel:
|
4
4
|
attributes:
|
5
|
-
answer:
|
6
|
-
body: Atsakymas
|
7
5
|
question:
|
8
6
|
max_choices: Maksimalus pasirinkimų skaičius
|
9
7
|
question_type: Tipas
|
@@ -20,35 +18,18 @@ lt:
|
|
20
18
|
questionnaires:
|
21
19
|
actions:
|
22
20
|
back: Grįžti į klausimus
|
23
|
-
show: Rodyti atsakymus
|
24
|
-
answer_option:
|
25
|
-
answer_option: Atsakymo variantas
|
26
|
-
remove: Pašalinti
|
27
|
-
statement: Pareiškimas
|
28
|
-
answers:
|
29
|
-
actions:
|
30
|
-
show: Rodyti atsakymus
|
31
|
-
empty: Atsakymų dar nėra
|
32
|
-
export_response:
|
33
|
-
title: apklausa_naudotoju_atsakymai_%{token}
|
34
|
-
show:
|
35
|
-
title: 'Atsakymas #%{number}'
|
36
21
|
display_condition:
|
37
|
-
answer_option: Atsakymo variantas
|
38
22
|
condition_question: Klausimas
|
39
23
|
condition_type: Sąlyga
|
40
24
|
condition_types:
|
41
|
-
answered: Atsakyta
|
42
25
|
equal: Lygu
|
43
26
|
match: Įskaitant tekstą
|
44
|
-
not_answered: Neatsakyta
|
45
27
|
not_equal: Nelygu
|
46
28
|
condition_value: Įskaitytas tekstas
|
47
29
|
display_condition: Rodymo sąlyga
|
48
30
|
mandatory: Ši sąlyga turi būti patenkinta visada, neatsižvelgiant į kitų sąlygų statusą
|
49
31
|
remove: Pašalinti
|
50
32
|
save_warning: Prieš konfigūruodami rodymo sąlygas, nepamirškite išsaugoti formos
|
51
|
-
select_answer_option: Pasirinkite atsakymo variantą
|
52
33
|
select_condition_question: Pasirinkite klausimą
|
53
34
|
select_condition_type: Pasirinkti sąlygos tipą
|
54
35
|
edit:
|
@@ -65,7 +46,6 @@ lt:
|
|
65
46
|
remove: Pašalinti
|
66
47
|
statement: Pareiškimas
|
67
48
|
question:
|
68
|
-
add_answer_option: Pridėti atsakymo variantą
|
69
49
|
add_display_condition: Pridėti rodymo sąlygą
|
70
50
|
add_display_condition_info: Išsaugokite formą, kad galėtumėt konfiguruoti rodymo sąlygas
|
71
51
|
add_matrix_row: Pridėti eilutę
|
@@ -78,6 +58,9 @@ lt:
|
|
78
58
|
remove: Pašalinti
|
79
59
|
statement: Pareiškimas
|
80
60
|
up: Į viršų
|
61
|
+
responses:
|
62
|
+
actions:
|
63
|
+
show: Rodyti atsakymus
|
81
64
|
separator:
|
82
65
|
down: Žemyn
|
83
66
|
remove: Pašalinti
|
@@ -105,30 +88,19 @@ lt:
|
|
105
88
|
resize_to_fit: Paveikslėlio dydis buvo pakeistas į %{dimensions}.
|
106
89
|
question_types:
|
107
90
|
files: Dokumentai
|
108
|
-
long_answer: Ilgas atsakymas
|
109
91
|
matrix_multiple: Matrica (su keliais variantais)
|
110
92
|
matrix_single: Matrica (vienas variantas)
|
111
93
|
multiple_option: Keli variantai
|
112
|
-
short_answer: Trumpas atsakymas
|
113
94
|
single_option: Vienas variantas
|
114
95
|
sorting: Rūšiavimas
|
115
96
|
title_and_description: Pavadinimas ir aprašymas
|
116
97
|
questionnaires:
|
117
|
-
answer:
|
118
|
-
invalid: Atsakant į šią formą iškilo problema.
|
119
|
-
success: Į formos klausimus atsakyta.
|
120
98
|
question:
|
121
99
|
max_choices: 'Didžiausias pasirinkčių skaičius: %{n}'
|
122
100
|
show:
|
123
|
-
answer_questionnaire:
|
124
|
-
title: Atsakyti į formos klausimus
|
125
101
|
current_step: Žingsnis %{step}
|
126
102
|
of_total_steps: iš%{total_steps}
|
127
|
-
questionnaire_answered:
|
128
|
-
body: Jau atsakėte iš šios formos klausimus.
|
129
|
-
title: Jau atsakyta
|
130
103
|
questionnaire_closed:
|
131
|
-
body: Forma uždaryta ir į ją atsakyti negalima.
|
132
104
|
title: Forma uždaryta
|
133
105
|
questionnaire_for_private_users:
|
134
106
|
body: Forma pateikiama tik privatiems naudotojams
|
@@ -144,8 +116,3 @@ lt:
|
|
144
116
|
back: Atgal
|
145
117
|
continue: Tęsti
|
146
118
|
submit: Pateikti
|
147
|
-
user_answers_serializer:
|
148
|
-
body: Atsakymas
|
149
|
-
created_at: Atsakyta
|
150
|
-
id: Atsakymo ID
|
151
|
-
question: Klausimas
|