decidim-surveys 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 +3 -3
- data/app/commands/decidim/surveys/admin/create_survey.rb +14 -2
- data/app/commands/decidim/surveys/admin/publish_survey.rb +3 -3
- data/app/commands/decidim/surveys/admin/update_survey.rb +0 -13
- data/app/commands/decidim/surveys/admin/update_survey_settings.rb +53 -0
- data/app/commands/decidim/surveys/{publish_answers.rb → publish_responses.rb} +8 -8
- data/app/commands/decidim/surveys/{unpublish_answers.rb → unpublish_responses.rb} +8 -8
- data/app/controllers/decidim/surveys/admin/application_controller.rb +13 -0
- data/app/controllers/decidim/surveys/admin/{publish_answers_controller.rb → publish_responses_controller.rb} +9 -9
- data/app/controllers/decidim/surveys/admin/questions/surveys_controller.rb +48 -0
- data/app/controllers/decidim/surveys/admin/{answers_controller.rb → responses_controller.rb} +18 -13
- data/app/controllers/decidim/surveys/admin/settings/surveys_controller.rb +42 -0
- data/app/controllers/decidim/surveys/admin/surveys_controller.rb +20 -39
- data/app/controllers/decidim/surveys/surveys_controller.rb +15 -12
- data/app/forms/decidim/surveys/admin/survey_form.rb +3 -7
- data/app/forms/decidim/surveys/admin/survey_settings_form.rb +18 -0
- data/app/helpers/decidim/surveys/{publish_answers_helper.rb → publish_responses_helper.rb} +11 -11
- data/app/helpers/decidim/surveys/survey_helper.rb +1 -1
- data/app/jobs/decidim/surveys/{clean_survey_answers_job.rb → clean_survey_responses_job.rb} +4 -4
- data/app/jobs/decidim/surveys/settings_change_job.rb +5 -5
- data/app/mailers/decidim/surveys/survey_confirmation_mailer.rb +6 -6
- data/app/models/decidim/surveys/survey.rb +4 -4
- data/app/permissions/decidim/surveys/admin/permissions.rb +4 -4
- data/app/permissions/decidim/surveys/permissions.rb +1 -1
- data/app/serializers/decidim/surveys/data_importer.rb +5 -5
- data/app/serializers/decidim/surveys/data_serializer.rb +5 -5
- data/app/views/decidim/surveys/admin/publish_responses/_toggle_button.html.erb +22 -0
- data/app/views/decidim/surveys/admin/{publish_answers → publish_responses}/index.html.erb +4 -4
- data/app/views/decidim/surveys/admin/questions/surveys/edit.html.erb +44 -0
- data/app/views/decidim/surveys/admin/responses/index.html.erb +101 -0
- data/app/views/decidim/surveys/admin/responses/show.html.erb +43 -0
- data/app/views/decidim/surveys/admin/{surveys → settings/surveys}/_form.html.erb +2 -3
- data/app/views/decidim/surveys/admin/settings/surveys/edit.html.erb +23 -0
- data/app/views/decidim/surveys/admin/surveys/_tabs_menu.html.erb +11 -0
- data/app/views/decidim/surveys/admin/surveys/edit.html.erb +18 -18
- data/app/views/decidim/surveys/admin/surveys/index.html.erb +89 -23
- data/app/views/decidim/surveys/admin/surveys/new.html.erb +23 -0
- data/app/views/decidim/surveys/survey_confirmation_mailer/confirmation.html.erb +1 -1
- data/app/views/decidim/surveys/surveys/{_published_questions_answers.html.erb → _published_questions_responses.html.erb} +2 -2
- data/app/views/decidim/surveys/surveys/not_allowed.html.erb +2 -2
- data/app/views/layouts/decidim/admin/surveys.html.erb +18 -0
- data/config/assets.rb +1 -1
- data/config/locales/ar.yml +0 -20
- data/config/locales/bg.yml +0 -28
- data/config/locales/ca-IT.yml +45 -29
- data/config/locales/ca.yml +45 -29
- data/config/locales/cs.yml +33 -39
- data/config/locales/de.yml +43 -27
- data/config/locales/el.yml +0 -23
- data/config/locales/en.yml +49 -33
- data/config/locales/es-MX.yml +44 -28
- data/config/locales/es-PY.yml +44 -28
- data/config/locales/es.yml +44 -28
- data/config/locales/eu.yml +43 -27
- data/config/locales/fi-plain.yml +41 -25
- data/config/locales/fi.yml +41 -25
- data/config/locales/fr-CA.yml +35 -32
- data/config/locales/fr.yml +35 -32
- data/config/locales/ga-IE.yml +0 -13
- data/config/locales/gl.yml +0 -22
- data/config/locales/hu.yml +0 -16
- data/config/locales/id-ID.yml +0 -15
- data/config/locales/is-IS.yml +0 -2
- data/config/locales/it.yml +0 -22
- data/config/locales/ja.yml +43 -27
- data/config/locales/lb.yml +0 -22
- data/config/locales/lt.yml +0 -25
- data/config/locales/lv.yml +0 -17
- data/config/locales/nl.yml +0 -22
- data/config/locales/no.yml +0 -22
- data/config/locales/pl.yml +0 -30
- data/config/locales/pt-BR.yml +0 -22
- data/config/locales/pt.yml +0 -22
- data/config/locales/ro-RO.yml +18 -23
- data/config/locales/ru.yml +0 -13
- data/config/locales/sk.yml +0 -18
- data/config/locales/sl.yml +0 -8
- data/config/locales/sv.yml +8 -26
- data/config/locales/tr-TR.yml +0 -22
- data/config/locales/uk.yml +0 -13
- data/config/locales/zh-CN.yml +0 -15
- data/config/locales/zh-TW.yml +0 -22
- data/db/migrate/20250317110501_rename_answer_to_response_in_decidim_surveys.rb +8 -0
- data/lib/decidim/api/survey_type.rb +12 -0
- data/lib/decidim/surveys/admin_engine.rb +46 -7
- data/lib/decidim/surveys/component.rb +24 -19
- data/lib/decidim/surveys/engine.rb +8 -25
- data/lib/decidim/surveys/seeds.rb +42 -42
- data/lib/decidim/surveys/test/factories.rb +3 -3
- data/lib/decidim/surveys/version.rb +1 -1
- data/lib/tasks/surveys/upgrade/decidim_surveys_upgrade_tasks.rake +16 -82
- metadata +36 -29
- data/app/queries/decidim/surveys/metrics/answers_metric_manage.rb +0 -65
- data/app/queries/decidim/surveys/metrics/survey_participants_metric_measure.rb +0 -30
- data/app/views/decidim/surveys/admin/answers/index.html.erb +0 -49
- data/app/views/decidim/surveys/admin/answers/show.html.erb +0 -43
- data/app/views/decidim/surveys/admin/publish_answers/_toggle_button.html.erb +0 -22
- data/app/views/decidim/surveys/admin/surveys/edit_questions.html.erb +0 -47
data/config/locales/it.yml
CHANGED
@@ -9,14 +9,9 @@ it:
|
|
9
9
|
decidim/surveys/survey:
|
10
10
|
one: Questionario
|
11
11
|
other: indagini
|
12
|
-
decidim/surveys/survey_answer:
|
13
|
-
one: Risposta
|
14
|
-
other: risposte
|
15
12
|
decidim:
|
16
13
|
components:
|
17
14
|
surveys:
|
18
|
-
actions:
|
19
|
-
answer: Risposta
|
20
15
|
settings:
|
21
16
|
global:
|
22
17
|
announcement: Annuncio
|
@@ -34,17 +29,8 @@ it:
|
|
34
29
|
email_outro: Hai ricevuto questa notifica perché stai seguendo %{participatory_space_title}. È possibile interrompere la ricezione di notifiche facendo click su pulsante Smetti di seguire nella pagina del processo o del contenuto che stai seguendo.
|
35
30
|
email_subject: Un nuovo questionario su %{participatory_space_title}
|
36
31
|
notification_title: Il questionario <a href="%{resource_path}">%{resource_title}</a> in <a href="%{participatory_space_url}">%{participatory_space_title}</a> è ora aperto.
|
37
|
-
metrics:
|
38
|
-
survey_answers:
|
39
|
-
description: Numero di sondaggi rispondenti dagli utenti
|
40
|
-
object: risposte ai sondaggi
|
41
|
-
title: Risposte ai sondaggi
|
42
|
-
statistics:
|
43
|
-
answers_count: Risposte
|
44
32
|
surveys:
|
45
33
|
admin:
|
46
|
-
exports:
|
47
|
-
survey_user_answers: Risposte dei partecipanti al sondaggio
|
48
34
|
surveys:
|
49
35
|
update:
|
50
36
|
invalid: Ci sono stati degli errori durante il salvataggio del sondaggio.
|
@@ -52,11 +38,3 @@ it:
|
|
52
38
|
admin_log:
|
53
39
|
survey:
|
54
40
|
unpublish: "%{user_name} ha aggiornato il budget %{resource_name} nello spazio %{space_name}"
|
55
|
-
models:
|
56
|
-
survey:
|
57
|
-
fields:
|
58
|
-
answers: Risposte
|
59
|
-
surveys:
|
60
|
-
answer:
|
61
|
-
invalid: Ci sono stati errori nel rispondere al sondaggio.
|
62
|
-
success: Le risposte sono state registrate correttamente.
|
data/config/locales/ja.yml
CHANGED
@@ -8,17 +8,25 @@ ja:
|
|
8
8
|
models:
|
9
9
|
decidim/surveys/survey:
|
10
10
|
other: アンケート
|
11
|
-
decidim/surveys/
|
11
|
+
decidim/surveys/survey_response:
|
12
12
|
other: 回答
|
13
13
|
decidim:
|
14
14
|
admin:
|
15
|
+
actions:
|
16
|
+
see_survey: アンケートを見る
|
15
17
|
admin_log:
|
16
18
|
changeset:
|
17
19
|
surveys: アンケート
|
20
|
+
menu:
|
21
|
+
surveys_menu:
|
22
|
+
main: メイン
|
23
|
+
questions: 質問
|
24
|
+
responses: 回答
|
25
|
+
settings: 設定
|
18
26
|
components:
|
19
27
|
surveys:
|
20
28
|
actions:
|
21
|
-
|
29
|
+
respond: 回答する
|
22
30
|
name: 調査
|
23
31
|
settings:
|
24
32
|
announcement: お知らせ
|
@@ -38,43 +46,49 @@ ja:
|
|
38
46
|
email_outro: '%{participatory_space_title}をフォローしているため、この通知を受け取りました。前のリンクに続く通知の受信を停止することができます。'
|
39
47
|
email_subject: '%{participatory_space_title} での新しいアンケート'
|
40
48
|
notification_title: <a href="%{resource_path}">%{resource_title}の</a> <a href="%{participatory_space_url}">%{participatory_space_title}のアンケート</a> が公開されました。
|
41
|
-
metrics:
|
42
|
-
survey_answers:
|
43
|
-
description: 回答したアンケート数
|
44
|
-
object: アンケートに対する答えは
|
45
|
-
title: アンケートへの回答
|
46
49
|
statistics:
|
47
|
-
|
50
|
+
responses: '応答:'
|
51
|
+
responses_count: 回答
|
52
|
+
surveys_count_tooltip: 利用可能なアンケート数と、収集された回答数です。
|
48
53
|
surveys:
|
49
54
|
actions:
|
50
|
-
answers_alert: この調査では公開時の回答削除機能が有効です。続行すると現状 %{answers_count} 件の回答が破棄されます。
|
51
55
|
confirm_destroy: 削除してもよろしいですか?
|
52
56
|
destroy: 破棄
|
53
57
|
edit: 編集
|
54
|
-
manage_questions:
|
58
|
+
manage_questions: 質問
|
55
59
|
new_survey: 新しいアンケート
|
56
60
|
preview: プレビュー
|
61
|
+
responses_alert: このアンケートでは、公開時に回答を削除する設定が有効になっています。現在%{responses_count}件の回答があり、続行するとそれらは削除されます。
|
57
62
|
title: アクション
|
58
63
|
admin:
|
59
|
-
answers:
|
60
|
-
index:
|
61
|
-
title: "総回答数 %{total} 件"
|
62
|
-
show:
|
63
|
-
title: '回答 #%{number}'
|
64
64
|
exports:
|
65
|
-
|
66
|
-
|
65
|
+
survey_user_responses: アンケート参加者の回答
|
66
|
+
publish_responses:
|
67
67
|
index:
|
68
|
-
answers:
|
69
|
-
other: "%{count} 件の回答"
|
70
68
|
description: |-
|
71
|
-
|
72
|
-
|
73
|
-
|
69
|
+
質問への回答を公開すると、それらが一般に表示されるようになります。
|
70
|
+
各質問の横にあるチェックボックスをクリックすることで、公開したい回答を選択できます。
|
71
|
+
公開できる質問の種類は、「単一選択」「複数選択」「マトリックス(単一選択)」「マトリックス(複数選択)」「並べ替え」です。
|
72
|
+
responses:
|
73
|
+
other: "%{count} 回答"
|
74
74
|
status:
|
75
75
|
not_published: 未公開
|
76
76
|
published: 公開済み
|
77
77
|
title: 回答を公開
|
78
|
+
questions:
|
79
|
+
surveys:
|
80
|
+
edit:
|
81
|
+
title: 質問
|
82
|
+
responses:
|
83
|
+
index:
|
84
|
+
no_responses: 回答はまだありません
|
85
|
+
title: "総回答数 %{total} 件"
|
86
|
+
show:
|
87
|
+
title: '応答 #%{number}'
|
88
|
+
settings:
|
89
|
+
surveys:
|
90
|
+
edit:
|
91
|
+
title: 設定
|
78
92
|
surveys:
|
79
93
|
create:
|
80
94
|
invalid: アンケートの作成中に問題が発生しました。
|
@@ -85,6 +99,8 @@ ja:
|
|
85
99
|
title: アンケートを編集
|
86
100
|
index:
|
87
101
|
title: アンケート
|
102
|
+
new:
|
103
|
+
title: 新しいアンケート
|
88
104
|
publish:
|
89
105
|
invalid: このアンケートを公開する際に問題が発生しました。
|
90
106
|
success: アンケートを公開しました。
|
@@ -110,8 +126,8 @@ ja:
|
|
110
126
|
models:
|
111
127
|
survey:
|
112
128
|
fields:
|
113
|
-
answers: 回答
|
114
129
|
questions: 質問
|
130
|
+
responses: 回答
|
115
131
|
status: ステータス
|
116
132
|
title: タイトル
|
117
133
|
status:
|
@@ -123,10 +139,6 @@ ja:
|
|
123
139
|
subject: アンケート %{questionnaire_title} 回答確認
|
124
140
|
export_name: アンケートの回答
|
125
141
|
surveys:
|
126
|
-
answer:
|
127
|
-
invalid: アンケートの回答に問題がありました。
|
128
|
-
spam_detected: フォームでの回答中に問題が発生しました。もしかしたら回答が早すぎたかもしれません。再度お試しいただけますか?
|
129
|
-
success: アンケートは正常に回答しました。
|
130
142
|
count:
|
131
143
|
surveys_count:
|
132
144
|
other: "%{count} 件の調査"
|
@@ -136,6 +148,10 @@ ja:
|
|
136
148
|
closed: 終了済
|
137
149
|
open: 公開
|
138
150
|
no_surveys_warning: アンケートが検索条件に一致していないか、アンケートが公開されていません。
|
151
|
+
response:
|
152
|
+
invalid: アンケートに回答する際に問題が発生しました。
|
153
|
+
spam_detected: フォームに回答する際に問題が発生しました。早すぎるかもしれません。もう一度やり直していただけますか?
|
154
|
+
success: アンケートに回答しました。
|
139
155
|
show:
|
140
156
|
closed: 終了済
|
141
157
|
open: 公開
|
data/config/locales/lb.yml
CHANGED
@@ -9,14 +9,9 @@ lb:
|
|
9
9
|
decidim/surveys/survey:
|
10
10
|
one: Emfro
|
11
11
|
other: Emfroen
|
12
|
-
decidim/surveys/survey_answer:
|
13
|
-
one: Äntwerten
|
14
|
-
other: Äntwerten
|
15
12
|
decidim:
|
16
13
|
components:
|
17
14
|
surveys:
|
18
|
-
actions:
|
19
|
-
answer: Äntwert
|
20
15
|
settings:
|
21
16
|
global:
|
22
17
|
announcement: Ukënnegung
|
@@ -34,26 +29,9 @@ lb:
|
|
34
29
|
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{participatory_space_title} folgen. Falls Sie keine solchen Benachrichtigungen mehr erhalten möchten, besuchen Sie den obigen Link.
|
35
30
|
email_subject: Eine neue Umfrage in %{participatory_space_title}
|
36
31
|
notification_title: Die Umfrage <a href="%{resource_path}">%{resource_title}</a> in <a href="%{participatory_space_url}">%{participatory_space_title}</a> ist jetzt geöffnet.
|
37
|
-
metrics:
|
38
|
-
survey_answers:
|
39
|
-
description: Anzahl der Umfragen, die von den Benutzern beantwortet wurden
|
40
|
-
object: Antworten auf Umfragen
|
41
|
-
title: Antworten zu Umfragen
|
42
|
-
statistics:
|
43
|
-
answers_count: Äntwerten
|
44
32
|
surveys:
|
45
33
|
admin:
|
46
|
-
exports:
|
47
|
-
survey_user_answers: Umfrage Benutzer Antworten
|
48
34
|
surveys:
|
49
35
|
update:
|
50
36
|
invalid: Beim Speichern der Umfrage sind Fehler aufgetreten.
|
51
37
|
success: Umfrage wurde erfolgreich gespeichert.
|
52
|
-
models:
|
53
|
-
survey:
|
54
|
-
fields:
|
55
|
-
answers: Äntwerten
|
56
|
-
surveys:
|
57
|
-
answer:
|
58
|
-
invalid: Bei der Beantwortung der Umfrage sind Fehler aufgetreten.
|
59
|
-
success: Umfrage erfolgreich beantwortet.
|
data/config/locales/lt.yml
CHANGED
@@ -11,16 +11,9 @@ lt:
|
|
11
11
|
few: Apklausos
|
12
12
|
many: Apklausos
|
13
13
|
other: Apklausos
|
14
|
-
decidim/surveys/survey_answer:
|
15
|
-
one: Atsakyti
|
16
|
-
few: Atsakymai
|
17
|
-
many: Atsakymai
|
18
|
-
other: Atsakymai
|
19
14
|
decidim:
|
20
15
|
components:
|
21
16
|
surveys:
|
22
|
-
actions:
|
23
|
-
answer: Atsakyti
|
24
17
|
settings:
|
25
18
|
global:
|
26
19
|
announcement: Pranešimas
|
@@ -38,29 +31,11 @@ lt:
|
|
38
31
|
email_outro: Šį pranešimą gavote dėl to, kad sekate %{participatory_space_title}. Jeigu nebenorite gauti pranešimų, spustelėkite ankstesnę nuorodą.
|
39
32
|
email_subject: Nauja apklausa %{participatory_space_title}
|
40
33
|
notification_title: Apklausa <a href="%{resource_path}">%{resource_title}</a> <a href="%{participatory_space_url}">%{participatory_space_title}</a> dabar vyksta.
|
41
|
-
metrics:
|
42
|
-
survey_answers:
|
43
|
-
description: Apklausų, į kurių klausimus atsakė dalyviai, skaičius
|
44
|
-
object: atsakymai į apklausų klausimus
|
45
|
-
title: Atsakymai į apklausų klausimus
|
46
|
-
statistics:
|
47
|
-
answers_count: Atsakymai
|
48
34
|
surveys:
|
49
35
|
admin:
|
50
|
-
exports:
|
51
|
-
survey_user_answers: Apklausos dalyvių atsakymai
|
52
36
|
surveys:
|
53
37
|
update:
|
54
38
|
invalid: Išsaugant šią apklausą iškilo problema.
|
55
39
|
success: Apklausa išsaugota.
|
56
40
|
last_activity:
|
57
41
|
new_survey: 'Nauja apklausa:'
|
58
|
-
models:
|
59
|
-
survey:
|
60
|
-
fields:
|
61
|
-
answers: Atsakymai
|
62
|
-
surveys:
|
63
|
-
answer:
|
64
|
-
invalid: Atsakant į šios apklausos klausimus iškilo problema.
|
65
|
-
spam_detected: Atsakant į šią formą iškilo problema. Galbūt paskubėjote? Ar galite pabandyti dar kartą?
|
66
|
-
success: Į apklausos klausimus atsakyta.
|
data/config/locales/lv.yml
CHANGED
@@ -10,15 +10,9 @@ lv:
|
|
10
10
|
zero: Aptaujas
|
11
11
|
one: Aptauja
|
12
12
|
other: Aptaujas
|
13
|
-
decidim/surveys/survey_answer:
|
14
|
-
zero: Atbildes
|
15
|
-
one: Atbilde
|
16
|
-
other: Atbildes
|
17
13
|
decidim:
|
18
14
|
components:
|
19
15
|
surveys:
|
20
|
-
actions:
|
21
|
-
answer: Atbilde
|
22
16
|
settings:
|
23
17
|
global:
|
24
18
|
announcement: Paziņojums
|
@@ -36,20 +30,9 @@ lv:
|
|
36
30
|
email_outro: Jūs saņēmāt šo paziņojumu, jo sekojat %{participatory_space_title}. Jūs varat atteikties no paziņojumu saņemšanas, sekojot iepriekšējai saitei.
|
37
31
|
email_subject: Jauna aptauja telpā %{participatory_space_title}
|
38
32
|
notification_title: Aptauja <a href="%{resource_path}">%{resource_title}</a> sadaļā <a href="%{participatory_space_url}">%{activatory_space_title}</a> tagad ir atvērta
|
39
|
-
metrics:
|
40
|
-
survey_answers:
|
41
|
-
description: Dalībnieka atbildēto aptaujas jautājumu skaits
|
42
|
-
object: atbildes uz aptaujas jautājumiem
|
43
|
-
title: Atbildes uz aptaujas jautājumiem
|
44
33
|
surveys:
|
45
34
|
admin:
|
46
|
-
exports:
|
47
|
-
survey_user_answers: Aptaujas dalībnieka atbildes
|
48
35
|
surveys:
|
49
36
|
update:
|
50
37
|
invalid: Saglabājot aptauju, radās problēma.
|
51
38
|
success: Aptauja ir veiksmīgi saglabāta
|
52
|
-
surveys:
|
53
|
-
answer:
|
54
|
-
invalid: Atbildot uz aptauju, radās problēma.
|
55
|
-
success: Uz aptaujas jautājumiem ir veiksmīgi atbildēts.
|
data/config/locales/nl.yml
CHANGED
@@ -9,14 +9,9 @@ nl:
|
|
9
9
|
decidim/surveys/survey:
|
10
10
|
one: Enquête
|
11
11
|
other: onderzoeken
|
12
|
-
decidim/surveys/survey_answer:
|
13
|
-
one: Antwoord
|
14
|
-
other: antwoorden
|
15
12
|
decidim:
|
16
13
|
components:
|
17
14
|
surveys:
|
18
|
-
actions:
|
19
|
-
answer: Antwoorden
|
20
15
|
settings:
|
21
16
|
global:
|
22
17
|
announcement: Aankondiging
|
@@ -34,26 +29,9 @@ nl:
|
|
34
29
|
email_outro: Je hebt deze melding ontvangen omdat je %{participatory_space_title} volgt. Je kan de notificaties uitschakelen door de voorgaande link te volgen.
|
35
30
|
email_subject: Een nieuwe enquête in %{participatory_space_title}
|
36
31
|
notification_title: De enquête <a href="%{resource_path}">%{resource_title}</a> in <a href="%{participatory_space_url}">%{participatory_space_title}</a> is nu geopend.
|
37
|
-
metrics:
|
38
|
-
survey_answers:
|
39
|
-
description: Aantal enquêtes beantwoord door deelnemers
|
40
|
-
object: antwoorden op enquêtes
|
41
|
-
title: Antwoorden op enquêtes
|
42
|
-
statistics:
|
43
|
-
answers_count: Antwoorden
|
44
32
|
surveys:
|
45
33
|
admin:
|
46
|
-
exports:
|
47
|
-
survey_user_answers: Antwoorden van de deelnemers aan de enquête
|
48
34
|
surveys:
|
49
35
|
update:
|
50
36
|
invalid: Er is een probleem opgetreden bij het opslaan van de enquête.
|
51
37
|
success: Enquête succesvol opgeslagen.
|
52
|
-
models:
|
53
|
-
survey:
|
54
|
-
fields:
|
55
|
-
answers: Antwoorden
|
56
|
-
surveys:
|
57
|
-
answer:
|
58
|
-
invalid: Er is een fout opgetreden bij het opslaan van de pagina.
|
59
|
-
success: Enquête met succes beantwoord.
|
data/config/locales/no.yml
CHANGED
@@ -9,14 +9,9 @@
|
|
9
9
|
decidim/surveys/survey:
|
10
10
|
one: Undersøkelse
|
11
11
|
other: Undersøkelse
|
12
|
-
decidim/surveys/survey_answer:
|
13
|
-
one: Svar
|
14
|
-
other: Svar
|
15
12
|
decidim:
|
16
13
|
components:
|
17
14
|
surveys:
|
18
|
-
actions:
|
19
|
-
answer: Svar
|
20
15
|
settings:
|
21
16
|
global:
|
22
17
|
announcement: Kunngjøring
|
@@ -34,26 +29,9 @@
|
|
34
29
|
email_outro: Du har mottatt denne varslingen fordi du følger %{participatory_space_title}. Du kan slutte å motta varsler hvis du følger den forrige lenken.
|
35
30
|
email_subject: En ny undersøkelse i %{participatory_space_title}
|
36
31
|
notification_title: Undersøkelsen <a href="%{resource_path}">%{resource_title}</a> i <a href="%{participatory_space_url}">%{participatory_space_title}</a> er nå åpen.
|
37
|
-
metrics:
|
38
|
-
survey_answers:
|
39
|
-
description: Antall undersøkelser besvart av deltakerne
|
40
|
-
object: svar på undersøkelser
|
41
|
-
title: Svar på undersøkelser
|
42
|
-
statistics:
|
43
|
-
answers_count: Svar
|
44
32
|
surveys:
|
45
33
|
admin:
|
46
|
-
exports:
|
47
|
-
survey_user_answers: Undersøkelsens deltaker svar
|
48
34
|
surveys:
|
49
35
|
update:
|
50
36
|
invalid: Det oppstod et problem med å lagre undersøkelsen.
|
51
37
|
success: Undersøkelsen ble lagret.
|
52
|
-
models:
|
53
|
-
survey:
|
54
|
-
fields:
|
55
|
-
answers: Svar
|
56
|
-
surveys:
|
57
|
-
answer:
|
58
|
-
invalid: Det oppstod et problem med å svare på undersøkelsen.
|
59
|
-
success: Undersøkelsen ble besvart.
|
data/config/locales/pl.yml
CHANGED
@@ -11,16 +11,9 @@ pl:
|
|
11
11
|
few: Ankiety
|
12
12
|
many: Ankiety
|
13
13
|
other: Ankiety
|
14
|
-
decidim/surveys/survey_answer:
|
15
|
-
one: Odpowiedź
|
16
|
-
few: Odpowiedzi
|
17
|
-
many: Odpowiedzi
|
18
|
-
other: Odpowiedzi
|
19
14
|
decidim:
|
20
15
|
components:
|
21
16
|
surveys:
|
22
|
-
actions:
|
23
|
-
answer: Odpowiedź
|
24
17
|
settings:
|
25
18
|
global:
|
26
19
|
announcement: Ogłoszenie
|
@@ -38,34 +31,11 @@ pl:
|
|
38
31
|
email_outro: Otrzymałeś to powiadomienie, ponieważ obserwujesz %{participatory_space_title}. Możesz przestać otrzymywać powiadomienia po kliknięciu w poprzedni link.
|
39
32
|
email_subject: Nowa ankieta w %{participatory_space_title}
|
40
33
|
notification_title: Ankieta <a href="%{resource_path}">%{resource_title}</a> w <a href="%{participatory_space_url}">%{participatory_space_title}</a> jest teraz otwarta.
|
41
|
-
metrics:
|
42
|
-
survey_answers:
|
43
|
-
description: Liczba ankiet wypełnionych przez użytkowników
|
44
|
-
object: odpowiedzi na ankiety
|
45
|
-
title: Odpowiedzi na ankiety
|
46
|
-
statistics:
|
47
|
-
answers_count: Odpowiedzi
|
48
34
|
surveys:
|
49
35
|
admin:
|
50
|
-
exports:
|
51
|
-
survey_user_answers: Odpowiedzi użytkowników na pytania z ankiety
|
52
36
|
surveys:
|
53
37
|
update:
|
54
38
|
invalid: Podczas zapisywania ankiety wystąpił błąd.
|
55
39
|
success: Ankieta została zapisana pomyślnie.
|
56
40
|
last_activity:
|
57
41
|
new_survey: 'Nowa ankieta:'
|
58
|
-
models:
|
59
|
-
survey:
|
60
|
-
fields:
|
61
|
-
answers: Odpowiedzi
|
62
|
-
survey_confirmation_mailer:
|
63
|
-
confirmation:
|
64
|
-
body: Pomyślnie udzielono odpowiedzi na ankietę %{questionnaire_title} w ramach %{participatory_space}
|
65
|
-
subject: Kwestionariusz %{questionnaire_title} odpowiadający na potwierdzenie
|
66
|
-
export_name: Odpowiedzi udzielone w ankiecie
|
67
|
-
surveys:
|
68
|
-
answer:
|
69
|
-
invalid: Podczas wypełniania ankiety wystąpił błąd.
|
70
|
-
spam_detected: Wystąpił błąd podczas wypełniania formularza. Być może zostało to zrobione zbyt szybko, czy możesz spróbować ponownie?
|
71
|
-
success: Twoja ankieta została wypełniona.
|
data/config/locales/pt-BR.yml
CHANGED
@@ -9,14 +9,9 @@ pt-BR:
|
|
9
9
|
decidim/surveys/survey:
|
10
10
|
one: Enquete
|
11
11
|
other: Enquetes
|
12
|
-
decidim/surveys/survey_answer:
|
13
|
-
one: Resposta
|
14
|
-
other: Respostas
|
15
12
|
decidim:
|
16
13
|
components:
|
17
14
|
surveys:
|
18
|
-
actions:
|
19
|
-
answer: Responda
|
20
15
|
settings:
|
21
16
|
global:
|
22
17
|
announcement: Anúncio
|
@@ -34,26 +29,9 @@ pt-BR:
|
|
34
29
|
email_outro: Você recebeu esta notificação porque está seguindo %{participatory_space_title}. Você pode parar de receber notificações após o link anterior.
|
35
30
|
email_subject: Uma nova pesquisa em %{participatory_space_title}
|
36
31
|
notification_title: A pesquisa <a href="%{resource_path}">%{resource_title}</a> em <a href="%{participatory_space_url}">%{participatory_space_title}</a> está agora aberta.
|
37
|
-
metrics:
|
38
|
-
survey_answers:
|
39
|
-
description: Número de pesquisas respondidas por usuários
|
40
|
-
object: respostas para pesquisas
|
41
|
-
title: Respostas para pesquisas
|
42
|
-
statistics:
|
43
|
-
answers_count: Respostas
|
44
32
|
surveys:
|
45
33
|
admin:
|
46
|
-
exports:
|
47
|
-
survey_user_answers: Avalie as respostas dos usuários
|
48
34
|
surveys:
|
49
35
|
update:
|
50
36
|
invalid: Houve erros ao salvar a pesquisa.
|
51
37
|
success: Pesquisa salva com sucesso.
|
52
|
-
models:
|
53
|
-
survey:
|
54
|
-
fields:
|
55
|
-
answers: Respostas
|
56
|
-
surveys:
|
57
|
-
answer:
|
58
|
-
invalid: Houve erros ao responder a pesquisa.
|
59
|
-
success: Pesquisa respondida com sucesso.
|
data/config/locales/pt.yml
CHANGED
@@ -9,14 +9,9 @@ pt:
|
|
9
9
|
decidim/surveys/survey:
|
10
10
|
one: Inquérito
|
11
11
|
other: Inquéritos
|
12
|
-
decidim/surveys/survey_answer:
|
13
|
-
one: Resposta
|
14
|
-
other: Respostas
|
15
12
|
decidim:
|
16
13
|
components:
|
17
14
|
surveys:
|
18
|
-
actions:
|
19
|
-
answer: Responder
|
20
15
|
settings:
|
21
16
|
global:
|
22
17
|
announcement: Anúncio
|
@@ -34,26 +29,9 @@ pt:
|
|
34
29
|
email_outro: Recebeu esta notificação porque segue %{participatory_space_title}. Pode parar de receber notificações seguindo a hiperligação anterior.
|
35
30
|
email_subject: Um novo inquérito em %{participatory_space_title}
|
36
31
|
notification_title: O inquérito <a href="%{resource_path}">%{resource_title}</a> em <a href="%{participatory_space_url}">%{participatory_space_title}</a> está agora aberto.
|
37
|
-
metrics:
|
38
|
-
survey_answers:
|
39
|
-
description: Número de inquéritos respondidos por participantes
|
40
|
-
object: respostas aos questionários
|
41
|
-
title: Respostas aos questionários
|
42
|
-
statistics:
|
43
|
-
answers_count: Respostas
|
44
32
|
surveys:
|
45
33
|
admin:
|
46
|
-
exports:
|
47
|
-
survey_user_answers: Respostas dos participantes aos inquéritos
|
48
34
|
surveys:
|
49
35
|
update:
|
50
36
|
invalid: Ocorreu um problema ao guardar o inquérito.
|
51
37
|
success: Inquérito guardado corretamente.
|
52
|
-
models:
|
53
|
-
survey:
|
54
|
-
fields:
|
55
|
-
answers: Respostas
|
56
|
-
surveys:
|
57
|
-
answer:
|
58
|
-
invalid: Ocorreu um problema ao responder ao inquérito.
|
59
|
-
success: Inquérito respondido corretamente.
|
data/config/locales/ro-RO.yml
CHANGED
@@ -10,15 +10,15 @@ ro:
|
|
10
10
|
one: Sondaj
|
11
11
|
few: Sondaje
|
12
12
|
other: Sondaje
|
13
|
-
decidim/surveys/survey_answer:
|
14
|
-
one: Răspuns
|
15
|
-
few: Răspunsuri
|
16
|
-
other: Răspunsuri
|
17
13
|
decidim:
|
14
|
+
admin:
|
15
|
+
menu:
|
16
|
+
surveys_menu:
|
17
|
+
main: Principal
|
18
|
+
questions: Întrebări
|
19
|
+
settings: Setări
|
18
20
|
components:
|
19
21
|
surveys:
|
20
|
-
actions:
|
21
|
-
answer: Răspunde
|
22
22
|
settings:
|
23
23
|
global:
|
24
24
|
announcement: Anunţ
|
@@ -36,29 +36,24 @@ ro:
|
|
36
36
|
email_outro: Ai primit această notificare deoarece urmărești „%{participatory_space_title}”. Poți anula aceste notificări de la link-ul anterior.
|
37
37
|
email_subject: Un nou sondaj în %{participatory_space_title}
|
38
38
|
notification_title: Sondajul <a href="%{resource_path}">%{resource_title}</a> din <a href="%{participatory_space_url}">%{participatory_space_title}</a> este acum deschis.
|
39
|
-
metrics:
|
40
|
-
survey_answers:
|
41
|
-
description: Numărul de sondaje la care au răspuns participanții
|
42
|
-
object: răspunsuri la sondaje
|
43
|
-
title: Răspunsuri la sondaje
|
44
39
|
statistics:
|
45
|
-
|
40
|
+
responses: 'Răspunsuri:'
|
41
|
+
surveys_count_tooltip: Numărul de sondaje disponibile și răspunsuri care au fost colectate.
|
46
42
|
surveys:
|
43
|
+
actions:
|
44
|
+
manage_questions: Întrebări
|
47
45
|
admin:
|
48
|
-
|
49
|
-
|
46
|
+
questions:
|
47
|
+
surveys:
|
48
|
+
edit:
|
49
|
+
title: Întrebări
|
50
|
+
settings:
|
51
|
+
surveys:
|
52
|
+
edit:
|
53
|
+
title: Setări
|
50
54
|
surveys:
|
51
55
|
update:
|
52
56
|
invalid: A apărut o eroare la salvarea sondajului.
|
53
57
|
success: Sondajul a fost salvat cu succes.
|
54
58
|
last_activity:
|
55
59
|
new_survey: 'Sondaj nou:'
|
56
|
-
models:
|
57
|
-
survey:
|
58
|
-
fields:
|
59
|
-
answers: Răspunsuri
|
60
|
-
surveys:
|
61
|
-
answer:
|
62
|
-
invalid: A apărut o problemă în timpul răspunsului pentru sondaj.
|
63
|
-
spam_detected: A apărut o problemă la completarea formularului. Poate că ați fost prea rapid(ă), puteți încerca din nou?
|
64
|
-
success: Răspunsul pentru sondaj a fost înregistrat cu succes.
|
data/config/locales/ru.yml
CHANGED
@@ -11,16 +11,9 @@ ru:
|
|
11
11
|
few: Опроса
|
12
12
|
many: Опросов
|
13
13
|
other: Опросов
|
14
|
-
decidim/surveys/survey_answer:
|
15
|
-
one: Ответ
|
16
|
-
few: Ответа
|
17
|
-
many: Ответов
|
18
|
-
other: Ответов
|
19
14
|
decidim:
|
20
15
|
components:
|
21
16
|
surveys:
|
22
|
-
actions:
|
23
|
-
answer: Ответ
|
24
17
|
settings:
|
25
18
|
global:
|
26
19
|
announcement: Объявление
|
@@ -40,13 +33,7 @@ ru:
|
|
40
33
|
notification_title: Опрос <a href="%{resource_path}">%{resource_title}</a> в <a href="%{participatory_space_url}">%{participatory_space_title}</a> теперь открыт.
|
41
34
|
surveys:
|
42
35
|
admin:
|
43
|
-
exports:
|
44
|
-
survey_user_answers: Ответы участников на опрос
|
45
36
|
surveys:
|
46
37
|
update:
|
47
38
|
invalid: При попытке сохранить опрос произошли ошибки.
|
48
39
|
success: Опрос успешно сохранен.
|
49
|
-
surveys:
|
50
|
-
answer:
|
51
|
-
invalid: При прохождении опроса произошли ошибки.
|
52
|
-
success: Опрос успешно пройден.
|
data/config/locales/sk.yml
CHANGED
@@ -11,16 +11,9 @@ sk:
|
|
11
11
|
few: Prieskumy
|
12
12
|
many: Prieskumy
|
13
13
|
other: Prieskumy
|
14
|
-
decidim/surveys/survey_answer:
|
15
|
-
one: Odpoveď
|
16
|
-
few: Odpovede
|
17
|
-
many: Odpovede
|
18
|
-
other: Odpovede
|
19
14
|
decidim:
|
20
15
|
components:
|
21
16
|
surveys:
|
22
|
-
actions:
|
23
|
-
answer: Odpovedať
|
24
17
|
settings:
|
25
18
|
global:
|
26
19
|
announcement: Oznámenie
|
@@ -38,20 +31,9 @@ sk:
|
|
38
31
|
email_outro: Túto notifikáciu ste dostali, pretože sledujete %{participatory_space_title}. Notifikácie môžete zrušiť po kliknutí na predchádzajúci odkaz.
|
39
32
|
email_subject: Nový prieskum v %{participatory_space_title}
|
40
33
|
notification_title: Prieskum <a href="%{resource_path}">%{resource_title}</a> v <a href="%{participatory_space_url}">%{participatory_space_title}</a> bol práve otvorený.
|
41
|
-
metrics:
|
42
|
-
survey_answers:
|
43
|
-
description: Počet prieskumov, na ktoré odpovedali účastníci
|
44
|
-
object: odpovede na prieskumy
|
45
|
-
title: Odpovede na prieskumy
|
46
34
|
surveys:
|
47
35
|
admin:
|
48
|
-
exports:
|
49
|
-
survey_user_answers: Odpovede účastníkov prieskumu
|
50
36
|
surveys:
|
51
37
|
update:
|
52
38
|
invalid: Vyskytol sa problém s ukladaním prieskumu.
|
53
39
|
success: Prieskum úspešne uložený.
|
54
|
-
surveys:
|
55
|
-
answer:
|
56
|
-
invalid: Vyskytol sa problém s odpovedaním na prieskum.
|
57
|
-
success: Odpoveď úspešne zaznamenaná.
|