decidim-proposals 0.15.2 → 0.16.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +12 -0
- data/app/assets/config/decidim_proposals_manifest.js +1 -0
- data/app/assets/javascripts/decidim/proposals/add_proposal.js.es6 +1 -1
- data/app/assets/javascripts/decidim/proposals/admin/proposals_form.js.es6 +23 -0
- data/app/cells/decidim/proposals/collaborative_draft_cell.rb +0 -2
- data/app/cells/decidim/proposals/collaborative_draft_m_cell.rb +5 -1
- data/app/cells/decidim/proposals/highlighted_proposals/show.erb +3 -0
- data/app/cells/decidim/proposals/highlighted_proposals_cell.rb +25 -0
- data/app/cells/decidim/proposals/highlighted_proposals_for_component/show.erb +19 -0
- data/app/cells/decidim/proposals/highlighted_proposals_for_component_cell.rb +34 -0
- data/app/cells/decidim/proposals/participatory_text_proposal/buttons.erb +33 -0
- data/app/cells/decidim/proposals/participatory_text_proposal/show.erb +9 -0
- data/app/cells/decidim/proposals/participatory_text_proposal_cell.rb +77 -0
- data/app/cells/decidim/proposals/proposal_cell.rb +0 -2
- data/app/cells/decidim/proposals/proposal_m/footer.erb +1 -1
- data/app/cells/decidim/proposals/proposal_m_cell.rb +6 -1
- data/app/commands/decidim/proposals/accept_access_to_collaborative_draft.rb +3 -3
- data/app/commands/decidim/proposals/admin/answer_proposal.rb +2 -1
- data/app/commands/decidim/proposals/admin/create_proposal.rb +7 -7
- data/app/commands/decidim/proposals/admin/import_participatory_text.rb +8 -8
- data/app/commands/decidim/proposals/admin/update_proposal.rb +13 -6
- data/app/commands/decidim/proposals/admin/update_proposal_category.rb +1 -1
- data/app/commands/decidim/proposals/create_collaborative_draft.rb +6 -3
- data/app/commands/decidim/proposals/create_proposal.rb +25 -11
- data/app/commands/decidim/proposals/endorse_proposal.rb +1 -2
- data/app/commands/decidim/proposals/hashtags_methods.rb +36 -0
- data/app/commands/decidim/proposals/publish_collaborative_draft.rb +39 -34
- data/app/commands/decidim/proposals/publish_proposal.rb +13 -17
- data/app/commands/decidim/proposals/reject_access_to_collaborative_draft.rb +2 -3
- data/app/commands/decidim/proposals/request_access_to_collaborative_draft.rb +1 -2
- data/app/commands/decidim/proposals/update_collaborative_draft.rb +11 -8
- data/app/commands/decidim/proposals/update_proposal.rb +37 -13
- data/app/commands/decidim/proposals/withdraw_collaborative_draft.rb +3 -3
- data/app/commands/decidim/proposals/withdraw_proposal.rb +14 -1
- data/app/controllers/decidim/proposals/admin/participatory_texts_controller.rb +2 -1
- data/app/controllers/decidim/proposals/admin/proposals_controller.rb +9 -1
- data/app/controllers/decidim/proposals/collaborative_drafts_controller.rb +8 -0
- data/app/controllers/decidim/proposals/proposals_controller.rb +64 -27
- data/app/controllers/decidim/proposals/versions_controller.rb +5 -1
- data/app/events/decidim/proposals/accepted_proposal_event.rb +8 -0
- data/app/events/decidim/proposals/evaluating_proposal_event.rb +3 -0
- data/app/events/decidim/proposals/proposal_endorsed_event.rb +4 -0
- data/app/events/decidim/proposals/publish_proposal_event.rb +4 -0
- data/app/events/decidim/proposals/rejected_proposal_event.rb +8 -0
- data/app/forms/decidim/proposals/admin/import_participatory_text_form.rb +4 -0
- data/app/forms/decidim/proposals/admin/proposal_form.rb +49 -0
- data/app/forms/decidim/proposals/collaborative_draft_form.rb +2 -0
- data/app/forms/decidim/proposals/proposal_form.rb +32 -0
- data/app/helpers/decidim/proposals/admin/proposals_helper.rb +19 -0
- data/app/helpers/decidim/proposals/application_helper.rb +48 -12
- data/app/helpers/decidim/proposals/control_version_helper.rb +61 -0
- data/app/helpers/decidim/proposals/participatory_texts_helper.rb +8 -0
- data/app/helpers/decidim/proposals/proposal_cells_helper.rb +7 -1
- data/app/helpers/decidim/proposals/proposal_endorsements_helper.rb +8 -6
- data/app/jobs/decidim/proposals/notify_proposals_mentioned_job.rb +2 -2
- data/app/jobs/decidim/proposals/settings_change_job.rb +8 -6
- data/app/models/decidim/proposals/collaborative_draft.rb +3 -0
- data/app/models/decidim/proposals/proposal.rb +20 -8
- data/app/permissions/decidim/proposals/admin/permissions.rb +1 -1
- data/app/presenters/decidim/proposals/admin_log/value_types/proposal_title_body_presenter.rb +2 -1
- data/app/presenters/decidim/proposals/collaborative_draft_presenter.rb +15 -2
- data/app/presenters/decidim/proposals/official_author_presenter.rb +4 -0
- data/app/presenters/decidim/proposals/proposal_presenter.rb +10 -14
- data/app/queries/decidim/proposals/metrics/endorsements_metric_manage.rb +54 -0
- data/app/queries/decidim/proposals/metrics/proposal_followers_metric_measure.rb +56 -0
- data/app/queries/decidim/proposals/metrics/proposal_participants_metric_measure.rb +64 -0
- data/app/services/decidim/proposals/proposal_search.rb +46 -5
- data/app/views/decidim/participatory_processes/participatory_process_groups/_highlighted_proposals.html.erb +1 -1
- data/app/views/decidim/proposals/admin/proposals/_form.html.erb +43 -2
- data/app/views/decidim/proposals/admin/proposals/_proposal-tr.html.erb +6 -2
- data/app/views/decidim/proposals/admin/proposals/edit.html.erb +1 -1
- data/app/views/decidim/proposals/admin/proposals/new.html.erb +1 -1
- data/app/views/decidim/proposals/collaborative_drafts/_edit_form_fields.html.erb +81 -0
- data/app/views/decidim/proposals/collaborative_drafts/complete.html.erb +1 -49
- data/app/views/decidim/proposals/collaborative_drafts/edit.html.erb +1 -29
- data/app/views/decidim/proposals/collaborative_drafts/show.html.erb +5 -5
- data/app/views/decidim/proposals/proposals/_edit_form_fields.html.erb +27 -3
- data/app/views/decidim/proposals/proposals/_filters.html.erb +5 -2
- data/app/views/decidim/proposals/proposals/_proposal.html.erb +5 -1
- data/app/views/decidim/proposals/proposals/_proposal_similar.html.erb +2 -2
- data/app/views/decidim/proposals/proposals/_vote_button.html.erb +39 -35
- data/app/views/decidim/proposals/proposals/_votes_count.html.erb +16 -12
- data/app/views/decidim/proposals/proposals/new.html.erb +1 -1
- data/app/views/decidim/proposals/proposals/participatory_texts/_index.html.erb +19 -0
- data/app/views/decidim/proposals/proposals/participatory_texts/_proposal_vote_button.html.erb +46 -0
- data/app/views/decidim/proposals/proposals/participatory_texts/_proposal_votes_count.html.erb +41 -0
- data/app/views/decidim/proposals/proposals/participatory_texts/_view_index.html.erb +10 -0
- data/app/views/decidim/proposals/proposals/participatory_texts/participatory_text.html.erb +15 -0
- data/app/views/decidim/proposals/proposals/show.html.erb +45 -4
- data/app/views/decidim/proposals/versions/_version.html.erb +2 -2
- data/app/views/decidim/proposals/versions/index.html.erb +1 -1
- data/app/views/decidim/proposals/versions/show.html.erb +2 -2
- data/config/locales/ca.yml +87 -33
- data/config/locales/de.yml +87 -36
- data/config/locales/en.yml +87 -33
- data/config/locales/es-PY.yml +87 -33
- data/config/locales/es.yml +88 -34
- data/config/locales/eu.yml +87 -33
- data/config/locales/fi-pl.yml +87 -33
- data/config/locales/fi.yml +87 -33
- data/config/locales/fr.yml +87 -33
- data/config/locales/gl.yml +87 -33
- data/config/locales/hu.yml +87 -33
- data/config/locales/id-ID.yml +84 -30
- data/config/locales/it.yml +87 -33
- data/config/locales/nl.yml +87 -33
- data/config/locales/pl.yml +87 -33
- data/config/locales/pt-BR.yml +87 -33
- data/config/locales/pt.yml +87 -33
- data/config/locales/ru.yml +21 -38
- data/config/locales/sv.yml +87 -33
- data/config/locales/tr-TR.yml +86 -32
- data/config/locales/uk.yml +21 -38
- data/db/migrate/20181026073215_add_created_in_meeting.rb +7 -0
- data/lib/decidim/proposals.rb +2 -0
- data/lib/decidim/proposals/component.rb +74 -0
- data/lib/decidim/proposals/doc_to_markdown.rb +40 -0
- data/lib/decidim/proposals/engine.rb +52 -35
- data/lib/decidim/proposals/odt_to_markdown.rb +46 -0
- data/lib/decidim/proposals/proposal_serializer.rb +29 -13
- data/lib/decidim/proposals/test/factories.rb +76 -0
- data/lib/decidim/proposals/version.rb +1 -1
- metadata +56 -20
- data/app/views/decidim/participatory_spaces/_highlighted_proposals.html.erb +0 -15
data/config/locales/en.yml
CHANGED
@@ -12,11 +12,13 @@ en:
|
|
12
12
|
proposal:
|
13
13
|
answer: Answer
|
14
14
|
answered_at: Answered at
|
15
|
+
automatic_hashtags: Hashtags automatically added
|
15
16
|
body: Body
|
16
17
|
category_id: Category
|
17
18
|
has_address: Has address
|
18
19
|
scope_id: Scope
|
19
20
|
state: State
|
21
|
+
suggested_hashtags: Suggested hashtags
|
20
22
|
title: Title
|
21
23
|
user_group_id: Create proposal as
|
22
24
|
proposal_answer:
|
@@ -69,6 +71,7 @@ en:
|
|
69
71
|
name: Proposals
|
70
72
|
settings:
|
71
73
|
global:
|
74
|
+
amendments_enabled: Amendments enabled
|
72
75
|
announcement: Announcement
|
73
76
|
attachments_allowed: Allow attachments
|
74
77
|
can_accumulate_supports_beyond_threshold: Can accumulate supports beyond threshold
|
@@ -92,11 +95,13 @@ en:
|
|
92
95
|
vote_limit: Vote limit per user
|
93
96
|
step:
|
94
97
|
announcement: Announcement
|
98
|
+
automatic_hashtags: Hashtags added to all proposals
|
95
99
|
comments_blocked: Comments blocked
|
96
100
|
creation_enabled: Proposal creation enabled
|
97
101
|
endorsements_blocked: Endorsements blocked
|
98
102
|
endorsements_enabled: Endorsements enabled
|
99
103
|
proposal_answering_enabled: Proposal answering enabled
|
104
|
+
suggested_hashtags: Hashtags suggested to users for new proposals
|
100
105
|
votes_blocked: Voting blocked
|
101
106
|
votes_enabled: Voting enabled
|
102
107
|
votes_hidden: Votes hidden (if votes are enabled, checking this will hide the number of votes)
|
@@ -143,39 +148,58 @@ en:
|
|
143
148
|
email_subject: Proposals endorsing has started for %{participatory_space_title}
|
144
149
|
notification_title: You can now start <a href="%{resource_path}">endorsing proposals</a> in <a href="%{participatory_space_url}">%{participatory_space_title}</a>
|
145
150
|
proposal_accepted:
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
151
|
+
affected_user:
|
152
|
+
email_intro: 'Your proposal "%{resource_title}" has been accepted. You can read the answer in this page:'
|
153
|
+
email_outro: You have received this notification because you are an author of "%{resource_title}".
|
154
|
+
email_subject: Your proposal has been accepted
|
155
|
+
notification_title: Your proposal <a href="%{resource_path}">%{resource_title}</a> has been accepted.
|
156
|
+
follower:
|
157
|
+
email_intro: 'The proposal "%{resource_title}" has been accepted. You can read the answer in this page:'
|
158
|
+
email_outro: You have received this notification because you are following "%{resource_title}". You can unfollow it from the previous link.
|
159
|
+
email_subject: A proposal you're following has been accepted
|
160
|
+
notification_title: The <a href="%{resource_path}">%{resource_title}</a> proposal has been accepted.
|
150
161
|
proposal_endorsed:
|
151
|
-
email_intro:
|
162
|
+
email_intro: '%{endorser_name} %{endorser_nickname}, who you are following, has just endorsed the "%{resource_title}" proposal and we think it may be interesting to you. Check it out and contribute:'
|
152
163
|
email_outro: You have received this notification because you are following %{endorser_nickname}. You can stop receiving notifications following the previous link.
|
153
164
|
email_subject: "%{endorser_nickname} has endorsed a new proposal"
|
154
165
|
notification_title: The <a href="%{resource_path}">%{resource_title}</a> proposal has been endorsed by <a href="%{endorser_path}">%{endorser_name} %{endorser_nickname}</a>.
|
155
166
|
proposal_evaluating:
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
167
|
+
affected_user:
|
168
|
+
email_intro: 'Your proposal "%{resource_title}" is currently being evaluated. You can check for an answer in this page:'
|
169
|
+
email_outro: You have received this notification because you are an author of "%{resource_title}".
|
170
|
+
email_subject: Your proposal is being evaluated
|
171
|
+
notification_title: Your proposal <a href="%{resource_path}">%{resource_title}</a> is being evaluated.
|
172
|
+
follower:
|
173
|
+
email_intro: 'The proposal "%{resource_title}" is currently being evaluated. You can check for an answer in this page:'
|
174
|
+
email_outro: You have received this notification because you are following "%{resource_title}". You can unfollow it from the previous link.
|
175
|
+
email_subject: A proposal you're following is being evaluated
|
176
|
+
notification_title: The <a href="%{resource_path}">%{resource_title}</a> proposal is being evaluated.
|
160
177
|
proposal_mentioned:
|
161
178
|
email_intro: Your proposal "%{mentioned_proposal_title}" has been mentioned <a href="%{resource_path}">in this space</a> in the comments.
|
179
|
+
email_outro: You have received this notification because you are an author of "%{resource_title}".
|
162
180
|
email_subject: Your proposal "%{mentioned_proposal_title}" has been mentioned
|
163
181
|
notification_title: Your proposal "%{mentioned_proposal_title}" has been mentioned <a href="%{resource_path}">in this space</a> in the comments.
|
164
182
|
proposal_published:
|
165
|
-
email_intro:
|
183
|
+
email_intro: '%{author_name} %{author_nickname}, who you are following, has published a new proposal called "%{resource_title}". Check it out and contribute:'
|
166
184
|
email_outro: You have received this notification because you are following %{author_nickname}. You can stop receiving notifications following the previous link.
|
167
|
-
email_subject: New proposal by %{author_nickname}
|
185
|
+
email_subject: New proposal "%{resource_title}" by %{author_nickname}
|
168
186
|
notification_title: The <a href="%{resource_path}">%{resource_title}</a> proposal was published by <a href="%{author_path}">%{author_name} %{author_nickname}</a>.
|
169
187
|
proposal_published_for_space:
|
170
188
|
email_intro: The proposal "%{resource_title}" has been added to "%{participatory_space_title}" that you are following.
|
171
189
|
email_outro: You have received this notification because you are following "%{participatory_space_title}". You can unfollow it from the previous link.
|
172
|
-
email_subject: New proposal added to %{participatory_space_title}
|
190
|
+
email_subject: New proposal "%{resource_title}" added to %{participatory_space_title}
|
173
191
|
notification_title: The proposal <a href="%{resource_path}">%{resource_title}</a> has been added to %{participatory_space_title}
|
174
192
|
proposal_rejected:
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
193
|
+
affected_user:
|
194
|
+
email_intro: 'Your proposal "%{resource_title}" has been rejected. You can read the answer in this page:'
|
195
|
+
email_outro: You have received this notification because you are an author of "%{resource_title}".
|
196
|
+
email_subject: Your proposal been rejected
|
197
|
+
notification_title: Your proposal <a href="%{resource_path}">%{resource_title}</a> has been rejected.
|
198
|
+
follower:
|
199
|
+
email_intro: 'The proposal "%{resource_title}" has been rejected. You can read the answer in this page:'
|
200
|
+
email_outro: You have received this notification because you are following "%{resource_title}". You can unfollow it from the previous link.
|
201
|
+
email_subject: A proposal you're following has been rejected
|
202
|
+
notification_title: The <a href="%{resource_path}">%{resource_title}</a> proposal has been rejected.
|
179
203
|
proposal_update_category:
|
180
204
|
email_intro: 'An admin has updated the category of your proposal "%{resource_title}", check it out:'
|
181
205
|
email_outro: You have received this notification because you are the author of the proposal.
|
@@ -223,12 +247,19 @@ en:
|
|
223
247
|
unearned_own: You have created no proposals yet.
|
224
248
|
metrics:
|
225
249
|
accepted_proposals:
|
250
|
+
description: Number of proposals accepted by users
|
226
251
|
object: proposals
|
227
252
|
title: Accepted Proposals
|
253
|
+
endorsements:
|
254
|
+
description: Number of endorsements generated in proposals
|
255
|
+
object: endorsements
|
256
|
+
title: Endorsements
|
228
257
|
proposals:
|
258
|
+
description: Number of proposals generated
|
229
259
|
object: proposals
|
230
260
|
title: Proposals
|
231
261
|
votes:
|
262
|
+
description: Number of votes generated in proposals by users
|
232
263
|
object: votes
|
233
264
|
title: Votes
|
234
265
|
participatory_processes:
|
@@ -237,8 +268,7 @@ en:
|
|
237
268
|
proposals: Proposals
|
238
269
|
participatory_spaces:
|
239
270
|
highlighted_proposals:
|
240
|
-
|
241
|
-
see_all_proposals: See all proposals
|
271
|
+
see_all: See all (%{count})
|
242
272
|
proposals:
|
243
273
|
actions:
|
244
274
|
answer: Answer
|
@@ -307,7 +337,9 @@ en:
|
|
307
337
|
update: Update
|
308
338
|
form:
|
309
339
|
attachment_legend: "(Optional) Add an attachment"
|
340
|
+
created_in_meeting: This proposal comes from a meeting
|
310
341
|
select_a_category: Select a category
|
342
|
+
select_a_meeting: Select a meeting
|
311
343
|
index:
|
312
344
|
actions: Actions
|
313
345
|
cancel: Cancel
|
@@ -364,6 +396,23 @@ en:
|
|
364
396
|
not_answered: Not answered
|
365
397
|
rejected: Rejected
|
366
398
|
withdrawn: Withdrawn
|
399
|
+
application_helper:
|
400
|
+
filter_origin_values:
|
401
|
+
all: All
|
402
|
+
citizens: Citizens
|
403
|
+
meetings: Meetings
|
404
|
+
official: Official
|
405
|
+
user_groups: User groups
|
406
|
+
filter_state_values:
|
407
|
+
accepted: Accepted
|
408
|
+
all: All
|
409
|
+
evaluating: Evaluating
|
410
|
+
except_rejected: All except rejected
|
411
|
+
rejected: Rejected
|
412
|
+
filter_type_values:
|
413
|
+
all: All
|
414
|
+
amendments: Amendments
|
415
|
+
proposals: Proposals
|
367
416
|
collaborative_drafts:
|
368
417
|
collaborative_draft:
|
369
418
|
publish:
|
@@ -388,24 +437,24 @@ en:
|
|
388
437
|
no_similars_found: Well done! No similar collaborative drafts found
|
389
438
|
title: Similar collaborative drafts
|
390
439
|
complete:
|
391
|
-
attachment_legend: "(Optional) Add an attachment"
|
392
|
-
select_a_category: Please select a category
|
393
440
|
send: Send
|
394
441
|
title: Complete your collaborative draft
|
395
442
|
count:
|
396
443
|
drafts_count:
|
397
|
-
one:
|
444
|
+
one: "%{count} collaborative draft"
|
398
445
|
other: "%{count} collaborative draft"
|
399
446
|
create:
|
400
447
|
error: There's been a problem creating this collaborative drafts
|
401
448
|
success: Collaborative draft successfully created.
|
402
449
|
edit:
|
450
|
+
attachment_legend: "(Optional) Add an attachment"
|
403
451
|
back: Back
|
404
452
|
select_a_category: Please select a category
|
405
453
|
send: Send
|
406
454
|
title: Edit collaborative draft
|
407
455
|
filters:
|
408
456
|
all: All
|
457
|
+
amendment: Amendments
|
409
458
|
category: Category
|
410
459
|
category_prompt: Category Prompt
|
411
460
|
open: Open
|
@@ -507,6 +556,13 @@ en:
|
|
507
556
|
votes: Votes
|
508
557
|
new:
|
509
558
|
limit_reached: You can't create new proposals since you've exceeded the limit.
|
559
|
+
participatory_text_proposal:
|
560
|
+
alternative_title: There are no participatory texts at the moment
|
561
|
+
buttons:
|
562
|
+
amend: Amend
|
563
|
+
comment: Comment
|
564
|
+
comments: Comments
|
565
|
+
endorse: Endorse
|
510
566
|
proposal_endorsements:
|
511
567
|
create:
|
512
568
|
error: There's been errors when endorsing the proposal.
|
@@ -532,7 +588,7 @@ en:
|
|
532
588
|
title: Complete your proposal
|
533
589
|
count:
|
534
590
|
proposals_count:
|
535
|
-
one:
|
591
|
+
one: "%{count} proposal"
|
536
592
|
other: "%{count} proposals"
|
537
593
|
edit:
|
538
594
|
attachment_legend: "(Optional) Add an attachment"
|
@@ -550,21 +606,15 @@ en:
|
|
550
606
|
endorsements_card_row:
|
551
607
|
comments: Comments
|
552
608
|
filters:
|
553
|
-
accepted: Accepted
|
554
609
|
activity: Activity
|
555
|
-
all: All
|
556
610
|
category: Category
|
557
611
|
category_prompt: Select a category
|
558
|
-
citizens: Citizens
|
559
|
-
evaluating: Evaluating
|
560
|
-
except_rejected: All except rejected
|
561
|
-
official: Official
|
562
612
|
origin: Origin
|
563
|
-
rejected: Rejected
|
564
613
|
related_to: Related to
|
565
614
|
search: Search
|
566
615
|
state: State
|
567
616
|
voted: Voted
|
617
|
+
amendment_type: Type
|
568
618
|
filters_small_view:
|
569
619
|
close_modal: Close modal
|
570
620
|
filter: Filter
|
@@ -587,6 +637,11 @@ en:
|
|
587
637
|
most_voted: Most voted
|
588
638
|
random: Random
|
589
639
|
recent: Recent
|
640
|
+
participatory_texts:
|
641
|
+
index:
|
642
|
+
document_index: Document index
|
643
|
+
view_index:
|
644
|
+
see_index: See index
|
590
645
|
preview:
|
591
646
|
modify: Modify the proposal
|
592
647
|
proposal_edit_before_minutes:
|
@@ -598,10 +653,11 @@ en:
|
|
598
653
|
creation_date: 'Creation: %{date}'
|
599
654
|
view_proposal: View proposal
|
600
655
|
show:
|
656
|
+
back_to: Back to
|
601
657
|
edit_proposal: Edit proposal
|
602
658
|
endorsements_list: List of Endorsements
|
603
659
|
hidden_endorsers_count:
|
604
|
-
one: and %{count} more
|
660
|
+
one: and %{count} more person
|
605
661
|
other: and %{count} more people
|
606
662
|
link_to_collaborative_draft_help_text: This proposal is the result of a collaborative draft. Review the history
|
607
663
|
link_to_collaborative_draft_text: See the collaborative draft
|
@@ -609,9 +665,6 @@ en:
|
|
609
665
|
proposal_in_evaluation_reason: This proposal is being evaluated
|
610
666
|
proposal_rejected_reason: 'This proposal has been rejected because:'
|
611
667
|
report: Report
|
612
|
-
sign_in: Sign in
|
613
|
-
sign_in_or_up: "%{in} or %{up} to participate"
|
614
|
-
sign_up: sign up
|
615
668
|
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.
|
616
669
|
withdraw_confirmation: Are you sure to withdraw this proposal?
|
617
670
|
withdraw_proposal: Withdraw proposal
|
@@ -672,6 +725,7 @@ en:
|
|
672
725
|
title: Versions
|
673
726
|
stats:
|
674
727
|
back_to_collaborative_draft: Go back to collaborative draft
|
728
|
+
back_to_proposal: Go back to proposal
|
675
729
|
number_of_versions: Versions
|
676
730
|
show_all_versions: Show all versions
|
677
731
|
version_author: Version author
|
data/config/locales/es-PY.yml
CHANGED
@@ -12,11 +12,13 @@ es-PY:
|
|
12
12
|
proposal:
|
13
13
|
answer: Respuesta
|
14
14
|
answered_at: Respondido
|
15
|
+
automatic_hashtags: Hashtags añadidos automáticamente
|
15
16
|
body: Cuerpo
|
16
17
|
category_id: Categoría
|
17
18
|
has_address: Tiene dirección
|
18
19
|
scope_id: Ámbito
|
19
20
|
state: Estado
|
21
|
+
suggested_hashtags: Hashtags sugeridos
|
20
22
|
title: Título
|
21
23
|
user_group_id: Crear propuesta como
|
22
24
|
proposal_answer:
|
@@ -69,6 +71,7 @@ es-PY:
|
|
69
71
|
name: Propuestas
|
70
72
|
settings:
|
71
73
|
global:
|
74
|
+
amendments_enabled: Enmiendas habilitadas
|
72
75
|
announcement: Anuncio
|
73
76
|
attachments_allowed: Permitir archivos adjuntos
|
74
77
|
can_accumulate_supports_beyond_threshold: Puede acumular apoyos más allá del umbral
|
@@ -92,11 +95,13 @@ es-PY:
|
|
92
95
|
vote_limit: Límite de voto por usuario
|
93
96
|
step:
|
94
97
|
announcement: Anuncio
|
98
|
+
automatic_hashtags: Hashtags añadidos a todas las propuestas.
|
95
99
|
comments_blocked: Comentarios bloqueados
|
96
100
|
creation_enabled: Creación de propuesta habilitada
|
97
101
|
endorsements_blocked: Adhesiones bloqueados
|
98
102
|
endorsements_enabled: Adhesiones habilitados
|
99
103
|
proposal_answering_enabled: Contestación de propuesta habilitada
|
104
|
+
suggested_hashtags: Hashtags sugeridos a los usuarios para nuevas propuestas.
|
100
105
|
votes_blocked: Votación bloqueada
|
101
106
|
votes_enabled: Votación habilitada
|
102
107
|
votes_hidden: Votos ocultos (si los votos están habilitados, marcar esto ocultará el número de votos)
|
@@ -143,39 +148,58 @@ es-PY:
|
|
143
148
|
email_subject: La adhesión de propuestas ha comenzado para %{participatory_space_title}
|
144
149
|
notification_title: Ahora puedes comenzar a <a href="%{resource_path}">adherirte propuestas</a> en <a href="%{participatory_space_url}">%{participatory_space_title}</a>
|
145
150
|
proposal_accepted:
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
151
|
+
affected_user:
|
152
|
+
email_intro: 'Su propuesta "%{resource_title}" ha sido aceptada. Puedes leer la respuesta en esta página:'
|
153
|
+
email_outro: Has recibido esta notificación porque eres autor de "%{resource_title}".
|
154
|
+
email_subject: Su propuesta ha sido aceptada.
|
155
|
+
notification_title: Su propuesta <a href="%{resource_path}">%{resource_title}</a> ha sido aceptada.
|
156
|
+
follower:
|
157
|
+
email_intro: 'La propuesta "%{resource_title}" ha sido aceptada. Puedes leer la respuesta en esta página:'
|
158
|
+
email_outro: Has recibido esta notificación porque sigues "%{resource_title}". Puedes dejar de seguirlo en el enlace anterior.
|
159
|
+
email_subject: Una propuesta que estás siguiendo ha sido aceptada
|
160
|
+
notification_title: La propuesta <a href="%{resource_path}">%{resource_title}</a> ha sido aceptada.
|
150
161
|
proposal_endorsed:
|
151
|
-
email_intro:
|
162
|
+
email_intro: '%{endorser_name} %{endorser_nickname}, a quien está siguiendo, acaba de respaldar la propuesta "%{resource_title}" y creemos que puede ser interesante para usted. Échale un vistazo y contribuye:'
|
152
163
|
email_outro: Recibió esta notificación porque está siguiendo %{endorser_nickname}. Puede dejar de recibir notificaciones siguiendo el enlace anterior.
|
153
164
|
email_subject: "%{endorser_nickname} ha reivindicado una nueva propuesta"
|
154
165
|
notification_title: La propuesta <a href="%{resource_path}">%{resource_title}</a> ha sido reivindicada por <a href="%{endorser_path}">%{endorser_name} %{endorser_nickname}</a>.
|
155
166
|
proposal_evaluating:
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
167
|
+
affected_user:
|
168
|
+
email_intro: 'Su propuesta "%{resource_title}" está siendo evaluada. Puedes buscar una respuesta en esta página:'
|
169
|
+
email_outro: Has recibido esta notificación porque eres autor de "%{resource_title}".
|
170
|
+
email_subject: Tu propuesta esta siendo evaluada
|
171
|
+
notification_title: Su propuesta <a href="%{resource_path}">%{resource_title}</a> está siendo evaluada.
|
172
|
+
follower:
|
173
|
+
email_intro: 'La propuesta "%{resource_title}" se está evaluando actualmente. Puedes encontrar la respuesta en esta página:'
|
174
|
+
email_outro: Has recibido esta notificación porque sigues "%{resource_title}". Puedes dejar de seguirlo en el enlace anterior.
|
175
|
+
email_subject: Una propuesta que estás siguiendo está siendo evaluada
|
176
|
+
notification_title: La propuesta <a href="%{resource_path}">%{resource_title}</a> está siendo evaluada.
|
160
177
|
proposal_mentioned:
|
161
178
|
email_intro: Su propuesta "%{mentioned_proposal_title}" se ha mencionado <a href="%{resource_path}">en este espacio</a> en los comentarios.
|
179
|
+
email_outro: Has recibido esta notificación porque eres autor de "%{resource_title}".
|
162
180
|
email_subject: Su propuesta "%{mentioned_proposal_title}" ha sido mencionada
|
163
181
|
notification_title: Su propuesta "%{mentioned_proposal_title}" se ha mencionado <a href="%{resource_path}">en este espacio</a> en los comentarios.
|
164
182
|
proposal_published:
|
165
|
-
email_intro:
|
183
|
+
email_intro: '%{author_name} %{author_nickname}, a quien sigues, ha publicado una nueva propuesta llamada "%{resource_title}". Échale un vistazo y contribuye:'
|
166
184
|
email_outro: Recibiste esta notificación porque estás siguiendo %{author_nickname}. Puedes dejar de recibir notificaciones desde el enlace anterior.
|
167
|
-
email_subject: Nueva propuesta
|
185
|
+
email_subject: Nueva propuesta "%{resource_title}" por %{author_nickname}
|
168
186
|
notification_title: La propuesta <a href="%{resource_path}">%{resource_title}</a> fue publicada por <a href="%{author_path}">%{author_name} %{author_nickname}</a>.
|
169
187
|
proposal_published_for_space:
|
170
188
|
email_intro: La propuesta "%{resource_title}" se ha añadido a "%{participatory_space_title}" que estás siguiendo.
|
171
189
|
email_outro: Recibiste esta notificación porque estás siguiendo "%{participatory_space_title}". Puedes dejar de seguirlo desde el enlace anterior.
|
172
|
-
email_subject: Nueva propuesta añadida a %{participatory_space_title}
|
190
|
+
email_subject: Nueva propuesta "%{resource_title}" añadida a %{participatory_space_title}
|
173
191
|
notification_title: La propuesta <a href="%{resource_path}">%{resource_title}</a> se ha agregado a %{participatory_space_title}
|
174
192
|
proposal_rejected:
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
193
|
+
affected_user:
|
194
|
+
email_intro: 'Su propuesta "%{resource_title}" ha sido rechazada. Puedes leer la respuesta en esta página:'
|
195
|
+
email_outro: Has recibido esta notificación porque eres autor de "%{resource_title}".
|
196
|
+
email_subject: Su propuesta ha sido rechazada
|
197
|
+
notification_title: Su propuesta <a href="%{resource_path}">%{resource_title}</a> ha sido rechazada.
|
198
|
+
follower:
|
199
|
+
email_intro: 'La propuesta "%{resource_title}" ha sido rechazada. Puedes leer la respuesta en esta página:'
|
200
|
+
email_outro: Has recibido esta notificación porque sigues "%{resource_title}". Puedes dejar de seguirlo en el enlace anterior.
|
201
|
+
email_subject: Una propuesta que estás siguiendo ha sido rechazada
|
202
|
+
notification_title: La propuesta <a href="%{resource_path}">%{resource_title}</a> ha sido rechazada.
|
179
203
|
proposal_update_category:
|
180
204
|
email_intro: 'Un/a administrador/a ha actualizado la categoría de tu propuesta "%{resource_title}", compruébalo:'
|
181
205
|
email_outro: Recibiste esta notificación porque eres autor/a de la propuesta.
|
@@ -223,12 +247,19 @@ es-PY:
|
|
223
247
|
unearned_own: Aún no has creado propuestas.
|
224
248
|
metrics:
|
225
249
|
accepted_proposals:
|
250
|
+
description: Número de propuestas aceptadas por los usuarios.
|
226
251
|
object: propuestas
|
227
252
|
title: Propuestas aceptadas
|
253
|
+
endorsements:
|
254
|
+
description: Número de avales generados en las propuestas.
|
255
|
+
object: avales
|
256
|
+
title: Endosos
|
228
257
|
proposals:
|
258
|
+
description: Número de propuestas generadas
|
229
259
|
object: propuestas
|
230
260
|
title: Propuestas
|
231
261
|
votes:
|
262
|
+
description: Número de votos generados en las propuestas por los usuarios.
|
232
263
|
object: votos
|
233
264
|
title: Votos
|
234
265
|
participatory_processes:
|
@@ -237,8 +268,7 @@ es-PY:
|
|
237
268
|
proposals: Propuestas
|
238
269
|
participatory_spaces:
|
239
270
|
highlighted_proposals:
|
240
|
-
|
241
|
-
see_all_proposals: Ver todas las propuestas
|
271
|
+
see_all: Ver todo (%{count})
|
242
272
|
proposals:
|
243
273
|
actions:
|
244
274
|
answer: Respuesta
|
@@ -307,7 +337,9 @@ es-PY:
|
|
307
337
|
update: Actualizar
|
308
338
|
form:
|
309
339
|
attachment_legend: "(Opcional) Añadir un archivo adjunto"
|
340
|
+
created_in_meeting: Esta propuesta viene de una reunión.
|
310
341
|
select_a_category: Seleccione una categoría
|
342
|
+
select_a_meeting: Seleccione una reunion
|
311
343
|
index:
|
312
344
|
actions: Acciones
|
313
345
|
cancel: Cancelar
|
@@ -364,6 +396,23 @@ es-PY:
|
|
364
396
|
not_answered: No contestada
|
365
397
|
rejected: Rechazada
|
366
398
|
withdrawn: Retirado
|
399
|
+
application_helper:
|
400
|
+
filter_origin_values:
|
401
|
+
all: Todos
|
402
|
+
citizens: Ciudadanía
|
403
|
+
meetings: Reuniones
|
404
|
+
official: Oficial
|
405
|
+
user_groups: Grupos de Usuarios
|
406
|
+
filter_state_values:
|
407
|
+
accepted: Aceptado
|
408
|
+
all: Todos
|
409
|
+
evaluating: Evaluando
|
410
|
+
except_rejected: Todos excepto rechazados
|
411
|
+
rejected: Rechazado
|
412
|
+
filter_type_values:
|
413
|
+
all: Todos
|
414
|
+
amendments: Enmiendas
|
415
|
+
proposals: Propuestas
|
367
416
|
collaborative_drafts:
|
368
417
|
collaborative_draft:
|
369
418
|
publish:
|
@@ -388,24 +437,24 @@ es-PY:
|
|
388
437
|
no_similars_found: '¡Enhorabuena! No se encontraron borradores colaborativos similares'
|
389
438
|
title: Borradores colaborativos similares
|
390
439
|
complete:
|
391
|
-
attachment_legend: "(Opcional) Añadir un archivo adjunto"
|
392
|
-
select_a_category: Por favor, seleccione una categoría
|
393
440
|
send: Enviar
|
394
441
|
title: Completa tu borrador colaborativo
|
395
442
|
count:
|
396
443
|
drafts_count:
|
397
|
-
one:
|
444
|
+
one: "%{count} borrador colaborativo"
|
398
445
|
other: "%{count} borrador colaborativo"
|
399
446
|
create:
|
400
447
|
error: Ha habido un problema al crear este borradores colaborativo
|
401
448
|
success: Borrador colaborativo creado con éxito.
|
402
449
|
edit:
|
450
|
+
attachment_legend: "(Opcional) Añadir un archivo adjunto"
|
403
451
|
back: Volver
|
404
452
|
select_a_category: Por favor seleccione una categoría
|
405
453
|
send: Enviar
|
406
454
|
title: Editar borrador colaborativo
|
407
455
|
filters:
|
408
456
|
all: Todas
|
457
|
+
amendment: Enmiendas
|
409
458
|
category: Categoría
|
410
459
|
category_prompt: Aviso de categoría
|
411
460
|
open: Abierto
|
@@ -507,6 +556,13 @@ es-PY:
|
|
507
556
|
votes: Votos
|
508
557
|
new:
|
509
558
|
limit_reached: No puedes crear nuevas propuestas ya que has superado el límite.
|
559
|
+
participatory_text_proposal:
|
560
|
+
alternative_title: No hay textos participativos por el momento
|
561
|
+
buttons:
|
562
|
+
amend: Enmendar
|
563
|
+
comment: Comentario
|
564
|
+
comments: Comentarios
|
565
|
+
endorse: Endosar
|
510
566
|
proposal_endorsements:
|
511
567
|
create:
|
512
568
|
error: Ha habido errores al adherirse a la propuesta.
|
@@ -532,7 +588,7 @@ es-PY:
|
|
532
588
|
title: Completa tu propuesta
|
533
589
|
count:
|
534
590
|
proposals_count:
|
535
|
-
one:
|
591
|
+
one: "%{count} propuesta"
|
536
592
|
other: "%{count} propuestas"
|
537
593
|
edit:
|
538
594
|
attachment_legend: "(Opcional) Agregar un archivo adjunto"
|
@@ -550,21 +606,15 @@ es-PY:
|
|
550
606
|
endorsements_card_row:
|
551
607
|
comments: Comentarios
|
552
608
|
filters:
|
553
|
-
accepted: Aceptada
|
554
609
|
activity: Actividad
|
555
|
-
all: Todas
|
556
610
|
category: Categoría
|
557
611
|
category_prompt: Selecciona una categoría
|
558
|
-
citizens: Ciudadanía
|
559
|
-
evaluating: En evaluación
|
560
|
-
except_rejected: Todos excepto rechazados
|
561
|
-
official: Oficial
|
562
612
|
origin: Origen
|
563
|
-
rejected: Rechazada
|
564
613
|
related_to: Relacionado con
|
565
614
|
search: Buscar
|
566
615
|
state: Estado
|
567
616
|
voted: Votado
|
617
|
+
amendment_type: Tipo
|
568
618
|
filters_small_view:
|
569
619
|
close_modal: Cerrar ventana
|
570
620
|
filter: Filtrar
|
@@ -587,6 +637,11 @@ es-PY:
|
|
587
637
|
most_voted: Más votado
|
588
638
|
random: Aleatorio
|
589
639
|
recent: Reciente
|
640
|
+
participatory_texts:
|
641
|
+
index:
|
642
|
+
document_index: Índice de documentos
|
643
|
+
view_index:
|
644
|
+
see_index: Ver índice
|
590
645
|
preview:
|
591
646
|
modify: Modificar la propuesta
|
592
647
|
proposal_edit_before_minutes:
|
@@ -598,10 +653,11 @@ es-PY:
|
|
598
653
|
creation_date: 'Creación: %{date}'
|
599
654
|
view_proposal: Ver propuesta
|
600
655
|
show:
|
656
|
+
back_to: De regreso
|
601
657
|
edit_proposal: Editar propuesta
|
602
658
|
endorsements_list: Lista de adhesiones
|
603
659
|
hidden_endorsers_count:
|
604
|
-
one: y
|
660
|
+
one: y %{count} persona más
|
605
661
|
other: y %{count} personas más
|
606
662
|
link_to_collaborative_draft_help_text: Esta propuesta es el resultado de un borrador colaborativo. Revisa el historial
|
607
663
|
link_to_collaborative_draft_text: Ver el borrador colaborativo
|
@@ -609,9 +665,6 @@ es-PY:
|
|
609
665
|
proposal_in_evaluation_reason: Esta propuesta está siendo evaluada
|
610
666
|
proposal_rejected_reason: 'Esta propuesta ha sido rechazada porque:'
|
611
667
|
report: Denunciar
|
612
|
-
sign_in: Registrarse
|
613
|
-
sign_in_or_up: "%{in} o %{up} para participar"
|
614
|
-
sign_up: Regístrate
|
615
668
|
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.
|
616
669
|
withdraw_confirmation: '¿Seguro que quieres retirar esta propuesta?'
|
617
670
|
withdraw_proposal: Retirar propuesta
|
@@ -672,6 +725,7 @@ es-PY:
|
|
672
725
|
title: Versiones
|
673
726
|
stats:
|
674
727
|
back_to_collaborative_draft: Volver al borrador colaborativo
|
728
|
+
back_to_proposal: Volver a propuesta
|
675
729
|
number_of_versions: Versiones
|
676
730
|
show_all_versions: Mostrar todas las versiones
|
677
731
|
version_author: Autor de la versión
|