decidim-enhanced_textwork 1.0.0
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 +7 -0
- data/README.md +64 -0
- data/Rakefile +3 -0
- data/app/cells/decidim/enhanced_textwork/amendment/show.erb +14 -0
- data/app/cells/decidim/enhanced_textwork/amendment_cell.rb +39 -0
- data/app/cells/decidim/enhanced_textwork/collaborative_draft_cell.rb +49 -0
- data/app/cells/decidim/enhanced_textwork/collaborative_draft_link_to_paragraph/show.erb +13 -0
- data/app/cells/decidim/enhanced_textwork/collaborative_draft_link_to_paragraph_cell.rb +57 -0
- data/app/cells/decidim/enhanced_textwork/collaborative_draft_m/footer.erb +6 -0
- data/app/cells/decidim/enhanced_textwork/collaborative_draft_m/tags.erb +1 -0
- data/app/cells/decidim/enhanced_textwork/collaborative_draft_m_cell.rb +44 -0
- data/app/cells/decidim/enhanced_textwork/collaborative_drafts/reported_content/show.erb +3 -0
- data/app/cells/decidim/enhanced_textwork/collaborative_drafts/reported_content_cell.rb +15 -0
- data/app/cells/decidim/enhanced_textwork/comments/show.erb +33 -0
- data/app/cells/decidim/enhanced_textwork/comments_cell.rb +8 -0
- data/app/cells/decidim/enhanced_textwork/content_blocks/highlighted_paragraphs/elements.erb +5 -0
- data/app/cells/decidim/enhanced_textwork/content_blocks/highlighted_paragraphs/heading.erb +1 -0
- data/app/cells/decidim/enhanced_textwork/content_blocks/highlighted_paragraphs_cell.rb +19 -0
- data/app/cells/decidim/enhanced_textwork/cost_report/show.erb +35 -0
- data/app/cells/decidim/enhanced_textwork/cost_report_cell.rb +42 -0
- data/app/cells/decidim/enhanced_textwork/highlighted_paragraphs/show.erb +3 -0
- data/app/cells/decidim/enhanced_textwork/highlighted_paragraphs_cell.rb +25 -0
- data/app/cells/decidim/enhanced_textwork/highlighted_paragraphs_for_component/show.erb +19 -0
- data/app/cells/decidim/enhanced_textwork/highlighted_paragraphs_for_component_cell.rb +41 -0
- data/app/cells/decidim/enhanced_textwork/irreversible_action_modal/show.erb +27 -0
- data/app/cells/decidim/enhanced_textwork/irreversible_action_modal_cell.rb +80 -0
- data/app/cells/decidim/enhanced_textwork/paragraph_activity_cell.rb +35 -0
- data/app/cells/decidim/enhanced_textwork/paragraph_cell.rb +53 -0
- data/app/cells/decidim/enhanced_textwork/paragraph_link_to_collaborative_draft_cell.rb +26 -0
- data/app/cells/decidim/enhanced_textwork/paragraph_link_to_rejected_emendation/show.erb +9 -0
- data/app/cells/decidim/enhanced_textwork/paragraph_link_to_rejected_emendation_cell.rb +34 -0
- data/app/cells/decidim/enhanced_textwork/paragraph_linked_resources/show.erb +9 -0
- data/app/cells/decidim/enhanced_textwork/paragraph_linked_resources_cell.rb +14 -0
- data/app/cells/decidim/enhanced_textwork/paragraph_m/footer.erb +26 -0
- data/app/cells/decidim/enhanced_textwork/paragraph_m/tags.erb +1 -0
- data/app/cells/decidim/enhanced_textwork/paragraph_m_cell.rb +152 -0
- data/app/cells/decidim/enhanced_textwork/paragraph_tags/show.erb +33 -0
- data/app/cells/decidim/enhanced_textwork/paragraph_tags_cell.rb +35 -0
- data/app/cells/decidim/enhanced_textwork/paragraphs_picker/paragraphs.erb +12 -0
- data/app/cells/decidim/enhanced_textwork/paragraphs_picker/show.erb +14 -0
- data/app/cells/decidim/enhanced_textwork/paragraphs_picker_cell.rb +72 -0
- data/app/cells/decidim/enhanced_textwork/participatory_text_paragraph/buttons.erb +33 -0
- data/app/cells/decidim/enhanced_textwork/participatory_text_paragraph/show.erb +38 -0
- data/app/cells/decidim/enhanced_textwork/participatory_text_paragraph_cell.rb +104 -0
- data/app/cells/decidim/enhanced_textwork/reported_content/show.erb +4 -0
- data/app/cells/decidim/enhanced_textwork/reported_content_cell.rb +13 -0
- data/app/commands/decidim/enhanced_textwork/accept_access_to_collaborative_draft.rb +70 -0
- data/app/commands/decidim/enhanced_textwork/admin/answer_paragraph.rb +74 -0
- data/app/commands/decidim/enhanced_textwork/admin/assign_paragraphs_to_valuator.rb +61 -0
- data/app/commands/decidim/enhanced_textwork/admin/create_paragraph.rb +97 -0
- data/app/commands/decidim/enhanced_textwork/admin/create_paragraph_note.rb +67 -0
- data/app/commands/decidim/enhanced_textwork/admin/destroy_paragraph.rb +32 -0
- data/app/commands/decidim/enhanced_textwork/admin/discard_participatory_text.rb +40 -0
- data/app/commands/decidim/enhanced_textwork/admin/import_from_editor_participatory_text.rb +53 -0
- data/app/commands/decidim/enhanced_textwork/admin/import_paragraphs.rb +101 -0
- data/app/commands/decidim/enhanced_textwork/admin/import_participatory_text.rb +55 -0
- data/app/commands/decidim/enhanced_textwork/admin/merge_paragraphs.rb +69 -0
- data/app/commands/decidim/enhanced_textwork/admin/notify_paragraph_answer.rb +85 -0
- data/app/commands/decidim/enhanced_textwork/admin/publish_answers.rb +67 -0
- data/app/commands/decidim/enhanced_textwork/admin/publish_participatory_text.rb +81 -0
- data/app/commands/decidim/enhanced_textwork/admin/split_paragraphs.rb +67 -0
- data/app/commands/decidim/enhanced_textwork/admin/unassign_paragraphs_from_valuator.rb +62 -0
- data/app/commands/decidim/enhanced_textwork/admin/update_paragraph.rb +86 -0
- data/app/commands/decidim/enhanced_textwork/admin/update_paragraph_category.rb +68 -0
- data/app/commands/decidim/enhanced_textwork/admin/update_paragraph_scope.rb +75 -0
- data/app/commands/decidim/enhanced_textwork/admin/update_participatory_text.rb +68 -0
- data/app/commands/decidim/enhanced_textwork/create_collaborative_draft.rb +81 -0
- data/app/commands/decidim/enhanced_textwork/create_paragraph.rb +106 -0
- data/app/commands/decidim/enhanced_textwork/destroy_paragraph.rb +33 -0
- data/app/commands/decidim/enhanced_textwork/gallery_methods.rb +18 -0
- data/app/commands/decidim/enhanced_textwork/hashtags_methods.rb +36 -0
- data/app/commands/decidim/enhanced_textwork/publish_collaborative_draft.rb +93 -0
- data/app/commands/decidim/enhanced_textwork/publish_paragraph.rb +105 -0
- data/app/commands/decidim/enhanced_textwork/reject_access_to_collaborative_draft.rb +62 -0
- data/app/commands/decidim/enhanced_textwork/request_access_to_collaborative_draft.rb +49 -0
- data/app/commands/decidim/enhanced_textwork/unvote_paragraph.rb +65 -0
- data/app/commands/decidim/enhanced_textwork/update_collaborative_draft.rb +63 -0
- data/app/commands/decidim/enhanced_textwork/update_paragraph.rb +135 -0
- data/app/commands/decidim/enhanced_textwork/vote_paragraph.rb +77 -0
- data/app/commands/decidim/enhanced_textwork/withdraw_collaborative_draft.rb +65 -0
- data/app/commands/decidim/enhanced_textwork/withdraw_paragraph.rb +50 -0
- data/app/controllers/concerns/decidim/enhanced_textwork/admin/filterable.rb +82 -0
- data/app/controllers/concerns/decidim/enhanced_textwork/admin/picker.rb +21 -0
- data/app/controllers/concerns/decidim/enhanced_textwork/collaborative_orderable.rb +42 -0
- data/app/controllers/concerns/decidim/enhanced_textwork/orderable.rb +78 -0
- data/app/controllers/decidim/enhanced_textwork/admin/application_controller.rb +16 -0
- data/app/controllers/decidim/enhanced_textwork/admin/paragraph_answers_controller.rb +50 -0
- data/app/controllers/decidim/enhanced_textwork/admin/paragraph_notes_controller.rb +39 -0
- data/app/controllers/decidim/enhanced_textwork/admin/paragraphs_controller.rb +237 -0
- data/app/controllers/decidim/enhanced_textwork/admin/paragraphs_imports_controller.rb +33 -0
- data/app/controllers/decidim/enhanced_textwork/admin/paragraphs_merges_controller.rb +30 -0
- data/app/controllers/decidim/enhanced_textwork/admin/paragraphs_splits_controller.rb +30 -0
- data/app/controllers/decidim/enhanced_textwork/admin/participatory_texts_controller.rb +128 -0
- data/app/controllers/decidim/enhanced_textwork/admin/valuation_assignments_controller.rb +58 -0
- data/app/controllers/decidim/enhanced_textwork/application_controller.rb +31 -0
- data/app/controllers/decidim/enhanced_textwork/collaborative_draft_collaborator_requests_controller.rb +53 -0
- data/app/controllers/decidim/enhanced_textwork/collaborative_drafts_controller.rb +161 -0
- data/app/controllers/decidim/enhanced_textwork/paragraph_votes_controller.rb +65 -0
- data/app/controllers/decidim/enhanced_textwork/paragraphs_controller.rb +316 -0
- data/app/controllers/decidim/enhanced_textwork/versions_controller.rb +21 -0
- data/app/controllers/decidim/enhanced_textwork/widgets_controller.rb +19 -0
- data/app/events/decidim/enhanced_textwork/accepted_paragraph_event.rb +17 -0
- data/app/events/decidim/enhanced_textwork/admin/paragraph_note_created_event.rb +27 -0
- data/app/events/decidim/enhanced_textwork/admin/update_paragraph_category_event.rb +11 -0
- data/app/events/decidim/enhanced_textwork/admin/update_paragraph_scope_event.rb +11 -0
- data/app/events/decidim/enhanced_textwork/collaborative_draft_access_accepted_event.rb +8 -0
- data/app/events/decidim/enhanced_textwork/collaborative_draft_access_rejected_event.rb +8 -0
- data/app/events/decidim/enhanced_textwork/collaborative_draft_access_request_event.rb +27 -0
- data/app/events/decidim/enhanced_textwork/collaborative_draft_access_requested_event.rb +8 -0
- data/app/events/decidim/enhanced_textwork/collaborative_draft_access_requester_accepted_event.rb +8 -0
- data/app/events/decidim/enhanced_textwork/collaborative_draft_access_requester_rejected_event.rb +8 -0
- data/app/events/decidim/enhanced_textwork/collaborative_draft_withdrawn_event.rb +29 -0
- data/app/events/decidim/enhanced_textwork/creation_enabled_event.rb +8 -0
- data/app/events/decidim/enhanced_textwork/endorsing_enabled_event.rb +8 -0
- data/app/events/decidim/enhanced_textwork/evaluating_paragraph_event.rb +11 -0
- data/app/events/decidim/enhanced_textwork/paragraph_endorsed_event.rb +33 -0
- data/app/events/decidim/enhanced_textwork/paragraph_mentioned_event.rb +21 -0
- data/app/events/decidim/enhanced_textwork/publish_paragraph_event.rb +25 -0
- data/app/events/decidim/enhanced_textwork/rejected_paragraph_event.rb +17 -0
- data/app/events/decidim/enhanced_textwork/voting_enabled_event.rb +8 -0
- data/app/forms/decidim/enhanced_textwork/accept_access_to_collaborative_draft_form.rb +10 -0
- data/app/forms/decidim/enhanced_textwork/access_to_collaborative_draft_form.rb +33 -0
- data/app/forms/decidim/enhanced_textwork/admin/import_editor_participatory_text_form.rb +35 -0
- data/app/forms/decidim/enhanced_textwork/admin/import_participatory_text_form.rb +68 -0
- data/app/forms/decidim/enhanced_textwork/admin/paragraph_answer_form.rb +44 -0
- data/app/forms/decidim/enhanced_textwork/admin/paragraph_base_form.rb +137 -0
- data/app/forms/decidim/enhanced_textwork/admin/paragraph_form.rb +32 -0
- data/app/forms/decidim/enhanced_textwork/admin/paragraph_note_form.rb +16 -0
- data/app/forms/decidim/enhanced_textwork/admin/paragraphs_fork_form.rb +63 -0
- data/app/forms/decidim/enhanced_textwork/admin/paragraphs_import_form.rb +67 -0
- data/app/forms/decidim/enhanced_textwork/admin/paragraphs_merge_form.rb +13 -0
- data/app/forms/decidim/enhanced_textwork/admin/paragraphs_split_form.rb +12 -0
- data/app/forms/decidim/enhanced_textwork/admin/participatory_text_paragraph_form.rb +20 -0
- data/app/forms/decidim/enhanced_textwork/admin/preview_participatory_text_form.rb +21 -0
- data/app/forms/decidim/enhanced_textwork/admin/valuation_assignment_form.rb +37 -0
- data/app/forms/decidim/enhanced_textwork/collaborative_draft_form.rb +20 -0
- data/app/forms/decidim/enhanced_textwork/paragraph_form.rb +126 -0
- data/app/forms/decidim/enhanced_textwork/paragraph_wizard_create_step_form.rb +41 -0
- data/app/forms/decidim/enhanced_textwork/reject_access_to_collaborative_draft_form.rb +9 -0
- data/app/forms/decidim/enhanced_textwork/request_access_to_collaborative_draft_form.rb +20 -0
- data/app/helpers/decidim/enhanced_textwork/admin/filterable_helper.rb +17 -0
- data/app/helpers/decidim/enhanced_textwork/admin/paragraph_bulk_actions_helper.rb +35 -0
- data/app/helpers/decidim/enhanced_textwork/admin/paragraph_rankings_helper.rb +63 -0
- data/app/helpers/decidim/enhanced_textwork/admin/paragraphs_helper.rb +144 -0
- data/app/helpers/decidim/enhanced_textwork/admin/paragraphs_picker_helper.rb +30 -0
- data/app/helpers/decidim/enhanced_textwork/application_helper.rb +191 -0
- data/app/helpers/decidim/enhanced_textwork/collaborative_draft_cells_helper.rb +48 -0
- data/app/helpers/decidim/enhanced_textwork/collaborative_draft_helper.rb +29 -0
- data/app/helpers/decidim/enhanced_textwork/control_version_helper.rb +12 -0
- data/app/helpers/decidim/enhanced_textwork/map_helper.rb +48 -0
- data/app/helpers/decidim/enhanced_textwork/paragraph_cells_helper.rb +75 -0
- data/app/helpers/decidim/enhanced_textwork/paragraph_votes_helper.rb +103 -0
- data/app/helpers/decidim/enhanced_textwork/paragraph_wizard_helper.rb +140 -0
- data/app/helpers/decidim/enhanced_textwork/paragraphs_helper.rb +63 -0
- data/app/helpers/decidim/enhanced_textwork/participatory_texts_helper.rb +49 -0
- data/app/jobs/decidim/enhanced_textwork/notify_paragraphs_mentioned_job.rb +27 -0
- data/app/jobs/decidim/enhanced_textwork/settings_change_job.rb +50 -0
- data/app/models/decidim/enhanced_textwork/application_record.rb +10 -0
- data/app/models/decidim/enhanced_textwork/collaborative_draft.rb +73 -0
- data/app/models/decidim/enhanced_textwork/collaborative_draft_collaborator_request.rb +13 -0
- data/app/models/decidim/enhanced_textwork/paragraph.rb +411 -0
- data/app/models/decidim/enhanced_textwork/paragraph_note.rb +20 -0
- data/app/models/decidim/enhanced_textwork/paragraph_vote.rb +50 -0
- data/app/models/decidim/enhanced_textwork/participatory_text.rb +16 -0
- data/app/models/decidim/enhanced_textwork/valuation_assignment.rb +24 -0
- data/app/packs/documents/decidim/enhanced_textwork/participatory_texts/participatory_text.md +52 -0
- data/app/packs/documents/decidim/enhanced_textwork/participatory_texts/participatory_text.odt +0 -0
- data/app/packs/entrypoints/decidim_enhanced_textwork.js +17 -0
- data/app/packs/entrypoints/decidim_enhanced_textwork_admin.js +3 -0
- data/app/packs/images/decidim/enhanced_textwork/decidim_paragraphs.svg +1 -0
- data/app/packs/images/decidim/gamification/badges/decidim_gamification_badges_accepted_paragraphs.svg +1 -0
- data/app/packs/images/decidim/gamification/badges/decidim_gamification_badges_paragraph_votes.svg +1 -0
- data/app/packs/images/decidim/gamification/badges/decidim_gamification_badges_paragraphs.svg +1 -0
- data/app/packs/src/decidim/enhanced_textwork/add_paragraph.js +49 -0
- data/app/packs/src/decidim/enhanced_textwork/admin/paragraphs.js +143 -0
- data/app/packs/src/decidim/enhanced_textwork/admin/paragraphs_form.js +29 -0
- data/app/packs/src/decidim/enhanced_textwork/admin/paragraphs_picker.js +35 -0
- data/app/packs/src/decidim/enhanced_textwork/toggle_element.js +21 -0
- data/app/packs/src/decidim/enhanced_textwork/utils.js +11 -0
- data/app/packs/stylesheets/decidim/enhanced_textwork/_paragraphs.scss +208 -0
- data/app/packs/stylesheets/decidim/enhanced_textwork/paragraphs/_preview.scss +3 -0
- data/app/permissions/decidim/enhanced_textwork/admin/permissions.rb +147 -0
- data/app/permissions/decidim/enhanced_textwork/permissions.rb +163 -0
- data/app/presenters/decidim/enhanced_textwork/admin_log/paragraph_note_presenter.rb +39 -0
- data/app/presenters/decidim/enhanced_textwork/admin_log/paragraph_presenter.rb +51 -0
- data/app/presenters/decidim/enhanced_textwork/admin_log/valuation_assignment_presenter.rb +51 -0
- data/app/presenters/decidim/enhanced_textwork/admin_log/value_types/paragraph_state_presenter.rb +17 -0
- data/app/presenters/decidim/enhanced_textwork/admin_log/value_types/paragraph_title_body_presenter.rb +23 -0
- data/app/presenters/decidim/enhanced_textwork/admin_log/value_types/valuator_role_user_presenter.rb +19 -0
- data/app/presenters/decidim/enhanced_textwork/collaborative_draft_presenter.rb +25 -0
- data/app/presenters/decidim/enhanced_textwork/log/resource_presenter.rb +22 -0
- data/app/presenters/decidim/enhanced_textwork/log/valuation_assignment_presenter.rb +22 -0
- data/app/presenters/decidim/enhanced_textwork/official_author_presenter.rb +14 -0
- data/app/presenters/decidim/enhanced_textwork/paragraph_presenter.rb +146 -0
- data/app/queries/decidim/enhanced_textwork/filtered_paragraphs.rb +37 -0
- data/app/queries/decidim/enhanced_textwork/metrics/accepted_paragraphs_metric_manage.rb +32 -0
- data/app/queries/decidim/enhanced_textwork/metrics/endorsements_metric_manage.rb +58 -0
- data/app/queries/decidim/enhanced_textwork/metrics/paragraph_followers_metric_measure.rb +58 -0
- data/app/queries/decidim/enhanced_textwork/metrics/paragraph_participants_metric_measure.rb +74 -0
- data/app/queries/decidim/enhanced_textwork/metrics/paragraphs_metric_manage.rb +48 -0
- data/app/queries/decidim/enhanced_textwork/metrics/votes_metric_manage.rb +52 -0
- data/app/queries/decidim/enhanced_textwork/similar_paragraphs.rb +67 -0
- data/app/services/decidim/enhanced_textwork/collaborative_draft_search.rb +59 -0
- data/app/services/decidim/enhanced_textwork/diff_renderer.rb +74 -0
- data/app/services/decidim/enhanced_textwork/paragraph_builder.rb +132 -0
- data/app/services/decidim/enhanced_textwork/paragraph_search.rb +85 -0
- data/app/validators/paragraph_length_validator.rb +40 -0
- data/app/views/decidim/enhanced_textwork/admin/paragraph_answers/_form.html.erb +35 -0
- data/app/views/decidim/enhanced_textwork/admin/paragraph_notes/_form.html.erb +8 -0
- data/app/views/decidim/enhanced_textwork/admin/paragraph_notes/_paragraph_notes.html.erb +45 -0
- data/app/views/decidim/enhanced_textwork/admin/paragraphs/_bulk-actions.html.erb +33 -0
- data/app/views/decidim/enhanced_textwork/admin/paragraphs/_form.html.erb +101 -0
- data/app/views/decidim/enhanced_textwork/admin/paragraphs/_js-callout.html.erb +6 -0
- data/app/views/decidim/enhanced_textwork/admin/paragraphs/_paragraph-tr.html.erb +76 -0
- data/app/views/decidim/enhanced_textwork/admin/paragraphs/bulk_actions/_assign_to_valuator.html.erb +15 -0
- data/app/views/decidim/enhanced_textwork/admin/paragraphs/bulk_actions/_dropdown.html.erb +56 -0
- data/app/views/decidim/enhanced_textwork/admin/paragraphs/bulk_actions/_merge.html.erb +15 -0
- data/app/views/decidim/enhanced_textwork/admin/paragraphs/bulk_actions/_publish_answers.html.erb +14 -0
- data/app/views/decidim/enhanced_textwork/admin/paragraphs/bulk_actions/_recategorize.html.erb +15 -0
- data/app/views/decidim/enhanced_textwork/admin/paragraphs/bulk_actions/_scope-change.html.erb +25 -0
- data/app/views/decidim/enhanced_textwork/admin/paragraphs/bulk_actions/_split.html.erb +15 -0
- data/app/views/decidim/enhanced_textwork/admin/paragraphs/bulk_actions/_unassign_from_valuator.html.erb +15 -0
- data/app/views/decidim/enhanced_textwork/admin/paragraphs/edit.html.erb +7 -0
- data/app/views/decidim/enhanced_textwork/admin/paragraphs/index.html.erb +84 -0
- data/app/views/decidim/enhanced_textwork/admin/paragraphs/new.html.erb +7 -0
- data/app/views/decidim/enhanced_textwork/admin/paragraphs/publish_answers.js.erb +12 -0
- data/app/views/decidim/enhanced_textwork/admin/paragraphs/show.html.erb +186 -0
- data/app/views/decidim/enhanced_textwork/admin/paragraphs/update_category.js.erb +26 -0
- data/app/views/decidim/enhanced_textwork/admin/paragraphs/update_scope.js.erb +27 -0
- data/app/views/decidim/enhanced_textwork/admin/paragraphs_imports/new.html.erb +37 -0
- data/app/views/decidim/enhanced_textwork/admin/participatory_texts/_article-preview.html.erb +16 -0
- data/app/views/decidim/enhanced_textwork/admin/participatory_texts/_bulk-actions.html.erb +3 -0
- data/app/views/decidim/enhanced_textwork/admin/participatory_texts/index.html.erb +55 -0
- data/app/views/decidim/enhanced_textwork/admin/participatory_texts/new_editor.html.erb +39 -0
- data/app/views/decidim/enhanced_textwork/admin/participatory_texts/new_import.html.erb +39 -0
- data/app/views/decidim/enhanced_textwork/collaborative_drafts/_accept_request_access_form.html.erb +8 -0
- data/app/views/decidim/enhanced_textwork/collaborative_drafts/_collaborative_drafts.html.erb +16 -0
- data/app/views/decidim/enhanced_textwork/collaborative_drafts/_collaborator_requests.html.erb +20 -0
- data/app/views/decidim/enhanced_textwork/collaborative_drafts/_count.html.erb +1 -0
- data/app/views/decidim/enhanced_textwork/collaborative_drafts/_edit_form_fields.html.erb +83 -0
- data/app/views/decidim/enhanced_textwork/collaborative_drafts/_filters.html.erb +32 -0
- data/app/views/decidim/enhanced_textwork/collaborative_drafts/_filters_small_view.html.erb +18 -0
- data/app/views/decidim/enhanced_textwork/collaborative_drafts/_new_collaborative_draft_button.html.erb +11 -0
- data/app/views/decidim/enhanced_textwork/collaborative_drafts/_reject_request_access_form.html.erb +10 -0
- data/app/views/decidim/enhanced_textwork/collaborative_drafts/_request_access_form.html.erb +7 -0
- data/app/views/decidim/enhanced_textwork/collaborative_drafts/_wizard_aside.html.erb +13 -0
- data/app/views/decidim/enhanced_textwork/collaborative_drafts/_wizard_header.html.erb +14 -0
- data/app/views/decidim/enhanced_textwork/collaborative_drafts/edit.html.erb +31 -0
- data/app/views/decidim/enhanced_textwork/collaborative_drafts/index.html.erb +23 -0
- data/app/views/decidim/enhanced_textwork/collaborative_drafts/index.js.erb +10 -0
- data/app/views/decidim/enhanced_textwork/collaborative_drafts/new.html.erb +24 -0
- data/app/views/decidim/enhanced_textwork/collaborative_drafts/show.html.erb +128 -0
- data/app/views/decidim/enhanced_textwork/paragraph_votes/update_buttons_and_counters.js.erb +41 -0
- data/app/views/decidim/enhanced_textwork/paragraphs/_count.html.erb +1 -0
- data/app/views/decidim/enhanced_textwork/paragraphs/_dynamic_map_instructions.html.erb +4 -0
- data/app/views/decidim/enhanced_textwork/paragraphs/_edit_form_fields.html.erb +115 -0
- data/app/views/decidim/enhanced_textwork/paragraphs/_endorsements_card_row.html.erb +0 -0
- data/app/views/decidim/enhanced_textwork/paragraphs/_filters.html.erb +48 -0
- data/app/views/decidim/enhanced_textwork/paragraphs/_filters_small_view.html.erb +18 -0
- data/app/views/decidim/enhanced_textwork/paragraphs/_linked_paragraphs.html.erb +34 -0
- data/app/views/decidim/enhanced_textwork/paragraphs/_paragraph.html.erb +1 -0
- data/app/views/decidim/enhanced_textwork/paragraphs/_paragraph_badge.html.erb +3 -0
- data/app/views/decidim/enhanced_textwork/paragraphs/_paragraph_similar.html.erb +22 -0
- data/app/views/decidim/enhanced_textwork/paragraphs/_paragraphs.html.erb +46 -0
- data/app/views/decidim/enhanced_textwork/paragraphs/_remaining_votes_count.html.erb +3 -0
- data/app/views/decidim/enhanced_textwork/paragraphs/_vote_button.html.erb +61 -0
- data/app/views/decidim/enhanced_textwork/paragraphs/_votes_count.html.erb +18 -0
- data/app/views/decidim/enhanced_textwork/paragraphs/_voting_rules.html.erb +50 -0
- data/app/views/decidim/enhanced_textwork/paragraphs/_wizard_aside.html.erb +20 -0
- data/app/views/decidim/enhanced_textwork/paragraphs/_wizard_header.html.erb +42 -0
- data/app/views/decidim/enhanced_textwork/paragraphs/compare.html.erb +23 -0
- data/app/views/decidim/enhanced_textwork/paragraphs/complete.html.erb +24 -0
- data/app/views/decidim/enhanced_textwork/paragraphs/edit.html.erb +31 -0
- data/app/views/decidim/enhanced_textwork/paragraphs/edit_draft.html.erb +26 -0
- data/app/views/decidim/enhanced_textwork/paragraphs/index.html.erb +56 -0
- data/app/views/decidim/enhanced_textwork/paragraphs/index.js.erb +10 -0
- data/app/views/decidim/enhanced_textwork/paragraphs/new.html.erb +38 -0
- data/app/views/decidim/enhanced_textwork/paragraphs/participatory_texts/_index.html.erb +20 -0
- data/app/views/decidim/enhanced_textwork/paragraphs/participatory_texts/_overview.html.erb +35 -0
- data/app/views/decidim/enhanced_textwork/paragraphs/participatory_texts/_paragraph_vote_button.html.erb +53 -0
- data/app/views/decidim/enhanced_textwork/paragraphs/participatory_texts/_paragraph_vote_button_chevron.html.erb +72 -0
- data/app/views/decidim/enhanced_textwork/paragraphs/participatory_texts/_paragraph_votes_count.html.erb +41 -0
- data/app/views/decidim/enhanced_textwork/paragraphs/participatory_texts/_view_index.html.erb +10 -0
- data/app/views/decidim/enhanced_textwork/paragraphs/participatory_texts/participatory_text.html.erb +29 -0
- data/app/views/decidim/enhanced_textwork/paragraphs/preview.html.erb +41 -0
- data/app/views/decidim/enhanced_textwork/paragraphs/show.html.erb +143 -0
- data/app/views/decidim/enhanced_textwork/versions/index.html.erb +16 -0
- data/app/views/decidim/enhanced_textwork/versions/show.html.erb +18 -0
- data/config/assets.rb +10 -0
- data/config/locales/de.yml +927 -0
- data/config/locales/en.yml +967 -0
- data/config/locales/todo/am-ET.yml +1 -0
- data/config/locales/todo/ar-SA.yml +801 -0
- data/config/locales/todo/ar.yml +791 -0
- data/config/locales/todo/bg-BG.yml +237 -0
- data/config/locales/todo/bg.yml +238 -0
- data/config/locales/todo/ca.yml +908 -0
- data/config/locales/todo/cs-CZ.yml +787 -0
- data/config/locales/todo/cs.yml +969 -0
- data/config/locales/todo/da-DK.yml +1 -0
- data/config/locales/todo/da.yml +1 -0
- data/config/locales/todo/el-GR.yml +1 -0
- data/config/locales/todo/el.yml +848 -0
- data/config/locales/todo/eo-UY.yml +1 -0
- data/config/locales/todo/eo.yml +1 -0
- data/config/locales/todo/es-MX.yml +908 -0
- data/config/locales/todo/es-PY.yml +908 -0
- data/config/locales/todo/es.yml +908 -0
- data/config/locales/todo/et-EE.yml +1 -0
- data/config/locales/todo/et.yml +1 -0
- data/config/locales/todo/eu.yml +717 -0
- data/config/locales/todo/fi-pl.yml +763 -0
- data/config/locales/todo/fi-plain.yml +920 -0
- data/config/locales/todo/fi.yml +920 -0
- data/config/locales/todo/fr-CA.yml +936 -0
- data/config/locales/todo/fr-LU.yml +903 -0
- data/config/locales/todo/fr.yml +936 -0
- data/config/locales/todo/ga-IE.yml +275 -0
- data/config/locales/todo/gl.yml +808 -0
- data/config/locales/todo/hr-HR.yml +1 -0
- data/config/locales/todo/hr.yml +1 -0
- data/config/locales/todo/hu.yml +847 -0
- data/config/locales/todo/id-ID.yml +704 -0
- data/config/locales/todo/is-IS.yml +269 -0
- data/config/locales/todo/is.yml +274 -0
- data/config/locales/todo/it.yml +908 -0
- data/config/locales/todo/ja.yml +922 -0
- data/config/locales/todo/ko-KR.yml +1 -0
- data/config/locales/todo/ko.yml +1 -0
- data/config/locales/todo/lb-LU.yml +1 -0
- data/config/locales/todo/lb.yml +40 -0
- data/config/locales/todo/lt-LT.yml +1 -0
- data/config/locales/todo/lt.yml +1 -0
- data/config/locales/todo/lv.yml +838 -0
- data/config/locales/todo/mt-MT.yml +1 -0
- data/config/locales/todo/mt.yml +1 -0
- data/config/locales/todo/nl.yml +882 -0
- data/config/locales/todo/no.yml +770 -0
- data/config/locales/todo/om-ET.yml +1 -0
- data/config/locales/todo/pl.yml +927 -0
- data/config/locales/todo/pt-BR.yml +908 -0
- data/config/locales/todo/pt.yml +945 -0
- data/config/locales/todo/ro-RO.yml +886 -0
- data/config/locales/todo/ru.yml +379 -0
- data/config/locales/todo/si-LK.yml +1 -0
- data/config/locales/todo/sk-SK.yml +896 -0
- data/config/locales/todo/sk.yml +851 -0
- data/config/locales/todo/sl.yml +26 -0
- data/config/locales/todo/so-SO.yml +1 -0
- data/config/locales/todo/sr-CS.yml +125 -0
- data/config/locales/todo/sv.yml +908 -0
- data/config/locales/todo/sw-KE.yml +1 -0
- data/config/locales/todo/ti-ER.yml +1 -0
- data/config/locales/todo/tr-TR.yml +890 -0
- data/config/locales/todo/uk.yml +379 -0
- data/config/locales/todo/vi-VN.yml +1 -0
- data/config/locales/todo/vi.yml +1 -0
- data/config/locales/todo/zh-CN.yml +857 -0
- data/config/locales/todo/zh-TW.yml +1 -0
- data/db/migrate/20161212110850_create_decidim_paragraphs.rb +16 -0
- data/db/migrate/20170112115253_create_paragraph_votes.rb +14 -0
- data/db/migrate/20170113114245_add_enhanced_textwork_text_search_indexes.rb +8 -0
- data/db/migrate/20170118120151_add_counter_cache_votes_to_paragraphs.rb +7 -0
- data/db/migrate/20170120151202_add_user_group_id_to_paragraphs.rb +7 -0
- data/db/migrate/20170131092413_add_answers_to_paragraphs.rb +9 -0
- data/db/migrate/20170205082832_add_index_to_decidim_enhanced_textwork_paragraphs_paragraph_votes_count.rb +9 -0
- data/db/migrate/20170215113152_create_paragraph_reports.rb +16 -0
- data/db/migrate/20170215131720_add_report_count_to_paragraphs.rb +7 -0
- data/db/migrate/20170215132030_add_reference_to_paragraphs.rb +13 -0
- data/db/migrate/20170220152416_add_hidden_at_to_paragraphs.rb +7 -0
- data/db/migrate/20170228105156_add_geolocalization_fields_to_paragraphs.rb +9 -0
- data/db/migrate/20170307085300_migrate_paragraph_reports_data_to_reports.rb +24 -0
- data/db/migrate/20170410073742_remove_not_null_reference_paragraphs.rb +7 -0
- data/db/migrate/20170612101809_migrate_paragraphs_category.rb +15 -0
- data/db/migrate/20171201115434_create_paragraph_endorsements.rb +16 -0
- data/db/migrate/20171201122623_add_counter_cache_endorsements_to_paragraphs.rb +8 -0
- data/db/migrate/20171212102250_enable_pg_trgm_extension_for_paragraphs.rb +18 -0
- data/db/migrate/20171220084719_add_published_at_to_paragraphs.rb +14 -0
- data/db/migrate/20180111110204_create_decidim_paragraph_notes.rb +15 -0
- data/db/migrate/20180115155220_add_index_created_at_paragraph_notes.rb +7 -0
- data/db/migrate/20180305133811_rename_features_to_components_at_paragraphs.rb +11 -0
- data/db/migrate/20180326091532_create_decidim_enhanced_textwork_collaborative_drafts.rb +29 -0
- data/db/migrate/20180413135249_fix_nil_threshold_per_paragraph.rb +18 -0
- data/db/migrate/20180529101323_add_counter_cache_coauthorships_to_paragraphs.rb +8 -0
- data/db/migrate/20180529110230_move_enhanced_textwork_authorships_to_coauthorships.rb +28 -0
- data/db/migrate/20180529110830_remove_authorships_from_paragraphs.rb +8 -0
- data/db/migrate/20180613151121_create_enhanced_textwork_collaborative_draft_collaborator_requests.rb +12 -0
- data/db/migrate/20180711074134_add_enhanced_textwork_counter_cache_coauthorships_to_collaborative_drafts.rb +7 -0
- data/db/migrate/20180711075004_remove_index_counter_cache_coauthorships_to_paragraphs.rb +7 -0
- data/db/migrate/20180927111721_create_enhanced_textwork_participatory_texts.rb +13 -0
- data/db/migrate/20180930125321_add_participatory_text_level_to_paragraphs.rb +7 -0
- data/db/migrate/20180930125321_add_position_to_paragraphs.rb +7 -0
- data/db/migrate/20181003074440_fix_user_groups_ids_in_paragraphs_endorsements.rb +20 -0
- data/db/migrate/20181010114622_add_enhanced_textwork_temporary_votes.rb +9 -0
- data/db/migrate/20181016132225_add_enhanced_textwork_organization_as_author.rb +13 -0
- data/db/migrate/20181017084221_make_author_polymorhpic_for_paragraph_endorsements.rb +31 -0
- data/db/migrate/20181026073215_add_enhanced_textwork_created_in_meeting.rb +7 -0
- data/db/migrate/20190215113158_use_enhanced_textwork_md5_indexes.rb +17 -0
- data/db/migrate/20191206154128_add_endorsements_counter_cache_to_paragraphs.rb +7 -0
- data/db/migrate/20200120215928_move_paragraph_endorsements_to_core_endorsements.rb +54 -0
- data/db/migrate/20200120230130_drop_paragraph_endorsements.rb +8 -0
- data/db/migrate/20200203111239_add_paragraph_valuation_assignments.rb +12 -0
- data/db/migrate/20200210135152_add_costs_to_paragraphs.rb +9 -0
- data/db/migrate/20200212120110_sync_paragraphs_state_with_amendments_state.rb +28 -0
- data/db/migrate/20200227175922_add_state_published_at_to_paragraphs.rb +7 -0
- data/db/migrate/20200306123652_publish_existing_paragraphs_state.rb +15 -0
- data/db/migrate/20200708091228_move_paragraphs_fields_to_i18n.rb +86 -0
- data/db/migrate/20200730131631_move_paragraph_endorsed_event_notifications_to_resource_endorsed_event.rb +20 -0
- data/db/migrate/20200827154156_add_commentable_counter_cache_to_paragraphs.rb +12 -0
- data/db/migrate/20201002085508_fix_paragraphs_data.rb +36 -0
- data/db/migrate/20210127115628_fix_answered_paragraphs_after_copy.rb +14 -0
- data/db/migrate/20210310102839_add_followable_counter_cache_to_paragraphs.rb +16 -0
- data/db/migrate/20210310120812_add_enhanced_textwork_followable_counter_cache_to_collaborative_drafts.rb +16 -0
- data/db/migrate/20210318082934_fix_counters_for_copied_paragraphs.rb +19 -0
- data/lib/decidim/api/paragraph_input_filter.rb +29 -0
- data/lib/decidim/api/paragraph_input_sort.rb +20 -0
- data/lib/decidim/api/paragraph_type.rb +56 -0
- data/lib/decidim/api/paragraphs_type.rb +43 -0
- data/lib/decidim/content_parsers/paragraph_parser.rb +101 -0
- data/lib/decidim/content_renderers/paragraph_renderer.rb +33 -0
- data/lib/decidim/enhanced_textwork/admin.rb +10 -0
- data/lib/decidim/enhanced_textwork/admin_engine.rb +52 -0
- data/lib/decidim/enhanced_textwork/api.rb +10 -0
- data/lib/decidim/enhanced_textwork/commentable_collaborative_draft.rb +38 -0
- data/lib/decidim/enhanced_textwork/commentable_paragraph.rb +36 -0
- data/lib/decidim/enhanced_textwork/component.rb +448 -0
- data/lib/decidim/enhanced_textwork/doc_to_markdown.rb +50 -0
- data/lib/decidim/enhanced_textwork/engine.rb +204 -0
- data/lib/decidim/enhanced_textwork/html_to_markdown.rb +22 -0
- data/lib/decidim/enhanced_textwork/markdown_to_paragraphs.rb +153 -0
- data/lib/decidim/enhanced_textwork/odt_to_markdown.rb +46 -0
- data/lib/decidim/enhanced_textwork/paragraph_creator.rb +98 -0
- data/lib/decidim/enhanced_textwork/paragraph_serializer.rb +95 -0
- data/lib/decidim/enhanced_textwork/participatory_text_section.rb +21 -0
- data/lib/decidim/enhanced_textwork/test/capybara_paragraphs_picker.rb +59 -0
- data/lib/decidim/enhanced_textwork/test/factories.rb +492 -0
- data/lib/decidim/enhanced_textwork/valuatable.rb +21 -0
- data/lib/decidim/enhanced_textwork/version.rb +14 -0
- data/lib/decidim/enhanced_textwork.rb +58 -0
- data/lib/decidim/exporters/word.rb +309 -0
- metadata +704 -0
|
@@ -0,0 +1,908 @@
|
|
|
1
|
+
ca:
|
|
2
|
+
activemodel:
|
|
3
|
+
attributes:
|
|
4
|
+
collaborative_draft:
|
|
5
|
+
address: Adreça
|
|
6
|
+
body: Cos
|
|
7
|
+
category_id: Categoria
|
|
8
|
+
decidim_scope_id: Àmbit
|
|
9
|
+
has_address: Té adreça
|
|
10
|
+
scope_id: Àmbit
|
|
11
|
+
state: Estat
|
|
12
|
+
title: Títol
|
|
13
|
+
user_group_id: Crea un esborrany col·laboratiu com a
|
|
14
|
+
paragraph:
|
|
15
|
+
address: Adreça
|
|
16
|
+
answer: Resposta
|
|
17
|
+
answered_at: Respost el
|
|
18
|
+
automatic_hashtags: Hashtags afegits automàticament
|
|
19
|
+
body: Cos
|
|
20
|
+
category_id: Categoria
|
|
21
|
+
decidim_scope_id: Àmbit
|
|
22
|
+
has_address: Té adreça
|
|
23
|
+
scope_id: Àmbit
|
|
24
|
+
state: Estat
|
|
25
|
+
suggested_hashtags: Hashtags suggerits
|
|
26
|
+
title: Títol
|
|
27
|
+
user_group_id: Crea una proposta com a
|
|
28
|
+
paragraph_answer:
|
|
29
|
+
answer: Respondre
|
|
30
|
+
cost: Cost
|
|
31
|
+
cost_report: Informe de cost
|
|
32
|
+
execution_period: Període d'execució
|
|
33
|
+
paragraphs_copy:
|
|
34
|
+
copy_paragraphs: Entenc que això importarà totes les propostes del component seleccionat a l'actual i que aquesta acció no es pot desfer.
|
|
35
|
+
origin_component_id: Component des d'on importar les propostes
|
|
36
|
+
paragraphs_import:
|
|
37
|
+
import_paragraphs: Importar propostes
|
|
38
|
+
keep_answers: Manté l'estat i les respostes
|
|
39
|
+
keep_authors: Mantenir l'autoria original
|
|
40
|
+
valuation_assignment:
|
|
41
|
+
admin_log:
|
|
42
|
+
valuator_role_id: Nom de l'avaluadora
|
|
43
|
+
errors:
|
|
44
|
+
models:
|
|
45
|
+
participatory_text:
|
|
46
|
+
attributes:
|
|
47
|
+
document:
|
|
48
|
+
invalid_document_type: 'Tipus de document no vàlid. Els formats acceptats són: %{valid_mime_types}'
|
|
49
|
+
paragraph:
|
|
50
|
+
attributes:
|
|
51
|
+
add_documents:
|
|
52
|
+
needs_to_be_reattached: És necessari tornar a adjuntar l'arxiu
|
|
53
|
+
add_photos:
|
|
54
|
+
needs_to_be_reattached: És necessari tornar a adjuntar l'arxiu
|
|
55
|
+
body:
|
|
56
|
+
cant_be_equal_to_template: No pot ser igual a la plantilla
|
|
57
|
+
identical: I el títol no pot ser idèntic
|
|
58
|
+
title:
|
|
59
|
+
identical: I el cos no pot ser idèntic
|
|
60
|
+
models:
|
|
61
|
+
decidim/enhanced_textwork/accepted_paragraph_event: S'ha acceptat la proposta
|
|
62
|
+
decidim/enhanced_textwork/admin/update_paragraph_category_event: S'ha canviat la categoria de la proposta
|
|
63
|
+
decidim/enhanced_textwork/admin/update_paragraph_scope_event: Àmbit de la proposta modificat
|
|
64
|
+
decidim/enhanced_textwork/creation_enabled_event: S'ha activat la creació de propostes
|
|
65
|
+
decidim/enhanced_textwork/endorsing_enabled_event: S'ha habilitat les adhesions a les propostes
|
|
66
|
+
decidim/enhanced_textwork/evaluating_paragraph_event: S'està avaluant la proposta
|
|
67
|
+
decidim/enhanced_textwork/paragraph_mentioned_event: Proposta esmentada
|
|
68
|
+
decidim/enhanced_textwork/publish_paragraph_event: Proposta publicada
|
|
69
|
+
decidim/enhanced_textwork/rejected_paragraph_event: S'ha rebutjat la proposta
|
|
70
|
+
decidim/enhanced_textwork/voting_enabled_event: Les propostes admeten suports
|
|
71
|
+
activerecord:
|
|
72
|
+
models:
|
|
73
|
+
decidim/enhanced_textwork/collaborative_draft:
|
|
74
|
+
one: Esborrany col·laboratiu
|
|
75
|
+
other: Esborranys col·laboratius
|
|
76
|
+
decidim/enhanced_textwork/paragraph:
|
|
77
|
+
one: Proposta
|
|
78
|
+
other: Propostes
|
|
79
|
+
decidim/enhanced_textwork/paragraph_note:
|
|
80
|
+
one: Nota
|
|
81
|
+
other: Notes
|
|
82
|
+
decidim/enhanced_textwork/paragraph_vote:
|
|
83
|
+
one: Suport
|
|
84
|
+
other: Suports
|
|
85
|
+
decidim:
|
|
86
|
+
admin:
|
|
87
|
+
filters:
|
|
88
|
+
paragraphs:
|
|
89
|
+
category_id_eq:
|
|
90
|
+
label: Categoria
|
|
91
|
+
is_emendation_true:
|
|
92
|
+
label: Tipus
|
|
93
|
+
values:
|
|
94
|
+
'false': Propostes
|
|
95
|
+
'true': Esmenes
|
|
96
|
+
scope_id_eq:
|
|
97
|
+
label: Àmbit
|
|
98
|
+
state_eq:
|
|
99
|
+
label: Estat
|
|
100
|
+
values:
|
|
101
|
+
accepted: Acceptada
|
|
102
|
+
evaluating: En avaluació
|
|
103
|
+
published: Publicades
|
|
104
|
+
rejected: Rebutjada
|
|
105
|
+
validating: Validació tècnica
|
|
106
|
+
withdrawn: Retirades
|
|
107
|
+
state_null:
|
|
108
|
+
label: Estat
|
|
109
|
+
values:
|
|
110
|
+
'true': No resposta
|
|
111
|
+
valuator_role_ids_has:
|
|
112
|
+
label: Assignada a avaluadora
|
|
113
|
+
search_placeholder:
|
|
114
|
+
id_string_or_title_cont: Cerca %{collection} per ID o títol.
|
|
115
|
+
components:
|
|
116
|
+
paragraphs:
|
|
117
|
+
actions:
|
|
118
|
+
amend: Esmena
|
|
119
|
+
comment: Comentar
|
|
120
|
+
create: Crear
|
|
121
|
+
endorse: Adherir-se
|
|
122
|
+
vote: Donar suport
|
|
123
|
+
vote_comment: Votar el comentari
|
|
124
|
+
withdraw: Retirar
|
|
125
|
+
name: Propostes
|
|
126
|
+
settings:
|
|
127
|
+
global:
|
|
128
|
+
amendments_enabled: Esmenes habilitades
|
|
129
|
+
amendments_enabled_help: Si l'actives, configura les funcionalitats de l'esmena per cada fase.
|
|
130
|
+
amendments_wizard_help_text: Text d'ajuda al crear una nova esmena
|
|
131
|
+
announcement: Avís
|
|
132
|
+
attachments_allowed: Permetre adjunts
|
|
133
|
+
can_accumulate_supports_beyond_threshold: Pot acumular suports més enllà del llindar
|
|
134
|
+
collaborative_drafts_enabled: Esborranys col·laboratius habilitats
|
|
135
|
+
comments_enabled: Comentaris habilitats
|
|
136
|
+
comments_max_length: Longitud màxima dels comentaris (deixa 0 si vols mantenir la configuració per defecte)
|
|
137
|
+
geocoding_enabled: Geocodificació habilitada
|
|
138
|
+
minimum_votes_per_user: Suports mínims per participant
|
|
139
|
+
new_paragraph_body_template: Plantilla pel text de nova proposta
|
|
140
|
+
new_paragraph_body_template_help: Pots definir el text predefinit que hauria de tenir una nova proposta
|
|
141
|
+
new_paragraph_help_text: Text d'ajuda al crear una nova proposta
|
|
142
|
+
official_paragraphs_enabled: Propostes oficials habilitades
|
|
143
|
+
participatory_texts_enabled: Texts participatius habilitats
|
|
144
|
+
participatory_texts_enabled_readonly: No es pot interactuar amb aquesta configuració si hi ha propostes existents. Si us plau, crea un nou 'component de propostes' si vols habilitar aquesta característica o descarta totes les propostes importades al menú "textos participatius" si vols deshabilitar-lo.
|
|
145
|
+
paragraph_answering_enabled: Resposta a propostes habilitada
|
|
146
|
+
paragraph_edit_before_minutes: Les propostes poden ser editades per les autores abans que passin aquests minuts
|
|
147
|
+
paragraph_edit_time: Edició de propostes
|
|
148
|
+
paragraph_edit_time_choices:
|
|
149
|
+
infinite: Permet l'edició de propostes durant un període infinit
|
|
150
|
+
limited: Permet l'edició de propostes durant una finestra temporal específica
|
|
151
|
+
paragraph_length: Longitud màxima del cos de la proposta
|
|
152
|
+
paragraph_limit: Límit de propostes per participant
|
|
153
|
+
paragraph_wizard_step_1_help_text: Text d'ajuda pel pas "Crear" de l'assistent de propostes
|
|
154
|
+
paragraph_wizard_step_2_help_text: Text d'ajuda pel pas "Comparar" de l'assistent de propostes
|
|
155
|
+
paragraph_wizard_step_3_help_text: Text d'ajuda pel pas "Completar" de l'assistent de propostes
|
|
156
|
+
paragraph_wizard_step_4_help_text: Text d'ajuda pel pas "Publicar" de l'assistent de propostes
|
|
157
|
+
resources_permissions_enabled: Es poden establir permisos d'accions per a cada proposta
|
|
158
|
+
scope_id: Àmbit
|
|
159
|
+
scopes_enabled: Àmbits habilitats
|
|
160
|
+
threshold_per_paragraph: Llindar per proposta
|
|
161
|
+
vote_limit: Límit de suports per participant
|
|
162
|
+
step:
|
|
163
|
+
amendment_creation_enabled: Creació d'esmenes habilitada
|
|
164
|
+
amendment_creation_enabled_help: Les participants poden esmenar les propostes.
|
|
165
|
+
amendment_promotion_enabled: Promoció d'esmenes habilitada
|
|
166
|
+
amendment_promotion_enabled_help: Les autores de les esmenes rebutjades poden promocionar-les a propostes.
|
|
167
|
+
amendment_reaction_enabled: Reacció a les esmenes habilitada
|
|
168
|
+
amendment_reaction_enabled_help: Les autores de les propostes poden acceptar o rebutjar les esmenes proposades pels participants.
|
|
169
|
+
amendments_visibility: Visibilitat de les esmenes
|
|
170
|
+
amendments_visibility_choices:
|
|
171
|
+
all: Les esmenes són visibles per a tothom
|
|
172
|
+
participants: Les esmenes són visibles només per les seves autores
|
|
173
|
+
amendments_visibility_help: Si es selecciona l'opció "Les esmenes són visibles únicament per als seus autors", els participants han d'estar identificats per a veure les esmenes realitzades.
|
|
174
|
+
announcement: Avís
|
|
175
|
+
answers_with_costs: Habilitar cost en les respostes a propostes
|
|
176
|
+
automatic_hashtags: Hashtags afegits a totes les propostes
|
|
177
|
+
comments_blocked: Comentaris bloquejats
|
|
178
|
+
creation_enabled: Habilitar la creació de propostes
|
|
179
|
+
endorsements_blocked: Adhesions bloquejades
|
|
180
|
+
endorsements_enabled: Adhesions habilitades
|
|
181
|
+
paragraph_answering_enabled: Resposta a propostes activada
|
|
182
|
+
publish_answers_immediately: Publica les respostes a les propostes immediatament
|
|
183
|
+
suggested_hashtags: Hashtags suggerits a les participants per a noves propostes
|
|
184
|
+
votes_blocked: Suports bloquejats
|
|
185
|
+
votes_enabled: Suports habilitats
|
|
186
|
+
votes_hidden: Suports ocults (si els suports estan habilitats, marcant aquesta opció s'amagarà el nombre de suports)
|
|
187
|
+
events:
|
|
188
|
+
paragraphs:
|
|
189
|
+
admin:
|
|
190
|
+
paragraph_note_created:
|
|
191
|
+
email_intro: Algú ha deixat una nota a la proposta "%{resource_title}". Revisa-la ara a través del <a href="%{admin_paragraph_info_url}">taulell d'admistració</a>
|
|
192
|
+
email_outro: Reps aquesta notificació perquè pots avaluar la proposta.
|
|
193
|
+
email_subject: Algú ha deixat una nota a la proposta %{resource_title}.
|
|
194
|
+
notification_title: Algú ha deixat una nota a la proposta <a href="%{resource_path}">%{resource_title}</a>. Revisa-la ara a través del <a href="%{admin_paragraph_info_path}">taulell d'admistració</a>
|
|
195
|
+
collaborative_draft_access_accepted:
|
|
196
|
+
email_intro: 'S''ha acceptat %{requester_name} per accedir com a contribuidora de l''esborrany col·laboratiu <a href="%{resource_path}">%{resource_title}</a>.'
|
|
197
|
+
email_outro: Has rebut aquesta notificació perquè ets contribuidora de <a href="%{resource_path}">%{resource_title}</a>.
|
|
198
|
+
email_subject: "S'ha acceptat %{requester_name} per accedir com a contribuidora del %{resource_title}."
|
|
199
|
+
notification_title: <a href="%{requester_path}">%{requester_name} %{requester_nickname}</a> ha estat <strong>acceptat per accedir com a contribuidora</strong> de l'esborrany col·laboratiu <a href="%{resource_path}">%{resource_title}</a>.
|
|
200
|
+
collaborative_draft_access_rejected:
|
|
201
|
+
email_intro: 'S''ha rebutjat %{requester_name} per accedir com a contribuidora de l''esborrany col·laboratiu <a href="%{resource_path}">%{resource_title}</a>.'
|
|
202
|
+
email_outro: Has rebut aquesta notificació perquè ets contribuidora de <a href="%{resource_path}">%{resource_title}</a>.
|
|
203
|
+
email_subject: "S'ha rebutjat %{requester_name} per accedir com a contribuïdora de l'esborrany col·laboratiu %{resource_title}."
|
|
204
|
+
notification_title: <a href="%{requester_path}">%{requester_name} %{requester_nickname}</a><strong> ha estat rebutjat per accedir com a contribuïdora</strong> de l'esborrany col·laboratiu <a href="%{resource_path}">%{resource_title}</a>.
|
|
205
|
+
collaborative_draft_access_requested:
|
|
206
|
+
email_intro: '%{requester_name} ha sol·licitat accés com a contribuïdora. Pots <strong>acceptar o rebutjar la sol·licitud</strong> de l''esborrany col·laboratiu <a href="%{resource_path}">%{resource_title}</a>.'
|
|
207
|
+
email_outro: Has rebut aquesta notificació perquè ets contribuïdora de <a href="%{resource_path}">%{resource_title}</a>.
|
|
208
|
+
email_subject: "%{requester_name} ha demanat accés per contribuir a %{resource_title}."
|
|
209
|
+
notification_title: <a href="%{requester_path}">%{requester_name} %{requester_nickname}</a> ha sol·licitat accés per contribuir a l'esborrany col·laboratiu de <a href="%{resource_path}">%{resource_title}</a>. Si us plau, <strong>accepta o rebutja la sol·licitud</strong>.
|
|
210
|
+
collaborative_draft_access_requester_accepted:
|
|
211
|
+
email_intro: Has estat acceptada com a contribuïdora de l'esborrany col·laboratiu <a href="%{resource_path}">%{resource_title}</a>.
|
|
212
|
+
email_outro: Has rebut aquesta notificació perquè has sol·licitat ser contribuïdora de <a href="%{resource_path}">%{resource_title}</a>.
|
|
213
|
+
email_subject: Has estat acceptada com a contribuïdora de %{resource_title}.
|
|
214
|
+
notification_title: Has estat acceptada <strong>com a contribuïdora</strong> de l'esborrany col·laboratiu <a href="%{resource_path}">%{resource_title}</a>.
|
|
215
|
+
collaborative_draft_access_requester_rejected:
|
|
216
|
+
email_intro: Has estat rebutjada per accedir com a contribuïdora de l'esborrany col·laboratiu <a href="%{resource_path}">%{resource_title}</a>.
|
|
217
|
+
email_outro: Has rebut aquesta notificació perquè has sol·licitat ser contribuïdora de <a href="%{resource_path}">%{resource_title}</a>.
|
|
218
|
+
email_subject: Has estat rebutjada com a contribuïdora de %{resource_title}.
|
|
219
|
+
notification_title: Has estat rebutjada <strong>per accedir com a contribuïdora</strong> de l'esborrany col·laboratiu <a href="%{resource_path}">%{resource_title}</a>.
|
|
220
|
+
collaborative_draft_withdrawn:
|
|
221
|
+
email_intro: <a href="%{author_path}">%{author_name} %{author_nickname}</a> ha retirat l'esborrany col·laboratiu <a href="%{resource_path}">%{resource_title}</a>.
|
|
222
|
+
email_outro: Has rebut aquesta notificació perquè ets una contribuïdora de <a href="%{resource_path}">%{resource_title}</a>.
|
|
223
|
+
email_subject: "%{author_name} %{author_nickname} ha retirat l'esborrany col·laboratiu %{resource_title}."
|
|
224
|
+
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> <strong>ha retirat</strong> l'esborrany col·laboratiu <a href="%{resource_path}">%{resource_title}</a>.
|
|
225
|
+
creation_enabled:
|
|
226
|
+
email_intro: 'Ara pots crear noves propostes a %{participatory_space_title}! Comença a participar a aquesta pàgina:'
|
|
227
|
+
email_outro: Has rebut aquesta notificació perquè estàs seguint %{participatory_space_title}. Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
|
228
|
+
email_subject: Les propostes ja estan disponibles a %{participatory_space_title}
|
|
229
|
+
notification_title: Ara pots presentar <a href="%{resource_path}">noves propostes</a> a <a href="%{participatory_space_url}">%{participatory_space_title}</a>
|
|
230
|
+
endorsing_enabled:
|
|
231
|
+
email_intro: 'Pots adherir-te a les propostes a %{participatory_space_title}. Comença a participar en aquesta pàgina:'
|
|
232
|
+
email_outro: Has rebut aquesta notificació perquè estàs seguint %{participatory_space_title}. Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
|
233
|
+
email_subject: L'adhesió a les propostes de %{participatory_space_title} ha començat
|
|
234
|
+
notification_title: Ara ja pots començar a <a href="%{resource_path}">adherir-te a propostes</a> a <a href="%{participatory_space_url}">%{participatory_space_title}</a>
|
|
235
|
+
paragraph_accepted:
|
|
236
|
+
affected_user:
|
|
237
|
+
email_intro: 'S''ha acceptat la teva proposta "%{resource_title}". Pots llegir la resposta en aquesta pàgina:'
|
|
238
|
+
email_outro: Has rebut aquesta notificació perquè ets autora de "%{resource_title}".
|
|
239
|
+
email_subject: S'ha acceptat la teva proposta
|
|
240
|
+
notification_title: S'ha acceptat la teva proposta <a href="%{resource_path}">%{resource_title}</a>.
|
|
241
|
+
follower:
|
|
242
|
+
email_intro: 'S''ha acceptat la proposta "%{resource_title}". Pots llegir la resposta des d''aquesta pàgina:'
|
|
243
|
+
email_outro: Has rebut aquesta notificació perquè que segueixes "%{resource_title}". El pots deixar de seguir al link anterior.
|
|
244
|
+
email_subject: Una proposta que segueixes ha estat acceptada
|
|
245
|
+
notification_title: S'ha acceptat la proposta <a href="%{resource_path}">%{resource_title}</a>.
|
|
246
|
+
paragraph_evaluating:
|
|
247
|
+
affected_user:
|
|
248
|
+
email_intro: 'La teva proposta "%{resource_title}" s''està avaluant. Pots consultar la resposta en aquesta pàgina:'
|
|
249
|
+
email_outro: Has rebut aquesta notificació perquè ets autora de "%{resource_title}".
|
|
250
|
+
email_subject: S'està avaluant la teva proposta
|
|
251
|
+
notification_title: S'està avaluant la teva proposta <a href="%{resource_path}">%{resource_title}</a>.
|
|
252
|
+
follower:
|
|
253
|
+
email_intro: 'La proposta "%{resource_title}" s''està avaluant actualment. Pots consultar una resposta en aquesta pàgina:'
|
|
254
|
+
email_outro: Has rebut aquesta notificació perquè que segueixes "%{resource_title}". El pots deixar de seguir al link anterior.
|
|
255
|
+
email_subject: S'està avaluant una proposta que segueixes
|
|
256
|
+
notification_title: S'ha avaluat la proposta <a href="%{resource_path}">%{resource_title}</a>.
|
|
257
|
+
paragraph_mentioned:
|
|
258
|
+
email_intro: La teva proposta "%{mentioned_paragraph_title}" ha estat esmentada als comentaris <a href="%{resource_url}">en aquest espai</a>.
|
|
259
|
+
email_outro: Has rebut aquesta notificació perquè ets autora de "%{resource_title}".
|
|
260
|
+
email_subject: S'ha mencionat la teva proposta "%{mentioned_paragraph_title}"
|
|
261
|
+
notification_title: La teva proposta "%{mentioned_paragraph_title}" ha estat esmentada <a href="%{resource_path}">en aquest espai</a> als comentaris.
|
|
262
|
+
paragraph_published:
|
|
263
|
+
email_intro: '%{author_name} %{author_nickname}, a qui segueixes, ha publicat una nova proposta anomenada "%{resource_title}". Consulta i contribueix:'
|
|
264
|
+
email_outro: Has rebut aquesta notificació perquè estàs seguint %{author_nickname}. Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
|
265
|
+
email_subject: Nova proposta "%{resource_title}" de %{author_nickname}
|
|
266
|
+
notification_title: La proposta <a href="%{resource_path}">%{resource_title}</a> ha estat publicada per <a href="%{author_path}">%{author_name} %{author_nickname}</a>.
|
|
267
|
+
paragraph_published_for_space:
|
|
268
|
+
email_intro: La proposta "%{resource_title}" s'ha afegit a "%{participatory_space_title}", que segueixes.
|
|
269
|
+
email_outro: Has rebut aquesta notificació perquè estàs seguint "%{participatory_space_title}". Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
|
270
|
+
email_subject: Nova proposta "%{resource_title}" afegida a %{participatory_space_title}
|
|
271
|
+
notification_title: La proposta <a href="%{resource_path}">%{resource_title}</a> s'ha afegit a %{participatory_space_title}
|
|
272
|
+
paragraph_rejected:
|
|
273
|
+
affected_user:
|
|
274
|
+
email_intro: 'La teva proposta "%{resource_title}" ha estat rebutjada. Pots llegir la resposta en aquesta pàgina:'
|
|
275
|
+
email_outro: Has rebut aquesta notificació perquè ets autora de "%{resource_title}".
|
|
276
|
+
email_subject: La teva proposta ha estat rebutjada
|
|
277
|
+
notification_title: La teva proposta <a href="%{resource_path}">%{resource_title}</a> ha estat rebutjada.
|
|
278
|
+
follower:
|
|
279
|
+
email_intro: 'La proposta "%{resource_title}" ha estat rebutjada. Pots llegir la resposta des d''aquesta pàgina:'
|
|
280
|
+
email_outro: Has rebut aquesta notificació perquè que segueixes "%{resource_title}". El pots deixar de seguir al link anterior.
|
|
281
|
+
email_subject: S'ha rebutjat una proposta que segueixes
|
|
282
|
+
notification_title: S'ha rebutjat la proposta <a href="%{resource_path}">%{resource_title}</a>.
|
|
283
|
+
paragraph_update_category:
|
|
284
|
+
email_intro: 'Una administradora ha actualitzat la categoria de la teva proposta "%{resource_title}", fes-hi una ullada:'
|
|
285
|
+
email_outro: Has rebut aquesta notificació perquè ets autora de la proposta.
|
|
286
|
+
email_subject: S'ha actualitzat la categoria de la proposta %{resource_title}
|
|
287
|
+
notification_title: La categoria de la proposta <a href="%{resource_path}">%{resource_title}</a> ha estat actualitzada per una administradora.
|
|
288
|
+
paragraph_update_scope:
|
|
289
|
+
email_intro: 'Una administradora ha actualitzat l''àmbit de la teva proposta "%{resource_title}", fes-hi una ullada:'
|
|
290
|
+
email_outro: Has rebut aquesta notificació perquè ets autora de la proposta.
|
|
291
|
+
email_subject: S'ha actualitzat l'àmbit de la proposta %{resource_title}
|
|
292
|
+
notification_title: L'àmbit de la proposta <a href="%{resource_path}">%{resource_title}</a> ha estat actualitzat per una administradora.
|
|
293
|
+
voting_enabled:
|
|
294
|
+
email_intro: 'Pots començar a donar suports a les propostes de %{participatory_space_title}! Comença a participar en aquesta pàgina:'
|
|
295
|
+
email_outro: Has rebut aquesta notificació perquè estàs seguint %{participatory_space_title}. Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
|
296
|
+
email_subject: El recolzament a propostes ha començat per a %{participatory_space_title}
|
|
297
|
+
notification_title: Ja pots començar a <a href="%{resource_path}">donar suports a propostes</a> a <a href="%{participatory_space_url}">%{participatory_space_title}</a>
|
|
298
|
+
gamification:
|
|
299
|
+
badges:
|
|
300
|
+
accepted_paragraphs:
|
|
301
|
+
conditions:
|
|
302
|
+
- Tria l'espai de participació del teu interès amb la creació de propostes activada
|
|
303
|
+
- Intenta fer propostes que es puguin dur a terme. D'aquesta manera és més probable que s'acceptin.
|
|
304
|
+
description: Aquest distintiu es concedeix quan participes activament amb noves propostes i aquestes són acceptades.
|
|
305
|
+
description_another: Aquesta participant ha aconseguit %{score} propostes acceptades.
|
|
306
|
+
description_own: '%{score} de les teves propostes han estat acceptades.'
|
|
307
|
+
name: Propostes acceptades
|
|
308
|
+
next_level_in: Aconsegueix que s'acceptin %{score} propostes més per arribar al següent nivell!
|
|
309
|
+
unearned_another: Aquesta participant encara no ha aconseguit que s'accepti cap de les seves propostes.
|
|
310
|
+
unearned_own: Cap de les teves propostes encara no ha estat acceptada.
|
|
311
|
+
paragraph_votes:
|
|
312
|
+
conditions:
|
|
313
|
+
- Navega i passa un temps llegint les propostes d'altres persones
|
|
314
|
+
- Dóna suport a les propostes amb les que estiguis d'acord o trobis interessants
|
|
315
|
+
description: Aquest distintiu es concedeix quan dones suport a propostes d'altres persones.
|
|
316
|
+
description_another: Aquesta participant ha donat suport a %{score} propostes.
|
|
317
|
+
description_own: Has donat suport a %{score} propostes.
|
|
318
|
+
name: Suports a propostes
|
|
319
|
+
next_level_in: Dóna suport a %{score} propostes més per arribar al següent nivell!
|
|
320
|
+
unearned_another: Aquesta participant encara no ha donat suport a cap proposta.
|
|
321
|
+
unearned_own: Encara no has donat suport a cap proposta.
|
|
322
|
+
paragraphs:
|
|
323
|
+
conditions:
|
|
324
|
+
- Tria un espai de participació amb la creació de propostes habilitada que sigui del teu interès
|
|
325
|
+
- Crea una proposta nova
|
|
326
|
+
description: Aquest distintiu es concedeix quan participes activament amb noves propostes.
|
|
327
|
+
description_another: Aquesta participant ha creat %{score} propostes.
|
|
328
|
+
description_own: Has creat %{score} propostes.
|
|
329
|
+
name: Propostes
|
|
330
|
+
next_level_in: Crea %{score} més propostes per arribar al següent nivell!
|
|
331
|
+
unearned_another: Aquesta participant encara no ha creat cap proposta.
|
|
332
|
+
unearned_own: Encara no has creat cap proposta.
|
|
333
|
+
metrics:
|
|
334
|
+
accepted_paragraphs:
|
|
335
|
+
description: Nombre de propostes acceptades
|
|
336
|
+
object: propostes
|
|
337
|
+
title: Propostes acceptades
|
|
338
|
+
endorsements:
|
|
339
|
+
description: Nombre d'adhesions a propostes
|
|
340
|
+
object: adhesions
|
|
341
|
+
title: Adhesions
|
|
342
|
+
paragraphs:
|
|
343
|
+
description: Nombre de propostes
|
|
344
|
+
object: propostes
|
|
345
|
+
title: Propostes
|
|
346
|
+
votes:
|
|
347
|
+
description: Nombre de suports a les propostes
|
|
348
|
+
object: suports
|
|
349
|
+
title: Suports
|
|
350
|
+
participatory_spaces:
|
|
351
|
+
highlighted_paragraphs:
|
|
352
|
+
see_all: Veure tots (%{count})
|
|
353
|
+
paragraphs:
|
|
354
|
+
actions:
|
|
355
|
+
answer_paragraph: Respondre a la proposta
|
|
356
|
+
edit_paragraph: Edita la proposta
|
|
357
|
+
import: Importa des d'un altre component
|
|
358
|
+
new: Nova proposta
|
|
359
|
+
participatory_texts: Textos participatius
|
|
360
|
+
show: Veure proposta
|
|
361
|
+
title: Accions
|
|
362
|
+
admin:
|
|
363
|
+
actions:
|
|
364
|
+
preview: Previsualitzar
|
|
365
|
+
exports:
|
|
366
|
+
paragraph_comments: Comentaris
|
|
367
|
+
paragraphs: Propostes
|
|
368
|
+
models:
|
|
369
|
+
paragraph:
|
|
370
|
+
name: Proposta
|
|
371
|
+
participatory_texts:
|
|
372
|
+
bulk-actions:
|
|
373
|
+
are_you_sure: Segur que vols descartar tot l'esborrany de text participatiu?
|
|
374
|
+
discard_all: Descarta'l tot
|
|
375
|
+
import_doc: Importar document
|
|
376
|
+
discard:
|
|
377
|
+
success: S'han descartat tots els esborranys de textos participatius.
|
|
378
|
+
import:
|
|
379
|
+
invalid: El formulari no és vàlid!
|
|
380
|
+
invalid_file: L'arxiu conté algun error. Si us plau, intenta editar-ne el contingut i torna'l a enviar.
|
|
381
|
+
success: Enhorabona, les seccions següents s'han convertit a propostes. Ara pots revisar-les i ajustar-les abans de publicar.
|
|
382
|
+
index:
|
|
383
|
+
info_1: Les seccions següents s'han convertit a propostes. Ara pots revisar-les i ajustar-les abans de publicar.
|
|
384
|
+
publish_document: Publicar el document
|
|
385
|
+
save_draft: Desa l'esborrany
|
|
386
|
+
title: PREVISUALITZAR EL TEXT PARTICIPATIU
|
|
387
|
+
new_import:
|
|
388
|
+
accepted_mime_types:
|
|
389
|
+
md: Markdown
|
|
390
|
+
odt: ODT
|
|
391
|
+
bottom_hint: "(Podràs previsualitzar i ordenar les seccions del document)"
|
|
392
|
+
document_legend: 'Afegeix un document de menys de 2 Mb, cadascuna de les seccions (fins a 3 nivells de profunditat) es convertiran a propostes. Els formats suportats són: %{valid_mime_types}'
|
|
393
|
+
title: AFEGIR DOCUMENT
|
|
394
|
+
upload_document: Puja el document
|
|
395
|
+
publish:
|
|
396
|
+
invalid: No s'han pogut publicar propostes
|
|
397
|
+
success: S'han publicat totes les propostes
|
|
398
|
+
sections:
|
|
399
|
+
article: "<em>Article</em>"
|
|
400
|
+
section: "<em>Secció:</em> <strong>%{title}</strong>"
|
|
401
|
+
sub-section: "<em>Subsecció:</em> %{title}"
|
|
402
|
+
update:
|
|
403
|
+
success: El text participatiu s'ha actualitzat correctament.
|
|
404
|
+
paragraph_answers:
|
|
405
|
+
form:
|
|
406
|
+
accepted: Acceptades
|
|
407
|
+
answer_paragraph: Resposta
|
|
408
|
+
evaluating: En avaluació
|
|
409
|
+
rejected: Rebutjada
|
|
410
|
+
title: Respondre a la proposta %{title}
|
|
411
|
+
paragraph_notes:
|
|
412
|
+
create:
|
|
413
|
+
error: S'ha produït un error en crear aquesta nota de la proposta
|
|
414
|
+
success: La nota de la proposta s'ha creat correctament
|
|
415
|
+
form:
|
|
416
|
+
note: Nota
|
|
417
|
+
submit: Enviar
|
|
418
|
+
leave_your_note: Deixa la teva nota
|
|
419
|
+
title: Notes privades
|
|
420
|
+
paragraphs:
|
|
421
|
+
answer:
|
|
422
|
+
invalid: Hi ha hagut un problema en respondre a aquesta proposta
|
|
423
|
+
success: Proposta resposta amb èxit
|
|
424
|
+
create:
|
|
425
|
+
invalid: Hi ha hagut un problema en crear aquesta proposta
|
|
426
|
+
success: Proposta creada correctament
|
|
427
|
+
edit:
|
|
428
|
+
title: Actualitza la proposta
|
|
429
|
+
update: Actualizar
|
|
430
|
+
form:
|
|
431
|
+
attachment_legend: "(Opcional) Afegiu un fitxer adjunt"
|
|
432
|
+
created_in_meeting: Aquesta proposta prové d'una trobada
|
|
433
|
+
delete_attachment: Suprimeix l'adjunt
|
|
434
|
+
select_a_category: Selecciona una categoria
|
|
435
|
+
select_a_meeting: Selecciona una trobada
|
|
436
|
+
index:
|
|
437
|
+
actions: Accions
|
|
438
|
+
assign_to_valuator: Assignar a avaluadora
|
|
439
|
+
assign_to_valuator_button: Assignar
|
|
440
|
+
cancel: Cancel·lar
|
|
441
|
+
change_category: Canvia la categoria
|
|
442
|
+
change_scope: Canviar àmbit
|
|
443
|
+
merge: Fusionar a una nova
|
|
444
|
+
merge_button: Fusionar
|
|
445
|
+
publish: Publica
|
|
446
|
+
publish_answers: Publica respostes
|
|
447
|
+
select_component: Selecciona un component
|
|
448
|
+
selected: seleccionat
|
|
449
|
+
split: Dividir propostes
|
|
450
|
+
split_button: Dividir
|
|
451
|
+
title: Propostes
|
|
452
|
+
unassign_from_valuator: Desfer assignació a avaluadora
|
|
453
|
+
unassign_from_valuator_button: Desfer assignació
|
|
454
|
+
update: Actualitza
|
|
455
|
+
update_scope_button: Actualitzar àmbit
|
|
456
|
+
new:
|
|
457
|
+
create: Crea
|
|
458
|
+
title: Crea proposta
|
|
459
|
+
publish_answers:
|
|
460
|
+
number_of_paragraphs: Es publicaran les respostes per a %{number} propostes.
|
|
461
|
+
select_a_paragraph: Selecciona una proposta
|
|
462
|
+
show:
|
|
463
|
+
amendments_count: Número d'esmenes
|
|
464
|
+
assigned_valuators: Avaluadores assignades
|
|
465
|
+
authors: Autores
|
|
466
|
+
body: Cos
|
|
467
|
+
comments_count: Comptador de comentaris
|
|
468
|
+
comments_negative_count: En contra
|
|
469
|
+
comments_neutral_count: Neutral
|
|
470
|
+
comments_positive_count: A favor
|
|
471
|
+
created_at: Data de creació
|
|
472
|
+
documents: Documents
|
|
473
|
+
endorsements_count: Número d'esmenes
|
|
474
|
+
endorsements_ranking: Classificació per esmenes
|
|
475
|
+
endorsers: Adherides
|
|
476
|
+
link: Enllaç
|
|
477
|
+
n_more_endorsers:
|
|
478
|
+
one: i 1 més
|
|
479
|
+
other: i %{count} més
|
|
480
|
+
photos: Fotos
|
|
481
|
+
paragraphs: Propostes
|
|
482
|
+
ranking: "%{ranking} de %{total}"
|
|
483
|
+
related_meetings: Trobades relacionades
|
|
484
|
+
remove_assignment: Desfer assignació
|
|
485
|
+
remove_assignment_confirmation: Segur que vols desfer l'assignació a l'avaluadora d'aquesta proposta?
|
|
486
|
+
valuators: Avaluadores
|
|
487
|
+
votes_count: Nombre de suports
|
|
488
|
+
votes_ranking: Classificació per suports
|
|
489
|
+
update_category:
|
|
490
|
+
invalid: 'Aquestes propostes ja tenien la categoria %{subject_name}: %{paragraphs}.'
|
|
491
|
+
select_a_category: Selecciona una categoria
|
|
492
|
+
select_a_paragraph: Selecciona una proposta
|
|
493
|
+
success: 'Les propostes s''han actualitzat correctament a la categoria %{subject_name}: %{paragraphs}.'
|
|
494
|
+
update_scope:
|
|
495
|
+
invalid: 'Aquestes propostes ja tenien l''àmbit %{subject_name}: %{paragraphs}.'
|
|
496
|
+
select_a_paragraph: Selecciona una proposta
|
|
497
|
+
select_a_scope: Si us plau, selecciona un àmbit
|
|
498
|
+
success: 'Les propostes s''han actualitzat correctament a l''àmbit %{subject_name}: %{paragraphs}.'
|
|
499
|
+
paragraphs_imports:
|
|
500
|
+
create:
|
|
501
|
+
invalid: S'ha produït un error en importar les propostes
|
|
502
|
+
success: "%{number} propostes importades correctament"
|
|
503
|
+
new:
|
|
504
|
+
create: Importa propostes
|
|
505
|
+
no_components: No hi ha cap altre component de propostes en aquest espai participatiu des d'on importar-les.
|
|
506
|
+
select_component: Escull un component
|
|
507
|
+
select_states: Consulta els estats de les propostes a importar
|
|
508
|
+
title: Importar propostes
|
|
509
|
+
paragraphs_merges:
|
|
510
|
+
create:
|
|
511
|
+
success: S'han combinat amb èxit les propostes en una de nova.
|
|
512
|
+
paragraphs_splits:
|
|
513
|
+
create:
|
|
514
|
+
success: Les propostes s'han dividit en d'altres de noves correctament.
|
|
515
|
+
valuation_assignments:
|
|
516
|
+
create:
|
|
517
|
+
invalid: S'ha produït un error en assignar propostes a una avaluadora
|
|
518
|
+
success: Propostes assignades a avaluadora correctament
|
|
519
|
+
delete:
|
|
520
|
+
invalid: S'ha produït un error en desfer l'assignació de propostes a una avaluadora
|
|
521
|
+
success: Avaluadora desassignada correctament
|
|
522
|
+
admin_log:
|
|
523
|
+
paragraph:
|
|
524
|
+
answer: "%{user_name} ha respost a la proposta %{resource_name} a l'espai %{space_name}"
|
|
525
|
+
create: "%{user_name} ha creat la proposta %{resource_name} sobre l'espai %{space_name} com a proposta oficial"
|
|
526
|
+
publish_answer: "%{user_name} ha publicat una resposta a la proposta %{resource_name} a l'espai %{space_name}"
|
|
527
|
+
update: "%{user_name} ha actualitzat la proposta oficial %{resource_name} sobre l'espai %{space_name}"
|
|
528
|
+
paragraph_note:
|
|
529
|
+
create: "%{user_name} ha deixat una nota privada a la proposta %{resource_name} dins l'espai %{space_name}"
|
|
530
|
+
valuation_assignment:
|
|
531
|
+
create: "%{user_name} ha assignat la proposta %{resource_name} a una avaluadora"
|
|
532
|
+
delete: "%{user_name} ha desfet l'assignació a una avaluadora de la proposta %{paragraph_title}"
|
|
533
|
+
answers:
|
|
534
|
+
accepted: Acceptades
|
|
535
|
+
evaluating: En avaluació
|
|
536
|
+
not_answered: No resposta
|
|
537
|
+
rejected: Rebutjada
|
|
538
|
+
withdrawn: Retirada
|
|
539
|
+
application_helper:
|
|
540
|
+
filter_category_values:
|
|
541
|
+
all: Totes
|
|
542
|
+
filter_origin_values:
|
|
543
|
+
all: Totes
|
|
544
|
+
citizens: Ciutadania
|
|
545
|
+
meetings: Trobades
|
|
546
|
+
official: Oficial
|
|
547
|
+
user_groups: Grups
|
|
548
|
+
filter_scope_values:
|
|
549
|
+
all: Totes
|
|
550
|
+
filter_state_values:
|
|
551
|
+
accepted: Acceptada
|
|
552
|
+
all: Totes
|
|
553
|
+
evaluating: En avaluació
|
|
554
|
+
not_answered: No resposta
|
|
555
|
+
rejected: Rebutjada
|
|
556
|
+
filter_type_values:
|
|
557
|
+
all: Totes
|
|
558
|
+
amendments: Esmenes
|
|
559
|
+
paragraphs: Propostes
|
|
560
|
+
collaborative_drafts:
|
|
561
|
+
collaborative_draft:
|
|
562
|
+
publish:
|
|
563
|
+
error: S'ha produït un error en publicar l'esborrany col·laboratiu.
|
|
564
|
+
irreversible_action_modal:
|
|
565
|
+
body: Després de publicar l'esborrany com a proposta, deixarà de ser editable. La proposta no acceptarà noves autores ni contribucions.
|
|
566
|
+
cancel: Cancel·lar
|
|
567
|
+
ok: Publica com a proposta
|
|
568
|
+
title: La següent acció és irreversible
|
|
569
|
+
success: L'esborrany col·laboratiu s'ha publicat correctament com a proposta.
|
|
570
|
+
view_collaborative_draft: Veure l'esborrany col·laboratiu
|
|
571
|
+
withdraw:
|
|
572
|
+
error: S'ha produït un error en tancar l'esborrany col·laboratiu.
|
|
573
|
+
irreversible_action_modal:
|
|
574
|
+
body: Després de tancar l'esborrany, ja no serà editable. L'esborrany no acceptarà noves autores ni contribucions.
|
|
575
|
+
cancel: Cancel·lar
|
|
576
|
+
ok: Retira l'esborrany col·laboratiu
|
|
577
|
+
title: La següent acció és irreversible
|
|
578
|
+
success: L'esborrany col·laboratiu s'ha retirat correctamente.
|
|
579
|
+
count:
|
|
580
|
+
drafts_count:
|
|
581
|
+
one: "%{count} esborrany de col·laboració"
|
|
582
|
+
other: "%{count} esborrany de col·laboració"
|
|
583
|
+
create:
|
|
584
|
+
error: S'ha produït un error en crear aquest esborrany col·laboratiu
|
|
585
|
+
success: Esborrany col·laboratiu creat correctament.
|
|
586
|
+
edit:
|
|
587
|
+
attachment_legend: "(Opcional) Afegeix un fitxer adjunt"
|
|
588
|
+
back: Torna
|
|
589
|
+
select_a_category: Si us plau, selecciona una categoria
|
|
590
|
+
send: Envia
|
|
591
|
+
title: Edita l'esborrany col·laboratiu
|
|
592
|
+
filters:
|
|
593
|
+
all: Todas
|
|
594
|
+
amendment: Esmenes
|
|
595
|
+
category: Categoria
|
|
596
|
+
open: Obert
|
|
597
|
+
published: Publicat
|
|
598
|
+
related_to: Relacionat amb
|
|
599
|
+
scope: Àmbit
|
|
600
|
+
search: Cerca
|
|
601
|
+
state: Estat
|
|
602
|
+
withdrawn: Retirat
|
|
603
|
+
filters_small_view:
|
|
604
|
+
close_modal: Tanca la finestra
|
|
605
|
+
filter: Filtre
|
|
606
|
+
filter_by: Filtra per
|
|
607
|
+
unfold: Desplega
|
|
608
|
+
new:
|
|
609
|
+
send: Continua
|
|
610
|
+
new_collaborative_draft_button:
|
|
611
|
+
new_collaborative_draft: Nou esborrany col·laboratiu
|
|
612
|
+
orders:
|
|
613
|
+
label: 'Ordenar esborranys per:'
|
|
614
|
+
most_contributed: Amb més contribucions
|
|
615
|
+
random: Aleatori
|
|
616
|
+
recent: Recent
|
|
617
|
+
requests:
|
|
618
|
+
accepted_request:
|
|
619
|
+
error: No has pogut ser acceptada com a contribuïdora. Si us plau, torna-ho a provar més tard.
|
|
620
|
+
success: "S'ha acceptat amb èxit @%{user} com a contribuïdora"
|
|
621
|
+
access_requested:
|
|
622
|
+
error: No s'ha pogut completar la teva sol·licitud, si us plau torna-ho a provar més tard.
|
|
623
|
+
success: La teva sol·licitud de col·laboració s'ha enviat correctament
|
|
624
|
+
collaboration_requests:
|
|
625
|
+
accept_request: Accepta
|
|
626
|
+
reject_request: Rebutja
|
|
627
|
+
title: Sol·licituds de col·laboració
|
|
628
|
+
rejected_request:
|
|
629
|
+
error: No s'ha pogut rebutjar com a contribuïdora, si us plau tornau-ho a provar més tard.
|
|
630
|
+
success: "@%{user} s'ha rebutjat correctament com a col·laboradora"
|
|
631
|
+
show:
|
|
632
|
+
back: Torna
|
|
633
|
+
edit: Edita l'esborrany col·laboratiu
|
|
634
|
+
final_paragraph: proposta final
|
|
635
|
+
final_paragraph_help_text: Aquest esborrany està finalitzat. Consulta la proposta final
|
|
636
|
+
hidden_authors_count:
|
|
637
|
+
one: i %{count} persona més
|
|
638
|
+
other: i %{count} persones més
|
|
639
|
+
info-message: Aquest és un <strong>esborrany col·laboratiu</strong> per a una proposta. Això significa que pots ajudar les seves autores a modelar la proposta, utilitzant la secció de comentaris a continuació, o a millorar-la demanant accés per editar-la directament. Un vegada les autores et donin accés, podràs fer canvis en aquest esborrany.
|
|
640
|
+
publish: Publica
|
|
641
|
+
publish_info: Publica aquesta versió de l'esborrany o
|
|
642
|
+
published_paragraph: proposta publicada
|
|
643
|
+
request_access: Sol·licitud d'accés
|
|
644
|
+
requested_access: S'ha sol·licitat l'accés
|
|
645
|
+
version_history: veure l'historial de versions d'aquesta proposta
|
|
646
|
+
withdraw: retira l'esborrany
|
|
647
|
+
states:
|
|
648
|
+
open: Obert
|
|
649
|
+
published: Publicat
|
|
650
|
+
withdrawn: Retirat
|
|
651
|
+
update:
|
|
652
|
+
error: S'ha produït un error en desar l'esborrany col·laboratiu.
|
|
653
|
+
success: L'esborrany col·laboratiu s'ha actualitzat correctament.
|
|
654
|
+
wizard_aside:
|
|
655
|
+
back_from_collaborative_draft: Tornar a l'esborrany col·laboratiu
|
|
656
|
+
info: Estàs creant un <strong>esborrany col·laboratiu</strong>.
|
|
657
|
+
wizard_header:
|
|
658
|
+
title: Crea el teu esborrany col·laboratiu
|
|
659
|
+
content_blocks:
|
|
660
|
+
highlighted_paragraphs:
|
|
661
|
+
paragraphs: Propostes
|
|
662
|
+
create:
|
|
663
|
+
error: Hi ha hagut un error en desar la proposta.
|
|
664
|
+
success: La proposta s'ha creat correctament. S'ha desat com a esborrany.
|
|
665
|
+
destroy_draft:
|
|
666
|
+
error: S'ha produït un error en suprimir l'esborrany de la proposta.
|
|
667
|
+
success: L'esborrany de proposta s'ha eliminat correctament.
|
|
668
|
+
last_activity:
|
|
669
|
+
new_paragraph_at_html: "<span>Nova proposta a %{link}</span>"
|
|
670
|
+
paragraph_updated_at_html: "<span>Proposta actualitzada el %{link}</span>"
|
|
671
|
+
models:
|
|
672
|
+
collaborative_draft:
|
|
673
|
+
fields:
|
|
674
|
+
authors: Autores
|
|
675
|
+
comments: Comentaris
|
|
676
|
+
contributions: Aportacions
|
|
677
|
+
paragraph:
|
|
678
|
+
fields:
|
|
679
|
+
category: Categoria
|
|
680
|
+
comments: Comentaris
|
|
681
|
+
id: Identificador
|
|
682
|
+
notes: Notes
|
|
683
|
+
official_paragraph: Proposta oficial
|
|
684
|
+
published_answer: Resposta publicada
|
|
685
|
+
published_at: Publicat a
|
|
686
|
+
scope: Àmbit
|
|
687
|
+
state: Estat
|
|
688
|
+
title: Títol
|
|
689
|
+
valuator: Avaluadora
|
|
690
|
+
valuators: Avaluadores
|
|
691
|
+
votes: Suports
|
|
692
|
+
new:
|
|
693
|
+
limit_reached: No pots crear noves propostes perquè has superat el límit.
|
|
694
|
+
participatory_text_paragraph:
|
|
695
|
+
alternative_title: Ara mateix no hi ha cap text participatiu
|
|
696
|
+
buttons:
|
|
697
|
+
amend: Esmena
|
|
698
|
+
comment: Comentari
|
|
699
|
+
comments: Comentaris
|
|
700
|
+
paragraph_votes:
|
|
701
|
+
create:
|
|
702
|
+
error: Hi ha hagut un error en donar suport a la proposta.
|
|
703
|
+
paragraphs:
|
|
704
|
+
compare:
|
|
705
|
+
continue: Continua
|
|
706
|
+
no_similars_found: Ben fet! No s'han trobat propostes semblants
|
|
707
|
+
title: Propostes similars
|
|
708
|
+
complete:
|
|
709
|
+
send: Enviar
|
|
710
|
+
title: Completa la teva proposta
|
|
711
|
+
count:
|
|
712
|
+
paragraphs_count:
|
|
713
|
+
one: "%{count} proposta"
|
|
714
|
+
other: "%{count} propostes"
|
|
715
|
+
dynamic_map_instructions:
|
|
716
|
+
description: Les coordenades s'actualitzaran quan facis clic en el botó 'previsualitzar'. No obstant això, la direcció no canvia.
|
|
717
|
+
instructions: Pots moure la ubicació en el mapa.
|
|
718
|
+
edit:
|
|
719
|
+
add_documents: Documents
|
|
720
|
+
add_images: Arxiu
|
|
721
|
+
attachment_legend: "(Opcional) Afegiu un fitxer adjunt"
|
|
722
|
+
back: Torna
|
|
723
|
+
delete_document: Eliminar document
|
|
724
|
+
delete_image: Eliminar imatge
|
|
725
|
+
gallery_legend: "(Opcional) Afegir una imatge a la targeta de proposta"
|
|
726
|
+
select_a_category: Si us plau, selecciona una categoria
|
|
727
|
+
send: Envia
|
|
728
|
+
title: Edita proposta
|
|
729
|
+
edit_draft:
|
|
730
|
+
discard: Descarta aquest esborrany
|
|
731
|
+
discard_confirmation: Estàs segur de que vols descartar l'esborrany d'aquesta proposta?
|
|
732
|
+
send: Vista prèvia
|
|
733
|
+
title: Edició l'esborrany de proposta
|
|
734
|
+
filters:
|
|
735
|
+
activity: La meva activitat
|
|
736
|
+
all: Tots
|
|
737
|
+
amendment_type: Tipus
|
|
738
|
+
category: Categoria
|
|
739
|
+
my_paragraphs: Les meves propostes
|
|
740
|
+
origin: Origen
|
|
741
|
+
related_to: Relacionat amb
|
|
742
|
+
scope: Àmbit
|
|
743
|
+
search: Cerca
|
|
744
|
+
state: Estat
|
|
745
|
+
type: Tipus
|
|
746
|
+
voted: Has donat suport
|
|
747
|
+
filters_small_view:
|
|
748
|
+
close_modal: Tancar finestra
|
|
749
|
+
filter: Filtra
|
|
750
|
+
filter_by: Filtra per
|
|
751
|
+
unfold: Desplega
|
|
752
|
+
index:
|
|
753
|
+
collaborative_drafts_list: Accedeix a esborranys col·laboratius
|
|
754
|
+
new_paragraph: Nova proposta
|
|
755
|
+
see_all_withdrawn: Veure totes les propostes retirades
|
|
756
|
+
view_paragraph: Veure proposta
|
|
757
|
+
linked_paragraphs:
|
|
758
|
+
paragraph_votes:
|
|
759
|
+
one: suport
|
|
760
|
+
other: suports
|
|
761
|
+
new:
|
|
762
|
+
send: Continua
|
|
763
|
+
title: Crea la teva proposta
|
|
764
|
+
orders:
|
|
765
|
+
label: 'Ordenar propostes per:'
|
|
766
|
+
most_commented: Més comentades
|
|
767
|
+
most_endorsed: Amb més adhesions
|
|
768
|
+
most_followed: Amb més seguidores
|
|
769
|
+
most_voted: Amb més suports
|
|
770
|
+
random: Aleatori
|
|
771
|
+
recent: Recent
|
|
772
|
+
with_more_authors: Amb més autores
|
|
773
|
+
participatory_texts:
|
|
774
|
+
index:
|
|
775
|
+
document_index: Índex del document
|
|
776
|
+
view_index:
|
|
777
|
+
see_index: Veure índex
|
|
778
|
+
placeholder:
|
|
779
|
+
address: 37 Homewood Drive Brownsburg, IN 46112
|
|
780
|
+
preview:
|
|
781
|
+
announcement_body: La teva proposta s'ha guardat com un esborrany. Necessita ser publicada perquè aparegui al lloc.
|
|
782
|
+
announcement_title: La teva proposta encara no s'ha publicat
|
|
783
|
+
modify: Modifica la proposta
|
|
784
|
+
paragraph_edit_before_minutes:
|
|
785
|
+
one: Podràs editar aquesta proposta durant el primer minut després de publicar-la. Un cop passat aquest temps, no podràs editar la proposta.
|
|
786
|
+
other: Podràs editar aquesta proposta durant els primers %{count} minuts després de la publicació de la proposta. Un cop passada aquesta finestra de temps, no podràs editar la proposta.
|
|
787
|
+
publish: Publica
|
|
788
|
+
title: Publica la teva proposta
|
|
789
|
+
paragraph:
|
|
790
|
+
creation_date: 'Data de creació: %{date}'
|
|
791
|
+
view_paragraph: Veure proposta
|
|
792
|
+
paragraphs:
|
|
793
|
+
empty: Encara no hi ha cap proposta
|
|
794
|
+
empty_filters: No hi ha cap proposta amb aquest criteri
|
|
795
|
+
show:
|
|
796
|
+
answer: Resposta
|
|
797
|
+
back_to: Torna
|
|
798
|
+
back_to_list: Torna al llistat
|
|
799
|
+
changes_at_title: Esmena a "%{title}"
|
|
800
|
+
comments: Comentaris
|
|
801
|
+
edit_paragraph: Edita proposta
|
|
802
|
+
endorsements_list: Llistat d'adhesions
|
|
803
|
+
estimated_cost: Cost estimat
|
|
804
|
+
hidden_endorsers_count:
|
|
805
|
+
one: i %{count} persona més
|
|
806
|
+
other: i %{count} persones més
|
|
807
|
+
link_to_collaborative_draft_help_text: Aquesta proposta és el resultat d'un esborrany col·laboratiu. Revisa l'historial
|
|
808
|
+
link_to_collaborative_draft_text: Veure l'esborrany col·laboratiu
|
|
809
|
+
link_to_promoted_emendation_help_text: Aquesta proposta és una esmena promocionada
|
|
810
|
+
link_to_promoted_emendation_text: Veure l'esmena rebutjada.
|
|
811
|
+
link_to_paragraph_from_emendation_help_text: Això és una esmena rebutjada
|
|
812
|
+
link_to_paragraph_from_emendation_text: Veure la proposta
|
|
813
|
+
paragraph_accepted_reason: 'Aquesta proposta ha estat acceptada perquè:'
|
|
814
|
+
paragraph_in_evaluation_reason: S'està avaluant aquesta proposta
|
|
815
|
+
paragraph_rejected_reason: 'Aquesta proposta ha estat rebutjada perquè:'
|
|
816
|
+
read_less: Llegir menys
|
|
817
|
+
read_more: Llegir més
|
|
818
|
+
report: Denúncia
|
|
819
|
+
withdraw_btn_hint: Pots retirar la teva proposta si canvies d'opinió, sempre que no hagis rebut cap suport. La proposta no s'esborra, apareixerà a la llista de propostes retirades.
|
|
820
|
+
withdraw_confirmation_html: Segur que vols retirar aquesta proposta? <br><br><strong>Aquesta acció no es pot desfer!</strong>
|
|
821
|
+
withdraw_paragraph: Retirar proposta
|
|
822
|
+
tags:
|
|
823
|
+
changed_from: "(modificat de <u>%{previous_name}</u> per una administradora)"
|
|
824
|
+
update:
|
|
825
|
+
title: Actualitzar la proposta
|
|
826
|
+
vote_button:
|
|
827
|
+
already_voted: Ja li has donat suport
|
|
828
|
+
already_voted_hover: Retira suport
|
|
829
|
+
maximum_votes_reached: S'ha arribat al límit de suports
|
|
830
|
+
no_votes_remaining: No hi ha suports restants
|
|
831
|
+
vote: Dona suport
|
|
832
|
+
votes_blocked: Suports deshabilitats
|
|
833
|
+
votes_count:
|
|
834
|
+
count:
|
|
835
|
+
one: Suport
|
|
836
|
+
other: Suports
|
|
837
|
+
most_popular_paragraph: Proposta més popular
|
|
838
|
+
need_more_votes: Necessita més suports
|
|
839
|
+
voting_rules:
|
|
840
|
+
can_accumulate_supports_beyond_threshold:
|
|
841
|
+
description: Cada proposta pot acumular més de %{limit} suports
|
|
842
|
+
minimum_votes_per_user:
|
|
843
|
+
description: Has de distribuir un mínim de %{votes} suports entre diferents propostes.
|
|
844
|
+
given_enough_votes: Has donat suficients suports.
|
|
845
|
+
supports_remaining: Has de donar %{remaining_votes} suport/s més a propostes per a que els teus suports siguin tinguts en compte.
|
|
846
|
+
paragraph_limit:
|
|
847
|
+
description: Pots crear fins a %{limit} propostes.
|
|
848
|
+
threshold_per_paragraph:
|
|
849
|
+
description: Per ser validades, les propostes han d'arribar a un quòrum mínim de %{limit} suports
|
|
850
|
+
title: 'La selecció de propostes es regeix per les següents normes:'
|
|
851
|
+
vote_limit:
|
|
852
|
+
description: Pots donar suport a %{limit} propostes.
|
|
853
|
+
left: Restant
|
|
854
|
+
votes: Suports
|
|
855
|
+
wizard_aside:
|
|
856
|
+
back: Torna
|
|
857
|
+
back_from_step_1: Tornar a propostes
|
|
858
|
+
back_from_step_2: Tornar a propostes
|
|
859
|
+
back_from_step_3: Tornar a comparar propostes
|
|
860
|
+
back_from_step_4: Tornar a editar l'esborrany
|
|
861
|
+
info: Estàs creant una <strong>proposta</strong>.
|
|
862
|
+
wizard_steps:
|
|
863
|
+
current_step: Pas actual
|
|
864
|
+
see_steps: veure les fases
|
|
865
|
+
step_1: Crea la teva proposta
|
|
866
|
+
step_2: Compara
|
|
867
|
+
step_3: Completa
|
|
868
|
+
step_4: Publica la teva proposta
|
|
869
|
+
step_of: Fase %{current_step_num} de %{total_steps}
|
|
870
|
+
title: Passos per a la creació d'una proposta
|
|
871
|
+
paragraphs_picker:
|
|
872
|
+
choose_paragraphs: Triar propostes
|
|
873
|
+
close: Tancar
|
|
874
|
+
more_paragraphs: Hi ha %{number} propostes més. Afina la teva cerca per localitzar-les.
|
|
875
|
+
no_paragraphs: No hi ha propostes que coincideixin amb el teu criteri de cerca o no hi ha cap proposta.
|
|
876
|
+
publish:
|
|
877
|
+
error: Hi ha hagut un error en publicar la proposta.
|
|
878
|
+
success: La proposta s'ha publicat correctament.
|
|
879
|
+
publish_answers:
|
|
880
|
+
success: Respostes a les propostes publicades correctament.
|
|
881
|
+
update:
|
|
882
|
+
error: Hi ha hagut un error en desar la proposta.
|
|
883
|
+
success: La proposta s'ha actualitzat correctament.
|
|
884
|
+
update_draft:
|
|
885
|
+
error: Hi ha hagut un error en desar l'esborrany col·laboratiu.
|
|
886
|
+
success: L'esborrany col·laboratiu s'ha actualitzat correctament.
|
|
887
|
+
versions:
|
|
888
|
+
collaborative_drafts:
|
|
889
|
+
back_to_resource: Torna a l'esborrany col·laboratiu
|
|
890
|
+
index:
|
|
891
|
+
title: Versions
|
|
892
|
+
paragraphs:
|
|
893
|
+
back_to_resource: Torna a la proposta
|
|
894
|
+
withdraw:
|
|
895
|
+
errors:
|
|
896
|
+
has_supports: Aquesta proposta no es pot retirar perquè ja compta amb suports.
|
|
897
|
+
resource_links:
|
|
898
|
+
copied_from_component:
|
|
899
|
+
paragraph_paragraph: Propostes relacionades
|
|
900
|
+
included_projects:
|
|
901
|
+
project_result: 'Resultats que apareixen en aquest projecte:'
|
|
902
|
+
included_paragraphs:
|
|
903
|
+
paragraph_project: 'Proposta vinculada a aquests projectes:'
|
|
904
|
+
paragraph_result: 'Proposta vinculada a aquests resultats:'
|
|
905
|
+
statistics:
|
|
906
|
+
paragraphs_accepted: Propostes acceptades
|
|
907
|
+
paragraphs_count: Propostes
|
|
908
|
+
supports_count: Suports
|