decidim-proposals 0.19.0 → 0.22.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/config/admin/decidim_proposals_manifest.js +1 -0
- data/app/assets/images/decidim/gamification/badges/accepted_proposals.svg +1 -234
- data/app/assets/images/decidim/gamification/badges/proposal_votes.svg +1 -95
- data/app/assets/images/decidim/gamification/badges/proposals.svg +1 -229
- data/app/assets/images/decidim/proposals/icon.svg +1 -3
- data/app/assets/javascripts/decidim/proposals/admin/proposals.es6 +24 -11
- data/app/assets/javascripts/decidim/proposals/admin/proposals_form.js.es6 +0 -5
- data/app/assets/javascripts/decidim/proposals/admin/proposals_picker.js.es6 +35 -0
- data/app/cells/decidim/proposals/collaborative_draft_link_to_proposal_cell.rb +1 -1
- data/app/cells/decidim/proposals/collaborative_draft_m/footer.erb +1 -1
- data/app/cells/decidim/proposals/collaborative_draft_m_cell.rb +1 -1
- data/app/cells/decidim/proposals/cost_report/show.erb +35 -0
- data/app/cells/decidim/proposals/cost_report_cell.rb +42 -0
- data/app/cells/decidim/proposals/highlighted_proposals_for_component/show.erb +3 -3
- data/app/cells/decidim/proposals/highlighted_proposals_for_component_cell.rb +1 -1
- data/app/cells/decidim/proposals/irreversible_action_modal/show.erb +2 -2
- data/app/cells/decidim/proposals/irreversible_action_modal_cell.rb +1 -1
- data/app/cells/decidim/proposals/participatory_text_proposal/buttons.erb +1 -1
- data/app/cells/decidim/proposals/participatory_text_proposal_cell.rb +1 -1
- data/app/cells/decidim/proposals/proposal_m/footer.erb +4 -1
- data/app/cells/decidim/proposals/proposal_m_cell.rb +37 -9
- data/app/cells/decidim/proposals/proposal_tags/show.erb +18 -10
- data/app/cells/decidim/proposals/proposal_tags_cell.rb +5 -0
- data/app/cells/decidim/proposals/proposals_picker/proposals.erb +12 -0
- data/app/cells/decidim/proposals/proposals_picker/show.erb +14 -0
- data/app/cells/decidim/proposals/proposals_picker_cell.rb +72 -0
- data/app/commands/decidim/proposals/admin/answer_proposal.rb +24 -46
- data/app/commands/decidim/proposals/admin/assign_proposals_to_valuator.rb +61 -0
- data/app/commands/decidim/proposals/admin/create_proposal.rb +6 -1
- data/app/commands/decidim/proposals/admin/create_proposal_note.rb +15 -0
- data/app/commands/decidim/proposals/admin/notify_proposal_answer.rb +85 -0
- data/app/commands/decidim/proposals/admin/publish_answers.rb +67 -0
- data/app/commands/decidim/proposals/admin/unassign_proposals_from_valuator.rb +62 -0
- data/app/commands/decidim/proposals/admin/update_proposal.rb +1 -1
- data/app/commands/decidim/proposals/admin/update_proposal_scope.rb +75 -0
- data/app/commands/decidim/proposals/create_collaborative_draft.rb +1 -1
- data/app/commands/decidim/proposals/create_proposal.rb +1 -1
- data/app/commands/decidim/proposals/gallery_methods.rb +2 -51
- data/app/commands/decidim/proposals/update_proposal.rb +1 -1
- data/app/controllers/concerns/decidim/proposals/admin/filterable.rb +82 -0
- data/app/controllers/concerns/decidim/proposals/admin/picker.rb +21 -0
- data/app/controllers/concerns/decidim/proposals/orderable.rb +13 -2
- data/app/controllers/decidim/proposals/admin/proposal_answers_controller.rb +16 -6
- data/app/controllers/decidim/proposals/admin/proposal_notes_controller.rb +8 -9
- data/app/controllers/decidim/proposals/admin/proposals_controller.rb +105 -29
- data/app/controllers/decidim/proposals/admin/valuation_assignments_controller.rb +58 -0
- data/app/controllers/decidim/proposals/collaborative_drafts_controller.rb +19 -3
- data/app/controllers/decidim/proposals/proposals_controller.rb +45 -11
- data/app/controllers/decidim/proposals/versions_controller.rb +9 -16
- data/app/events/decidim/proposals/admin/proposal_note_created_event.rb +27 -0
- data/app/events/decidim/proposals/admin/update_proposal_scope_event.rb +11 -0
- data/app/forms/decidim/proposals/admin/participatory_text_proposal_form.rb +13 -0
- data/app/forms/decidim/proposals/admin/preview_participatory_text_form.rb +2 -2
- data/app/forms/decidim/proposals/admin/proposal_answer_form.rb +27 -2
- data/app/forms/decidim/proposals/admin/proposal_base_form.rb +129 -0
- data/app/forms/decidim/proposals/admin/proposal_form.rb +2 -120
- data/app/forms/decidim/proposals/admin/valuation_assignment_form.rb +37 -0
- data/app/forms/decidim/proposals/proposal_form.rb +4 -0
- data/app/forms/decidim/proposals/proposal_wizard_create_step_form.rb +13 -1
- data/app/helpers/decidim/proposals/admin/filterable_helper.rb +17 -0
- data/app/helpers/decidim/proposals/admin/proposal_bulk_actions_helper.rb +35 -0
- data/app/helpers/decidim/proposals/admin/proposal_rankings_helper.rb +63 -0
- data/app/helpers/decidim/proposals/admin/proposals_helper.rb +122 -0
- data/app/helpers/decidim/proposals/admin/proposals_picker_helper.rb +30 -0
- data/app/helpers/decidim/proposals/application_helper.rb +51 -30
- data/app/helpers/decidim/proposals/collaborative_draft_helper.rb +9 -9
- data/app/helpers/decidim/proposals/control_version_helper.rb +1 -37
- data/app/helpers/decidim/proposals/proposal_cells_helper.rb +1 -1
- data/app/helpers/decidim/proposals/proposal_endorsements_helper.rb +0 -145
- data/app/helpers/decidim/proposals/proposal_votes_helper.rb +2 -2
- data/app/helpers/decidim/proposals/proposal_wizard_helper.rb +24 -7
- data/app/helpers/decidim/proposals/proposals_helper.rb +66 -0
- data/app/models/decidim/proposals/proposal.rb +167 -29
- data/app/models/decidim/proposals/valuation_assignment.rb +24 -0
- data/app/permissions/decidim/proposals/admin/permissions.rb +77 -11
- data/app/permissions/decidim/proposals/permissions.rb +1 -22
- data/app/presenters/decidim/proposals/admin_log/proposal_presenter.rb +1 -1
- data/app/presenters/decidim/proposals/admin_log/valuation_assignment_presenter.rb +51 -0
- data/app/presenters/decidim/proposals/admin_log/value_types/valuator_role_user_presenter.rb +19 -0
- data/app/presenters/decidim/proposals/collaborative_draft_presenter.rb +2 -28
- data/app/presenters/decidim/proposals/log/valuation_assignment_presenter.rb +22 -0
- data/app/presenters/decidim/proposals/proposal_presenter.rb +41 -10
- data/app/queries/decidim/proposals/metrics/accepted_proposals_metric_manage.rb +1 -2
- data/app/queries/decidim/proposals/metrics/endorsements_metric_manage.rb +15 -12
- data/app/queries/decidim/proposals/metrics/proposal_participants_metric_measure.rb +5 -4
- data/app/queries/decidim/proposals/metrics/proposals_metric_manage.rb +2 -8
- data/app/queries/decidim/proposals/metrics/votes_metric_manage.rb +3 -9
- data/app/services/decidim/proposals/collaborative_draft_search.rb +18 -10
- data/app/services/decidim/proposals/diff_renderer.rb +2 -0
- data/app/services/decidim/proposals/proposal_builder.rb +1 -1
- data/app/services/decidim/proposals/proposal_search.rb +45 -47
- data/app/types/decidim/proposals/proposal_input_filter.rb +29 -0
- data/app/types/decidim/proposals/proposal_input_sort.rb +22 -0
- data/app/types/decidim/proposals/proposal_type.rb +32 -11
- data/app/types/decidim/proposals/proposals_type.rb +22 -15
- data/app/validators/proposal_length_validator.rb +38 -0
- data/app/views/decidim/proposals/admin/participatory_texts/index.html.erb +9 -1
- data/app/views/decidim/proposals/admin/proposal_answers/_form.html.erb +35 -0
- data/app/views/decidim/proposals/admin/proposal_notes/_form.html.erb +1 -1
- data/app/views/decidim/proposals/admin/proposal_notes/_proposal_notes.html.erb +3 -3
- data/app/views/decidim/proposals/admin/proposals/_bulk-actions.html.erb +8 -2
- data/app/views/decidim/proposals/admin/proposals/_form.html.erb +4 -24
- data/app/views/decidim/proposals/admin/proposals/_proposal-tr.html.erb +25 -17
- data/app/views/decidim/proposals/admin/proposals/bulk_actions/_assign_to_valuator.html.erb +15 -0
- data/app/views/decidim/proposals/admin/proposals/bulk_actions/_dropdown.html.erb +21 -1
- data/app/views/decidim/proposals/admin/proposals/bulk_actions/_publish_answers.html.erb +14 -0
- data/app/views/decidim/proposals/admin/proposals/bulk_actions/_scope-change.html.erb +25 -0
- data/app/views/decidim/proposals/admin/proposals/bulk_actions/_unassign_from_valuator.html.erb +15 -0
- data/app/views/decidim/proposals/admin/proposals/index.html.erb +16 -7
- data/app/views/decidim/proposals/admin/proposals/publish_answers.js.erb +12 -0
- data/app/views/decidim/proposals/admin/proposals/show.html.erb +186 -0
- data/app/views/decidim/proposals/admin/proposals/update_category.js.erb +3 -2
- data/app/views/decidim/proposals/admin/proposals/update_scope.js.erb +27 -0
- data/app/views/decidim/proposals/collaborative_drafts/_edit_form_fields.html.erb +6 -4
- data/app/views/decidim/proposals/collaborative_drafts/_filters.html.erb +9 -7
- data/app/views/decidim/proposals/collaborative_drafts/_new_collaborative_draft_button.html.erb +4 -4
- data/app/views/decidim/proposals/collaborative_drafts/_reject_request_access_form.html.erb +1 -1
- data/app/views/decidim/proposals/collaborative_drafts/_wizard_aside.html.erb +4 -2
- data/app/views/decidim/proposals/collaborative_drafts/compare.html.erb +2 -0
- data/app/views/decidim/proposals/collaborative_drafts/complete.html.erb +2 -0
- data/app/views/decidim/proposals/collaborative_drafts/edit.html.erb +3 -1
- data/app/views/decidim/proposals/collaborative_drafts/index.html.erb +4 -2
- data/app/views/decidim/proposals/collaborative_drafts/new.html.erb +4 -0
- data/app/views/decidim/proposals/collaborative_drafts/show.html.erb +29 -30
- data/app/views/decidim/proposals/proposals/_edit_form_fields.html.erb +6 -4
- data/app/views/decidim/proposals/proposals/_endorsements_card_row.html.erb +0 -16
- data/app/views/decidim/proposals/proposals/_filters.html.erb +19 -17
- data/app/views/decidim/proposals/proposals/_proposal_badge.html.erb +1 -4
- data/app/views/decidim/proposals/proposals/_proposal_preview.html.erb +1 -11
- data/app/views/decidim/proposals/proposals/_proposal_similar.html.erb +2 -2
- data/app/views/decidim/proposals/proposals/_proposals.html.erb +14 -0
- data/app/views/decidim/proposals/proposals/_vote_button.html.erb +14 -7
- data/app/views/decidim/proposals/proposals/_wizard_aside.html.erb +4 -2
- data/app/views/decidim/proposals/proposals/_wizard_header.html.erb +4 -3
- data/app/views/decidim/proposals/proposals/compare.html.erb +2 -0
- data/app/views/decidim/proposals/proposals/complete.html.erb +2 -0
- data/app/views/decidim/proposals/proposals/edit.html.erb +3 -1
- data/app/views/decidim/proposals/proposals/edit_draft.html.erb +2 -0
- data/app/views/decidim/proposals/proposals/index.html.erb +7 -12
- data/app/views/decidim/proposals/proposals/new.html.erb +6 -2
- data/app/views/decidim/proposals/proposals/participatory_texts/_index.html.erb +1 -1
- data/app/views/decidim/proposals/proposals/participatory_texts/_proposal_vote_button.html.erb +10 -3
- data/app/views/decidim/proposals/proposals/participatory_texts/_view_index.html.erb +1 -1
- data/app/views/decidim/proposals/proposals/preview.html.erb +7 -8
- data/app/views/decidim/proposals/proposals/show.html.erb +62 -71
- data/app/views/decidim/proposals/versions/index.html.erb +14 -32
- data/app/views/decidim/proposals/versions/show.html.erb +16 -34
- data/config/locales/ar.yml +74 -66
- data/config/locales/bg-BG.yml +237 -0
- data/config/locales/ca.yml +173 -65
- data/config/locales/cs.yml +187 -79
- data/config/locales/da-DK.yml +1 -0
- data/config/locales/de.yml +266 -162
- data/config/locales/el-GR.yml +1 -0
- data/config/locales/el.yml +876 -0
- data/config/locales/en.yml +179 -71
- data/config/locales/es-MX.yml +173 -63
- data/config/locales/es-PY.yml +173 -63
- data/config/locales/es.yml +173 -65
- data/config/locales/et-EE.yml +1 -0
- data/config/locales/eu.yml +43 -63
- data/config/locales/fi-plain.yml +173 -65
- data/config/locales/fi.yml +215 -107
- data/config/locales/fr-CA.yml +876 -0
- data/config/locales/fr.yml +151 -65
- data/config/locales/ga-IE.yml +1 -0
- data/config/locales/gl.yml +43 -63
- data/config/locales/hr-HR.yml +1 -0
- data/config/locales/hu.yml +153 -75
- data/config/locales/id-ID.yml +43 -62
- data/config/locales/is-IS.yml +274 -0
- data/config/locales/it.yml +172 -82
- data/config/locales/ja-JP.yml +886 -0
- data/config/locales/lt-LT.yml +1 -0
- data/config/locales/lv-LV.yml +858 -0
- data/config/locales/mt-MT.yml +1 -0
- data/config/locales/nl.yml +274 -188
- data/config/locales/no.yml +786 -0
- data/config/locales/pl.yml +194 -66
- data/config/locales/pt-BR.yml +44 -67
- data/config/locales/pt.yml +437 -331
- data/config/locales/ro-RO.yml +840 -0
- data/config/locales/ru.yml +14 -47
- data/config/locales/sk-SK.yml +896 -0
- data/config/locales/sk.yml +869 -0
- data/config/locales/sl.yml +26 -0
- data/config/locales/sr-CS.yml +126 -0
- data/config/locales/sv.yml +253 -162
- data/config/locales/tr-TR.yml +43 -63
- data/config/locales/uk.yml +14 -47
- data/db/migrate/20181003074440_fix_user_groups_ids_in_proposals_endorsements.rb +4 -0
- data/db/migrate/20191206154128_add_endorsements_counter_cache_to_proposals.rb +7 -0
- data/db/migrate/20200120215928_move_proposal_endorsements_to_core_endorsements.rb +52 -0
- data/db/migrate/20200203111239_add_proposal_valuation_assignments.rb +12 -0
- data/db/migrate/20200210135152_add_costs_to_proposals.rb +9 -0
- data/db/migrate/20200212120110_sync_proposals_state_with_amendments_state.rb +28 -0
- data/db/migrate/20200227175922_add_state_published_at_to_proposals.rb +7 -0
- data/db/migrate/20200306123652_publish_existing_proposals_state.rb +15 -0
- data/db/migrate/20200730131631_move_proposal_endorsed_event_notifications_to_resource_endorsed_event.rb +20 -0
- data/lib/decidim/proposals.rb +1 -0
- data/lib/decidim/proposals/admin_engine.rb +7 -3
- data/lib/decidim/proposals/component.rb +47 -23
- data/lib/decidim/proposals/engine.rb +2 -6
- data/lib/decidim/proposals/test/capybara_proposals_picker.rb +49 -0
- data/lib/decidim/proposals/test/factories.rb +56 -10
- data/lib/decidim/proposals/valuatable.rb +21 -0
- data/lib/decidim/proposals/version.rb +1 -1
- metadata +94 -53
- data/app/assets/javascripts/decidim/proposals/identity_selector_dialog.js.es6 +0 -56
- data/app/cells/decidim/proposals/endorsers_list/show.erb +0 -17
- data/app/cells/decidim/proposals/endorsers_list_cell.rb +0 -31
- data/app/commands/decidim/proposals/attachment_methods.rb +0 -43
- data/app/commands/decidim/proposals/endorse_proposal.rb +0 -59
- data/app/commands/decidim/proposals/unendorse_proposal.rb +0 -40
- data/app/controllers/decidim/proposals/proposal_endorsements_controller.rb +0 -60
- data/app/models/decidim/proposals/proposal_endorsement.rb +0 -37
- data/app/views/decidim/proposals/admin/proposal_answers/edit.html.erb +0 -22
- data/app/views/decidim/proposals/admin/proposal_notes/index.html.erb +0 -3
- data/app/views/decidim/proposals/admin/shared/_info_proposal.html.erb +0 -20
- data/app/views/decidim/proposals/proposal_endorsements/_identity.html.erb +0 -9
- data/app/views/decidim/proposals/proposal_endorsements/identities.html.erb +0 -12
- data/app/views/decidim/proposals/proposal_endorsements/update_buttons_and_counters.js.erb +0 -20
- data/app/views/decidim/proposals/proposal_widgets/show.html.erb +0 -4
- data/app/views/decidim/proposals/proposals/_endorsement_button.html.erb +0 -11
- data/app/views/decidim/proposals/proposals/_endorsement_identities_cabin.html.erb +0 -13
- data/app/views/decidim/proposals/versions/_version.html.erb +0 -20
data/config/locales/en.yml
CHANGED
@@ -8,6 +8,7 @@ en:
|
|
8
8
|
category_id: Category
|
9
9
|
decidim_scope_id: Scope
|
10
10
|
has_address: Has address
|
11
|
+
scope_id: Scope
|
11
12
|
state: State
|
12
13
|
title: Title
|
13
14
|
user_group_id: Create collaborative draft as
|
@@ -18,6 +19,7 @@ en:
|
|
18
19
|
automatic_hashtags: Hashtags automatically added
|
19
20
|
body: Body
|
20
21
|
category_id: Category
|
22
|
+
decidim_scope_id: Scope
|
21
23
|
has_address: Has address
|
22
24
|
scope_id: Scope
|
23
25
|
state: State
|
@@ -32,6 +34,9 @@ en:
|
|
32
34
|
proposals_import:
|
33
35
|
import_proposals: Import proposals
|
34
36
|
keep_authors: Keep original authors
|
37
|
+
valuation_assignment:
|
38
|
+
admin_log:
|
39
|
+
valuator_role_id: Valuator name
|
35
40
|
errors:
|
36
41
|
models:
|
37
42
|
participatory_text:
|
@@ -43,16 +48,17 @@ en:
|
|
43
48
|
attachment:
|
44
49
|
needs_to_be_reattached: Needs to be reattached
|
45
50
|
body:
|
51
|
+
cant_be_equal_to_template: cannot be equal to the template
|
46
52
|
identical: AND title cannot be identical
|
47
53
|
title:
|
48
54
|
identical: AND body cannot be identical
|
49
55
|
models:
|
50
56
|
decidim/proposals/accepted_proposal_event: Proposal accepted
|
51
57
|
decidim/proposals/admin/update_proposal_category_event: Proposal category changed
|
58
|
+
decidim/proposals/admin/update_proposal_scope_event: Proposal scope changed
|
52
59
|
decidim/proposals/creation_enabled_event: Proposal creation enabled
|
53
60
|
decidim/proposals/endorsing_enabled_event: Proposal endorsing enabled
|
54
61
|
decidim/proposals/evaluating_proposal_event: Proposal is being evaluated
|
55
|
-
decidim/proposals/proposal_endorsed_event: Proposal endorsed
|
56
62
|
decidim/proposals/proposal_mentioned_event: Proposal mentioned
|
57
63
|
decidim/proposals/publish_proposal_event: Proposal published
|
58
64
|
decidim/proposals/rejected_proposal_event: Proposal rejected
|
@@ -65,9 +71,6 @@ en:
|
|
65
71
|
decidim/proposals/proposal:
|
66
72
|
one: Proposal
|
67
73
|
other: Proposals
|
68
|
-
decidim/proposals/proposal_endorsement:
|
69
|
-
one: Endorsement
|
70
|
-
other: Endorsements
|
71
74
|
decidim/proposals/proposal_note:
|
72
75
|
one: Note
|
73
76
|
other: Notes
|
@@ -75,6 +78,35 @@ en:
|
|
75
78
|
one: Support
|
76
79
|
other: Supports
|
77
80
|
decidim:
|
81
|
+
admin:
|
82
|
+
filters:
|
83
|
+
proposals:
|
84
|
+
category_id_eq:
|
85
|
+
label: Category
|
86
|
+
is_emendation_true:
|
87
|
+
label: Type
|
88
|
+
values:
|
89
|
+
'false': Proposals
|
90
|
+
'true': Amendments
|
91
|
+
scope_id_eq:
|
92
|
+
label: Scope
|
93
|
+
state_eq:
|
94
|
+
label: State
|
95
|
+
values:
|
96
|
+
accepted: Accepted
|
97
|
+
evaluating: Evaluating
|
98
|
+
published: Published
|
99
|
+
rejected: Rejected
|
100
|
+
validating: Technical validation
|
101
|
+
withdrawn: Withdrawn
|
102
|
+
state_null:
|
103
|
+
label: State
|
104
|
+
values:
|
105
|
+
'true': Not answered
|
106
|
+
valuator_role_ids_has:
|
107
|
+
label: Assigned to valuator
|
108
|
+
search_placeholder:
|
109
|
+
id_string_or_title_cont: Search %{collection} by ID or title.
|
78
110
|
components:
|
79
111
|
proposals:
|
80
112
|
actions:
|
@@ -86,6 +118,7 @@ en:
|
|
86
118
|
name: Proposals
|
87
119
|
settings:
|
88
120
|
global:
|
121
|
+
allow_card_image: Allow card image
|
89
122
|
amendments_enabled: Amendments enabled
|
90
123
|
amendments_enabled_help: If active, configure Amendment features for each step.
|
91
124
|
amendments_wizard_help_text: Amendments Wizard help text
|
@@ -96,10 +129,12 @@ en:
|
|
96
129
|
comments_enabled: Comments enabled
|
97
130
|
geocoding_enabled: Geocoding enabled
|
98
131
|
minimum_votes_per_user: Minimum supports per user
|
132
|
+
new_proposal_body_template: New proposal body template
|
133
|
+
new_proposal_body_template_help: You can define prefilled text that the new Proposals will have
|
99
134
|
new_proposal_help_text: New proposal help text
|
100
135
|
official_proposals_enabled: Official proposals enabled
|
101
|
-
participatory_texts_disabled_help: Cannot interact with this setting if there are existing proposals. Please, create a new `Proposals component` if you want to enable this feature or discard all imported proposals in the `Participatory Texts` menu if you want to disable it.
|
102
136
|
participatory_texts_enabled: Participatory texts enabled
|
137
|
+
participatory_texts_enabled_readonly: Cannot interact with this setting if there are existing proposals. Please, create a new `Proposals component` if you want to enable this feature or discard all imported proposals in the `Participatory Texts` menu if you want to disable it.
|
103
138
|
proposal_answering_enabled: Proposal answering enabled
|
104
139
|
proposal_edit_before_minutes: Proposals can be edited by authors before this many minutes passes
|
105
140
|
proposal_length: Maximum proposal body length
|
@@ -118,21 +153,32 @@ en:
|
|
118
153
|
amendment_promotion_enabled_help: Emandation authors will be able to promote to Proposal the rejected emendation.
|
119
154
|
amendment_reaction_enabled: Amendment reaction enabled
|
120
155
|
amendment_reaction_enabled_help: Proposal's authors will be able to accept or reject Participant's emendations.
|
121
|
-
amendments_visibility:
|
156
|
+
amendments_visibility: Amendments visibility
|
157
|
+
amendments_visibility_choices:
|
158
|
+
all: Amendments are visible to all
|
159
|
+
participants: Amendments are visible only to their authors
|
122
160
|
amendments_visibility_help: If the option "Amendments are visible only to their authors" is selected, participant must be logged in to see the amendments made.
|
123
161
|
announcement: Announcement
|
162
|
+
answers_with_costs: Enable costs on proposal answers
|
124
163
|
automatic_hashtags: Hashtags added to all proposals
|
125
164
|
comments_blocked: Comments blocked
|
126
165
|
creation_enabled: Proposal creation enabled
|
127
166
|
endorsements_blocked: Endorsements blocked
|
128
167
|
endorsements_enabled: Endorsements enabled
|
129
168
|
proposal_answering_enabled: Proposal answering enabled
|
169
|
+
publish_answers_immediately: Publish proposal answers immediately
|
130
170
|
suggested_hashtags: Hashtags suggested to participants for new proposals
|
131
171
|
votes_blocked: Supports blocked
|
132
172
|
votes_enabled: Supports enabled
|
133
173
|
votes_hidden: Supports hidden (if supports are enabled, checking this will hide the number of supports)
|
134
174
|
events:
|
135
175
|
proposals:
|
176
|
+
admin:
|
177
|
+
proposal_note_created:
|
178
|
+
email_intro: Someone has left a note on the proposal "%{resource_title}". Check it out at <a href="%{admin_proposal_info_url}">the admin panel</a>
|
179
|
+
email_outro: You have received this notification because you can valuate the proposal.
|
180
|
+
email_subject: Someone left a note on proposal %{resource_title}.
|
181
|
+
notification_title: Someone has left a note on the proposal <a href="%{resource_path}">%{resource_title}</a>. Check it out at <a href="%{admin_proposal_info_path}">the admin panel</a>
|
136
182
|
collaborative_draft_access_accepted:
|
137
183
|
email_intro: '%{requester_name} has been accepted to access as a contributor of the <a href="%{resource_path}">%{resource_title}</a> collaborative draft.'
|
138
184
|
email_outro: You have received this notification because you are a collaborator of <a href="%{resource_path}">%{resource_title}</a>.
|
@@ -184,11 +230,6 @@ en:
|
|
184
230
|
email_outro: You have received this notification because you are following "%{resource_title}". You can unfollow it from the previous link.
|
185
231
|
email_subject: A proposal you're following has been accepted
|
186
232
|
notification_title: The <a href="%{resource_path}">%{resource_title}</a> proposal has been accepted.
|
187
|
-
proposal_endorsed:
|
188
|
-
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:'
|
189
|
-
email_outro: You have received this notification because you are following %{endorser_nickname}. You can stop receiving notifications following the previous link.
|
190
|
-
email_subject: "%{endorser_nickname} has endorsed a new proposal"
|
191
|
-
notification_title: The <a href="%{resource_path}">%{resource_title}</a> proposal has been endorsed by <a href="%{endorser_path}">%{endorser_name} %{endorser_nickname}</a>.
|
192
233
|
proposal_evaluating:
|
193
234
|
affected_user:
|
194
235
|
email_intro: 'Your proposal "%{resource_title}" is currently being evaluated. You can check for an answer in this page:'
|
@@ -201,7 +242,7 @@ en:
|
|
201
242
|
email_subject: A proposal you're following is being evaluated
|
202
243
|
notification_title: The <a href="%{resource_path}">%{resource_title}</a> proposal is being evaluated.
|
203
244
|
proposal_mentioned:
|
204
|
-
email_intro: Your proposal "%{mentioned_proposal_title}" has been mentioned <a href="%{
|
245
|
+
email_intro: Your proposal "%{mentioned_proposal_title}" has been mentioned <a href="%{resource_url}">in this space</a> in the comments.
|
205
246
|
email_outro: You have received this notification because you are an author of "%{resource_title}".
|
206
247
|
email_subject: Your proposal "%{mentioned_proposal_title}" has been mentioned
|
207
248
|
notification_title: Your proposal "%{mentioned_proposal_title}" has been mentioned <a href="%{resource_path}">in this space</a> in the comments.
|
@@ -231,6 +272,11 @@ en:
|
|
231
272
|
email_outro: You have received this notification because you are the author of the proposal.
|
232
273
|
email_subject: The %{resource_title} proposal category has been updated
|
233
274
|
notification_title: The <a href="%{resource_path}">%{resource_title}</a> proposal category has been updated by an admin.
|
275
|
+
proposal_update_scope:
|
276
|
+
email_intro: 'An admin has updated the scope of your proposal "%{resource_title}", check it out in this page:'
|
277
|
+
email_outro: You have received this notification because you are the author of the proposal.
|
278
|
+
email_subject: The %{resource_title} proposal scope has been updated
|
279
|
+
notification_title: The <a href="%{resource_path}">%{resource_title}</a> proposal scope has been updated by an admin.
|
234
280
|
voting_enabled:
|
235
281
|
email_intro: 'You can support proposals in %{participatory_space_title}! Start participating in this page:'
|
236
282
|
email_outro: You have received this notification because you are following %{participatory_space_title}. You can stop receiving notifications following the previous link.
|
@@ -294,15 +340,15 @@ en:
|
|
294
340
|
proposals: Proposals
|
295
341
|
participatory_spaces:
|
296
342
|
highlighted_proposals:
|
297
|
-
see_all: See all (%{count})
|
343
|
+
see_all: See all proposals (%{count})
|
298
344
|
proposals:
|
299
345
|
actions:
|
300
|
-
|
346
|
+
answer_proposal: Answer proposal
|
301
347
|
edit_proposal: Edit proposal
|
302
348
|
import: Import from another component
|
303
349
|
new: New proposal
|
304
350
|
participatory_texts: Participatory texts
|
305
|
-
|
351
|
+
show: Show proposal
|
306
352
|
title: Actions
|
307
353
|
admin:
|
308
354
|
actions:
|
@@ -328,14 +374,14 @@ en:
|
|
328
374
|
info_1: The following sections have been converted to proposals. Now you can review and adjust them before publishing.
|
329
375
|
publish_document: Publish document
|
330
376
|
save_draft: Save draft
|
331
|
-
title:
|
377
|
+
title: Preview participatory text
|
332
378
|
new_import:
|
333
379
|
accepted_mime_types:
|
334
380
|
md: Markdown
|
335
381
|
odt: Odt
|
336
382
|
bottom_hint: "(You will be able to preview and sort document sections)"
|
337
383
|
document_legend: 'Add a document lesser than 2MB, each section until 3 levels deep will be parsed into Proposals. Suported formats are: %{valid_mime_types}'
|
338
|
-
title:
|
384
|
+
title: Add document
|
339
385
|
upload_document: Upload document
|
340
386
|
publish:
|
341
387
|
invalid: Could not publish proposals
|
@@ -347,7 +393,7 @@ en:
|
|
347
393
|
update:
|
348
394
|
success: Participatory text successfully updated.
|
349
395
|
proposal_answers:
|
350
|
-
|
396
|
+
form:
|
351
397
|
accepted: Accepted
|
352
398
|
answer_proposal: Answer
|
353
399
|
evaluating: Evaluating
|
@@ -373,32 +419,73 @@ en:
|
|
373
419
|
title: Update proposal
|
374
420
|
update: Update
|
375
421
|
form:
|
376
|
-
add_images: Add images
|
377
422
|
attachment_legend: "(Optional) Add an attachment"
|
378
423
|
created_in_meeting: This proposal comes from a meeting
|
379
|
-
gallery_legend: "(Optional) Add an image gallery"
|
380
424
|
select_a_category: Select a category
|
381
425
|
select_a_meeting: Select a meeting
|
382
426
|
index:
|
383
427
|
actions: Actions
|
428
|
+
assign_to_valuator: Assign to valuator
|
429
|
+
assign_to_valuator_button: Assign
|
384
430
|
cancel: Cancel
|
385
431
|
change_category: Change category
|
432
|
+
change_scope: Change scope
|
386
433
|
merge: Merge into a new one
|
387
434
|
merge_button: Merge
|
435
|
+
publish: Publish
|
436
|
+
publish_answers: Publish answers
|
388
437
|
select_component: Select a component
|
389
438
|
selected: selected
|
390
439
|
split: Split proposals
|
391
440
|
split_button: Split
|
392
441
|
title: Proposals
|
442
|
+
unassign_from_valuator: Unassign from valuator
|
443
|
+
unassign_from_valuator_button: Unassign
|
393
444
|
update: Update
|
445
|
+
update_scope_button: Update Scope
|
394
446
|
new:
|
395
447
|
create: Create
|
396
448
|
title: Create proposal
|
449
|
+
publish_answers:
|
450
|
+
number_of_proposals: Answers for %{number} proposals will be published.
|
451
|
+
select_a_proposal: Please select a proposal
|
452
|
+
show:
|
453
|
+
amendments_count: Amendments count
|
454
|
+
assigned_valuators: Assigned valuators
|
455
|
+
authors: Authors
|
456
|
+
body: Body
|
457
|
+
comments_count: Comments count
|
458
|
+
comments_negative_count: Against
|
459
|
+
comments_neutral_count: Neutral
|
460
|
+
comments_positive_count: Favor
|
461
|
+
created_at: Creation date
|
462
|
+
documents: Documents
|
463
|
+
endorsements_count: Endorsements count
|
464
|
+
endorsements_ranking: Ranking by endorsements
|
465
|
+
endorsers: Endorsers
|
466
|
+
link: Link
|
467
|
+
n_more_endorsers:
|
468
|
+
one: and 1 more
|
469
|
+
other: and %{count} more
|
470
|
+
photos: Photos
|
471
|
+
proposals: Proposals
|
472
|
+
ranking: "%{ranking} of %{total}"
|
473
|
+
related_meetings: Related meetings
|
474
|
+
remove_assignment: Remove assignment
|
475
|
+
remove_assignment_confirmation: Are you sure you want to remove the valuator from this proposal?
|
476
|
+
valuators: Valuators
|
477
|
+
votes_count: Supports count
|
478
|
+
votes_ranking: Ranking by supports
|
397
479
|
update_category:
|
398
|
-
invalid: 'These proposals already had the %{
|
480
|
+
invalid: 'These proposals already had the %{subject_name} category: %{proposals}.'
|
399
481
|
select_a_category: Please select a category
|
400
482
|
select_a_proposal: Please select a proposal
|
401
|
-
success: 'Proposals successfully updated to the %{
|
483
|
+
success: 'Proposals successfully updated to the %{subject_name} category: %{proposals}.'
|
484
|
+
update_scope:
|
485
|
+
invalid: 'These proposals already had the %{subject_name} scope: %{proposals}.'
|
486
|
+
select_a_proposal: Please select a proposal
|
487
|
+
select_a_scope: Please select a scope
|
488
|
+
success: 'Proposals successfully updated to the %{subject_name} scope: %{proposals}.'
|
402
489
|
proposals_imports:
|
403
490
|
create:
|
404
491
|
invalid: There was a problem importing the proposals
|
@@ -416,19 +503,24 @@ en:
|
|
416
503
|
create:
|
417
504
|
invalid: There was a problem spliting the selected proposals.
|
418
505
|
success: Successfully splitted the proposals into new ones.
|
419
|
-
|
420
|
-
|
421
|
-
|
422
|
-
|
423
|
-
|
424
|
-
|
506
|
+
valuation_assignments:
|
507
|
+
create:
|
508
|
+
invalid: There was an error assigning proposals to a valuator
|
509
|
+
success: Proposals assigned to a valuator successfully
|
510
|
+
delete:
|
511
|
+
invalid: There was an error unassigning proposals from a valuator
|
512
|
+
success: Valuator unassigned from proposals successfully
|
425
513
|
admin_log:
|
426
514
|
proposal:
|
427
515
|
answer: "%{user_name} answered the %{resource_name} proposal on the %{space_name} space"
|
428
516
|
create: "%{user_name} created the %{resource_name} proposal on the %{space_name} space as an official proposal"
|
517
|
+
publish_answer: "%{user_name} published the answer to %{resource_name} proposal on the %{space_name} space"
|
429
518
|
update: "%{user_name} updated the %{resource_name} official proposal on the %{space_name} space"
|
430
519
|
proposal_note:
|
431
520
|
create: "%{user_name} left a private note on the %{resource_name} proposal on the %{space_name} space"
|
521
|
+
valuation_assignment:
|
522
|
+
create: "%{user_name} assigned the %{resource_name} proposal to a valuator"
|
523
|
+
delete: "%{user_name} unassigned a valuator from the %{proposal_title} proposal"
|
432
524
|
answers:
|
433
525
|
accepted: Accepted
|
434
526
|
evaluating: Evaluating
|
@@ -436,17 +528,21 @@ en:
|
|
436
528
|
rejected: Rejected
|
437
529
|
withdrawn: Withdrawn
|
438
530
|
application_helper:
|
531
|
+
filter_category_values:
|
532
|
+
all: All
|
439
533
|
filter_origin_values:
|
440
534
|
all: All
|
441
535
|
citizens: Citizens
|
442
536
|
meetings: Meetings
|
443
537
|
official: Official
|
444
538
|
user_groups: Groups
|
539
|
+
filter_scope_values:
|
540
|
+
all: All
|
445
541
|
filter_state_values:
|
446
542
|
accepted: Accepted
|
447
543
|
all: All
|
448
544
|
evaluating: Evaluating
|
449
|
-
|
545
|
+
not_answered: Not answered
|
450
546
|
rejected: Rejected
|
451
547
|
filter_type_values:
|
452
548
|
all: All
|
@@ -495,10 +591,10 @@ en:
|
|
495
591
|
all: All
|
496
592
|
amendment: Amendments
|
497
593
|
category: Category
|
498
|
-
category_prompt: Category Prompt
|
499
594
|
open: Open
|
500
595
|
published: Published
|
501
596
|
related_to: Related to
|
597
|
+
scope: Scope
|
502
598
|
search: Search
|
503
599
|
state: Status
|
504
600
|
withdrawn: Withdrawn
|
@@ -539,15 +635,12 @@ en:
|
|
539
635
|
hidden_authors_count:
|
540
636
|
one: and %{count} more person
|
541
637
|
other: and %{count} more people
|
542
|
-
info-message: This is a <strong>collaborative draft</strong> for a proposal. This means that you can help their authors to shape the proposal using the comment section below or improve it directly by requesting access to edit it. Once the authors grant you access,
|
543
|
-
of_versions: "(of %{number})"
|
638
|
+
info-message: This is a <strong>collaborative draft</strong> for a proposal. This means that you can help their authors to shape the proposal using the comment section below or improve it directly by requesting access to edit it. Once the authors grant you access, you'll be able to make changes to this draft.
|
544
639
|
publish: Publish
|
545
640
|
publish_info: Publish this version of the draft or
|
546
641
|
published_proposal: published proposal
|
547
642
|
request_access: Request access
|
548
643
|
requested_access: Access requested
|
549
|
-
see_other_versions: see other versions
|
550
|
-
version: Version %{number}
|
551
644
|
version_history: see version history for this proposal
|
552
645
|
withdraw: withdraw the draft
|
553
646
|
states:
|
@@ -557,15 +650,23 @@ en:
|
|
557
650
|
update:
|
558
651
|
error: There was a problem saving the collaborative draft.
|
559
652
|
success: Collaborative draft successfully updated.
|
653
|
+
title: Edit collaborative draft
|
560
654
|
wizard_aside:
|
561
655
|
back: Back
|
656
|
+
back_from_collaborative_draft: Back to collaborative drafts
|
657
|
+
back_from_step_1: Back to collaborative drafts
|
658
|
+
back_from_step_2: Back to collaborative drafts
|
659
|
+
back_from_step_3: Back to compare collaborative drafts
|
660
|
+
back_from_step_4: Back to edit draft
|
562
661
|
info: You are creating a <strong>collaborative draft</strong>.
|
563
662
|
wizard_steps:
|
663
|
+
current_step: Current step
|
564
664
|
see_steps: see steps
|
565
665
|
step_1: Create your collaborative draft
|
566
666
|
step_2: Compare with collaborative drafts
|
567
667
|
step_3: Complete your collaborative draft
|
568
668
|
step_of: Step %{current_step_num} of %{total_steps}
|
669
|
+
title: Collaborative draft creation steps
|
569
670
|
create:
|
570
671
|
error: There was a problem saving the proposal.
|
571
672
|
success: Proposal successfully created. Saved as a Draft.
|
@@ -584,14 +685,16 @@ en:
|
|
584
685
|
fields:
|
585
686
|
category: Category
|
586
687
|
comments: Comments
|
587
|
-
endorsements: Endorsements
|
588
688
|
id: ID
|
589
689
|
notes: Notes
|
590
690
|
official_proposal: Official proposal
|
691
|
+
published_answer: Published answer
|
591
692
|
published_at: Published at
|
592
693
|
scope: Scope
|
593
694
|
state: Status
|
594
695
|
title: Title
|
696
|
+
valuator: Valuator
|
697
|
+
valuators: Valuators
|
595
698
|
votes: Votes
|
596
699
|
new:
|
597
700
|
limit_reached: You can't create new proposals since you've exceeded the limit.
|
@@ -601,19 +704,6 @@ en:
|
|
601
704
|
amend: Amend
|
602
705
|
comment: Comment
|
603
706
|
comments: Comments
|
604
|
-
endorse: Endorse
|
605
|
-
proposal_endorsements:
|
606
|
-
create:
|
607
|
-
error: There was a problem endorsing the proposal.
|
608
|
-
identities:
|
609
|
-
done: Done
|
610
|
-
select_identity: Select identity
|
611
|
-
proposal_endorsements_helper:
|
612
|
-
endorsement_button:
|
613
|
-
already_endorsed: Endorsed
|
614
|
-
endorse: Endorse
|
615
|
-
render_endorsements_button_card_part:
|
616
|
-
endorse: Endorse
|
617
707
|
proposal_votes:
|
618
708
|
create:
|
619
709
|
error: There was a problem supporting the proposal.
|
@@ -640,19 +730,18 @@ en:
|
|
640
730
|
discard_confirmation: Are you sure you want to discard this proposal draft?
|
641
731
|
send: Preview
|
642
732
|
title: Edit Proposal Draft
|
643
|
-
endorsement_identities_cabin:
|
644
|
-
endorse: Endorse
|
645
|
-
endorsements_card_row:
|
646
|
-
comments: Comments
|
647
733
|
filters:
|
648
|
-
activity:
|
734
|
+
activity: My activity
|
735
|
+
all: All
|
649
736
|
amendment_type: Type
|
650
737
|
category: Category
|
651
|
-
|
738
|
+
my_proposals: My proposals
|
652
739
|
origin: Origin
|
653
740
|
related_to: Related to
|
741
|
+
scope: Scope
|
654
742
|
search: Search
|
655
743
|
state: Status
|
744
|
+
type: Type
|
656
745
|
voted: Supported
|
657
746
|
filters_small_view:
|
658
747
|
close_modal: Close modal
|
@@ -673,9 +762,13 @@ en:
|
|
673
762
|
title: Create Your Proposal
|
674
763
|
orders:
|
675
764
|
label: 'Order proposals by:'
|
765
|
+
most_commented: Most commented
|
766
|
+
most_endorsed: Most endorsed
|
767
|
+
most_followed: Most followed
|
676
768
|
most_voted: Most supported
|
677
769
|
random: Random
|
678
770
|
recent: Recent
|
771
|
+
with_more_authors: With more authors
|
679
772
|
participatory_texts:
|
680
773
|
index:
|
681
774
|
document_index: Document index
|
@@ -691,11 +784,18 @@ en:
|
|
691
784
|
proposal:
|
692
785
|
creation_date: 'Creation: %{date}'
|
693
786
|
view_proposal: View proposal
|
787
|
+
proposals:
|
788
|
+
empty: There is no proposal yet
|
789
|
+
empty_filters: There isn't any proposal with this criteria
|
694
790
|
show:
|
791
|
+
answer: Answer
|
695
792
|
back_to: Back to
|
793
|
+
back_to_list: Back to list
|
696
794
|
changes_at_title: Amendment to "%{title}"
|
795
|
+
comments: Comments
|
697
796
|
edit_proposal: Edit proposal
|
698
797
|
endorsements_list: List of Endorsements
|
798
|
+
estimated_cost: Estimated cost
|
699
799
|
hidden_endorsers_count:
|
700
800
|
one: and %{count} more person
|
701
801
|
other: and %{count} more people
|
@@ -708,13 +808,16 @@ en:
|
|
708
808
|
proposal_accepted_reason: 'This proposal has been accepted because:'
|
709
809
|
proposal_in_evaluation_reason: This proposal is being evaluated
|
710
810
|
proposal_rejected_reason: 'This proposal has been rejected because:'
|
811
|
+
read_less: Read less
|
812
|
+
read_more: Read more
|
711
813
|
report: Report
|
712
814
|
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.
|
713
|
-
|
815
|
+
withdraw_confirmation_html: Are you sure you want to withdraw this proposal?<br><br><strong>This action cannot be cancelled!</strong>
|
714
816
|
withdraw_proposal: Withdraw proposal
|
715
817
|
tags:
|
716
|
-
changed_from: "(changed from <u>%{
|
717
|
-
|
818
|
+
changed_from: "(changed from <u>%{previous_name}</u> by an administrator)"
|
819
|
+
update:
|
820
|
+
title: Update proposal
|
718
821
|
vote_button:
|
719
822
|
already_voted: Already supported
|
720
823
|
already_voted_hover: Withdraw support
|
@@ -724,8 +827,8 @@ en:
|
|
724
827
|
votes_blocked: Supports disabled
|
725
828
|
votes_count:
|
726
829
|
count:
|
727
|
-
one:
|
728
|
-
other:
|
830
|
+
one: Support
|
831
|
+
other: Supports
|
729
832
|
most_popular_proposal: Most popular proposal
|
730
833
|
need_more_votes: Need more supports
|
731
834
|
voting_rules:
|
@@ -746,17 +849,30 @@ en:
|
|
746
849
|
votes: Supports
|
747
850
|
wizard_aside:
|
748
851
|
back: Back
|
852
|
+
back_from_step_1: Back to proposals
|
853
|
+
back_from_step_2: Back to proposals
|
854
|
+
back_from_step_3: Back to compare proposals
|
855
|
+
back_from_step_4: Back to edit draft
|
749
856
|
info: You are creating a <strong>proposal</strong>.
|
750
857
|
wizard_steps:
|
858
|
+
current_step: Current step
|
751
859
|
see_steps: see steps
|
752
860
|
step_1: Create your proposal
|
753
861
|
step_2: Compare
|
754
862
|
step_3: Complete
|
755
863
|
step_4: Publish your proposal
|
756
864
|
step_of: Step %{current_step_num} of %{total_steps}
|
865
|
+
title: Proposal creation steps
|
866
|
+
proposals_picker:
|
867
|
+
choose_proposals: Choose proposals
|
868
|
+
close: Close
|
869
|
+
more_proposals: There are %{number} more proposals. Refine your search to locate them.
|
870
|
+
no_proposals: No proposals match your search criteria or there isn't any proposals.
|
757
871
|
publish:
|
758
872
|
error: There was a problem publishing the proposal.
|
759
873
|
success: Proposal successfully published.
|
874
|
+
publish_answers:
|
875
|
+
success: Proposals answers successfully published.
|
760
876
|
update:
|
761
877
|
error: There was a problem saving the proposal.
|
762
878
|
success: Proposal successfully updated.
|
@@ -764,20 +880,12 @@ en:
|
|
764
880
|
error: There was a problem saving the collaborative draft.
|
765
881
|
success: Proposal draft successfully updated.
|
766
882
|
versions:
|
767
|
-
|
883
|
+
collaborative_drafts:
|
884
|
+
back_to_resource: Go back to collaborative draft
|
768
885
|
index:
|
769
886
|
title: Versions
|
770
|
-
|
771
|
-
|
772
|
-
back_to_proposal: Go back to proposal
|
773
|
-
number_of_versions: Versions
|
774
|
-
show_all_versions: Show all versions
|
775
|
-
version_author: Version author
|
776
|
-
version_created_at: Version created at
|
777
|
-
version_number: Version number
|
778
|
-
version_number_out_of_total: "%{current_version} out of %{total_count}"
|
779
|
-
version:
|
780
|
-
version_index: Version %{index}
|
887
|
+
proposals:
|
888
|
+
back_to_resource: Go back to proposal
|
781
889
|
withdraw:
|
782
890
|
errors:
|
783
891
|
has_supports: This proposal can not be withdrawn because it already has supports.
|