decidim-forms 0.29.1 → 0.29.3
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/forms/decidim/forms/admin/questionnaire_form.rb +2 -2
- data/app/models/decidim/forms/answer_choice.rb +2 -0
- data/app/views/decidim/forms/questionnaires/_answer.html.erb +11 -1
- data/config/initializers/wicked_pdf.rb +0 -1
- data/config/locales/ar.yml +1 -15
- data/config/locales/bg.yml +0 -41
- data/config/locales/bn-BD.yml +1 -0
- data/config/locales/bs-BA.yml +1 -0
- data/config/locales/ca-IT.yml +198 -0
- data/config/locales/ca.yml +10 -10
- data/config/locales/cs.yml +3 -14
- data/config/locales/de.yml +11 -11
- data/config/locales/el.yml +0 -40
- data/config/locales/es-MX.yml +13 -13
- data/config/locales/es-PY.yml +13 -13
- data/config/locales/es.yml +12 -12
- data/config/locales/eu.yml +13 -13
- data/config/locales/fi-plain.yml +8 -8
- data/config/locales/fi.yml +8 -8
- data/config/locales/fr-CA.yml +10 -10
- data/config/locales/fr.yml +10 -10
- data/config/locales/ga-IE.yml +0 -5
- data/config/locales/gl.yml +1 -10
- data/config/locales/hu.yml +1 -13
- data/config/locales/id-ID.yml +1 -9
- data/config/locales/it.yml +1 -29
- data/config/locales/ja.yml +7 -7
- data/config/locales/lb.yml +1 -32
- data/config/locales/lt.yml +0 -40
- data/config/locales/lv.yml +1 -14
- data/config/locales/nl.yml +0 -28
- data/config/locales/no.yml +0 -32
- data/config/locales/pl.yml +0 -42
- data/config/locales/pt-BR.yml +0 -34
- data/config/locales/pt.yml +0 -31
- data/config/locales/ro-RO.yml +15 -41
- data/config/locales/ru.yml +2 -1
- data/config/locales/sk.yml +1 -12
- data/config/locales/sl.yml +0 -7
- data/config/locales/sv.yml +0 -42
- data/config/locales/tr-TR.yml +0 -27
- data/config/locales/val-ES.yml +0 -2
- data/config/locales/zh-CN.yml +0 -27
- data/config/locales/zh-TW.yml +0 -40
- data/decidim-forms.gemspec +1 -5
- data/lib/decidim/forms/test/shared_examples/has_questionnaire.rb +26 -0
- data/lib/decidim/forms/user_answers_serializer.rb +1 -1
- data/lib/decidim/forms/version.rb +1 -1
- metadata +12 -23
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 857320c2c2499d8efac23e3ccd7aef15bbd4a06d5f43027bc551a1ceb0afcfef
|
4
|
+
data.tar.gz: 479fcd9f8d27a9bd2b57d3440ad6b7be02f82706c5a2068b1ce6d05443a6769b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f89f3496c43e45ebfb5c55acad36353d623e39fbe4ad42af1b31b4ae2770c5057780bdca2e32afc35c2907283d1e4c45d91adcfbbe5e84eddce1cd5534129388
|
7
|
+
data.tar.gz: 416bd71f0d5aea950f07792d09f12798b5ef51b3c3476c1e9f5f83ca53dcfd9e8acb455a3982f07b565c76ea63f7b3155e49b0b31def6e1ad0e12fca8406a54e
|
@@ -8,8 +8,8 @@ module Decidim
|
|
8
8
|
include TranslatableAttributes
|
9
9
|
|
10
10
|
translatable_attribute :title, String
|
11
|
-
translatable_attribute :description,
|
12
|
-
translatable_attribute :tos,
|
11
|
+
translatable_attribute :description, Decidim::Attributes::RichText
|
12
|
+
translatable_attribute :tos, Decidim::Attributes::RichText
|
13
13
|
|
14
14
|
attribute :published_at, Decidim::Attributes::TimeWithZone
|
15
15
|
attribute :questions, Array[QuestionForm]
|
@@ -17,6 +17,8 @@ module Decidim
|
|
17
17
|
optional: true
|
18
18
|
|
19
19
|
validates :matrix_row, presence: true, if: -> { answer.question.matrix? }
|
20
|
+
|
21
|
+
default_scope { left_outer_joins(:matrix_row).order(arel_table[:position].asc, Decidim::Forms::QuestionMatrixRow.arel_table[:position].asc, arel_table[:id].asc) }
|
20
22
|
end
|
21
23
|
end
|
22
24
|
end
|
@@ -29,7 +29,17 @@
|
|
29
29
|
}
|
30
30
|
label_options[:for] = nil if %w(matrix_single matrix_multiple single_option multiple_option).include?(answer.question.question_type)
|
31
31
|
%>
|
32
|
-
|
32
|
+
|
33
|
+
<%= label_tag field_id, **label_options do %>
|
34
|
+
<%= translated_attribute(answer.question.body) %>
|
35
|
+
<% if answer.question.mandatory? %>
|
36
|
+
<%= answer_form.send(:required_indicator) %>
|
37
|
+
<% end %>
|
38
|
+
<% if answer.question.max_choices %>
|
39
|
+
<%= " (#{answer.send(:max_choices_label)})" %>
|
40
|
+
<% end %>
|
41
|
+
<% end %>
|
42
|
+
|
33
43
|
<% if translated_attribute(answer.question.description).present? %>
|
34
44
|
<div class="answer-questionnaire__question-description">
|
35
45
|
<%= decidim_sanitize_editor_admin translated_attribute(answer.question.description) %>
|
@@ -19,7 +19,6 @@ WickedPdf.configure do |config|
|
|
19
19
|
# one of the wkhtmltopdf-binary family of gems.
|
20
20
|
# or
|
21
21
|
# config.exe_path = '/usr/local/bin/wkhtmltopdf',
|
22
|
-
config.exe_path = Gem.bin_path("wkhtmltopdf-binary", "wkhtmltopdf")
|
23
22
|
|
24
23
|
# Layout file to be used for all PDFs
|
25
24
|
# (but can be overridden in `render :pdf` calls)
|
data/config/locales/ar.yml
CHANGED
@@ -4,18 +4,11 @@ ar:
|
|
4
4
|
attributes:
|
5
5
|
answer:
|
6
6
|
body: إجابة
|
7
|
-
choices: الخيارات
|
8
7
|
question:
|
9
8
|
max_choices: أقصى عدد من الخيارات
|
10
9
|
question_type: نوع
|
11
10
|
questionnaire_question:
|
12
11
|
mandatory: إلزامي
|
13
|
-
errors:
|
14
|
-
models:
|
15
|
-
answer:
|
16
|
-
attributes:
|
17
|
-
choices:
|
18
|
-
missing: ليست كاملة
|
19
12
|
decidim:
|
20
13
|
forms:
|
21
14
|
admin:
|
@@ -26,7 +19,6 @@ ar:
|
|
26
19
|
questionnaires:
|
27
20
|
answer_option:
|
28
21
|
answer_option: خيار الإجابة
|
29
|
-
free_text: نص حر
|
30
22
|
remove: إزالة
|
31
23
|
statement: بيان
|
32
24
|
display_condition:
|
@@ -36,7 +28,6 @@ ar:
|
|
36
28
|
save: حفظ
|
37
29
|
form:
|
38
30
|
add_question: أضف سؤال
|
39
|
-
already_answered_warning: تمت الإجابة على النموذج من قبل بعض المستخدمين حتى لا تتمكن من تعديل أسئلته.
|
40
31
|
matrix_row:
|
41
32
|
remove: إزالة
|
42
33
|
statement: بيان
|
@@ -67,8 +58,6 @@ ar:
|
|
67
58
|
max_choices: 'خيارات ماكس: %{n}'
|
68
59
|
show:
|
69
60
|
answer_questionnaire:
|
70
|
-
already_have_an_account?: لديك حساب بالفعل؟
|
71
|
-
are_you_new?: مستخدم جديد؟
|
72
61
|
title: أجب عن النموذج
|
73
62
|
questionnaire_answered:
|
74
63
|
body: لقد أجبت بالفعل على هذا النموذج.
|
@@ -82,11 +71,8 @@ ar:
|
|
82
71
|
tos_agreement: من خلال المشاركة ، فإنك تقبل شروط الخدمة
|
83
72
|
step_navigation:
|
84
73
|
show:
|
85
|
-
are_you_sure: لا يمكن التراجع عن هذا الإجراء ولن تتمكن من تعديل إجاباتك. هل أنت واثق؟
|
86
74
|
submit: خضع
|
87
75
|
user_answers_serializer:
|
88
76
|
created_at: أجاب على
|
89
77
|
id: معرف الإجابة
|
90
|
-
|
91
|
-
unregistered: غير مُسجَّل
|
92
|
-
user_status: حالة المستخدم
|
78
|
+
question: سؤال
|
data/config/locales/bg.yml
CHANGED
@@ -4,8 +4,6 @@ bg:
|
|
4
4
|
attributes:
|
5
5
|
answer:
|
6
6
|
body: Отговор
|
7
|
-
choices: Възможности
|
8
|
-
selected_choices: Избрани възможности
|
9
7
|
question:
|
10
8
|
max_choices: Максимален брой възможности
|
11
9
|
question_type: Тип
|
@@ -14,15 +12,6 @@ bg:
|
|
14
12
|
max_characters: Ограничение на знаците (оставете 0, за неограничено)
|
15
13
|
errors:
|
16
14
|
models:
|
17
|
-
answer:
|
18
|
-
attributes:
|
19
|
-
add_documents:
|
20
|
-
needs_to_be_reattached: Необходимо е да се прикачи отново
|
21
|
-
body:
|
22
|
-
too_long: твърде дълъг
|
23
|
-
choices:
|
24
|
-
missing: не са завършени
|
25
|
-
too_many: Можете да изберете максимум %{count}.
|
26
15
|
questionnaire:
|
27
16
|
request_invalid: Възникна грешка при обработката на заявката. Моля, опитайте отново.
|
28
17
|
decidim:
|
@@ -38,24 +27,14 @@ bg:
|
|
38
27
|
show: Показване на отговорите
|
39
28
|
answer_option:
|
40
29
|
answer_option: Възможност за отговор
|
41
|
-
free_text: Свободен текст
|
42
30
|
remove: Премахни
|
43
31
|
statement: Изявление
|
44
32
|
answers:
|
45
33
|
actions:
|
46
|
-
back: Назад към отговорите
|
47
|
-
export: Експортиране
|
48
|
-
next: Следваща ›
|
49
|
-
previous: "‹ Предна"
|
50
34
|
show: Показване на отговорите
|
51
35
|
empty: Все още няма отговори
|
52
|
-
export:
|
53
|
-
answer:
|
54
|
-
title: 'Отговор № %{number}'
|
55
36
|
export_response:
|
56
37
|
title: survey_user_answers_%{token}
|
57
|
-
index:
|
58
|
-
title: "Общ брой отговори: %{total}"
|
59
38
|
show:
|
60
39
|
title: 'Отговор № %{number}'
|
61
40
|
display_condition:
|
@@ -81,14 +60,10 @@ bg:
|
|
81
60
|
title: Редактиране на въпросника
|
82
61
|
form:
|
83
62
|
add_question: Добавяне на въпрос
|
84
|
-
add_separator: Добавяне на разделител
|
85
|
-
add_title_and_description: Добавете заглавие и описание
|
86
|
-
already_answered_warning: Няколко потребители вече са попълнили въпросника, поради което не можете да промените въпросите в него.
|
87
63
|
collapse: Свиване на всички въпроси
|
88
64
|
expand: Разгъване на всички въпроси
|
89
65
|
preview: Преглед
|
90
66
|
title: Редактирайте формуляра за %{questionnaire_for}
|
91
|
-
unpublished_warning: Формулярът не е публикуван. Можете да промените въпросите в него, но така ще се изтрият текущите въпроси.
|
92
67
|
matrix_row:
|
93
68
|
matrix_row: Ред
|
94
69
|
remove: Премахни
|
@@ -127,9 +102,6 @@ bg:
|
|
127
102
|
admin_log:
|
128
103
|
questionnaire:
|
129
104
|
update: "%{user_name} актуализира въпросника %{resource_name}"
|
130
|
-
errors:
|
131
|
-
answer:
|
132
|
-
body: Основният текст не може да бъде празен
|
133
105
|
images:
|
134
106
|
dimensions: "%{width} x %{height} пиксела"
|
135
107
|
processors:
|
@@ -145,20 +117,14 @@ bg:
|
|
145
117
|
single_option: Единична опция
|
146
118
|
sorting: Сортиране
|
147
119
|
title_and_description: Заглавие и описание
|
148
|
-
questionnaire_answer_presenter:
|
149
|
-
download_attachment: Изтегляне на прикачени файлове
|
150
120
|
questionnaires:
|
151
121
|
answer:
|
152
122
|
invalid: Възникна проблем при попълването на отговорите във формуляра.
|
153
|
-
max_choices_alert: Избрани са прекалено много варианти
|
154
123
|
success: Отговорите са попълнени успешно във формуляра.
|
155
124
|
question:
|
156
125
|
max_choices: 'Максимален брой избрани варианти: %{n}'
|
157
126
|
show:
|
158
127
|
answer_questionnaire:
|
159
|
-
already_have_an_account?: Вече имате профил?
|
160
|
-
are_you_new?: Нов потребител?
|
161
|
-
sign_up_description: Създайте акаунт на участник, за да участвате в анкетата
|
162
128
|
title: Попълване на отговори във формуляра
|
163
129
|
current_step: Стъпка %{step}
|
164
130
|
empty: Все още няма конфигурирани въпроси за този формуляр.
|
@@ -180,18 +146,11 @@ bg:
|
|
180
146
|
tos_agreement: С участието си приемате Условията на ползване
|
181
147
|
step_navigation:
|
182
148
|
show:
|
183
|
-
are_you_sure: Това действие не може да се отмени и Вие не можете да редактирате отговорите си. Сигурни ли сте?
|
184
149
|
back: Назад
|
185
150
|
continue: Продължи
|
186
151
|
submit: Изпрати
|
187
152
|
user_answers_serializer:
|
188
153
|
body: Отговор
|
189
|
-
completion: Завършване
|
190
154
|
created_at: Отговорено на
|
191
155
|
id: ID на отговора
|
192
|
-
ip_hash: IP хеширане
|
193
156
|
question: Въпрос
|
194
|
-
registered: Регистриран
|
195
|
-
session_token: Идентификатор на потребителя
|
196
|
-
unregistered: Нерегистриран
|
197
|
-
user_status: Статус на потребителя
|
@@ -0,0 +1 @@
|
|
1
|
+
bn:
|
@@ -0,0 +1 @@
|
|
1
|
+
bs:
|
@@ -0,0 +1,198 @@
|
|
1
|
+
---
|
2
|
+
ca-IT:
|
3
|
+
activemodel:
|
4
|
+
attributes:
|
5
|
+
answer:
|
6
|
+
body: Resposta
|
7
|
+
choices: Opcions
|
8
|
+
selected_choices: Opcions seleccionades
|
9
|
+
question:
|
10
|
+
max_choices: Nombre màxim d'opcions
|
11
|
+
question_type: Tipus
|
12
|
+
questionnaire_question:
|
13
|
+
mandatory: Obligatori
|
14
|
+
max_characters: Límit de caràcters (deixa-ho a 0 si no hi ha límit)
|
15
|
+
errors:
|
16
|
+
models:
|
17
|
+
answer:
|
18
|
+
attributes:
|
19
|
+
add_documents:
|
20
|
+
needs_to_be_reattached: És necessari tornar a adjuntar el fitxer
|
21
|
+
body:
|
22
|
+
too_long: és massa llarg
|
23
|
+
choices:
|
24
|
+
missing: no estan completes
|
25
|
+
too_many: Pots triar un màxim de %{count} opcions.
|
26
|
+
questionnaire:
|
27
|
+
request_invalid: Hi ha hagut un problema gestionant la petició. Si us plau, torna-ho a provar.
|
28
|
+
decidim:
|
29
|
+
forms:
|
30
|
+
admin:
|
31
|
+
models:
|
32
|
+
components:
|
33
|
+
description: Descripció
|
34
|
+
tos: Termes del servei
|
35
|
+
questionnaires:
|
36
|
+
actions:
|
37
|
+
back: Tornar a les preguntes
|
38
|
+
show: Mostrar les respostes
|
39
|
+
answer_option:
|
40
|
+
answer_option: Opció de resposta
|
41
|
+
free_text: Text lliure
|
42
|
+
remove: Eliminar
|
43
|
+
statement: Declaració
|
44
|
+
answers:
|
45
|
+
actions:
|
46
|
+
back: Tornar a les respostes
|
47
|
+
export: Exportar
|
48
|
+
next: Següent ›
|
49
|
+
previous: "‹ Anterior"
|
50
|
+
show: Mostrar les respostes
|
51
|
+
empty: Encara no hi ha respostes
|
52
|
+
export:
|
53
|
+
answer:
|
54
|
+
title: 'Resposta #%{number}'
|
55
|
+
export_response:
|
56
|
+
title: survey_user_answers_%{token}
|
57
|
+
index:
|
58
|
+
title: "%{total} respostes en total"
|
59
|
+
show:
|
60
|
+
title: 'Resposta #%{number}'
|
61
|
+
display_condition:
|
62
|
+
answer_option: Opció de resposta
|
63
|
+
condition_question: Pregunta
|
64
|
+
condition_type: Condició
|
65
|
+
condition_types:
|
66
|
+
answered: Amb resposta
|
67
|
+
equal: Igual a
|
68
|
+
match: Inclou text
|
69
|
+
not_answered: No resposta
|
70
|
+
not_equal: No és igual
|
71
|
+
condition_value: Text inclòs
|
72
|
+
display_condition: Condicions de visualització
|
73
|
+
mandatory: Aquesta condició s'ha de complir sempre independentment de l'estat d'altres condicions
|
74
|
+
remove: Eliminar
|
75
|
+
save_warning: Recorda de guardar l'enquesta abans de configurar les condicions de visualitzacióó
|
76
|
+
select_answer_option: Eliminar l'opció de resposta
|
77
|
+
select_condition_question: Seleccionar una pregunta
|
78
|
+
select_condition_type: Seleccionar un tipus de condició
|
79
|
+
edit:
|
80
|
+
save: Desa
|
81
|
+
title: Editar el qüestionari
|
82
|
+
form:
|
83
|
+
add_question: Afegeix una pregunta
|
84
|
+
add_separator: Afegir separador
|
85
|
+
add_title_and_description: Afegir títol i descripció
|
86
|
+
already_answered_warning: No pots modificar les preguntes d'aquest formulari perquè algunes participants ja han respost el formulari.
|
87
|
+
collapse: Redueix totes les preguntes
|
88
|
+
expand: Expandeix totes les preguntes
|
89
|
+
preview: Previsualitzar
|
90
|
+
title: Editar formulari per %{questionnaire_for}
|
91
|
+
unpublished_warning: El formulari no està publicat. Pots modificar les preguntes, però en fer-ho s'esborraran les respostes actuals.
|
92
|
+
matrix_row:
|
93
|
+
matrix_row: Fila
|
94
|
+
remove: Elimina
|
95
|
+
statement: Declaració
|
96
|
+
question:
|
97
|
+
add_answer_option: Afegeix una opció de resposta
|
98
|
+
add_display_condition: Afegir condició de visualització
|
99
|
+
add_display_condition_info: Guardar l'enquesta per a configurar les condicions de visualització
|
100
|
+
add_matrix_row: Afegir fila
|
101
|
+
any: Cap
|
102
|
+
collapse: Redueix
|
103
|
+
description: Descripció
|
104
|
+
down: Avall
|
105
|
+
expand: Expandeix
|
106
|
+
question: Pregunta
|
107
|
+
remove: Eliminar
|
108
|
+
statement: Declaració
|
109
|
+
up: Amunt
|
110
|
+
separator:
|
111
|
+
down: Baixar
|
112
|
+
remove: Eliminar
|
113
|
+
separator: Separador
|
114
|
+
up: Pujar
|
115
|
+
title_and_description:
|
116
|
+
collapse: Replegar
|
117
|
+
description: Descripció
|
118
|
+
down: Baixar
|
119
|
+
expand: Expandir
|
120
|
+
remove: Esborrar
|
121
|
+
title: Títol
|
122
|
+
title_and_description: Títol i descripció
|
123
|
+
up: Pujar
|
124
|
+
update:
|
125
|
+
invalid: S'ha produït un error en desar el formulari.
|
126
|
+
success: Formulari desat correctament.
|
127
|
+
admin_log:
|
128
|
+
questionnaire:
|
129
|
+
update: "%{user_name} ha actualitzat el qüestionari %{resource_name}"
|
130
|
+
errors:
|
131
|
+
answer:
|
132
|
+
body: El camp no pot estar en blanc
|
133
|
+
images:
|
134
|
+
dimensions: "%{width} x %{height} px"
|
135
|
+
processors:
|
136
|
+
resize_and_pad: Aquesta imatge serà redimensionada i ajustada a %{dimensions}.
|
137
|
+
resize_to_fit: Aquesta imatge serà redimensionada per ajustar-se a %{dimensions}.
|
138
|
+
question_types:
|
139
|
+
files: Arxius
|
140
|
+
long_answer: Resposta llarga
|
141
|
+
matrix_multiple: Matriu (opció multiple)
|
142
|
+
matrix_single: Matriu (opció única)
|
143
|
+
multiple_option: Opció múltiple
|
144
|
+
short_answer: Resposta curta
|
145
|
+
single_option: Opció única
|
146
|
+
sorting: Ordenació
|
147
|
+
title_and_description: Títol i descripció
|
148
|
+
questionnaire_answer_presenter:
|
149
|
+
download_attachment: Descarregar l'arxiu adjunt
|
150
|
+
questionnaires:
|
151
|
+
answer:
|
152
|
+
invalid: S'han produït un error en respondre el formulari.
|
153
|
+
max_choices_alert: Has seleccionat massa opcions
|
154
|
+
success: Has contestat el formulari correctament.
|
155
|
+
question:
|
156
|
+
max_choices: 'Opcions màximes: %{n}'
|
157
|
+
show:
|
158
|
+
answer_questionnaire:
|
159
|
+
already_have_an_account?: Ja tens un compte?
|
160
|
+
are_you_new?: Ets una nova usuària?
|
161
|
+
sign_in_description: Inicia la teva sessió per respondre l'enquesta
|
162
|
+
sign_up_description: Crea un compte de participant per a respondre l'enquesta
|
163
|
+
title: Respon el formulari
|
164
|
+
current_step: Pas %{step}
|
165
|
+
empty: No s'ha configurat cap pregunta encara en aquest formulari.
|
166
|
+
of_total_steps: de %{total_steps}
|
167
|
+
questionnaire_answered:
|
168
|
+
body: Ja has respost a aquest formulari.
|
169
|
+
title: Ja has respost
|
170
|
+
questionnaire_closed:
|
171
|
+
body: El formulari està tancat i no es pot respondre.
|
172
|
+
title: S'ha tancat el formulari
|
173
|
+
questionnaire_for_private_users:
|
174
|
+
body: El formulari només està disponible per a participants privades
|
175
|
+
title: S'ha tancat el formulari
|
176
|
+
questionnaire_js_disabled:
|
177
|
+
body: Algunes de les característiques d'aquest formulari es deshabilitaran. Per millorar la teva experiència, si us plau, habilita JavaScript al teu navegador.
|
178
|
+
title: JavaScript està desactivat
|
179
|
+
questionnaire_not_published:
|
180
|
+
body: Aquest formulari no s'ha publicat encara.
|
181
|
+
tos_agreement: En participar acceptes els Termes i condicions d'ús
|
182
|
+
step_navigation:
|
183
|
+
show:
|
184
|
+
are_you_sure: Aquesta acció no es pot desfer i no podràs editar les respostes. Segur que vols continuar?
|
185
|
+
back: Enrere
|
186
|
+
continue: Continuar
|
187
|
+
submit: Enviar respostes
|
188
|
+
user_answers_serializer:
|
189
|
+
body: Resposta
|
190
|
+
completion: Finalització
|
191
|
+
created_at: Respost el
|
192
|
+
id: Identificador de resposta
|
193
|
+
ip_hash: Hash de l'adreça IP
|
194
|
+
question: Pregunta
|
195
|
+
registered: Registrada
|
196
|
+
session_token: Identificador d'usuària
|
197
|
+
unregistered: No registrada
|
198
|
+
user_status: Estat de la usuària
|
data/config/locales/ca.yml
CHANGED
@@ -17,11 +17,11 @@ ca:
|
|
17
17
|
answer:
|
18
18
|
attributes:
|
19
19
|
add_documents:
|
20
|
-
needs_to_be_reattached:
|
20
|
+
needs_to_be_reattached: És necessari tornar a adjuntar el fitxer
|
21
21
|
body:
|
22
22
|
too_long: és massa llarg
|
23
23
|
choices:
|
24
|
-
missing: no estan
|
24
|
+
missing: no estan completes
|
25
25
|
too_many: Pots triar un màxim de %{count} opcions.
|
26
26
|
questionnaire:
|
27
27
|
request_invalid: Hi ha hagut un problema gestionant la petició. Si us plau, torna-ho a provar.
|
@@ -39,7 +39,7 @@ ca:
|
|
39
39
|
answer_option:
|
40
40
|
answer_option: Opció de resposta
|
41
41
|
free_text: Text lliure
|
42
|
-
remove:
|
42
|
+
remove: Eliminar
|
43
43
|
statement: Declaració
|
44
44
|
answers:
|
45
45
|
actions:
|
@@ -55,7 +55,7 @@ ca:
|
|
55
55
|
export_response:
|
56
56
|
title: survey_user_answers_%{token}
|
57
57
|
index:
|
58
|
-
title: "%{total} respostes
|
58
|
+
title: "%{total} respostes en total"
|
59
59
|
show:
|
60
60
|
title: 'Resposta #%{number}'
|
61
61
|
display_condition:
|
@@ -83,12 +83,12 @@ ca:
|
|
83
83
|
add_question: Afegeix una pregunta
|
84
84
|
add_separator: Afegir separador
|
85
85
|
add_title_and_description: Afegir títol i descripció
|
86
|
-
already_answered_warning: No pots modificar les preguntes d'aquest formulari perquè
|
86
|
+
already_answered_warning: No pots modificar les preguntes d'aquest formulari perquè algunes participants ja han respost el formulari.
|
87
87
|
collapse: Redueix totes les preguntes
|
88
88
|
expand: Expandeix totes les preguntes
|
89
89
|
preview: Previsualitzar
|
90
90
|
title: Editar formulari per %{questionnaire_for}
|
91
|
-
unpublished_warning: El formulari no està publicat. Pots modificar les preguntes, però
|
91
|
+
unpublished_warning: El formulari no està publicat. Pots modificar les preguntes, però en fer-ho s'esborraran les respostes actuals.
|
92
92
|
matrix_row:
|
93
93
|
matrix_row: Fila
|
94
94
|
remove: Elimina
|
@@ -150,7 +150,7 @@ ca:
|
|
150
150
|
questionnaires:
|
151
151
|
answer:
|
152
152
|
invalid: S'han produït un error en respondre el formulari.
|
153
|
-
max_choices_alert:
|
153
|
+
max_choices_alert: Has seleccionat massa opcions
|
154
154
|
success: Has contestat el formulari correctament.
|
155
155
|
question:
|
156
156
|
max_choices: 'Opcions màximes: %{n}'
|
@@ -181,7 +181,7 @@ ca:
|
|
181
181
|
tos_agreement: En participar acceptes els Termes i condicions d'ús
|
182
182
|
step_navigation:
|
183
183
|
show:
|
184
|
-
are_you_sure: Aquesta acció no es pot desfer i no podràs editar les
|
184
|
+
are_you_sure: Aquesta acció no es pot desfer i no podràs editar les respostes. Segur que vols continuar?
|
185
185
|
back: Enrere
|
186
186
|
continue: Continuar
|
187
187
|
submit: Enviar respostes
|
@@ -190,9 +190,9 @@ ca:
|
|
190
190
|
completion: Finalització
|
191
191
|
created_at: Respost el
|
192
192
|
id: Identificador de resposta
|
193
|
-
ip_hash: Hash
|
193
|
+
ip_hash: Hash de l'adreça IP
|
194
194
|
question: Pregunta
|
195
195
|
registered: Registrada
|
196
196
|
session_token: Identificador d'usuària
|
197
197
|
unregistered: No registrada
|
198
|
-
user_status: Estat de
|
198
|
+
user_status: Estat de la usuària
|
data/config/locales/cs.yml
CHANGED
@@ -17,11 +17,11 @@ cs:
|
|
17
17
|
answer:
|
18
18
|
attributes:
|
19
19
|
add_documents:
|
20
|
-
needs_to_be_reattached:
|
20
|
+
needs_to_be_reattached: Vyžaduje být znovu připojen
|
21
21
|
body:
|
22
22
|
too_long: je příliš dlouhý
|
23
23
|
choices:
|
24
|
-
missing: nejsou
|
24
|
+
missing: nejsou kompletní
|
25
25
|
too_many: Můžete si vybrat maximálně %{count}.
|
26
26
|
questionnaire:
|
27
27
|
request_invalid: Při zpracování požadavku došlo k chybě. Zkuste to prosím znovu.
|
@@ -49,13 +49,8 @@ cs:
|
|
49
49
|
previous: "‹ Předchozí"
|
50
50
|
show: Zobrazit odpovědi
|
51
51
|
empty: Zatím žádné odpovědi
|
52
|
-
export:
|
53
|
-
answer:
|
54
|
-
title: 'Odpověď č.%{number}'
|
55
52
|
export_response:
|
56
53
|
title: survey_user_answers_%{token}
|
57
|
-
index:
|
58
|
-
title: "%{total} odpovědí celkem"
|
59
54
|
show:
|
60
55
|
title: 'Odpověď č.%{number}'
|
61
56
|
display_condition:
|
@@ -127,9 +122,6 @@ cs:
|
|
127
122
|
admin_log:
|
128
123
|
questionnaire:
|
129
124
|
update: "%{user_name} aktualizoval dotazník %{resource_name}"
|
130
|
-
errors:
|
131
|
-
answer:
|
132
|
-
body: Tělo textu nemůže být prázdné
|
133
125
|
images:
|
134
126
|
dimensions: "%{width} x %{height} px"
|
135
127
|
processors:
|
@@ -150,16 +142,13 @@ cs:
|
|
150
142
|
questionnaires:
|
151
143
|
answer:
|
152
144
|
invalid: Při odpovědi na dotazník došlo k chybám.
|
153
|
-
max_choices_alert: Je vybráno příliš mnoho možností
|
154
145
|
success: Dotazník úspěšně odpověděl.
|
155
146
|
question:
|
156
147
|
max_choices: 'Max možnosti: %{n}'
|
157
148
|
show:
|
158
149
|
answer_questionnaire:
|
159
|
-
already_have_an_account?: Již máte účet?
|
160
150
|
are_you_new?: Nový uživatel?
|
161
151
|
sign_in_description: Přihlaste se k provedení průzkumu
|
162
|
-
sign_up_description: Vytvořit uživatelský účet k provedení průzkumu
|
163
152
|
title: Odpovězte na dotazník
|
164
153
|
current_step: Krok %{step}
|
165
154
|
empty: Pro tento formulář zatím nejsou nakonfigurovány žádné otázky.
|
@@ -187,7 +176,7 @@ cs:
|
|
187
176
|
submit: Odeslat
|
188
177
|
user_answers_serializer:
|
189
178
|
body: Odpověď
|
190
|
-
completion:
|
179
|
+
completion: Dokončení
|
191
180
|
created_at: Zodpovězeno
|
192
181
|
id: ID odpovědi
|
193
182
|
ip_hash: IP Hash
|
data/config/locales/de.yml
CHANGED
@@ -4,8 +4,8 @@ de:
|
|
4
4
|
attributes:
|
5
5
|
answer:
|
6
6
|
body: Antworten
|
7
|
-
choices:
|
8
|
-
selected_choices: Ausgewählte
|
7
|
+
choices: Optionen
|
8
|
+
selected_choices: Ausgewählte Optionen
|
9
9
|
question:
|
10
10
|
max_choices: Maximale Anzahl von Auswahlmöglichkeiten
|
11
11
|
question_type: Art
|
@@ -22,7 +22,7 @@ de:
|
|
22
22
|
too_long: ist zu lang
|
23
23
|
choices:
|
24
24
|
missing: sind nicht vollständig
|
25
|
-
too_many: Sie können
|
25
|
+
too_many: Sie können maximal %{count} auswählen.
|
26
26
|
questionnaire:
|
27
27
|
request_invalid: Beim Bearbeiten der Anfrage ist ein Fehler aufgetreten. Bitte versuchen Sie es nochmal.
|
28
28
|
decidim:
|
@@ -43,7 +43,7 @@ de:
|
|
43
43
|
statement: Aussage
|
44
44
|
answers:
|
45
45
|
actions:
|
46
|
-
back: Zurück zu Antworten
|
46
|
+
back: Zurück zu den Antworten
|
47
47
|
export: Exportieren
|
48
48
|
next: Nächste ›
|
49
49
|
previous: "‹ Vorherige"
|
@@ -82,13 +82,13 @@ de:
|
|
82
82
|
form:
|
83
83
|
add_question: Frage hinzufügen
|
84
84
|
add_separator: Trennzeichen hinzufügen
|
85
|
-
add_title_and_description:
|
85
|
+
add_title_and_description: Titel und Beschreibung hinzufügen
|
86
86
|
already_answered_warning: Der Fragebogen wird bereits von einigen Benutzern beantwortet, sodass Sie die Fragen nicht ändern können.
|
87
87
|
collapse: Alle Fragen einklappen
|
88
88
|
expand: Alle Fragen ausklappen
|
89
89
|
preview: Vorschau
|
90
90
|
title: Formular für %{questionnaire_for} bearbeiten
|
91
|
-
unpublished_warning: Das Formular ist nicht
|
91
|
+
unpublished_warning: Das Formular ist nicht veröffentlicht. Sie können die Fragen ändern, aber dadurch werden die aktuellen Antworten gelöscht.
|
92
92
|
matrix_row:
|
93
93
|
matrix_row: Zeile
|
94
94
|
remove: Löschen
|
@@ -101,7 +101,7 @@ de:
|
|
101
101
|
any: Irgendein
|
102
102
|
collapse: Einklappen
|
103
103
|
description: Beschreibung
|
104
|
-
down:
|
104
|
+
down: Nach unten
|
105
105
|
expand: Ausklappen
|
106
106
|
question: Frage
|
107
107
|
remove: Löschen
|
@@ -111,7 +111,7 @@ de:
|
|
111
111
|
down: Runter
|
112
112
|
remove: Löschen
|
113
113
|
separator: Trennzeichen
|
114
|
-
up:
|
114
|
+
up: Nach oben
|
115
115
|
title_and_description:
|
116
116
|
collapse: Einklappen
|
117
117
|
description: Beschreibung
|
@@ -150,7 +150,7 @@ de:
|
|
150
150
|
questionnaires:
|
151
151
|
answer:
|
152
152
|
invalid: Bei der Beantwortung des Fragebogens sind Fehler aufgetreten.
|
153
|
-
max_choices_alert: Es
|
153
|
+
max_choices_alert: Es sind zu viele Optionen ausgewählt
|
154
154
|
success: Fragebogen erfolgreich beantwortet.
|
155
155
|
question:
|
156
156
|
max_choices: 'Max Auswahlmöglichkeiten: %{n}'
|
@@ -178,10 +178,10 @@ de:
|
|
178
178
|
title: JavaScript ist deaktiviert
|
179
179
|
questionnaire_not_published:
|
180
180
|
body: Dieses Formular ist noch nicht veröffentlicht.
|
181
|
-
tos_agreement: Mit
|
181
|
+
tos_agreement: 'Mit Ihrer Teilnahme stimmen Sie folgenden Nutzungsbedingungen zu:'
|
182
182
|
step_navigation:
|
183
183
|
show:
|
184
|
-
are_you_sure: Diese Aktion kann nicht rückgängig gemacht werden und Sie können Ihre Antworten nicht bearbeiten. Sind Sie
|
184
|
+
are_you_sure: Diese Aktion kann nicht rückgängig gemacht werden und Sie können Ihre Antworten nicht mehr bearbeiten. Sind Sie sicher?
|
185
185
|
back: Zurück
|
186
186
|
continue: Weiter
|
187
187
|
submit: einreichen
|