decidim-proposals 0.30.2 → 0.31.0.rc1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/cells/decidim/proposals/collaborative_draft_metadata_cell.rb +1 -1
- data/app/cells/decidim/proposals/proposal_g_cell.rb +4 -4
- data/app/cells/decidim/proposals/proposal_l_cell.rb +4 -4
- data/app/cells/decidim/proposals/proposal_metadata_cell.rb +2 -2
- data/app/commands/decidim/proposals/admin/{assign_proposals_to_valuator.rb → assign_proposals_to_evaluator.rb} +16 -16
- data/app/commands/decidim/proposals/admin/create_proposal.rb +1 -2
- data/app/commands/decidim/proposals/admin/create_proposal_note.rb +4 -4
- data/app/commands/decidim/proposals/admin/merge_proposals.rb +60 -13
- data/app/commands/decidim/proposals/admin/notify_proposal_answer.rb +2 -2
- data/app/commands/decidim/proposals/admin/proposal_notes_methods.rb +5 -5
- data/app/commands/decidim/proposals/admin/reply_proposal_note.rb +1 -1
- data/app/commands/decidim/proposals/admin/{unassign_proposals_from_valuator.rb → unassign_proposals_from_evaluator.rb} +7 -7
- data/app/commands/decidim/proposals/admin/update_proposal.rb +1 -2
- data/app/commands/decidim/proposals/create_collaborative_draft.rb +3 -8
- data/app/commands/decidim/proposals/create_proposal.rb +4 -17
- data/app/commands/decidim/proposals/publish_collaborative_draft.rb +2 -2
- data/app/commands/decidim/proposals/publish_proposal.rb +1 -5
- data/app/commands/decidim/proposals/update_collaborative_draft.rb +2 -4
- data/app/commands/decidim/proposals/update_proposal.rb +5 -18
- data/app/controllers/concerns/decidim/proposals/admin/filterable.rb +6 -6
- data/app/controllers/concerns/decidim/proposals/orderable.rb +3 -3
- data/app/controllers/decidim/proposals/admin/evaluation_assignments_controller.rb +55 -0
- data/app/controllers/decidim/proposals/admin/participatory_texts_controller.rb +6 -6
- data/app/controllers/decidim/proposals/admin/proposal_answers_controller.rb +1 -1
- data/app/controllers/decidim/proposals/admin/proposal_states_controller.rb +2 -2
- data/app/controllers/decidim/proposals/admin/proposals_controller.rb +2 -2
- data/app/controllers/decidim/proposals/admin/proposals_imports_controller.rb +1 -1
- data/app/controllers/decidim/proposals/admin/proposals_merges_controller.rb +12 -3
- data/app/controllers/decidim/proposals/collaborative_drafts_controller.rb +2 -3
- data/app/controllers/decidim/proposals/proposals_controller.rb +5 -6
- data/app/events/decidim/proposals/admin/{proposal_assigned_to_valuator_event.rb → proposal_assigned_to_evaluator_event.rb} +1 -1
- data/app/events/decidim/proposals/{endorsing_enabled_event.rb → liking_enabled_event.rb} +1 -1
- data/app/events/decidim/proposals/merged_proposal_event.rb +9 -0
- data/app/events/decidim/proposals/proposal_liked_event.rb +33 -0
- data/app/forms/decidim/proposals/admin/evaluation_assignment_form.rb +38 -0
- data/app/forms/decidim/proposals/admin/proposal_base_form.rb +1 -27
- data/app/forms/decidim/proposals/admin/proposals_fork_form.rb +1 -1
- data/app/forms/decidim/proposals/admin/proposals_merge_form.rb +58 -2
- data/app/forms/decidim/proposals/collaborative_draft_form.rb +1 -5
- data/app/forms/decidim/proposals/proposal_form.rb +0 -29
- data/app/helpers/decidim/proposals/admin/proposal_bulk_actions_helper.rb +8 -8
- data/app/helpers/decidim/proposals/admin/proposal_rankings_helper.rb +6 -6
- data/app/helpers/decidim/proposals/admin/proposals_helper.rb +2 -17
- data/app/helpers/decidim/proposals/application_helper.rb +3 -6
- data/app/jobs/decidim/proposals/settings_change_job.rb +6 -6
- data/app/models/decidim/proposals/collaborative_draft.rb +1 -1
- data/app/models/decidim/proposals/{valuation_assignment.rb → evaluation_assignment.rb} +7 -7
- data/app/models/decidim/proposals/proposal.rb +22 -32
- data/app/packs/entrypoints/decidim_proposals_admin.js +1 -0
- data/app/packs/src/decidim/proposals/add_proposal.js +1 -1
- data/app/packs/src/decidim/proposals/admin/proposals.js +22 -11
- data/app/packs/src/decidim/proposals/admin/proposals_form.js +1 -1
- data/app/packs/src/decidim/proposals/admin/proposals_merge.js +92 -0
- data/app/packs/src/decidim/proposals/choose_proposals.js +1 -1
- data/app/packs/src/decidim/proposals/exit_handler.js +1 -1
- data/app/packs/src/decidim/proposals/utils.js +1 -1
- data/app/packs/stylesheets/decidim/proposals/proposals.scss +29 -1
- data/app/permissions/decidim/proposals/admin/permissions.rb +20 -20
- data/app/presenters/decidim/proposals/admin_log/{valuation_assignment_presenter.rb → evaluation_assignment_presenter.rb} +7 -7
- data/app/presenters/decidim/proposals/admin_log/proposal_presenter.rb +15 -0
- data/app/presenters/decidim/proposals/admin_log/value_types/{valuator_role_user_presenter.rb → evaluator_role_user_presenter.rb} +2 -2
- data/app/presenters/decidim/proposals/admin_log/value_types/proposal_title_body_presenter.rb +1 -1
- data/app/presenters/decidim/proposals/collaborative_draft_presenter.rb +1 -6
- data/app/presenters/decidim/proposals/log/{valuation_assignment_presenter.rb → evaluation_assignment_presenter.rb} +1 -1
- data/app/presenters/decidim/proposals/proposal_presenter.rb +9 -13
- data/app/services/decidim/proposals/diff_renderer.rb +0 -1
- data/app/services/decidim/proposals/proposal_builder.rb +5 -10
- data/app/views/decidim/proposals/admin/participatory_texts/_article-preview.html.erb +1 -1
- data/app/views/decidim/proposals/admin/participatory_texts/index.html.erb +1 -2
- 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 +1 -1
- data/app/views/decidim/proposals/admin/proposal_states/index.html.erb +42 -12
- data/app/views/decidim/proposals/admin/proposals/_actions.html.erb +87 -21
- data/app/views/decidim/proposals/admin/proposals/_bulk-actions.html.erb +9 -13
- data/app/views/decidim/proposals/admin/proposals/_form.html.erb +2 -24
- data/app/views/decidim/proposals/admin/proposals/_likes.html.erb +25 -0
- data/app/views/decidim/proposals/admin/proposals/_proposal-tr.html.erb +13 -12
- data/app/views/decidim/proposals/admin/proposals/_proposals-thead.html.erb +1 -1
- data/app/views/decidim/proposals/admin/proposals/bulk_actions/_assign_to_evaluator.html.erb +19 -0
- data/app/views/decidim/proposals/admin/proposals/bulk_actions/_dropdown.html.erb +45 -49
- data/app/views/decidim/proposals/admin/proposals/bulk_actions/{_valuators_picker.html.erb → _evaluators_picker.html.erb} +4 -4
- data/app/views/decidim/proposals/admin/proposals/bulk_actions/_merge.html.erb +7 -14
- data/app/views/decidim/proposals/admin/proposals/bulk_actions/_unassign_from_evaluator.html.erb +19 -0
- data/app/views/decidim/proposals/admin/proposals/index.html.erb +9 -5
- data/app/views/decidim/proposals/admin/proposals/manage_trash.html.erb +2 -1
- data/app/views/decidim/proposals/admin/proposals/show.html.erb +17 -17
- data/app/views/decidim/proposals/admin/proposals_merges/_form.html.erb +49 -0
- data/app/views/decidim/proposals/admin/proposals_merges/new.html.erb +14 -0
- data/app/views/decidim/proposals/collaborative_drafts/_collaborative_actions.html.erb +2 -2
- data/app/views/decidim/proposals/collaborative_drafts/_edit_form_fields.html.erb +1 -21
- data/app/views/decidim/proposals/collaborative_drafts/show.html.erb +1 -1
- data/app/views/decidim/proposals/proposals/_actions.html.erb +2 -2
- data/app/views/decidim/proposals/proposals/_edit_form_fields.html.erb +1 -21
- data/app/views/decidim/proposals/proposals/_proposal_actions.html.erb +4 -4
- data/app/views/decidim/proposals/proposals/_proposal_aside.html.erb +2 -2
- data/app/views/decidim/proposals/proposals/_proposal_voting_rules.html.erb +1 -1
- data/app/views/decidim/proposals/proposals/participatory_texts/_view_index.html.erb +1 -1
- data/app/views/decidim/proposals/proposals/preview.html.erb +1 -1
- data/app/views/decidim/proposals/proposals/show.html.erb +2 -2
- data/config/assets.rb +2 -2
- data/config/locales/ar.yml +0 -65
- data/config/locales/bg.yml +0 -71
- data/config/locales/bs-BA.yml +0 -25
- data/config/locales/ca-IT.yml +64 -72
- data/config/locales/ca.yml +64 -72
- data/config/locales/cs.yml +52 -81
- data/config/locales/de.yml +66 -73
- data/config/locales/el.yml +0 -66
- data/config/locales/en.yml +69 -77
- data/config/locales/es-MX.yml +68 -76
- data/config/locales/es-PY.yml +68 -76
- data/config/locales/es.yml +68 -76
- data/config/locales/eu.yml +66 -74
- data/config/locales/fi-plain.yml +67 -75
- data/config/locales/fi.yml +67 -75
- data/config/locales/fr-CA.yml +49 -74
- data/config/locales/fr.yml +49 -74
- data/config/locales/ga-IE.yml +0 -22
- data/config/locales/gl.yml +0 -47
- data/config/locales/hu.yml +0 -64
- data/config/locales/id-ID.yml +0 -34
- data/config/locales/is-IS.yml +0 -14
- data/config/locales/it.yml +0 -58
- data/config/locales/ja.yml +68 -76
- data/config/locales/lb.yml +0 -3
- data/config/locales/lt.yml +0 -68
- data/config/locales/lv.yml +0 -62
- data/config/locales/nl.yml +0 -63
- data/config/locales/no.yml +0 -42
- data/config/locales/pl.yml +0 -73
- data/config/locales/pt-BR.yml +0 -59
- data/config/locales/pt.yml +0 -60
- data/config/locales/ro-RO.yml +45 -64
- data/config/locales/ru.yml +0 -15
- data/config/locales/sk.yml +0 -60
- data/config/locales/sr-CS.yml +0 -25
- data/config/locales/sv.yml +58 -76
- data/config/locales/tr-TR.yml +0 -58
- data/config/locales/uk.yml +0 -15
- data/config/locales/zh-CN.yml +0 -57
- data/config/locales/zh-TW.yml +0 -65
- data/db/migrate/20240110203500_add_withdrawn_at_field_to_proposals.rb +1 -1
- data/db/migrate/20240110203504_create_default_proposal_states.rb +1 -1
- data/db/migrate/20250121110014_rename_proposal_valuation_assignments_to_evaluation_assignments.rb +15 -0
- data/db/migrate/20250121110904_rename_valuation_assignments_count_to_evaluation_assignments_count.rb +16 -0
- data/db/migrate/20250211141313_rename_valuator_columns.rb +8 -0
- data/db/migrate/20250515132351_rename_proposals_endorsements_count_to_likes.rb +7 -0
- data/decidim-proposals.gemspec +1 -1
- data/lib/decidim/api/mutations/answer_proposal_attributes.rb +17 -0
- data/lib/decidim/api/mutations/proposal_answer_type.rb +57 -0
- data/lib/decidim/api/mutations/proposal_mutation_type.rb +14 -0
- data/lib/decidim/api/mutations/proposals_mutation_type.rb +23 -0
- data/lib/decidim/api/proposal_input_sort.rb +1 -1
- data/lib/decidim/api/proposal_state_type.rb +16 -0
- data/lib/decidim/api/proposal_type.rb +59 -9
- data/lib/decidim/proposals/admin_engine.rb +3 -3
- data/lib/decidim/proposals/admin_filter.rb +3 -3
- data/lib/decidim/proposals/api.rb +5 -0
- data/lib/decidim/proposals/component.rb +44 -24
- data/lib/decidim/proposals/engine.rb +18 -83
- data/lib/decidim/proposals/evaluable.rb +22 -0
- data/lib/decidim/proposals/import/proposal_creator.rb +1 -1
- data/lib/decidim/proposals/proposal_serializer.rb +9 -11
- data/lib/decidim/proposals/seeds.rb +16 -27
- data/lib/decidim/proposals/test/factories.rb +21 -53
- data/lib/decidim/proposals/version.rb +1 -1
- data/lib/decidim/proposals.rb +3 -3
- data/lib/tasks/proposals/upgrade/decidim_proposals_upgrade_tasks.rake +11 -11
- metadata +57 -47
- data/app/commands/decidim/proposals/hashtags_methods.rb +0 -36
- data/app/controllers/decidim/proposals/admin/valuation_assignments_controller.rb +0 -55
- data/app/events/decidim/proposals/proposal_endorsed_event.rb +0 -33
- data/app/forms/decidim/proposals/admin/proposals_file_import_form.rb +0 -31
- data/app/forms/decidim/proposals/admin/valuation_assignment_form.rb +0 -38
- data/app/queries/decidim/proposals/metrics/accepted_proposals_metric_manage.rb +0 -32
- data/app/queries/decidim/proposals/metrics/endorsements_metric_manage.rb +0 -58
- data/app/queries/decidim/proposals/metrics/proposal_followers_metric_measure.rb +0 -58
- data/app/queries/decidim/proposals/metrics/proposal_participants_metric_measure.rb +0 -74
- data/app/queries/decidim/proposals/metrics/proposals_metric_manage.rb +0 -48
- data/app/queries/decidim/proposals/metrics/votes_metric_manage.rb +0 -52
- data/app/views/decidim/proposals/admin/imports/_proposals_fields.html.erb +0 -11
- data/app/views/decidim/proposals/admin/proposals/_endorsers.html.erb +0 -25
- data/app/views/decidim/proposals/admin/proposals/bulk_actions/_assign_to_valuator.html.erb +0 -19
- data/app/views/decidim/proposals/admin/proposals/bulk_actions/_unassign_from_valuator.html.erb +0 -19
- data/lib/decidim/proposals/valuatable.rb +0 -22
data/config/locales/en.yml
CHANGED
@@ -10,14 +10,15 @@ en:
|
|
10
10
|
scope_id: Scope
|
11
11
|
state: State
|
12
12
|
title: Title
|
13
|
-
|
13
|
+
evaluation_assignment:
|
14
|
+
admin_log:
|
15
|
+
evaluator_role_id: Evaluator name
|
14
16
|
import_participatory_text:
|
15
17
|
document: Document
|
16
18
|
proposal:
|
17
19
|
address: Address
|
18
20
|
answer: Answer
|
19
21
|
answered_at: Answered at
|
20
|
-
automatic_hashtags: Hashtags automatically added
|
21
22
|
body: Body
|
22
23
|
decidim_proposals_proposal_state_id: State
|
23
24
|
decidim_scope_id: Scope
|
@@ -26,9 +27,7 @@ en:
|
|
26
27
|
longitude: Longitude
|
27
28
|
scope_id: Scope
|
28
29
|
state: State
|
29
|
-
suggested_hashtags: Suggested hashtags
|
30
30
|
title: Title
|
31
|
-
user_group_id: Create proposal as
|
32
31
|
proposal_answer:
|
33
32
|
answer: Answer
|
34
33
|
cost: Cost
|
@@ -56,9 +55,6 @@ en:
|
|
56
55
|
import_proposals: Import proposals
|
57
56
|
keep_answers: Keep state and answers
|
58
57
|
keep_authors: Keep original authors
|
59
|
-
valuation_assignment:
|
60
|
-
admin_log:
|
61
|
-
valuator_role_id: Valuator name
|
62
58
|
errors:
|
63
59
|
models:
|
64
60
|
participatory_text:
|
@@ -80,16 +76,16 @@ en:
|
|
80
76
|
attributes:
|
81
77
|
base:
|
82
78
|
not_official: Are not official
|
83
|
-
voted: Have received votes or
|
79
|
+
voted: Have received votes or likes
|
84
80
|
proposals_split:
|
85
81
|
attributes:
|
86
82
|
base:
|
87
83
|
not_official: Are not official
|
88
|
-
voted: Have received votes or
|
84
|
+
voted: Have received votes or likes
|
89
85
|
models:
|
90
86
|
decidim/proposals/admin/update_proposal_taxonomies_event: Proposal taxonomies changed
|
91
87
|
decidim/proposals/creation_enabled_event: Proposal creation enabled
|
92
|
-
decidim/proposals/
|
88
|
+
decidim/proposals/liking_enabled_event: Proposal liking enabled
|
93
89
|
decidim/proposals/proposal_mentioned_event: Proposal mentioned
|
94
90
|
decidim/proposals/publish_proposal_event: Proposal published
|
95
91
|
decidim/proposals/voting_enabled_event: Proposal voting enabled
|
@@ -124,6 +120,8 @@ en:
|
|
124
120
|
proposals: Proposals
|
125
121
|
filters:
|
126
122
|
proposals:
|
123
|
+
evaluator_role_ids_has:
|
124
|
+
label: Assigned to evaluator
|
127
125
|
is_emendation_true:
|
128
126
|
label: Type
|
129
127
|
values:
|
@@ -143,15 +141,17 @@ en:
|
|
143
141
|
withdrawn: Withdrawn
|
144
142
|
taxonomies_part_of_contains:
|
145
143
|
label: Taxonomy
|
146
|
-
valuator_role_ids_has:
|
147
|
-
label: Assigned to valuator
|
148
144
|
with_any_state:
|
149
145
|
label: Answered
|
150
146
|
values:
|
151
147
|
state_not_published: Not answered
|
152
148
|
state_published: Answered
|
153
149
|
search_placeholder:
|
154
|
-
id_string_or_title_cont: Search %{collection} by ID or title
|
150
|
+
id_string_or_title_cont: Search %{collection} by ID or title
|
151
|
+
tooltips:
|
152
|
+
cannot_edit_proposal_info: Cannot edit this proposal as it is created by a participant or it has received any vote
|
153
|
+
deleted_proposal_states_info: Cannot delete this proposal state because there are proposals assigned to it
|
154
|
+
deleted_proposals_info: Cannot delete this proposal
|
155
155
|
application:
|
156
156
|
geocoding:
|
157
157
|
not_configured: Geocoding is not configured!
|
@@ -161,7 +161,7 @@ en:
|
|
161
161
|
amend: Amend
|
162
162
|
comment: Comment
|
163
163
|
create: Create a proposal
|
164
|
-
|
164
|
+
like: Like
|
165
165
|
vote: Vote
|
166
166
|
vote_comment: Vote comment
|
167
167
|
withdraw: Withdraw
|
@@ -184,8 +184,8 @@ en:
|
|
184
184
|
default_sort_order_options:
|
185
185
|
automatic: Automatic
|
186
186
|
most_commented: Most commented
|
187
|
-
most_endorsed: Most endorsed
|
188
187
|
most_followed: Most followed
|
188
|
+
most_liked: Most liked
|
189
189
|
most_voted: Most voted
|
190
190
|
random: Random
|
191
191
|
recent: Recent
|
@@ -237,7 +237,6 @@ en:
|
|
237
237
|
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.
|
238
238
|
announcement: Announcement
|
239
239
|
answers_with_costs: Enable costs on proposal answers
|
240
|
-
automatic_hashtags: Hashtags added to all proposals
|
241
240
|
comments_blocked: Comments blocked
|
242
241
|
creation_enabled: Participants can create proposals
|
243
242
|
creation_enabled_readonly: This setting is disabled when you activate the Participatory Texts functionality. To upload proposals as participatory text click on the Participatory Texts button and follow the instructions.
|
@@ -246,18 +245,17 @@ en:
|
|
246
245
|
default_sort_order_options:
|
247
246
|
automatic: Automatic
|
248
247
|
most_commented: Most commented
|
249
|
-
most_endorsed: Most endorsed
|
250
248
|
most_followed: Most followed
|
249
|
+
most_liked: Most liked
|
251
250
|
most_voted: Most voted
|
252
251
|
random: Random
|
253
252
|
recent: Recent
|
254
253
|
with_more_authors: With more authors
|
255
|
-
|
256
|
-
|
254
|
+
likes_blocked: Likes blocked
|
255
|
+
likes_enabled: Likes enabled
|
257
256
|
proposal_answering_enabled: Proposal answering enabled
|
258
257
|
publish_answers_immediately: Publish proposal answers immediately
|
259
258
|
publish_answers_immediately_help_html: Mind that if you answer any proposal without this enabled, you will need to publish them manually by selecting them and using the action for publication. For more info on how this works, see <a href="https://docs.decidim.org/en/admin/components/proposals/answers#_publication" target="_blank">proposals' answers documentation page</a>.
|
260
|
-
suggested_hashtags: Hashtags suggested to participants for new proposals
|
261
259
|
votes_blocked: Votes blocked
|
262
260
|
votes_enabled: Votes enabled
|
263
261
|
votes_hidden: Votes hidden (if votes are enabled, checking this will hide the number of votes)
|
@@ -270,14 +268,14 @@ en:
|
|
270
268
|
accepted_coauthorship:
|
271
269
|
notification_title: You have been added as a co-author of the proposal <a href="%{resource_path}">%{resource_title}</a>.
|
272
270
|
admin:
|
273
|
-
|
274
|
-
email_intro: You have been assigned as a
|
275
|
-
email_outro: You have received this notification because you can
|
276
|
-
email_subject: You have been assigned as a
|
277
|
-
notification_title: You have been assigned as a
|
271
|
+
proposal_assigned_to_evaluator:
|
272
|
+
email_intro: You have been assigned as a evaluator to the proposal "%{resource_title}". This means you have been trusted to give them feedback and a proper response in the next coming days. Check it out at <a href="%{admin_proposal_info_url}">the admin panel</a>.
|
273
|
+
email_outro: You have received this notification because you can evaluate the proposal.
|
274
|
+
email_subject: You have been assigned as a evaluator to the proposal %{resource_title}.
|
275
|
+
notification_title: You have been assigned as a evaluator to the proposal <a href="%{resource_path}">%{resource_title}</a>. Check it out at <a href="%{admin_proposal_info_path}">the admin panel</a>.
|
278
276
|
proposal_note_created:
|
279
277
|
email_intro: '%{author_name} has created a private note in %{resource_title}. Check it out at <a href="%{admin_proposal_info_url}">the admin panel</a>.'
|
280
|
-
email_outro: You have received this notification because you can
|
278
|
+
email_outro: You have received this notification because you can evaluate the proposal.
|
281
279
|
email_subject: Someone left a note on proposal %{resource_title}.
|
282
280
|
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> has created a private note in <a href="%{resource_path}">%{resource_title}</a>. Check it out at <a href="%{admin_proposal_info_path}">the admin panel</a>.
|
283
281
|
proposal_note_mentioned:
|
@@ -337,16 +335,21 @@ en:
|
|
337
335
|
email_outro: You have received this notification because you are following %{participatory_space_title}. You can stop receiving notifications following the previous link.
|
338
336
|
email_subject: Proposals now available in %{participatory_space_title}
|
339
337
|
notification_title: You can now put forward <a href="%{resource_path}">new proposals</a> in <a href="%{participatory_space_url}">%{participatory_space_title}</a>.
|
340
|
-
|
341
|
-
email_intro: 'You can
|
338
|
+
liking_enabled:
|
339
|
+
email_intro: 'You can like proposals in %{participatory_space_title}! Start participating in this page:'
|
342
340
|
email_outro: You have received this notification because you are following %{participatory_space_title}. You can stop receiving notifications following the previous link.
|
343
|
-
email_subject: Proposals
|
344
|
-
notification_title: You can now start <a href="%{resource_path}">
|
341
|
+
email_subject: Proposals liking has started for %{participatory_space_title}
|
342
|
+
notification_title: You can now start <a href="%{resource_path}">liking proposals</a> in <a href="%{participatory_space_url}">%{participatory_space_title}</a>.
|
345
343
|
proposal_mentioned:
|
346
344
|
email_intro: Your proposal "%{mentioned_proposal_title}" has been mentioned <a href="%{resource_url}">in this space</a> in the comments.
|
347
345
|
email_outro: You have received this notification because you are an author of "%{resource_title}".
|
348
346
|
email_subject: Your proposal "%{mentioned_proposal_title}" has been mentioned
|
349
347
|
notification_title: Your proposal "%{mentioned_proposal_title}" has been mentioned <a href="%{resource_path}">in this space</a> in the comments.
|
348
|
+
proposal_merged:
|
349
|
+
email_intro: 'An admin has merged your proposal "%{resource_title}", check it out in this page:'
|
350
|
+
email_outro: You have received this notification because you are the author of the proposal.
|
351
|
+
email_subject: The %{resource_title} proposal has been merged
|
352
|
+
notification_title: The <a href="%{resource_path}">%{resource_title}</a> proposal has been merged by an admin.
|
350
353
|
proposal_published:
|
351
354
|
email_intro: '%{author_name} %{author_nickname}, who you are following, has published a new proposal called "%{resource_title}". Check it out and contribute:'
|
352
355
|
email_outro: You have received this notification because you are following %{author_nickname}. You can stop receiving notifications following the previous link.
|
@@ -416,23 +419,6 @@ en:
|
|
416
419
|
next_level_in: Create %{score} more proposals to reach the next level!
|
417
420
|
unearned_another: This participant has not created any proposals yet.
|
418
421
|
unearned_own: You have created no proposals yet.
|
419
|
-
metrics:
|
420
|
-
accepted_proposals:
|
421
|
-
description: Number of proposals accepted
|
422
|
-
object: proposals
|
423
|
-
title: Accepted proposals
|
424
|
-
endorsements:
|
425
|
-
description: Number of endorsements to proposals
|
426
|
-
object: endorsements
|
427
|
-
title: Endorsements
|
428
|
-
proposals:
|
429
|
-
description: Number of proposals
|
430
|
-
object: proposals
|
431
|
-
title: Proposals
|
432
|
-
votes:
|
433
|
-
description: Number of votes to proposals
|
434
|
-
object: votes
|
435
|
-
title: Votes
|
436
422
|
open_data:
|
437
423
|
help:
|
438
424
|
proposal_comments:
|
@@ -446,7 +432,6 @@ en:
|
|
446
432
|
id: The id for this comment
|
447
433
|
locale: The locale (language) that the participant had when leaving this comment
|
448
434
|
root_commentable_url: The URL of the resource that ties to this comment
|
449
|
-
user_group: The name of the user group that made this comment (if any)
|
450
435
|
proposals:
|
451
436
|
address: The address of the proposal in case the proposal has a physical location
|
452
437
|
answer: The answer to the proposal in the case it has been answered
|
@@ -461,12 +446,12 @@ en:
|
|
461
446
|
cost_report: A report of costs for the proposal
|
462
447
|
created_at: The date the proposal was created
|
463
448
|
created_in_meeting: Whether the proposal was created in a meeting
|
464
|
-
endorsements: The number of endorsements ("likes") this proposal has
|
465
449
|
execution_period: The period at which the proposal ran from beginning to end
|
466
450
|
follows_count: The number of followers this proposal has
|
467
451
|
id: The unique identifier for the proposal
|
468
452
|
is_amend: Wheter this proposal is ammedning another proposal
|
469
453
|
latitude: The latitude of the proposal in case it has a physical location
|
454
|
+
likes: The number of likes ("likes") this proposal has
|
470
455
|
longitude: The longitude of the proposal in case it has a physical location
|
471
456
|
meeting_urls: The URLs of the meetings where this proposal was presented or discussed in
|
472
457
|
original_proposal: The reference of the original proposal if this is an amendment
|
@@ -509,6 +494,13 @@ en:
|
|
509
494
|
deleted_proposals_info: Deleted proposals can be restored from the trash.
|
510
495
|
preview: Preview
|
511
496
|
view_deleted_proposals: View deleted proposals
|
497
|
+
evaluation_assignments:
|
498
|
+
create:
|
499
|
+
invalid: There was a problem assigning proposals to a evaluator.
|
500
|
+
success: Proposals assigned to a evaluator successfully.
|
501
|
+
delete:
|
502
|
+
invalid: There was a problem unassigning proposals from a evaluator.
|
503
|
+
success: Evaluator unassigned from proposals successfully.
|
512
504
|
exports:
|
513
505
|
proposal_comments: Comments
|
514
506
|
proposals: Proposals
|
@@ -639,24 +631,24 @@ en:
|
|
639
631
|
index:
|
640
632
|
actions: Actions
|
641
633
|
apply_answer_template: Apply answer template
|
642
|
-
|
643
|
-
|
634
|
+
assign_to_evaluator: Assign to evaluator
|
635
|
+
assign_to_evaluator_button: Assign
|
644
636
|
cancel: Cancel
|
645
637
|
change_taxonomies: Change taxonomies
|
646
638
|
merge: Merge into a new one
|
647
|
-
merge_button:
|
639
|
+
merge_button: Create
|
648
640
|
no_templates_available: No templates available
|
649
641
|
publish: Publish
|
650
642
|
publish_answers: Publish answers
|
651
643
|
select_component: Select a component
|
652
|
-
|
644
|
+
select_evaluators: Select one or more evaluators
|
653
645
|
selected: selected
|
654
646
|
split: Split proposals
|
655
647
|
split_button: Split
|
656
648
|
statuses: Statuses
|
657
649
|
title: Proposals
|
658
|
-
|
659
|
-
|
650
|
+
unassign_from_evaluator: Unassign from evaluator
|
651
|
+
unassign_from_evaluator_button: Unassign
|
660
652
|
update: Update
|
661
653
|
manage_trash:
|
662
654
|
title: Deleted proposals
|
@@ -668,22 +660,22 @@ en:
|
|
668
660
|
select_a_proposal: Please select a proposal.
|
669
661
|
show:
|
670
662
|
amendments_count: Amendments count
|
671
|
-
|
663
|
+
assigned_evaluators: Assigned evaluators
|
672
664
|
body: Body
|
673
665
|
comments_count: Comments count
|
674
666
|
documents: Documents
|
675
|
-
|
676
|
-
|
667
|
+
evaluators: Evaluators
|
668
|
+
likes: Likes
|
669
|
+
likes_count: Likes count
|
677
670
|
link: See proposal
|
678
|
-
|
671
|
+
n_more_likes:
|
679
672
|
one: and 1 more
|
680
673
|
other: and %{count} more
|
681
674
|
photos: Photos
|
682
675
|
ranking: "%{ranking} of %{total}"
|
683
676
|
related_meetings: Related meetings
|
684
677
|
remove_assignment: Remove assignment
|
685
|
-
remove_assignment_confirmation: Are you sure you want to remove the
|
686
|
-
valuators: Valuators
|
678
|
+
remove_assignment_confirmation: Are you sure you want to remove the evaluator from this proposal?
|
687
679
|
votes_count: Votes count
|
688
680
|
update_taxonomies:
|
689
681
|
invalid: 'These proposals already had the %{taxonomies} taxonomies: %{proposals}.'
|
@@ -704,30 +696,28 @@ en:
|
|
704
696
|
create:
|
705
697
|
invalid: 'There was a problem merging the selected proposals because some of them:'
|
706
698
|
success: Successfully merged the proposals into a new one.
|
699
|
+
form:
|
700
|
+
created_in_meeting: This proposal comes from a meeting
|
701
|
+
select_a_meeting: Select a meeting
|
702
|
+
new:
|
703
|
+
title: Merge into a new one
|
707
704
|
proposals_splits:
|
708
705
|
create:
|
709
706
|
invalid: 'There was a problem splitting the selected proposals because some of them:'
|
710
707
|
success: Successfully splitted the proposals into new ones.
|
711
|
-
valuation_assignments:
|
712
|
-
create:
|
713
|
-
invalid: There was a problem assigning proposals to a valuator.
|
714
|
-
success: Proposals assigned to a valuator successfully.
|
715
|
-
delete:
|
716
|
-
invalid: There was a problem unassigning proposals from a valuator.
|
717
|
-
success: Valuator unassigned from proposals successfully.
|
718
708
|
admin_log:
|
709
|
+
evaluation_assignment:
|
710
|
+
create: "%{user_name} assigned the %{resource_name} proposal to a evaluator"
|
711
|
+
delete: "%{user_name} unassigned a evaluator from the %{proposal_title} proposal"
|
719
712
|
proposal:
|
720
713
|
answer: "%{user_name} answered the %{resource_name} proposal on the %{space_name} space"
|
721
|
-
create: "%{user_name} created the %{resource_name}
|
714
|
+
create: "%{user_name} created the proposal %{resource_name} from the merging of %{merged_count} proposals in %{space_name}"
|
722
715
|
publish_answer: "%{user_name} published the answer to %{resource_name} proposal on the %{space_name} space"
|
723
716
|
restore: "%{user_name} restored the %{resource_name} proposal on the %{space_name} space"
|
724
717
|
soft_delete: "%{user_name} moved to trash the %{resource_name} proposal on the %{space_name} space"
|
725
718
|
update: "%{user_name} updated the %{resource_name} official proposal on the %{space_name} space"
|
726
719
|
proposal_note:
|
727
720
|
create: "%{user_name} left a private note on the %{resource_name} proposal on the %{space_name} space"
|
728
|
-
valuation_assignment:
|
729
|
-
create: "%{user_name} assigned the %{resource_name} proposal to a valuator"
|
730
|
-
delete: "%{user_name} unassigned a valuator from the %{proposal_title} proposal"
|
731
721
|
answers:
|
732
722
|
accepted: Accepted
|
733
723
|
evaluating: Evaluating
|
@@ -740,7 +730,6 @@ en:
|
|
740
730
|
meetings: Meetings
|
741
731
|
official: Official
|
742
732
|
participants: Participants
|
743
|
-
user_groups: Groups
|
744
733
|
filter_state_values:
|
745
734
|
all: All
|
746
735
|
not_answered: Not answered
|
@@ -889,6 +878,8 @@ en:
|
|
889
878
|
proposal:
|
890
879
|
fields:
|
891
880
|
comments: Comments
|
881
|
+
evaluator: Evaluator
|
882
|
+
evaluators: Evaluators
|
892
883
|
id: ID
|
893
884
|
notes: Notes
|
894
885
|
official_proposal: Official proposal
|
@@ -897,8 +888,6 @@ en:
|
|
897
888
|
state: Status
|
898
889
|
taxonomies: Taxonomies
|
899
890
|
title: Title
|
900
|
-
valuator: Valuator
|
901
|
-
valuators: Valuators
|
902
891
|
votes: Votes
|
903
892
|
proposal_state:
|
904
893
|
css_class: CSS class
|
@@ -962,8 +951,8 @@ en:
|
|
962
951
|
orders:
|
963
952
|
label: 'Order proposals by:'
|
964
953
|
most_commented: Most commented
|
965
|
-
most_endorsed: Most endorsed
|
966
954
|
most_followed: Most followed
|
955
|
+
most_liked: Most liked
|
967
956
|
most_voted: Most voted
|
968
957
|
random: Random
|
969
958
|
recent: Recent
|
@@ -990,7 +979,7 @@ en:
|
|
990
979
|
changes_at_title: Amendment to "%{title}"
|
991
980
|
edit_proposal: Edit
|
992
981
|
estimated_cost: Estimated cost
|
993
|
-
|
982
|
+
hidden_likes_count:
|
994
983
|
one: and %{count} more person
|
995
984
|
other: and %{count} more people
|
996
985
|
link_to_collaborative_draft_help_text: This proposal is the result of a collaborative draft. Review the history
|
@@ -1074,6 +1063,9 @@ en:
|
|
1074
1063
|
proposal_project: 'Proposal appearing in these projects:'
|
1075
1064
|
proposal_result: 'Proposal appearing in these results:'
|
1076
1065
|
statistics:
|
1066
|
+
participatory_space_proposals_count: Proposals
|
1077
1067
|
proposals_accepted: Accepted Proposals
|
1078
1068
|
proposals_count: Proposals
|
1069
|
+
proposals_count_tooltip: The total number of submitted proposals and votes cast on them.
|
1070
|
+
votes: 'Votes:'
|
1079
1071
|
votes_count: Votes
|