decidim-forms 0.30.3 → 0.31.0.rc2
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 +11 -11
- 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 +1 -1
- data/app/views/decidim/forms/admin/questionnaires/_title_and_description.html.erb +2 -2
- 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 -37
- 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 +73 -74
- data/config/locales/el.yml +3 -37
- 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 +72 -72
- data/config/locales/fi-plain.yml +71 -71
- data/config/locales/fi.yml +69 -69
- data/config/locales/fr-CA.yml +71 -67
- data/config/locales/fr.yml +71 -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 -41
- data/config/locales/ja.yml +80 -80
- data/config/locales/lb.yml +3 -37
- data/config/locales/lt.yml +3 -37
- data/config/locales/lv.yml +0 -22
- data/config/locales/nl.yml +3 -37
- data/config/locales/no.yml +3 -37
- data/config/locales/pl.yml +3 -37
- data/config/locales/pt-BR.yml +3 -37
- data/config/locales/pt.yml +3 -37
- 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 -37
- data/config/locales/zh-CN.yml +3 -37
- data/config/locales/zh-TW.yml +3 -37
- 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 +47 -44
- 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/lv.yml
CHANGED
|
@@ -2,8 +2,6 @@
|
|
|
2
2
|
lv:
|
|
3
3
|
activemodel:
|
|
4
4
|
attributes:
|
|
5
|
-
answer:
|
|
6
|
-
body: Atbilde
|
|
7
5
|
question:
|
|
8
6
|
max_choices: 'Maksimālais atbilžu skaits:'
|
|
9
7
|
question_type: Veids
|
|
@@ -17,10 +15,6 @@ lv:
|
|
|
17
15
|
description: Apraksts
|
|
18
16
|
tos: Pakalpojumu sniegšanas noteikumi
|
|
19
17
|
questionnaires:
|
|
20
|
-
answer_option:
|
|
21
|
-
answer_option: Atbildes iespēja
|
|
22
|
-
remove: Noņemt
|
|
23
|
-
statement: Paziņojums
|
|
24
18
|
edit:
|
|
25
19
|
save: Saglabāt
|
|
26
20
|
title: Rediģēt aptauju
|
|
@@ -33,7 +27,6 @@ lv:
|
|
|
33
27
|
remove: Noņemt
|
|
34
28
|
statement: Paziņojums
|
|
35
29
|
question:
|
|
36
|
-
add_answer_option: Pievienot atbildes variantu
|
|
37
30
|
add_matrix_row: Pievienot rindu
|
|
38
31
|
any: Jebkura
|
|
39
32
|
collapse: Sakļaut
|
|
@@ -50,29 +43,18 @@ lv:
|
|
|
50
43
|
images:
|
|
51
44
|
dimensions: "%{width} x %{height} pikseļi"
|
|
52
45
|
question_types:
|
|
53
|
-
long_answer: Garā atbilde
|
|
54
46
|
matrix_multiple: Matrica (vairāki varianti)
|
|
55
47
|
matrix_single: Matrica (viens variants)
|
|
56
48
|
multiple_option: Vairāki varianti
|
|
57
|
-
short_answer: Īsā atbilde
|
|
58
49
|
single_option: Viens variants
|
|
59
50
|
sorting: Kārtošana
|
|
60
51
|
questionnaires:
|
|
61
|
-
answer:
|
|
62
|
-
invalid: Atbildot uz veidlapas jautājumiem, radās problēma.
|
|
63
|
-
success: Uz veidlapas jautājumiem ir veiksmīgi atbildēts.
|
|
64
52
|
question:
|
|
65
53
|
max_choices: 'Maksimālais izvēļu skaits: %{n}'
|
|
66
54
|
show:
|
|
67
|
-
answer_questionnaire:
|
|
68
|
-
title: Atbildiet uz veidlapas jautājumiem
|
|
69
55
|
current_step: '%{step} solis'
|
|
70
56
|
of_total_steps: no %{total_steps}
|
|
71
|
-
questionnaire_answered:
|
|
72
|
-
body: Uz šīs veidlapas jautājumiem jau esat atbildējis.
|
|
73
|
-
title: Jau atbildēts
|
|
74
57
|
questionnaire_closed:
|
|
75
|
-
body: Veidlapa ir slēgta, un uz tajā uzdotajiem jautājumiem vairs nevar atbildēt.
|
|
76
58
|
title: Veidlapa slēgta
|
|
77
59
|
questionnaire_for_private_users:
|
|
78
60
|
body: Veidlapa ir pieejama tikai privātiem lietotājiem
|
|
@@ -83,7 +65,3 @@ lv:
|
|
|
83
65
|
back: Atpakaļ
|
|
84
66
|
continue: Turpināt
|
|
85
67
|
submit: Iesniegt
|
|
86
|
-
user_answers_serializer:
|
|
87
|
-
created_at: Atbildēts
|
|
88
|
-
id: Atbildes ID
|
|
89
|
-
question: Jautājums
|
data/config/locales/nl.yml
CHANGED
|
@@ -2,8 +2,6 @@
|
|
|
2
2
|
nl:
|
|
3
3
|
activemodel:
|
|
4
4
|
attributes:
|
|
5
|
-
answer:
|
|
6
|
-
body: Antwoord
|
|
7
5
|
question:
|
|
8
6
|
max_choices: Maximum aantal keuzes
|
|
9
7
|
question_type: Type
|
|
@@ -17,36 +15,18 @@ nl:
|
|
|
17
15
|
description: Omschrijving
|
|
18
16
|
tos: Servicevoorwaarden
|
|
19
17
|
questionnaires:
|
|
20
|
-
actions:
|
|
21
|
-
show: Antwoorden tonen
|
|
22
|
-
answer_option:
|
|
23
|
-
answer_option: Antwoord optie
|
|
24
|
-
remove: Verwijderen
|
|
25
|
-
statement: Uitspraak
|
|
26
|
-
answers:
|
|
27
|
-
actions:
|
|
28
|
-
show: Toon antwoorden
|
|
29
|
-
empty: Nog geen antwoorden
|
|
30
|
-
export_response:
|
|
31
|
-
title: survey_user_answers_%{token}
|
|
32
|
-
show:
|
|
33
|
-
title: 'Antwoord #%{number}'
|
|
34
18
|
display_condition:
|
|
35
|
-
answer_option: Antwoord optie
|
|
36
19
|
condition_question: Vraag
|
|
37
20
|
condition_type: Voorwaarde
|
|
38
21
|
condition_types:
|
|
39
|
-
answered: beantwoord
|
|
40
22
|
equal: Gelijk
|
|
41
23
|
match: Tekst inbegrepen
|
|
42
|
-
not_answered: Niet beantwoord
|
|
43
24
|
not_equal: Niet gelijk aan
|
|
44
25
|
condition_value: Inbegrepen tekst
|
|
45
26
|
display_condition: Toon voorwaarde
|
|
46
27
|
mandatory: Deze voorwaarde moet altijd worden vervuld, ongeacht de status van andere voorwaarden
|
|
47
28
|
remove: Verwijderen
|
|
48
29
|
save_warning: Vergeet niet om het formulier op te slaan voordat u voorwaarden voor het weergeven configureert
|
|
49
|
-
select_answer_option: Selecteer antwoord optie
|
|
50
30
|
select_condition_question: Selecteer een vraag
|
|
51
31
|
select_condition_type: Selecteer een type voorwaarde
|
|
52
32
|
edit:
|
|
@@ -62,7 +42,6 @@ nl:
|
|
|
62
42
|
remove: Verwijderen
|
|
63
43
|
statement: Uitspraak
|
|
64
44
|
question:
|
|
65
|
-
add_answer_option: Antwoordoptie toevoegen
|
|
66
45
|
add_display_condition: Weergavevoorwaarde toevoegen
|
|
67
46
|
add_display_condition_info: Sla het formulier op om weergavevoorwaarden te configureren
|
|
68
47
|
add_matrix_row: Rij toevoegen
|
|
@@ -73,6 +52,9 @@ nl:
|
|
|
73
52
|
question: Vraag
|
|
74
53
|
remove: Verwijderen
|
|
75
54
|
statement: Uitspraak
|
|
55
|
+
responses:
|
|
56
|
+
actions:
|
|
57
|
+
show: Antwoorden tonen
|
|
76
58
|
separator:
|
|
77
59
|
remove: Verwijderen
|
|
78
60
|
separator: Scheidingsteken
|
|
@@ -89,30 +71,19 @@ nl:
|
|
|
89
71
|
images:
|
|
90
72
|
dimensions: "%{width} x %{height} px"
|
|
91
73
|
question_types:
|
|
92
|
-
long_answer: Lang antwoord
|
|
93
74
|
matrix_multiple: Matrix (meerdere opties)
|
|
94
75
|
matrix_single: Matrix (enkele optie)
|
|
95
76
|
multiple_option: Meerdere optie
|
|
96
|
-
short_answer: Kort antwoord
|
|
97
77
|
single_option: Enkele optie
|
|
98
78
|
sorting: sorteer-
|
|
99
79
|
title_and_description: Titel en beschrijving
|
|
100
80
|
questionnaires:
|
|
101
|
-
answer:
|
|
102
|
-
invalid: Er zijn fouten opgetreden bij het beantwoorden van de vragenlijst.
|
|
103
|
-
success: Vragenlijst met succes beantwoord.
|
|
104
81
|
question:
|
|
105
82
|
max_choices: 'Max. Keuzes: %{n}'
|
|
106
83
|
show:
|
|
107
|
-
answer_questionnaire:
|
|
108
|
-
title: Beantwoord de vragenlijst
|
|
109
84
|
current_step: Stap %{step}
|
|
110
85
|
of_total_steps: van %{total_steps}
|
|
111
|
-
questionnaire_answered:
|
|
112
|
-
body: U hebt deze vragenlijst al beantwoord.
|
|
113
|
-
title: Al beantwoord
|
|
114
86
|
questionnaire_closed:
|
|
115
|
-
body: De vragenlijst is gesloten en kan niet worden beantwoord.
|
|
116
87
|
title: Vragenlijst gesloten
|
|
117
88
|
questionnaire_for_private_users:
|
|
118
89
|
body: De vragenlijst is alleen beschikbaar voor privé-gebruikers
|
|
@@ -128,8 +99,3 @@ nl:
|
|
|
128
99
|
back: Achterzijde
|
|
129
100
|
continue: Doorgaan
|
|
130
101
|
submit: Verzenden
|
|
131
|
-
user_answers_serializer:
|
|
132
|
-
body: Beantwoorden
|
|
133
|
-
created_at: Beantwoord
|
|
134
|
-
id: Antwoord ID
|
|
135
|
-
question: Vraag
|
data/config/locales/no.yml
CHANGED
|
@@ -2,8 +2,6 @@
|
|
|
2
2
|
"no":
|
|
3
3
|
activemodel:
|
|
4
4
|
attributes:
|
|
5
|
-
answer:
|
|
6
|
-
body: Svar
|
|
7
5
|
question:
|
|
8
6
|
max_choices: Maksimalt antall valg
|
|
9
7
|
question_type: Type
|
|
@@ -18,36 +16,18 @@
|
|
|
18
16
|
description: Beskrivelse
|
|
19
17
|
tos: Tjenestevilkår
|
|
20
18
|
questionnaires:
|
|
21
|
-
actions:
|
|
22
|
-
show: Vis svar
|
|
23
|
-
answer_option:
|
|
24
|
-
answer_option: Svaralternativ
|
|
25
|
-
remove: Fjern
|
|
26
|
-
statement: Uttalelse
|
|
27
|
-
answers:
|
|
28
|
-
actions:
|
|
29
|
-
show: Vis svar
|
|
30
|
-
empty: Ingen svar enda
|
|
31
|
-
export_response:
|
|
32
|
-
title: undersøkelse_bruker_svar_%{token}
|
|
33
|
-
show:
|
|
34
|
-
title: 'Svar #%{number}'
|
|
35
19
|
display_condition:
|
|
36
|
-
answer_option: Svaralternativ
|
|
37
20
|
condition_question: Spørsmål
|
|
38
21
|
condition_type: Betingelse
|
|
39
22
|
condition_types:
|
|
40
|
-
answered: Besvart
|
|
41
23
|
equal: Lik
|
|
42
24
|
match: Inkluder tekst
|
|
43
|
-
not_answered: Ikke besvart
|
|
44
25
|
not_equal: Ikke lik
|
|
45
26
|
condition_value: Inkludert tekst
|
|
46
27
|
display_condition: Vis betingelse
|
|
47
28
|
mandatory: Denne betingelsen må alltid oppfylles uavhengig av status for andre betingelser
|
|
48
29
|
remove: Fjern
|
|
49
30
|
save_warning: Husk å lagre skjemaet før du konfigurerer visningsbetingelser
|
|
50
|
-
select_answer_option: Velg svaralternativ
|
|
51
31
|
select_condition_question: Velg et spørsmål
|
|
52
32
|
select_condition_type: Velg en betingelsestype
|
|
53
33
|
edit:
|
|
@@ -64,7 +44,6 @@
|
|
|
64
44
|
remove: Fjern
|
|
65
45
|
statement: Uttalelse
|
|
66
46
|
question:
|
|
67
|
-
add_answer_option: Legg til svaralternativ
|
|
68
47
|
add_display_condition: Legg til visningsbetingelse
|
|
69
48
|
add_display_condition_info: Lagre skjemaet for å konfigurere visningsbetingelser
|
|
70
49
|
add_matrix_row: Legg til rad
|
|
@@ -75,6 +54,9 @@
|
|
|
75
54
|
question: Spørsmål
|
|
76
55
|
remove: Fjern
|
|
77
56
|
statement: Uttalelse
|
|
57
|
+
responses:
|
|
58
|
+
actions:
|
|
59
|
+
show: Vis svar
|
|
78
60
|
separator:
|
|
79
61
|
remove: Fjern
|
|
80
62
|
separator: Skilletegn
|
|
@@ -92,30 +74,19 @@
|
|
|
92
74
|
dimensions: "%{width} x %{height} px"
|
|
93
75
|
question_types:
|
|
94
76
|
files: Filer
|
|
95
|
-
long_answer: Langt svar
|
|
96
77
|
matrix_multiple: Matrise (Flervalg)
|
|
97
78
|
matrix_single: Matrise (Enkeltvalg)
|
|
98
79
|
multiple_option: Flere alternativer
|
|
99
|
-
short_answer: Kort svar
|
|
100
80
|
single_option: Enkelt alternativ
|
|
101
81
|
sorting: Sortering
|
|
102
82
|
title_and_description: Tittel og beskrivelse
|
|
103
83
|
questionnaires:
|
|
104
|
-
answer:
|
|
105
|
-
invalid: Det oppstod et problem med å svare på skjemaet.
|
|
106
|
-
success: Skjema ble besvart.
|
|
107
84
|
question:
|
|
108
85
|
max_choices: 'Maksimum valg: %{n}'
|
|
109
86
|
show:
|
|
110
|
-
answer_questionnaire:
|
|
111
|
-
title: Svar på skjemaet
|
|
112
87
|
current_step: Trinn %{step}
|
|
113
88
|
of_total_steps: av %{total_steps}
|
|
114
|
-
questionnaire_answered:
|
|
115
|
-
body: Dy har allerede svart på dette skjemaet.
|
|
116
|
-
title: Allerede besvart
|
|
117
89
|
questionnaire_closed:
|
|
118
|
-
body: Skjemaet er lukket og kan ikke besvares.
|
|
119
90
|
title: Skjema lukket
|
|
120
91
|
questionnaire_for_private_users:
|
|
121
92
|
body: Skjemaet er bare tilgjengelig for private brukere
|
|
@@ -131,8 +102,3 @@
|
|
|
131
102
|
back: Tilbake
|
|
132
103
|
continue: Fortsett
|
|
133
104
|
submit: Send inn
|
|
134
|
-
user_answers_serializer:
|
|
135
|
-
body: Svar
|
|
136
|
-
created_at: Besvart på
|
|
137
|
-
id: Svar ID
|
|
138
|
-
question: Spørsmål
|
data/config/locales/pl.yml
CHANGED
|
@@ -2,8 +2,6 @@
|
|
|
2
2
|
pl:
|
|
3
3
|
activemodel:
|
|
4
4
|
attributes:
|
|
5
|
-
answer:
|
|
6
|
-
body: Odpowiedź
|
|
7
5
|
question:
|
|
8
6
|
max_choices: Maksymalna liczba opcji do wyboru
|
|
9
7
|
question_type: Typ odpowiedzi
|
|
@@ -18,36 +16,18 @@ pl:
|
|
|
18
16
|
description: Opis
|
|
19
17
|
tos: Warunki uczestnictwa
|
|
20
18
|
questionnaires:
|
|
21
|
-
actions:
|
|
22
|
-
show: Pokaż odpowiedzi
|
|
23
|
-
answer_option:
|
|
24
|
-
answer_option: Opcja odpowiedzi
|
|
25
|
-
remove: Usuń
|
|
26
|
-
statement: Komunikat
|
|
27
|
-
answers:
|
|
28
|
-
actions:
|
|
29
|
-
show: Pokaż odpowiedzi
|
|
30
|
-
empty: Brak odpowiedzi
|
|
31
|
-
export_response:
|
|
32
|
-
title: ankieta_odpowiedzi_uzytkownika_%{token}
|
|
33
|
-
show:
|
|
34
|
-
title: 'Odpowiedź #%{number}'
|
|
35
19
|
display_condition:
|
|
36
|
-
answer_option: Opcja odpowiedzi
|
|
37
20
|
condition_question: Pytanie
|
|
38
21
|
condition_type: Warunek
|
|
39
22
|
condition_types:
|
|
40
|
-
answered: Odpowiedziano
|
|
41
23
|
equal: Równy
|
|
42
24
|
match: Zawiera tekst
|
|
43
|
-
not_answered: Nie odpowiedziano
|
|
44
25
|
not_equal: Nie jest równe
|
|
45
26
|
condition_value: Zawiera tekst
|
|
46
27
|
display_condition: Warunek wyświetlania
|
|
47
28
|
mandatory: Ten warunek musi być zawsze spełniony niezależnie od statusu innych warunków
|
|
48
29
|
remove: Usuń
|
|
49
30
|
save_warning: Pamiętaj, aby zapisać formularz przed skonfigurowaniem warunków wyświetlania
|
|
50
|
-
select_answer_option: Wybierz opcję odpowiedzi
|
|
51
31
|
select_condition_question: Wybierz pytanie
|
|
52
32
|
select_condition_type: Wybierz typ warunku
|
|
53
33
|
edit:
|
|
@@ -64,7 +44,6 @@ pl:
|
|
|
64
44
|
remove: Usuń
|
|
65
45
|
statement: Komunikat
|
|
66
46
|
question:
|
|
67
|
-
add_answer_option: Dodaj opcję odpowiedzi
|
|
68
47
|
add_display_condition: Dodaj warunek wyświetlania
|
|
69
48
|
add_display_condition_info: Zapisz formularz, aby skonfigurować warunki wyświetlania
|
|
70
49
|
add_matrix_row: Dodaj wiersz
|
|
@@ -75,6 +54,9 @@ pl:
|
|
|
75
54
|
question: Pytanie
|
|
76
55
|
remove: Usuń
|
|
77
56
|
statement: Komunikat
|
|
57
|
+
responses:
|
|
58
|
+
actions:
|
|
59
|
+
show: Pokaż odpowiedzi
|
|
78
60
|
separator:
|
|
79
61
|
remove: Usuń
|
|
80
62
|
separator: Separator
|
|
@@ -98,31 +80,20 @@ pl:
|
|
|
98
80
|
resize_to_fit: Rozmiar obrazu zostanie zmieniony i dopasowany do wymiarów %{dimensions}.
|
|
99
81
|
question_types:
|
|
100
82
|
files: Pliki
|
|
101
|
-
long_answer: Długa odpowiedź
|
|
102
83
|
matrix_multiple: Macierz (wiele opcji)
|
|
103
84
|
matrix_single: Macierz (jedna opcja)
|
|
104
85
|
multiple_option: Wiele opcji
|
|
105
|
-
short_answer: Krótka odpowiedź
|
|
106
86
|
single_option: Jedna opcja
|
|
107
87
|
sorting: Sortowanie
|
|
108
88
|
title_and_description: Tytuł i opis
|
|
109
89
|
questionnaires:
|
|
110
|
-
answer:
|
|
111
|
-
invalid: Podczas wypełniania formularza wystąpiły błędy.
|
|
112
|
-
success: Wypełniono formularz.
|
|
113
90
|
question:
|
|
114
91
|
max_choices: 'Maksymalny wybór opcji: %{n}'
|
|
115
92
|
show:
|
|
116
|
-
answer_questionnaire:
|
|
117
|
-
title: Wypełnij formularz
|
|
118
93
|
current_step: Krok %{step}
|
|
119
94
|
empty: Nie skonfigurowano jeszcze żadnych pytań dla tego formularza.
|
|
120
95
|
of_total_steps: z %{total_steps}
|
|
121
|
-
questionnaire_answered:
|
|
122
|
-
body: Już wypełniłeś/łaś ten formularz.
|
|
123
|
-
title: Już odpowiedziano
|
|
124
96
|
questionnaire_closed:
|
|
125
|
-
body: Formularz jest zamknięty i nie można udzielić na niego odpowiedzi.
|
|
126
97
|
title: Formularz został zamknięty
|
|
127
98
|
questionnaire_for_private_users:
|
|
128
99
|
body: Formularz jest dostępny tylko dla użytkowników prywatnych
|
|
@@ -138,8 +109,3 @@ pl:
|
|
|
138
109
|
back: Wróć
|
|
139
110
|
continue: Dalej
|
|
140
111
|
submit: Zatwierdź
|
|
141
|
-
user_answers_serializer:
|
|
142
|
-
body: Odpowiedź
|
|
143
|
-
created_at: Odpowiedziałem
|
|
144
|
-
id: ID odpowiedzi
|
|
145
|
-
question: Pytanie
|
data/config/locales/pt-BR.yml
CHANGED
|
@@ -2,8 +2,6 @@
|
|
|
2
2
|
pt-BR:
|
|
3
3
|
activemodel:
|
|
4
4
|
attributes:
|
|
5
|
-
answer:
|
|
6
|
-
body: Responda
|
|
7
5
|
question:
|
|
8
6
|
max_choices: Número máximo de escolhas
|
|
9
7
|
question_type: Tipo
|
|
@@ -18,36 +16,18 @@ pt-BR:
|
|
|
18
16
|
description: Descrição
|
|
19
17
|
tos: Termos de serviço
|
|
20
18
|
questionnaires:
|
|
21
|
-
actions:
|
|
22
|
-
show: Mostrar respostas
|
|
23
|
-
answer_option:
|
|
24
|
-
answer_option: Opção de resposta
|
|
25
|
-
remove: Remover
|
|
26
|
-
statement: Declaração
|
|
27
|
-
answers:
|
|
28
|
-
actions:
|
|
29
|
-
show: Mostrar respostas
|
|
30
|
-
empty: Ainda não há respostas
|
|
31
|
-
export_response:
|
|
32
|
-
title: pesquisa_respostas_do_usuário_%{token}
|
|
33
|
-
show:
|
|
34
|
-
title: 'Resposta #%{number}'
|
|
35
19
|
display_condition:
|
|
36
|
-
answer_option: Opção de resposta
|
|
37
20
|
condition_question: Questão
|
|
38
21
|
condition_type: Condição
|
|
39
22
|
condition_types:
|
|
40
|
-
answered: Respondido
|
|
41
23
|
equal: Igual
|
|
42
24
|
match: Incluir texto
|
|
43
|
-
not_answered: Não respondido
|
|
44
25
|
not_equal: Diferente
|
|
45
26
|
condition_value: Incluir texto
|
|
46
27
|
display_condition: Exibir condição
|
|
47
28
|
mandatory: Esta condição precisa ser sempre satisfeita independentemente do status de outras condições
|
|
48
29
|
remove: Remover
|
|
49
30
|
save_warning: Lembre-se de salvar o formulário antes de configurar condições de exibição
|
|
50
|
-
select_answer_option: Selecionar opção de resposta
|
|
51
31
|
select_condition_question: Selecione uma pergunta
|
|
52
32
|
select_condition_type: Selecione um tipo de condição
|
|
53
33
|
edit:
|
|
@@ -64,7 +44,6 @@ pt-BR:
|
|
|
64
44
|
remove: Remover
|
|
65
45
|
statement: Declaração
|
|
66
46
|
question:
|
|
67
|
-
add_answer_option: Adicionar opção de resposta
|
|
68
47
|
add_display_condition: Adicionar condição de exibição
|
|
69
48
|
add_display_condition_info: Salve o formulário para configurar condições de exibição
|
|
70
49
|
add_matrix_row: Adicionar linha
|
|
@@ -75,6 +54,9 @@ pt-BR:
|
|
|
75
54
|
question: Questão
|
|
76
55
|
remove: Remover
|
|
77
56
|
statement: Declaração
|
|
57
|
+
responses:
|
|
58
|
+
actions:
|
|
59
|
+
show: Mostrar respostas
|
|
78
60
|
separator:
|
|
79
61
|
remove: Remover
|
|
80
62
|
separator: Separador
|
|
@@ -98,30 +80,19 @@ pt-BR:
|
|
|
98
80
|
resize_to_fit: Esta imagem será redimensionada para caber %{dimensions}.
|
|
99
81
|
question_types:
|
|
100
82
|
files: Arquivos
|
|
101
|
-
long_answer: Resposta longa
|
|
102
83
|
matrix_multiple: Matriz (Múltipla opção)
|
|
103
84
|
matrix_single: Matriz (opção única)
|
|
104
85
|
multiple_option: Opção múltipla
|
|
105
|
-
short_answer: Resposta curta
|
|
106
86
|
single_option: Opção única
|
|
107
87
|
sorting: Classificação
|
|
108
88
|
title_and_description: Título e descrição
|
|
109
89
|
questionnaires:
|
|
110
|
-
answer:
|
|
111
|
-
invalid: Houve erros ao responder a pesquisa.
|
|
112
|
-
success: Questionário respondido com sucesso.
|
|
113
90
|
question:
|
|
114
91
|
max_choices: 'Escolhas máximas: %{n}'
|
|
115
92
|
show:
|
|
116
|
-
answer_questionnaire:
|
|
117
|
-
title: Responda o questionário
|
|
118
93
|
current_step: Passo %{step}
|
|
119
94
|
of_total_steps: de %{total_steps}
|
|
120
|
-
questionnaire_answered:
|
|
121
|
-
body: Você já respondeu esta pesquisa.
|
|
122
|
-
title: Já respondido
|
|
123
95
|
questionnaire_closed:
|
|
124
|
-
body: O questionário está fechado e não pode ser respondido.
|
|
125
96
|
title: Questionário fechado
|
|
126
97
|
questionnaire_for_private_users:
|
|
127
98
|
body: O questionário está disponível apenas para usuários particulares
|
|
@@ -137,8 +108,3 @@ pt-BR:
|
|
|
137
108
|
back: Voltar
|
|
138
109
|
continue: Continuar
|
|
139
110
|
submit: Enviar
|
|
140
|
-
user_answers_serializer:
|
|
141
|
-
body: Resposta
|
|
142
|
-
created_at: Respondido em
|
|
143
|
-
id: ID da resposta
|
|
144
|
-
question: Questão
|
data/config/locales/pt.yml
CHANGED
|
@@ -2,8 +2,6 @@
|
|
|
2
2
|
pt:
|
|
3
3
|
activemodel:
|
|
4
4
|
attributes:
|
|
5
|
-
answer:
|
|
6
|
-
body: Responder
|
|
7
5
|
question:
|
|
8
6
|
max_choices: Número máximo de escolhas
|
|
9
7
|
question_type: Tipo
|
|
@@ -18,36 +16,18 @@ pt:
|
|
|
18
16
|
description: Descrição
|
|
19
17
|
tos: Termos de serviço
|
|
20
18
|
questionnaires:
|
|
21
|
-
actions:
|
|
22
|
-
show: Mostrar respostas
|
|
23
|
-
answer_option:
|
|
24
|
-
answer_option: Opção de resposta
|
|
25
|
-
remove: Remover
|
|
26
|
-
statement: Declaração
|
|
27
|
-
answers:
|
|
28
|
-
actions:
|
|
29
|
-
show: Mostrar respostas
|
|
30
|
-
empty: Ainda não há respostas
|
|
31
|
-
export_response:
|
|
32
|
-
title: survey_user_answers_%{token}
|
|
33
|
-
show:
|
|
34
|
-
title: 'Resposta #%{number}'
|
|
35
19
|
display_condition:
|
|
36
|
-
answer_option: Opção de resposta
|
|
37
20
|
condition_question: Pergunta
|
|
38
21
|
condition_type: Condição
|
|
39
22
|
condition_types:
|
|
40
|
-
answered: Respondido
|
|
41
23
|
equal: Igual
|
|
42
24
|
match: Inclui texto
|
|
43
|
-
not_answered: Não respondido
|
|
44
25
|
not_equal: Diferente
|
|
45
26
|
condition_value: Incluiu texto
|
|
46
27
|
display_condition: Exibir condição
|
|
47
28
|
mandatory: Esta condição precisa de ser sempre satisfeita independentemente do estado das outras condições
|
|
48
29
|
remove: Remover
|
|
49
30
|
save_warning: Lembre-se de guardar o formulário antes de configurar as condições de exibição
|
|
50
|
-
select_answer_option: Selecionar opção de resposta
|
|
51
31
|
select_condition_question: Selecionar uma pergunta
|
|
52
32
|
select_condition_type: Selecionar um tipo de condição
|
|
53
33
|
edit:
|
|
@@ -64,7 +44,6 @@ pt:
|
|
|
64
44
|
remove: Remover
|
|
65
45
|
statement: Declaração
|
|
66
46
|
question:
|
|
67
|
-
add_answer_option: Adicionar opção de resposta
|
|
68
47
|
add_display_condition: Adicionar condição de exibição
|
|
69
48
|
add_display_condition_info: Guarde o formulário para configurar as condições de exibição
|
|
70
49
|
add_matrix_row: Adicionar linha
|
|
@@ -75,6 +54,9 @@ pt:
|
|
|
75
54
|
question: Questão
|
|
76
55
|
remove: Remover
|
|
77
56
|
statement: Declaração
|
|
57
|
+
responses:
|
|
58
|
+
actions:
|
|
59
|
+
show: Mostrar respostas
|
|
78
60
|
separator:
|
|
79
61
|
remove: Remover
|
|
80
62
|
separator: Separador
|
|
@@ -85,29 +67,18 @@ pt:
|
|
|
85
67
|
dimensions: "%{width} x %{height} px"
|
|
86
68
|
question_types:
|
|
87
69
|
files: Ficheiros
|
|
88
|
-
long_answer: Resposta longa
|
|
89
70
|
matrix_multiple: Matriz (Escolha múltipla)
|
|
90
71
|
matrix_single: Matriz (Escolha única)
|
|
91
72
|
multiple_option: Escolha múltipla
|
|
92
|
-
short_answer: Resposta curta
|
|
93
73
|
single_option: Escolha única
|
|
94
74
|
sorting: Ordenação
|
|
95
75
|
questionnaires:
|
|
96
|
-
answer:
|
|
97
|
-
invalid: Ocorreu um problema ao responder ao questionário.
|
|
98
|
-
success: Questionário respondido corretamente.
|
|
99
76
|
question:
|
|
100
77
|
max_choices: 'Escolhas máximas: %{n}'
|
|
101
78
|
show:
|
|
102
|
-
answer_questionnaire:
|
|
103
|
-
title: Responda ao questionário
|
|
104
79
|
current_step: Passo %{step}
|
|
105
80
|
of_total_steps: de %{total_steps}
|
|
106
|
-
questionnaire_answered:
|
|
107
|
-
body: Já respondeu a este questionário.
|
|
108
|
-
title: Já respondido
|
|
109
81
|
questionnaire_closed:
|
|
110
|
-
body: O questionário está encerrado e não pode ser respondido.
|
|
111
82
|
title: Questionário encerrado
|
|
112
83
|
questionnaire_for_private_users:
|
|
113
84
|
body: O questionário está disponível apenas para utilizadores privados
|
|
@@ -123,8 +94,3 @@ pt:
|
|
|
123
94
|
back: Retroceder
|
|
124
95
|
continue: Continuar
|
|
125
96
|
submit: Submeter
|
|
126
|
-
user_answers_serializer:
|
|
127
|
-
body: Responder
|
|
128
|
-
created_at: Respondido em
|
|
129
|
-
id: ID da resposta
|
|
130
|
-
question: Questão
|