decidim-proposals 0.29.3 → 0.30.0.rc1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/cells/decidim/proposals/highlighted_proposals_for_component/show.erb +13 -1
- data/app/cells/decidim/proposals/highlighted_proposals_for_component_cell.rb +1 -1
- data/app/cells/decidim/proposals/participatory_text_proposal_cell.rb +1 -1
- data/app/cells/decidim/proposals/proposal_g/show.erb +13 -0
- data/app/cells/decidim/proposals/proposal_g_cell.rb +13 -0
- data/app/cells/decidim/proposals/proposal_history_cell.rb +107 -0
- data/app/cells/decidim/proposals/proposal_l/show.erb +37 -0
- data/app/cells/decidim/proposals/proposal_l_cell.rb +9 -0
- data/app/cells/decidim/proposals/proposal_metadata_cell.rb +2 -2
- data/app/cells/decidim/proposals/proposal_vote/show.erb +75 -0
- data/app/cells/decidim/proposals/proposal_vote_cell.rb +43 -0
- data/app/commands/decidim/proposals/accept_coauthorship.rb +62 -0
- data/app/commands/decidim/proposals/admin/assign_proposals_to_valuator.rb +14 -0
- data/app/commands/decidim/proposals/admin/create_proposal.rb +6 -14
- data/app/commands/decidim/proposals/admin/create_proposal_note.rb +20 -11
- data/app/commands/decidim/proposals/admin/import_proposals.rb +60 -7
- data/app/commands/decidim/proposals/admin/merge_proposals.rb +2 -2
- data/app/commands/decidim/proposals/admin/proposal_notes_methods.rb +48 -0
- data/app/commands/decidim/proposals/admin/reply_proposal_note.rb +92 -0
- data/app/commands/decidim/proposals/admin/split_proposals.rb +2 -2
- data/app/commands/decidim/proposals/admin/update_proposal.rb +10 -16
- data/app/commands/decidim/proposals/admin/update_proposal_taxonomies.rb +34 -0
- data/app/commands/decidim/proposals/cancel_coauthorship.rb +32 -0
- data/app/commands/decidim/proposals/create_collaborative_draft.rb +1 -2
- data/app/commands/decidim/proposals/create_proposal.rb +1 -2
- data/app/commands/decidim/proposals/invite_coauthor.rb +45 -0
- data/app/commands/decidim/proposals/publish_collaborative_draft.rb +1 -2
- data/app/commands/decidim/proposals/reject_coauthorship.rb +54 -0
- data/app/commands/decidim/proposals/update_collaborative_draft.rb +1 -2
- data/app/commands/decidim/proposals/update_proposal.rb +1 -2
- data/app/controllers/concerns/decidim/proposals/admin/filterable.rb +5 -1
- data/app/controllers/concerns/decidim/proposals/admin/needs_interpolations.rb +40 -0
- data/app/controllers/decidim/proposals/admin/proposal_answers_controller.rb +46 -5
- data/app/controllers/decidim/proposals/admin/proposal_notes_controller.rb +18 -0
- data/app/controllers/decidim/proposals/admin/proposals_controller.rb +41 -85
- data/app/controllers/decidim/proposals/admin/proposals_imports_controller.rb +2 -2
- data/app/controllers/decidim/proposals/collaborative_drafts_controller.rb +2 -4
- data/app/controllers/decidim/proposals/invite_coauthors_controller.rb +87 -0
- data/app/controllers/decidim/proposals/proposals_controller.rb +7 -32
- data/app/controllers/decidim/proposals/versions_controller.rb +1 -1
- data/app/events/decidim/proposals/accepted_coauthorship_event.rb +8 -0
- data/app/events/decidim/proposals/admin/proposal_assigned_to_valuator_event.rb +27 -0
- data/app/events/decidim/proposals/admin/proposal_note_created_event.rb +5 -0
- data/app/events/decidim/proposals/coauthor_accepted_invite_event.rb +49 -0
- data/app/events/decidim/proposals/coauthor_invited_event.rb +45 -0
- data/app/events/decidim/proposals/coauthor_rejected_invite_event.rb +8 -0
- data/app/events/decidim/proposals/rejected_coauthorship_event.rb +8 -0
- data/app/events/decidim/proposals/update_proposal_taxonomies_event.rb +9 -0
- data/app/forms/decidim/proposals/admin/proposal_answer_form.rb +16 -0
- data/app/forms/decidim/proposals/admin/proposal_base_form.rb +3 -31
- data/app/forms/decidim/proposals/admin/proposal_form.rb +11 -6
- data/app/forms/decidim/proposals/admin/proposals_import_form.rb +0 -5
- data/app/forms/decidim/proposals/collaborative_draft_form.rb +0 -8
- data/app/forms/decidim/proposals/proposal_form.rb +5 -32
- data/app/helpers/decidim/proposals/admin/proposal_bulk_actions_helper.rb +25 -0
- data/app/helpers/decidim/proposals/admin/proposals_helper.rb +0 -1
- data/app/helpers/decidim/proposals/application_helper.rb +23 -15
- data/app/helpers/decidim/proposals/collaborative_draft_helper.rb +7 -7
- data/app/helpers/decidim/proposals/map_helper.rb +0 -18
- data/app/helpers/decidim/proposals/proposal_votes_helper.rb +15 -2
- data/app/helpers/decidim/proposals/proposals_helper.rb +3 -1
- data/app/jobs/decidim/proposals/admin/proposal_answer_job.rb +20 -0
- data/app/models/decidim/proposals/collaborative_draft.rb +13 -3
- data/app/models/decidim/proposals/proposal.rb +71 -5
- data/app/models/decidim/proposals/proposal_note.rb +11 -0
- data/app/models/decidim/proposals/proposal_state.rb +1 -1
- data/app/packs/entrypoints/decidim_proposals.js +1 -0
- data/app/packs/entrypoints/decidim_proposals_geocoding.js +2 -0
- data/app/packs/src/decidim/proposals/admin/proposals.js +16 -1
- data/app/packs/src/decidim/proposals/exit_handler.js +73 -0
- data/app/packs/stylesheets/decidim/proposals/proposals.scss +248 -3
- data/app/permissions/decidim/proposals/admin/permissions.rb +2 -5
- data/app/permissions/decidim/proposals/permissions.rb +42 -0
- data/app/presenters/decidim/proposals/admin_log/proposal_presenter.rb +1 -1
- data/app/presenters/decidim/proposals/proposal_presenter.rb +1 -1
- data/app/queries/decidim/proposals/filtered_proposals.rb +2 -2
- data/app/queries/decidim/proposals/metrics/accepted_proposals_metric_manage.rb +2 -2
- data/app/queries/decidim/proposals/metrics/endorsements_metric_manage.rb +10 -10
- data/app/queries/decidim/proposals/metrics/proposal_followers_metric_measure.rb +4 -4
- data/app/queries/decidim/proposals/metrics/proposal_participants_metric_measure.rb +6 -6
- data/app/queries/decidim/proposals/metrics/proposals_metric_manage.rb +6 -6
- data/app/queries/decidim/proposals/metrics/votes_metric_manage.rb +6 -6
- data/app/services/decidim/proposals/proposal_builder.rb +1 -2
- data/app/views/decidim/proposals/admin/proposal_notes/_form.html.erb +3 -3
- data/app/views/decidim/proposals/admin/proposal_notes/_proposal_note.html.erb +28 -0
- data/app/views/decidim/proposals/admin/proposal_notes/_proposal_note_reply.html.erb +9 -0
- data/app/views/decidim/proposals/admin/proposal_notes/_proposal_notes.html.erb +4 -28
- data/app/views/decidim/proposals/admin/proposal_states/_form.html.erb +1 -1
- data/app/views/decidim/proposals/admin/proposals/_actions.html.erb +21 -0
- data/app/views/decidim/proposals/admin/proposals/_bulk-actions.html.erb +3 -2
- data/app/views/decidim/proposals/admin/proposals/_form.html.erb +17 -24
- data/app/views/decidim/proposals/admin/proposals/_proposal-tr.html.erb +12 -28
- data/app/views/decidim/proposals/admin/proposals/_proposals-thead.html.erb +45 -0
- data/app/views/decidim/proposals/admin/proposals/bulk_actions/_apply_answer_template.html.erb +22 -0
- data/app/views/decidim/proposals/admin/proposals/bulk_actions/_dropdown.html.erb +15 -11
- data/app/views/decidim/proposals/admin/proposals/bulk_actions/_taxonomy_change.html.erb +23 -0
- data/app/views/decidim/proposals/admin/proposals/index.html.erb +17 -48
- data/app/views/decidim/proposals/admin/proposals/manage_trash.html.erb +18 -0
- data/app/views/decidim/proposals/admin/proposals/publish_answers.js.erb +1 -1
- data/app/views/decidim/proposals/admin/proposals/show.html.erb +14 -26
- data/app/views/decidim/proposals/admin/proposals/update_attribute.js.erb +1 -1
- data/app/views/decidim/proposals/admin/proposals_imports/new.html.erb +0 -3
- data/app/views/decidim/proposals/collaborative_drafts/_collaborative_actions.html.erb +9 -0
- data/app/views/decidim/proposals/collaborative_drafts/_collaborative_draft_aside.html.erb +0 -15
- data/app/views/decidim/proposals/collaborative_drafts/_edit_form_fields.html.erb +4 -6
- data/app/views/decidim/proposals/collaborative_drafts/index.html.erb +6 -2
- data/app/views/decidim/proposals/collaborative_drafts/show.html.erb +27 -11
- data/app/views/decidim/proposals/proposal_votes/update_buttons_and_counters.js.erb +29 -9
- data/app/views/decidim/proposals/proposals/_actions.html.erb +4 -7
- data/app/views/decidim/proposals/proposals/_edit_form_fields.html.erb +17 -22
- data/app/views/decidim/proposals/proposals/_exit_modal.html.erb +17 -0
- data/app/views/decidim/proposals/proposals/_notification_alert_box.html.erb +1 -0
- data/app/views/decidim/proposals/proposals/_proposal_actions.html.erb +19 -0
- data/app/views/decidim/proposals/proposals/_proposal_aside.html.erb +9 -32
- data/app/views/decidim/proposals/proposals/_proposal_voting_rules.html.erb +33 -0
- data/app/views/decidim/proposals/proposals/_proposals.html.erb +1 -1
- data/app/views/decidim/proposals/proposals/_remaining_votes_count.html.erb +2 -2
- data/app/views/decidim/proposals/proposals/_remaining_votes_notification.html.erb +12 -0
- data/app/views/decidim/proposals/proposals/_update_proposal_voting_rules.html.erb +6 -0
- data/app/views/decidim/proposals/proposals/_vote_button.html.erb +12 -8
- data/app/views/decidim/proposals/proposals/_votes_count.html.erb +2 -1
- data/app/views/decidim/proposals/proposals/_voting_rules.html.erb +1 -7
- data/app/views/decidim/proposals/proposals/index.html.erb +3 -18
- data/app/views/decidim/proposals/proposals/index.js.erb +1 -1
- data/app/views/decidim/proposals/proposals/participatory_texts/_proposal_vote_button.html.erb +3 -1
- data/app/views/decidim/proposals/proposals/show.html.erb +35 -15
- data/config/locales/ar.yml +15 -73
- data/config/locales/bg.yml +12 -89
- data/config/locales/bs-BA.yml +2 -13
- data/config/locales/ca.yml +209 -84
- data/config/locales/cs.yml +210 -81
- data/config/locales/de.yml +213 -89
- data/config/locales/el.yml +12 -84
- data/config/locales/en.yml +206 -81
- data/config/locales/es-MX.yml +213 -88
- data/config/locales/es-PY.yml +213 -88
- data/config/locales/es.yml +214 -89
- data/config/locales/eu.yml +288 -164
- data/config/locales/fi-plain.yml +213 -87
- data/config/locales/fi.yml +213 -87
- data/config/locales/fr-CA.yml +116 -97
- data/config/locales/fr.yml +116 -97
- data/config/locales/ga-IE.yml +1 -21
- data/config/locales/gl.yml +8 -45
- data/config/locales/hu.yml +12 -68
- data/config/locales/id-ID.yml +9 -43
- data/config/locales/is-IS.yml +0 -19
- data/config/locales/it.yml +11 -77
- data/config/locales/ja.yml +165 -106
- data/config/locales/lt.yml +13 -85
- data/config/locales/lv.yml +10 -52
- data/config/locales/nl.yml +10 -59
- data/config/locales/no.yml +10 -44
- data/config/locales/pl.yml +11 -88
- data/config/locales/pt-BR.yml +9 -74
- data/config/locales/pt.yml +10 -56
- data/config/locales/ro-RO.yml +12 -72
- data/config/locales/ru.yml +0 -23
- data/config/locales/sk.yml +10 -52
- data/config/locales/sr-CS.yml +2 -14
- data/config/locales/sv.yml +127 -86
- data/config/locales/tr-TR.yml +10 -53
- data/config/locales/uk.yml +0 -23
- data/config/locales/zh-CN.yml +10 -53
- data/config/locales/zh-TW.yml +12 -86
- data/db/migrate/20171220084719_add_published_at_to_proposals.rb +1 -1
- data/db/migrate/20181016132225_add_organization_as_author.rb +1 -1
- data/db/migrate/20200120215928_move_proposal_endorsements_to_core_endorsements.rb +1 -1
- data/db/migrate/20200827154156_add_commentable_counter_cache_to_proposals.rb +3 -3
- data/db/migrate/20210310102839_add_followable_counter_cache_to_proposals.rb +1 -1
- data/db/migrate/20240110203504_create_default_proposal_states.rb +1 -1
- data/db/migrate/20240404202756_add_valuation_assignments_count_to_decidim_proposals_proposals.rb +1 -1
- data/db/migrate/20240617091140_add_email_on_assigned_proposals_to_users.rb +7 -0
- data/db/migrate/20240617170052_add_parent_relation_to_decidim_proposal_notes.rb +7 -0
- data/db/migrate/20240828103755_add_deleted_at_to_decidim_proposals_proposals.rb +8 -0
- data/decidim-proposals.gemspec +1 -1
- data/lib/decidim/api/functions/proposal_finder_helper.rb +12 -0
- data/lib/decidim/api/functions/proposal_list_helper.rb +12 -0
- data/lib/decidim/api/proposal_type.rb +17 -25
- data/lib/decidim/api/proposals_type.rb +4 -19
- data/lib/decidim/proposals/admin_engine.rb +12 -3
- data/lib/decidim/proposals/admin_filter.rb +3 -6
- data/lib/decidim/proposals/component.rb +4 -5
- data/lib/decidim/proposals/download_your_data_proposal_serializer.rb +15 -0
- data/lib/decidim/proposals/engine.rb +5 -0
- data/lib/decidim/proposals/import/proposal_creator.rb +4 -4
- data/lib/decidim/proposals/proposal_serializer.rb +12 -29
- data/lib/decidim/proposals/seeds.rb +21 -17
- data/lib/decidim/proposals/test/factories.rb +2 -1
- data/lib/decidim/proposals/version.rb +1 -1
- data/lib/decidim/proposals.rb +4 -0
- data/lib/tasks/proposals/upgrade/decidim_proposals_upgrade_tasks.rake +0 -22
- metadata +65 -34
- data/app/commands/decidim/proposals/admin/update_proposal_category.rb +0 -70
- data/app/commands/decidim/proposals/admin/update_proposal_scope.rb +0 -75
- data/app/events/decidim/proposals/admin/update_proposal_category_event.rb +0 -11
- data/app/events/decidim/proposals/admin/update_proposal_scope_event.rb +0 -11
- data/app/jobs/decidim/proposals/admin/import_proposals_job.rb +0 -91
- data/app/mailers/decidim/proposals/admin/import_proposals_mailer.rb +0 -30
- data/app/views/decidim/proposals/admin/import_proposals_mailer/notify_failure.html.erb +0 -1
- data/app/views/decidim/proposals/admin/import_proposals_mailer/notify_success.html.erb +0 -2
- data/app/views/decidim/proposals/admin/proposals/bulk_actions/_recategorize.html.erb +0 -15
- data/app/views/decidim/proposals/admin/proposals/bulk_actions/_scope-change.html.erb +0 -21
- data/app/views/decidim/proposals/collaborative_drafts/_actions.html.erb +0 -7
- data/config/locales/ca-IT.yml +0 -945
data/config/locales/pt.yml
CHANGED
@@ -5,7 +5,6 @@ pt:
|
|
5
5
|
collaborative_draft:
|
6
6
|
address: Endereço
|
7
7
|
body: Corpo
|
8
|
-
category_id: Categoria
|
9
8
|
decidim_scope_id: Âmbito
|
10
9
|
has_address: Tem endereço
|
11
10
|
scope_id: Âmbito
|
@@ -18,7 +17,6 @@ pt:
|
|
18
17
|
answered_at: Respondido em
|
19
18
|
automatic_hashtags: Hashtags adicionados automaticamente
|
20
19
|
body: Corpo
|
21
|
-
category_id: Categoria
|
22
20
|
decidim_scope_id: Âmbito
|
23
21
|
has_address: Tem endereço
|
24
22
|
scope_id: Âmbito
|
@@ -62,8 +60,6 @@ pt:
|
|
62
60
|
base:
|
63
61
|
not_official: Não são oficiais
|
64
62
|
models:
|
65
|
-
decidim/proposals/admin/update_proposal_category_event: Categoria da proposta modificada
|
66
|
-
decidim/proposals/admin/update_proposal_scope_event: Âmbito da proposta modificado
|
67
63
|
decidim/proposals/creation_enabled_event: Criação de proposta ativada
|
68
64
|
decidim/proposals/endorsing_enabled_event: Endossamento de proposta ativado
|
69
65
|
decidim/proposals/proposal_mentioned_event: Proposta mencionada
|
@@ -84,15 +80,11 @@ pt:
|
|
84
80
|
admin:
|
85
81
|
filters:
|
86
82
|
proposals:
|
87
|
-
category_id_eq:
|
88
|
-
label: Categoria
|
89
83
|
is_emendation_true:
|
90
84
|
label: Tipo
|
91
85
|
values:
|
92
86
|
'false': Propostas
|
93
87
|
'true': Revisões
|
94
|
-
scope_id_eq:
|
95
|
-
label: Âmbito
|
96
88
|
state_eq:
|
97
89
|
label: Estado
|
98
90
|
values:
|
@@ -111,7 +103,6 @@ pt:
|
|
111
103
|
actions:
|
112
104
|
amend: Modificar
|
113
105
|
comment: Comentar
|
114
|
-
create: Criar
|
115
106
|
endorse: Endossar
|
116
107
|
vote_comment: Cometário ao voto
|
117
108
|
withdraw: Retirar
|
@@ -134,7 +125,6 @@ pt:
|
|
134
125
|
random: Aleatório
|
135
126
|
recent: Mais recentes
|
136
127
|
with_more_authors: Com mais autores
|
137
|
-
geocoding_enabled: Geocoding ativado
|
138
128
|
new_proposal_body_template: Novo modelo de corpo de proposta
|
139
129
|
new_proposal_body_template_help: Pode definir o texto pré-preenchido que as novas Propostas terão
|
140
130
|
new_proposal_help_text: Novo texto de ajuda da proposta
|
@@ -142,7 +132,6 @@ pt:
|
|
142
132
|
participatory_texts_enabled: Textos participativos ativados
|
143
133
|
participatory_texts_enabled_readonly: Não é possível interagir com esta configuração caso existam propostas. Crie um novo "Componente de propostas" caso pretenda ativar esta característica ou elimine todas as propostas importadas no menu "Textos Participativos" caso pretenda desativá-la.
|
144
134
|
proposal_answering_enabled: Respostas à proposta ativadas
|
145
|
-
proposal_edit_before_minutes: As propostas podem ser editadas pelos autores antes que estes minutos passem
|
146
135
|
proposal_edit_time: Edição de proposta
|
147
136
|
proposal_edit_time_choices:
|
148
137
|
infinite: Permitir editar propostas por um limite de tempo indeterminado
|
@@ -151,8 +140,6 @@ pt:
|
|
151
140
|
proposal_limit: Limite de propostas por utilizador
|
152
141
|
proposal_wizard_step_1_help_text: Texto de ajuda do passo "Criar" do Assistente de Propostas
|
153
142
|
resources_permissions_enabled: As permissões de ações podem ser definidas para cada proposta
|
154
|
-
scope_id: Âmbito
|
155
|
-
scopes_enabled: Âmbitos activados
|
156
143
|
threshold_per_proposal: Limiar por proposta
|
157
144
|
step:
|
158
145
|
amendment_creation_enabled: Criação de modificação ativada
|
@@ -231,22 +218,14 @@ pt:
|
|
231
218
|
email_intro: A proposta "%{resource_title}" foi adicionada a "%{participatory_space_title}" que você segue.
|
232
219
|
email_outro: Recebeu esta notificação porque segue "%{participatory_space_title}". Pode deixar de receber notificações seguindo a hiperligação anterior.
|
233
220
|
email_subject: Nova proposta "%{resource_title}" adicionada a %{participatory_space_title}
|
234
|
-
proposal_update_category:
|
235
|
-
email_intro: 'Um administrador atualizou a categoria da sua proposta "%{resource_title}", verifique nesta página:'
|
236
|
-
email_subject: A categoria da proposta %{resource_title} foi atualizada
|
237
|
-
notification_title: A categoria da proposta <a href="%{resource_path}">%{resource_title}</a> foi atualizada por um administrador.
|
238
|
-
proposal_update_scope:
|
239
|
-
email_intro: 'Um administrador atualizou o âmbito da sua proposta "%{resource_title}". Consulte-o nesta página:'
|
240
|
-
email_subject: O âmbito da proposta %{resource_title} foi atualizado
|
241
|
-
notification_title: O âmbito da proposta <a href="%{resource_path}">%{resource_title}</a> foi atualizado por um administrador.
|
242
221
|
voting_enabled:
|
243
222
|
email_outro: Recebeu esta notificação porque segue %{participatory_space_title}. Pode parar de receber notificações seguindo a hiperligação anterior.
|
244
223
|
gamification:
|
245
224
|
badges:
|
246
225
|
accepted_proposals:
|
247
226
|
conditions:
|
248
|
-
|
249
|
-
|
227
|
+
- Escolha o espaço de participação do seu interesse com o envio de propostas ativado
|
228
|
+
- Tente fazer propostas que possam ser realizadas. Desta forma, estas são mais propensas a serem aceites.
|
250
229
|
description: Este distintivo é concedido quando participa ativamente em novas propostas e essas são aceites.
|
251
230
|
description_another: Este participante obteve %{score} propostas aceites.
|
252
231
|
description_own: Tem %{score} propostas aceites.
|
@@ -256,12 +235,12 @@ pt:
|
|
256
235
|
unearned_own: Ainda não recebeu alguma proposta.
|
257
236
|
proposal_votes:
|
258
237
|
conditions:
|
259
|
-
|
260
|
-
|
238
|
+
- Navegue e passe algum tempo a ler as propostas de outras pessoas
|
239
|
+
-
|
261
240
|
proposals:
|
262
241
|
conditions:
|
263
|
-
|
264
|
-
|
242
|
+
- Escolha o espaço de participação do seu interesse com o envio de propostas ativado
|
243
|
+
- Criar uma nova proposta
|
265
244
|
description: Este distintivo é concedido quando participa ativamente em novas propostas.
|
266
245
|
description_another: Este participante criou %{score} propostas.
|
267
246
|
description_own: Criou %{score} propostas.
|
@@ -281,8 +260,6 @@ pt:
|
|
281
260
|
description: Número de propostas
|
282
261
|
object: propostas
|
283
262
|
title: Propostas
|
284
|
-
votes:
|
285
|
-
title: Votos
|
286
263
|
participatory_spaces:
|
287
264
|
highlighted_proposals:
|
288
265
|
see_all: Ver todos
|
@@ -341,24 +318,19 @@ pt:
|
|
341
318
|
form:
|
342
319
|
note: Nota
|
343
320
|
submit: Submeter
|
344
|
-
leave_your_note: Deixe a sua nota
|
345
321
|
title: Notas privadas
|
346
322
|
proposals:
|
347
323
|
edit:
|
348
324
|
title: Atualizar proposta
|
349
325
|
update: Atualizar
|
350
326
|
form:
|
351
|
-
attachment_legend: "(Opcional) Adicione um anexo"
|
352
327
|
created_in_meeting: Esta proposta vem de uma reunião
|
353
|
-
delete_attachment: Apagar anexo
|
354
|
-
select_a_category: Selecione uma categoria
|
355
328
|
select_a_meeting: Selecione uma reunião
|
356
329
|
index:
|
357
330
|
actions: Ações
|
358
331
|
assign_to_valuator: Atribuir a avaliador
|
332
|
+
assign_to_valuator_button: Atribuir
|
359
333
|
cancel: Cancelar
|
360
|
-
change_category: Modificar categoria
|
361
|
-
change_scope: Modificar âmbito
|
362
334
|
merge: Junte-se a um novo
|
363
335
|
merge_button: Fundir
|
364
336
|
publish: Publicar
|
@@ -369,8 +341,8 @@ pt:
|
|
369
341
|
split_button: Dividir
|
370
342
|
title: Propostas
|
371
343
|
unassign_from_valuator: Remover atribuição ao avaliador
|
344
|
+
unassign_from_valuator_button: Remover atribuição
|
372
345
|
update: Atualizar
|
373
|
-
update_scope_button: Atualizar Âmbito
|
374
346
|
new:
|
375
347
|
create: Criar
|
376
348
|
title: Criar proposta
|
@@ -391,12 +363,6 @@ pt:
|
|
391
363
|
remove_assignment: Remover atribuição
|
392
364
|
remove_assignment_confirmation: Tem a certeza de que pretende remover o avaliador desta proposta?
|
393
365
|
valuators: Avaliadores
|
394
|
-
update_category:
|
395
|
-
invalid: 'Estas propostas já possuíam a categoria %{subject_name}: %{proposals}.'
|
396
|
-
success: 'Propostas atualizadas corretamente para a categoria %{subject_name}: %{proposals}.'
|
397
|
-
update_scope:
|
398
|
-
invalid: 'Estas propostas já possuíam o âmbito %{subject_name}: %{proposals}.'
|
399
|
-
success: 'Propostas atualizadas corretamente para o âmbito %{subject_name}: %{proposals}.'
|
400
366
|
proposals_imports:
|
401
367
|
new:
|
402
368
|
create: Importar propostas
|
@@ -405,11 +371,9 @@ pt:
|
|
405
371
|
select_states: Verifique os estados das propostas a importar
|
406
372
|
proposals_merges:
|
407
373
|
create:
|
408
|
-
invalid: 'Houve um problema ao fundir as propostas seleccionadas porque algumas delas:'
|
409
374
|
success: Fundiu corretamente as propostas em uma nova.
|
410
375
|
proposals_splits:
|
411
376
|
create:
|
412
|
-
invalid: 'Houve um problema ao dividir as propostas seleccionadas porque algumas delas:'
|
413
377
|
success: Dividiu corretamente as propostas em novas.
|
414
378
|
admin_log:
|
415
379
|
proposal:
|
@@ -460,19 +424,15 @@ pt:
|
|
460
424
|
create:
|
461
425
|
success: Rascunho colaborativo criado corretamente.
|
462
426
|
edit:
|
463
|
-
attachment_legend: "(Opcional) Adicione um anexo"
|
464
427
|
back: Retroceder
|
465
|
-
select_a_category: Por favor, selecione uma categoria
|
466
428
|
send: Enviar
|
467
429
|
title: Editar rascunho colaborativo
|
468
430
|
filters:
|
469
431
|
all: Todos
|
470
432
|
amendment: Modificações
|
471
|
-
category: Categoria
|
472
433
|
open: Abrir
|
473
434
|
published: Publicados
|
474
435
|
related_to: Relacionado com
|
475
|
-
scope: Âmbito
|
476
436
|
search: Pesquisar
|
477
437
|
state: Estado
|
478
438
|
withdrawn: Retirado
|
@@ -506,7 +466,6 @@ pt:
|
|
506
466
|
rejected_request:
|
507
467
|
error: Não foi possível rejeitá-lo como colaborador, por favor tente novamente mais tarde.
|
508
468
|
show:
|
509
|
-
edit: Editar rascunho colaborativo
|
510
469
|
final_proposal: proposta final
|
511
470
|
final_proposal_help_text: Este rascunho está terminado. Verifique a proposta final
|
512
471
|
hidden_authors_count:
|
@@ -538,14 +497,12 @@ pt:
|
|
538
497
|
models:
|
539
498
|
proposal:
|
540
499
|
fields:
|
541
|
-
category: Categoria
|
542
500
|
comments: Comentários
|
543
501
|
id: ID
|
544
502
|
notes: Notas
|
545
503
|
official_proposal: Proposta oficial
|
546
504
|
published_answer: Resposta publicada
|
547
505
|
published_at: Publicado em
|
548
|
-
scope: Âmbito
|
549
506
|
state: Estado
|
550
507
|
title: Título
|
551
508
|
valuator: Avaliador
|
@@ -561,9 +518,7 @@ pt:
|
|
561
518
|
description: As coordenadas serão actualizadas quando clicar no botão ‘pré-visualização’. No entanto, o endereço não será alterado.
|
562
519
|
instructions: Pode mover o ponto no mapa.
|
563
520
|
edit:
|
564
|
-
attachment_legend: "(Opcional) Adicione um anexo"
|
565
521
|
back: Voltar
|
566
|
-
select_a_category: Por favor selecione uma categoria
|
567
522
|
send: Enviar
|
568
523
|
title: Editar proposta
|
569
524
|
edit_draft:
|
@@ -574,7 +529,6 @@ pt:
|
|
574
529
|
activity: A minha atividade
|
575
530
|
all: Todos
|
576
531
|
amendment_type: Tipo
|
577
|
-
category: Categoria
|
578
532
|
my_proposals: As minhas propostas
|
579
533
|
origin: Origem
|
580
534
|
related_to: Relacionado com
|
@@ -616,7 +570,6 @@ pt:
|
|
616
570
|
show:
|
617
571
|
answer: Responder
|
618
572
|
changes_at_title: Modificação a "%{title}"
|
619
|
-
edit_proposal: Editar proposta
|
620
573
|
estimated_cost: Custo estimado
|
621
574
|
hidden_endorsers_count:
|
622
575
|
one: e mais %{count} pessoa
|
@@ -631,12 +584,13 @@ pt:
|
|
631
584
|
proposal_in_evaluation_reason: Esta proposta está sob avaliação
|
632
585
|
proposal_rejected_reason: 'Esta proposta foi rejeitada porque:'
|
633
586
|
withdraw_confirmation_html: Tem a certeza de que deseja retirar esta proposta?<br><br><strong>Esta ação não pode ser cancelada!</strong>
|
634
|
-
withdraw_proposal: Retirar proposta
|
635
587
|
update:
|
636
588
|
title: Atualizar proposta
|
637
589
|
voting_rules:
|
638
590
|
proposal_limit:
|
639
591
|
description: Pode criar até %{limit} propostas.
|
592
|
+
vote_limit:
|
593
|
+
description: Pode votar até %{limit} propostas.
|
640
594
|
wizard_aside:
|
641
595
|
back: Retroceder
|
642
596
|
back_from_step_1: Retroceder para as propostas
|
data/config/locales/ro-RO.yml
CHANGED
@@ -5,7 +5,6 @@ ro:
|
|
5
5
|
collaborative_draft:
|
6
6
|
address: Adresa
|
7
7
|
body: Conținut
|
8
|
-
category_id: Categorie
|
9
8
|
decidim_scope_id: Domeniu de interes
|
10
9
|
has_address: Are adresă
|
11
10
|
scope_id: Domeniu de interes
|
@@ -18,7 +17,6 @@ ro:
|
|
18
17
|
answered_at: Răspuns la
|
19
18
|
automatic_hashtags: Hashtag-uri adăugate automat
|
20
19
|
body: Conținut
|
21
|
-
category_id: Categorie
|
22
20
|
decidim_scope_id: Domeniu de interes
|
23
21
|
has_address: Are adresă
|
24
22
|
scope_id: Domeniu de interes
|
@@ -62,8 +60,6 @@ ro:
|
|
62
60
|
base:
|
63
61
|
not_official: Nu sunt oficiale
|
64
62
|
models:
|
65
|
-
decidim/proposals/admin/update_proposal_category_event: Categorie de propunere modificată
|
66
|
-
decidim/proposals/admin/update_proposal_scope_event: Domeniu de interes al propunerii modificat
|
67
63
|
decidim/proposals/creation_enabled_event: Crearea de propuneri este activată
|
68
64
|
decidim/proposals/endorsing_enabled_event: Susținerea propunerii este activată
|
69
65
|
decidim/proposals/proposal_mentioned_event: Propunere menționată
|
@@ -87,15 +83,11 @@ ro:
|
|
87
83
|
admin:
|
88
84
|
filters:
|
89
85
|
proposals:
|
90
|
-
category_id_eq:
|
91
|
-
label: Categorie
|
92
86
|
is_emendation_true:
|
93
87
|
label: Tip
|
94
88
|
values:
|
95
89
|
'false': Propuneri
|
96
90
|
'true': Amendamente
|
97
|
-
scope_id_eq:
|
98
|
-
label: Domeniu de interes
|
99
91
|
state_eq:
|
100
92
|
label: Stadiu
|
101
93
|
values:
|
@@ -114,7 +106,6 @@ ro:
|
|
114
106
|
actions:
|
115
107
|
amend: Trimite un amendament
|
116
108
|
comment: Comentează
|
117
|
-
create: Creează
|
118
109
|
endorse: Susține
|
119
110
|
vote_comment: Votează comentariul
|
120
111
|
withdraw: Retrage
|
@@ -137,7 +128,6 @@ ro:
|
|
137
128
|
random: Aleator
|
138
129
|
recent: Recente
|
139
130
|
with_more_authors: Cu mai mulți autori
|
140
|
-
geocoding_enabled: Geocodarea a fost activată
|
141
131
|
new_proposal_body_template: Model de conținut pentru o propunere nouă
|
142
132
|
new_proposal_body_template_help: Poți defini textul precompletat pe care îl vor avea noile propuneri
|
143
133
|
new_proposal_help_text: Text de ajutor pentru propunere nouă
|
@@ -145,7 +135,6 @@ ro:
|
|
145
135
|
participatory_texts_enabled: Modulul texte participative a fost activat
|
146
136
|
participatory_texts_enabled_readonly: Nu se poate interacționa cu această setare dacă există deja propuneri. Te rugăm, creează o nouă componenta 'Propuneri' dacă dorești să activezi această funcționalitate. Dacă vrei să o dezactivezi mergi în meniul `Texte participative`și renunță la toate propunerile importate.
|
147
137
|
proposal_answering_enabled: Modulul de răspuns pentru propuneri a fost activat
|
148
|
-
proposal_edit_before_minutes: Propunerile pot fi editate de către autori până la expirarea termenului definit mai jos în minute
|
149
138
|
proposal_edit_time: Durata editării propunerii
|
150
139
|
proposal_edit_time_choices:
|
151
140
|
infinite: Permite editarea propunerilor pentru o perioadă infinită de timp
|
@@ -155,8 +144,6 @@ ro:
|
|
155
144
|
proposal_wizard_step_1_help_text: Text de ajutor pentru pasul „Creează” din crearea unei propuneri
|
156
145
|
proposal_wizard_step_2_help_text: Text de ajutor pentru pasul „Publică” din crearea unei propuneri
|
157
146
|
resources_permissions_enabled: Pentru fiecare propunere pot fi setate drepturi pentru acțiuni
|
158
|
-
scope_id: Domeniu de interes
|
159
|
-
scopes_enabled: Domeniile de interes au fost activate
|
160
147
|
threshold_per_proposal: Prag per propunere
|
161
148
|
step:
|
162
149
|
amendment_creation_enabled: Crearea de amendamente a fost activată
|
@@ -234,22 +221,14 @@ ro:
|
|
234
221
|
email_intro: Propunerea "%{resource_title}" a fost adăugată la "%{participatory_space_title}", spațiu participativ pe care îl urmărești.
|
235
222
|
email_outro: Ai primit această notificare deoarece urmărești „%{participatory_space_title}”. Poți anula aceste notificări de la link-ul anterior.
|
236
223
|
email_subject: O nouă propunere "%{resource_title}" a fost adăugată la %{participatory_space_title}
|
237
|
-
proposal_update_category:
|
238
|
-
email_intro: 'Un administrator a actualizat categoria propunerii tale „%{resource_title}", verifică modificarea în această pagină:'
|
239
|
-
email_subject: Categoria propunerii %{resource_title} a fost actualizată
|
240
|
-
notification_title: Categoria propunerii <a href="%{resource_path}">%{resource_title}</a> a fost actualizată de către un administrator.
|
241
|
-
proposal_update_scope:
|
242
|
-
email_intro: 'Un administrator a actualizat domeniul de interes al propunerii tale „%{resource_title}”, verifică modificarea în această pagină:'
|
243
|
-
email_subject: Domeniul de interes al propunerii %{resource_title} a fost actualizat
|
244
|
-
notification_title: Domeniul de interes al propunerii <a href="%{resource_path}">%{resource_title}</a> a fost actualizat de către un administrator.
|
245
224
|
voting_enabled:
|
246
225
|
email_outro: Ai primit această notificare deoarece urmărești %{participatory_space_title}. Poți anula aceste notificări de la link-ul anterior.
|
247
226
|
gamification:
|
248
227
|
badges:
|
249
228
|
accepted_proposals:
|
250
229
|
conditions:
|
251
|
-
|
252
|
-
|
230
|
+
- Alege spațiul de participare unde e activă opțiunea de a trimite propuneri conform domeniului tău de interes
|
231
|
+
- Încercă să faci propuneri care pot fi implementate. Astfel crește probabilitatea ca acestea să fie acceptate.
|
253
232
|
description: Această insignă este acordată atunci când participi activ cu noi propuneri, iar acestea sunt acceptate.
|
254
233
|
description_another: Acest participant are %{score} propuneri acceptate.
|
255
234
|
description_own: Ai %{score} propuneri acceptate.
|
@@ -259,12 +238,12 @@ ro:
|
|
259
238
|
unearned_own: Încă nu ai nicio propunere acceptată.
|
260
239
|
proposal_votes:
|
261
240
|
conditions:
|
262
|
-
|
263
|
-
|
241
|
+
- Răsfoiește paginile și petrece puțin timp citind propunerile altora
|
242
|
+
-
|
264
243
|
proposals:
|
265
244
|
conditions:
|
266
|
-
|
267
|
-
|
245
|
+
- Alege spațiul de participare unde e activă opțiunea de a trimite propuneri conform domeniului tău de interes
|
246
|
+
- Creează o nouă propunere
|
268
247
|
description: Această insignă este acordată atunci când participi activ cu noi propuneri.
|
269
248
|
description_another: Acest participant a creat %{score} propuneri.
|
270
249
|
description_own: Ai creat %{score} propuneri.
|
@@ -284,8 +263,6 @@ ro:
|
|
284
263
|
description: Număr de propuneri
|
285
264
|
object: propuneri
|
286
265
|
title: Propuneri
|
287
|
-
votes:
|
288
|
-
title: Voturi
|
289
266
|
participatory_spaces:
|
290
267
|
highlighted_proposals:
|
291
268
|
see_all: Afișează toate propunerile
|
@@ -304,17 +281,6 @@ ro:
|
|
304
281
|
exports:
|
305
282
|
proposal_comments: Comentarii
|
306
283
|
proposals: Propuneri
|
307
|
-
import_proposals_mailer:
|
308
|
-
notify_failure:
|
309
|
-
body: A apărut o problemă la importul propunerilor din componenta %{origin_component_name} în componenta %{target_component_name}.
|
310
|
-
subject: A apărut o problemă la importul propunerilor
|
311
|
-
notify_success:
|
312
|
-
added_proposals:
|
313
|
-
one: A fost importată o propunere.
|
314
|
-
few: "Au fost importate %{count} propuneri."
|
315
|
-
other: "Au fost importate %{count} propuneri."
|
316
|
-
body: Propuneri importate cu succes din componenta %{origin_component_name} în componenta %{target_component_name}. Puteți analiza rezultatele în interfața de administrare.
|
317
|
-
subject: Propunerile au fost importate cu succes
|
318
284
|
imports:
|
319
285
|
label:
|
320
286
|
answers: Importați răspunsuri dintr-un fișier
|
@@ -368,25 +334,19 @@ ro:
|
|
368
334
|
form:
|
369
335
|
note: Notă
|
370
336
|
submit: Trimite
|
371
|
-
leave_your_note: Lasă-ți nota
|
372
337
|
title: Note private
|
373
338
|
proposals:
|
374
339
|
edit:
|
375
340
|
title: Actualizează propunerea
|
376
341
|
update: Actualizează
|
377
342
|
form:
|
378
|
-
attachment_legend: "(Opțional) Adaugă un atașament"
|
379
343
|
created_in_meeting: Această propunere provine dintr-o întâlnire
|
380
|
-
delete_attachment: Șterge atașamentul
|
381
|
-
select_a_category: Selectează o categorie
|
382
344
|
select_a_meeting: Selectează o întâlnire
|
383
345
|
index:
|
384
346
|
actions: Acțiuni
|
385
347
|
assign_to_valuator: Atribuie evaluatorului
|
386
|
-
assign_to_valuator_button:
|
348
|
+
assign_to_valuator_button: Atribuie
|
387
349
|
cancel: Anulează
|
388
|
-
change_category: Schimbă categoria
|
389
|
-
change_scope: Schimbă domeniul
|
390
350
|
merge: Combină într-o propunere nouă
|
391
351
|
merge_button: Combină
|
392
352
|
publish: Publică
|
@@ -398,9 +358,8 @@ ro:
|
|
398
358
|
split_button: Împarte
|
399
359
|
title: Propuneri
|
400
360
|
unassign_from_valuator: Atribuire către evaluator anulată
|
401
|
-
unassign_from_valuator_button:
|
361
|
+
unassign_from_valuator_button: Neatribuit
|
402
362
|
update: Actualizează
|
403
|
-
update_scope_button: Actualizează domeniu
|
404
363
|
new:
|
405
364
|
create: Creează
|
406
365
|
title: Creează propunere
|
@@ -422,15 +381,7 @@ ro:
|
|
422
381
|
remove_assignment: Elimină atribuirea
|
423
382
|
remove_assignment_confirmation: Sigur dorești să elimini evaluatorul din această propunere?
|
424
383
|
valuators: Evaluatori
|
425
|
-
update_category:
|
426
|
-
invalid: 'Aceste propuneri aveau deja categoria %{subject_name} : %{proposals}.'
|
427
|
-
success: 'Propuneri actualizate cu succes la categoria %{subject_name} : %{proposals}.'
|
428
|
-
update_scope:
|
429
|
-
invalid: 'Aceste propuneri aveau deja domeniul %{subject_name} : %{proposals}.'
|
430
|
-
success: 'Propuneri actualizate cu succes în domeniul %{subject_name} : %{proposals}.'
|
431
384
|
proposals_imports:
|
432
|
-
create:
|
433
|
-
success: Procesul de import a început. Vă vom anunța de îndată ce s-a terminat.
|
434
385
|
new:
|
435
386
|
create: Importă propuneri
|
436
387
|
no_components: Nu există alte componente de propunere în acest spațiu participativ din care să se importe propunerile.
|
@@ -438,11 +389,9 @@ ro:
|
|
438
389
|
select_states: Verifică stadiul propunerilor de importat
|
439
390
|
proposals_merges:
|
440
391
|
create:
|
441
|
-
invalid: 'A apărut o problemă la combinarea propunerilor selectate, deoarece unele dintre ele:'
|
442
392
|
success: Propunerile au fost combinate cu succes într-o propunere nouă.
|
443
393
|
proposals_splits:
|
444
394
|
create:
|
445
|
-
invalid: 'A apărut o problemă la împărțirea propunerilor selectate, deoarece unele dintre ele:'
|
446
395
|
success: Propunerile au fost împărțite cu succes în altele noi.
|
447
396
|
admin_log:
|
448
397
|
proposal:
|
@@ -494,19 +443,15 @@ ro:
|
|
494
443
|
create:
|
495
444
|
success: Ciorna colaborativă a fost creată cu succes.
|
496
445
|
edit:
|
497
|
-
attachment_legend: "(Opțional) Adaugă un atașament"
|
498
446
|
back: Înapoi
|
499
|
-
select_a_category: Te rugăm selectează o categorie
|
500
447
|
send: Trimite
|
501
448
|
title: Editează ciorna colaborativă
|
502
449
|
filters:
|
503
450
|
all: Toate
|
504
451
|
amendment: Amendamente
|
505
|
-
category: Categorie
|
506
452
|
open: Deschise
|
507
453
|
published: Publicate
|
508
454
|
related_to: Asociate cu
|
509
|
-
scope: Domeniu de interes
|
510
455
|
search: Caută
|
511
456
|
state: Stadiu
|
512
457
|
withdrawn: Retrase
|
@@ -541,7 +486,6 @@ ro:
|
|
541
486
|
rejected_request:
|
542
487
|
error: Nu ai putut fi respins drept colaborator, te rugăm să încerci din nou mai târziu.
|
543
488
|
show:
|
544
|
-
edit: Editează ciorna colaborativă
|
545
489
|
final_proposal: propunere finală
|
546
490
|
final_proposal_help_text: Această ciornă este finalizată. Verifică propunerea finală
|
547
491
|
hidden_authors_count:
|
@@ -574,14 +518,12 @@ ro:
|
|
574
518
|
models:
|
575
519
|
proposal:
|
576
520
|
fields:
|
577
|
-
category: Categorie
|
578
521
|
comments: Comentarii
|
579
522
|
id: ID
|
580
523
|
notes: Note
|
581
524
|
official_proposal: Propunere oficială
|
582
525
|
published_answer: Răspuns publicat
|
583
526
|
published_at: Publicat la
|
584
|
-
scope: Domeniu de interes
|
585
527
|
state: Stadiu
|
586
528
|
title: Titlu
|
587
529
|
valuator: Evaluator
|
@@ -597,9 +539,7 @@ ro:
|
|
597
539
|
description: Coordonatele vor fi actualizate când apeși pe butonul 'previzualizează'. Cu toate acestea, adresa nu se schimbă.
|
598
540
|
instructions: Poți muta punctul de pe hartă.
|
599
541
|
edit:
|
600
|
-
attachment_legend: "(Opțional) Adaugă un atașament"
|
601
542
|
back: Înapoi
|
602
|
-
select_a_category: Te rugăm selectează o categorie
|
603
543
|
send: Trimite
|
604
544
|
title: Editează propunerea
|
605
545
|
edit_draft:
|
@@ -612,7 +552,6 @@ ro:
|
|
612
552
|
activity: Activitatea mea
|
613
553
|
all: Toate
|
614
554
|
amendment_type: Tip
|
615
|
-
category: Categorie
|
616
555
|
my_proposals: Propunerile mele
|
617
556
|
origin: Origine
|
618
557
|
related_to: Asociate cu
|
@@ -633,7 +572,6 @@ ro:
|
|
633
572
|
text_banner: Vizualizezi lista de propuneri retrase de autorii lor. %{go_back_link}.
|
634
573
|
new:
|
635
574
|
send: Continuă
|
636
|
-
title: Creați o nouă propunere
|
637
575
|
orders:
|
638
576
|
label: 'Ordonează propunerile după:'
|
639
577
|
most_commented: Cele mai comentate
|
@@ -657,7 +595,6 @@ ro:
|
|
657
595
|
show:
|
658
596
|
answer: Răspuns
|
659
597
|
changes_at_title: Amendament pentru „%{title}”
|
660
|
-
edit_proposal: Editează propunerea
|
661
598
|
estimated_cost: Cost estimat
|
662
599
|
hidden_endorsers_count:
|
663
600
|
one: și încă %{count} persoană
|
@@ -673,12 +610,15 @@ ro:
|
|
673
610
|
proposal_in_evaluation_reason: Această propunere este în curs de evaluare
|
674
611
|
proposal_rejected_reason: 'Această propunere a fost respinsă deoarece:'
|
675
612
|
withdraw_confirmation_html: Sigur dorești să retragi această propunere?<br><br><strong>Această acțiune nu poate fi anulată!</strong>
|
676
|
-
withdraw_proposal: Retrage propunerea
|
677
613
|
update:
|
678
614
|
title: Actualizează propunerea
|
615
|
+
vote_button:
|
616
|
+
votes_blocked: Votați
|
679
617
|
voting_rules:
|
680
618
|
proposal_limit:
|
681
619
|
description: Poți crea până la %{limit} propuneri.
|
620
|
+
vote_limit:
|
621
|
+
description: Poți vota până la %{limit} propuneri.
|
682
622
|
wizard_aside:
|
683
623
|
back: Înapoi
|
684
624
|
back_from_step_1: Înapoi la propuneri
|
data/config/locales/ru.yml
CHANGED
@@ -6,7 +6,6 @@ ru:
|
|
6
6
|
answer: Ответить
|
7
7
|
answered_at: 'Получен ответ:'
|
8
8
|
body: Основной текст
|
9
|
-
category_id: Категория
|
10
9
|
has_address: Имеет адрес
|
11
10
|
scope_id: Охват
|
12
11
|
state: Cостояние
|
@@ -25,7 +24,6 @@ ru:
|
|
25
24
|
add_photos:
|
26
25
|
needs_to_be_reattached: Необходимо заново прикрепить
|
27
26
|
models:
|
28
|
-
decidim/proposals/admin/update_proposal_category_event: Категория предложения изменена
|
29
27
|
decidim/proposals/creation_enabled_event: Включена возможность создания предложений
|
30
28
|
decidim/proposals/endorsing_enabled_event: Включена возможность поддерживать предложения
|
31
29
|
decidim/proposals/proposal_mentioned_event: Предложение упомянуто
|
@@ -52,7 +50,6 @@ ru:
|
|
52
50
|
components:
|
53
51
|
proposals:
|
54
52
|
actions:
|
55
|
-
create: Внести
|
56
53
|
endorse: Поддержать
|
57
54
|
vote: Голосовать
|
58
55
|
withdraw: Отозвать
|
@@ -62,11 +59,9 @@ ru:
|
|
62
59
|
announcement: Объявление
|
63
60
|
attachments_allowed: Разрешить прикрпеленные файлы
|
64
61
|
comments_enabled: Комментарии включены
|
65
|
-
geocoding_enabled: Геокодирование включено
|
66
62
|
new_proposal_help_text: Подсказки по созданию нового предложения
|
67
63
|
official_proposals_enabled: Включена возможность выдвигать служебные предложения
|
68
64
|
proposal_answering_enabled: Включена возможность отвечать на предложения
|
69
|
-
proposal_edit_before_minutes: Предложения могут быть отредактированы авторами до того, как пройдет столько минут
|
70
65
|
proposal_length: Предельная длина основного текста предложения
|
71
66
|
proposal_limit: Предельное количество предложений от одного участника
|
72
67
|
proposal_wizard_step_1_help_text: Справка мастера предложений о шаге "Создать"
|
@@ -100,19 +95,10 @@ ru:
|
|
100
95
|
proposal_published_for_space:
|
101
96
|
email_intro: В "%{participatory_space_title}", за которым вы следите, добавлено предложение "%{resource_title}".
|
102
97
|
email_outro: Вы получили это уведомление, потому что вы следите за «%{participatory_space_title}». Вы можете перестать за ним следить, перейдя по приведенной выше ссылке.
|
103
|
-
proposal_update_category:
|
104
|
-
email_intro: 'Администратор обновил категорию вашего предложения «%{resource_title}», проверьте её:'
|
105
|
-
email_subject: Обновлена категория предложений %{resource_title}
|
106
|
-
notification_title: Категория предложений <a href="%{resource_path}">%{resource_title}</a> была обновлена администратором.
|
107
98
|
voting_enabled:
|
108
99
|
email_intro: 'Теперь вы можете голосовать по предложениям в %{participatory_space_title}! Начните со страницы:'
|
109
100
|
email_outro: Вы получили это уведомление, потому что вы следите за «%{participatory_space_title}». Вы можете отписаться от уведомлений, перейдя по приведенной выше ссылке.
|
110
101
|
notification_title: Теперь в <a href="%{participatory_space_url}">%{participatory_space_title}</a> появилась возможность <a href="%{resource_path}">голосовать по предложениям</a>
|
111
|
-
metrics:
|
112
|
-
proposals:
|
113
|
-
title: Предложения
|
114
|
-
votes:
|
115
|
-
title: Голоса
|
116
102
|
proposals:
|
117
103
|
actions:
|
118
104
|
import: Позаимствовать из другой составляющей
|
@@ -134,15 +120,11 @@ ru:
|
|
134
120
|
form:
|
135
121
|
note: Примечание
|
136
122
|
submit: Отправить
|
137
|
-
leave_your_note: Оставьте свое примечание
|
138
123
|
title: Частные примечания
|
139
124
|
proposals:
|
140
|
-
form:
|
141
|
-
select_a_category: Выберите категорию
|
142
125
|
index:
|
143
126
|
actions: Действия
|
144
127
|
cancel: Отменить
|
145
|
-
change_category: Изменить категорию
|
146
128
|
selected: выбранные
|
147
129
|
title: Предложения
|
148
130
|
update: Обновить
|
@@ -191,9 +173,7 @@ ru:
|
|
191
173
|
votes: Голоса
|
192
174
|
proposals:
|
193
175
|
edit:
|
194
|
-
attachment_legend: "(Необязательно) Добавить вложение"
|
195
176
|
back: Вернуться
|
196
|
-
select_a_category: Пожалуйста, выберите категорию
|
197
177
|
send: Отправить
|
198
178
|
title: Редактировать предложение
|
199
179
|
edit_draft:
|
@@ -202,7 +182,6 @@ ru:
|
|
202
182
|
send: Предпросмотр
|
203
183
|
filters:
|
204
184
|
all: Все
|
205
|
-
category: Категория
|
206
185
|
origin: Источник
|
207
186
|
related_to: Связано с
|
208
187
|
search: Поиск
|
@@ -232,13 +211,11 @@ ru:
|
|
232
211
|
proposal_accepted_reason: 'Это предложение было принято, поскольку:'
|
233
212
|
proposal_in_evaluation_reason: Это предложение сейчас рассматривается
|
234
213
|
proposal_rejected_reason: 'Это предложение было отклонено, поскольку:'
|
235
|
-
withdraw_proposal: Снять предложение
|
236
214
|
vote_button:
|
237
215
|
already_voted: Уже проголосовали
|
238
216
|
maximum_votes_reached: Достигнуто предельное количество голосов
|
239
217
|
no_votes_remaining: Больше не осталось голосов
|
240
218
|
vote: Голосовать
|
241
|
-
votes_blocked: Голосование отключено
|
242
219
|
voting_rules:
|
243
220
|
proposal_limit:
|
244
221
|
description: Вы можете создать до %{limit} предложений.
|