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,936 @@
|
|
|
1
|
+
fr-CA:
|
|
2
|
+
activemodel:
|
|
3
|
+
attributes:
|
|
4
|
+
collaborative_draft:
|
|
5
|
+
address: Adresse
|
|
6
|
+
body: Corps
|
|
7
|
+
category_id: Catégorie
|
|
8
|
+
decidim_scope_id: Portée
|
|
9
|
+
has_address: Renseigner une adresse
|
|
10
|
+
scope_id: Périmètre d'application
|
|
11
|
+
state: État
|
|
12
|
+
title: Titre
|
|
13
|
+
user_group_id: Créez un brouillon collaboratif comme
|
|
14
|
+
paragraph:
|
|
15
|
+
address: Adresse
|
|
16
|
+
answer: Répondre
|
|
17
|
+
answered_at: Répondu à
|
|
18
|
+
automatic_hashtags: Hashtags ajoutés automatiquement
|
|
19
|
+
body: Corps du texte
|
|
20
|
+
category_id: Catégorie
|
|
21
|
+
decidim_scope_id: Portée
|
|
22
|
+
has_address: Renseigner une adresse
|
|
23
|
+
scope_id: Périmètre d'application
|
|
24
|
+
state: État
|
|
25
|
+
suggested_hashtags: Hashtags suggérés
|
|
26
|
+
title: Titre
|
|
27
|
+
user_group_id: Créer une proposition en tant que
|
|
28
|
+
paragraph_answer:
|
|
29
|
+
answer: Répondre
|
|
30
|
+
cost: Coût
|
|
31
|
+
cost_report: Rapport de coût
|
|
32
|
+
execution_period: Période d'exécution
|
|
33
|
+
paragraphs_copy:
|
|
34
|
+
copy_paragraphs: Je comprends que cela va importer toutes les propositions de la fonctionnalité sélectionnée vers la fonctionnalité actuelle et que cette action ne peut pas être inversée.
|
|
35
|
+
origin_component_id: Fonctionnalité dont on veut copier les propositions
|
|
36
|
+
paragraphs_import:
|
|
37
|
+
import_paragraphs: Importer des propositions
|
|
38
|
+
keep_answers: Garder l'état et les réponses
|
|
39
|
+
keep_authors: Gardez les auteurs originaux
|
|
40
|
+
valuation_assignment:
|
|
41
|
+
admin_log:
|
|
42
|
+
valuator_role_id: Nom de l'évaluateur
|
|
43
|
+
errors:
|
|
44
|
+
models:
|
|
45
|
+
participatory_text:
|
|
46
|
+
attributes:
|
|
47
|
+
document:
|
|
48
|
+
invalid_document_type: 'Type de document invalide. Les formats acceptés sont: %{valid_mime_types}'
|
|
49
|
+
paragraph:
|
|
50
|
+
attributes:
|
|
51
|
+
add_documents:
|
|
52
|
+
needs_to_be_reattached: Doit être téléchargé de nouveau
|
|
53
|
+
add_photos:
|
|
54
|
+
needs_to_be_reattached: Doit être téléchargé de nouveau
|
|
55
|
+
body:
|
|
56
|
+
cant_be_equal_to_template: ne peut pas être égal au modèle
|
|
57
|
+
identical: ET le titre ne peut pas être identique
|
|
58
|
+
title:
|
|
59
|
+
identical: ET le corps ne peut pas être identique
|
|
60
|
+
paragraphs_merge:
|
|
61
|
+
attributes:
|
|
62
|
+
base:
|
|
63
|
+
not_official: Non officiels
|
|
64
|
+
supported: Avoir reçu des soutiens ou des approbations
|
|
65
|
+
paragraphs_split:
|
|
66
|
+
attributes:
|
|
67
|
+
base:
|
|
68
|
+
not_official: Non officiels
|
|
69
|
+
supported: A reçu des soutiens ou des approbations
|
|
70
|
+
models:
|
|
71
|
+
decidim/enhanced_textwork/accepted_paragraph_event: Proposition acceptée
|
|
72
|
+
decidim/enhanced_textwork/admin/update_paragraph_category_event: Catégorie de proposition modifiée
|
|
73
|
+
decidim/enhanced_textwork/admin/update_paragraph_scope_event: La portée de la proposition a été modifiée
|
|
74
|
+
decidim/enhanced_textwork/creation_enabled_event: Autoriser la création de nouvelles propositions
|
|
75
|
+
decidim/enhanced_textwork/endorsing_enabled_event: Activer le module de soutiens
|
|
76
|
+
decidim/enhanced_textwork/evaluating_paragraph_event: Proposition en cours d'évaluation
|
|
77
|
+
decidim/enhanced_textwork/paragraph_mentioned_event: Proposition mentionnée
|
|
78
|
+
decidim/enhanced_textwork/publish_paragraph_event: Proposition publiée
|
|
79
|
+
decidim/enhanced_textwork/rejected_paragraph_event: Proposition non retenue
|
|
80
|
+
decidim/enhanced_textwork/voting_enabled_event: Activer le module de vote simple
|
|
81
|
+
activerecord:
|
|
82
|
+
models:
|
|
83
|
+
decidim/enhanced_textwork/collaborative_draft:
|
|
84
|
+
one: Brouillon collaboratif
|
|
85
|
+
other: Brouillons collaboratifs
|
|
86
|
+
decidim/enhanced_textwork/paragraph:
|
|
87
|
+
one: Proposition
|
|
88
|
+
other: Propositions
|
|
89
|
+
decidim/enhanced_textwork/paragraph_note:
|
|
90
|
+
one: Remarque
|
|
91
|
+
other: Remarques
|
|
92
|
+
decidim/enhanced_textwork/paragraph_vote:
|
|
93
|
+
one: Vote
|
|
94
|
+
other: Votes
|
|
95
|
+
decidim:
|
|
96
|
+
admin:
|
|
97
|
+
filters:
|
|
98
|
+
paragraphs:
|
|
99
|
+
category_id_eq:
|
|
100
|
+
label: Catégorie
|
|
101
|
+
is_emendation_true:
|
|
102
|
+
label: Type
|
|
103
|
+
values:
|
|
104
|
+
'false': Propositions
|
|
105
|
+
'true': Amendements
|
|
106
|
+
scope_id_eq:
|
|
107
|
+
label: Secteur
|
|
108
|
+
state_eq:
|
|
109
|
+
label: État
|
|
110
|
+
values:
|
|
111
|
+
accepted: Acceptée
|
|
112
|
+
evaluating: En cours d'évaluation
|
|
113
|
+
published: Publiée
|
|
114
|
+
rejected: Rejetée
|
|
115
|
+
validating: Validation technique
|
|
116
|
+
withdrawn: Retirée
|
|
117
|
+
state_null:
|
|
118
|
+
label: État
|
|
119
|
+
values:
|
|
120
|
+
'true': Non répondu
|
|
121
|
+
valuator_role_ids_has:
|
|
122
|
+
label: Assigné à l'évaluateur
|
|
123
|
+
search_placeholder:
|
|
124
|
+
id_string_or_title_cont: Rechercher %{collection} par ID ou titre.
|
|
125
|
+
components:
|
|
126
|
+
paragraphs:
|
|
127
|
+
actions:
|
|
128
|
+
amend: Amender
|
|
129
|
+
comment: Commentaire
|
|
130
|
+
create: Créer
|
|
131
|
+
endorse: Soutenir
|
|
132
|
+
vote: Voter
|
|
133
|
+
vote_comment: Vote sur le commentaire
|
|
134
|
+
withdraw: Retirer
|
|
135
|
+
name: Propositions
|
|
136
|
+
settings:
|
|
137
|
+
global:
|
|
138
|
+
amendments_enabled: Modifications activées
|
|
139
|
+
amendments_enabled_help: Si actif, configurez les fonctionnalités d'amendement pour chaque étape.
|
|
140
|
+
amendments_wizard_help_text: Texte d'aide de l'assistant
|
|
141
|
+
announcement: Annonce
|
|
142
|
+
attachments_allowed: Autoriser les pièces jointes
|
|
143
|
+
can_accumulate_supports_beyond_threshold: Peut accumuler des supports au-delà du seuil
|
|
144
|
+
collaborative_drafts_enabled: Brouillons collaboratifs activés
|
|
145
|
+
comments_enabled: Activer le module de commentaire
|
|
146
|
+
comments_max_length: Longueur maximum (en caractères) des commentaires (laisser 0 pour la valeur par défaut)
|
|
147
|
+
default_sort_order: Tri des propositions par défaut
|
|
148
|
+
default_sort_order_help: Par défaut, si l’es aides sont activés, les propositions seront affichées par ordre aléatoire, et si les aides sont bloqués, alors ils seront triés par l’aide le plus soutenu.
|
|
149
|
+
default_sort_order_options:
|
|
150
|
+
default: Défaut
|
|
151
|
+
most_commented: Les plus commentées
|
|
152
|
+
most_endorsed: Les plus approuvées
|
|
153
|
+
most_followed: Les plus suivies
|
|
154
|
+
most_voted: Les plus soutenues
|
|
155
|
+
random: Aléatoire
|
|
156
|
+
recent: Les plus récents
|
|
157
|
+
with_more_authors: Avec le plus d'auteurs
|
|
158
|
+
geocoding_enabled: Géocodage activé
|
|
159
|
+
minimum_votes_per_user: Nombre minimum de votes par utilisateur
|
|
160
|
+
new_paragraph_body_template: Modèle de corps d'une nouvelle proposition
|
|
161
|
+
new_paragraph_body_template_help: Vous pouvez définir le texte prérempli que les nouvelles propositions auront
|
|
162
|
+
new_paragraph_help_text: Texte d'aide à la création d'une nouvelle proposition
|
|
163
|
+
official_paragraphs_enabled: Autoriser la création de propositions officielles
|
|
164
|
+
participatory_texts_enabled: Textes participatifs activés
|
|
165
|
+
participatory_texts_enabled_readonly: Impossible d'interagir avec ce paramètre s'il y a des propositions existantes. Veuillez créer une nouvelle fonctionnalité `Propositions` si vous voulez activer cette fonctionnalité ou supprimer toutes les propositions importées dans 'Textes participatifs` si vous voulez la désactiver.
|
|
166
|
+
paragraph_answering_enabled: Autoriser la réponse officielle aux propositions
|
|
167
|
+
paragraph_edit_before_minutes: Délai (en minutes) après lequel les auteurs ne peuvent plus modifier leurs propositions
|
|
168
|
+
paragraph_edit_time: Durée d'édition des propositions
|
|
169
|
+
paragraph_edit_time_choices:
|
|
170
|
+
infinite: Autoriser l'édition des propositions pour une durée infinie
|
|
171
|
+
limited: Autoriser l'édition des propositions durant un délai spécifique
|
|
172
|
+
paragraph_length: Nombre maximum de caractères du corps de la proposition
|
|
173
|
+
paragraph_limit: Limite de proposition par utilisateur
|
|
174
|
+
paragraph_wizard_step_1_help_text: Texte d'aide à l'étape "Créer" de la création de proposition
|
|
175
|
+
paragraph_wizard_step_2_help_text: Texte d'aide à l'étape "Comparer" de la création de proposition
|
|
176
|
+
paragraph_wizard_step_3_help_text: Texte d'aide à l'étape "Compléter" de la création de proposition
|
|
177
|
+
paragraph_wizard_step_4_help_text: Texte d'aide à l'étape "Publier" de la création de proposition
|
|
178
|
+
resources_permissions_enabled: Les autorisations d'actions peuvent être définies pour chaque proposition
|
|
179
|
+
scope_id: Secteur
|
|
180
|
+
scopes_enabled: Secteurs activés
|
|
181
|
+
threshold_per_paragraph: Seuil par proposition
|
|
182
|
+
vote_limit: Limite de votes par utilisateur
|
|
183
|
+
step:
|
|
184
|
+
amendment_creation_enabled: Création d'amendement activée
|
|
185
|
+
amendment_creation_enabled_help: Le participant peut amender les propositions.
|
|
186
|
+
amendment_promotion_enabled: Promotion d'amendement activée
|
|
187
|
+
amendment_promotion_enabled_help: Les auteurs de modifications pourront promouvoir la proposition de la modification rejetée.
|
|
188
|
+
amendment_reaction_enabled: Réaction aux amendements activée
|
|
189
|
+
amendment_reaction_enabled_help: Les auteurs de la proposition pourront accepter ou rejeter les modifications des participants.
|
|
190
|
+
amendments_visibility: Visibilité des amendements
|
|
191
|
+
amendments_visibility_choices:
|
|
192
|
+
all: Les amendements sont visibles par tous
|
|
193
|
+
participants: Les amendements ne sont visibles que par leurs auteurs
|
|
194
|
+
amendments_visibility_help: Si l'option "Les amendements ne sont visibles que pour leurs auteurs" est sélectionnée, le participant doit être connecté pour voir les amendements apportés.
|
|
195
|
+
announcement: Annonce
|
|
196
|
+
answers_with_costs: Activer les coûts sur les réponses aux propositions
|
|
197
|
+
automatic_hashtags: Hashtags ajoutés à toutes les propositions
|
|
198
|
+
comments_blocked: Bloquer la création de nouveaux commentaires
|
|
199
|
+
creation_enabled: Autoriser la création de nouvelles propositions
|
|
200
|
+
default_sort_order: Tri des propositions par défaut
|
|
201
|
+
default_sort_order_help: Par défaut, si les aides sont activés, les propositions seront affichées par ordre aléatoire, et si les aides sont bloqués, alors ils seront triés par l’aide le plus soutenu.
|
|
202
|
+
endorsements_blocked: Bloquer les soutiens
|
|
203
|
+
endorsements_enabled: Activer le module de soutiens
|
|
204
|
+
paragraph_answering_enabled: Autoriser la réponse officielle aux propositions
|
|
205
|
+
publish_answers_immediately: Publier immédiatement les réponses à la proposition
|
|
206
|
+
suggested_hashtags: Hashtags suggérés aux utilisateurs pour de nouvelles propositions
|
|
207
|
+
votes_blocked: Bloquer les votes
|
|
208
|
+
votes_enabled: Activer le module de vote simple
|
|
209
|
+
votes_hidden: Cacher les votes (si le module de votes est activé, le décompte des votes sera caché)
|
|
210
|
+
events:
|
|
211
|
+
paragraphs:
|
|
212
|
+
admin:
|
|
213
|
+
paragraph_note_created:
|
|
214
|
+
email_intro: Quelqu'un a laissé une note sur la proposition "%{resource_title}". Consultez-la sur <a href="%{admin_paragraph_info_url}">le panneau d'administration</a>
|
|
215
|
+
email_outro: Vous avez reçu cette notification car vous pouvez évaluer la proposition.
|
|
216
|
+
email_subject: Quelqu'un a laissé une note sur la proposition %{resource_title}.
|
|
217
|
+
notification_title: Quelqu'un a laissé une note sur la proposition <a href="%{resource_path}">%{resource_title}</a>. Consultez-la à <a href="%{admin_paragraph_info_path}">le panneau d'administration</a>
|
|
218
|
+
collaborative_draft_access_accepted:
|
|
219
|
+
email_intro: '%{requester_name} a été accepté en tant que contributeur du projet collaboratif <a href="%{resource_path}">%{resource_title}</a>.'
|
|
220
|
+
email_outro: Vous avez reçu cette notification car vous êtes collaborateur de <a href="%{resource_path}">%{resource_title}</a>.
|
|
221
|
+
email_subject: "%{requester_name} a été accepté pour accéder en tant que contributeur du %{resource_title}."
|
|
222
|
+
notification_title: <a href="%{requester_path}">%{requester_name} %{requester_nickname}</a> a été <strong>admis à l' accès en tant que contributeur</strong> du <a href="%{resource_path}">%{resource_title}</a> projet de collaboration.
|
|
223
|
+
collaborative_draft_access_rejected:
|
|
224
|
+
email_intro: '%{requester_name} a été refusé d''accès en tant que contributeur du projet collaboratif <a href="%{resource_path}">%{resource_title}</a>.'
|
|
225
|
+
email_outro: Vous avez reçu cette notification car vous êtes collaborateur de <a href="%{resource_path}">%{resource_title}</a>.
|
|
226
|
+
email_subject: "%{requester_name} a été rejetée pour accéder en tant que contributeur du %{resource_title} projet de collaboration."
|
|
227
|
+
notification_title: <a href="%{requester_path}">%{requester_name} %{requester_nickname}</a> a été <strong>rejeté pour accéder en tant que contributeur</strong> du <a href="%{resource_path}">%{resource_title}</a> projet de collaboration.
|
|
228
|
+
collaborative_draft_access_requested:
|
|
229
|
+
email_intro: '%{requester_name} demandé l''accès en tant que contributeur. Vous pouvez <strong>accepter ou rejeter la demande</strong> de la page de brouillon collaboratif <a href="%{resource_path}">%{resource_title}</a>.'
|
|
230
|
+
email_outro: Vous avez reçu cette notification car vous êtes collaborateur de <a href="%{resource_path}">%{resource_title}</a>.
|
|
231
|
+
email_subject: "%{requester_name} demandé un accès pour contribuer à %{resource_title}."
|
|
232
|
+
notification_title: <a href="%{requester_path}">%{requester_name} %{requester_nickname}</a> demandé un accès pour contribuer au projet de collaboration <a href="%{resource_path}">%{resource_title}</a> . S'il vous plaît <strong>accepter ou rejeter la demande</strong>.
|
|
233
|
+
collaborative_draft_access_requester_accepted:
|
|
234
|
+
email_intro: Vous avez été accepté pour accéder en tant que contributeur du projet collaboratif <a href="%{resource_path}">%{resource_title}</a>.
|
|
235
|
+
email_outro: Vous avez reçu cette notification car vous avez demandé à devenir collaborateur de <a href="%{resource_path}">%{resource_title}</a>.
|
|
236
|
+
email_subject: Vous avez été accepté comme contributeur de %{resource_title}.
|
|
237
|
+
notification_title: Vous avez été <strong>accepté d'accéder en tant que contributeur</strong> du <a href="%{resource_path}">%{resource_title}</a> projet de collaboration.
|
|
238
|
+
collaborative_draft_access_requester_rejected:
|
|
239
|
+
email_intro: Vous avez été refusé à accéder en tant que contributeur du projet collaboratif <a href="%{resource_path}">%{resource_title}</a>.
|
|
240
|
+
email_outro: Vous avez reçu cette notification car vous avez demandé à devenir collaborateur de <a href="%{resource_path}">%{resource_title}</a>.
|
|
241
|
+
email_subject: Vous avez été rejeté en tant que contributeur de %{resource_title}.
|
|
242
|
+
notification_title: Vous avez été <strong>rejeté pour accéder en tant que contributeur</strong> du <a href="%{resource_path}">%{resource_title}</a> projet de collaboration.
|
|
243
|
+
collaborative_draft_withdrawn:
|
|
244
|
+
email_intro: <a href="%{author_path}">%{author_name} %{author_nickname}</a> retiré le projet de collaboration <a href="%{resource_path}">%{resource_title}</a>.
|
|
245
|
+
email_outro: Vous avez reçu cette notification car vous êtes collaborateur de <a href="%{resource_path}">%{resource_title}</a>.
|
|
246
|
+
email_subject: "%{author_name} %{author_nickname} retiré le %{resource_title} projet de collaboration."
|
|
247
|
+
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> <strong>retiré</strong> le <a href="%{resource_path}">%{resource_title}</a> projet de collaboration.
|
|
248
|
+
creation_enabled:
|
|
249
|
+
email_intro: 'Vous pouvez maintenant créer de nouvelles propositions dans %{participatory_space_title} ! Commencez à participer sur cette page :'
|
|
250
|
+
email_outro: Vous avez reçu cette notification car vous suivez %{participatory_space_title}. Vous pouvez arrêter de recevoir des notifications en cliquant sur le lien précédent.
|
|
251
|
+
email_subject: Les propositions sont maintenant disponibles dans %{participatory_space_title}
|
|
252
|
+
notification_title: Vous pouvez maintenant créer de <a href="%{resource_path}">nouvelles propositions</a> dans <a href="%{participatory_space_url}">%{participatory_space_title}</a>
|
|
253
|
+
endorsing_enabled:
|
|
254
|
+
email_intro: 'Vous pouvez soutenir les différentes propositions dans %{participatory_space_title} ! Commencez à participer en vous rendant sur cette page :'
|
|
255
|
+
email_outro: Vous avez reçu cette notification car vous suivez %{participatory_space_title}. Vous pouvez arrêter de recevoir des notifications en cliquant sur ce dernier lien.
|
|
256
|
+
email_subject: Vous pouvez désormais soutenir des propositions dans %{participatory_space_title}
|
|
257
|
+
notification_title: Vous pouvez maintenant commencer à <a href="%{resource_path}">soutenir les propositions</a> dans <a href="%{participatory_space_url}">%{participatory_space_title}</a>
|
|
258
|
+
paragraph_accepted:
|
|
259
|
+
affected_user:
|
|
260
|
+
email_intro: 'Votre proposition "%{resource_title}" a été acceptée. Vous pouvez lire la réponse sur cette page:'
|
|
261
|
+
email_outro: Vous avez reçu cette notification parce que vous êtes l'auteur de "%{resource_title}".
|
|
262
|
+
email_subject: Votre proposition a été acceptée
|
|
263
|
+
notification_title: Votre proposition <a href="%{resource_path}">%{resource_title}</a> a été acceptée.
|
|
264
|
+
follower:
|
|
265
|
+
email_intro: 'La proposition "%{resource_title}" a été acceptée. Vous pouvez lire la réponse sur cette page :'
|
|
266
|
+
email_outro: Vous venez de recevoir cette notification parce que vous suivez "%{resource_title}". Vous pouvez à tout moment arrêter de la suivre en cliquant sur ce dernier lien.
|
|
267
|
+
email_subject: Une proposition que vous suivez a été acceptée
|
|
268
|
+
notification_title: La proposition <a href="%{resource_path}">%{resource_title}</a> a été acceptée.
|
|
269
|
+
paragraph_evaluating:
|
|
270
|
+
affected_user:
|
|
271
|
+
email_intro: 'Votre proposition "%{resource_title}" est en cours d''évaluation. Vous pouvez rechercher une réponse sur cette page:'
|
|
272
|
+
email_outro: Vous avez reçu cette notification parce que vous êtes l'auteur de "%{resource_title}".
|
|
273
|
+
email_subject: Votre proposition est en cours d'évaluation
|
|
274
|
+
notification_title: Votre proposition <a href="%{resource_path}">%{resource_title}</a> est en cours d'évaluation.
|
|
275
|
+
follower:
|
|
276
|
+
email_intro: 'La proposition "%{resource_title}" est en cours d''évaluation. Vous pouvez consulter cette page pour voir si une réponse a été formulée :'
|
|
277
|
+
email_outro: Vous venez de recevoir cette notification parce que vous suivez "%{resource_title}". Vous pouvez à tout moment arrêter de la suivre en cliquant sur ce dernier lien.
|
|
278
|
+
email_subject: Une proposition que vous suivez est en cours d'évaluation
|
|
279
|
+
notification_title: La proposition <a href="%{resource_path}">%{resource_title}</a> est en cours d'évaluation.
|
|
280
|
+
paragraph_mentioned:
|
|
281
|
+
email_intro: Votre proposition "%{mentioned_paragraph_title}" a été mentionnée <a href="%{resource_url}">dans cet espace</a> dans les commentaires.
|
|
282
|
+
email_outro: Vous avez reçu cette notification parce que vous êtes l'auteur de "%{resource_title}".
|
|
283
|
+
email_subject: Votre proposition "%{mentioned_paragraph_title}" a été mentionnée
|
|
284
|
+
notification_title: Votre proposition "%{mentioned_paragraph_title}" a été mentionnée <a href="%{resource_path}">dans cet espace</a>, dans les commentaires.
|
|
285
|
+
paragraph_published:
|
|
286
|
+
email_intro: '%{author_name} %{author_nickname}, que vous suivez, a publié une nouvelle proposition appelée "%{resource_title}". Découvrez-le et contribuez:'
|
|
287
|
+
email_outro: Vous avez reçu cette notification car vous suivez %{author_nickname}. Vous pouvez cesser de recevoir des notifications en suivant le lien précédent.
|
|
288
|
+
email_subject: Nouvelle proposition "%{resource_title}" par %{author_nickname}
|
|
289
|
+
notification_title: La proposition <a href="%{resource_path}">%{resource_title}</a> a été publiée par <a href="%{author_path}">%{author_name} %{author_nickname}</a>.
|
|
290
|
+
paragraph_published_for_space:
|
|
291
|
+
email_intro: La proposition "%{resource_title}" a été publiée dans "%{participatory_space_title}" que vous suivez.
|
|
292
|
+
email_outro: Vous avez reçu cette notification parce que vous suivez "%{participatory_space_title}". Vous pouvez cesser de le suivre en cliquant sur le lien précédent.
|
|
293
|
+
email_subject: Nouvelle proposition "%{resource_title}" ajoutée à %{participatory_space_title}
|
|
294
|
+
notification_title: La proposition <a href="%{resource_path}">%{resource_title}</a> a été publiée dans %{participatory_space_title}
|
|
295
|
+
paragraph_rejected:
|
|
296
|
+
affected_user:
|
|
297
|
+
email_intro: 'Votre proposition "%{resource_title}" a été rejetée. Vous pouvez lire la réponse sur cette page:'
|
|
298
|
+
email_outro: Vous avez reçu cette notification parce que vous êtes l'auteur de "%{resource_title}".
|
|
299
|
+
email_subject: Votre proposition a été rejetée
|
|
300
|
+
notification_title: Votre proposition <a href="%{resource_path}">%{resource_title}</a> a été rejetée.
|
|
301
|
+
follower:
|
|
302
|
+
email_intro: 'La proposition "%{resource_title}" n''a pas été retenue. Vous pouvez lire le commentaire ici :'
|
|
303
|
+
email_outro: Vous venez de recevoir cette notification parce que vous suivez "%{resource_title}". Vous pouvez à tout moment arrêter de la suivre en cliquant sur ce dernier lien.
|
|
304
|
+
email_subject: Une proposition que vous suivez n'a pas été retenue
|
|
305
|
+
notification_title: La proposition <a href="%{resource_path}">%{resource_title}</a> n'a pas été retenue.
|
|
306
|
+
paragraph_update_category:
|
|
307
|
+
email_intro: 'Un administrateur a mis à jour la catégorie de votre proposition "%{resource_title}". Vous pouvez y accéder ici :'
|
|
308
|
+
email_outro: Vous avez reçu cette notification parce que vous êtes l'auteur de la proposition.
|
|
309
|
+
email_subject: La catégorie de la proposition %{resource_title} a été mise à jour
|
|
310
|
+
notification_title: La catégorie de la proposition <a href="%{resource_path}">%{resource_title}</a> a été mise à jour par un administrateur.
|
|
311
|
+
paragraph_update_scope:
|
|
312
|
+
email_intro: 'Un administrateur a mis à jour la portée de votre proposition "%{resource_title}", regardez-la dans cette page :'
|
|
313
|
+
email_outro: Vous avez reçu cette notification parce que vous êtes l'auteur de la proposition.
|
|
314
|
+
email_subject: La portée de la proposition %{resource_title} a été mise à jour
|
|
315
|
+
notification_title: La portée de la proposition <a href="%{resource_path}">%{resource_title}</a> a été mise à jour par un administrateur.
|
|
316
|
+
voting_enabled:
|
|
317
|
+
email_intro: 'Vous pouvez soutenir les propositions de %{participatory_space_title} ! Participez ici :'
|
|
318
|
+
email_outro: Vous avez reçu cette notification car vous suivez %{participatory_space_title}. Vous pouvez arrêter de recevoir des notifications en suivant le lien précédent.
|
|
319
|
+
email_subject: Vous pouvez désormais voter les propositions dans %{participatory_space_title}
|
|
320
|
+
notification_title: Vous pouvez maintenant commencer <a href="%{resource_path}">à voter pour les propositions</a> de <a href="%{participatory_space_url}">%{participatory_space_title}</a>
|
|
321
|
+
gamification:
|
|
322
|
+
badges:
|
|
323
|
+
accepted_paragraphs:
|
|
324
|
+
conditions:
|
|
325
|
+
- Choisissez l'espace de participation qui vous intéresse avec la soumission des propositions activée
|
|
326
|
+
- Essayez de faire des propositions qui peuvent être réalisées. De cette façon, ils sont plus susceptibles d'être acceptés.
|
|
327
|
+
description: Ce badge est attribué lorsque vous participez activement à de nouvelles propositions et que celles-ci sont acceptées.
|
|
328
|
+
description_another: '%{score} des propositions de cet utilisateur ont été acceptées.'
|
|
329
|
+
description_own: '%{score} de vos propositions ont été acceptées.'
|
|
330
|
+
name: Propositions acceptées
|
|
331
|
+
next_level_in: Vous atteindrez le niveau suivant lorsque %{score} propositions supplémentaires seront acceptés !
|
|
332
|
+
unearned_another: Aucune proposition de cet auteur n'a encore été acceptée.
|
|
333
|
+
unearned_own: Aucune de vos propositions n'a encore été acceptée.
|
|
334
|
+
paragraph_votes:
|
|
335
|
+
conditions:
|
|
336
|
+
- Parcourir et passer du temps à lire les propositions d'autres personnes
|
|
337
|
+
- Soutenez les propositions que vous aimez ou trouvez intéressantes
|
|
338
|
+
description: Ce badge est attribué lorsque vous soutenez les propositions d'autres personnes.
|
|
339
|
+
description_another: Cet utilisateur a soutenu %{score} propositions.
|
|
340
|
+
description_own: Vous avez soutenu %{score} propositions.
|
|
341
|
+
name: Soutiens de proposition
|
|
342
|
+
next_level_in: Soutenir %{score} propositions supplémentaires pour atteindre le niveau supérieur!
|
|
343
|
+
unearned_another: Cet utilisateur n'a soutenu aucun proposition pour le moment.
|
|
344
|
+
unearned_own: Vous n'avez soutenu aucune proposition pour le moment.
|
|
345
|
+
paragraphs:
|
|
346
|
+
conditions:
|
|
347
|
+
- Choisissez l'espace de participation qui vous intéresse avec la soumission des propositions activée
|
|
348
|
+
- Créer une nouvelle proposition
|
|
349
|
+
description: Ce badge est attribué lorsque vous participez activement à de nouvelles propositions.
|
|
350
|
+
description_another: Cet utilisateur a créé %{score} propositions.
|
|
351
|
+
description_own: Vous avez créé %{score} propositions.
|
|
352
|
+
name: Propositions
|
|
353
|
+
next_level_in: Créez %{score} propositions supplémentaires pour atteindre le niveau suivant !
|
|
354
|
+
unearned_another: Cet utilisateur n'a pas encore créé de proposition.
|
|
355
|
+
unearned_own: Vous n'avez créé aucune proposition pour le moment.
|
|
356
|
+
metrics:
|
|
357
|
+
accepted_paragraphs:
|
|
358
|
+
description: Nombre de propositions acceptées par les utilisateurs
|
|
359
|
+
object: propositions
|
|
360
|
+
title: Propositions Acceptées
|
|
361
|
+
endorsements:
|
|
362
|
+
description: Nombre d'avenants générés dans les propositions
|
|
363
|
+
object: soutiens
|
|
364
|
+
title: Soutiens
|
|
365
|
+
paragraphs:
|
|
366
|
+
description: Nombre de propositions générées
|
|
367
|
+
object: propositions
|
|
368
|
+
title: Propositions
|
|
369
|
+
votes:
|
|
370
|
+
description: Nombre de votes générés dans les propositions par les utilisateurs
|
|
371
|
+
object: votes
|
|
372
|
+
title: Votes
|
|
373
|
+
participatory_spaces:
|
|
374
|
+
highlighted_paragraphs:
|
|
375
|
+
see_all: Tout voir (%{count})
|
|
376
|
+
paragraphs:
|
|
377
|
+
actions:
|
|
378
|
+
answer_paragraph: Répondre à la proposition
|
|
379
|
+
edit_paragraph: Modifier la proposition
|
|
380
|
+
import: Importer depuis une autre fonctionnalité
|
|
381
|
+
new: Nouvelle proposition
|
|
382
|
+
participatory_texts: Textes participatifs
|
|
383
|
+
show: Afficher la proposition
|
|
384
|
+
title: Actions
|
|
385
|
+
admin:
|
|
386
|
+
actions:
|
|
387
|
+
preview: Aperçu
|
|
388
|
+
exports:
|
|
389
|
+
paragraph_comments: Commentaires
|
|
390
|
+
paragraphs: Propositions
|
|
391
|
+
models:
|
|
392
|
+
paragraph:
|
|
393
|
+
name: Proposition
|
|
394
|
+
participatory_texts:
|
|
395
|
+
bulk-actions:
|
|
396
|
+
are_you_sure: Etes-vous sûr de supprimer le brouillon du texte participatif?
|
|
397
|
+
discard_all: Jeter tout
|
|
398
|
+
import_doc: Importer le document
|
|
399
|
+
discard:
|
|
400
|
+
success: Tous les brouillons de texte participatifs ont été rejetés.
|
|
401
|
+
import:
|
|
402
|
+
invalid: Le formulaire est invalide!
|
|
403
|
+
invalid_file: Le fichier contient une erreur, veuillez essayer de modifier le contenu du fichier et le transférer à nouveau.
|
|
404
|
+
success: Félicitations, les sections suivantes ont été analysées à partir du document importé, elles ont été converties en propositions. Maintenant, vous pouvez revoir et ajuster tout ce dont vous avez besoin avant de publier.
|
|
405
|
+
index:
|
|
406
|
+
info_1: Les sections suivantes ont été analysées à partir du document importé et ont été converties en propositions. Maintenant, vous pouvez revoir et ajuster tout ce dont vous avez besoin avant de publier.
|
|
407
|
+
publish_document: Publier le document
|
|
408
|
+
save_draft: Enregistrer le brouillon
|
|
409
|
+
title: APERÇU DU TEXTE PARTICIPATIF
|
|
410
|
+
new_import:
|
|
411
|
+
accepted_mime_types:
|
|
412
|
+
md: Markdown
|
|
413
|
+
odt: ODT
|
|
414
|
+
bottom_hint: "(Vous pourrez prévisualiser et trier les sections de document)"
|
|
415
|
+
document_legend: 'Ajoutez un document inférieur à 2 Mo. Chaque section jusqu’à 3 niveaux de titre sera convertie en propositions. Les formats supportés sont : %{valid_mime_types}'
|
|
416
|
+
title: AJOUTER UN DOCUMENT
|
|
417
|
+
upload_document: Télécharger le document
|
|
418
|
+
publish:
|
|
419
|
+
invalid: Impossible de publier des propositions
|
|
420
|
+
success: Toutes les propositions ont été publiées
|
|
421
|
+
sections:
|
|
422
|
+
article: "<em>article</em>"
|
|
423
|
+
section: "<em>Section:</em> <strong>%{title}</strong>"
|
|
424
|
+
sub-section: "<em>Sous-section:</em> %{title}"
|
|
425
|
+
update:
|
|
426
|
+
success: Texte participatif mis à jour avec succès.
|
|
427
|
+
paragraph_answers:
|
|
428
|
+
form:
|
|
429
|
+
accepted: Retenue
|
|
430
|
+
answer_paragraph: Répondre
|
|
431
|
+
evaluating: En cours d'évaluation
|
|
432
|
+
rejected: Non retenue
|
|
433
|
+
title: Réponse à la proposition %{title}
|
|
434
|
+
paragraph_notes:
|
|
435
|
+
create:
|
|
436
|
+
error: Un problème est survenu lors de la création de cette note de proposition
|
|
437
|
+
success: Note de proposition créée avec succès
|
|
438
|
+
form:
|
|
439
|
+
note: Remarque
|
|
440
|
+
submit: Soumettre
|
|
441
|
+
leave_your_note: Laisser une remarque
|
|
442
|
+
title: Notes privées
|
|
443
|
+
paragraphs:
|
|
444
|
+
answer:
|
|
445
|
+
invalid: Il y a eu un problème concernant la réponse à cette proposition
|
|
446
|
+
success: La réponse à la proposition a été publiée avec succès
|
|
447
|
+
create:
|
|
448
|
+
invalid: Il y a eu un problème lors de la création de cette proposition
|
|
449
|
+
success: Proposition créée avec succès
|
|
450
|
+
edit:
|
|
451
|
+
title: Mise à jour de la proposition
|
|
452
|
+
update: Mettre à jour
|
|
453
|
+
form:
|
|
454
|
+
attachment_legend: "(Facultatif) Ajouter une pièce jointe"
|
|
455
|
+
created_in_meeting: Cette proposition provient d'une réunion
|
|
456
|
+
delete_attachment: Supprimer la pièce jointe
|
|
457
|
+
select_a_category: Sélectionner une catégorie
|
|
458
|
+
select_a_meeting: Sélectionnez une réunion
|
|
459
|
+
index:
|
|
460
|
+
actions: Actions
|
|
461
|
+
assign_to_valuator: Assigner à un évaluateur
|
|
462
|
+
assign_to_valuator_button: Assigner
|
|
463
|
+
cancel: Annuler
|
|
464
|
+
change_category: Changer de catégorie
|
|
465
|
+
change_scope: Changer le périmètre
|
|
466
|
+
merge: Fusionner dans un nouveau
|
|
467
|
+
merge_button: Fusionner
|
|
468
|
+
publish: Publier
|
|
469
|
+
publish_answers: Publier les réponses
|
|
470
|
+
select_component: Sélectionnez un composant
|
|
471
|
+
selected: choisi
|
|
472
|
+
split: Fractionner la proposition
|
|
473
|
+
split_button: Scinder
|
|
474
|
+
title: Propositions
|
|
475
|
+
unassign_from_valuator: Retirer de l'évaluateur
|
|
476
|
+
unassign_from_valuator_button: Ne plus assigner
|
|
477
|
+
update: Mettre à jour
|
|
478
|
+
update_scope_button: Mise à jour du périmètre
|
|
479
|
+
new:
|
|
480
|
+
create: Créer
|
|
481
|
+
title: Créer une proposition
|
|
482
|
+
publish_answers:
|
|
483
|
+
number_of_paragraphs: Les réponses pour %{number} propositions seront publiées.
|
|
484
|
+
select_a_paragraph: Veuillez sélectionner une proposition
|
|
485
|
+
show:
|
|
486
|
+
amendments_count: Nombre d'amendements
|
|
487
|
+
assigned_valuators: Évaluateurs assignés
|
|
488
|
+
authors: Auteurs
|
|
489
|
+
body: Corps
|
|
490
|
+
comments_count: Nombre de commentaires
|
|
491
|
+
comments_negative_count: Contre
|
|
492
|
+
comments_neutral_count: Neutre
|
|
493
|
+
comments_positive_count: En faveur
|
|
494
|
+
created_at: Date de création
|
|
495
|
+
documents: Documents
|
|
496
|
+
endorsements_count: Nombre de soutiens
|
|
497
|
+
endorsements_ranking: Classement par soutiens
|
|
498
|
+
endorsers: Soutiens
|
|
499
|
+
link: Lien
|
|
500
|
+
n_more_endorsers:
|
|
501
|
+
one: et 1 de plus
|
|
502
|
+
other: et %{count} autres
|
|
503
|
+
photos: Photos
|
|
504
|
+
paragraphs: Propositions
|
|
505
|
+
ranking: "%{ranking} sur %{total}"
|
|
506
|
+
related_meetings: Réunions associées
|
|
507
|
+
remove_assignment: Supprimer l'affectation
|
|
508
|
+
remove_assignment_confirmation: Êtes-vous sûr de vouloir supprimer l'évaluateur de cette proposition ?
|
|
509
|
+
valuators: Évaluateurs
|
|
510
|
+
votes_count: Nombre de votes
|
|
511
|
+
votes_ranking: Classement par supports
|
|
512
|
+
update_category:
|
|
513
|
+
invalid: 'Ces propositions avaient déjà la catégorie %{subject_name} : %{paragraphs}.'
|
|
514
|
+
select_a_category: Veuillez sélectionner une catégorie
|
|
515
|
+
select_a_paragraph: Veuillez sélectionner une proposition
|
|
516
|
+
success: 'Les propositions ont été mises à jour avec succès vers la catégorie %{subject_name} : %{paragraphs}.'
|
|
517
|
+
update_scope:
|
|
518
|
+
invalid: 'Ces propositions avaient déjà la portée de %{subject_name} : %{paragraphs}.'
|
|
519
|
+
select_a_paragraph: Veuillez sélectionner une proposition
|
|
520
|
+
select_a_scope: Veuillez sélectionner un secteur
|
|
521
|
+
success: 'Les propositions ont été mises à jour avec succès vers le périmètre %{subject_name} : %{paragraphs}.'
|
|
522
|
+
paragraphs_imports:
|
|
523
|
+
create:
|
|
524
|
+
invalid: Un problème est survenu lors de l'importation des propositions
|
|
525
|
+
success: "%{number} propositions importées avec succès"
|
|
526
|
+
new:
|
|
527
|
+
create: Importer des propositions
|
|
528
|
+
no_components: Il n'y a pas d'autre fonctionnalité de proposition dans cet espace participatif dans laquelle importer les propositions.
|
|
529
|
+
select_component: Veuillez sélectionner une fonctionnalité
|
|
530
|
+
select_states: Vérifiez l'état des propositions à importer
|
|
531
|
+
title: Importer des propositions
|
|
532
|
+
paragraphs_merges:
|
|
533
|
+
create:
|
|
534
|
+
invalid: 'Une erreur est survenue lors de la fusion des propositions à cause de certaines d''entre elles:'
|
|
535
|
+
success: A fusionné avec succès les propositions dans un nouveau.
|
|
536
|
+
paragraphs_splits:
|
|
537
|
+
create:
|
|
538
|
+
invalid: 'Une erreur est survenue lors de la division des propositions sélectionnées à cause de certaines d''entre elles:'
|
|
539
|
+
success: Divisé avec succès les propositions en nouvelles.
|
|
540
|
+
valuation_assignments:
|
|
541
|
+
create:
|
|
542
|
+
invalid: Il y a eu une erreur en attribuant des propositions à un évaluateur
|
|
543
|
+
success: Propositions assignées à un évaluateur avec succès
|
|
544
|
+
delete:
|
|
545
|
+
invalid: Il y a eu une erreur lors de la désassignation des propositions d'un évaluateur
|
|
546
|
+
success: Evaluateur désaffecté aux propositions avec succès
|
|
547
|
+
admin_log:
|
|
548
|
+
paragraph:
|
|
549
|
+
answer: "%{user_name} a répondu à la proposition %{resource_name} sur l'espace %{space_name}"
|
|
550
|
+
create: "%{user_name} a créé la proposition %{resource_name} sur l'espace %{space_name} en tant que proposition officielle"
|
|
551
|
+
publish_answer: "%{user_name} a publié la réponse à la proposition %{resource_name} sur l'espace %{space_name}"
|
|
552
|
+
update: "%{user_name} mis à jour le %{resource_name} proposition officielle sur le %{space_name} espace"
|
|
553
|
+
paragraph_note:
|
|
554
|
+
create: "%{user_name} a publié une note privée sur la proposition %{resource_name} sur l'espace %{space_name}"
|
|
555
|
+
valuation_assignment:
|
|
556
|
+
create: "%{user_name} a assigné la proposition %{resource_name} à un évaluateur"
|
|
557
|
+
delete: "%{user_name} a désassigné un évaluateur de la proposition %{paragraph_title}"
|
|
558
|
+
answers:
|
|
559
|
+
accepted: Retenue
|
|
560
|
+
evaluating: En cours d'évaluation
|
|
561
|
+
not_answered: En attente de réponse
|
|
562
|
+
rejected: Non retenue
|
|
563
|
+
withdrawn: Retirée
|
|
564
|
+
application_helper:
|
|
565
|
+
filter_category_values:
|
|
566
|
+
all: Tout
|
|
567
|
+
filter_origin_values:
|
|
568
|
+
all: Tout
|
|
569
|
+
citizens: Propositions citoyennes
|
|
570
|
+
meetings: Des réunions
|
|
571
|
+
official: Propositions officielles
|
|
572
|
+
user_groups: Groupes d'utilisateurs
|
|
573
|
+
filter_scope_values:
|
|
574
|
+
all: Tout
|
|
575
|
+
filter_state_values:
|
|
576
|
+
accepted: Accepté
|
|
577
|
+
all: Tout
|
|
578
|
+
evaluating: En cours d'évaluation
|
|
579
|
+
not_answered: En attente de réponse
|
|
580
|
+
rejected: Rejeté
|
|
581
|
+
filter_type_values:
|
|
582
|
+
all: Tout
|
|
583
|
+
amendments: Amendements
|
|
584
|
+
paragraphs: Propositions
|
|
585
|
+
collaborative_drafts:
|
|
586
|
+
collaborative_draft:
|
|
587
|
+
publish:
|
|
588
|
+
error: Il y a eu des erreurs lors de la publication du brouillon collaboratif.
|
|
589
|
+
irreversible_action_modal:
|
|
590
|
+
body: Après avoir publié le projet en tant que proposition, le projet ne sera plus éditable. La proposition n'acceptera pas de nouveaux auteurs ou contributions.
|
|
591
|
+
cancel: Annuler
|
|
592
|
+
ok: Publier en tant que proposition
|
|
593
|
+
title: L'action suivante est irréversible
|
|
594
|
+
success: Brouillon collaboratif publié avec succès en tant que proposition.
|
|
595
|
+
view_collaborative_draft: Afficher le brouillon collaboratif
|
|
596
|
+
withdraw:
|
|
597
|
+
error: Il y a eu des erreurs en fermant le brouillon collaboratif.
|
|
598
|
+
irreversible_action_modal:
|
|
599
|
+
body: Après avoir fermé le brouillon, le brouillon ne sera plus éditable. Le projet n'acceptera pas de nouveaux auteurs ou contributions.
|
|
600
|
+
cancel: Annuler
|
|
601
|
+
ok: Retirer le projet collaboratif
|
|
602
|
+
title: L'action suivante est irréversible
|
|
603
|
+
success: Brouillon collaboratif retiré avec succès.
|
|
604
|
+
count:
|
|
605
|
+
drafts_count:
|
|
606
|
+
one: "%{count} brouillon collaboratif"
|
|
607
|
+
other: "%{count} brouillons collaboratifs"
|
|
608
|
+
create:
|
|
609
|
+
error: Il y a eu un problème lors de la création de ces brouillons collaboratifs
|
|
610
|
+
success: Brouillon collaboratif créé avec succès.
|
|
611
|
+
edit:
|
|
612
|
+
attachment_legend: "(Facultatif) Ajouter une pièce jointe"
|
|
613
|
+
back: Retour
|
|
614
|
+
select_a_category: Veuillez sélectionner une catégorie
|
|
615
|
+
send: Envoyer
|
|
616
|
+
title: Modifier un brouillon collaboratif
|
|
617
|
+
filters:
|
|
618
|
+
all: Tout
|
|
619
|
+
amendment: Amendements
|
|
620
|
+
category: Catégorie
|
|
621
|
+
open: Ouvrir
|
|
622
|
+
published: Publié
|
|
623
|
+
related_to: Lié à
|
|
624
|
+
scope: Portée
|
|
625
|
+
search: Chercher
|
|
626
|
+
state: État
|
|
627
|
+
withdrawn: Retiré
|
|
628
|
+
filters_small_view:
|
|
629
|
+
close_modal: Fermer la fenêtre
|
|
630
|
+
filter: Filtre
|
|
631
|
+
filter_by: Filtrer par
|
|
632
|
+
unfold: Se dérouler
|
|
633
|
+
new:
|
|
634
|
+
send: Continuer
|
|
635
|
+
new_collaborative_draft_button:
|
|
636
|
+
new_collaborative_draft: Nouveau brouillon collaboratif
|
|
637
|
+
orders:
|
|
638
|
+
label: 'Ordre des brouillons par:'
|
|
639
|
+
most_contributed: La plupart ont contribué
|
|
640
|
+
random: Aléatoire
|
|
641
|
+
recent: Récent
|
|
642
|
+
requests:
|
|
643
|
+
accepted_request:
|
|
644
|
+
error: Ne peut être accepté en tant que collaborateur, réessayez plus tard.
|
|
645
|
+
success: "@%{user} a été accepté comme collaborateur avec succès"
|
|
646
|
+
access_requested:
|
|
647
|
+
error: Votre demande n'a pas pu être complétée, réessayez plus tard.
|
|
648
|
+
success: Votre demande de collaboration a été envoyée avec succès
|
|
649
|
+
collaboration_requests:
|
|
650
|
+
accept_request: Accepté
|
|
651
|
+
reject_request: Rejeté
|
|
652
|
+
title: Demandes de collaboration
|
|
653
|
+
rejected_request:
|
|
654
|
+
error: Ne peut être rejeté en tant que collaborateur, réessayez plus tard.
|
|
655
|
+
success: "@%{user} a été rejeté en tant que collaborateur avec succès"
|
|
656
|
+
show:
|
|
657
|
+
back: Retour
|
|
658
|
+
edit: Modifier un brouillon collaboratif
|
|
659
|
+
final_paragraph: proposition finale
|
|
660
|
+
final_paragraph_help_text: Ce brouillon est terminé. Vous pouvez voir la proposition finale terminée
|
|
661
|
+
hidden_authors_count:
|
|
662
|
+
one: et %{count} personne de plus
|
|
663
|
+
other: et %{count} autres personnes
|
|
664
|
+
info-message: Ceci est un <strong>projet collaboratif</strong> pour une proposition. Cela signifie que vous pouvez aider leurs auteurs à façonner la proposition en utilisant la section commentaire ci-dessous ou l'améliorer directement en demandant l'accès pour la modifier. Une fois que les auteurs vous accordent l'accès, vous pourrez apporter des modifications à ce brouillon.
|
|
665
|
+
publish: Publier
|
|
666
|
+
publish_info: Publiez cette version du brouillon ou
|
|
667
|
+
published_paragraph: proposition publiée
|
|
668
|
+
request_access: Demande d'accès
|
|
669
|
+
requested_access: Accès demandé
|
|
670
|
+
version_history: voir l'historique des versions de cette proposition
|
|
671
|
+
withdraw: retirer le projet
|
|
672
|
+
states:
|
|
673
|
+
open: Ouvrir
|
|
674
|
+
published: Publié
|
|
675
|
+
withdrawn: Retiré
|
|
676
|
+
update:
|
|
677
|
+
error: Il y a eu des erreurs lors de l'enregistrement du brouillon collaboratif.
|
|
678
|
+
success: Brouillon collaboratif mis à jour avec succès.
|
|
679
|
+
wizard_aside:
|
|
680
|
+
back_from_collaborative_draft: Retour aux brouillons collaboratifs
|
|
681
|
+
info: Vous créez un <strong>projet collaboratif</strong>.
|
|
682
|
+
wizard_header:
|
|
683
|
+
title: Créez votre projet collaboratif
|
|
684
|
+
content_blocks:
|
|
685
|
+
highlighted_paragraphs:
|
|
686
|
+
paragraphs: Propositions
|
|
687
|
+
create:
|
|
688
|
+
error: Il y a eu des erreurs lors de la sauvegarde de la proposition.
|
|
689
|
+
success: Proposition créée avec succès. Enregistrée comme brouillon.
|
|
690
|
+
destroy_draft:
|
|
691
|
+
error: Des erreurs sont survenues lors de la suppression du brouillon de la proposition.
|
|
692
|
+
success: Le brouillon de la proposition a bien été supprimé.
|
|
693
|
+
last_activity:
|
|
694
|
+
new_paragraph_at_html: "<span>Nouvelle proposition à %{link}</span>"
|
|
695
|
+
paragraph_updated_at_html: "<span>Débat mis à jour à %{link}</span>"
|
|
696
|
+
models:
|
|
697
|
+
collaborative_draft:
|
|
698
|
+
fields:
|
|
699
|
+
authors: Auteurs
|
|
700
|
+
comments: commentaires
|
|
701
|
+
contributions: Contributions
|
|
702
|
+
paragraph:
|
|
703
|
+
fields:
|
|
704
|
+
category: Catégorie
|
|
705
|
+
comments: Commentaires
|
|
706
|
+
id: ID
|
|
707
|
+
notes: Remarques
|
|
708
|
+
official_paragraph: Proposition officielle
|
|
709
|
+
published_answer: Réponse publiée
|
|
710
|
+
published_at: Publiée à
|
|
711
|
+
scope: Périmètre d'application
|
|
712
|
+
state: État
|
|
713
|
+
title: Titre
|
|
714
|
+
valuator: Évaluateur
|
|
715
|
+
valuators: Évaluateurs
|
|
716
|
+
votes: Votes
|
|
717
|
+
new:
|
|
718
|
+
limit_reached: Vous ne pouvez pas créer de nouvelles propositions car vous avez dépassé le nombre autorisé.
|
|
719
|
+
participatory_text_paragraph:
|
|
720
|
+
alternative_title: Il n'y a pas de textes participatifs pour le moment
|
|
721
|
+
buttons:
|
|
722
|
+
amend: Modifier
|
|
723
|
+
comment: Commentaire
|
|
724
|
+
comments: commentaires
|
|
725
|
+
paragraph_votes:
|
|
726
|
+
create:
|
|
727
|
+
error: Des erreurs se sont produites lors du soutien de la proposition.
|
|
728
|
+
paragraphs:
|
|
729
|
+
compare:
|
|
730
|
+
continue: Continuer
|
|
731
|
+
no_similars_found: Bien joué ! Aucune proposition similaire n'a été trouvée
|
|
732
|
+
title: Propositions similaires
|
|
733
|
+
complete:
|
|
734
|
+
send: Envoyer
|
|
735
|
+
title: Complétez votre proposition
|
|
736
|
+
count:
|
|
737
|
+
paragraphs_count:
|
|
738
|
+
one: "%{count} proposition"
|
|
739
|
+
other: "%{count} propositions"
|
|
740
|
+
dynamic_map_instructions:
|
|
741
|
+
description: Les coordonnées seront mises à jour en cliquant sur le bouton 'Aperçu'. Cependant, l'adresse ne change pas.
|
|
742
|
+
instructions: Vous pouvez déplacer le point sur la carte.
|
|
743
|
+
edit:
|
|
744
|
+
add_documents: Documents
|
|
745
|
+
add_images: Fichier
|
|
746
|
+
attachment_legend: "(Facultatif) Ajouter une pièce jointe"
|
|
747
|
+
back: Retour
|
|
748
|
+
delete_document: Supprimer le document
|
|
749
|
+
delete_image: Supprimer l'image
|
|
750
|
+
gallery_legend: "(Facultatif) Ajouter une image à la carte de proposition"
|
|
751
|
+
select_a_category: Veuillez sélectionner une catégorie
|
|
752
|
+
send: Envoyer
|
|
753
|
+
title: Modifier la proposition
|
|
754
|
+
edit_draft:
|
|
755
|
+
discard: Supprimer ce brouillon
|
|
756
|
+
discard_confirmation: Êtes-vous sûr de vouloir supprimer le brouillon de votre proposition ?
|
|
757
|
+
send: Aperçu
|
|
758
|
+
title: Modifier le brouillon de votre proposition
|
|
759
|
+
filters:
|
|
760
|
+
activity: Mon activité
|
|
761
|
+
all: Tout
|
|
762
|
+
amendment_type: Type
|
|
763
|
+
category: Catégorie
|
|
764
|
+
my_paragraphs: Mes propositions
|
|
765
|
+
origin: Auteurs
|
|
766
|
+
related_to: Liées à
|
|
767
|
+
scope: Portée
|
|
768
|
+
search: Rechercher
|
|
769
|
+
state: État
|
|
770
|
+
type: Type
|
|
771
|
+
voted: Ne montrer que les propositions pour lesquelles j'ai voté
|
|
772
|
+
filters_small_view:
|
|
773
|
+
close_modal: Fermer la fenêtre de dialogue
|
|
774
|
+
filter: Filtrer
|
|
775
|
+
filter_by: Filtrer par
|
|
776
|
+
unfold: Voir plus
|
|
777
|
+
index:
|
|
778
|
+
click_here: Voir toutes les propositions
|
|
779
|
+
collaborative_drafts_list: Accéder aux brouillons collaboratifs
|
|
780
|
+
new_paragraph: Nouvelle proposition
|
|
781
|
+
see_all: Voir toutes les propositions
|
|
782
|
+
see_all_withdrawn: Voir toutes les propositions retirées
|
|
783
|
+
text_banner: Vous voyez actuellemnent la liste des propositions retirées par leurs auteurs. %{go_back_link}.
|
|
784
|
+
view_paragraph: Voir la proposition
|
|
785
|
+
linked_paragraphs:
|
|
786
|
+
paragraph_votes:
|
|
787
|
+
one: vote
|
|
788
|
+
other: votes
|
|
789
|
+
new:
|
|
790
|
+
send: Continuer
|
|
791
|
+
title: Créer une proposition
|
|
792
|
+
orders:
|
|
793
|
+
label: 'Classement des propositions par :'
|
|
794
|
+
most_commented: Les plus commentées
|
|
795
|
+
most_endorsed: Les plus soutenues
|
|
796
|
+
most_followed: Les plus suivies
|
|
797
|
+
most_voted: Les plus votées
|
|
798
|
+
random: Aléatoire
|
|
799
|
+
recent: Les plus récentes
|
|
800
|
+
with_more_authors: Avec le plus d'auteurs
|
|
801
|
+
participatory_texts:
|
|
802
|
+
index:
|
|
803
|
+
document_index: Index de document
|
|
804
|
+
view_index:
|
|
805
|
+
see_index: Voir index
|
|
806
|
+
placeholder:
|
|
807
|
+
address: 60 Boulevard Victor Hugo Saint-Jean-de-Luz, BP 64500
|
|
808
|
+
preview:
|
|
809
|
+
announcement_body: Votre proposition a été enregistrée en tant que brouillon. Elle doit être publiée pour qu'elle apparaisse sur le site.
|
|
810
|
+
announcement_title: Votre proposition n'a pas encore été publiée
|
|
811
|
+
modify: Modifier la proposition
|
|
812
|
+
paragraph_edit_before_minutes:
|
|
813
|
+
one: Vous avez la possibilité de modifier cette proposition dans la première minute suivant sa publication. Une fois ce laps de temps écoulé, vous ne pourrez plus la modifier.
|
|
814
|
+
other: Vous avez la possibilité de modifier cette proposition dans les %{count} minutes suivant sa publication. Une fois ce laps de temps écoulé, vous ne pourrez plus la modifier.
|
|
815
|
+
publish: Publier
|
|
816
|
+
title: Publier la proposition
|
|
817
|
+
paragraph:
|
|
818
|
+
creation_date: 'Création : %{date}'
|
|
819
|
+
view_paragraph: Voir la proposition
|
|
820
|
+
paragraphs:
|
|
821
|
+
empty: Il n'y a pas encore de proposition
|
|
822
|
+
empty_filters: Il n'y a aucune proposition avec ce critère
|
|
823
|
+
show:
|
|
824
|
+
answer: Répondre
|
|
825
|
+
back_to: Retour à
|
|
826
|
+
back_to_list: Retour à la liste
|
|
827
|
+
changes_at_title: Amendement de (%{title}"
|
|
828
|
+
comments: Commentaires
|
|
829
|
+
edit_paragraph: Modifier la proposition
|
|
830
|
+
endorsements_list: Liste des soutiens
|
|
831
|
+
estimated_cost: Coût estimé
|
|
832
|
+
hidden_endorsers_count:
|
|
833
|
+
one: et %{count} personne de plus
|
|
834
|
+
other: et %{count} autres personnes
|
|
835
|
+
link_to_collaborative_draft_help_text: Cette proposition est le résultat d'un projet collaboratif. Revoir l'histoire
|
|
836
|
+
link_to_collaborative_draft_text: Voir le brouillon collaboratif
|
|
837
|
+
link_to_promoted_emendation_help_text: Cette proposition est un amendement promu
|
|
838
|
+
link_to_promoted_emendation_text: Voir les demandes de modification rejetées.
|
|
839
|
+
link_to_paragraph_from_emendation_help_text: Ceci est une demande de modification rejetée
|
|
840
|
+
link_to_paragraph_from_emendation_text: Voir la proposition
|
|
841
|
+
paragraph_accepted_reason: 'Cette proposition a été retenue parce que :'
|
|
842
|
+
paragraph_in_evaluation_reason: Cette proposition est en cours d'évaluation
|
|
843
|
+
paragraph_rejected_reason: 'Cette proposition n''a pas été retenue parce que :'
|
|
844
|
+
read_less: Lire moins
|
|
845
|
+
read_more: En savoir plus
|
|
846
|
+
report: Signaler
|
|
847
|
+
withdraw_btn_hint: Si vous changez d'avis et tant que votre proposition n'a pas reçu de vote, commentaire et/ou soutien, vous pouvez toujours la retirer. Cette dernière ne sera pas supprimée mais elle apparaîtra dans la liste des propositions retirées.
|
|
848
|
+
withdraw_confirmation_html: Êtes-vous sûr de vouloir retirer cette proposition ?<br><br><strong>Cette action ne peut pas être annulée !</strong>
|
|
849
|
+
withdraw_paragraph: Retirer la proposition
|
|
850
|
+
tags:
|
|
851
|
+
changed_from: "(changé de <u>%{previous_name}</u> par un administrateur)"
|
|
852
|
+
update:
|
|
853
|
+
title: Mettre à jour la proposition
|
|
854
|
+
vote_button:
|
|
855
|
+
already_voted: Déjà votée
|
|
856
|
+
already_voted_hover: Retirer le vote
|
|
857
|
+
maximum_votes_reached: Nombre maximum de votes atteint
|
|
858
|
+
no_votes_remaining: Aucun vote restant
|
|
859
|
+
vote: Voter
|
|
860
|
+
votes_blocked: Votes désactivés
|
|
861
|
+
votes_count:
|
|
862
|
+
count:
|
|
863
|
+
one: VOTE
|
|
864
|
+
other: VOTES
|
|
865
|
+
most_popular_paragraph: Proposition la plus populaire
|
|
866
|
+
need_more_votes: Besoin de plus de votes
|
|
867
|
+
voting_rules:
|
|
868
|
+
can_accumulate_supports_beyond_threshold:
|
|
869
|
+
description: Chaque proposition doit rassembler plus de %{limit} votes
|
|
870
|
+
minimum_votes_per_user:
|
|
871
|
+
description: Vous devez répartir un minimum de %{votes} voix entre différentes propositions.
|
|
872
|
+
given_enough_votes: Vous avez donné suffisamment de soutien.
|
|
873
|
+
supports_remaining: Vous devez voter %{remaining_votes} proposition supplémentaire pour que vos votes soient pris en compte.
|
|
874
|
+
paragraph_limit:
|
|
875
|
+
description: Vous pouvez créer jusqu'à %{limit} propositions.
|
|
876
|
+
threshold_per_paragraph:
|
|
877
|
+
description: Pour être acceptées, les propositions doivent atteindre %{limit} votes
|
|
878
|
+
title: 'Le vote est soumis aux règles suivantes :'
|
|
879
|
+
vote_limit:
|
|
880
|
+
description: Vous pouvez voter pour %{limit} propositions au maximum.
|
|
881
|
+
left: Restant
|
|
882
|
+
votes: Votes
|
|
883
|
+
wizard_aside:
|
|
884
|
+
back: Retour
|
|
885
|
+
back_from_step_1: Retour aux propositions
|
|
886
|
+
back_from_step_2: Retour aux propositions
|
|
887
|
+
back_from_step_3: Retour à la comparaison des propositions
|
|
888
|
+
back_from_step_4: Retour à l'édition du brouillon
|
|
889
|
+
info: Vous créez une <strong>proposition</strong>.
|
|
890
|
+
wizard_steps:
|
|
891
|
+
current_step: Étape actuelle
|
|
892
|
+
see_steps: voir les étapes
|
|
893
|
+
step_1: Créer une proposition
|
|
894
|
+
step_2: Comparer aux autres propositions
|
|
895
|
+
step_3: Compléter votre proposition
|
|
896
|
+
step_4: Publier votre proposition
|
|
897
|
+
step_of: Étape %{current_step_num} sur %{total_steps}
|
|
898
|
+
title: Étapes de création de proposition
|
|
899
|
+
paragraphs_picker:
|
|
900
|
+
choose_paragraphs: Choisir les propositions
|
|
901
|
+
close: Fermer
|
|
902
|
+
more_paragraphs: Il y a %{number} propositions supplémentaires. Affinez votre recherche pour les localiser.
|
|
903
|
+
no_paragraphs: Aucune proposition ne correspond à vos critères de recherche ou il n'y a aucune proposition.
|
|
904
|
+
publish:
|
|
905
|
+
error: Il y a eu des erreurs lors de la publication de la proposition.
|
|
906
|
+
success: Proposition publiée avec succès.
|
|
907
|
+
publish_answers:
|
|
908
|
+
success: Réponses aux propositions publiées avec succès.
|
|
909
|
+
update:
|
|
910
|
+
error: Des erreurs se sont produites lors de l'enregistrement de la proposition.
|
|
911
|
+
success: Proposition mise à jour avec succès.
|
|
912
|
+
update_draft:
|
|
913
|
+
error: Des erreurs sont survenues lors de l'enregistrement du brouillon de la proposition.
|
|
914
|
+
success: Le brouillon de proposition a été mis à jour.
|
|
915
|
+
versions:
|
|
916
|
+
collaborative_drafts:
|
|
917
|
+
back_to_resource: Revenir au brouillon collaboratif
|
|
918
|
+
index:
|
|
919
|
+
title: Versions
|
|
920
|
+
paragraphs:
|
|
921
|
+
back_to_resource: Retourner à la proposition
|
|
922
|
+
withdraw:
|
|
923
|
+
errors:
|
|
924
|
+
has_supports: Cette proposition ne peut pas être retirée car elle dispose déjà de supports.
|
|
925
|
+
resource_links:
|
|
926
|
+
copied_from_component:
|
|
927
|
+
paragraph_paragraph: Propositions associées
|
|
928
|
+
included_projects:
|
|
929
|
+
project_result: 'Réalisations apparaissant dans ce projet :'
|
|
930
|
+
included_paragraphs:
|
|
931
|
+
paragraph_project: 'Proposition figurant dans ces projets :'
|
|
932
|
+
paragraph_result: 'Proposition figurant dans ces réalisations :'
|
|
933
|
+
statistics:
|
|
934
|
+
paragraphs_accepted: Propositions acceptées
|
|
935
|
+
paragraphs_count: Propositions
|
|
936
|
+
supports_count: Votes
|