decidim-proposals 0.10.1 → 0.11.0.pre1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +2 -2
- data/app/assets/javascripts/decidim/proposals/add_proposal.js.es6 +3 -3
- data/app/assets/javascripts/decidim/proposals/admin/proposals.es6 +6 -7
- data/app/assets/javascripts/decidim/proposals/identity_selector_dialog.js.es6 +17 -17
- data/app/assets/javascripts/decidim/proposals/utils.js.es6 +2 -2
- data/app/commands/decidim/proposals/admin/create_proposal.rb +2 -2
- data/app/commands/decidim/proposals/admin/import_proposals.rb +16 -8
- data/app/commands/decidim/proposals/create_proposal.rb +6 -6
- data/app/commands/decidim/proposals/destroy_proposal.rb +33 -0
- data/app/commands/decidim/proposals/update_proposal.rb +4 -4
- data/app/controllers/decidim/proposals/admin/application_controller.rb +2 -2
- data/app/controllers/decidim/proposals/admin/proposal_answers_controller.rb +1 -1
- data/app/controllers/decidim/proposals/admin/proposal_notes_controller.rb +1 -1
- data/app/controllers/decidim/proposals/admin/proposals_controller.rb +2 -2
- data/app/controllers/decidim/proposals/admin/proposals_imports_controller.rb +4 -4
- data/app/controllers/decidim/proposals/application_controller.rb +5 -5
- data/app/controllers/decidim/proposals/proposal_endorsements_controller.rb +1 -1
- data/app/controllers/decidim/proposals/proposal_votes_controller.rb +1 -1
- data/app/controllers/decidim/proposals/proposal_widgets_controller.rb +1 -1
- data/app/controllers/decidim/proposals/proposals_controller.rb +52 -24
- data/app/events/decidim/proposals/proposal_mentioned_event.rb +19 -0
- data/app/forms/decidim/proposals/admin/proposal_form.rb +3 -3
- data/app/forms/decidim/proposals/admin/proposals_import_form.rb +9 -9
- data/app/forms/decidim/proposals/proposal_form.rb +5 -4
- data/app/helpers/decidim/proposals/application_helper.rb +38 -3
- data/app/helpers/decidim/proposals/proposal_endorsements_helper.rb +7 -3
- data/app/helpers/decidim/proposals/proposal_votes_helper.rb +9 -9
- data/app/helpers/decidim/proposals/proposal_wizard_helper.rb +2 -1
- data/app/jobs/decidim/proposals/notify_proposals_mentioned_job.rb +28 -0
- data/app/jobs/decidim/proposals/settings_change_job.rb +4 -4
- data/app/models/decidim/proposals/abilities/admin_ability.rb +4 -4
- data/app/models/decidim/proposals/abilities/current_user_ability.rb +12 -12
- data/app/models/decidim/proposals/abilities/participatory_process_admin_ability.rb +8 -8
- data/app/models/decidim/proposals/abilities/participatory_process_moderator_ability.rb +1 -1
- data/app/models/decidim/proposals/proposal.rb +7 -7
- data/app/models/decidim/proposals/proposal_endorsement.rb +6 -2
- data/app/presenters/decidim/proposals/proposal_presenter.rb +12 -0
- data/app/queries/decidim/proposals/filtered_proposals.rb +9 -9
- data/app/queries/decidim/proposals/similar_proposals.rb +9 -9
- data/app/services/decidim/proposals/proposal_search.rb +1 -1
- data/app/types/decidim/proposals/proposal_type.rb +17 -2
- data/app/types/decidim/proposals/proposals_type.rb +6 -6
- data/app/views/decidim/participatory_processes/participatory_process_groups/_highlighted_proposals.html.erb +1 -1
- data/app/views/decidim/participatory_processes/participatory_process_groups/_proposal.html.erb +1 -1
- data/app/views/decidim/participatory_spaces/_highlighted_proposals.html.erb +2 -2
- data/app/views/decidim/participatory_spaces/_proposal.html.erb +1 -1
- data/app/views/decidim/proposals/admin/proposal_answers/edit.html.erb +3 -3
- data/app/views/decidim/proposals/admin/proposal_notes/_form.html.erb +2 -2
- data/app/views/decidim/proposals/admin/proposal_notes/_proposal_notes.html.erb +3 -3
- data/app/views/decidim/proposals/admin/proposal_notes/index.html.erb +1 -1
- data/app/views/decidim/proposals/admin/proposals/_bulk-actions.html.erb +2 -2
- data/app/views/decidim/proposals/admin/proposals/_form.html.erb +3 -3
- data/app/views/decidim/proposals/admin/proposals/_proposal-tr.html.erb +1 -1
- data/app/views/decidim/proposals/admin/proposals/index.html.erb +1 -1
- data/app/views/decidim/proposals/admin/proposals/new.html.erb +2 -2
- data/app/views/decidim/proposals/admin/proposals/update_category.js.erb +3 -3
- data/app/views/decidim/proposals/admin/proposals_imports/new.html.erb +3 -3
- data/app/views/decidim/proposals/admin/shared/_info_proposal.html.erb +1 -1
- data/app/views/decidim/proposals/proposal_endorsements/_identity.html.erb +2 -2
- data/app/views/decidim/proposals/proposal_endorsements/identities.html.erb +2 -2
- data/app/views/decidim/proposals/proposal_endorsements/update_buttons_and_counters.js.erb +19 -8
- data/app/views/decidim/proposals/proposals/_endorsement_button.html.erb +2 -2
- data/app/views/decidim/proposals/proposals/_endorsement_identities_cabin.html.erb +3 -3
- data/app/views/decidim/proposals/proposals/_endorsements_card_row.html.erb +4 -4
- data/app/views/decidim/proposals/proposals/_endorsements_count.html.erb +2 -2
- data/app/views/decidim/proposals/proposals/_filters.html.erb +10 -10
- data/app/views/decidim/proposals/proposals/_filters_small_view.html.erb +1 -1
- data/app/views/decidim/proposals/proposals/_identities_listing.html.erb +30 -0
- data/app/views/decidim/proposals/proposals/{_endorsement_xxs.html.erb → _identity_xxs.html.erb} +1 -2
- data/app/views/decidim/proposals/proposals/_proposal.html.erb +2 -2
- data/app/views/decidim/proposals/proposals/_proposal_badge.html.erb +1 -1
- data/app/views/decidim/proposals/proposals/_tags.html.erb +25 -0
- data/app/views/decidim/proposals/proposals/_vote_button.html.erb +7 -7
- data/app/views/decidim/proposals/proposals/_votes_count.html.erb +6 -5
- data/app/views/decidim/proposals/proposals/_voting_rules.html.erb +7 -7
- data/app/views/decidim/proposals/proposals/_wizard_header.html.erb +5 -5
- data/app/views/decidim/proposals/proposals/compare.html.erb +1 -1
- data/app/views/decidim/proposals/proposals/complete.html.erb +70 -0
- data/app/views/decidim/proposals/proposals/edit.html.erb +3 -3
- data/app/views/decidim/proposals/proposals/edit_draft.html.erb +5 -3
- data/app/views/decidim/proposals/proposals/index.html.erb +5 -5
- data/app/views/decidim/proposals/proposals/new.html.erb +1 -43
- data/app/views/decidim/proposals/proposals/preview.html.erb +1 -1
- data/app/views/decidim/proposals/proposals/show.html.erb +16 -23
- data/config/locales/ca.yml +69 -55
- data/config/locales/en.yml +64 -50
- data/config/locales/es.yml +73 -59
- data/config/locales/eu.yml +64 -50
- data/config/locales/fi.yml +64 -50
- data/config/locales/fr.yml +75 -61
- data/config/locales/gl.yml +64 -50
- data/config/locales/it.yml +64 -50
- data/config/locales/nl.yml +153 -139
- data/config/locales/pl.yml +64 -50
- data/config/locales/pt-BR.yml +64 -50
- data/config/locales/pt.yml +64 -50
- data/config/locales/ru.yml +0 -9
- data/config/locales/sv.yml +64 -50
- data/config/locales/uk.yml +2 -16
- data/db/migrate/20171212102250_enable_pg_extensions.rb +12 -1
- data/db/migrate/20180305133811_rename_features_to_components_at_proposals.rb +11 -0
- data/db/migrate/20180413135249_fix_nil_threshold_per_proposal.rb +18 -0
- data/lib/decidim/content_parsers/proposal_parser.rb +95 -0
- data/lib/decidim/content_renderers/proposal_renderer.rb +33 -0
- data/lib/decidim/proposals.rb +9 -1
- data/lib/decidim/proposals/commentable_proposal.rb +3 -3
- data/lib/decidim/proposals/{feature.rb → component.rb} +39 -38
- data/lib/decidim/proposals/engine.rb +21 -6
- data/lib/decidim/proposals/proposal_serializer.rb +3 -3
- data/lib/decidim/proposals/test/factories.rb +5 -8
- data/lib/decidim/proposals/version.rb +1 -1
- metadata +32 -23
- data/app/views/decidim/proposals/proposals/_endorsements_listing.html.erb +0 -34
data/config/locales/ca.yml
CHANGED
@@ -15,8 +15,45 @@ ca:
|
|
15
15
|
answer: Resposta
|
16
16
|
proposals_copy:
|
17
17
|
copy_proposals: Entenc que això importarà totes les propostes del component seleccionat a l'actual i que aquesta acció no es pot revertir.
|
18
|
-
|
18
|
+
origin_component_id: Component des d'on copiar les propostes
|
19
19
|
decidim:
|
20
|
+
components:
|
21
|
+
proposals:
|
22
|
+
actions:
|
23
|
+
create: Crear
|
24
|
+
endorse: Adherir-se
|
25
|
+
vote: Donar suport
|
26
|
+
withdraw: Retirar
|
27
|
+
name: Propostes
|
28
|
+
settings:
|
29
|
+
global:
|
30
|
+
announcement: Anunci
|
31
|
+
attachments_allowed: Permetre arxius adjunts
|
32
|
+
can_accumulate_supports_beyond_threshold: Pot acumular suports més enllà del llindar
|
33
|
+
comments_enabled: Comentaris habilitats
|
34
|
+
geocoding_enabled: Geocodificació habilitada
|
35
|
+
new_proposal_help_text: Text d'ajuda al crear una nova proposta
|
36
|
+
official_proposals_enabled: Propostes oficials habilitades
|
37
|
+
proposal_answering_enabled: Activar resposta oficial a propostes
|
38
|
+
proposal_edit_before_minutes: Les propostes poden ser editades pels autors abans que passin aquest nombre de minuts
|
39
|
+
proposal_length: Longitud màxima del cos de la proposta
|
40
|
+
proposal_limit: Límit de propostes per usuari
|
41
|
+
proposal_wizard_step_1_help_text: Text del pas "Crear" de l'assistent de propostes
|
42
|
+
proposal_wizard_step_2_help_text: Text del pas "Comparar" de l'assistent de propostes
|
43
|
+
proposal_wizard_step_3_help_text: Text d'ajuda al pas de "completar" propostes
|
44
|
+
proposal_wizard_step_4_help_text: Text del pas "Publicar" de l'assistent de propostes
|
45
|
+
threshold_per_proposal: Llindar per proposta
|
46
|
+
vote_limit: Límit de suports per usuari
|
47
|
+
step:
|
48
|
+
announcement: Anunci
|
49
|
+
comments_blocked: Comentaris bloquejats
|
50
|
+
creation_enabled: Habilitar de creació de propostes
|
51
|
+
endorsements_blocked: Bloquejar adhesions
|
52
|
+
endorsements_enabled: Adhesions habilitades
|
53
|
+
proposal_answering_enabled: Activar resposta oficial a propostes
|
54
|
+
votes_blocked: Suports bloquejats
|
55
|
+
votes_enabled: Suports habilitats
|
56
|
+
votes_hidden: Suports ocults (si els suports estan habilitats, marcant aquesta opció amagarà el nombre de suports)
|
20
57
|
events:
|
21
58
|
proposals:
|
22
59
|
creation_enabled:
|
@@ -44,14 +81,18 @@ ca:
|
|
44
81
|
email_outro: Has rebut aquesta notificació perquè que segueixes "%{resource_title}". El pots deixar de seguir al link anterior.
|
45
82
|
email_subject: S'està avaluant una proposta que segueixes
|
46
83
|
notification_title: S'ha avaluat la proposta <a href="%{resource_path}">%{resource_title}</a>.
|
84
|
+
proposal_mentioned:
|
85
|
+
email_intro: La teva proposta "%{mentioned_proposal_title}" ha estat esmentada <a href="%{resource_path}">en aquest espai</a> als comentaris.
|
86
|
+
email_subject: S'ha mencionat la teva proposta "%{mentioned_proposal_title}"
|
87
|
+
notification_title: La teva proposta "%{mentioned_proposal_title}" ha estat esmentada <a href="%{resource_path}">en aquest espai</a> als comentaris.
|
47
88
|
proposal_published:
|
48
|
-
email_intro: "%{author_name} %{author_nickname}, a qui
|
49
|
-
email_outro:
|
89
|
+
email_intro: "%{author_name} %{author_nickname}, a qui segueixes, ha publicat una nova proposta. Comprova-ho i contribueix:"
|
90
|
+
email_outro: Has rebut aquesta notificació perquè estàs seguint %{author_nickname}. Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
50
91
|
email_subject: Nova proposta per %{author_nickname}
|
51
|
-
notification_title: La <a href="%{resource_path}">%{resource_title}</a>
|
92
|
+
notification_title: La proposta <a href="%{resource_path}">%{resource_title}</a> ha estat publicada per <a href="%{author_path}">%{author_name} %{author_nickname}</a>.
|
52
93
|
proposal_published_for_space:
|
53
|
-
email_intro: La proposta "%{resource_title}" s'ha afegit a "%{participatory_space_title}" que
|
54
|
-
email_outro:
|
94
|
+
email_intro: La proposta "%{resource_title}" s'ha afegit a "%{participatory_space_title}", que segueixes.
|
95
|
+
email_outro: Has rebut aquesta notificació perquè estàs seguint "%{participatory_space_title}". Pots deixar de seguir-lo des de l'enllaç anterior.
|
55
96
|
email_subject: S'ha afegit una nova proposta a %{participatory_space_title}
|
56
97
|
notification_title: La proposta <a href="%{resource_path}">%{resource_title}</a> s'ha afegit a %{participatory_space_title}
|
57
98
|
proposal_rejected:
|
@@ -69,42 +110,6 @@ ca:
|
|
69
110
|
email_outro: Has rebut aquesta notificació perquè estàs seguint %{participatory_space_title}. Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
70
111
|
email_subject: Has rebut aquesta notificació perquè estàs seguint %{participatory_space_title}. Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
71
112
|
notification_title: Ja pots començar a <a href="%{resource_path}">donar suports a propostes</a> a <a href="%{participatory_space_url}">%{participatory_space_title}</a>
|
72
|
-
features:
|
73
|
-
proposals:
|
74
|
-
actions:
|
75
|
-
create: Crear
|
76
|
-
endorse: Adherir-se
|
77
|
-
vote: Donar suport
|
78
|
-
withdraw: Retirar
|
79
|
-
name: Propostes
|
80
|
-
settings:
|
81
|
-
global:
|
82
|
-
announcement: Anunci
|
83
|
-
attachments_allowed: Permetre arxius adjunts
|
84
|
-
can_accumulate_supports_beyond_threshold: Pot acumular suports més enllà del llindar
|
85
|
-
comments_enabled: Comentaris habilitats
|
86
|
-
geocoding_enabled: Geocodificació habilitada
|
87
|
-
new_proposal_help_text: Text d'ajuda al crear una nova proposta
|
88
|
-
official_proposals_enabled: Propostes oficials habilitades
|
89
|
-
proposal_answering_enabled: Activar resposta oficial a propostes
|
90
|
-
proposal_edit_before_minutes: Les propostes poden ser editades pels autors abans que passin aquest nombre de minuts
|
91
|
-
proposal_length: Longitud màxima del cos de la proposta
|
92
|
-
proposal_limit: Límit de propostes per usuari
|
93
|
-
proposal_wizard_step_1_help_text: Text del pas "Crear" de l'assistent de propostes
|
94
|
-
proposal_wizard_step_2_help_text: Text del pas "Comparar" de l'assistent de propostes
|
95
|
-
proposal_wizard_step_3_help_text: Text del pas "Publicar" de l'assistent de propostes
|
96
|
-
threshold_per_proposal: Llindar per proposta
|
97
|
-
vote_limit: Límit de suports per usuari
|
98
|
-
step:
|
99
|
-
announcement: Anunci
|
100
|
-
comments_blocked: Comentaris bloquejats
|
101
|
-
creation_enabled: Habilitar de creació de propostes
|
102
|
-
endorsements_blocked: Bloquejar adhesions
|
103
|
-
endorsements_enabled: Adhesions habilitades
|
104
|
-
proposal_answering_enabled: Activar resposta oficial a propostes
|
105
|
-
votes_blocked: Suports bloquejats
|
106
|
-
votes_enabled: Suports habilitats
|
107
|
-
votes_hidden: Suports ocults (si els suports estan habilitats, marcant aquesta opció amagarà el nombre de suports)
|
108
113
|
participatory_processes:
|
109
114
|
participatory_process_groups:
|
110
115
|
highlighted_proposals:
|
@@ -182,8 +187,8 @@ ca:
|
|
182
187
|
success: "%{number} propostes importades correctament"
|
183
188
|
new:
|
184
189
|
create: Importa propostes
|
185
|
-
|
186
|
-
|
190
|
+
no_components: No hi ha cap altre component de propostes en aquest espai participatiu des d'on importar-les.
|
191
|
+
select_component: Escull un continent
|
187
192
|
select_states: Consulteu els estats de les propostes per importar
|
188
193
|
shared:
|
189
194
|
info_proposal:
|
@@ -206,6 +211,9 @@ ca:
|
|
206
211
|
create:
|
207
212
|
error: Hi ha hagut errors en desar la proposta.
|
208
213
|
success: La proposta s'ha creat correctament. S'ha desat com a esborrany.
|
214
|
+
destroy_draft:
|
215
|
+
error: S'ha produït un error en suprimir l'esborrany de la proposta.
|
216
|
+
success: L'esborrany de proposta s'ha eliminat amb èxit.
|
209
217
|
models:
|
210
218
|
proposal:
|
211
219
|
fields:
|
@@ -229,7 +237,7 @@ ca:
|
|
229
237
|
select_identity: Selecciona identitat
|
230
238
|
proposal_endorsements_helper:
|
231
239
|
endorsement_button:
|
232
|
-
already_endorsed:
|
240
|
+
already_endorsed: Adherit/da
|
233
241
|
endorse: Adherir-se
|
234
242
|
proposal_votes:
|
235
243
|
create:
|
@@ -239,6 +247,11 @@ ca:
|
|
239
247
|
mine_is_different: La meva proposta és diferent
|
240
248
|
no_similars_found: Ben fet! No s'han trobat propostes semblants
|
241
249
|
title: Propostes similars
|
250
|
+
complete:
|
251
|
+
attachment_legend: "(Opcional) Afegeix un fitxer adjunt"
|
252
|
+
select_a_category: Selecciona una categoria
|
253
|
+
send: Enviar
|
254
|
+
title: Completa la teva proposta
|
242
255
|
count:
|
243
256
|
proposals_count:
|
244
257
|
one: 1 proposta
|
@@ -249,19 +262,14 @@ ca:
|
|
249
262
|
send: Enviar
|
250
263
|
title: Editar proposta
|
251
264
|
edit_draft:
|
265
|
+
discard: Descarta aquest esborrany
|
266
|
+
discard_confirmation: Estàs segur de que vols descartar l'esborrany d'aquesta proposta?
|
252
267
|
send: Vista prèvia
|
253
268
|
title: Edició l'esborrany de proposta
|
254
|
-
endorsement_button:
|
255
|
-
already_endorsed: Ja adherit
|
256
|
-
already_endorsed_hover: Desadherir-se
|
257
269
|
endorsement_identities_cabin:
|
258
270
|
endorse: Adherir-se
|
259
271
|
endorsements_card_row:
|
260
272
|
endorse: Adherir-se
|
261
|
-
endorsements_listing:
|
262
|
-
see_all: Veure tot
|
263
|
-
see_less: Veure menys
|
264
|
-
title: Llista d'adhesions
|
265
273
|
filters:
|
266
274
|
accepted: Acceptades
|
267
275
|
activity: Activitat
|
@@ -282,6 +290,10 @@ ca:
|
|
282
290
|
filter: Filtra
|
283
291
|
filter_by: Filtrar per
|
284
292
|
unfold: Desplegar
|
293
|
+
identities_listing:
|
294
|
+
see_all: Veure tot
|
295
|
+
see_less: Veure menys
|
296
|
+
title: Llista d'adhesions
|
285
297
|
index:
|
286
298
|
new_proposal: Nova proposta
|
287
299
|
see_all_withdrawn: Veure totes les propostes retirades
|
@@ -291,8 +303,6 @@ ca:
|
|
291
303
|
one: suport
|
292
304
|
other: suports
|
293
305
|
new:
|
294
|
-
attachment_legend: "(Opcional) Afegiu un fitxer adjunt"
|
295
|
-
select_a_category: Si us plau, seleccioni una categoria
|
296
306
|
send: Continua
|
297
307
|
title: Crea la teva proposta
|
298
308
|
orders:
|
@@ -322,6 +332,9 @@ ca:
|
|
322
332
|
withdraw_btn_hint: Pots retirar la teva proposta si canvies d'opinió, sempre que no hagis rebut cap suport. La proposta no s'esborra, apareixerà a la llista de propostes retirades.
|
323
333
|
withdraw_confirmation: Estàs segur que vols retirar aquesta proposta?
|
324
334
|
withdraw_proposal: Retirar proposta
|
335
|
+
tags:
|
336
|
+
changed_from: "(modificat de <u>%{previous_category}</u> per un administrador)"
|
337
|
+
filed_as: Arxivat com a
|
325
338
|
vote_button:
|
326
339
|
already_voted: Ja li has donat suport
|
327
340
|
already_voted_hover: Retirar suport
|
@@ -354,7 +367,8 @@ ca:
|
|
354
367
|
see_steps: veure les fases
|
355
368
|
step_1: Crea la teva proposta
|
356
369
|
step_2: Compara
|
357
|
-
step_3:
|
370
|
+
step_3: Completar
|
371
|
+
step_4: Publica la teva proposta
|
358
372
|
step_of: Fase %{current_step_num} de %{total_steps}
|
359
373
|
publish:
|
360
374
|
error: Hi ha hagut errors en publicar la proposta.
|
data/config/locales/en.yml
CHANGED
@@ -16,8 +16,45 @@ en:
|
|
16
16
|
answer: Answer
|
17
17
|
proposals_copy:
|
18
18
|
copy_proposals: I understand that this will import all proposals from the selected component to the current one and that this action can't be reversed.
|
19
|
-
|
19
|
+
origin_component_id: Component to copy the proposals from
|
20
20
|
decidim:
|
21
|
+
components:
|
22
|
+
proposals:
|
23
|
+
actions:
|
24
|
+
create: Create
|
25
|
+
endorse: Endorse
|
26
|
+
vote: Vote
|
27
|
+
withdraw: Withdraw
|
28
|
+
name: Proposals
|
29
|
+
settings:
|
30
|
+
global:
|
31
|
+
announcement: Announcement
|
32
|
+
attachments_allowed: Allow attachments
|
33
|
+
can_accumulate_supports_beyond_threshold: Can accumulate supports beyond threshold
|
34
|
+
comments_enabled: Comments enabled
|
35
|
+
geocoding_enabled: Geocoding enabled
|
36
|
+
new_proposal_help_text: New proposal help text
|
37
|
+
official_proposals_enabled: Official proposals enabled
|
38
|
+
proposal_answering_enabled: Proposal answering enabled
|
39
|
+
proposal_edit_before_minutes: Proposals can be edited by authors before this many minutes passes
|
40
|
+
proposal_length: Maximum proposal body length
|
41
|
+
proposal_limit: Proposal limit per user
|
42
|
+
proposal_wizard_step_1_help_text: Proposal wizard "Create" step help text
|
43
|
+
proposal_wizard_step_2_help_text: Proposal wizard "Compare" step help text
|
44
|
+
proposal_wizard_step_3_help_text: Proposal wizard "Complete" step help text
|
45
|
+
proposal_wizard_step_4_help_text: Proposal wizard "Publish" step help text
|
46
|
+
threshold_per_proposal: Threshold per proposal
|
47
|
+
vote_limit: Vote limit per user
|
48
|
+
step:
|
49
|
+
announcement: Announcement
|
50
|
+
comments_blocked: Comments blocked
|
51
|
+
creation_enabled: Proposal creation enabled
|
52
|
+
endorsements_blocked: Endorsements blocked
|
53
|
+
endorsements_enabled: Endorsements enabled
|
54
|
+
proposal_answering_enabled: Proposal answering enabled
|
55
|
+
votes_blocked: Votes blocked
|
56
|
+
votes_enabled: Votes enabled
|
57
|
+
votes_hidden: Votes hidden (if votes are enabled, checking this will hide the number of votes)
|
21
58
|
events:
|
22
59
|
proposals:
|
23
60
|
creation_enabled:
|
@@ -45,6 +82,10 @@ en:
|
|
45
82
|
email_outro: You have received this notification because you are following "%{resource_title}". You can unfollow it from the previous link.
|
46
83
|
email_subject: A proposal you're following is being evaluated
|
47
84
|
notification_title: The <a href="%{resource_path}">%{resource_title}</a> proposal is being evaluated.
|
85
|
+
proposal_mentioned:
|
86
|
+
email_intro: Your proposal "%{mentioned_proposal_title}" has been mentioned <a href="%{resource_path}">in this space</a> in the comments.
|
87
|
+
email_subject: Your proposal "%{mentioned_proposal_title}" has been mentioned
|
88
|
+
notification_title: Your proposal "%{mentioned_proposal_title}" has been mentioned <a href="%{resource_path}">in this space</a> in the comments.
|
48
89
|
proposal_published:
|
49
90
|
email_intro: "%{author_name} %{author_nickname}, who you are following, has published a new proposal, check it out and contribute:"
|
50
91
|
email_outro: You have received this notification because you are following %{author_nickname}. You can stop receiving notifications following the previous link.
|
@@ -70,42 +111,6 @@ en:
|
|
70
111
|
email_outro: You have received this notification because you are following %{participatory_space_title}. You can stop receiving notifications following the previous link.
|
71
112
|
email_subject: Proposals voting has started for %{participatory_space_title}
|
72
113
|
notification_title: You can now start <a href="%{resource_path}">voting proposals</a> in <a href="%{participatory_space_url}">%{participatory_space_title}</a>
|
73
|
-
features:
|
74
|
-
proposals:
|
75
|
-
actions:
|
76
|
-
create: Create
|
77
|
-
endorse: Endorse
|
78
|
-
vote: Vote
|
79
|
-
withdraw: Withdraw
|
80
|
-
name: Proposals
|
81
|
-
settings:
|
82
|
-
global:
|
83
|
-
announcement: Announcement
|
84
|
-
attachments_allowed: Allow attachments
|
85
|
-
can_accumulate_supports_beyond_threshold: Can accumulate supports beyond threshold
|
86
|
-
comments_enabled: Comments enabled
|
87
|
-
geocoding_enabled: Geocoding enabled
|
88
|
-
new_proposal_help_text: New proposal help text
|
89
|
-
official_proposals_enabled: Official proposals enabled
|
90
|
-
proposal_answering_enabled: Proposal answering enabled
|
91
|
-
proposal_edit_before_minutes: Proposals can be edited by authors before this many minutes passes
|
92
|
-
proposal_length: Maximum proposal body length
|
93
|
-
proposal_limit: Proposal limit per user
|
94
|
-
proposal_wizard_step_1_help_text: Proposal wizard "Create" step help text
|
95
|
-
proposal_wizard_step_2_help_text: Proposal wizard "Compare" step help text
|
96
|
-
proposal_wizard_step_3_help_text: Proposal wizard "Publish" step help text
|
97
|
-
threshold_per_proposal: Threshold per proposal
|
98
|
-
vote_limit: Vote limit per user
|
99
|
-
step:
|
100
|
-
announcement: Announcement
|
101
|
-
comments_blocked: Comments blocked
|
102
|
-
creation_enabled: Proposal creation enabled
|
103
|
-
endorsements_blocked: Endorsements blocked
|
104
|
-
endorsements_enabled: Endorsements enabled
|
105
|
-
proposal_answering_enabled: Proposal answering enabled
|
106
|
-
votes_blocked: Votes blocked
|
107
|
-
votes_enabled: Votes enabled
|
108
|
-
votes_hidden: Votes hidden (if votes are enabled, checking this will hide the number of votes)
|
109
114
|
participatory_processes:
|
110
115
|
participatory_process_groups:
|
111
116
|
highlighted_proposals:
|
@@ -183,8 +188,8 @@ en:
|
|
183
188
|
success: "%{number} proposals successfully imported"
|
184
189
|
new:
|
185
190
|
create: Import proposals
|
186
|
-
|
187
|
-
|
191
|
+
no_components: There are no other proposal components in this participatory space to import the proposals from.
|
192
|
+
select_component: Please select a component
|
188
193
|
select_states: Check the states of the proposals to import
|
189
194
|
shared:
|
190
195
|
info_proposal:
|
@@ -207,6 +212,9 @@ en:
|
|
207
212
|
create:
|
208
213
|
error: There's been errors when saving the proposal.
|
209
214
|
success: Proposal created successfully. Saved as a Draft.
|
215
|
+
destroy_draft:
|
216
|
+
error: There's been errors deleting the proposal draft.
|
217
|
+
success: Proposal draft was successfully destroyed.
|
210
218
|
models:
|
211
219
|
proposal:
|
212
220
|
fields:
|
@@ -230,7 +238,7 @@ en:
|
|
230
238
|
select_identity: Select identity
|
231
239
|
proposal_endorsements_helper:
|
232
240
|
endorsement_button:
|
233
|
-
already_endorsed:
|
241
|
+
already_endorsed: Endorsed
|
234
242
|
endorse: Endorse
|
235
243
|
proposal_votes:
|
236
244
|
create:
|
@@ -240,6 +248,11 @@ en:
|
|
240
248
|
mine_is_different: My proposal is different
|
241
249
|
no_similars_found: Well done! No similar proposals found
|
242
250
|
title: Similar Proposals
|
251
|
+
complete:
|
252
|
+
attachment_legend: "(Optional) Add an attachment"
|
253
|
+
select_a_category: Please select a category
|
254
|
+
send: Send
|
255
|
+
title: Complete your proposal
|
243
256
|
count:
|
244
257
|
proposals_count:
|
245
258
|
one: 1 proposal
|
@@ -250,19 +263,14 @@ en:
|
|
250
263
|
send: Send
|
251
264
|
title: Edit proposal
|
252
265
|
edit_draft:
|
266
|
+
discard: Discard this draft
|
267
|
+
discard_confirmation: Are you sure you want to discard this proposal draft?
|
253
268
|
send: Preview
|
254
269
|
title: Edit Proposal Draft
|
255
|
-
endorsement_button:
|
256
|
-
already_endorsed: Already endorsed
|
257
|
-
already_endorsed_hover: Unendorse
|
258
270
|
endorsement_identities_cabin:
|
259
271
|
endorse: Endorse
|
260
272
|
endorsements_card_row:
|
261
273
|
endorse: Endorse
|
262
|
-
endorsements_listing:
|
263
|
-
see_all: See all
|
264
|
-
see_less: See less
|
265
|
-
title: List of Endorsements
|
266
274
|
filters:
|
267
275
|
accepted: Accepted
|
268
276
|
activity: Activity
|
@@ -283,6 +291,10 @@ en:
|
|
283
291
|
filter: Filter
|
284
292
|
filter_by: Filter by
|
285
293
|
unfold: Unfold
|
294
|
+
identities_listing:
|
295
|
+
see_all: See all
|
296
|
+
see_less: See less
|
297
|
+
title: List of Endorsements
|
286
298
|
index:
|
287
299
|
new_proposal: New proposal
|
288
300
|
see_all_withdrawn: See all withdrawn proposals
|
@@ -292,8 +304,6 @@ en:
|
|
292
304
|
one: vote
|
293
305
|
other: votes
|
294
306
|
new:
|
295
|
-
attachment_legend: "(Optional) Add an attachment"
|
296
|
-
select_a_category: Please select a category
|
297
307
|
send: Continue
|
298
308
|
title: Create Your Proposal
|
299
309
|
orders:
|
@@ -323,6 +333,9 @@ en:
|
|
323
333
|
withdraw_btn_hint: You can withdraw your proposal if you change your mind, as long as you have not received any support. The proposal is not deleted, it will appear in the list of withdrawn proposals.
|
324
334
|
withdraw_confirmation: Are you sure to withdraw this proposal?
|
325
335
|
withdraw_proposal: Withdraw proposal
|
336
|
+
tags:
|
337
|
+
changed_from: "(changed from <u>%{previous_category}</u> by an administrator)"
|
338
|
+
filed_as: Filed as
|
326
339
|
vote_button:
|
327
340
|
already_voted: Already voted
|
328
341
|
already_voted_hover: Unvote
|
@@ -355,7 +368,8 @@ en:
|
|
355
368
|
see_steps: see steps
|
356
369
|
step_1: Create your proposal
|
357
370
|
step_2: Compare
|
358
|
-
step_3:
|
371
|
+
step_3: Complete
|
372
|
+
step_4: Publish your proposal
|
359
373
|
step_of: Step %{current_step_num} of %{total_steps}
|
360
374
|
publish:
|
361
375
|
error: There's been errors when publishing the proposal.
|
data/config/locales/es.yml
CHANGED
@@ -15,8 +15,45 @@ es:
|
|
15
15
|
answer: Respuesta
|
16
16
|
proposals_copy:
|
17
17
|
copy_proposals: Entiendo que esto importará todas las propuestas del componente seleccionado al actual y que esta acción no se puede revertir.
|
18
|
-
|
18
|
+
origin_component_id: Componente para copiar las propuestas de
|
19
19
|
decidim:
|
20
|
+
components:
|
21
|
+
proposals:
|
22
|
+
actions:
|
23
|
+
create: Crear
|
24
|
+
endorse: Adherirse
|
25
|
+
vote: Apoyar
|
26
|
+
withdraw: Retirar
|
27
|
+
name: Propuestas
|
28
|
+
settings:
|
29
|
+
global:
|
30
|
+
announcement: Anuncio
|
31
|
+
attachments_allowed: Permitir archivos adjuntos
|
32
|
+
can_accumulate_supports_beyond_threshold: Puede acumular apoyos más allá del umbral
|
33
|
+
comments_enabled: Comentarios habilitados
|
34
|
+
geocoding_enabled: Geocodificación habilitada
|
35
|
+
new_proposal_help_text: Nuevo texto de ayuda de propuesta
|
36
|
+
official_proposals_enabled: Propuestas oficiales habilitadas
|
37
|
+
proposal_answering_enabled: Respuesta a propuestas habilitadas
|
38
|
+
proposal_edit_before_minutes: Las propuestas pueden ser editadas por los autores antes de que pasen estos minutos
|
39
|
+
proposal_length: Longitud máxima del cuerpo de la propuesta
|
40
|
+
proposal_limit: Límite de propuestas por usuario
|
41
|
+
proposal_wizard_step_1_help_text: Asistente de propuesta "Crear" paso texto de ayuda
|
42
|
+
proposal_wizard_step_2_help_text: Asistente de propuesta "Comparar" texto de ayuda paso
|
43
|
+
proposal_wizard_step_3_help_text: Texto de ayuda al paso "Completar" de propuestas
|
44
|
+
proposal_wizard_step_4_help_text: Asistente de propuesta Texto de ayuda paso "Publicar"
|
45
|
+
threshold_per_proposal: Umbral por propuesta
|
46
|
+
vote_limit: Límite de voto por usuario
|
47
|
+
step:
|
48
|
+
announcement: Anuncio
|
49
|
+
comments_blocked: Comentarios bloqueados
|
50
|
+
creation_enabled: Creación de propuesta habilitada
|
51
|
+
endorsements_blocked: Adhesiones bloqueados
|
52
|
+
endorsements_enabled: Adhesiones habilitados
|
53
|
+
proposal_answering_enabled: Contestación de propuesta habilitada
|
54
|
+
votes_blocked: Apoyos bloqueados
|
55
|
+
votes_enabled: Votos habilitados
|
56
|
+
votes_hidden: Votos ocultos (si los votos están habilitados, marcar esto ocultará el número de votos)
|
20
57
|
events:
|
21
58
|
proposals:
|
22
59
|
creation_enabled:
|
@@ -28,7 +65,7 @@ es:
|
|
28
65
|
email_intro: '¡Puedes adherirte a propuestas en %{participatory_space_title}! Comienza a participar en esta página:'
|
29
66
|
email_outro: Recibiste esta notificación porque estás siguiendo %{participatory_space_title}. Puedes dejar de recibir notificaciones siguiendo el enlace anterior.
|
30
67
|
email_subject: La reivindicación de propuestas ha comenzado para %{participatory_space_title}
|
31
|
-
notification_title: Ahora puedes comenzar a <a href="%{resource_path}">adherirte
|
68
|
+
notification_title: Ahora puedes comenzar a <a href="%{resource_path}">adherirte propuestas</a> en <a href="%{participatory_space_url}">%{participatory_space_title}</a>
|
32
69
|
proposal_accepted:
|
33
70
|
email_intro: 'La propuesta "%{resource_title}" ha sido aceptada. Puedes leer la respuesta en esta página:'
|
34
71
|
email_outro: Has recibido esta notificación porque sigues "%{resource_title}". Puedes dejar de seguirlo en el enlace anterior.
|
@@ -37,22 +74,26 @@ es:
|
|
37
74
|
proposal_endorsed:
|
38
75
|
email_intro: "%{endorser_name} %{endorser_nickname}, a quién sigues, acaba de adherirse a una propuesta que puede ser interesante para ti, compruébalo y contribuye:"
|
39
76
|
email_outro: Recibió esta notificación porque está siguiendo %{endorser_nickname}. Puede dejar de recibir notificaciones siguiendo el enlace anterior.
|
40
|
-
email_subject: "%{endorser_nickname}
|
41
|
-
notification_title: <a href="%{
|
77
|
+
email_subject: "%{endorser_nickname} ha reivindicado una nueva propuesta"
|
78
|
+
notification_title: La propuesta <a href="%{resource_path}">%{resource_title}</a> ha sido reivindicada por <a href="%{endorser_path}">%{endorser_name} %{endorser_nickname}</a>.
|
42
79
|
proposal_evaluating:
|
43
80
|
email_intro: 'La propuesta "%{resource_title}" se está evaluando actualmente. Puedes encontrar la respuesta en esta página:'
|
44
81
|
email_outro: Has recibido esta notificación porque sigues "%{resource_title}". Puedes dejar de seguirlo en el enlace anterior.
|
45
82
|
email_subject: Una propuesta que estás siguiendo está siendo evaluada
|
46
83
|
notification_title: La propuesta <a href="%{resource_path}">%{resource_title}</a> está siendo evaluada.
|
84
|
+
proposal_mentioned:
|
85
|
+
email_intro: Su propuesta "%{mentioned_proposal_title}" se ha mencionado <a href="%{resource_path}">en este espacio</a> en los comentarios.
|
86
|
+
email_subject: Su propuesta "%{mentioned_proposal_title}" ha sido mencionada
|
87
|
+
notification_title: Su propuesta "%{mentioned_proposal_title}" se ha mencionado <a href="%{resource_path}">en este espacio</a> en los comentarios.
|
47
88
|
proposal_published:
|
48
89
|
email_intro: "%{author_name} %{author_nickname}, a quien sigues, ha publicado una nueva propuesta, compruébalo y contribuye:"
|
49
|
-
email_outro:
|
90
|
+
email_outro: Recibiste esta notificación porque estás siguiendo %{author_nickname}. Puedes dejar de recibir notificaciones desde el enlace anterior.
|
50
91
|
email_subject: Nueva propuesta de %{author_nickname}
|
51
92
|
notification_title: La propuesta <a href="%{resource_path}">%{resource_title}</a> fue publicada por <a href="%{author_path}">%{author_name} %{author_nickname}</a>.
|
52
93
|
proposal_published_for_space:
|
53
|
-
email_intro: La propuesta "%{resource_title}" se ha
|
54
|
-
email_outro:
|
55
|
-
email_subject: Nueva propuesta
|
94
|
+
email_intro: La propuesta "%{resource_title}" se ha añadido a "%{participatory_space_title}" que estás siguiendo.
|
95
|
+
email_outro: Recibiste esta notificación porque estás siguiendo "%{participatory_space_title}". Puedes dejar de seguirlo desde el enlace anterior.
|
96
|
+
email_subject: Nueva propuesta añadida a %{participatory_space_title}
|
56
97
|
notification_title: La propuesta <a href="%{resource_path}">%{resource_title}</a> se ha agregado a %{participatory_space_title}
|
57
98
|
proposal_rejected:
|
58
99
|
email_intro: 'La propuesta "%{resource_title}" ha sido rechazada. Puedes leer la respuesta en esta página:'
|
@@ -69,42 +110,6 @@ es:
|
|
69
110
|
email_outro: Recibiste esta notificación porque estás siguiendo %{participatory_space_title}. Puedes dejar de recibir notificaciones siguiendo el enlace anterior.
|
70
111
|
email_subject: La posibilidad de dar apoyo a las propuestas ha comenzado para %{participatory_space_title}
|
71
112
|
notification_title: Ahora puedes comenzar <a href="%{resource_path}">apoyar propuestas</a> en <a href="%{participatory_space_url}">%{participatory_space_title}</a>
|
72
|
-
features:
|
73
|
-
proposals:
|
74
|
-
actions:
|
75
|
-
create: Crear
|
76
|
-
endorse: Adherirse
|
77
|
-
vote: Dar apoyo
|
78
|
-
withdraw: Retirar
|
79
|
-
name: Propuestas
|
80
|
-
settings:
|
81
|
-
global:
|
82
|
-
announcement: Anuncio
|
83
|
-
attachments_allowed: Permitir archivos adjuntos
|
84
|
-
can_accumulate_supports_beyond_threshold: Puede acumular apoyos más allá del umbral
|
85
|
-
comments_enabled: Comentarios habilitados
|
86
|
-
geocoding_enabled: Geocodificación habilitada
|
87
|
-
new_proposal_help_text: Nuevo texto de ayuda de propuesta
|
88
|
-
official_proposals_enabled: Propuestas oficiales habilitadas
|
89
|
-
proposal_answering_enabled: Contestación de propuesta habilitada
|
90
|
-
proposal_edit_before_minutes: Las propuestas pueden ser editadas por los autores antes de que pasen estos minutos
|
91
|
-
proposal_length: Longitud máxima del cuerpo de la propuesta
|
92
|
-
proposal_limit: Límite de propuesta por usuario
|
93
|
-
proposal_wizard_step_1_help_text: Asistente de propuesta "Crear" paso texto de ayuda
|
94
|
-
proposal_wizard_step_2_help_text: Asistente de propuesta "Comparar" texto de ayuda paso
|
95
|
-
proposal_wizard_step_3_help_text: Asistente de propuesta Texto de ayuda paso "Publicar"
|
96
|
-
threshold_per_proposal: Umbral por propuesta
|
97
|
-
vote_limit: Límite de voto por usuario
|
98
|
-
step:
|
99
|
-
announcement: Anuncio
|
100
|
-
comments_blocked: Comentarios bloqueados
|
101
|
-
creation_enabled: Creación de propuesta habilitada
|
102
|
-
endorsements_blocked: Adhesiones bloqueadas
|
103
|
-
endorsements_enabled: Adhesiones habilitadas
|
104
|
-
proposal_answering_enabled: Contestación de propuesta habilitada
|
105
|
-
votes_blocked: Votos bloqueados
|
106
|
-
votes_enabled: Votos habilitados
|
107
|
-
votes_hidden: Votos ocultos (si los votos están habilitados, marcar esto ocultará el número de votos)
|
108
113
|
participatory_processes:
|
109
114
|
participatory_process_groups:
|
110
115
|
highlighted_proposals:
|
@@ -182,8 +187,8 @@ es:
|
|
182
187
|
success: "%{number} propuestas importadas correctamente"
|
183
188
|
new:
|
184
189
|
create: Importar propuestas
|
185
|
-
|
186
|
-
|
190
|
+
no_components: No hay otros componentes propuesta en este espacio participativo desde el que importar.
|
191
|
+
select_component: Por favor selecciona un componente
|
187
192
|
select_states: Verifique los estados de las propuestas para importar
|
188
193
|
shared:
|
189
194
|
info_proposal:
|
@@ -206,6 +211,9 @@ es:
|
|
206
211
|
create:
|
207
212
|
error: Ha habido errores al guardar la propuesta.
|
208
213
|
success: Propuesta creada con éxito. Guardada como borrador.
|
214
|
+
destroy_draft:
|
215
|
+
error: Se han producido errores al eliminar el borrador de la propuesta.
|
216
|
+
success: El borrador de la propuesta fue eliminado exitosamente.
|
209
217
|
models:
|
210
218
|
proposal:
|
211
219
|
fields:
|
@@ -229,7 +237,7 @@ es:
|
|
229
237
|
select_identity: Seleccionar identidad
|
230
238
|
proposal_endorsements_helper:
|
231
239
|
endorsement_button:
|
232
|
-
already_endorsed:
|
240
|
+
already_endorsed: Adherido
|
233
241
|
endorse: Adherirse
|
234
242
|
proposal_votes:
|
235
243
|
create:
|
@@ -239,6 +247,11 @@ es:
|
|
239
247
|
mine_is_different: Mi propuesta es diferente
|
240
248
|
no_similars_found: '¡Bien hecho! No se encontraron propuestas similares'
|
241
249
|
title: Propuestas similares
|
250
|
+
complete:
|
251
|
+
attachment_legend: "(Opcional) Agregar un archivo adjunto"
|
252
|
+
select_a_category: Por favor, seleccione una categoría
|
253
|
+
send: Enviar
|
254
|
+
title: Completa tu propuesta
|
242
255
|
count:
|
243
256
|
proposals_count:
|
244
257
|
one: 1 propuesta
|
@@ -249,19 +262,14 @@ es:
|
|
249
262
|
send: Enviar
|
250
263
|
title: Editar propuesta
|
251
264
|
edit_draft:
|
265
|
+
discard: Descartar este borrador
|
266
|
+
discard_confirmation: '¿Estás seguro que quieres descartar este borrador de propuesta?'
|
252
267
|
send: Previsualizar
|
253
268
|
title: Editar borrador de propuesta
|
254
|
-
endorsement_button:
|
255
|
-
already_endorsed: Ya adherido/a
|
256
|
-
already_endorsed_hover: Desadherirse
|
257
269
|
endorsement_identities_cabin:
|
258
270
|
endorse: Adherirse
|
259
271
|
endorsements_card_row:
|
260
272
|
endorse: Adherirse
|
261
|
-
endorsements_listing:
|
262
|
-
see_all: Ver todo
|
263
|
-
see_less: Ver menos
|
264
|
-
title: Lista de adhesiones
|
265
273
|
filters:
|
266
274
|
accepted: Aceptadas
|
267
275
|
activity: Actividad
|
@@ -282,6 +290,10 @@ es:
|
|
282
290
|
filter: Filtrar
|
283
291
|
filter_by: Filtrar por
|
284
292
|
unfold: Desplegar
|
293
|
+
identities_listing:
|
294
|
+
see_all: Ver todo
|
295
|
+
see_less: Ver menos
|
296
|
+
title: Lista de adhesiones
|
285
297
|
index:
|
286
298
|
new_proposal: Nueva propuesta
|
287
299
|
see_all_withdrawn: Ver todas las propuestas retiradas
|
@@ -291,8 +303,6 @@ es:
|
|
291
303
|
one: voto
|
292
304
|
other: votos
|
293
305
|
new:
|
294
|
-
attachment_legend: "(Opcional) Añadir un archivo adjunto"
|
295
|
-
select_a_category: Por favor, seleccione una categoría
|
296
306
|
send: Continuar
|
297
307
|
title: Crea tu propuesta
|
298
308
|
orders:
|
@@ -322,6 +332,9 @@ es:
|
|
322
332
|
withdraw_btn_hint: Puedes retirar tu propuesta si cambias de opinión, siempre que no haya recibido ningún soporte. La propuesta no se elimina, aparecerá en la lista de propuestas retiradas.
|
323
333
|
withdraw_confirmation: '¿Seguro que quieres retirar esta propuesta?'
|
324
334
|
withdraw_proposal: Retirar propuesta
|
335
|
+
tags:
|
336
|
+
changed_from: "(cambiado desde <u>%{previous_category}</u> por un administrador)"
|
337
|
+
filed_as: Archivado como
|
325
338
|
vote_button:
|
326
339
|
already_voted: Ya votado
|
327
340
|
already_voted_hover: Retirar voto
|
@@ -337,11 +350,11 @@ es:
|
|
337
350
|
need_more_votes: Necesita más votos
|
338
351
|
voting_rules:
|
339
352
|
can_accumulate_supports_beyond_threshold:
|
340
|
-
description: Cada propuesta puede acumular más de %{limit}
|
353
|
+
description: Cada propuesta puede acumular más de %{limit} apoyos
|
341
354
|
proposal_limit:
|
342
355
|
description: Puedes crear hasta %{limit} propuestas.
|
343
356
|
threshold_per_proposal:
|
344
|
-
description: Para ser aceptado, las propuestas deben llegar a %{limit}
|
357
|
+
description: Para ser aceptado, las propuestas deben llegar a %{limit} apoyos
|
345
358
|
title: 'La votación se rige por las siguientes normas:'
|
346
359
|
vote_limit:
|
347
360
|
description: Puedes votar hasta %{limit} propuestas.
|
@@ -354,7 +367,8 @@ es:
|
|
354
367
|
see_steps: ver los pasos
|
355
368
|
step_1: Crea tu propuesta
|
356
369
|
step_2: Comparar
|
357
|
-
step_3:
|
370
|
+
step_3: Completar
|
371
|
+
step_4: Publica tu propuesta
|
358
372
|
step_of: Paso %{current_step_num} de %{total_steps}
|
359
373
|
publish:
|
360
374
|
error: Ha habido errores al publicar la propuesta.
|