decidim-forms 0.21.0 → 0.22.0
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/assets/config/admin/decidim_forms_manifest.js +1 -0
- data/app/assets/images/decidim/surveys/icon.svg +1 -19
- data/app/assets/javascripts/decidim/forms/admin/collapsible_questions.js.es6 +13 -0
- data/app/assets/javascripts/decidim/forms/admin/forms.js.es6 +95 -7
- data/app/assets/javascripts/decidim/forms/admin/live_text_update.component.js.es6 +52 -0
- data/app/assets/javascripts/decidim/forms/forms.js.es6 +42 -1
- data/app/assets/javascripts/decidim/forms/max_choices_alert.component.js.es6 +44 -0
- data/app/assets/stylesheets/decidim/forms/forms.scss +39 -0
- data/app/cells/decidim/forms/matrix_readonly/show.erb +5 -0
- data/app/cells/decidim/forms/matrix_readonly_cell.rb +12 -0
- data/app/cells/decidim/forms/question_readonly/show.erb +5 -1
- data/app/cells/decidim/forms/question_readonly_cell.rb +5 -0
- data/app/cells/decidim/forms/step_navigation/show.erb +35 -0
- data/app/cells/decidim/forms/step_navigation_cell.rb +46 -0
- data/app/commands/decidim/forms/admin/update_questionnaire.rb +8 -0
- data/app/commands/decidim/forms/answer_questionnaire.rb +2 -1
- data/app/controllers/decidim/forms/admin/concerns/has_questionnaire.rb +6 -2
- data/app/controllers/decidim/forms/concerns/has_questionnaire.rb +11 -2
- data/app/forms/decidim/forms/admin/question_form.rb +20 -1
- data/app/forms/decidim/forms/admin/question_matrix_row_form.rb +26 -0
- data/app/forms/decidim/forms/answer_choice_form.rb +1 -0
- data/app/forms/decidim/forms/answer_form.rb +16 -2
- data/app/forms/decidim/forms/questionnaire_form.rb +25 -3
- data/app/helpers/decidim/forms/admin/application_helper.rb +16 -0
- data/app/models/decidim/forms/answer_choice.rb +7 -0
- data/app/models/decidim/forms/question.rb +18 -2
- data/app/models/decidim/forms/question_matrix_row.rb +12 -0
- data/app/views/decidim/forms/admin/questionnaires/_answer_option_template.html.erb +1 -1
- data/app/views/decidim/forms/admin/questionnaires/_form.html.erb +37 -4
- data/app/views/decidim/forms/admin/questionnaires/_matrix_row.html.erb +34 -0
- data/app/views/decidim/forms/admin/questionnaires/_matrix_row_template.html.erb +7 -0
- data/app/views/decidim/forms/admin/questionnaires/_question.html.erb +29 -6
- data/app/views/decidim/forms/admin/questionnaires/_separator.html.erb +41 -0
- data/app/views/decidim/forms/questionnaires/_answer.html.erb +21 -92
- data/app/views/decidim/forms/questionnaires/answers/_long_answer.html.erb +1 -0
- data/app/views/decidim/forms/questionnaires/answers/_matrix_multiple.html.erb +43 -0
- data/app/views/decidim/forms/questionnaires/answers/_matrix_single.html.erb +43 -0
- data/app/views/decidim/forms/questionnaires/answers/_multiple_option.html.erb +23 -0
- data/app/views/decidim/forms/questionnaires/answers/_separator.html.erb +1 -0
- data/app/views/decidim/forms/questionnaires/answers/_short_answer.html.erb +1 -0
- data/app/views/decidim/forms/questionnaires/answers/_single_option.html.erb +30 -0
- data/app/views/decidim/forms/questionnaires/answers/_sorting.html.erb +23 -0
- data/app/views/decidim/forms/questionnaires/show.html.erb +57 -25
- data/config/locales/ar.yml +7 -3
- data/config/locales/bg-BG.yml +16 -0
- data/config/locales/ca.yml +35 -3
- data/config/locales/cs.yml +35 -3
- data/config/locales/da-DK.yml +1 -0
- data/config/locales/de.yml +41 -3
- data/config/locales/el.yml +119 -0
- data/config/locales/en.yml +35 -3
- data/config/locales/es-MX.yml +35 -3
- data/config/locales/es-PY.yml +35 -3
- data/config/locales/es.yml +35 -3
- data/config/locales/et-EE.yml +1 -0
- data/config/locales/eu.yml +7 -3
- data/config/locales/fi-plain.yml +35 -3
- data/config/locales/fi.yml +36 -4
- data/config/locales/fr-CA.yml +120 -0
- data/config/locales/fr.yml +36 -4
- data/config/locales/ga-IE.yml +1 -0
- data/config/locales/gl.yml +7 -3
- data/config/locales/hr-HR.yml +1 -0
- data/config/locales/hu.yml +11 -3
- data/config/locales/id-ID.yml +7 -3
- data/config/locales/it.yml +36 -4
- data/config/locales/ja-JP.yml +120 -0
- data/config/locales/lt-LT.yml +1 -0
- data/config/locales/lv-LV.yml +119 -0
- data/config/locales/mt-MT.yml +1 -0
- data/config/locales/nl.yml +35 -3
- data/config/locales/no.yml +7 -3
- data/config/locales/pl.yml +63 -25
- data/config/locales/pt-BR.yml +8 -4
- data/config/locales/pt.yml +62 -24
- data/config/locales/ro-RO.yml +118 -0
- data/config/locales/ru.yml +4 -1
- data/config/locales/sk-SK.yml +88 -0
- data/config/locales/sk.yml +92 -0
- data/config/locales/sl.yml +5 -0
- data/config/locales/sr-CS.yml +1 -0
- data/config/locales/sv.yml +38 -6
- data/config/locales/tr-TR.yml +7 -3
- data/db/migrate/20200225123810_create_decidim_forms_question_matrix_rows.rb +11 -0
- data/db/migrate/20200304152939_add_matrix_row_id_to_decidim_forms_answer_choices.rb +11 -0
- data/lib/decidim/forms/test/factories.rb +20 -0
- data/lib/decidim/forms/test/shared_examples/has_questionnaire.rb +313 -36
- data/lib/decidim/forms/test/shared_examples/manage_questionnaires.rb +346 -15
- data/lib/decidim/forms/user_answers_serializer.rb +21 -4
- data/lib/decidim/forms/version.rb +1 -1
- metadata +45 -8
|
@@ -0,0 +1 @@
|
|
|
1
|
+
hr:
|
data/config/locales/hu.yml
CHANGED
|
@@ -32,15 +32,21 @@ hu:
|
|
|
32
32
|
statement: Nyilatkozat
|
|
33
33
|
edit:
|
|
34
34
|
save: Mentés
|
|
35
|
-
title: Cím
|
|
36
35
|
form:
|
|
37
36
|
add_question: Kérdés hozzáadása
|
|
38
37
|
already_answered_warning: Néhány felhasználó már válaszolt a kérdőívre, így nem változtathatja meg kérdéseit.
|
|
38
|
+
collapse: Minden kérdés összecsukása
|
|
39
|
+
expand: Minden kérdés kibontása
|
|
40
|
+
matrix_row:
|
|
41
|
+
remove: Eltávolít
|
|
42
|
+
statement: Nyilatkozat
|
|
39
43
|
question:
|
|
40
44
|
add_answer_option: Válasz opció hozzáadása
|
|
41
45
|
any: Bármilyen
|
|
46
|
+
collapse: Összecsukás
|
|
42
47
|
description: Leírás
|
|
43
48
|
down: Le
|
|
49
|
+
expand: Kibontás
|
|
44
50
|
question: Kérdés
|
|
45
51
|
remove: Eltávolít
|
|
46
52
|
statement: Nyilatkozat
|
|
@@ -67,7 +73,6 @@ hu:
|
|
|
67
73
|
answer_questionnaire:
|
|
68
74
|
anonymous_user_message: <a href="%{sign_in_link}">Jelentkezz be a fiókoddal </a> vagy <a href="%{sign_up_link}">iratkozz fel</a> a kérdőív megválaszolásához.
|
|
69
75
|
title: Válaszoljon a kérdőívre
|
|
70
|
-
are_you_sure: Ez a művelet nem vonható vissza, és nem tudod majd szerkeszteni a válaszokat. Biztos vagy ebben?
|
|
71
76
|
questionnaire_answered:
|
|
72
77
|
body: Már megválaszoltad ezt a kérdőívet.
|
|
73
78
|
title: Már megválaszolt
|
|
@@ -77,8 +82,11 @@ hu:
|
|
|
77
82
|
questionnaire_for_private_users:
|
|
78
83
|
body: A kérdőív csak magán felhasználók számára áll rendelkezésre
|
|
79
84
|
title: A kérdőív lezárult
|
|
80
|
-
submit: Beküldés
|
|
81
85
|
tos_agreement: A részvétellel elfogadja az Általános Szerződési Feltételeket
|
|
86
|
+
step_navigation:
|
|
87
|
+
show:
|
|
88
|
+
are_you_sure: Ez a művelet nem vonható vissza, és nem tudod majd szerkeszteni a válaszokat. Biztos vagy ebben?
|
|
89
|
+
submit: Beküldés
|
|
82
90
|
user_answers_serializer:
|
|
83
91
|
created_at: Válaszolt
|
|
84
92
|
id: Válasz azonosító
|
data/config/locales/id-ID.yml
CHANGED
|
@@ -30,10 +30,12 @@ id:
|
|
|
30
30
|
statement: Pernyataan
|
|
31
31
|
edit:
|
|
32
32
|
save: Menyimpan
|
|
33
|
-
title: Judul
|
|
34
33
|
form:
|
|
35
34
|
add_question: Tambahkan pertanyaan
|
|
36
35
|
already_answered_warning: Formulir sudah dijawab oleh beberapa pengguna sehingga Anda tidak dapat mengubah pertanyaannya.
|
|
36
|
+
matrix_row:
|
|
37
|
+
remove: Menghapus
|
|
38
|
+
statement: Pernyataan
|
|
37
39
|
question:
|
|
38
40
|
add_answer_option: Tambahkan opsi jawaban
|
|
39
41
|
any: Apa saja
|
|
@@ -65,7 +67,6 @@ id:
|
|
|
65
67
|
answer_questionnaire:
|
|
66
68
|
anonymous_user_message: <a href="%{sign_in_link}">Masuk dengan akun Anda</a> atau <a href="%{sign_up_link}">mendaftar</a> untuk menjawab formulir.
|
|
67
69
|
title: Jawab formulirnya
|
|
68
|
-
are_you_sure: Tindakan ini tidak dapat diurungkan dan Anda tidak akan dapat mengedit jawaban Anda. Apakah kamu yakin
|
|
69
70
|
questionnaire_answered:
|
|
70
71
|
body: Anda sudah menjawab formulir ini.
|
|
71
72
|
title: Sudah dijawab
|
|
@@ -75,8 +76,11 @@ id:
|
|
|
75
76
|
questionnaire_for_private_users:
|
|
76
77
|
body: Formulir ini hanya tersedia untuk pengguna pribadi
|
|
77
78
|
title: Formulir ditutup
|
|
78
|
-
submit: Menyerahkan
|
|
79
79
|
tos_agreement: Dengan berpartisipasi Anda menerima Ketentuan Layanannya
|
|
80
|
+
step_navigation:
|
|
81
|
+
show:
|
|
82
|
+
are_you_sure: Tindakan ini tidak dapat diurungkan dan Anda tidak akan dapat mengedit jawaban Anda. Apakah kamu yakin
|
|
83
|
+
submit: Menyerahkan
|
|
80
84
|
user_answers_serializer:
|
|
81
85
|
created_at: Dijawab pada
|
|
82
86
|
id: ID jawaban
|
data/config/locales/it.yml
CHANGED
|
@@ -5,7 +5,7 @@ it:
|
|
|
5
5
|
body: Risposta
|
|
6
6
|
question:
|
|
7
7
|
max_choices: Numero massimo di scelte
|
|
8
|
-
question_type:
|
|
8
|
+
question_type: Tipo
|
|
9
9
|
questionnaire_question:
|
|
10
10
|
mandatory: Obbligatorio
|
|
11
11
|
errors:
|
|
@@ -32,27 +32,52 @@ it:
|
|
|
32
32
|
statement: dichiarazione
|
|
33
33
|
edit:
|
|
34
34
|
save: Salvare
|
|
35
|
-
title:
|
|
35
|
+
title: Modifica questionario
|
|
36
36
|
form:
|
|
37
37
|
add_question: Aggiungi domanda
|
|
38
|
+
add_separator: Aggiungi separatore
|
|
38
39
|
already_answered_warning: Alcuni utenti hanno già risposto al questionario, quindi non è possibile modificare le sue domande.
|
|
40
|
+
collapse: Comprimi tutte le domande
|
|
41
|
+
expand: Espandi tutte le domande
|
|
42
|
+
matrix_row:
|
|
43
|
+
matrix_row: Riga
|
|
44
|
+
remove: Rimuovere
|
|
45
|
+
statement: dichiarazione
|
|
39
46
|
question:
|
|
40
47
|
add_answer_option: Aggiungi l'opzione di risposta
|
|
48
|
+
add_matrix_row: Aggiungi riga
|
|
41
49
|
any: Qualunque
|
|
50
|
+
collapse: Comprimi
|
|
42
51
|
description: Descrizione
|
|
43
52
|
down: Giù
|
|
53
|
+
expand: Espandi
|
|
44
54
|
question: Domanda
|
|
45
55
|
remove: Rimuovere
|
|
46
56
|
statement: dichiarazione
|
|
47
57
|
up: Su
|
|
58
|
+
separator:
|
|
59
|
+
down: Giù
|
|
60
|
+
remove: Elimina
|
|
61
|
+
separator: Separatore
|
|
62
|
+
up: Su
|
|
48
63
|
update:
|
|
49
64
|
invalid: Si sono verificati errori durante il salvataggio del questionario.
|
|
50
65
|
success: Questionari salvati correttamente.
|
|
51
66
|
errors:
|
|
52
67
|
answer:
|
|
53
68
|
body: Il corpo non può essere vuoto
|
|
69
|
+
files:
|
|
70
|
+
extension_whitelist: 'Formati accettati:'
|
|
71
|
+
images:
|
|
72
|
+
dimensions: "%{width} x %{height} px"
|
|
73
|
+
dimensions_info: 'Questa immagine sarà:'
|
|
74
|
+
processors:
|
|
75
|
+
resize_and_pad: Ridimensionato e spaziato a
|
|
76
|
+
resize_to_fit: Ridimensionato per adattarsi
|
|
54
77
|
question_types:
|
|
55
78
|
long_answer: Risposta lunga
|
|
79
|
+
matrix_multiple: Matrice (opzione multipla)
|
|
80
|
+
matrix_single: Matrice (opzione singola)
|
|
56
81
|
multiple_option: Opzione multipla
|
|
57
82
|
short_answer: Risposta breve
|
|
58
83
|
single_option: Opzione singola
|
|
@@ -60,6 +85,7 @@ it:
|
|
|
60
85
|
questionnaires:
|
|
61
86
|
answer:
|
|
62
87
|
invalid: Ci sono stati errori nel rispondere al questionario.
|
|
88
|
+
max_choices_alert: Sono state selezionate troppe opzioni
|
|
63
89
|
success: Il questionario ha risposto con successo.
|
|
64
90
|
question:
|
|
65
91
|
max_choices: 'Scelte massime: %{n}'
|
|
@@ -67,7 +93,8 @@ it:
|
|
|
67
93
|
answer_questionnaire:
|
|
68
94
|
anonymous_user_message: <a href="%{sign_in_link}">Accedi con il tuo account</a> o <a href="%{sign_up_link}">iscriviti</a> per rispondere al questionario.
|
|
69
95
|
title: Rispondi al questionario
|
|
70
|
-
|
|
96
|
+
current_step: Passo %{step}
|
|
97
|
+
of_total_steps: di %{total_steps}
|
|
71
98
|
questionnaire_answered:
|
|
72
99
|
body: Hai già risposto a questo questionario.
|
|
73
100
|
title: Ho già risposto
|
|
@@ -77,8 +104,13 @@ it:
|
|
|
77
104
|
questionnaire_for_private_users:
|
|
78
105
|
body: Il questionario è disponibile solo per gli utenti privati
|
|
79
106
|
title: Questionario chiuso
|
|
80
|
-
submit: Invia
|
|
81
107
|
tos_agreement: Partecipando accetti i suoi Termini di servizio
|
|
108
|
+
step_navigation:
|
|
109
|
+
show:
|
|
110
|
+
are_you_sure: Questa azione non può essere annullata e non potrai modificare le tue risposte. Sei sicuro?
|
|
111
|
+
back: Indietro
|
|
112
|
+
continue: Continua
|
|
113
|
+
submit: Invia
|
|
82
114
|
user_answers_serializer:
|
|
83
115
|
created_at: Risposto
|
|
84
116
|
id: ID risposta
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
ja:
|
|
2
|
+
activemodel:
|
|
3
|
+
attributes:
|
|
4
|
+
answer:
|
|
5
|
+
body: 回答
|
|
6
|
+
question:
|
|
7
|
+
max_choices: 選択肢の最大数
|
|
8
|
+
question_type: タイプ
|
|
9
|
+
questionnaire_question:
|
|
10
|
+
mandatory: Mandatory
|
|
11
|
+
errors:
|
|
12
|
+
models:
|
|
13
|
+
answer:
|
|
14
|
+
attributes:
|
|
15
|
+
choices:
|
|
16
|
+
missing: は完全ではありません
|
|
17
|
+
too_many: 多すぎます
|
|
18
|
+
questionnaire:
|
|
19
|
+
request_invalid: リクエストの処理中にエラーが発生しました。もう一度やり直してください。
|
|
20
|
+
decidim:
|
|
21
|
+
forms:
|
|
22
|
+
admin:
|
|
23
|
+
models:
|
|
24
|
+
components:
|
|
25
|
+
description: 説明
|
|
26
|
+
tos: 利用規約
|
|
27
|
+
questionnaires:
|
|
28
|
+
answer_option:
|
|
29
|
+
answer_option: 回答オプション
|
|
30
|
+
free_text: フリーテキスト
|
|
31
|
+
remove: 削除
|
|
32
|
+
statement: ステートメント
|
|
33
|
+
edit:
|
|
34
|
+
save: 保存
|
|
35
|
+
title: アンケートを編集
|
|
36
|
+
form:
|
|
37
|
+
add_question: 質問を追加
|
|
38
|
+
add_separator: 区切り文字を追加
|
|
39
|
+
already_answered_warning: このフォームはすでに一部のユーザーによって回答されているため、質問を修正することはできません。
|
|
40
|
+
collapse: すべての質問を閉じる
|
|
41
|
+
expand: すべての質問を展開
|
|
42
|
+
matrix_row:
|
|
43
|
+
matrix_row: 行
|
|
44
|
+
remove: 削除
|
|
45
|
+
statement: ステートメント
|
|
46
|
+
question:
|
|
47
|
+
add_answer_option: 回答オプションを追加
|
|
48
|
+
add_matrix_row: 行を追加
|
|
49
|
+
any: 任意の
|
|
50
|
+
collapse: 折りたたむ
|
|
51
|
+
description: 説明
|
|
52
|
+
down: 下
|
|
53
|
+
expand: 展開
|
|
54
|
+
question: 質問
|
|
55
|
+
remove: 削除
|
|
56
|
+
statement: ステートメント
|
|
57
|
+
up: 上へ
|
|
58
|
+
separator:
|
|
59
|
+
down: 下
|
|
60
|
+
remove: 削除
|
|
61
|
+
separator: 区切り記号
|
|
62
|
+
up: 上へ
|
|
63
|
+
update:
|
|
64
|
+
invalid: フォームの保存に失敗しました。
|
|
65
|
+
success: フォームを保存しました。
|
|
66
|
+
errors:
|
|
67
|
+
answer:
|
|
68
|
+
body: 本文は空白にできません
|
|
69
|
+
files:
|
|
70
|
+
extension_whitelist: '承認されたフォーマット:'
|
|
71
|
+
images:
|
|
72
|
+
dimensions: "%{width} x %{height} px"
|
|
73
|
+
dimensions_info: 'この画像は次のようになります:'
|
|
74
|
+
processors:
|
|
75
|
+
resize_and_pad: リサイズおよびパッド先
|
|
76
|
+
resize_to_fit: フィットするようにリサイズしました
|
|
77
|
+
question_types:
|
|
78
|
+
long_answer: 長い回答
|
|
79
|
+
matrix_multiple: マトリクス (複数オプション)
|
|
80
|
+
matrix_single: マトリクス(シングルオプション)
|
|
81
|
+
multiple_option: 複数のオプション
|
|
82
|
+
short_answer: 短い回答
|
|
83
|
+
single_option: 単一オプション
|
|
84
|
+
sorting: 並び替え
|
|
85
|
+
questionnaires:
|
|
86
|
+
answer:
|
|
87
|
+
invalid: フォームの回答に問題がありました。
|
|
88
|
+
max_choices_alert: 選択された選択肢が多すぎます
|
|
89
|
+
success: フォームは正常に回答しました。
|
|
90
|
+
question:
|
|
91
|
+
max_choices: '最大選択肢: %{n}'
|
|
92
|
+
show:
|
|
93
|
+
answer_questionnaire:
|
|
94
|
+
anonymous_user_message: <a href="%{sign_in_link}">アカウント</a> でサインインするか、 <a href="%{sign_up_link}">サインアップ</a> してフォームに回答してください。
|
|
95
|
+
title: フォームに回答
|
|
96
|
+
current_step: ステップ %{step}
|
|
97
|
+
of_total_steps: / %{total_steps}
|
|
98
|
+
questionnaire_answered:
|
|
99
|
+
body: このフォームには既に回答済みです。
|
|
100
|
+
title: すでに回答済み
|
|
101
|
+
questionnaire_closed:
|
|
102
|
+
body: フォームが閉じられているため、回答できません。
|
|
103
|
+
title: フォームを閉じました
|
|
104
|
+
questionnaire_for_private_users:
|
|
105
|
+
body: このフォームはプライベートユーザーのみ利用できます
|
|
106
|
+
title: フォームを閉じました
|
|
107
|
+
tos_agreement: 参加することにより、利用規約に同意します。
|
|
108
|
+
step_navigation:
|
|
109
|
+
show:
|
|
110
|
+
are_you_sure: この操作は元に戻すことができず、回答を編集することはできません。よろしいですか?
|
|
111
|
+
back: 戻る
|
|
112
|
+
continue: 続ける
|
|
113
|
+
submit: 送信
|
|
114
|
+
user_answers_serializer:
|
|
115
|
+
created_at: 回答日時
|
|
116
|
+
id: 回答ID
|
|
117
|
+
ip_hash: IPハッシュ
|
|
118
|
+
registered: 登録済み
|
|
119
|
+
unregistered: 未登録
|
|
120
|
+
user_status: ユーザーの状態
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
lt:
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
lv:
|
|
2
|
+
activemodel:
|
|
3
|
+
attributes:
|
|
4
|
+
answer:
|
|
5
|
+
body: Atbilde
|
|
6
|
+
question:
|
|
7
|
+
max_choices: 'Maksimālais atbilžu skaits:'
|
|
8
|
+
question_type: Veids
|
|
9
|
+
questionnaire_question:
|
|
10
|
+
mandatory: Obligāti
|
|
11
|
+
errors:
|
|
12
|
+
models:
|
|
13
|
+
answer:
|
|
14
|
+
attributes:
|
|
15
|
+
choices:
|
|
16
|
+
missing: nav pabeigti
|
|
17
|
+
too_many: ir par daudz
|
|
18
|
+
questionnaire:
|
|
19
|
+
request_invalid: Apstrādājot pieprasījumu, radās kļūda. Lūdzu, mēģiniet vēlreiz
|
|
20
|
+
decidim:
|
|
21
|
+
forms:
|
|
22
|
+
admin:
|
|
23
|
+
models:
|
|
24
|
+
components:
|
|
25
|
+
description: Apraksts
|
|
26
|
+
tos: Pakalpojumu sniegšanas noteikumi
|
|
27
|
+
questionnaires:
|
|
28
|
+
answer_option:
|
|
29
|
+
answer_option: Atbildes iespēja
|
|
30
|
+
free_text: Brīva vieta tekstam
|
|
31
|
+
remove: Noņemt
|
|
32
|
+
statement: Paziņojums
|
|
33
|
+
edit:
|
|
34
|
+
save: Saglabāt
|
|
35
|
+
title: Rediģēt aptauju
|
|
36
|
+
form:
|
|
37
|
+
add_question: Pievienot jautājumu
|
|
38
|
+
add_separator: Pievienot atdalītāju
|
|
39
|
+
already_answered_warning: Daži lietotāji jau ir atbildējuši uz jautājumiem veidlapā, tāpēc jūs nevarat mainīt tajā iekļautos jautājumus.
|
|
40
|
+
collapse: Sakļaut visus jautājumus
|
|
41
|
+
expand: Izvērst visus jautājumus
|
|
42
|
+
matrix_row:
|
|
43
|
+
matrix_row: Rinda
|
|
44
|
+
remove: Noņemt
|
|
45
|
+
statement: Paziņojums
|
|
46
|
+
question:
|
|
47
|
+
add_answer_option: Pievienot atbildes variantu
|
|
48
|
+
add_matrix_row: Pievienot rindu
|
|
49
|
+
any: Jebkura
|
|
50
|
+
collapse: Sakļaut
|
|
51
|
+
description: Apraksts
|
|
52
|
+
down: Lejup
|
|
53
|
+
expand: Izvērst
|
|
54
|
+
question: Jautājums
|
|
55
|
+
remove: Noņemt
|
|
56
|
+
statement: Paziņojums
|
|
57
|
+
up: Augšup
|
|
58
|
+
separator:
|
|
59
|
+
down: Lejup
|
|
60
|
+
remove: Noņemt
|
|
61
|
+
separator: Atdalītājs
|
|
62
|
+
up: Augšup
|
|
63
|
+
update:
|
|
64
|
+
invalid: Saglabājot veidlapu, radās problēma.
|
|
65
|
+
success: Veidlapa ir veiksmīgi saglabāta
|
|
66
|
+
errors:
|
|
67
|
+
answer:
|
|
68
|
+
body: Pamatteksts nevar būt tukšs
|
|
69
|
+
files:
|
|
70
|
+
extension_whitelist: 'Pieņemtie formāti:'
|
|
71
|
+
images:
|
|
72
|
+
dimensions: "%{width} x %{height} pikseļi"
|
|
73
|
+
dimensions_info: 'Attēlam būs:'
|
|
74
|
+
processors:
|
|
75
|
+
resize_and_pad: Mainīts lielums un izveidota robeža
|
|
76
|
+
resize_to_fit: Mainīts, lai ietilptu
|
|
77
|
+
question_types:
|
|
78
|
+
long_answer: Garā atbilde
|
|
79
|
+
matrix_multiple: Matrica (vairāki varianti)
|
|
80
|
+
matrix_single: Matrica (viens variants)
|
|
81
|
+
multiple_option: Vairāki varianti
|
|
82
|
+
short_answer: Īsā atbilde
|
|
83
|
+
single_option: Viens variants
|
|
84
|
+
sorting: Kārtošana
|
|
85
|
+
questionnaires:
|
|
86
|
+
answer:
|
|
87
|
+
invalid: Atbildot uz veidlapas jautājumiem, radās problēma.
|
|
88
|
+
max_choices_alert: Ir izvēlēti pārāk daudzi varianti
|
|
89
|
+
success: Uz veidlapas jautājumiem ir veiksmīgi atbildēts.
|
|
90
|
+
question:
|
|
91
|
+
max_choices: 'Maksimālais izvēļu skaits: %{n}'
|
|
92
|
+
show:
|
|
93
|
+
answer_questionnaire:
|
|
94
|
+
anonymous_user_message: <a href="%{sign_in_link}">Pierakstieties, izmantojot savu kontu,</a> vai <a href="%{sign_up_link}"> reģistrējieties </a>, lai atbildētu veidlapā.
|
|
95
|
+
title: Atbildiet uz veidlapas jautājumiem
|
|
96
|
+
current_step: '%{step} solis'
|
|
97
|
+
of_total_steps: no %{total_steps}
|
|
98
|
+
questionnaire_answered:
|
|
99
|
+
body: Uz šīs veidlapas jautājumiem jau esat atbildējis.
|
|
100
|
+
title: Jau atbildēts
|
|
101
|
+
questionnaire_closed:
|
|
102
|
+
body: Veidlapa ir slēgta, un uz tajā uzdotajiem jautājumiem vairs nevar atbildēt.
|
|
103
|
+
title: Veidlapa slēgta
|
|
104
|
+
questionnaire_for_private_users:
|
|
105
|
+
body: Veidlapa ir pieejama tikai privātiem lietotājiem
|
|
106
|
+
title: Veidlapa slēgta
|
|
107
|
+
tos_agreement: Piedaloties jūs piekrītat pakalpojumu sniegšanas noteikumiem.
|
|
108
|
+
step_navigation:
|
|
109
|
+
show:
|
|
110
|
+
are_you_sure: Šo darbību nevar atsaukt, un jūs nevarēsiet rediģēt savas atbildes. Vai esat pārliecināts?
|
|
111
|
+
back: Atpakaļ
|
|
112
|
+
continue: Turpināt
|
|
113
|
+
submit: Iesniegt
|
|
114
|
+
user_answers_serializer:
|
|
115
|
+
created_at: Atbildēts
|
|
116
|
+
id: Atbildes ID
|
|
117
|
+
registered: Reģistrēts
|
|
118
|
+
unregistered: Nereģistrēts
|
|
119
|
+
user_status: Lietotāja statuss
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
mt:
|
data/config/locales/nl.yml
CHANGED
|
@@ -32,27 +32,52 @@ nl:
|
|
|
32
32
|
statement: Uitspraak
|
|
33
33
|
edit:
|
|
34
34
|
save: Opslaan
|
|
35
|
-
title:
|
|
35
|
+
title: Bewerk vragenlijst
|
|
36
36
|
form:
|
|
37
37
|
add_question: Vraag toevoegen
|
|
38
|
+
add_separator: Scheidingsteken toevoegen
|
|
38
39
|
already_answered_warning: De vragenlijst is al door enkele gebruikers beantwoord, dus u kunt de vragen niet wijzigen.
|
|
40
|
+
collapse: Alle vragen samenvouwen
|
|
41
|
+
expand: Vouw alle vragen uit
|
|
42
|
+
matrix_row:
|
|
43
|
+
matrix_row: Rij
|
|
44
|
+
remove: Verwijderen
|
|
45
|
+
statement: Uitspraak
|
|
39
46
|
question:
|
|
40
47
|
add_answer_option: Antwoordoptie toevoegen
|
|
48
|
+
add_matrix_row: Rij toevoegen
|
|
41
49
|
any: Ieder
|
|
50
|
+
collapse: Samenvouwen
|
|
42
51
|
description: Omschrijving
|
|
43
52
|
down: naar beneden
|
|
53
|
+
expand: Uitklappen
|
|
44
54
|
question: Vraag
|
|
45
55
|
remove: Verwijderen
|
|
46
56
|
statement: Uitspraak
|
|
47
57
|
up: omhoog
|
|
58
|
+
separator:
|
|
59
|
+
down: Omlaag
|
|
60
|
+
remove: Verwijderen
|
|
61
|
+
separator: Scheidingsteken
|
|
62
|
+
up: Omhoog
|
|
48
63
|
update:
|
|
49
64
|
invalid: Er zijn fouten opgetreden bij het opslaan van de vragenlijst.
|
|
50
65
|
success: Vragenlijsten succesvol opgeslagen.
|
|
51
66
|
errors:
|
|
52
67
|
answer:
|
|
53
68
|
body: Lichaam mag niet leeg zijn
|
|
69
|
+
files:
|
|
70
|
+
extension_whitelist: 'Geaccepteerde formaten:'
|
|
71
|
+
images:
|
|
72
|
+
dimensions: "%{width} x %{height} px"
|
|
73
|
+
dimensions_info: 'Deze afbeelding zal zijn:'
|
|
74
|
+
processors:
|
|
75
|
+
resize_and_pad: Verkleind en verwijderd naar
|
|
76
|
+
resize_to_fit: Vergrootst naar pasvorm
|
|
54
77
|
question_types:
|
|
55
78
|
long_answer: Lang antwoord
|
|
79
|
+
matrix_multiple: Matrix (meerdere opties)
|
|
80
|
+
matrix_single: Matrix (enkele optie)
|
|
56
81
|
multiple_option: Meerdere optie
|
|
57
82
|
short_answer: Kort antwoord
|
|
58
83
|
single_option: Enkele optie
|
|
@@ -60,6 +85,7 @@ nl:
|
|
|
60
85
|
questionnaires:
|
|
61
86
|
answer:
|
|
62
87
|
invalid: Er zijn fouten opgetreden bij het beantwoorden van de vragenlijst.
|
|
88
|
+
max_choices_alert: Er zijn te veel keuzes geselecteerd
|
|
63
89
|
success: Vragenlijst met succes beantwoord.
|
|
64
90
|
question:
|
|
65
91
|
max_choices: 'Max. Keuzes: %{n}'
|
|
@@ -67,7 +93,8 @@ nl:
|
|
|
67
93
|
answer_questionnaire:
|
|
68
94
|
anonymous_user_message: <a href="%{sign_in_link}">Meld u aan met uw account</a> of <a href="%{sign_up_link}">meld u aan</a> om de vragenlijst te beantwoorden.
|
|
69
95
|
title: Beantwoord de vragenlijst
|
|
70
|
-
|
|
96
|
+
current_step: Stap %{step}
|
|
97
|
+
of_total_steps: van %{total_steps}
|
|
71
98
|
questionnaire_answered:
|
|
72
99
|
body: U hebt deze vragenlijst al beantwoord.
|
|
73
100
|
title: Al beantwoord
|
|
@@ -77,8 +104,13 @@ nl:
|
|
|
77
104
|
questionnaire_for_private_users:
|
|
78
105
|
body: De vragenlijst is alleen beschikbaar voor privé-gebruikers
|
|
79
106
|
title: Vragenlijst gesloten
|
|
80
|
-
submit: voorleggen
|
|
81
107
|
tos_agreement: Door deel te nemen, gaat u akkoord met de Servicevoorwaarden
|
|
108
|
+
step_navigation:
|
|
109
|
+
show:
|
|
110
|
+
are_you_sure: Deze actie kan niet ongedaan worden gemaakt en u kunt uw antwoorden niet bewerken. Weet je het zeker?
|
|
111
|
+
back: Achterzijde
|
|
112
|
+
continue: Doorgaan
|
|
113
|
+
submit: voorleggen
|
|
82
114
|
user_answers_serializer:
|
|
83
115
|
created_at: Beantwoord
|
|
84
116
|
id: Antwoord ID
|