decidim-forms 0.29.4 → 0.30.0.rc1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/cells/decidim/forms/step_navigation_cell.rb +18 -5
- data/app/commands/decidim/forms/admin/update_questionnaire.rb +1 -82
- data/app/commands/decidim/forms/admin/update_questions.rb +109 -0
- data/app/commands/decidim/forms/answer_questionnaire.rb +10 -3
- data/app/controllers/decidim/forms/admin/concerns/has_questionnaire.rb +39 -3
- data/app/controllers/decidim/forms/admin/concerns/has_questionnaire_answers.rb +2 -2
- data/app/controllers/decidim/forms/concerns/has_questionnaire.rb +12 -4
- data/app/forms/decidim/forms/admin/display_condition_form.rb +1 -1
- data/app/forms/decidim/forms/admin/questionnaire_form.rb +0 -9
- data/app/forms/decidim/forms/admin/questions_form.rb +18 -0
- data/app/forms/decidim/forms/answer_choice_form.rb +5 -0
- data/app/forms/decidim/forms/answer_form.rb +1 -0
- data/app/forms/decidim/forms/questionnaire_form.rb +7 -0
- data/app/helpers/decidim/forms/admin/concerns/has_questionnaire_answers_pagination_helper.rb +1 -1
- data/app/helpers/decidim/forms/admin/concerns/has_questionnaire_answers_url_helper.rb +5 -5
- data/app/jobs/decidim/forms/export_questionnaire_answers_job.rb +5 -1
- data/app/models/decidim/forms/answer_choice.rb +0 -2
- data/app/models/decidim/forms/answer_option.rb +1 -1
- data/app/models/decidim/forms/question.rb +10 -0
- data/app/packs/entrypoints/decidim_forms.js +0 -1
- data/app/packs/entrypoints/decidim_forms_admin.js +6 -0
- data/app/packs/src/decidim/forms/admin/publish_answers_buttons.js +72 -0
- data/app/packs/src/decidim/forms/forms.js +22 -18
- data/app/presenters/decidim/forms/admin/questionnaire_participant_presenter.rb +1 -1
- data/app/presenters/decidim/forms/admin_log/question_presenter.rb +31 -0
- data/app/queries/decidim/forms/questionnaire_user_answers.rb +1 -1
- data/app/views/decidim/forms/admin/questionnaires/_answer_option_template.html.erb +1 -1
- data/app/views/decidim/forms/admin/questionnaires/_display_condition_template.html.erb +1 -1
- data/app/views/decidim/forms/admin/questionnaires/_form.html.erb +0 -89
- data/app/views/decidim/forms/admin/questionnaires/_matrix_row_template.html.erb +1 -1
- data/app/views/decidim/forms/admin/questionnaires/_question.html.erb +3 -3
- data/app/views/decidim/forms/admin/questionnaires/_questions_form.html.erb +80 -0
- data/app/views/decidim/forms/admin/questionnaires/edit.html.erb +0 -20
- data/app/views/decidim/forms/admin/questionnaires/edit_questions.html.erb +47 -0
- data/app/views/decidim/forms/questionnaires/_questionnaire.html.erb +8 -1
- data/app/views/decidim/forms/questionnaires/answers/_files.html.erb +1 -1
- data/app/views/decidim/forms/questionnaires/answers/_sorting.html.erb +12 -6
- data/app/views/decidim/forms/questionnaires/edit.html.erb +47 -0
- data/app/views/decidim/forms/questionnaires/show.html.erb +13 -2
- data/config/assets.rb +1 -2
- data/config/locales/ar.yml +16 -1
- data/config/locales/bg.yml +36 -2
- data/config/locales/ca.yml +53 -13
- data/config/locales/cs.yml +48 -8
- data/config/locales/de.yml +52 -12
- data/config/locales/el.yml +35 -2
- data/config/locales/en.yml +45 -5
- data/config/locales/es-MX.yml +55 -15
- data/config/locales/es-PY.yml +55 -15
- data/config/locales/es.yml +54 -14
- data/config/locales/eu.yml +51 -11
- data/config/locales/fi-plain.yml +50 -10
- data/config/locales/fi.yml +50 -10
- data/config/locales/fr-CA.yml +45 -13
- data/config/locales/fr.yml +45 -13
- data/config/locales/ga-IE.yml +5 -0
- data/config/locales/gl.yml +7 -1
- data/config/locales/hu.yml +10 -1
- data/config/locales/id-ID.yml +7 -1
- data/config/locales/it.yml +27 -3
- data/config/locales/ja.yml +7 -12
- data/config/locales/lb.yml +28 -1
- data/config/locales/lt.yml +35 -2
- data/config/locales/lv.yml +11 -1
- data/config/locales/nl.yml +23 -0
- data/config/locales/no.yml +27 -0
- data/config/locales/pl.yml +37 -2
- data/config/locales/pt-BR.yml +29 -0
- data/config/locales/pt.yml +27 -0
- data/config/locales/ro-RO.yml +44 -17
- data/config/locales/ru.yml +1 -2
- data/config/locales/sk.yml +10 -1
- data/config/locales/sl.yml +7 -0
- data/config/locales/sv.yml +12 -16
- data/config/locales/tr-TR.yml +23 -0
- data/config/locales/zh-CN.yml +23 -0
- data/config/locales/zh-TW.yml +35 -2
- data/db/migrate/20190315203056_add_session_token_to_decidim_forms_answers.rb +1 -1
- data/db/migrate/20241122142230_add_survey_answers_published_at_to_questions.rb +7 -0
- data/decidim-forms.gemspec +1 -2
- data/lib/decidim/api/answer_option_type.rb +1 -1
- data/lib/decidim/api/question_type.rb +4 -4
- data/lib/decidim/api/questionnaire_type.rb +4 -4
- data/lib/decidim/exporters/form_pdf.rb +114 -11
- data/lib/decidim/forms/download_your_data_user_answers_serializer.rb +0 -4
- data/lib/decidim/forms/test/factories.rb +2 -2
- data/lib/decidim/forms/test/shared_examples/has_questionnaire.rb +44 -4
- data/lib/decidim/forms/test/shared_examples/manage_questionnaire_answers.rb +17 -17
- data/lib/decidim/forms/test/shared_examples/manage_questionnaires/add_display_conditions.rb +19 -21
- data/lib/decidim/forms/test/shared_examples/manage_questionnaires/add_questions.rb +70 -94
- data/lib/decidim/forms/test/shared_examples/manage_questionnaires/update_display_conditions.rb +15 -18
- data/lib/decidim/forms/test/shared_examples/manage_questionnaires/update_questions.rb +90 -125
- data/lib/decidim/forms/test/shared_examples/manage_questionnaires.rb +4 -25
- data/lib/decidim/forms/version.rb +1 -1
- data/lib/decidim/forms.rb +0 -1
- metadata +18 -33
- data/app/packs/entrypoints/decidim_questionnaire_answers_pdf.js +0 -1
- data/app/packs/entrypoints/decidim_questionnaire_answers_pdf.scss +0 -1
- data/app/packs/stylesheets/decidim/forms/questionnaire-answers-pdf.scss +0 -69
- data/app/views/decidim/forms/admin/questionnaires/answers/export/_answer.html.erb +0 -31
- data/app/views/decidim/forms/admin/questionnaires/answers/export/pdf.html.erb +0 -13
- data/app/views/layouts/decidim/forms/admin/questionnaires/questionnaire_answers.html.erb +0 -12
- data/config/initializers/wicked_pdf.rb +0 -26
- data/config/locales/ca-IT.yml +0 -198
- data/lib/decidim/exporters/form_pdf_controller_helper.rb +0 -13
data/config/locales/no.yml
CHANGED
@@ -4,12 +4,24 @@
|
|
4
4
|
attributes:
|
5
5
|
answer:
|
6
6
|
body: Svar
|
7
|
+
choices: Valg
|
8
|
+
selected_choices: Valgte valg
|
7
9
|
question:
|
8
10
|
max_choices: Maksimalt antall valg
|
9
11
|
question_type: Type
|
10
12
|
questionnaire_question:
|
11
13
|
mandatory: Obligatorisk
|
12
14
|
max_characters: Tegngrense (la være 0 hvis ingen begrensning)
|
15
|
+
errors:
|
16
|
+
models:
|
17
|
+
answer:
|
18
|
+
attributes:
|
19
|
+
add_documents:
|
20
|
+
needs_to_be_reattached: Må legges til på nytt
|
21
|
+
body:
|
22
|
+
too_long: er for lang
|
23
|
+
choices:
|
24
|
+
missing: er ikke fullstendig
|
13
25
|
decidim:
|
14
26
|
forms:
|
15
27
|
admin:
|
@@ -23,14 +35,22 @@
|
|
23
35
|
show: Vis svar
|
24
36
|
answer_option:
|
25
37
|
answer_option: Svaralternativ
|
38
|
+
free_text: Fri tekst
|
26
39
|
remove: Fjern
|
27
40
|
statement: Uttalelse
|
28
41
|
answers:
|
29
42
|
actions:
|
43
|
+
back: Tilbake til svar
|
44
|
+
export: Eksporter
|
30
45
|
show: Vis svar
|
31
46
|
empty: Ingen svar enda
|
47
|
+
export:
|
48
|
+
answer:
|
49
|
+
title: 'Svar #%{number}'
|
32
50
|
export_response:
|
33
51
|
title: undersøkelse_bruker_svar_%{token}
|
52
|
+
index:
|
53
|
+
title: "%{total} svar totalt"
|
34
54
|
show:
|
35
55
|
title: 'Svar #%{number}'
|
36
56
|
display_condition:
|
@@ -110,6 +130,7 @@
|
|
110
130
|
questionnaires:
|
111
131
|
answer:
|
112
132
|
invalid: Det oppstod et problem med å svare på skjemaet.
|
133
|
+
max_choices_alert: For mange valg er merket
|
113
134
|
success: Skjema ble besvart.
|
114
135
|
question:
|
115
136
|
max_choices: 'Maksimum valg: %{n}'
|
@@ -140,6 +161,12 @@
|
|
140
161
|
submit: Send inn
|
141
162
|
user_answers_serializer:
|
142
163
|
body: Svar
|
164
|
+
completion: Fullføring
|
143
165
|
created_at: Besvart på
|
144
166
|
id: Svar ID
|
167
|
+
ip_hash: IP Hash
|
145
168
|
question: Spørsmål
|
169
|
+
registered: Registrert
|
170
|
+
session_token: Brukeridentifikator
|
171
|
+
unregistered: Uregistrert
|
172
|
+
user_status: Brukerstatus
|
data/config/locales/pl.yml
CHANGED
@@ -4,6 +4,8 @@ pl:
|
|
4
4
|
attributes:
|
5
5
|
answer:
|
6
6
|
body: Odpowiedź
|
7
|
+
choices: Opcje
|
8
|
+
selected_choices: Wybrane opcje
|
7
9
|
question:
|
8
10
|
max_choices: Maksymalna liczba opcji do wyboru
|
9
11
|
question_type: Typ odpowiedzi
|
@@ -12,8 +14,15 @@ pl:
|
|
12
14
|
max_characters: Limit znaków (zostaw 0, jeśli nie chcesz ustawiać limitu)
|
13
15
|
errors:
|
14
16
|
models:
|
15
|
-
|
16
|
-
|
17
|
+
answer:
|
18
|
+
attributes:
|
19
|
+
add_documents:
|
20
|
+
needs_to_be_reattached: Załącz ponownie
|
21
|
+
body:
|
22
|
+
too_long: jest zbyt długie
|
23
|
+
choices:
|
24
|
+
missing: nie są kompletne
|
25
|
+
too_many: Możesz wybrać maksymalnie %{count}.
|
17
26
|
decidim:
|
18
27
|
forms:
|
19
28
|
admin:
|
@@ -27,14 +36,24 @@ pl:
|
|
27
36
|
show: Pokaż odpowiedzi
|
28
37
|
answer_option:
|
29
38
|
answer_option: Opcja odpowiedzi
|
39
|
+
free_text: Możliwość wpisania dowolnego tekstu
|
30
40
|
remove: Usuń
|
31
41
|
statement: Komunikat
|
32
42
|
answers:
|
33
43
|
actions:
|
44
|
+
back: Powrót do odpowiedzi
|
45
|
+
export: Eksportuj
|
46
|
+
next: Następne ›
|
47
|
+
previous: "‹ Poprzedni"
|
34
48
|
show: Pokaż odpowiedzi
|
35
49
|
empty: Brak odpowiedzi
|
50
|
+
export:
|
51
|
+
answer:
|
52
|
+
title: 'Odpowiedź #%{number}'
|
36
53
|
export_response:
|
37
54
|
title: ankieta_odpowiedzi_uzytkownika_%{token}
|
55
|
+
index:
|
56
|
+
title: "%{total} odpowiedzi ogółem"
|
38
57
|
show:
|
39
58
|
title: 'Odpowiedź #%{number}'
|
40
59
|
display_condition:
|
@@ -102,6 +121,9 @@ pl:
|
|
102
121
|
admin_log:
|
103
122
|
questionnaire:
|
104
123
|
update: "%{user_name} zaktualizował(a) kwestionariusz %{resource_name}"
|
124
|
+
errors:
|
125
|
+
answer:
|
126
|
+
body: Treść nie może być pusta
|
105
127
|
images:
|
106
128
|
dimensions: "%{width} × %{height} px"
|
107
129
|
processors:
|
@@ -117,14 +139,21 @@ pl:
|
|
117
139
|
single_option: Jedna opcja
|
118
140
|
sorting: Sortowanie
|
119
141
|
title_and_description: Tytuł i opis
|
142
|
+
questionnaire_answer_presenter:
|
143
|
+
download_attachment: Pobierz załącznik
|
120
144
|
questionnaires:
|
121
145
|
answer:
|
122
146
|
invalid: Podczas wypełniania formularza wystąpiły błędy.
|
147
|
+
max_choices_alert: Wybrano zbyt wiele opcji
|
123
148
|
success: Wypełniono formularz.
|
124
149
|
question:
|
125
150
|
max_choices: 'Maksymalny wybór opcji: %{n}'
|
126
151
|
show:
|
127
152
|
answer_questionnaire:
|
153
|
+
already_have_an_account?: Posiadasz już konto?
|
154
|
+
are_you_new?: Nowy użytkownik?
|
155
|
+
sign_in_description: Zaloguj się, aby wziąć udział w ankiecie
|
156
|
+
sign_up_description: Utwórz konto uczestnika, aby wziąć udział w ankiecie
|
128
157
|
title: Wypełnij formularz
|
129
158
|
current_step: Krok %{step}
|
130
159
|
empty: Nie skonfigurowano jeszcze żadnych pytań dla tego formularza.
|
@@ -151,6 +180,12 @@ pl:
|
|
151
180
|
submit: Zatwierdź
|
152
181
|
user_answers_serializer:
|
153
182
|
body: Odpowiedź
|
183
|
+
completion: Ukończenie
|
154
184
|
created_at: Odpowiedziałem
|
155
185
|
id: ID odpowiedzi
|
186
|
+
ip_hash: Hash IP
|
156
187
|
question: Pytanie
|
188
|
+
registered: Zarejestrowano
|
189
|
+
session_token: Identyfikator użytkownika
|
190
|
+
unregistered: Nie zarejestrowano
|
191
|
+
user_status: Status użytkownika
|
data/config/locales/pt-BR.yml
CHANGED
@@ -4,12 +4,24 @@ pt-BR:
|
|
4
4
|
attributes:
|
5
5
|
answer:
|
6
6
|
body: Responda
|
7
|
+
choices: Escolhas
|
8
|
+
selected_choices: Escolhas selecionadas
|
7
9
|
question:
|
8
10
|
max_choices: Número máximo de escolhas
|
9
11
|
question_type: Tipo
|
10
12
|
questionnaire_question:
|
11
13
|
mandatory: Obrigatório
|
12
14
|
max_characters: Limite de caracteres (deixe para 0 se não houver limite)
|
15
|
+
errors:
|
16
|
+
models:
|
17
|
+
answer:
|
18
|
+
attributes:
|
19
|
+
add_documents:
|
20
|
+
needs_to_be_reattached: Precisa ser reanexado
|
21
|
+
body:
|
22
|
+
too_long: é longo demais
|
23
|
+
choices:
|
24
|
+
missing: não estão completos
|
13
25
|
decidim:
|
14
26
|
forms:
|
15
27
|
admin:
|
@@ -23,14 +35,22 @@ pt-BR:
|
|
23
35
|
show: Mostrar respostas
|
24
36
|
answer_option:
|
25
37
|
answer_option: Opção de resposta
|
38
|
+
free_text: Texto livre
|
26
39
|
remove: Remover
|
27
40
|
statement: Declaração
|
28
41
|
answers:
|
29
42
|
actions:
|
43
|
+
back: Voltar para respostas
|
44
|
+
export: Exportar
|
30
45
|
show: Mostrar respostas
|
31
46
|
empty: Ainda não há respostas
|
47
|
+
export:
|
48
|
+
answer:
|
49
|
+
title: 'Resposta #%{number}'
|
32
50
|
export_response:
|
33
51
|
title: pesquisa_respostas_do_usuário_%{token}
|
52
|
+
index:
|
53
|
+
title: "%{total} respostas totais"
|
34
54
|
show:
|
35
55
|
title: 'Resposta #%{number}'
|
36
56
|
display_condition:
|
@@ -113,9 +133,12 @@ pt-BR:
|
|
113
133
|
single_option: Opção única
|
114
134
|
sorting: Classificação
|
115
135
|
title_and_description: Título e descrição
|
136
|
+
questionnaire_answer_presenter:
|
137
|
+
download_attachment: Baixar anexo
|
116
138
|
questionnaires:
|
117
139
|
answer:
|
118
140
|
invalid: Houve erros ao responder a pesquisa.
|
141
|
+
max_choices_alert: Há muitas opções selecionadas
|
119
142
|
success: Questionário respondido com sucesso.
|
120
143
|
question:
|
121
144
|
max_choices: 'Escolhas máximas: %{n}'
|
@@ -146,6 +169,12 @@ pt-BR:
|
|
146
169
|
submit: Enviar
|
147
170
|
user_answers_serializer:
|
148
171
|
body: Resposta
|
172
|
+
completion: Conclusão
|
149
173
|
created_at: Respondido em
|
150
174
|
id: ID da resposta
|
175
|
+
ip_hash: Hash IP
|
151
176
|
question: Questão
|
177
|
+
registered: Registrado
|
178
|
+
session_token: Identificador de Usuário
|
179
|
+
unregistered: Não registrado
|
180
|
+
user_status: Status do usuário
|
data/config/locales/pt.yml
CHANGED
@@ -4,12 +4,24 @@ pt:
|
|
4
4
|
attributes:
|
5
5
|
answer:
|
6
6
|
body: Responder
|
7
|
+
choices: Escolhas
|
8
|
+
selected_choices: Escolhas seleccionadas
|
7
9
|
question:
|
8
10
|
max_choices: Número máximo de escolhas
|
9
11
|
question_type: Tipo
|
10
12
|
questionnaire_question:
|
11
13
|
mandatory: Obrigatório
|
12
14
|
max_characters: Limite de caracteres (deixar 0 se não houver limite)
|
15
|
+
errors:
|
16
|
+
models:
|
17
|
+
answer:
|
18
|
+
attributes:
|
19
|
+
add_documents:
|
20
|
+
needs_to_be_reattached: Precisa de ser reanexado
|
21
|
+
body:
|
22
|
+
too_long: é demasiado longo
|
23
|
+
choices:
|
24
|
+
missing: não estão completos
|
13
25
|
decidim:
|
14
26
|
forms:
|
15
27
|
admin:
|
@@ -23,14 +35,22 @@ pt:
|
|
23
35
|
show: Mostrar respostas
|
24
36
|
answer_option:
|
25
37
|
answer_option: Opção de resposta
|
38
|
+
free_text: Texto livre
|
26
39
|
remove: Remover
|
27
40
|
statement: Declaração
|
28
41
|
answers:
|
29
42
|
actions:
|
43
|
+
back: Retroceder às respostas
|
44
|
+
export: Exportar
|
30
45
|
show: Mostrar respostas
|
31
46
|
empty: Ainda não há respostas
|
47
|
+
export:
|
48
|
+
answer:
|
49
|
+
title: 'Resposta #%{number}'
|
32
50
|
export_response:
|
33
51
|
title: survey_user_answers_%{token}
|
52
|
+
index:
|
53
|
+
title: "%{total} respostas totais"
|
34
54
|
show:
|
35
55
|
title: 'Resposta #%{number}'
|
36
56
|
display_condition:
|
@@ -100,6 +120,7 @@ pt:
|
|
100
120
|
questionnaires:
|
101
121
|
answer:
|
102
122
|
invalid: Ocorreu um problema ao responder ao questionário.
|
123
|
+
max_choices_alert: Estão selecionadas demasiadas opções
|
103
124
|
success: Questionário respondido corretamente.
|
104
125
|
question:
|
105
126
|
max_choices: 'Escolhas máximas: %{n}'
|
@@ -130,6 +151,12 @@ pt:
|
|
130
151
|
submit: Submeter
|
131
152
|
user_answers_serializer:
|
132
153
|
body: Responder
|
154
|
+
completion: Conclusão
|
133
155
|
created_at: Respondido em
|
134
156
|
id: ID da resposta
|
157
|
+
ip_hash: IP Hash
|
135
158
|
question: Questão
|
159
|
+
registered: Registado
|
160
|
+
session_token: Identificador do utilizador
|
161
|
+
unregistered: Não registado
|
162
|
+
user_status: Estado de utilizador
|
data/config/locales/ro-RO.yml
CHANGED
@@ -11,28 +11,29 @@ ro:
|
|
11
11
|
question_type: Tip
|
12
12
|
questionnaire_question:
|
13
13
|
mandatory: Obligatoriu
|
14
|
-
max_characters: Limita de caractere (lăsați 0 dacă nu este nicio limită)
|
14
|
+
max_characters: Limita de caractere (lăsați la 0 dacă nu este nicio limită)
|
15
15
|
errors:
|
16
16
|
models:
|
17
17
|
answer:
|
18
18
|
attributes:
|
19
|
+
add_documents:
|
20
|
+
needs_to_be_reattached: Trebuie să fie reatașate
|
19
21
|
body:
|
20
22
|
too_long: este prea lung
|
21
23
|
choices:
|
22
|
-
|
23
|
-
questionnaire:
|
24
|
-
request_invalid: A apărut o eroare la procesarea cererii. Te rugăm să încerci din nou.
|
24
|
+
missing: nu sunt completate
|
25
25
|
decidim:
|
26
26
|
forms:
|
27
27
|
admin:
|
28
28
|
models:
|
29
29
|
components:
|
30
|
+
allow_editing_answers: Permiteți utilizatorilor înregistrați să modifice propriile răspunsuri la sondaj
|
30
31
|
description: Descriere
|
31
|
-
tos:
|
32
|
+
tos: Condiţii de utilizare
|
32
33
|
questionnaires:
|
33
34
|
actions:
|
34
35
|
back: Înapoi la întrebări
|
35
|
-
show:
|
36
|
+
show: Afișează răspunsurile
|
36
37
|
answer_option:
|
37
38
|
answer_option: Opțiune de răspuns
|
38
39
|
free_text: Text liber
|
@@ -41,13 +42,18 @@ ro:
|
|
41
42
|
answers:
|
42
43
|
actions:
|
43
44
|
back: Înapoi la răspunsuri
|
44
|
-
export:
|
45
|
+
export: Exportă
|
45
46
|
next: Următoarea ›
|
46
47
|
previous: "‹ Anterioara"
|
47
|
-
show:
|
48
|
+
show: Afişează răspunsurile
|
48
49
|
empty: Niciun răspuns încă
|
50
|
+
export:
|
51
|
+
answer:
|
52
|
+
title: 'Răspuns #%{number}'
|
49
53
|
export_response:
|
50
54
|
title: survey_user_answers_%{token}
|
55
|
+
index:
|
56
|
+
title: "%{total} răspunsuri în total"
|
51
57
|
show:
|
52
58
|
title: 'Răspuns #%{number}'
|
53
59
|
display_condition:
|
@@ -56,7 +62,7 @@ ro:
|
|
56
62
|
condition_type: Condiție
|
57
63
|
condition_types:
|
58
64
|
answered: Răspunse
|
59
|
-
equal: Egal
|
65
|
+
equal: Egal cu
|
60
66
|
match: Include textul
|
61
67
|
not_answered: Fără răspuns
|
62
68
|
not_equal: Nu este egal cu
|
@@ -70,16 +76,16 @@ ro:
|
|
70
76
|
select_condition_type: Selectați un tip de condiție
|
71
77
|
edit:
|
72
78
|
save: Salvează
|
73
|
-
title:
|
79
|
+
title: Editare chestionar
|
74
80
|
form:
|
75
81
|
add_question: Adaugă întrebare
|
76
|
-
collapse:
|
82
|
+
collapse: Restrânge toate întrebările
|
77
83
|
expand: Extinde toate întrebările
|
78
84
|
preview: Previzualizează
|
79
|
-
title:
|
85
|
+
title: Actualizați chestionarul pentru %{questionnaire_for}
|
80
86
|
matrix_row:
|
81
87
|
matrix_row: Rând
|
82
|
-
remove:
|
88
|
+
remove: Elimină
|
83
89
|
statement: Declarație
|
84
90
|
question:
|
85
91
|
add_answer_option: Adaugă opțiune de răspuns
|
@@ -101,10 +107,10 @@ ro:
|
|
101
107
|
separator: Separator
|
102
108
|
up: Mergi în sus
|
103
109
|
title_and_description:
|
104
|
-
collapse:
|
110
|
+
collapse: Restrânge
|
105
111
|
description: Descriere
|
106
112
|
down: Mergi în jos
|
107
|
-
expand:
|
113
|
+
expand: Extinde
|
108
114
|
remove: Șterge
|
109
115
|
title: Titlu
|
110
116
|
title_and_description: Titlu și descriere
|
@@ -115,6 +121,9 @@ ro:
|
|
115
121
|
admin_log:
|
116
122
|
questionnaire:
|
117
123
|
update: "%{user_name} a actualizat chestionarul %{resource_name}"
|
124
|
+
errors:
|
125
|
+
answer:
|
126
|
+
body: Conținutul nu poate fi gol
|
118
127
|
images:
|
119
128
|
dimensions: "%{width} x %{height} px"
|
120
129
|
processors:
|
@@ -130,21 +139,30 @@ ro:
|
|
130
139
|
single_option: Opțiune unică
|
131
140
|
sorting: Sortare
|
132
141
|
title_and_description: Titlu și descriere
|
142
|
+
questionnaire_answer_presenter:
|
143
|
+
download_attachment: Descărcare atașament
|
133
144
|
questionnaires:
|
134
145
|
answer:
|
135
146
|
invalid: A apărut o problemă la completarea chestionarului.
|
147
|
+
max_choices_alert: Există prea multe alegeri selectate
|
136
148
|
success: Chestionarul a fost completat cu succes.
|
137
149
|
question:
|
138
150
|
max_choices: 'Număr maxim de alegeri: %{n}'
|
139
151
|
show:
|
140
152
|
answer_questionnaire:
|
141
|
-
|
153
|
+
already_have_an_account?: Ai deja un cont?
|
154
|
+
are_you_new?: Utilizator nou?
|
155
|
+
sign_up_description: Creați un cont de participant pentru a participa la sondaj
|
156
|
+
title: Completează chestionarul
|
142
157
|
current_step: Pasul %{step}
|
143
158
|
empty: Nicio întrebare configurată pentru acest formular încă.
|
144
159
|
of_total_steps: din %{total_steps}
|
145
160
|
questionnaire_answered:
|
146
161
|
body: Ai completat deja la acest chestionar.
|
147
162
|
title: Un răspuns a fost deja trimis
|
163
|
+
questionnaire_answered_edit:
|
164
|
+
body: Ați răspuns deja la acest sondaj. %{link}
|
165
|
+
edit: Modificați răspunsurile
|
148
166
|
questionnaire_closed:
|
149
167
|
body: Chestionarul este închis și nu mai poate fi completat.
|
150
168
|
title: Formular închis
|
@@ -159,12 +177,21 @@ ro:
|
|
159
177
|
tos_agreement: Prin participare accepți Termenii și condițiile sale de utilizare
|
160
178
|
step_navigation:
|
161
179
|
show:
|
162
|
-
|
180
|
+
are_you_sure_edit: Veți putea să modificați răspunsurile. Sunteți sigur?
|
181
|
+
are_you_sure_edit_guest: Dacă doriți să modificați răspunsurile după ce veți răspunde, atunci trebuie să vă autentificați sau să creați un cont.
|
182
|
+
are_you_sure_no_edit: Această acțiune nu poate fi anulată și nu veți putea să vă modificați răspunsurile. Sunteți sigur?
|
163
183
|
back: Înapoi
|
164
184
|
continue: Continuă
|
185
|
+
disallowed: Nu aveți permisiunea să vă modificați răspunsurile.
|
165
186
|
submit: Trimite
|
166
187
|
user_answers_serializer:
|
167
188
|
body: Răspuns
|
189
|
+
completion: Finalizare
|
168
190
|
created_at: Răspuns completat la
|
169
191
|
id: ID răspuns
|
192
|
+
ip_hash: IP Hash
|
170
193
|
question: Întrebare
|
194
|
+
registered: Înregistrat
|
195
|
+
session_token: Identificator utilizator
|
196
|
+
unregistered: Neînregistrat
|
197
|
+
user_status: Stadiul utilizatorului
|
data/config/locales/ru.yml
CHANGED
@@ -10,6 +10,7 @@ ru:
|
|
10
10
|
questionnaires:
|
11
11
|
answer_option:
|
12
12
|
answer_option: Вариант ответа
|
13
|
+
free_text: Произвольный текст
|
13
14
|
remove: Удалить
|
14
15
|
edit:
|
15
16
|
save: Сохранить
|
@@ -42,5 +43,3 @@ ru:
|
|
42
43
|
step_navigation:
|
43
44
|
show:
|
44
45
|
submit: Отправить
|
45
|
-
user_answers_serializer:
|
46
|
-
question: Вопрос
|
data/config/locales/sk.yml
CHANGED
@@ -9,6 +9,12 @@ sk:
|
|
9
9
|
question_type: Typ
|
10
10
|
questionnaire_question:
|
11
11
|
mandatory: Povinné
|
12
|
+
errors:
|
13
|
+
models:
|
14
|
+
answer:
|
15
|
+
attributes:
|
16
|
+
choices:
|
17
|
+
missing: nie je kompletné
|
12
18
|
decidim:
|
13
19
|
forms:
|
14
20
|
admin:
|
@@ -19,6 +25,7 @@ sk:
|
|
19
25
|
questionnaires:
|
20
26
|
answer_option:
|
21
27
|
answer_option: Možnosť odpovede
|
28
|
+
free_text: Voľný text
|
22
29
|
remove: Odstrániť
|
23
30
|
statement: Prehlásenie
|
24
31
|
edit:
|
@@ -70,4 +77,6 @@ sk:
|
|
70
77
|
user_answers_serializer:
|
71
78
|
created_at: Odpovedané na
|
72
79
|
id: ID odpovede
|
73
|
-
|
80
|
+
registered: Registrovaný
|
81
|
+
unregistered: Neregistrovaný
|
82
|
+
user_status: Status Užívateľa
|
data/config/locales/sl.yml
CHANGED
data/config/locales/sv.yml
CHANGED
@@ -40,7 +40,7 @@ sv:
|
|
40
40
|
answer_option: Svarsalternativ
|
41
41
|
free_text: Fritext
|
42
42
|
remove: Ta bort
|
43
|
-
statement:
|
43
|
+
statement: Påstående
|
44
44
|
answers:
|
45
45
|
actions:
|
46
46
|
back: Tillbaka till svar
|
@@ -78,12 +78,9 @@ sv:
|
|
78
78
|
select_condition_type: Välj en typ av villkor
|
79
79
|
edit:
|
80
80
|
save: Spara
|
81
|
-
title: Redigera
|
81
|
+
title: Redigera enkät
|
82
82
|
form:
|
83
83
|
add_question: Lägg till fråga
|
84
|
-
add_separator: Lägg till avgränsare
|
85
|
-
add_title_and_description: Lägg till titel och beskrivning
|
86
|
-
already_answered_warning: Frågeformuläret har redan besvarats av användare och du kan inte längre ändra frågorna.
|
87
84
|
collapse: Dölj alla frågor
|
88
85
|
expand: Visa alla frågor
|
89
86
|
preview: Förhandsgranska
|
@@ -91,24 +88,24 @@ sv:
|
|
91
88
|
matrix_row:
|
92
89
|
matrix_row: Rad
|
93
90
|
remove: Ta bort
|
94
|
-
statement:
|
91
|
+
statement: Påstående
|
95
92
|
question:
|
96
93
|
add_answer_option: Lägg till svarsalternativ
|
97
94
|
add_display_condition: Lägg till visningsvillkor
|
98
95
|
add_display_condition_info: Spara formuläret för att konfigurera visningsvillkor
|
99
96
|
add_matrix_row: Lägg till rad
|
100
|
-
any:
|
97
|
+
any: Någon
|
101
98
|
collapse: Dölj
|
102
99
|
description: Beskrivning
|
103
|
-
down:
|
100
|
+
down: Ned
|
104
101
|
expand: Visa
|
105
102
|
question: Fråga
|
106
103
|
remove: Ta bort
|
107
|
-
statement:
|
104
|
+
statement: Påstående
|
108
105
|
up: Upp
|
109
106
|
separator:
|
110
107
|
down: Ner
|
111
|
-
remove:
|
108
|
+
remove: Radera
|
112
109
|
separator: Avgränsare
|
113
110
|
up: Upp
|
114
111
|
title_and_description:
|
@@ -116,7 +113,7 @@ sv:
|
|
116
113
|
description: Beskrivning
|
117
114
|
down: Ner
|
118
115
|
expand: Visa
|
119
|
-
remove:
|
116
|
+
remove: Radera
|
120
117
|
title: Titel
|
121
118
|
title_and_description: Titel och beskrivning
|
122
119
|
up: Upp
|
@@ -149,7 +146,7 @@ sv:
|
|
149
146
|
questionnaires:
|
150
147
|
answer:
|
151
148
|
invalid: Det gick inte att besvara formuläret.
|
152
|
-
max_choices_alert:
|
149
|
+
max_choices_alert: För många alternativ har valts
|
153
150
|
success: Formuläret har besvarats.
|
154
151
|
question:
|
155
152
|
max_choices: 'Högst antal val: %{n}'
|
@@ -177,19 +174,18 @@ sv:
|
|
177
174
|
title: JavaScript är inaktiverat
|
178
175
|
questionnaire_not_published:
|
179
176
|
body: Formulär är ännu inte publicerat.
|
180
|
-
tos_agreement: Genom att
|
177
|
+
tos_agreement: Genom att delta godkänner du användarvillkoren
|
181
178
|
step_navigation:
|
182
179
|
show:
|
183
|
-
are_you_sure: Den här åtgärden kan inte ångras och du kommer inte att kunna redigera dina svar. Vill du fortsätta?
|
184
180
|
back: Tillbaka
|
185
181
|
continue: Fortsätt
|
186
|
-
submit: Skicka
|
182
|
+
submit: Skicka in
|
187
183
|
user_answers_serializer:
|
188
184
|
body: Svar
|
189
185
|
completion: Slutfört
|
190
186
|
created_at: Besvarad
|
191
187
|
id: Svars-ID
|
192
|
-
ip_hash: IP
|
188
|
+
ip_hash: IP Hash
|
193
189
|
question: Fråga
|
194
190
|
registered: Registrerad
|
195
191
|
session_token: Identifierare för användare
|
data/config/locales/tr-TR.yml
CHANGED
@@ -4,11 +4,19 @@ tr:
|
|
4
4
|
attributes:
|
5
5
|
answer:
|
6
6
|
body: Cevap
|
7
|
+
choices: Seçenekler
|
8
|
+
selected_choices: Seçilmiş seçenekler
|
7
9
|
question:
|
8
10
|
max_choices: Maksimum seçenek sayısı
|
9
11
|
question_type: tip
|
10
12
|
questionnaire_question:
|
11
13
|
mandatory: Zorunlu
|
14
|
+
errors:
|
15
|
+
models:
|
16
|
+
answer:
|
17
|
+
attributes:
|
18
|
+
choices:
|
19
|
+
missing: tamamlanmadı
|
12
20
|
decidim:
|
13
21
|
forms:
|
14
22
|
admin:
|
@@ -22,14 +30,22 @@ tr:
|
|
22
30
|
show: Yanıtları göster
|
23
31
|
answer_option:
|
24
32
|
answer_option: Cevap seçeneği
|
33
|
+
free_text: Ücretsiz Metin
|
25
34
|
remove: Kaldır
|
26
35
|
statement: Beyan
|
27
36
|
answers:
|
28
37
|
actions:
|
38
|
+
back: Yanıtlara dön
|
39
|
+
export: Dışa aktar
|
29
40
|
show: Cevapları göster
|
30
41
|
empty: Henüz cevap bulunmuyor
|
42
|
+
export:
|
43
|
+
answer:
|
44
|
+
title: '#%{number} yanıt'
|
31
45
|
export_response:
|
32
46
|
title: survey_user_answers _%{token}
|
47
|
+
index:
|
48
|
+
title: "%{total} toplam yanıt"
|
33
49
|
show:
|
34
50
|
title: '%{number} cevap'
|
35
51
|
display_condition:
|
@@ -98,6 +114,7 @@ tr:
|
|
98
114
|
questionnaires:
|
99
115
|
answer:
|
100
116
|
invalid: Formu yanıtlarken bir sorun oluştu.
|
117
|
+
max_choices_alert: Çok fazla seçenek seçilmiş
|
101
118
|
success: Form başarıyla cevaplandı.
|
102
119
|
question:
|
103
120
|
max_choices: 'Maksimum seçenek: %{n}'
|
@@ -129,6 +146,12 @@ tr:
|
|
129
146
|
submit: Gönder
|
130
147
|
user_answers_serializer:
|
131
148
|
body: Cevap
|
149
|
+
completion: Tamamlanma
|
132
150
|
created_at: Yanıtlandı
|
133
151
|
id: Cevap kimliği
|
152
|
+
ip_hash: IP Hash
|
134
153
|
question: Soru
|
154
|
+
registered: Kayıtlı
|
155
|
+
session_token: Kullanıcı tanımlayıcı
|
156
|
+
unregistered: Kayıtlı değil
|
157
|
+
user_status: Kullanıcı durumu
|