decidim-forms 0.30.9 → 0.31.0.rc1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +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 +15 -15
- 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 +18 -16
- 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 -11
- 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 +47 -66
- 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 +8 -29
- 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_response_presenter.rb +89 -0
- 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 +25 -15
- data/app/views/decidim/forms/admin/questionnaires/_questions_form.html.erb +14 -21
- data/app/views/decidim/forms/admin/questionnaires/_response_option.html.erb +45 -0
- data/app/views/decidim/forms/admin/questionnaires/_response_option_template.html.erb +7 -0
- data/app/views/decidim/forms/admin/questionnaires/_separator.html.erb +15 -5
- data/app/views/decidim/forms/admin/questionnaires/_title_and_description.html.erb +15 -5
- 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 +24 -22
- 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 +2 -22
- data/config/locales/bg.yml +10 -36
- data/config/locales/ca-IT.yml +82 -76
- data/config/locales/ca.yml +82 -76
- data/config/locales/cs.yml +79 -76
- data/config/locales/de.yml +80 -74
- data/config/locales/el.yml +10 -36
- data/config/locales/en.yml +90 -84
- data/config/locales/es-MX.yml +82 -76
- data/config/locales/es-PY.yml +82 -76
- data/config/locales/es.yml +80 -74
- data/config/locales/eu.yml +83 -77
- data/config/locales/fi-plain.yml +78 -72
- data/config/locales/fi.yml +76 -70
- data/config/locales/fr-CA.yml +72 -70
- data/config/locales/fr.yml +72 -70
- data/config/locales/ga-IE.yml +4 -7
- data/config/locales/gl.yml +4 -22
- data/config/locales/hu.yml +4 -22
- data/config/locales/id-ID.yml +2 -22
- data/config/locales/it.yml +8 -40
- data/config/locales/ja.yml +87 -81
- data/config/locales/lb.yml +8 -36
- data/config/locales/lt.yml +10 -36
- data/config/locales/lv.yml +4 -22
- data/config/locales/nl.yml +10 -36
- data/config/locales/no.yml +10 -36
- data/config/locales/pl.yml +10 -36
- data/config/locales/pt-BR.yml +10 -120
- data/config/locales/pt.yml +8 -36
- data/config/locales/ro-RO.yml +30 -52
- data/config/locales/ru.yml +2 -9
- data/config/locales/sk.yml +3 -183
- data/config/locales/sl.yml +0 -5
- data/config/locales/sv.yml +77 -70
- data/config/locales/tr-TR.yml +8 -36
- data/config/locales/val-ES.yml +2 -0
- data/config/locales/zh-CN.yml +8 -36
- data/config/locales/zh-TW.yml +10 -36
- 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 +35 -43
- 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 +178 -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 -90
- 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 +43 -140
- data/lib/decidim/forms/test/shared_examples/manage_questionnaires.rb +4 -6
- 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 +48 -46
- 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/presenters/decidim/forms/admin/questionnaire_answer_presenter.rb +0 -112
- data/app/queries/decidim/forms/questionnaire_user_answers.rb +0 -32
- data/app/views/decidim/forms/admin/questionnaires/_answer_option.html.erb +0 -45
- 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 -60
- 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/test/shared_examples/manage_questionnaires/draggable_behavior.rb +0 -47
- 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/pt-BR.yml
CHANGED
|
@@ -2,111 +2,39 @@
|
|
|
2
2
|
pt-BR:
|
|
3
3
|
activemodel:
|
|
4
4
|
attributes:
|
|
5
|
-
answer:
|
|
6
|
-
body: Responda
|
|
7
|
-
choices: Escolhas
|
|
8
|
-
selected_choices: Escolhas selecionadas
|
|
9
5
|
question:
|
|
10
6
|
max_choices: Número máximo de escolhas
|
|
11
7
|
question_type: Tipo
|
|
12
8
|
questionnaire_question:
|
|
13
9
|
mandatory: Obrigatório
|
|
14
10
|
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: é muito longo
|
|
23
|
-
choices:
|
|
24
|
-
missing: não estão completos
|
|
25
|
-
too_many: Você pode escolher um máximo de %{count}.
|
|
26
|
-
questionnaire:
|
|
27
|
-
request_invalid: Houve um problema ao lidar com a solicitação. Por favor, tente novamente.
|
|
28
11
|
decidim:
|
|
29
|
-
download_your_data:
|
|
30
|
-
help:
|
|
31
|
-
answers:
|
|
32
|
-
answer: A resposta para a pergunta
|
|
33
|
-
id: O identificador único da resposta
|
|
34
|
-
question: A pergunta respondida
|
|
35
|
-
questionnaire: O questionário respondido
|
|
36
|
-
user: O usuário que respondeu o questionário
|
|
37
|
-
show:
|
|
38
|
-
answers: Exportação de respostas
|
|
39
|
-
survey_user_answers: Respostas do usuário
|
|
40
12
|
forms:
|
|
41
13
|
admin:
|
|
42
14
|
models:
|
|
43
15
|
components:
|
|
44
|
-
allow_answers: Permitir respostas
|
|
45
|
-
allow_editing_answers: Permitir que usuários registrados editem as próprias respostas de pesquisa
|
|
46
|
-
allow_unregistered: Permitir que usuários não registrados respondam à pesquisa
|
|
47
|
-
allow_unregistered_help: Se estiver ativo, não será necessário fazer login para responder à pesquisa. Isso pode levar a dados imprecisos ou não confiáveis e tornará o sistema mais vulnerável a ataques automatizados. Use com cautela! Lembre-se de que um participante pode responder à mesma pesquisa várias vezes, usando navegadores diferentes ou o recurso de "navegação anônima" do seu navegador.
|
|
48
|
-
announcement: Anúncio
|
|
49
|
-
clean_after_publish: Excluir respostas ao publicar a pesquisa
|
|
50
16
|
description: Descrição
|
|
51
|
-
ends_at: Respostas aceitas até
|
|
52
|
-
ends_at_help: Deixe em branco para nenhuma data específica
|
|
53
|
-
starts_at: Respostas aceitas de
|
|
54
|
-
starts_at_help: Deixe em branco para nenhuma data específica
|
|
55
17
|
tos: Termos de serviço
|
|
56
18
|
questionnaires:
|
|
57
19
|
actions:
|
|
58
|
-
back: Voltar
|
|
59
|
-
publish_answers: Publicar respostas
|
|
60
|
-
show: Mostrar respostas
|
|
61
|
-
answer_option:
|
|
62
|
-
answer_option: Opção de resposta
|
|
63
|
-
free_text: Texto livre
|
|
64
|
-
remove: Remover
|
|
65
|
-
statement: Declaração
|
|
66
|
-
answers:
|
|
67
|
-
actions:
|
|
68
|
-
back: Voltar para respostas
|
|
69
|
-
export: Exportar
|
|
70
|
-
next: Próximo ›
|
|
71
|
-
previous: "‹ Anterior"
|
|
72
|
-
show: Mostrar respostas
|
|
73
|
-
empty: Ainda não há respostas
|
|
74
|
-
export:
|
|
75
|
-
answer:
|
|
76
|
-
title: 'Resposta #%{number}'
|
|
77
|
-
export_response:
|
|
78
|
-
title: pesquisa_respostas_do_usuário_%{token}
|
|
79
|
-
index:
|
|
80
|
-
title: "Total de respostas de %{total}"
|
|
81
|
-
show:
|
|
82
|
-
title: 'Resposta #%{number}'
|
|
20
|
+
back: Voltar às perguntas
|
|
83
21
|
display_condition:
|
|
84
|
-
answer_option: Opção de resposta
|
|
85
22
|
condition_question: Questão
|
|
86
23
|
condition_type: Condição
|
|
87
24
|
condition_types:
|
|
88
|
-
answered: Respondido
|
|
89
25
|
equal: Igual
|
|
90
26
|
match: Incluir texto
|
|
91
|
-
not_answered: Não respondido
|
|
92
27
|
not_equal: Diferente
|
|
93
28
|
condition_value: Incluir texto
|
|
94
29
|
display_condition: Exibir condição
|
|
95
30
|
mandatory: Esta condição precisa ser sempre satisfeita independentemente do status de outras condições
|
|
96
31
|
remove: Remover
|
|
97
32
|
save_warning: Lembre-se de salvar o formulário antes de configurar condições de exibição
|
|
98
|
-
select_answer_option: Selecionar opção de resposta
|
|
99
33
|
select_condition_question: Selecione uma pergunta
|
|
100
34
|
select_condition_type: Selecione um tipo de condição
|
|
101
35
|
edit:
|
|
102
36
|
save: Salvar
|
|
103
37
|
title: Editar questionário
|
|
104
|
-
edit_questions:
|
|
105
|
-
add_question: Adicionar pergunta
|
|
106
|
-
add_separator: Adicionar separador
|
|
107
|
-
add_title_and_description: Adicionar título e descrição
|
|
108
|
-
save: Salvar
|
|
109
|
-
title: Perguntas
|
|
110
38
|
form:
|
|
111
39
|
add_question: Adicionar pergunta
|
|
112
40
|
collapse: Recolher todas as questões
|
|
@@ -118,44 +46,41 @@ pt-BR:
|
|
|
118
46
|
remove: Remover
|
|
119
47
|
statement: Declaração
|
|
120
48
|
question:
|
|
121
|
-
add_answer_option: Adicionar opção de resposta
|
|
122
49
|
add_display_condition: Adicionar condição de exibição
|
|
123
50
|
add_display_condition_info: Salve o formulário para configurar condições de exibição
|
|
124
51
|
add_matrix_row: Adicionar linha
|
|
125
52
|
any: Qualquer
|
|
126
53
|
collapse: Recolher
|
|
127
54
|
description: Descrição
|
|
55
|
+
down: Baixa
|
|
128
56
|
expand: Expandir
|
|
129
57
|
question: Questão
|
|
130
58
|
remove: Remover
|
|
131
59
|
statement: Declaração
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
success: Perguntas da pesquisa salvas com sucesso.
|
|
60
|
+
up: Acima
|
|
61
|
+
responses:
|
|
62
|
+
actions:
|
|
63
|
+
show: Mostrar respostas
|
|
137
64
|
separator:
|
|
65
|
+
down: Para Baixo
|
|
138
66
|
remove: Remover
|
|
139
67
|
separator: Separador
|
|
68
|
+
up: Para Cima
|
|
140
69
|
title_and_description:
|
|
141
70
|
collapse: Recolher
|
|
142
71
|
description: Descrição
|
|
72
|
+
down: Abaixo
|
|
143
73
|
expand: Expandir
|
|
144
74
|
remove: Excluir
|
|
145
75
|
title: Título
|
|
146
76
|
title_and_description: Título e descrição
|
|
77
|
+
up: Acima
|
|
147
78
|
update:
|
|
148
79
|
invalid: Houve erros ao salvar o questionário.
|
|
149
80
|
success: Formulário salvo com sucesso.
|
|
150
81
|
admin_log:
|
|
151
|
-
question:
|
|
152
|
-
publish_answers: "%{user_name} publicou as respostas da pergunta %{resource_name} no espaço %{space_name}"
|
|
153
|
-
unpublish_answers: "%{user_name} não publicou as respostas da pergunta %{resource_name} no espaço %{space_name}"
|
|
154
82
|
questionnaire:
|
|
155
83
|
update: "%{user_name} atualizou o questionário %{resource_name}"
|
|
156
|
-
errors:
|
|
157
|
-
answer:
|
|
158
|
-
body: Corpo não pode estar em branco
|
|
159
84
|
images:
|
|
160
85
|
dimensions: "%{width} x %{height} px"
|
|
161
86
|
processors:
|
|
@@ -163,41 +88,19 @@ pt-BR:
|
|
|
163
88
|
resize_to_fit: Esta imagem será redimensionada para caber %{dimensions}.
|
|
164
89
|
question_types:
|
|
165
90
|
files: Arquivos
|
|
166
|
-
long_answer: Resposta longa
|
|
167
91
|
matrix_multiple: Matriz (Múltipla opção)
|
|
168
92
|
matrix_single: Matriz (opção única)
|
|
169
93
|
multiple_option: Opção múltipla
|
|
170
|
-
short_answer: Resposta curta
|
|
171
94
|
single_option: Opção única
|
|
172
95
|
sorting: Classificação
|
|
173
96
|
title_and_description: Título e descrição
|
|
174
|
-
questionnaire_answer_presenter:
|
|
175
|
-
download_attachment: Baixar anexo
|
|
176
97
|
questionnaires:
|
|
177
|
-
answer:
|
|
178
|
-
invalid: Houve erros ao responder a pesquisa.
|
|
179
|
-
max_choices_alert: Há muitas opções selecionadas
|
|
180
|
-
success: Questionário respondido com sucesso.
|
|
181
98
|
question:
|
|
182
99
|
max_choices: 'Escolhas máximas: %{n}'
|
|
183
100
|
show:
|
|
184
|
-
answer_questionnaire:
|
|
185
|
-
already_have_an_account?: Já tem uma conta?
|
|
186
|
-
are_you_new?: Usuário novo?
|
|
187
|
-
sign_in_description: Faça ‘login’ para participar da pesquisa
|
|
188
|
-
sign_up_description: Crie uma conta de participante para responder à pesquisa
|
|
189
|
-
title: Responda o questionário
|
|
190
101
|
current_step: Passo %{step}
|
|
191
|
-
empty: Nenhuma pergunta configurada para este formulário ainda.
|
|
192
102
|
of_total_steps: de %{total_steps}
|
|
193
|
-
questionnaire_answered:
|
|
194
|
-
body: Você já respondeu esta pesquisa.
|
|
195
|
-
title: Já respondido
|
|
196
|
-
questionnaire_answered_edit:
|
|
197
|
-
body: Você já respondeu a este formulário. %{link}
|
|
198
|
-
edit: Editar suas respostas
|
|
199
103
|
questionnaire_closed:
|
|
200
|
-
body: O questionário está fechado e não pode ser respondido.
|
|
201
104
|
title: Questionário fechado
|
|
202
105
|
questionnaire_for_private_users:
|
|
203
106
|
body: O questionário está disponível apenas para usuários particulares
|
|
@@ -210,19 +113,6 @@ pt-BR:
|
|
|
210
113
|
tos_agreement: Ao participar você aceita seus Termos de Serviço
|
|
211
114
|
step_navigation:
|
|
212
115
|
show:
|
|
213
|
-
are_you_sure_edit_guest: Se você quiser ser capaz de editar suas respostas depois, então você precisa entrar ou criar uma conta.
|
|
214
116
|
back: Voltar
|
|
215
117
|
continue: Continuar
|
|
216
|
-
disallowed: Você não tem permissão para editar suas respostas.
|
|
217
118
|
submit: Enviar
|
|
218
|
-
user_answers_serializer:
|
|
219
|
-
body: Resposta
|
|
220
|
-
completion: Conclusão
|
|
221
|
-
created_at: Respondido em
|
|
222
|
-
id: ID da resposta
|
|
223
|
-
ip_hash: IP 'Hash'
|
|
224
|
-
question: Questão
|
|
225
|
-
registered: Registrado
|
|
226
|
-
session_token: Identificador do usuário
|
|
227
|
-
unregistered: Não registrado
|
|
228
|
-
user_status: '''Status'' do usuário'
|
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
|
|
@@ -19,35 +17,19 @@ pt:
|
|
|
19
17
|
tos: Termos de serviço
|
|
20
18
|
questionnaires:
|
|
21
19
|
actions:
|
|
22
|
-
|
|
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}'
|
|
20
|
+
back: Retroceder às perguntas
|
|
35
21
|
display_condition:
|
|
36
|
-
answer_option: Opção de resposta
|
|
37
22
|
condition_question: Pergunta
|
|
38
23
|
condition_type: Condição
|
|
39
24
|
condition_types:
|
|
40
|
-
answered: Respondido
|
|
41
25
|
equal: Igual
|
|
42
26
|
match: Inclui texto
|
|
43
|
-
not_answered: Não respondido
|
|
44
27
|
not_equal: Diferente
|
|
45
28
|
condition_value: Incluiu texto
|
|
46
29
|
display_condition: Exibir condição
|
|
47
30
|
mandatory: Esta condição precisa de ser sempre satisfeita independentemente do estado das outras condições
|
|
48
31
|
remove: Remover
|
|
49
32
|
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
33
|
select_condition_question: Selecionar uma pergunta
|
|
52
34
|
select_condition_type: Selecionar um tipo de condição
|
|
53
35
|
edit:
|
|
@@ -64,20 +46,26 @@ pt:
|
|
|
64
46
|
remove: Remover
|
|
65
47
|
statement: Declaração
|
|
66
48
|
question:
|
|
67
|
-
add_answer_option: Adicionar opção de resposta
|
|
68
49
|
add_display_condition: Adicionar condição de exibição
|
|
69
50
|
add_display_condition_info: Guarde o formulário para configurar as condições de exibição
|
|
70
51
|
add_matrix_row: Adicionar linha
|
|
71
52
|
any: Qualquer
|
|
72
53
|
collapse: Colapsar
|
|
73
54
|
description: Descrição
|
|
55
|
+
down: Abaixo
|
|
74
56
|
expand: Expandir
|
|
75
57
|
question: Questão
|
|
76
58
|
remove: Remover
|
|
77
59
|
statement: Declaração
|
|
60
|
+
up: Acima
|
|
61
|
+
responses:
|
|
62
|
+
actions:
|
|
63
|
+
show: Mostrar respostas
|
|
78
64
|
separator:
|
|
65
|
+
down: Abaixo
|
|
79
66
|
remove: Remover
|
|
80
67
|
separator: Separador
|
|
68
|
+
up: Acima
|
|
81
69
|
update:
|
|
82
70
|
invalid: Ocorreu um problema ao guardar o questionário.
|
|
83
71
|
success: Formulário guardado com êxito
|
|
@@ -85,29 +73,18 @@ pt:
|
|
|
85
73
|
dimensions: "%{width} x %{height} px"
|
|
86
74
|
question_types:
|
|
87
75
|
files: Ficheiros
|
|
88
|
-
long_answer: Resposta longa
|
|
89
76
|
matrix_multiple: Matriz (Escolha múltipla)
|
|
90
77
|
matrix_single: Matriz (Escolha única)
|
|
91
78
|
multiple_option: Escolha múltipla
|
|
92
|
-
short_answer: Resposta curta
|
|
93
79
|
single_option: Escolha única
|
|
94
80
|
sorting: Ordenação
|
|
95
81
|
questionnaires:
|
|
96
|
-
answer:
|
|
97
|
-
invalid: Ocorreu um problema ao responder ao questionário.
|
|
98
|
-
success: Questionário respondido corretamente.
|
|
99
82
|
question:
|
|
100
83
|
max_choices: 'Escolhas máximas: %{n}'
|
|
101
84
|
show:
|
|
102
|
-
answer_questionnaire:
|
|
103
|
-
title: Responda ao questionário
|
|
104
85
|
current_step: Passo %{step}
|
|
105
86
|
of_total_steps: de %{total_steps}
|
|
106
|
-
questionnaire_answered:
|
|
107
|
-
body: Já respondeu a este questionário.
|
|
108
|
-
title: Já respondido
|
|
109
87
|
questionnaire_closed:
|
|
110
|
-
body: O questionário está encerrado e não pode ser respondido.
|
|
111
88
|
title: Questionário encerrado
|
|
112
89
|
questionnaire_for_private_users:
|
|
113
90
|
body: O questionário está disponível apenas para utilizadores privados
|
|
@@ -123,8 +100,3 @@ pt:
|
|
|
123
100
|
back: Retroceder
|
|
124
101
|
continue: Continuar
|
|
125
102
|
submit: Submeter
|
|
126
|
-
user_answers_serializer:
|
|
127
|
-
body: Responder
|
|
128
|
-
created_at: Respondido em
|
|
129
|
-
id: ID da resposta
|
|
130
|
-
question: Questão
|
data/config/locales/ro-RO.yml
CHANGED
|
@@ -2,19 +2,19 @@
|
|
|
2
2
|
ro:
|
|
3
3
|
activemodel:
|
|
4
4
|
attributes:
|
|
5
|
-
answer:
|
|
6
|
-
body: Răspuns
|
|
7
|
-
choices: Opțiuni
|
|
8
|
-
selected_choices: Opțiuni selectate
|
|
9
5
|
question:
|
|
10
6
|
max_choices: Numărul maxim de opțiuni
|
|
11
7
|
question_type: Tip
|
|
12
8
|
questionnaire_question:
|
|
13
9
|
mandatory: Obligatoriu
|
|
14
10
|
max_characters: Limita de caractere (lăsați 0 dacă nu este nicio limită)
|
|
11
|
+
response:
|
|
12
|
+
body: Răspuns
|
|
13
|
+
choices: Opțiuni
|
|
14
|
+
selected_choices: Opțiuni selectate
|
|
15
15
|
errors:
|
|
16
16
|
models:
|
|
17
|
-
|
|
17
|
+
response:
|
|
18
18
|
attributes:
|
|
19
19
|
body:
|
|
20
20
|
too_long: este prea lung
|
|
@@ -25,45 +25,27 @@ ro:
|
|
|
25
25
|
admin:
|
|
26
26
|
models:
|
|
27
27
|
components:
|
|
28
|
-
|
|
28
|
+
allow_responses: Permiteți răspunsurile
|
|
29
29
|
description: Descriere
|
|
30
|
+
ends_at: Răspunsuri acceptate până la
|
|
31
|
+
starts_at: Răspunsuri acceptate de la
|
|
30
32
|
tos: Termenii serviciului
|
|
31
33
|
questionnaires:
|
|
32
34
|
actions:
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
answer_option: Opțiune de răspuns
|
|
36
|
-
free_text: Text liber
|
|
37
|
-
remove: Eliminați
|
|
38
|
-
statement: Declarație
|
|
39
|
-
answers:
|
|
40
|
-
actions:
|
|
41
|
-
back: Înapoi la răspunsuri
|
|
42
|
-
export: Exportați
|
|
43
|
-
next: Următoarea ›
|
|
44
|
-
previous: "‹ Anterioara"
|
|
45
|
-
show: Afișați răspunsurile
|
|
46
|
-
empty: Niciun răspuns încă
|
|
47
|
-
export_response:
|
|
48
|
-
title: survey_user_answers_%{token}
|
|
49
|
-
show:
|
|
50
|
-
title: 'Răspuns #%{number}'
|
|
35
|
+
back: Înapoi la întrebări
|
|
36
|
+
show: Răspunsuri
|
|
51
37
|
display_condition:
|
|
52
|
-
answer_option: Opțiune de răspuns
|
|
53
38
|
condition_question: Întrebare
|
|
54
39
|
condition_type: Condiție
|
|
55
40
|
condition_types:
|
|
56
|
-
answered: Răspunse
|
|
57
41
|
equal: Egal
|
|
58
42
|
match: Include textul
|
|
59
|
-
not_answered: Fără răspuns
|
|
60
43
|
not_equal: Nu este egal cu
|
|
61
44
|
condition_value: Text inclus
|
|
62
45
|
display_condition: Afișează condiția
|
|
63
46
|
mandatory: Această condiție trebuie îndeplinită întotdeauna indiferent de stadiul altor condiții
|
|
64
47
|
remove: Elimină
|
|
65
48
|
save_warning: Ține minte să salvezi chestionarul înainte de configurarea condiţiilor de afişare
|
|
66
|
-
select_answer_option: Selectați opțiunea de răspuns
|
|
67
49
|
select_condition_question: Selectează o întrebare
|
|
68
50
|
select_condition_type: Selectați un tip de condiție
|
|
69
51
|
edit:
|
|
@@ -80,27 +62,45 @@ ro:
|
|
|
80
62
|
remove: Eliminați
|
|
81
63
|
statement: Declarație
|
|
82
64
|
question:
|
|
83
|
-
add_answer_option: Adaugă opțiune de răspuns
|
|
84
65
|
add_display_condition: Adaugă condiție de afișare
|
|
85
66
|
add_display_condition_info: Salvează formularul pentru a configura condițiile de afișare
|
|
86
67
|
add_matrix_row: Adaugați rând
|
|
87
68
|
any: Oricare
|
|
88
69
|
collapse: Restrângeți
|
|
89
70
|
description: Descriere
|
|
71
|
+
down: Mergi în jos
|
|
90
72
|
expand: Extindeți
|
|
91
73
|
question: Întrebare
|
|
92
74
|
remove: Eliminați
|
|
93
75
|
statement: Declarație
|
|
76
|
+
up: Mergi în sus
|
|
77
|
+
response_option:
|
|
78
|
+
free_text: Text liber
|
|
79
|
+
remove: Eliminați
|
|
80
|
+
response_option: Opțiune de răspuns
|
|
81
|
+
statement: Declarație
|
|
82
|
+
responses:
|
|
83
|
+
actions:
|
|
84
|
+
back: Înapoi la răspunsuri
|
|
85
|
+
export: Exportați
|
|
86
|
+
next: Următoarea ›
|
|
87
|
+
previous: "‹ Anterioara"
|
|
88
|
+
show: Afișați răspunsurile
|
|
89
|
+
empty: Nu există răspunsuri încă
|
|
94
90
|
separator:
|
|
91
|
+
down: Mergi în jos
|
|
95
92
|
remove: Elimină
|
|
96
93
|
separator: Separator
|
|
94
|
+
up: Mergi în sus
|
|
97
95
|
title_and_description:
|
|
98
96
|
collapse: Restrângeți
|
|
99
97
|
description: Descriere
|
|
98
|
+
down: Mergi în jos
|
|
100
99
|
expand: Extindeți
|
|
101
100
|
remove: Șterge
|
|
102
101
|
title: Titlu
|
|
103
102
|
title_and_description: Titlu și descriere
|
|
103
|
+
up: Mergi în sus
|
|
104
104
|
update:
|
|
105
105
|
invalid: A apărut o eroare la salvarea chestionarului.
|
|
106
106
|
success: Chestionarul a fost salvat cu succes.
|
|
@@ -114,38 +114,24 @@ ro:
|
|
|
114
114
|
resize_to_fit: Această imagine va fi redimensionată pentru a se potrivi cu %{dimensions}.
|
|
115
115
|
question_types:
|
|
116
116
|
files: Fișiere
|
|
117
|
-
long_answer: Răspuns lung
|
|
118
117
|
matrix_multiple: Matrice (mai multe opțiuni)
|
|
119
118
|
matrix_single: Matrice (opțiune unică)
|
|
120
119
|
multiple_option: Mai multe opțiuni
|
|
121
|
-
short_answer: Răspuns scurt
|
|
122
120
|
single_option: Opțiune unică
|
|
123
121
|
sorting: Sortare
|
|
124
122
|
title_and_description: Titlu și descriere
|
|
125
123
|
questionnaires:
|
|
126
|
-
answer:
|
|
127
|
-
invalid: A apărut o problemă la completarea chestionarului.
|
|
128
|
-
success: Chestionarul a fost completat cu succes.
|
|
129
124
|
question:
|
|
130
125
|
max_choices: 'Număr maxim de alegeri: %{n}'
|
|
131
126
|
show:
|
|
132
|
-
answer_questionnaire:
|
|
133
|
-
title: Completați formularul
|
|
134
127
|
current_step: Pasul %{step}
|
|
135
128
|
empty: Nicio întrebare configurată pentru acest formular încă.
|
|
136
129
|
of_total_steps: din %{total_steps}
|
|
137
|
-
questionnaire_answered:
|
|
138
|
-
body: Ai completat deja la acest chestionar.
|
|
139
|
-
title: Un răspuns a fost deja trimis
|
|
140
|
-
questionnaire_answered_edit:
|
|
141
|
-
body: Ați răspuns deja la acest sondaj. %{link}
|
|
142
|
-
edit: Modificați răspunsurile
|
|
143
130
|
questionnaire_closed:
|
|
144
|
-
body: Chestionarul este închis și nu mai poate fi completat.
|
|
145
131
|
title: Formular închis
|
|
146
132
|
questionnaire_for_private_users:
|
|
147
133
|
body: Chestionarul este disponibil doar pentru utilizatorii privați
|
|
148
|
-
title:
|
|
134
|
+
title: Chestionar închis
|
|
149
135
|
questionnaire_js_disabled:
|
|
150
136
|
body: Unele dintre funcționalitățile acestui chestionar vor fi dezactivate. Pentru a îți îmbunătăți experiența, te rugăm să activezi JavaScript în browser-ul tău.
|
|
151
137
|
title: JavaScript este dezactivat
|
|
@@ -154,14 +140,6 @@ ro:
|
|
|
154
140
|
tos_agreement: Prin participare accepți Termenii și condițiile sale de utilizare
|
|
155
141
|
step_navigation:
|
|
156
142
|
show:
|
|
157
|
-
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.
|
|
158
|
-
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?
|
|
159
143
|
back: Înapoi
|
|
160
144
|
continue: Continuă
|
|
161
|
-
disallowed: Nu aveți permisiunea să vă modificați răspunsurile.
|
|
162
145
|
submit: Trimite
|
|
163
|
-
user_answers_serializer:
|
|
164
|
-
body: Răspuns
|
|
165
|
-
created_at: Răspuns completat la
|
|
166
|
-
id: ID răspuns
|
|
167
|
-
question: Întrebare
|
data/config/locales/ru.yml
CHANGED
|
@@ -8,9 +8,6 @@ ru:
|
|
|
8
8
|
description: Описание
|
|
9
9
|
tos: Условия участия
|
|
10
10
|
questionnaires:
|
|
11
|
-
answer_option:
|
|
12
|
-
answer_option: Вариант ответа
|
|
13
|
-
remove: Удалить
|
|
14
11
|
edit:
|
|
15
12
|
save: Сохранить
|
|
16
13
|
form:
|
|
@@ -18,20 +15,18 @@ ru:
|
|
|
18
15
|
matrix_row:
|
|
19
16
|
remove: Удалить
|
|
20
17
|
question:
|
|
21
|
-
add_answer_option: Добавить вариант ответа
|
|
22
18
|
any: Любые
|
|
19
|
+
down: Вниз
|
|
23
20
|
question: Вопрос
|
|
24
21
|
remove: Удалить
|
|
22
|
+
up: Вверх
|
|
25
23
|
update:
|
|
26
24
|
invalid: При попытке сохранить форму произошли ошибки.
|
|
27
25
|
question_types:
|
|
28
|
-
long_answer: Длинный ответ
|
|
29
26
|
multiple_option: Несколько вариантов
|
|
30
27
|
single_option: Единственный вариант
|
|
31
28
|
questionnaires:
|
|
32
29
|
show:
|
|
33
|
-
questionnaire_answered:
|
|
34
|
-
title: Уже отвечено
|
|
35
30
|
questionnaire_closed:
|
|
36
31
|
title: Форма закрыта
|
|
37
32
|
questionnaire_for_private_users:
|
|
@@ -40,5 +35,3 @@ ru:
|
|
|
40
35
|
step_navigation:
|
|
41
36
|
show:
|
|
42
37
|
submit: Отправить
|
|
43
|
-
user_answers_serializer:
|
|
44
|
-
question: Вопрос
|