decidim-proposals 0.30.3 → 0.31.0.rc2
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 +14 -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 +66 -72
 - data/config/locales/ca.yml +66 -72
 - data/config/locales/cs.yml +52 -81
 - data/config/locales/de.yml +64 -73
 - data/config/locales/el.yml +0 -66
 - data/config/locales/en.yml +71 -77
 - data/config/locales/es-MX.yml +70 -76
 - data/config/locales/es-PY.yml +70 -76
 - data/config/locales/es.yml +70 -76
 - data/config/locales/eu.yml +68 -74
 - data/config/locales/fi-plain.yml +69 -75
 - data/config/locales/fi.yml +69 -75
 - data/config/locales/fr-CA.yml +51 -74
 - data/config/locales/fr.yml +51 -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 +70 -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 +56 -46
 - 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
         
     | 
| 
         @@ -177,6 +177,7 @@ en: 
     | 
|
| 
       177 
177 
     | 
    
         
             
                        can_accumulate_votes_beyond_threshold: Can accumulate votes beyond threshold
         
     | 
| 
       178 
178 
     | 
    
         
             
                        clear_all: Clear all
         
     | 
| 
       179 
179 
     | 
    
         
             
                        collaborative_drafts_enabled: Collaborative drafts enabled
         
     | 
| 
      
 180 
     | 
    
         
            +
                        collaborative_drafts_enabled_help: The Collaborative Drafts feature will be removed in Decidim v0.32. Organizations using it can switch to the new proposal co-authorship feature.
         
     | 
| 
       180 
181 
     | 
    
         
             
                        comments_enabled: Comments enabled
         
     | 
| 
       181 
182 
     | 
    
         
             
                        comments_max_length: Comments max length (Leave 0 for default value)
         
     | 
| 
       182 
183 
     | 
    
         
             
                        default_sort_order: Default proposal sorting
         
     | 
| 
         @@ -184,8 +185,8 @@ en: 
     | 
|
| 
       184 
185 
     | 
    
         
             
                        default_sort_order_options:
         
     | 
| 
       185 
186 
     | 
    
         
             
                          automatic: Automatic
         
     | 
| 
       186 
187 
     | 
    
         
             
                          most_commented: Most commented
         
     | 
| 
       187 
     | 
    
         
            -
                          most_endorsed: Most endorsed
         
     | 
| 
       188 
188 
     | 
    
         
             
                          most_followed: Most followed
         
     | 
| 
      
 189 
     | 
    
         
            +
                          most_liked: Most liked
         
     | 
| 
       189 
190 
     | 
    
         
             
                          most_voted: Most voted
         
     | 
| 
       190 
191 
     | 
    
         
             
                          random: Random
         
     | 
| 
       191 
192 
     | 
    
         
             
                          recent: Recent
         
     | 
| 
         @@ -237,7 +238,6 @@ en: 
     | 
|
| 
       237 
238 
     | 
    
         
             
                        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 
239 
     | 
    
         
             
                        announcement: Announcement
         
     | 
| 
       239 
240 
     | 
    
         
             
                        answers_with_costs: Enable costs on proposal answers
         
     | 
| 
       240 
     | 
    
         
            -
                        automatic_hashtags: Hashtags added to all proposals
         
     | 
| 
       241 
241 
     | 
    
         
             
                        comments_blocked: Comments blocked
         
     | 
| 
       242 
242 
     | 
    
         
             
                        creation_enabled: Participants can create proposals
         
     | 
| 
       243 
243 
     | 
    
         
             
                        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 +246,17 @@ en: 
     | 
|
| 
       246 
246 
     | 
    
         
             
                        default_sort_order_options:
         
     | 
| 
       247 
247 
     | 
    
         
             
                          automatic: Automatic
         
     | 
| 
       248 
248 
     | 
    
         
             
                          most_commented: Most commented
         
     | 
| 
       249 
     | 
    
         
            -
                          most_endorsed: Most endorsed
         
     | 
| 
       250 
249 
     | 
    
         
             
                          most_followed: Most followed
         
     | 
| 
      
 250 
     | 
    
         
            +
                          most_liked: Most liked
         
     | 
| 
       251 
251 
     | 
    
         
             
                          most_voted: Most voted
         
     | 
| 
       252 
252 
     | 
    
         
             
                          random: Random
         
     | 
| 
       253 
253 
     | 
    
         
             
                          recent: Recent
         
     | 
| 
       254 
254 
     | 
    
         
             
                          with_more_authors: With more authors
         
     | 
| 
       255 
     | 
    
         
            -
                         
     | 
| 
       256 
     | 
    
         
            -
                         
     | 
| 
      
 255 
     | 
    
         
            +
                        likes_blocked: Likes blocked
         
     | 
| 
      
 256 
     | 
    
         
            +
                        likes_enabled: Likes enabled
         
     | 
| 
       257 
257 
     | 
    
         
             
                        proposal_answering_enabled: Proposal answering enabled
         
     | 
| 
       258 
258 
     | 
    
         
             
                        publish_answers_immediately: Publish proposal answers immediately
         
     | 
| 
       259 
259 
     | 
    
         
             
                        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 
260 
     | 
    
         
             
                        votes_blocked: Votes blocked
         
     | 
| 
       262 
261 
     | 
    
         
             
                        votes_enabled: Votes enabled
         
     | 
| 
       263 
262 
     | 
    
         
             
                        votes_hidden: Votes hidden (if votes are enabled, checking this will hide the number of votes)
         
     | 
| 
         @@ -270,14 +269,14 @@ en: 
     | 
|
| 
       270 
269 
     | 
    
         
             
                    accepted_coauthorship:
         
     | 
| 
       271 
270 
     | 
    
         
             
                      notification_title: You have been added as a co-author of the proposal <a href="%{resource_path}">%{resource_title}</a>.
         
     | 
| 
       272 
271 
     | 
    
         
             
                    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  
     | 
| 
      
 272 
     | 
    
         
            +
                      proposal_assigned_to_evaluator:
         
     | 
| 
      
 273 
     | 
    
         
            +
                        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>.
         
     | 
| 
      
 274 
     | 
    
         
            +
                        email_outro: You have received this notification because you can evaluate the proposal.
         
     | 
| 
      
 275 
     | 
    
         
            +
                        email_subject: You have been assigned as a evaluator to the proposal %{resource_title}.
         
     | 
| 
      
 276 
     | 
    
         
            +
                        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 
277 
     | 
    
         
             
                      proposal_note_created:
         
     | 
| 
       279 
278 
     | 
    
         
             
                        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  
     | 
| 
      
 279 
     | 
    
         
            +
                        email_outro: You have received this notification because you can evaluate the proposal.
         
     | 
| 
       281 
280 
     | 
    
         
             
                        email_subject: Someone left a note on proposal %{resource_title}.
         
     | 
| 
       282 
281 
     | 
    
         
             
                        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 
282 
     | 
    
         
             
                      proposal_note_mentioned:
         
     | 
| 
         @@ -337,16 +336,21 @@ en: 
     | 
|
| 
       337 
336 
     | 
    
         
             
                      email_outro: You have received this notification because you are following %{participatory_space_title}. You can stop receiving notifications following the previous link.
         
     | 
| 
       338 
337 
     | 
    
         
             
                      email_subject: Proposals now available in %{participatory_space_title}
         
     | 
| 
       339 
338 
     | 
    
         
             
                      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  
     | 
| 
      
 339 
     | 
    
         
            +
                    liking_enabled:
         
     | 
| 
      
 340 
     | 
    
         
            +
                      email_intro: 'You can like proposals in %{participatory_space_title}! Start participating in this page:'
         
     | 
| 
       342 
341 
     | 
    
         
             
                      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}"> 
     | 
| 
      
 342 
     | 
    
         
            +
                      email_subject: Proposals liking has started for %{participatory_space_title}
         
     | 
| 
      
 343 
     | 
    
         
            +
                      notification_title: You can now start <a href="%{resource_path}">liking proposals</a> in <a href="%{participatory_space_url}">%{participatory_space_title}</a>.
         
     | 
| 
       345 
344 
     | 
    
         
             
                    proposal_mentioned:
         
     | 
| 
       346 
345 
     | 
    
         
             
                      email_intro: Your proposal "%{mentioned_proposal_title}" has been mentioned <a href="%{resource_url}">in this space</a> in the comments.
         
     | 
| 
       347 
346 
     | 
    
         
             
                      email_outro: You have received this notification because you are an author of "%{resource_title}".
         
     | 
| 
       348 
347 
     | 
    
         
             
                      email_subject: Your proposal "%{mentioned_proposal_title}" has been mentioned
         
     | 
| 
       349 
348 
     | 
    
         
             
                      notification_title: Your proposal "%{mentioned_proposal_title}" has been mentioned <a href="%{resource_path}">in this space</a> in the comments.
         
     | 
| 
      
 349 
     | 
    
         
            +
                    proposal_merged:
         
     | 
| 
      
 350 
     | 
    
         
            +
                      email_intro: 'An admin has merged your proposal "%{resource_title}", check it out in this page:'
         
     | 
| 
      
 351 
     | 
    
         
            +
                      email_outro: You have received this notification because you are the author of the proposal.
         
     | 
| 
      
 352 
     | 
    
         
            +
                      email_subject: The %{resource_title} proposal has been merged
         
     | 
| 
      
 353 
     | 
    
         
            +
                      notification_title: The <a href="%{resource_path}">%{resource_title}</a> proposal has been merged by an admin.
         
     | 
| 
       350 
354 
     | 
    
         
             
                    proposal_published:
         
     | 
| 
       351 
355 
     | 
    
         
             
                      email_intro: '%{author_name} %{author_nickname}, who you are following, has published a new proposal called "%{resource_title}". Check it out and contribute:'
         
     | 
| 
       352 
356 
     | 
    
         
             
                      email_outro: You have received this notification because you are following %{author_nickname}. You can stop receiving notifications following the previous link.
         
     | 
| 
         @@ -416,23 +420,6 @@ en: 
     | 
|
| 
       416 
420 
     | 
    
         
             
                      next_level_in: Create %{score} more proposals to reach the next level!
         
     | 
| 
       417 
421 
     | 
    
         
             
                      unearned_another: This participant has not created any proposals yet.
         
     | 
| 
       418 
422 
     | 
    
         
             
                      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 
423 
     | 
    
         
             
                open_data:
         
     | 
| 
       437 
424 
     | 
    
         
             
                  help:
         
     | 
| 
       438 
425 
     | 
    
         
             
                    proposal_comments:
         
     | 
| 
         @@ -446,7 +433,6 @@ en: 
     | 
|
| 
       446 
433 
     | 
    
         
             
                      id: The id for this comment
         
     | 
| 
       447 
434 
     | 
    
         
             
                      locale: The locale (language) that the participant had when leaving this comment
         
     | 
| 
       448 
435 
     | 
    
         
             
                      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 
436 
     | 
    
         
             
                    proposals:
         
     | 
| 
       451 
437 
     | 
    
         
             
                      address: The address of the proposal in case the proposal has a physical location
         
     | 
| 
       452 
438 
     | 
    
         
             
                      answer: The answer to the proposal in the case it has been answered
         
     | 
| 
         @@ -461,12 +447,12 @@ en: 
     | 
|
| 
       461 
447 
     | 
    
         
             
                      cost_report: A report of costs for the proposal
         
     | 
| 
       462 
448 
     | 
    
         
             
                      created_at: The date the proposal was created
         
     | 
| 
       463 
449 
     | 
    
         
             
                      created_in_meeting: Whether the proposal was created in a meeting
         
     | 
| 
       464 
     | 
    
         
            -
                      endorsements: The number of endorsements ("likes") this proposal has
         
     | 
| 
       465 
450 
     | 
    
         
             
                      execution_period: The period at which the proposal ran from beginning to end
         
     | 
| 
       466 
451 
     | 
    
         
             
                      follows_count: The number of followers this proposal has
         
     | 
| 
       467 
452 
     | 
    
         
             
                      id: The unique identifier for the proposal
         
     | 
| 
       468 
453 
     | 
    
         
             
                      is_amend: Wheter this proposal is ammedning another proposal
         
     | 
| 
       469 
454 
     | 
    
         
             
                      latitude: The latitude of the proposal in case it has a physical location
         
     | 
| 
      
 455 
     | 
    
         
            +
                      likes: The number of likes ("likes") this proposal has
         
     | 
| 
       470 
456 
     | 
    
         
             
                      longitude: The longitude of the proposal in case it has a physical location
         
     | 
| 
       471 
457 
     | 
    
         
             
                      meeting_urls: The URLs of the meetings where this proposal was presented or discussed in
         
     | 
| 
       472 
458 
     | 
    
         
             
                      original_proposal: The reference of the original proposal if this is an amendment
         
     | 
| 
         @@ -509,6 +495,14 @@ en: 
     | 
|
| 
       509 
495 
     | 
    
         
             
                      deleted_proposals_info: Deleted proposals can be restored from the trash.
         
     | 
| 
       510 
496 
     | 
    
         
             
                      preview: Preview
         
     | 
| 
       511 
497 
     | 
    
         
             
                      view_deleted_proposals: View deleted proposals
         
     | 
| 
      
 498 
     | 
    
         
            +
                    deprecation_warning_collaborative_drafts_html: "⚠️ <b>Deprecation Notice.</b> The Collaborative Drafts feature will be removed in Decidim v0.32. Organizations using it can switch to the new proposal co-authorship feature."
         
     | 
| 
      
 499 
     | 
    
         
            +
                    evaluation_assignments:
         
     | 
| 
      
 500 
     | 
    
         
            +
                      create:
         
     | 
| 
      
 501 
     | 
    
         
            +
                        invalid: There was a problem assigning proposals to a evaluator.
         
     | 
| 
      
 502 
     | 
    
         
            +
                        success: Proposals assigned to a evaluator successfully.
         
     | 
| 
      
 503 
     | 
    
         
            +
                      delete:
         
     | 
| 
      
 504 
     | 
    
         
            +
                        invalid: There was a problem unassigning proposals from a evaluator.
         
     | 
| 
      
 505 
     | 
    
         
            +
                        success: Evaluator unassigned from proposals successfully.
         
     | 
| 
       512 
506 
     | 
    
         
             
                    exports:
         
     | 
| 
       513 
507 
     | 
    
         
             
                      proposal_comments: Comments
         
     | 
| 
       514 
508 
     | 
    
         
             
                      proposals: Proposals
         
     | 
| 
         @@ -639,24 +633,24 @@ en: 
     | 
|
| 
       639 
633 
     | 
    
         
             
                      index:
         
     | 
| 
       640 
634 
     | 
    
         
             
                        actions: Actions
         
     | 
| 
       641 
635 
     | 
    
         
             
                        apply_answer_template: Apply answer template
         
     | 
| 
       642 
     | 
    
         
            -
                         
     | 
| 
       643 
     | 
    
         
            -
                         
     | 
| 
      
 636 
     | 
    
         
            +
                        assign_to_evaluator: Assign to evaluator
         
     | 
| 
      
 637 
     | 
    
         
            +
                        assign_to_evaluator_button: Assign
         
     | 
| 
       644 
638 
     | 
    
         
             
                        cancel: Cancel
         
     | 
| 
       645 
639 
     | 
    
         
             
                        change_taxonomies: Change taxonomies
         
     | 
| 
       646 
640 
     | 
    
         
             
                        merge: Merge into a new one
         
     | 
| 
       647 
     | 
    
         
            -
                        merge_button:  
     | 
| 
      
 641 
     | 
    
         
            +
                        merge_button: Create
         
     | 
| 
       648 
642 
     | 
    
         
             
                        no_templates_available: No templates available
         
     | 
| 
       649 
643 
     | 
    
         
             
                        publish: Publish
         
     | 
| 
       650 
644 
     | 
    
         
             
                        publish_answers: Publish answers
         
     | 
| 
       651 
645 
     | 
    
         
             
                        select_component: Select a component
         
     | 
| 
       652 
     | 
    
         
            -
                         
     | 
| 
      
 646 
     | 
    
         
            +
                        select_evaluators: Select one or more evaluators
         
     | 
| 
       653 
647 
     | 
    
         
             
                        selected: selected
         
     | 
| 
       654 
648 
     | 
    
         
             
                        split: Split proposals
         
     | 
| 
       655 
649 
     | 
    
         
             
                        split_button: Split
         
     | 
| 
       656 
650 
     | 
    
         
             
                        statuses: Statuses
         
     | 
| 
       657 
651 
     | 
    
         
             
                        title: Proposals
         
     | 
| 
       658 
     | 
    
         
            -
                         
     | 
| 
       659 
     | 
    
         
            -
                         
     | 
| 
      
 652 
     | 
    
         
            +
                        unassign_from_evaluator: Unassign from evaluator
         
     | 
| 
      
 653 
     | 
    
         
            +
                        unassign_from_evaluator_button: Unassign
         
     | 
| 
       660 
654 
     | 
    
         
             
                        update: Update
         
     | 
| 
       661 
655 
     | 
    
         
             
                      manage_trash:
         
     | 
| 
       662 
656 
     | 
    
         
             
                        title: Deleted proposals
         
     | 
| 
         @@ -668,22 +662,22 @@ en: 
     | 
|
| 
       668 
662 
     | 
    
         
             
                        select_a_proposal: Please select a proposal.
         
     | 
| 
       669 
663 
     | 
    
         
             
                      show:
         
     | 
| 
       670 
664 
     | 
    
         
             
                        amendments_count: Amendments count
         
     | 
| 
       671 
     | 
    
         
            -
                         
     | 
| 
      
 665 
     | 
    
         
            +
                        assigned_evaluators: Assigned evaluators
         
     | 
| 
       672 
666 
     | 
    
         
             
                        body: Body
         
     | 
| 
       673 
667 
     | 
    
         
             
                        comments_count: Comments count
         
     | 
| 
       674 
668 
     | 
    
         
             
                        documents: Documents
         
     | 
| 
       675 
     | 
    
         
            -
                         
     | 
| 
       676 
     | 
    
         
            -
                         
     | 
| 
      
 669 
     | 
    
         
            +
                        evaluators: Evaluators
         
     | 
| 
      
 670 
     | 
    
         
            +
                        likes: Likes
         
     | 
| 
      
 671 
     | 
    
         
            +
                        likes_count: Likes count
         
     | 
| 
       677 
672 
     | 
    
         
             
                        link: See proposal
         
     | 
| 
       678 
     | 
    
         
            -
                         
     | 
| 
      
 673 
     | 
    
         
            +
                        n_more_likes:
         
     | 
| 
       679 
674 
     | 
    
         
             
                          one: and 1 more
         
     | 
| 
       680 
675 
     | 
    
         
             
                          other: and %{count} more
         
     | 
| 
       681 
676 
     | 
    
         
             
                        photos: Photos
         
     | 
| 
       682 
677 
     | 
    
         
             
                        ranking: "%{ranking} of %{total}"
         
     | 
| 
       683 
678 
     | 
    
         
             
                        related_meetings: Related meetings
         
     | 
| 
       684 
679 
     | 
    
         
             
                        remove_assignment: Remove assignment
         
     | 
| 
       685 
     | 
    
         
            -
                        remove_assignment_confirmation: Are you sure you want to remove the  
     | 
| 
       686 
     | 
    
         
            -
                        valuators: Valuators
         
     | 
| 
      
 680 
     | 
    
         
            +
                        remove_assignment_confirmation: Are you sure you want to remove the evaluator from this proposal?
         
     | 
| 
       687 
681 
     | 
    
         
             
                        votes_count: Votes count
         
     | 
| 
       688 
682 
     | 
    
         
             
                      update_taxonomies:
         
     | 
| 
       689 
683 
     | 
    
         
             
                        invalid: 'These proposals already had the %{taxonomies} taxonomies: %{proposals}.'
         
     | 
| 
         @@ -704,30 +698,28 @@ en: 
     | 
|
| 
       704 
698 
     | 
    
         
             
                      create:
         
     | 
| 
       705 
699 
     | 
    
         
             
                        invalid: 'There was a problem merging the selected proposals because some of them:'
         
     | 
| 
       706 
700 
     | 
    
         
             
                        success: Successfully merged the proposals into a new one.
         
     | 
| 
      
 701 
     | 
    
         
            +
                      form:
         
     | 
| 
      
 702 
     | 
    
         
            +
                        created_in_meeting: This proposal comes from a meeting
         
     | 
| 
      
 703 
     | 
    
         
            +
                        select_a_meeting: Select a meeting
         
     | 
| 
      
 704 
     | 
    
         
            +
                      new:
         
     | 
| 
      
 705 
     | 
    
         
            +
                        title: Merge into a new one
         
     | 
| 
       707 
706 
     | 
    
         
             
                    proposals_splits:
         
     | 
| 
       708 
707 
     | 
    
         
             
                      create:
         
     | 
| 
       709 
708 
     | 
    
         
             
                        invalid: 'There was a problem splitting the selected proposals because some of them:'
         
     | 
| 
       710 
709 
     | 
    
         
             
                        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 
710 
     | 
    
         
             
                  admin_log:
         
     | 
| 
      
 711 
     | 
    
         
            +
                    evaluation_assignment:
         
     | 
| 
      
 712 
     | 
    
         
            +
                      create: "%{user_name} assigned the %{resource_name} proposal to a evaluator"
         
     | 
| 
      
 713 
     | 
    
         
            +
                      delete: "%{user_name} unassigned a evaluator from the %{proposal_title} proposal"
         
     | 
| 
       719 
714 
     | 
    
         
             
                    proposal:
         
     | 
| 
       720 
715 
     | 
    
         
             
                      answer: "%{user_name} answered the %{resource_name} proposal on the %{space_name} space"
         
     | 
| 
       721 
     | 
    
         
            -
                      create: "%{user_name} created the %{resource_name}  
     | 
| 
      
 716 
     | 
    
         
            +
                      create: "%{user_name} created the proposal %{resource_name} from the merging of %{merged_count} proposals in %{space_name}"
         
     | 
| 
       722 
717 
     | 
    
         
             
                      publish_answer: "%{user_name} published the answer to %{resource_name} proposal on the %{space_name} space"
         
     | 
| 
       723 
718 
     | 
    
         
             
                      restore: "%{user_name} restored the %{resource_name} proposal on the %{space_name} space"
         
     | 
| 
       724 
719 
     | 
    
         
             
                      soft_delete: "%{user_name} moved to trash the %{resource_name} proposal on the %{space_name} space"
         
     | 
| 
       725 
720 
     | 
    
         
             
                      update: "%{user_name} updated the %{resource_name} official proposal on the %{space_name} space"
         
     | 
| 
       726 
721 
     | 
    
         
             
                    proposal_note:
         
     | 
| 
       727 
722 
     | 
    
         
             
                      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 
723 
     | 
    
         
             
                  answers:
         
     | 
| 
       732 
724 
     | 
    
         
             
                    accepted: Accepted
         
     | 
| 
       733 
725 
     | 
    
         
             
                    evaluating: Evaluating
         
     | 
| 
         @@ -740,7 +732,6 @@ en: 
     | 
|
| 
       740 
732 
     | 
    
         
             
                      meetings: Meetings
         
     | 
| 
       741 
733 
     | 
    
         
             
                      official: Official
         
     | 
| 
       742 
734 
     | 
    
         
             
                      participants: Participants
         
     | 
| 
       743 
     | 
    
         
            -
                      user_groups: Groups
         
     | 
| 
       744 
735 
     | 
    
         
             
                    filter_state_values:
         
     | 
| 
       745 
736 
     | 
    
         
             
                      all: All
         
     | 
| 
       746 
737 
     | 
    
         
             
                      not_answered: Not answered
         
     | 
| 
         @@ -889,6 +880,8 @@ en: 
     | 
|
| 
       889 
880 
     | 
    
         
             
                    proposal:
         
     | 
| 
       890 
881 
     | 
    
         
             
                      fields:
         
     | 
| 
       891 
882 
     | 
    
         
             
                        comments: Comments
         
     | 
| 
      
 883 
     | 
    
         
            +
                        evaluator: Evaluator
         
     | 
| 
      
 884 
     | 
    
         
            +
                        evaluators: Evaluators
         
     | 
| 
       892 
885 
     | 
    
         
             
                        id: ID
         
     | 
| 
       893 
886 
     | 
    
         
             
                        notes: Notes
         
     | 
| 
       894 
887 
     | 
    
         
             
                        official_proposal: Official proposal
         
     | 
| 
         @@ -897,8 +890,6 @@ en: 
     | 
|
| 
       897 
890 
     | 
    
         
             
                        state: Status
         
     | 
| 
       898 
891 
     | 
    
         
             
                        taxonomies: Taxonomies
         
     | 
| 
       899 
892 
     | 
    
         
             
                        title: Title
         
     | 
| 
       900 
     | 
    
         
            -
                        valuator: Valuator
         
     | 
| 
       901 
     | 
    
         
            -
                        valuators: Valuators
         
     | 
| 
       902 
893 
     | 
    
         
             
                        votes: Votes
         
     | 
| 
       903 
894 
     | 
    
         
             
                    proposal_state:
         
     | 
| 
       904 
895 
     | 
    
         
             
                      css_class: CSS class
         
     | 
| 
         @@ -962,8 +953,8 @@ en: 
     | 
|
| 
       962 
953 
     | 
    
         
             
                    orders:
         
     | 
| 
       963 
954 
     | 
    
         
             
                      label: 'Order proposals by:'
         
     | 
| 
       964 
955 
     | 
    
         
             
                      most_commented: Most commented
         
     | 
| 
       965 
     | 
    
         
            -
                      most_endorsed: Most endorsed
         
     | 
| 
       966 
956 
     | 
    
         
             
                      most_followed: Most followed
         
     | 
| 
      
 957 
     | 
    
         
            +
                      most_liked: Most liked
         
     | 
| 
       967 
958 
     | 
    
         
             
                      most_voted: Most voted
         
     | 
| 
       968 
959 
     | 
    
         
             
                      random: Random
         
     | 
| 
       969 
960 
     | 
    
         
             
                      recent: Recent
         
     | 
| 
         @@ -990,7 +981,7 @@ en: 
     | 
|
| 
       990 
981 
     | 
    
         
             
                      changes_at_title: Amendment to "%{title}"
         
     | 
| 
       991 
982 
     | 
    
         
             
                      edit_proposal: Edit
         
     | 
| 
       992 
983 
     | 
    
         
             
                      estimated_cost: Estimated cost
         
     | 
| 
       993 
     | 
    
         
            -
                       
     | 
| 
      
 984 
     | 
    
         
            +
                      hidden_likes_count:
         
     | 
| 
       994 
985 
     | 
    
         
             
                        one: and %{count} more person
         
     | 
| 
       995 
986 
     | 
    
         
             
                        other: and %{count} more people
         
     | 
| 
       996 
987 
     | 
    
         
             
                      link_to_collaborative_draft_help_text: This proposal is the result of a collaborative draft. Review the history
         
     | 
| 
         @@ -1074,6 +1065,9 @@ en: 
     | 
|
| 
       1074 
1065 
     | 
    
         
             
                    proposal_project: 'Proposal appearing in these projects:'
         
     | 
| 
       1075 
1066 
     | 
    
         
             
                    proposal_result: 'Proposal appearing in these results:'
         
     | 
| 
       1076 
1067 
     | 
    
         
             
                statistics:
         
     | 
| 
      
 1068 
     | 
    
         
            +
                  participatory_space_proposals_count: Proposals
         
     | 
| 
       1077 
1069 
     | 
    
         
             
                  proposals_accepted: Accepted Proposals
         
     | 
| 
       1078 
1070 
     | 
    
         
             
                  proposals_count: Proposals
         
     | 
| 
      
 1071 
     | 
    
         
            +
                  proposals_count_tooltip: The total number of submitted proposals and votes cast on them.
         
     | 
| 
      
 1072 
     | 
    
         
            +
                  votes: 'Votes:'
         
     | 
| 
       1079 
1073 
     | 
    
         
             
                  votes_count: Votes
         
     |