decidim-forms 0.27.7 → 0.28.0.rc4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/app/cells/decidim/forms/answer_readonly/show.erb +1 -1
- data/app/cells/decidim/forms/matrix_readonly/show.erb +1 -1
- data/app/cells/decidim/forms/question_readonly/show.erb +8 -8
- data/app/cells/decidim/forms/question_readonly/title_and_description.erb +8 -0
- data/app/cells/decidim/forms/question_readonly_cell.rb +7 -0
- data/app/cells/decidim/forms/step_navigation/show.erb +13 -26
- data/app/cells/decidim/forms/step_navigation_cell.rb +7 -0
- data/app/commands/decidim/forms/answer_questionnaire.rb +31 -11
- data/app/controllers/decidim/forms/admin/concerns/has_questionnaire.rb +4 -4
- data/app/controllers/decidim/forms/admin/concerns/has_questionnaire_answers.rb +1 -1
- data/app/controllers/decidim/forms/concerns/has_questionnaire.rb +3 -3
- data/app/forms/decidim/forms/answer_form.rb +7 -3
- data/app/forms/decidim/forms/questionnaire_form.rb +1 -1
- data/app/helpers/decidim/forms/admin/application_helper.rb +1 -1
- data/app/helpers/decidim/forms/admin/concerns/has_questionnaire_answers_url_helper.rb +2 -2
- data/app/models/decidim/forms/answer.rb +1 -1
- data/app/models/decidim/forms/display_condition.rb +2 -2
- data/app/models/decidim/forms/question.rb +0 -4
- data/app/models/decidim/forms/questionnaire.rb +1 -1
- data/app/packs/entrypoints/decidim_forms.js +4 -0
- data/app/packs/src/decidim/forms/admin/collapsible_questions.js +12 -6
- data/app/packs/src/decidim/forms/admin/forms.js +7 -7
- data/app/packs/src/decidim/forms/display_conditions.component.js +3 -3
- data/app/packs/src/decidim/forms/forms.js +15 -9
- data/app/packs/src/decidim/forms/option_attached_inputs.component.js +1 -1
- data/app/packs/stylesheets/decidim/forms/forms.scss +82 -52
- data/app/packs/stylesheets/decidim/forms/questionnaire-answers-pdf.scss +13 -13
- data/app/presenters/decidim/forms/admin/questionnaire_participant_presenter.rb +2 -2
- data/app/presenters/decidim/forms/admin_log/questionnaire_presenter.rb +2 -2
- data/app/presenters/decidim/forms/answer_option_presenter.rb +1 -1
- data/app/queries/decidim/forms/questionnaire_participants.rb +1 -1
- data/app/views/decidim/forms/admin/questionnaires/_answer_option.html.erb +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.html.erb +2 -2
- data/app/views/decidim/forms/admin/questionnaires/_display_condition_template.html.erb +1 -1
- data/app/views/decidim/forms/admin/questionnaires/_form.html.erb +52 -74
- data/app/views/decidim/forms/admin/questionnaires/_matrix_row.html.erb +1 -1
- data/app/views/decidim/forms/admin/questionnaires/_matrix_row_template.html.erb +1 -1
- data/app/views/decidim/forms/admin/questionnaires/_question.html.erb +147 -135
- data/app/views/decidim/forms/admin/questionnaires/_separator.html.erb +15 -13
- data/app/views/decidim/forms/admin/questionnaires/_title_and_description.html.erb +69 -63
- data/app/views/decidim/forms/admin/questionnaires/answers/export/_answer.html.erb +4 -4
- data/app/views/decidim/forms/admin/questionnaires/answers/export/pdf.html.erb +1 -1
- data/app/views/decidim/forms/admin/questionnaires/answers/index.html.erb +41 -45
- data/app/views/decidim/forms/admin/questionnaires/answers/show.html.erb +13 -18
- data/app/views/decidim/forms/admin/questionnaires/edit.html.erb +33 -6
- data/app/views/decidim/forms/questionnaires/_answer.html.erb +31 -27
- data/app/views/decidim/forms/questionnaires/_questionnaire.html.erb +78 -0
- data/app/views/decidim/forms/questionnaires/_questionnaire_readonly.html.erb +11 -0
- data/app/views/decidim/forms/questionnaires/answers/_files.html.erb +1 -1
- data/app/views/decidim/forms/questionnaires/answers/_long_answer.html.erb +3 -1
- data/app/views/decidim/forms/questionnaires/answers/_matrix_multiple.html.erb +44 -41
- data/app/views/decidim/forms/questionnaires/answers/_matrix_single.html.erb +44 -41
- data/app/views/decidim/forms/questionnaires/answers/_multiple_option.html.erb +7 -6
- data/app/views/decidim/forms/questionnaires/answers/_separator.html.erb +1 -1
- data/app/views/decidim/forms/questionnaires/answers/_short_answer.html.erb +3 -1
- data/app/views/decidim/forms/questionnaires/answers/_single_option.html.erb +13 -12
- data/app/views/decidim/forms/questionnaires/answers/_sorting.html.erb +9 -12
- data/app/views/decidim/forms/questionnaires/answers/_title_and_description.html.erb +1 -1
- data/app/views/decidim/forms/questionnaires/show.html.erb +35 -144
- data/config/initializers/wicked_pdf.rb +1 -1
- data/config/locales/ar.yml +0 -6
- data/config/locales/bg.yml +0 -177
- data/config/locales/ca.yml +7 -2
- data/config/locales/cs.yml +8 -3
- data/config/locales/de.yml +9 -4
- data/config/locales/el.yml +7 -2
- data/config/locales/en.yml +8 -3
- data/config/locales/es-MX.yml +7 -2
- data/config/locales/es-PY.yml +7 -2
- data/config/locales/es.yml +7 -2
- data/config/locales/eu.yml +8 -3
- data/config/locales/fi-plain.yml +7 -2
- data/config/locales/fi.yml +7 -2
- data/config/locales/fr-CA.yml +8 -3
- data/config/locales/fr.yml +8 -3
- data/config/locales/gl.yml +0 -4
- data/config/locales/hu.yml +3 -9
- data/config/locales/id-ID.yml +0 -4
- data/config/locales/it.yml +0 -6
- data/config/locales/ja.yml +6 -1
- data/config/locales/lb.yml +0 -6
- data/config/locales/lt.yml +7 -2
- data/config/locales/lv.yml +0 -6
- data/config/locales/nl.yml +0 -6
- data/config/locales/no.yml +0 -6
- data/config/locales/pl.yml +6 -8
- data/config/locales/pt-BR.yml +0 -25
- data/config/locales/pt.yml +0 -6
- data/config/locales/ro-RO.yml +19 -14
- data/config/locales/ru.yml +0 -3
- data/config/locales/sk.yml +0 -6
- data/config/locales/sv.yml +3 -6
- data/config/locales/tr-TR.yml +0 -6
- data/config/locales/zh-CN.yml +0 -6
- data/config/locales/zh-TW.yml +7 -2
- data/lib/decidim/forms/engine.rb +8 -0
- data/lib/decidim/forms/test/factories.rb +37 -51
- data/lib/decidim/forms/test/shared_examples/has_questionnaire.rb +129 -239
- data/lib/decidim/forms/test/shared_examples/manage_questionnaire_answers.rb +18 -18
- data/lib/decidim/forms/test/shared_examples/manage_questionnaires/add_display_conditions.rb +14 -14
- data/lib/decidim/forms/test/shared_examples/manage_questionnaires/add_questions.rb +60 -78
- data/lib/decidim/forms/test/shared_examples/manage_questionnaires/update_display_conditions.rb +6 -6
- data/lib/decidim/forms/test/shared_examples/manage_questionnaires/update_questions.rb +25 -25
- data/lib/decidim/forms/test/shared_examples/manage_questionnaires.rb +9 -9
- data/lib/decidim/forms/user_answers_serializer.rb +1 -1
- data/lib/decidim/forms/version.rb +1 -1
- metadata +23 -18
- data/app/packs/src/decidim/forms/autosortable_checkboxes.component.js +0 -83
- data/config/locales/he-IL.yml +0 -1
- data/decidim-forms.gemspec +0 -34
data/config/locales/es-PY.yml
CHANGED
@@ -24,7 +24,7 @@ es-PY:
|
|
24
24
|
missing: no están completos
|
25
25
|
too_many: son demasiados
|
26
26
|
questionnaire:
|
27
|
-
request_invalid: Ha ocurrido un error al enviar tu solicitud. Inténtalo de nuevo
|
27
|
+
request_invalid: Ha ocurrido un error al enviar tu solicitud. Por favor, Inténtalo de nuevo.
|
28
28
|
decidim:
|
29
29
|
forms:
|
30
30
|
admin:
|
@@ -45,6 +45,8 @@ es-PY:
|
|
45
45
|
actions:
|
46
46
|
back: Volver a las respuestas
|
47
47
|
export: Exportar
|
48
|
+
next: Siguiente ›
|
49
|
+
previous: "‹ Anterior"
|
48
50
|
show: Mostrar las respuestas
|
49
51
|
empty: Aún no hay respuestas
|
50
52
|
export:
|
@@ -154,7 +156,10 @@ es-PY:
|
|
154
156
|
max_choices: 'Opciones máximas: %{n}'
|
155
157
|
show:
|
156
158
|
answer_questionnaire:
|
157
|
-
|
159
|
+
already_have_an_account?: '¿Ya tienes una cuenta?'
|
160
|
+
are_you_new?: '¿Eres una nueva usuaria?'
|
161
|
+
sign_in_description: Inicia tu sesión para responder la encuesta
|
162
|
+
sign_up_description: Crea una cuenta de participante para realizar la encuesta
|
158
163
|
title: Responde al cuestionario
|
159
164
|
current_step: Paso %{step}
|
160
165
|
of_total_steps: de %{total_steps}
|
data/config/locales/es.yml
CHANGED
@@ -24,7 +24,7 @@ es:
|
|
24
24
|
missing: no están completos
|
25
25
|
too_many: son demasiados
|
26
26
|
questionnaire:
|
27
|
-
request_invalid: Ha ocurrido un error al enviar tu solicitud. Inténtalo de nuevo
|
27
|
+
request_invalid: Ha ocurrido un error al enviar tu solicitud. Por favor, Inténtalo de nuevo.
|
28
28
|
decidim:
|
29
29
|
forms:
|
30
30
|
admin:
|
@@ -45,6 +45,8 @@ es:
|
|
45
45
|
actions:
|
46
46
|
back: Volver a las respuestas
|
47
47
|
export: Exportar
|
48
|
+
next: Siguiente ›
|
49
|
+
previous: "‹ Anterior"
|
48
50
|
show: Mostrar las respuestas
|
49
51
|
empty: Aún no hay respuestas
|
50
52
|
export:
|
@@ -154,7 +156,10 @@ es:
|
|
154
156
|
max_choices: 'Opciones máximas: %{n}'
|
155
157
|
show:
|
156
158
|
answer_questionnaire:
|
157
|
-
|
159
|
+
already_have_an_account?: '¿Ya tienes una cuenta?'
|
160
|
+
are_you_new?: '¿Eres una nueva usuaria?'
|
161
|
+
sign_in_description: Inicia tu sesión para responder la encuesta
|
162
|
+
sign_up_description: Crea una cuenta de participante para realizar la encuesta
|
158
163
|
title: Responde el formulario
|
159
164
|
current_step: Paso %{step}
|
160
165
|
of_total_steps: de %{total_steps}
|
data/config/locales/eu.yml
CHANGED
@@ -24,7 +24,7 @@ eu:
|
|
24
24
|
missing: ez dira osatu
|
25
25
|
too_many: gehiegi dira
|
26
26
|
questionnaire:
|
27
|
-
request_invalid:
|
27
|
+
request_invalid: Errore bat egon da eskaera bidaltzean. Mesedez, saiatu berriro.
|
28
28
|
decidim:
|
29
29
|
forms:
|
30
30
|
admin:
|
@@ -45,6 +45,8 @@ eu:
|
|
45
45
|
actions:
|
46
46
|
back: Itzuli erantzunetara
|
47
47
|
export: Esportatu
|
48
|
+
next: Hurrengoa ›
|
49
|
+
previous: "‹ Aurrekoa"
|
48
50
|
show: Erakutsi erantzunak
|
49
51
|
empty: Oraindik ez dago erantzunik
|
50
52
|
export:
|
@@ -127,7 +129,7 @@ eu:
|
|
127
129
|
update: "%{user_name} erabiltzaileak %{resource_name} galdetegia eguneratu du"
|
128
130
|
errors:
|
129
131
|
answer:
|
130
|
-
body:
|
132
|
+
body: "Gorputza ezin da hutsik egon\n"
|
131
133
|
images:
|
132
134
|
dimensions: "%{width} x %{height} px"
|
133
135
|
processors:
|
@@ -154,7 +156,10 @@ eu:
|
|
154
156
|
max_choices: 'Gehieneko aukerak: %{n}'
|
155
157
|
show:
|
156
158
|
answer_questionnaire:
|
157
|
-
|
159
|
+
already_have_an_account?: Baduzu kontu bat?
|
160
|
+
are_you_new?: Erabiltzaile berria?
|
161
|
+
sign_in_description: Hasi saioa inkesta egiteko
|
162
|
+
sign_up_description: Sortu parte-hartzaileen kontua inkesta egiteko
|
158
163
|
title: Erantzun formularioa
|
159
164
|
current_step: '%{step} urratsa'
|
160
165
|
of_total_steps: '%{total_steps} etik'
|
data/config/locales/fi-plain.yml
CHANGED
@@ -24,7 +24,7 @@ fi-pl:
|
|
24
24
|
missing: ovat puutteellisia
|
25
25
|
too_many: liian monta
|
26
26
|
questionnaire:
|
27
|
-
request_invalid: Pyynnön käsittely ei onnistunut. Yritä uudestaan myöhemmin
|
27
|
+
request_invalid: Pyynnön käsittely ei onnistunut. Yritä uudestaan myöhemmin.
|
28
28
|
decidim:
|
29
29
|
forms:
|
30
30
|
admin:
|
@@ -45,6 +45,8 @@ fi-pl:
|
|
45
45
|
actions:
|
46
46
|
back: Takaisin vastauksiin
|
47
47
|
export: Vie
|
48
|
+
next: Seuraava ›
|
49
|
+
previous: "‹ Edellinen"
|
48
50
|
show: Näytä vastaukset
|
49
51
|
empty: Ei vielä yhtään vastausta
|
50
52
|
export:
|
@@ -154,7 +156,10 @@ fi-pl:
|
|
154
156
|
max_choices: 'Valintojen maksimimäärä: %{n}'
|
155
157
|
show:
|
156
158
|
answer_questionnaire:
|
157
|
-
|
159
|
+
already_have_an_account?: Onko sinulla jo käyttäjätili?
|
160
|
+
are_you_new?: Oletko uusi käyttäjä?
|
161
|
+
sign_in_description: Kirjaudu sisään vastataksesi kyselyyn
|
162
|
+
sign_up_description: Luo tili tähän palveluun vastataksesi kyselyyn
|
158
163
|
title: Vastaa kyselyyn
|
159
164
|
current_step: Vaihe %{step}
|
160
165
|
of_total_steps: / %{total_steps}
|
data/config/locales/fi.yml
CHANGED
@@ -24,7 +24,7 @@ fi:
|
|
24
24
|
missing: ovat puutteellisia
|
25
25
|
too_many: liian monta
|
26
26
|
questionnaire:
|
27
|
-
request_invalid: Pyynnön käsittely ei onnistunut. Yritä uudestaan myöhemmin
|
27
|
+
request_invalid: Pyynnön käsittely ei onnistunut. Yritä uudestaan myöhemmin.
|
28
28
|
decidim:
|
29
29
|
forms:
|
30
30
|
admin:
|
@@ -45,6 +45,8 @@ fi:
|
|
45
45
|
actions:
|
46
46
|
back: Takaisin vastauksiin
|
47
47
|
export: Vie
|
48
|
+
next: Seuraava ›
|
49
|
+
previous: "‹ Edellinen"
|
48
50
|
show: Näytä vastaukset
|
49
51
|
empty: Ei vielä yhtään vastausta
|
50
52
|
export:
|
@@ -154,7 +156,10 @@ fi:
|
|
154
156
|
max_choices: 'Valintojen maksimimäärä: %{n}'
|
155
157
|
show:
|
156
158
|
answer_questionnaire:
|
157
|
-
|
159
|
+
already_have_an_account?: Onko sinulla jo käyttäjätili?
|
160
|
+
are_you_new?: Oletko uusi käyttäjä?
|
161
|
+
sign_in_description: Kirjaudu sisään vastataksesi kyselyyn
|
162
|
+
sign_up_description: Luo tili tähän palveluun vastataksesi kyselyyn
|
158
163
|
title: Vastaa kyselylomakkeeseen
|
159
164
|
current_step: Vaihe %{step}
|
160
165
|
of_total_steps: / %{total_steps}
|
data/config/locales/fr-CA.yml
CHANGED
@@ -24,7 +24,7 @@ fr-CA:
|
|
24
24
|
missing: ne sont pas complets
|
25
25
|
too_many: sont trop nombreux
|
26
26
|
questionnaire:
|
27
|
-
request_invalid:
|
27
|
+
request_invalid: Une erreur s'est produite. Veuillez réessayer.
|
28
28
|
decidim:
|
29
29
|
forms:
|
30
30
|
admin:
|
@@ -45,6 +45,8 @@ fr-CA:
|
|
45
45
|
actions:
|
46
46
|
back: Retour aux réponses
|
47
47
|
export: Exporter
|
48
|
+
next: Suivant ›
|
49
|
+
previous: "‹ Précédent"
|
48
50
|
show: Afficher les réponses
|
49
51
|
empty: Pas encore de réponses
|
50
52
|
export:
|
@@ -127,7 +129,7 @@ fr-CA:
|
|
127
129
|
update: "%{user_name} a modifié le questionnaire %{resource_name}"
|
128
130
|
errors:
|
129
131
|
answer:
|
130
|
-
body:
|
132
|
+
body: ne peut être vide
|
131
133
|
images:
|
132
134
|
dimensions: "%{width} x %{height} px"
|
133
135
|
processors:
|
@@ -154,7 +156,10 @@ fr-CA:
|
|
154
156
|
max_choices: 'Choix maximum: %{n}'
|
155
157
|
show:
|
156
158
|
answer_questionnaire:
|
157
|
-
|
159
|
+
already_have_an_account?: Vous avez déjà un compte ?
|
160
|
+
are_you_new?: Nouvel utilisateur ?
|
161
|
+
sign_in_description: Connectez-vous pour répondre à l'enquête
|
162
|
+
sign_up_description: Créez votre compte utilisateur pour répondre à l'enquête
|
158
163
|
title: Répondez au questionnaire
|
159
164
|
current_step: Étape %{step}
|
160
165
|
of_total_steps: de %{total_steps}
|
data/config/locales/fr.yml
CHANGED
@@ -24,7 +24,7 @@ fr:
|
|
24
24
|
missing: ne sont pas complets
|
25
25
|
too_many: sont trop nombreux
|
26
26
|
questionnaire:
|
27
|
-
request_invalid:
|
27
|
+
request_invalid: Une erreur s'est produite. Veuillez réessayer.
|
28
28
|
decidim:
|
29
29
|
forms:
|
30
30
|
admin:
|
@@ -45,6 +45,8 @@ fr:
|
|
45
45
|
actions:
|
46
46
|
back: Retour aux réponses
|
47
47
|
export: Exporter
|
48
|
+
next: Suivant ›
|
49
|
+
previous: "‹ Précédent"
|
48
50
|
show: Afficher les réponses
|
49
51
|
empty: Pas encore de réponses
|
50
52
|
export:
|
@@ -127,7 +129,7 @@ fr:
|
|
127
129
|
update: "%{user_name} a modifié le questionnaire %{resource_name}"
|
128
130
|
errors:
|
129
131
|
answer:
|
130
|
-
body:
|
132
|
+
body: ne peut être vide
|
131
133
|
images:
|
132
134
|
dimensions: "%{width} x %{height} px"
|
133
135
|
processors:
|
@@ -154,7 +156,10 @@ fr:
|
|
154
156
|
max_choices: 'Choix maximum: %{n}'
|
155
157
|
show:
|
156
158
|
answer_questionnaire:
|
157
|
-
|
159
|
+
already_have_an_account?: Vous avez déjà un compte ?
|
160
|
+
are_you_new?: Nouvel utilisateur ?
|
161
|
+
sign_in_description: Connectez-vous pour répondre à l'enquête
|
162
|
+
sign_up_description: Créez votre compte utilisateur pour répondre à l'enquête
|
158
163
|
title: Répondez au questionnaire
|
159
164
|
current_step: Étape %{step}
|
160
165
|
of_total_steps: de %{total_steps}
|
data/config/locales/gl.yml
CHANGED
@@ -58,9 +58,6 @@ gl:
|
|
58
58
|
up: Arriba
|
59
59
|
update:
|
60
60
|
invalid: Produciuse un erro ao gardar o cuestionario.
|
61
|
-
errors:
|
62
|
-
answer:
|
63
|
-
body: O corpo non pode estar en branco
|
64
61
|
images:
|
65
62
|
processors:
|
66
63
|
resize_and_pad: A imaxe axustarase para se encadrar a %{dimensions}.
|
@@ -80,7 +77,6 @@ gl:
|
|
80
77
|
max_choices: 'Opcións máximas: %{n}'
|
81
78
|
show:
|
82
79
|
answer_questionnaire:
|
83
|
-
anonymous_user_message: <a href="%{sign_in_link}">Inicie sesión coa súa conta</a> ou <a href="%{sign_up_link}">rexístrese</a> para responder ao cuestionario.
|
84
80
|
title: Responde o cuestionario
|
85
81
|
questionnaire_answered:
|
86
82
|
body: Xa contestou este cuestionario.
|
data/config/locales/hu.yml
CHANGED
@@ -16,8 +16,6 @@ hu:
|
|
16
16
|
choices:
|
17
17
|
missing: nem teljesek
|
18
18
|
too_many: túl sok
|
19
|
-
questionnaire:
|
20
|
-
request_invalid: A kérés teljesítése során hiba történt. Kérjük próbálkozzon újra
|
21
19
|
decidim:
|
22
20
|
forms:
|
23
21
|
admin:
|
@@ -30,7 +28,7 @@ hu:
|
|
30
28
|
answer_option: Válasz opció
|
31
29
|
free_text: Szabadszöveg
|
32
30
|
remove: Eltávolít
|
33
|
-
statement:
|
31
|
+
statement: Nyilatkozat
|
34
32
|
edit:
|
35
33
|
save: Mentés
|
36
34
|
form:
|
@@ -41,7 +39,7 @@ hu:
|
|
41
39
|
expand: Minden kérdés kibontása
|
42
40
|
matrix_row:
|
43
41
|
remove: Eltávolít
|
44
|
-
statement:
|
42
|
+
statement: Nyilatkozat
|
45
43
|
question:
|
46
44
|
add_answer_option: Válasz opció hozzáadása
|
47
45
|
any: Bármilyen
|
@@ -51,7 +49,7 @@ hu:
|
|
51
49
|
expand: Kibontás
|
52
50
|
question: Kérdés
|
53
51
|
remove: Eltávolít
|
54
|
-
statement:
|
52
|
+
statement: Nyilatkozat
|
55
53
|
up: Fel
|
56
54
|
title_and_description:
|
57
55
|
collapse: Összecsuk
|
@@ -64,9 +62,6 @@ hu:
|
|
64
62
|
up: Fel
|
65
63
|
update:
|
66
64
|
invalid: Hiba történt a kérdőív mentésekor.
|
67
|
-
errors:
|
68
|
-
answer:
|
69
|
-
body: A szövegtörzs nem lehet üres
|
70
65
|
images:
|
71
66
|
processors:
|
72
67
|
resize_to_fit: 'A kép át lesz méretezve erre a méretre: %{dimensions}.'
|
@@ -85,7 +80,6 @@ hu:
|
|
85
80
|
max_choices: 'Max választás: %{n}'
|
86
81
|
show:
|
87
82
|
answer_questionnaire:
|
88
|
-
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.
|
89
83
|
title: Válaszoljon a kérdőívre
|
90
84
|
questionnaire_answered:
|
91
85
|
body: Már megválaszoltad ezt a kérdőívet.
|
data/config/locales/id-ID.yml
CHANGED
@@ -48,9 +48,6 @@ id:
|
|
48
48
|
up: Naik
|
49
49
|
update:
|
50
50
|
invalid: Terjadi masalah saat menyimpan formulir.
|
51
|
-
errors:
|
52
|
-
answer:
|
53
|
-
body: Tubuh tidak boleh kosong
|
54
51
|
question_types:
|
55
52
|
long_answer: Jawaban panjang
|
56
53
|
multiple_option: Opsi berganda
|
@@ -65,7 +62,6 @@ id:
|
|
65
62
|
max_choices: 'Pilihan maksimal: %{n}'
|
66
63
|
show:
|
67
64
|
answer_questionnaire:
|
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.
|
69
65
|
title: Jawab formulirnya
|
70
66
|
questionnaire_answered:
|
71
67
|
body: Anda sudah menjawab formulir ini.
|
data/config/locales/it.yml
CHANGED
@@ -23,8 +23,6 @@ it:
|
|
23
23
|
choices:
|
24
24
|
missing: non sono completi
|
25
25
|
too_many: sono troppi
|
26
|
-
questionnaire:
|
27
|
-
request_invalid: C'è stato un errore di gestione della richiesta. Si prega di riprovare
|
28
26
|
decidim:
|
29
27
|
forms:
|
30
28
|
admin:
|
@@ -112,9 +110,6 @@ it:
|
|
112
110
|
update:
|
113
111
|
invalid: Si sono verificati errori durante il salvataggio del questionario.
|
114
112
|
success: Modulo salvato correttamente.
|
115
|
-
errors:
|
116
|
-
answer:
|
117
|
-
body: Il corpo non può essere vuoto
|
118
113
|
images:
|
119
114
|
dimensions: "%{width} x %{height} px"
|
120
115
|
question_types:
|
@@ -135,7 +130,6 @@ it:
|
|
135
130
|
max_choices: 'Scelte massime: %{n}'
|
136
131
|
show:
|
137
132
|
answer_questionnaire:
|
138
|
-
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.
|
139
133
|
title: Rispondi al questionario
|
140
134
|
current_step: Passo %{step}
|
141
135
|
of_total_steps: di %{total_steps}
|
data/config/locales/ja.yml
CHANGED
@@ -45,6 +45,8 @@ ja:
|
|
45
45
|
actions:
|
46
46
|
back: 返信に戻る
|
47
47
|
export: エクスポート
|
48
|
+
next: 次 ›
|
49
|
+
previous: "‹ 前"
|
48
50
|
show: 回答を表示
|
49
51
|
empty: まだ回答がありません
|
50
52
|
export:
|
@@ -154,7 +156,10 @@ ja:
|
|
154
156
|
max_choices: '最大選択肢: %{n}'
|
155
157
|
show:
|
156
158
|
answer_questionnaire:
|
157
|
-
|
159
|
+
already_have_an_account?: 既にアカウントをお持ちですか?
|
160
|
+
are_you_new?: 新しいユーザーですか?
|
161
|
+
sign_in_description: ログインしてアンケートに答える
|
162
|
+
sign_up_description: アンケートに答えるために参加者アカウントを作成します
|
158
163
|
title: フォームに回答
|
159
164
|
current_step: ステップ %{step}
|
160
165
|
of_total_steps: / %{total_steps}
|
data/config/locales/lb.yml
CHANGED
@@ -23,8 +23,6 @@ lb:
|
|
23
23
|
choices:
|
24
24
|
missing: sind nicht vollständig
|
25
25
|
too_many: sind zu viele
|
26
|
-
questionnaire:
|
27
|
-
request_invalid: Bei der Bearbeitung der Anfrage ist ein Fehler aufgetreten. Bitte versuchen Sie es nochmal
|
28
26
|
decidim:
|
29
27
|
forms:
|
30
28
|
admin:
|
@@ -112,9 +110,6 @@ lb:
|
|
112
110
|
update:
|
113
111
|
invalid: Beim Speichern des Fragebogens sind Fehler aufgetreten.
|
114
112
|
success: Formular erfolgreich gespeichert.
|
115
|
-
errors:
|
116
|
-
answer:
|
117
|
-
body: Körper kann nicht leer sein
|
118
113
|
images:
|
119
114
|
dimensions: "%{width} x %{height} px"
|
120
115
|
question_types:
|
@@ -135,7 +130,6 @@ lb:
|
|
135
130
|
max_choices: 'Max Auswahlmöglichkeiten: %{n}'
|
136
131
|
show:
|
137
132
|
answer_questionnaire:
|
138
|
-
anonymous_user_message: <a href="%{sign_in_link}">Melden Sie sich mit Ihrem Konto an</a> oder <a href="%{sign_up_link}">Melden Sie sich an</a> , um den Fragebogen zu beantworten.
|
139
133
|
title: Beantworten Sie den Fragebogen
|
140
134
|
current_step: Schritt %{step}
|
141
135
|
of_total_steps: von %{total_steps}
|
data/config/locales/lt.yml
CHANGED
@@ -24,7 +24,7 @@ lt:
|
|
24
24
|
missing: nepilnas - trūksta elementų
|
25
25
|
too_many: per daug
|
26
26
|
questionnaire:
|
27
|
-
request_invalid: Tvarkant prašymą įvyko klaida. Bandykite dar
|
27
|
+
request_invalid: Tvarkant prašymą įvyko klaida. Bandykite dar kartą.
|
28
28
|
decidim:
|
29
29
|
forms:
|
30
30
|
admin:
|
@@ -45,6 +45,8 @@ lt:
|
|
45
45
|
actions:
|
46
46
|
back: Grįžti į atsakymus
|
47
47
|
export: Eksportuoti
|
48
|
+
next: Kitas ›
|
49
|
+
previous: "‹ Ankst."
|
48
50
|
show: Rodyti atsakymus
|
49
51
|
empty: Atsakymų dar nėra
|
50
52
|
export:
|
@@ -154,7 +156,10 @@ lt:
|
|
154
156
|
max_choices: 'Didžiausias pasirinkčių skaičius: %{n}'
|
155
157
|
show:
|
156
158
|
answer_questionnaire:
|
157
|
-
|
159
|
+
already_have_an_account?: Jau turite paskyrą?
|
160
|
+
are_you_new?: Naujas naudotojas?
|
161
|
+
sign_in_description: Prisijunkite norėdami dalyvauti apklausoje
|
162
|
+
sign_up_description: Norėdami dalyvauti apklausoje, susikurkite dalyvio paskyrą
|
158
163
|
title: Atsakyti į formos klausimus
|
159
164
|
current_step: Žingsnis %{step}
|
160
165
|
of_total_steps: iš%{total_steps}
|
data/config/locales/lv.yml
CHANGED
@@ -16,8 +16,6 @@ lv:
|
|
16
16
|
choices:
|
17
17
|
missing: nav pabeigti
|
18
18
|
too_many: ir par daudz
|
19
|
-
questionnaire:
|
20
|
-
request_invalid: Apstrādājot pieprasījumu, radās kļūda. Lūdzu, mēģiniet vēlreiz
|
21
19
|
decidim:
|
22
20
|
forms:
|
23
21
|
admin:
|
@@ -63,9 +61,6 @@ lv:
|
|
63
61
|
up: Augšup
|
64
62
|
update:
|
65
63
|
invalid: Saglabājot veidlapu, radās problēma.
|
66
|
-
errors:
|
67
|
-
answer:
|
68
|
-
body: Pamatteksts nevar būt tukšs
|
69
64
|
images:
|
70
65
|
dimensions: "%{width} x %{height} pikseļi"
|
71
66
|
question_types:
|
@@ -85,7 +80,6 @@ lv:
|
|
85
80
|
max_choices: 'Maksimālais izvēļu skaits: %{n}'
|
86
81
|
show:
|
87
82
|
answer_questionnaire:
|
88
|
-
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ā.
|
89
83
|
title: Atbildiet uz veidlapas jautājumiem
|
90
84
|
current_step: '%{step} solis'
|
91
85
|
of_total_steps: no %{total_steps}
|
data/config/locales/nl.yml
CHANGED
@@ -18,8 +18,6 @@ nl:
|
|
18
18
|
choices:
|
19
19
|
missing: zijn niet compleet
|
20
20
|
too_many: zijn te veel
|
21
|
-
questionnaire:
|
22
|
-
request_invalid: Er is een fout opgetreden bij het verwerken van het verzoek. Probeer het opnieuw
|
23
21
|
decidim:
|
24
22
|
forms:
|
25
23
|
admin:
|
@@ -116,9 +114,6 @@ nl:
|
|
116
114
|
update:
|
117
115
|
invalid: Er zijn fouten opgetreden bij het opslaan van de vragenlijst.
|
118
116
|
success: Formulier succesvol opgeslagen.
|
119
|
-
errors:
|
120
|
-
answer:
|
121
|
-
body: Lichaam mag niet leeg zijn
|
122
117
|
images:
|
123
118
|
dimensions: "%{width} x %{height} px"
|
124
119
|
question_types:
|
@@ -139,7 +134,6 @@ nl:
|
|
139
134
|
max_choices: 'Max. Keuzes: %{n}'
|
140
135
|
show:
|
141
136
|
answer_questionnaire:
|
142
|
-
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.
|
143
137
|
title: Beantwoord de vragenlijst
|
144
138
|
current_step: Stap %{step}
|
145
139
|
of_total_steps: van %{total_steps}
|
data/config/locales/no.yml
CHANGED
@@ -23,8 +23,6 @@
|
|
23
23
|
choices:
|
24
24
|
missing: er ikke fullstendig
|
25
25
|
too_many: er for mange
|
26
|
-
questionnaire:
|
27
|
-
request_invalid: Det har oppstod en feil med håndtering av forespørselen. Prøv på nytt
|
28
26
|
decidim:
|
29
27
|
forms:
|
30
28
|
admin:
|
@@ -122,9 +120,6 @@
|
|
122
120
|
update:
|
123
121
|
invalid: Det oppstod et problem med å lagre dette skjema.
|
124
122
|
success: Skjemaet ble lagret.
|
125
|
-
errors:
|
126
|
-
answer:
|
127
|
-
body: Teksten kan ikke være blank
|
128
123
|
images:
|
129
124
|
dimensions: "%{width} x %{height} px"
|
130
125
|
question_types:
|
@@ -146,7 +141,6 @@
|
|
146
141
|
max_choices: 'Maksimum valg: %{n}'
|
147
142
|
show:
|
148
143
|
answer_questionnaire:
|
149
|
-
anonymous_user_message: <a href="%{sign_in_link}">Logg på med kontoen din</a> eller <a href="%{sign_up_link}">opprett en</a> for å svare på skjemaet.
|
150
144
|
title: Svar på skjemaet
|
151
145
|
current_step: Trinn %{step}
|
152
146
|
of_total_steps: av %{total_steps}
|
data/config/locales/pl.yml
CHANGED
@@ -24,7 +24,7 @@ pl:
|
|
24
24
|
missing: nie są kompletne
|
25
25
|
too_many: jest zbyt wiele
|
26
26
|
questionnaire:
|
27
|
-
request_invalid: Wystąpił błąd podczas
|
27
|
+
request_invalid: Wystąpił błąd podczas obsługi żądania. Spróbuj ponownie.
|
28
28
|
decidim:
|
29
29
|
forms:
|
30
30
|
admin:
|
@@ -45,6 +45,7 @@ pl:
|
|
45
45
|
actions:
|
46
46
|
back: Powrót do odpowiedzi
|
47
47
|
export: Eksportuj
|
48
|
+
next: Następne ›
|
48
49
|
show: Pokaż odpowiedzi
|
49
50
|
empty: Brak odpowiedzi
|
50
51
|
export:
|
@@ -122,17 +123,11 @@ pl:
|
|
122
123
|
update:
|
123
124
|
invalid: Podczas zapisywania formularza wystąpił błąd.
|
124
125
|
success: Formularz został zapisany.
|
125
|
-
admin_log:
|
126
|
-
questionnaire:
|
127
|
-
update: "%{user_name} zaktualizował(a) kwestionariusz %{resource_name}"
|
128
126
|
errors:
|
129
127
|
answer:
|
130
128
|
body: Treść nie może być pusta
|
131
129
|
images:
|
132
130
|
dimensions: "%{width} × %{height} px"
|
133
|
-
processors:
|
134
|
-
resize_and_pad: Rozmiar obrazu zostanie zmieniony i dopasowany do wymiarów %{dimensions}.
|
135
|
-
resize_to_fit: Rozmiar obrazu zostanie zmieniony i dopasowany do wymiarów %{dimensions}.
|
136
131
|
question_types:
|
137
132
|
files: Pliki
|
138
133
|
long_answer: Długa odpowiedź
|
@@ -154,7 +149,10 @@ pl:
|
|
154
149
|
max_choices: 'Maksymalny wybór opcji: %{n}'
|
155
150
|
show:
|
156
151
|
answer_questionnaire:
|
157
|
-
|
152
|
+
already_have_an_account?: Posiadasz już konto?
|
153
|
+
are_you_new?: Nowy użytkownik?
|
154
|
+
sign_in_description: Zaloguj się, aby wziąć udział w ankiecie
|
155
|
+
sign_up_description: Utwórz konto uczestnika, aby wziąć udział w ankiecie
|
158
156
|
title: Wypełnij formularz
|
159
157
|
current_step: Krok %{step}
|
160
158
|
of_total_steps: z %{total_steps}
|
data/config/locales/pt-BR.yml
CHANGED
@@ -23,8 +23,6 @@ pt-BR:
|
|
23
23
|
choices:
|
24
24
|
missing: não estão completos
|
25
25
|
too_many: são muitos
|
26
|
-
questionnaire:
|
27
|
-
request_invalid: Houve um erro ao lidar com a solicitação. Por favor, tente novamente
|
28
26
|
decidim:
|
29
27
|
forms:
|
30
28
|
admin:
|
@@ -80,7 +78,6 @@ pt-BR:
|
|
80
78
|
form:
|
81
79
|
add_question: Adicionar pergunta
|
82
80
|
add_separator: Adicionar separador
|
83
|
-
add_title_and_description: Adicionar título e descrição
|
84
81
|
already_answered_warning: O questionário já foi respondido por alguns usuários então você não pode modificar suas perguntas.
|
85
82
|
collapse: Recolher todas as questões
|
86
83
|
expand: Expandir todas as questões
|
@@ -110,29 +107,11 @@ pt-BR:
|
|
110
107
|
remove: Remover
|
111
108
|
separator: Separador
|
112
109
|
up: Para Cima
|
113
|
-
title_and_description:
|
114
|
-
collapse: Recolher
|
115
|
-
description: Descrição
|
116
|
-
down: Abaixo
|
117
|
-
expand: Expandir
|
118
|
-
remove: Excluir
|
119
|
-
title: Título
|
120
|
-
title_and_description: Título e descrição
|
121
|
-
up: Acima
|
122
110
|
update:
|
123
111
|
invalid: Houve erros ao salvar o questionário.
|
124
112
|
success: Formulário salvo com sucesso.
|
125
|
-
admin_log:
|
126
|
-
questionnaire:
|
127
|
-
update: "%{user_name} atualizou o questionário %{resource_name}"
|
128
|
-
errors:
|
129
|
-
answer:
|
130
|
-
body: O corpo não pode ficar em branco
|
131
113
|
images:
|
132
114
|
dimensions: "%{width} x %{height} px"
|
133
|
-
processors:
|
134
|
-
resize_and_pad: Esta imagem será redimensionada e preenchida para %{dimensions}.
|
135
|
-
resize_to_fit: Esta imagem será redimensionada para caber %{dimensions}.
|
136
115
|
question_types:
|
137
116
|
files: Arquivos
|
138
117
|
long_answer: Resposta longa
|
@@ -142,9 +121,6 @@ pt-BR:
|
|
142
121
|
short_answer: Resposta curta
|
143
122
|
single_option: Opção única
|
144
123
|
sorting: Classificação
|
145
|
-
title_and_description: Título e descrição
|
146
|
-
questionnaire_answer_presenter:
|
147
|
-
download_attachment: Baixar anexo
|
148
124
|
questionnaires:
|
149
125
|
answer:
|
150
126
|
invalid: Houve erros ao responder a pesquisa.
|
@@ -154,7 +130,6 @@ pt-BR:
|
|
154
130
|
max_choices: 'Escolhas máximas: %{n}'
|
155
131
|
show:
|
156
132
|
answer_questionnaire:
|
157
|
-
anonymous_user_message: <a href="%{sign_in_link}">Entre com sua conta</a> ou <a href="%{sign_up_link}">inscreva-se</a> para responder ao questionário.
|
158
133
|
title: Responda o questionário
|
159
134
|
current_step: Passo %{step}
|
160
135
|
of_total_steps: de %{total_steps}
|
data/config/locales/pt.yml
CHANGED
@@ -23,8 +23,6 @@ pt:
|
|
23
23
|
choices:
|
24
24
|
missing: não estão completos
|
25
25
|
too_many: são demasiados
|
26
|
-
questionnaire:
|
27
|
-
request_invalid: Ocorreu um erro ao processar o pedido. Por favor tente novamente
|
28
26
|
decidim:
|
29
27
|
forms:
|
30
28
|
admin:
|
@@ -112,9 +110,6 @@ pt:
|
|
112
110
|
update:
|
113
111
|
invalid: Ocorreu um problema ao guardar o questionário.
|
114
112
|
success: Formulário guardado com êxito
|
115
|
-
errors:
|
116
|
-
answer:
|
117
|
-
body: O corpo não pode ficar em branco
|
118
113
|
images:
|
119
114
|
dimensions: "%{width} x %{height} px"
|
120
115
|
question_types:
|
@@ -135,7 +130,6 @@ pt:
|
|
135
130
|
max_choices: 'Escolhas máximas: %{n}'
|
136
131
|
show:
|
137
132
|
answer_questionnaire:
|
138
|
-
anonymous_user_message: <a href="%{sign_in_link}">Inicie sessão com a sua conta</a> ou <a href="%{sign_up_link}">inscreva-se</a> para responder ao questionário.
|
139
133
|
title: Responda ao questionário
|
140
134
|
current_step: Passo %{step}
|
141
135
|
of_total_steps: de %{total_steps}
|