decidim-enhanced_textwork 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- 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,857 @@
|
|
1
|
+
zh-CN:
|
2
|
+
activemodel:
|
3
|
+
attributes:
|
4
|
+
collaborative_draft:
|
5
|
+
address: 地址
|
6
|
+
body: 正文内容
|
7
|
+
category_id: 类别
|
8
|
+
decidim_scope_id: 范围
|
9
|
+
has_address: 有地址
|
10
|
+
scope_id: 范围
|
11
|
+
state: 状态
|
12
|
+
title: 标题
|
13
|
+
user_group_id: 创建协作草稿为
|
14
|
+
paragraph:
|
15
|
+
address: 地址
|
16
|
+
answer: 答案
|
17
|
+
answered_at: 回答于
|
18
|
+
automatic_hashtags: 自动添加标签
|
19
|
+
body: 正文内容
|
20
|
+
category_id: 类别
|
21
|
+
decidim_scope_id: 范围
|
22
|
+
has_address: 有地址
|
23
|
+
scope_id: 范围
|
24
|
+
state: 状态
|
25
|
+
suggested_hashtags: 建议的哈希标签
|
26
|
+
title: 标题
|
27
|
+
user_group_id: 创建提案为
|
28
|
+
paragraph_answer:
|
29
|
+
answer: 答案
|
30
|
+
paragraphs_copy:
|
31
|
+
copy_paragraphs: 我的理解是,这将从选定的组件导入所有建议到当前的组件,这个操作不能被撤销。
|
32
|
+
origin_component_id: 复制提议的构成部分
|
33
|
+
paragraphs_import:
|
34
|
+
import_paragraphs: 导入提议
|
35
|
+
keep_authors: 保留原始作者
|
36
|
+
valuation_assignment:
|
37
|
+
admin_log:
|
38
|
+
valuator_role_id: 值名称
|
39
|
+
errors:
|
40
|
+
models:
|
41
|
+
participatory_text:
|
42
|
+
attributes:
|
43
|
+
document:
|
44
|
+
invalid_document_type: '无效的文档类型。接受的格式为: %{valid_mime_types}'
|
45
|
+
paragraph:
|
46
|
+
attributes:
|
47
|
+
add_documents:
|
48
|
+
needs_to_be_reattached: 需要重新连接
|
49
|
+
add_photos:
|
50
|
+
needs_to_be_reattached: 需要重新连接
|
51
|
+
body:
|
52
|
+
cant_be_equal_to_template: 不能等于模板
|
53
|
+
identical: 和标题不能相同
|
54
|
+
title:
|
55
|
+
identical: 和正文不能相同
|
56
|
+
models:
|
57
|
+
decidim/enhanced_textwork/accepted_paragraph_event: 提议已被接受
|
58
|
+
decidim/enhanced_textwork/admin/update_paragraph_category_event: 建议类别已更改
|
59
|
+
decidim/enhanced_textwork/admin/update_paragraph_scope_event: 建议范围已更改
|
60
|
+
decidim/enhanced_textwork/creation_enabled_event: 建议创建已启用
|
61
|
+
decidim/enhanced_textwork/endorsing_enabled_event: 提案已启用
|
62
|
+
decidim/enhanced_textwork/evaluating_paragraph_event: 目前正在对提案进行评价
|
63
|
+
decidim/enhanced_textwork/paragraph_mentioned_event: 提及的建议
|
64
|
+
decidim/enhanced_textwork/publish_paragraph_event: 建议已发布
|
65
|
+
decidim/enhanced_textwork/rejected_paragraph_event: 被拒绝的提案
|
66
|
+
decidim/enhanced_textwork/voting_enabled_event: 提案投票已启用
|
67
|
+
activerecord:
|
68
|
+
models:
|
69
|
+
decidim/enhanced_textwork/collaborative_draft:
|
70
|
+
other: 合作草案
|
71
|
+
decidim/enhanced_textwork/paragraph:
|
72
|
+
other: 建议
|
73
|
+
decidim/enhanced_textwork/paragraph_note:
|
74
|
+
other: 注
|
75
|
+
decidim/enhanced_textwork/paragraph_vote:
|
76
|
+
other: 支持
|
77
|
+
decidim:
|
78
|
+
admin:
|
79
|
+
filters:
|
80
|
+
paragraphs:
|
81
|
+
category_id_eq:
|
82
|
+
label: 类别
|
83
|
+
is_emendation_true:
|
84
|
+
label: 类型
|
85
|
+
values:
|
86
|
+
'false': 建议
|
87
|
+
'true': 修 正 案
|
88
|
+
scope_id_eq:
|
89
|
+
label: 范围
|
90
|
+
state_eq:
|
91
|
+
label: 状态
|
92
|
+
values:
|
93
|
+
accepted: 已接受
|
94
|
+
evaluating: 评价
|
95
|
+
published: 已发布
|
96
|
+
rejected: 已拒绝
|
97
|
+
validating: 技术验证
|
98
|
+
withdrawn: 取出
|
99
|
+
state_null:
|
100
|
+
label: 状态
|
101
|
+
values:
|
102
|
+
'true': 未回答
|
103
|
+
valuator_role_ids_has:
|
104
|
+
label: 分配给值者
|
105
|
+
search_placeholder:
|
106
|
+
id_string_or_title_cont: 通过ID或标题搜索 %{collection}。
|
107
|
+
components:
|
108
|
+
paragraphs:
|
109
|
+
actions:
|
110
|
+
amend: 修改:
|
111
|
+
create: 创建
|
112
|
+
endorse: 批准
|
113
|
+
vote: 支持
|
114
|
+
withdraw: 取款
|
115
|
+
name: 建议
|
116
|
+
settings:
|
117
|
+
global:
|
118
|
+
amendments_enabled: 修改已启用
|
119
|
+
amendments_enabled_help: 如果激活,配置每一步的修正功能。
|
120
|
+
amendments_wizard_help_text: 修正向导帮助文本
|
121
|
+
announcement: 通 知
|
122
|
+
attachments_allowed: 允许附件
|
123
|
+
can_accumulate_supports_beyond_threshold: 可以积累超过阈值的支持
|
124
|
+
collaborative_drafts_enabled: 协作草稿已启用
|
125
|
+
comments_enabled: 评论已启用
|
126
|
+
comments_max_length: 评论最大长度 (默认值留0)
|
127
|
+
geocoding_enabled: 地理编码已启用
|
128
|
+
minimum_votes_per_user: 每个用户的最低支持
|
129
|
+
new_paragraph_body_template: 新的提案正文模板
|
130
|
+
new_paragraph_body_template_help: 您可以定义新建议将包含的预填文本
|
131
|
+
new_paragraph_help_text: 新建议帮助文本
|
132
|
+
official_paragraphs_enabled: 正式建议已启用
|
133
|
+
participatory_texts_enabled: 参与性案文已启用
|
134
|
+
participatory_texts_enabled_readonly: 如果有现存的提议,无法与此设置进行交互。 请, 如果您想要启用此功能,或在"参与文本"菜单中放弃所有导入的提议,则创建一个新的 "建议组件"。
|
135
|
+
paragraph_answering_enabled: 建议答案已启用
|
136
|
+
paragraph_edit_before_minutes: 建议可以由作者在这么多分钟过去之前编辑
|
137
|
+
paragraph_length: 最大建议体长度
|
138
|
+
paragraph_limit: 每个参与者的建议限制
|
139
|
+
paragraph_wizard_step_1_help_text: 建议向导“创建”步骤帮助文本
|
140
|
+
paragraph_wizard_step_2_help_text: 建议向导“Compare”步骤帮助文本
|
141
|
+
paragraph_wizard_step_3_help_text: 建议向导“完成”步骤帮助文本
|
142
|
+
paragraph_wizard_step_4_help_text: 建议向导"发布"步骤帮助文本
|
143
|
+
resources_permissions_enabled: 每个提案都可以设置动作权限
|
144
|
+
scope_id: 范围
|
145
|
+
scopes_enabled: 范围已启用
|
146
|
+
threshold_per_paragraph: 每个建议的阈值
|
147
|
+
vote_limit: 每位参与者的支持限制
|
148
|
+
step:
|
149
|
+
amendment_creation_enabled: 修改创建已启用
|
150
|
+
amendment_creation_enabled_help: 参加者可以修改提案。
|
151
|
+
amendment_promotion_enabled: 已启用修正促销功能
|
152
|
+
amendment_promotion_enabled_help: 奖赏作者将能够提倡被否决的修正案。
|
153
|
+
amendment_reaction_enabled: 修正反应已启用
|
154
|
+
amendment_reaction_enabled_help: 建议书的作者将能够接受或拒绝参加者的建议。
|
155
|
+
amendments_visibility: 修改可见性
|
156
|
+
amendments_visibility_choices:
|
157
|
+
all: 所有修改都可见
|
158
|
+
participants: 修改仅对作者可见
|
159
|
+
amendments_visibility_help: 如果选择“修改仅对作者可见”,参与者必须登录才能看到所做的修改。
|
160
|
+
announcement: 通 知
|
161
|
+
answers_with_costs: 启用建议答案的成本
|
162
|
+
automatic_hashtags: 添加到所有建议的标签
|
163
|
+
comments_blocked: 评论已阻止
|
164
|
+
creation_enabled: 建议创建已启用
|
165
|
+
endorsements_blocked: 已阻止授权
|
166
|
+
endorsements_enabled: 授权已启用
|
167
|
+
paragraph_answering_enabled: 建议答案已启用
|
168
|
+
publish_answers_immediately: 立即发布提案答案
|
169
|
+
suggested_hashtags: 推荐给参与者的新建议标签
|
170
|
+
votes_blocked: 支持被阻止
|
171
|
+
votes_enabled: 支持已启用
|
172
|
+
votes_hidden: 支持隐藏 (如果支持已启用,选中将隐藏支持次数)
|
173
|
+
events:
|
174
|
+
paragraphs:
|
175
|
+
admin:
|
176
|
+
paragraph_note_created:
|
177
|
+
email_intro: 有人在提议 "%{resource_title}"上留下了一条笔记。请在管理面板 <a href="%{admin_paragraph_info_url}">上查看</a>
|
178
|
+
email_outro: 您收到此通知是因为您可以评估提案。
|
179
|
+
email_subject: 有人在建议 %{resource_title} 留下了一条笔记。
|
180
|
+
notification_title: 有人在提议 <a href="%{resource_path}">%{resource_title}</a>留下了一条笔记。请在 <a href="%{admin_paragraph_info_path}">管理面板</a>
|
181
|
+
collaborative_draft_access_accepted:
|
182
|
+
email_intro: '%{requester_name} 已被接受作为贡献者访问 <a href="%{resource_path}">%{resource_title}</a> 协作草案。'
|
183
|
+
email_outro: 您收到此通知是因为您是 <a href="%{resource_path}">%{resource_title}的合作者</a>
|
184
|
+
email_subject: "%{requester_name} 已被接受作为贡献者访问 %{resource_title}。"
|
185
|
+
collaborative_draft_access_rejected:
|
186
|
+
email_intro: '%{requester_name} 已被拒绝以贡献者身份访问 <a href="%{resource_path}">%{resource_title}</a> 协作草稿。'
|
187
|
+
email_outro: 您收到此通知是因为您是 <a href="%{resource_path}">%{resource_title}的合作者</a>
|
188
|
+
email_subject: "%{requester_name} 在 %{resource_title} 协作草稿中的贡献者被拒绝访问。"
|
189
|
+
notification_title: <a href="%{requester_path}">%{requester_name} %{requester_nickname}</a> 已被 <strong>拒绝以贡献者身份访问</strong> <a href="%{resource_path}">%{resource_title}</a> 合作草稿。
|
190
|
+
collaborative_draft_access_requested:
|
191
|
+
email_outro: 您收到此通知是因为您是 <a href="%{resource_path}">%{resource_title}的合作者</a>
|
192
|
+
email_subject: "%{requester_name} 请求访问权限为 %{resource_title} 捐款。"
|
193
|
+
notification_title: <a href="%{requester_path}">%{requester_name} %{requester_nickname}</a> 请求访问权限以便为 <a href="%{resource_path}">%{resource_title}</a> 协作草稿。请 <strong>接受或拒绝请求</strong>
|
194
|
+
collaborative_draft_access_requester_accepted:
|
195
|
+
email_intro: 您已被接受作为 <a href="%{resource_path}">%{resource_title}</a> 协作草稿的贡献者访问权限。
|
196
|
+
email_outro: 您收到此通知是因为您请求成为 <a href="%{resource_path}">%{resource_title}</a> 的合作者。
|
197
|
+
email_subject: 您已被接受为 %{resource_title} 的贡献者。
|
198
|
+
collaborative_draft_access_requester_rejected:
|
199
|
+
email_intro: 您已被拒绝以贡献者身份访问 <a href="%{resource_path}">%{resource_title}</a> 协作草稿。
|
200
|
+
email_outro: 您收到此通知是因为您请求成为 <a href="%{resource_path}">%{resource_title}</a> 的合作者。
|
201
|
+
email_subject: 您已被拒绝为 %{resource_title} 的贡献者。
|
202
|
+
notification_title: 您在 <a href="%{resource_path}">%{resource_title}</a> 协作草稿中的 <strong>被拒绝作为贡献者</strong> 访问。
|
203
|
+
collaborative_draft_withdrawn:
|
204
|
+
email_intro: <a href="%{author_path}">%{author_name} %{author_nickname}</a> 撤回了 <a href="%{resource_path}">%{resource_title}</a> 协作草稿。
|
205
|
+
email_outro: 您收到此通知是因为您是 <a href="%{resource_path}">%{resource_title}的合作者</a>
|
206
|
+
email_subject: "%{author_name} %{author_nickname} 撤销了 %{resource_title} 协作草稿。"
|
207
|
+
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> <strong>撤回</strong> <a href="%{resource_path}">%{resource_title}</a> 协作草稿。
|
208
|
+
creation_enabled:
|
209
|
+
email_intro: '您现在可以在 %{participatory_space_title}中创建新的建议 !开始参与这个页面:'
|
210
|
+
email_outro: 您收到此通知是因为您正在关注 %{participatory_space_title}。您可以停止收到跟随上一个链接的通知。
|
211
|
+
email_subject: 建议已在 %{participatory_space_title} 中可用
|
212
|
+
endorsing_enabled:
|
213
|
+
email_intro: '您可以在 %{participatory_space_title}中批准提案!开始参与此页面:'
|
214
|
+
email_outro: 您收到此通知是因为您正在关注 %{participatory_space_title}。您可以停止收到跟随上一个链接的通知。
|
215
|
+
email_subject: '%{participatory_space_title} 的建议已经开始'
|
216
|
+
paragraph_accepted:
|
217
|
+
affected_user:
|
218
|
+
email_intro: '您的建议 "%{resource_title}" 已被接受。您可以在此页面中阅读答案:'
|
219
|
+
email_outro: 您收到此通知是因为您是"%{resource_title} "的作者。
|
220
|
+
email_subject: 您的建议已被接受
|
221
|
+
notification_title: 您的提议 <a href="%{resource_path}">%{resource_title}</a> 已被接受。
|
222
|
+
follower:
|
223
|
+
email_intro: '提议 "%{resource_title}" 已被接受。您可以在此页面中阅读答案:'
|
224
|
+
email_outro: 您收到此通知是因为您正在关注 "%{resource_title}"。您可以从上一个链接取消关注它。
|
225
|
+
email_subject: 您关注的建议已被接受
|
226
|
+
notification_title: <a href="%{resource_path}">%{resource_title}</a> 提议已被接受。
|
227
|
+
paragraph_evaluating:
|
228
|
+
affected_user:
|
229
|
+
email_intro: '您的建议 "%{resource_title}" 目前正在评估中。您可以检查此页面的答案:'
|
230
|
+
email_outro: 您收到此通知是因为您是"%{resource_title} "的作者。
|
231
|
+
email_subject: 您的建议正在评估中
|
232
|
+
notification_title: 您的提议 <a href="%{resource_path}">%{resource_title}</a> 正在评估中。
|
233
|
+
follower:
|
234
|
+
email_intro: '提议 "%{resource_title}" 目前正在评估。您可以在这个页面检查答案:'
|
235
|
+
email_outro: 您收到此通知是因为您正在关注 "%{resource_title}"。您可以从上一个链接取消关注它。
|
236
|
+
email_subject: 正在评估您关注的建议
|
237
|
+
notification_title: <a href="%{resource_path}">%{resource_title}</a> 提议正在评估中。
|
238
|
+
paragraph_mentioned:
|
239
|
+
email_outro: 您收到此通知是因为您是"%{resource_title} "的作者。
|
240
|
+
email_subject: 您的提议 "%{mentioned_paragraph_title}" 已被提到了
|
241
|
+
paragraph_published:
|
242
|
+
email_intro: '%{author_name} %{author_nickname}, 你关注的人已经发布了一个叫做"%{resource_title}"的新建议。查看它并做出贡献:'
|
243
|
+
email_outro: 您收到此通知是因为您正在关注 %{author_nickname}。您可以停止收到跟随上一个链接的通知。
|
244
|
+
email_subject: '%{resource_title}的 %{author_nickname} 新提案'
|
245
|
+
notification_title: <a href="%{resource_path}">%{resource_title}</a> 提议由 <a href="%{author_path}">%{author_name} %{author_nickname}</a> 发布。
|
246
|
+
paragraph_published_for_space:
|
247
|
+
email_intro: 提议 "%{resource_title}" 已被添加到"%{participatory_space_title}",您正在关注它。
|
248
|
+
email_outro: 您收到此通知是因为您正在关注 "%{participatory_space_title}"。您可以停止收到跟随上一个链接的通知。
|
249
|
+
email_subject: 新提议 "%{resource_title}" 已添加到 %{participatory_space_title}
|
250
|
+
notification_title: 提议 <a href="%{resource_path}">%{resource_title}</a> 已被添加到 %{participatory_space_title}
|
251
|
+
paragraph_rejected:
|
252
|
+
affected_user:
|
253
|
+
email_intro: '您的提议 "%{resource_title}" 已被拒绝。您可以在此页中读取答案:'
|
254
|
+
email_outro: 您收到此通知是因为您是"%{resource_title} "的作者。
|
255
|
+
email_subject: 您的建议已被拒绝
|
256
|
+
notification_title: 您的提议 <a href="%{resource_path}">%{resource_title}</a> 已被拒绝
|
257
|
+
follower:
|
258
|
+
email_intro: '提议 "%{resource_title}" 已被拒绝。您可以在此页中读取答案:'
|
259
|
+
email_outro: 您收到此通知是因为您正在关注 "%{resource_title}"。您可以从上一个链接取消关注它。
|
260
|
+
email_subject: 您关注的建议已被拒绝
|
261
|
+
notification_title: <a href="%{resource_path}">%{resource_title}</a> 提议已被拒绝。
|
262
|
+
paragraph_update_category:
|
263
|
+
email_intro: '管理员更新了您的提议 "%{resource_title}"的类别,在此页面查看:'
|
264
|
+
email_outro: 您收到此通知是因为您是提案的作者。
|
265
|
+
email_subject: '%{resource_title} 建议类别已更新'
|
266
|
+
notification_title: <a href="%{resource_path}">%{resource_title}</a> 提议类别已被管理员更新。
|
267
|
+
paragraph_update_scope:
|
268
|
+
email_intro: '管理员更新了您的提议 "%{resource_title}"的范围,在此页面查看:'
|
269
|
+
email_outro: 您收到此通知是因为您是提案的作者。
|
270
|
+
email_subject: '%{resource_title} 建议范围已更新'
|
271
|
+
notification_title: <a href="%{resource_path}">%{resource_title}</a> 提议范围已被管理员更新。
|
272
|
+
voting_enabled:
|
273
|
+
email_intro: '您可以在 %{participatory_space_title}中支持建议!开始参与此页面:'
|
274
|
+
email_outro: 您收到此通知是因为您正在关注 %{participatory_space_title}。您可以停止收到跟随上一个链接的通知。
|
275
|
+
email_subject: '%{participatory_space_title} 的建议支持已经开始'
|
276
|
+
gamification:
|
277
|
+
badges:
|
278
|
+
accepted_paragraphs:
|
279
|
+
conditions:
|
280
|
+
- 选择您感兴趣的提交建议的参与空间
|
281
|
+
- 尝试提出可以执行的建议。这种方式更有可能被接受。
|
282
|
+
description: 当您积极参加新的建议并接受这些建议时,将颁发这个徽章。
|
283
|
+
description_another: 此参与者有 %{score} 个已被接受的建议。
|
284
|
+
description_own: 您获得 %{score} 条建议被接受。
|
285
|
+
name: 已接受的提议
|
286
|
+
next_level_in: 获得更多 %{score} 个建议以达到下一级!
|
287
|
+
unearned_another: 该参与方尚未收到任何可接受的提议。
|
288
|
+
unearned_own: 您尚未接受任何建议。
|
289
|
+
paragraph_votes:
|
290
|
+
conditions:
|
291
|
+
- 浏览并花一些时间阅读其他人的建议
|
292
|
+
- 支持您想要的建议或有趣的
|
293
|
+
description: 当你支持其他人的建议时,这个徽章将被授予。
|
294
|
+
description_another: 此参与者已经支持 %{score} 提案。
|
295
|
+
description_own: 您已经对 %{score} 的建议给予了支持。
|
296
|
+
name: 建议支持
|
297
|
+
next_level_in: 支持更多 %{score} 个建议以达到下一级!
|
298
|
+
unearned_another: 此参与者尚未支持任何建议。
|
299
|
+
unearned_own: 您还没有对任何建议给予支持。
|
300
|
+
paragraphs:
|
301
|
+
conditions:
|
302
|
+
- 选择您感兴趣的提交建议的参与空间
|
303
|
+
- 创建一个新提案
|
304
|
+
description: 当您积极参与新的建议时,将颁发这个徽章。
|
305
|
+
description_another: 此参与者已创建了 %{score} 个建议。
|
306
|
+
description_own: 您已创建了 %{score} 个建议。
|
307
|
+
name: 建议
|
308
|
+
next_level_in: 再创建 %{score} 个建议以达到下一关!
|
309
|
+
unearned_another: 此参与者尚未创建任何提案。
|
310
|
+
unearned_own: 您尚未创建任何提案。
|
311
|
+
metrics:
|
312
|
+
accepted_paragraphs:
|
313
|
+
description: 接受的建议数
|
314
|
+
object: 提议
|
315
|
+
title: 已接受的提议
|
316
|
+
endorsements:
|
317
|
+
description: 建议认可次数
|
318
|
+
object: 核准
|
319
|
+
title: 授权
|
320
|
+
paragraphs:
|
321
|
+
description: 建议数
|
322
|
+
object: 提议
|
323
|
+
title: 建议
|
324
|
+
votes:
|
325
|
+
description: 支持提议的数量
|
326
|
+
object: 支持
|
327
|
+
title: 支持
|
328
|
+
participatory_spaces:
|
329
|
+
highlighted_paragraphs:
|
330
|
+
see_all: 查看所有建议 (%{count})
|
331
|
+
paragraphs:
|
332
|
+
actions:
|
333
|
+
answer_paragraph: 答复建议
|
334
|
+
edit_paragraph: 编辑提案
|
335
|
+
import: 从另一个组件导入
|
336
|
+
new: 新提案
|
337
|
+
participatory_texts: 参与性案文
|
338
|
+
show: 显示提案
|
339
|
+
title: 行动
|
340
|
+
admin:
|
341
|
+
actions:
|
342
|
+
preview: 预览
|
343
|
+
exports:
|
344
|
+
paragraphs: 建议
|
345
|
+
models:
|
346
|
+
paragraph:
|
347
|
+
name: 建议
|
348
|
+
participatory_texts:
|
349
|
+
bulk-actions:
|
350
|
+
are_you_sure: 你确定要放弃整个参与性案文草案?
|
351
|
+
discard_all: 丢弃所有
|
352
|
+
import_doc: 导入文档
|
353
|
+
discard:
|
354
|
+
success: 所有参与性案文草案都已丢弃。
|
355
|
+
import:
|
356
|
+
invalid: 表单无效!
|
357
|
+
invalid_file: 文件包含一些错误,请尝试编辑文件内容并重新上传。
|
358
|
+
success: 恭喜您,以下部分已转换为建议。现在您可以在发布前审查和调整。
|
359
|
+
index:
|
360
|
+
info_1: 以下部分已转换为建议。现在您可以在发布前审查和调整。
|
361
|
+
publish_document: 发布文档
|
362
|
+
save_draft: 保存草稿
|
363
|
+
title: 预览参与文本
|
364
|
+
new_import:
|
365
|
+
accepted_mime_types:
|
366
|
+
md: Markdown
|
367
|
+
bottom_hint: "(您将能够预览和排序文档部分)"
|
368
|
+
title: 添加文档
|
369
|
+
upload_document: 上传文档
|
370
|
+
publish:
|
371
|
+
invalid: 无法发布提案
|
372
|
+
success: 所有建议已经发布
|
373
|
+
sections:
|
374
|
+
article: "<em>文章</em>"
|
375
|
+
sub-section: "<em>子部分:</em> %{title}"
|
376
|
+
update:
|
377
|
+
success: 参与性文本更新成功。
|
378
|
+
paragraph_answers:
|
379
|
+
form:
|
380
|
+
accepted: 已接受
|
381
|
+
answer_paragraph: 答案
|
382
|
+
evaluating: 评价
|
383
|
+
rejected: 已拒绝
|
384
|
+
title: 对提议 %{title} 的答案
|
385
|
+
paragraph_notes:
|
386
|
+
create:
|
387
|
+
error: 创建此建议说明时出现问题
|
388
|
+
success: 提案备注创建成功
|
389
|
+
form:
|
390
|
+
note: 说明
|
391
|
+
submit: 提交
|
392
|
+
leave_your_note: 留下您的便笺
|
393
|
+
title: 私人笔记
|
394
|
+
paragraphs:
|
395
|
+
answer:
|
396
|
+
invalid: 回答此建议时出现问题
|
397
|
+
success: 已成功回复建议
|
398
|
+
create:
|
399
|
+
invalid: 创建此建议时出现问题
|
400
|
+
success: 建议已成功创建
|
401
|
+
edit:
|
402
|
+
title: 更新提议
|
403
|
+
update: 更新
|
404
|
+
form:
|
405
|
+
attachment_legend: "(可选) 添加附件"
|
406
|
+
created_in_meeting: 这项建议来自一次会议
|
407
|
+
select_a_category: 选择一个类别
|
408
|
+
select_a_meeting: 选择会议
|
409
|
+
index:
|
410
|
+
actions: 行动
|
411
|
+
assign_to_valuator: 分配给值器
|
412
|
+
assign_to_valuator_button: 分配
|
413
|
+
cancel: 取消
|
414
|
+
change_category: 更改类别
|
415
|
+
change_scope: 更改范围
|
416
|
+
merge: 合并为一个新的
|
417
|
+
merge_button: 合并
|
418
|
+
publish: 发布
|
419
|
+
publish_answers: 发布答案
|
420
|
+
select_component: 选择一个组件
|
421
|
+
selected: 已选择
|
422
|
+
split: 拆分提案
|
423
|
+
split_button: 拆分
|
424
|
+
title: 建议
|
425
|
+
unassign_from_valuator: 取消分配给值
|
426
|
+
unassign_from_valuator_button: 取消分配
|
427
|
+
update: 更新
|
428
|
+
update_scope_button: 更新范围
|
429
|
+
new:
|
430
|
+
create: 创建
|
431
|
+
title: 创建提案
|
432
|
+
publish_answers:
|
433
|
+
number_of_paragraphs: '%{number} 建议的答案将被发布。'
|
434
|
+
select_a_paragraph: 请选择一个提议
|
435
|
+
show:
|
436
|
+
amendments_count: 修改计数
|
437
|
+
assigned_valuators: 分配给值者
|
438
|
+
authors: 作者
|
439
|
+
body: 正文内容
|
440
|
+
comments_count: 评论计数
|
441
|
+
comments_negative_count: 反对的
|
442
|
+
comments_neutral_count: 中性的
|
443
|
+
comments_positive_count: 收藏夹
|
444
|
+
created_at: 创建日期
|
445
|
+
documents: www.un.org/webcast
|
446
|
+
endorsements_count: 批准次数
|
447
|
+
endorsements_ranking: 经认可排序。
|
448
|
+
endorsers: 核可者
|
449
|
+
link: 链接
|
450
|
+
n_more_endorsers:
|
451
|
+
other: 和 %{count} 更多
|
452
|
+
photos: 照片
|
453
|
+
paragraphs: 建议
|
454
|
+
ranking: "%{ranking} / %{total}"
|
455
|
+
related_meetings: 相关会议
|
456
|
+
remove_assignment: 移除作业
|
457
|
+
remove_assignment_confirmation: 您确定要从此建议中删除值吗?
|
458
|
+
valuators: 估价器
|
459
|
+
votes_count: 支持计数
|
460
|
+
votes_ranking: 支持排序方式
|
461
|
+
update_category:
|
462
|
+
invalid: '这些建议已经有 %{subject_name} 分类: %{paragraphs}。'
|
463
|
+
select_a_category: 请选择一个类别
|
464
|
+
select_a_paragraph: 请选择一个提议
|
465
|
+
success: '建议已成功更新到 %{subject_name} 类别: %{paragraphs}。'
|
466
|
+
update_scope:
|
467
|
+
invalid: '这些建议已经有 %{subject_name} 范围: %{paragraphs}。'
|
468
|
+
select_a_paragraph: 请选择一个提议
|
469
|
+
select_a_scope: 请选择范围
|
470
|
+
success: '建议已成功更新到 %{subject_name} 范围: %{paragraphs}。'
|
471
|
+
paragraphs_imports:
|
472
|
+
create:
|
473
|
+
invalid: 导入提案时出现问题
|
474
|
+
success: "%{number} 个建议已成功导入"
|
475
|
+
new:
|
476
|
+
create: 导入提议
|
477
|
+
no_components: 在这个参与性空间中,没有其他提案组成部分可以从中导入。
|
478
|
+
select_component: 请选择一个组件
|
479
|
+
select_states: 检查要导入的建议的状态
|
480
|
+
paragraphs_merges:
|
481
|
+
create:
|
482
|
+
success: 成功地将提案合并为一个新提案。
|
483
|
+
paragraphs_splits:
|
484
|
+
create:
|
485
|
+
success: 成功地将建议分成新的建议。
|
486
|
+
valuation_assignments:
|
487
|
+
create:
|
488
|
+
invalid: 分配建议给值者时出错
|
489
|
+
success: 分配给估值者的建议
|
490
|
+
delete:
|
491
|
+
invalid: 有一个错误,未分配来自一个值的建议
|
492
|
+
success: 已成功从建议中删除值
|
493
|
+
admin_log:
|
494
|
+
paragraph:
|
495
|
+
answer: "%{user_name} 回答了 %{resource_name} 在 %{space_name} 空间的建议"
|
496
|
+
create: "%{user_name} 在 %{space_name} 空间上创建了 %{resource_name} 提案作为官方提案"
|
497
|
+
publish_answer: "%{user_name} 在 %{space_name} 空间上发布了 %{resource_name} 建议的答案"
|
498
|
+
update: "%{user_name} 更新了 %{resource_name} 在 %{space_name} 空间的官方提议"
|
499
|
+
paragraph_note:
|
500
|
+
create: "%{user_name} 在 %{space_name} 空间的 %{resource_name} 提案上留下了一个私人笔记"
|
501
|
+
valuation_assignment:
|
502
|
+
create: "%{user_name} 将 %{resource_name} 的建议分配给了一个值者"
|
503
|
+
delete: "%{user_name} 在 %{paragraph_title} 提议中没有分配到一个值者"
|
504
|
+
answers:
|
505
|
+
accepted: 已接受
|
506
|
+
evaluating: 评价
|
507
|
+
not_answered: 未回答
|
508
|
+
rejected: 已拒绝
|
509
|
+
withdrawn: 取出
|
510
|
+
application_helper:
|
511
|
+
filter_category_values:
|
512
|
+
all: 所有的
|
513
|
+
filter_origin_values:
|
514
|
+
all: 所有的
|
515
|
+
citizens: Citizens
|
516
|
+
meetings: 会议
|
517
|
+
official: 官方的
|
518
|
+
user_groups: 群組
|
519
|
+
filter_scope_values:
|
520
|
+
all: 所有的
|
521
|
+
filter_state_values:
|
522
|
+
accepted: 已接受
|
523
|
+
all: 所有的
|
524
|
+
evaluating: 评价
|
525
|
+
not_answered: 未回答
|
526
|
+
rejected: 已拒绝
|
527
|
+
filter_type_values:
|
528
|
+
all: 所有的
|
529
|
+
amendments: 修 正 案
|
530
|
+
paragraphs: 建议
|
531
|
+
collaborative_drafts:
|
532
|
+
collaborative_draft:
|
533
|
+
publish:
|
534
|
+
error: 发布合作草案时出现问题。
|
535
|
+
irreversible_action_modal:
|
536
|
+
body: 在将草案作为提案发表之后,草案将不再被编辑。该提案不会接受新的作者或贡献。
|
537
|
+
cancel: 取消
|
538
|
+
ok: 发布为提案
|
539
|
+
title: 以下操作是不可逆的
|
540
|
+
success: 合作草案作为一项建议成功发表。
|
541
|
+
view_collaborative_draft: 查看协作草稿
|
542
|
+
withdraw:
|
543
|
+
error: 在结束合作草案时遇到了问题。
|
544
|
+
irreversible_action_modal:
|
545
|
+
body: 草案结束后,草案将不会再被编辑。草案将不会接受新的作者或贡献。
|
546
|
+
cancel: 取消
|
547
|
+
ok: 撤回协作草稿
|
548
|
+
title: 以下操作是不可逆的
|
549
|
+
success: 协作草案已成功撤销。
|
550
|
+
count:
|
551
|
+
drafts_count:
|
552
|
+
other: "%{count} 协作草稿"
|
553
|
+
create:
|
554
|
+
error: 创建这个合作草稿时出现问题
|
555
|
+
success: 协作草稿成功创建。
|
556
|
+
edit:
|
557
|
+
attachment_legend: "(可选) 添加附件"
|
558
|
+
back: 后退
|
559
|
+
select_a_category: 请选择一个类别
|
560
|
+
send: 发送
|
561
|
+
title: 编辑协作草稿
|
562
|
+
filters:
|
563
|
+
all: 所有的
|
564
|
+
amendment: 修 正 案
|
565
|
+
category: 类别
|
566
|
+
open: 打开
|
567
|
+
published: 已发布
|
568
|
+
related_to: 关联到
|
569
|
+
scope: 范围
|
570
|
+
search: 搜索
|
571
|
+
state: 状态
|
572
|
+
withdrawn: 取出
|
573
|
+
filters_small_view:
|
574
|
+
close_modal: 关闭模式
|
575
|
+
filter: 筛选器
|
576
|
+
filter_by: 筛选方式
|
577
|
+
unfold: 展开...
|
578
|
+
new:
|
579
|
+
send: 继续
|
580
|
+
new_collaborative_draft_button:
|
581
|
+
new_collaborative_draft: 新的协作草稿
|
582
|
+
orders:
|
583
|
+
label: '订单草稿:'
|
584
|
+
most_contributed: 贡献最多的
|
585
|
+
random: 随机播放
|
586
|
+
recent: 最近的
|
587
|
+
requests:
|
588
|
+
accepted_request:
|
589
|
+
error: 无法接受为协作者,请稍后再试。
|
590
|
+
success: "@%{user} 已被成功接受为合作者"
|
591
|
+
access_requested:
|
592
|
+
error: 您的请求无法完成,请稍后再试。
|
593
|
+
success: 您的合作请求已成功发送
|
594
|
+
collaboration_requests:
|
595
|
+
accept_request: 接受
|
596
|
+
reject_request: 拒绝
|
597
|
+
title: 协作请求
|
598
|
+
rejected_request:
|
599
|
+
error: 无法以协作者身份拒绝,请稍后再试。
|
600
|
+
success: "@%{user} 已被成功拒绝为合作者"
|
601
|
+
show:
|
602
|
+
back: 后退
|
603
|
+
edit: 编辑协作草稿
|
604
|
+
final_paragraph: 最后提案
|
605
|
+
final_paragraph_help_text: 这个草稿已完成。查看最后建议
|
606
|
+
hidden_authors_count:
|
607
|
+
other: 和更多 %{count} 人
|
608
|
+
info-message: 这是一个提议的 <strong>协作草案</strong> 。 这意味着你可以帮助他们的作者使用下面的评论部分来塑造建议或通过请求访问来直接改进它。 一旦作者授予您访问权限,您将能够修改此草稿。
|
609
|
+
publish: 发布
|
610
|
+
publish_info: 发布此版本的草稿或
|
611
|
+
published_paragraph: 已发布的提案
|
612
|
+
request_access: 请求访问
|
613
|
+
requested_access: 访问请求
|
614
|
+
version_history: 查看此建议的版本历史记录
|
615
|
+
withdraw: 撤回草案
|
616
|
+
states:
|
617
|
+
open: 打开
|
618
|
+
published: 已发布
|
619
|
+
withdrawn: 取出
|
620
|
+
update:
|
621
|
+
error: 保存合作草稿时出现问题。
|
622
|
+
success: 协作草稿已成功更新。
|
623
|
+
wizard_aside:
|
624
|
+
back_from_collaborative_draft: 返回协作草稿
|
625
|
+
info: 您正在创建一个 <strong>协作草案</strong>。
|
626
|
+
wizard_header:
|
627
|
+
title: 创建您的协作草稿
|
628
|
+
create:
|
629
|
+
error: 保存建议时出现问题。
|
630
|
+
success: 建议已成功创建为草稿。
|
631
|
+
destroy_draft:
|
632
|
+
error: 删除合作草案时出现问题。
|
633
|
+
success: 提案草案已成功删除。
|
634
|
+
last_activity:
|
635
|
+
new_paragraph_at_html: "<span>在 %{link}的新提议</span>"
|
636
|
+
models:
|
637
|
+
collaborative_draft:
|
638
|
+
fields:
|
639
|
+
authors: 作者
|
640
|
+
comments: 评论
|
641
|
+
contributions: 二. 捐款
|
642
|
+
paragraph:
|
643
|
+
fields:
|
644
|
+
category: 类别
|
645
|
+
comments: 评论
|
646
|
+
id: ID
|
647
|
+
notes: 注
|
648
|
+
official_paragraph: 正式提案
|
649
|
+
published_answer: 已发布的答案
|
650
|
+
published_at: 发布于
|
651
|
+
scope: 范围
|
652
|
+
state: 状态
|
653
|
+
title: 标题
|
654
|
+
valuator: 值者
|
655
|
+
valuators: 估价器
|
656
|
+
votes: 所得票数
|
657
|
+
new:
|
658
|
+
limit_reached: 您不能创建新的建议,因为您已经超过了限制。
|
659
|
+
participatory_text_paragraph:
|
660
|
+
alternative_title: 目前没有参与性文本
|
661
|
+
buttons:
|
662
|
+
amend: 修改:
|
663
|
+
comment: 评论
|
664
|
+
comments: 评论
|
665
|
+
paragraph_votes:
|
666
|
+
create:
|
667
|
+
error: 有一个问题支持这项提议。
|
668
|
+
paragraphs:
|
669
|
+
compare:
|
670
|
+
continue: 继续
|
671
|
+
no_similars_found: 干得好!没有找到类似的建议
|
672
|
+
title: 类似的提议
|
673
|
+
complete:
|
674
|
+
send: 发送
|
675
|
+
title: 完成您的提议
|
676
|
+
count:
|
677
|
+
paragraphs_count:
|
678
|
+
other: "%{count} 个提议"
|
679
|
+
edit:
|
680
|
+
add_documents: www.un.org/webcast
|
681
|
+
add_images: 文件
|
682
|
+
attachment_legend: "(可选) 添加附件"
|
683
|
+
back: 后退
|
684
|
+
delete_document: 删除文档
|
685
|
+
delete_image: 删除图像
|
686
|
+
gallery_legend: "(可选) 添加图像到提案卡"
|
687
|
+
select_a_category: 请选择一个类别
|
688
|
+
send: 发送
|
689
|
+
title: 编辑提案
|
690
|
+
edit_draft:
|
691
|
+
discard: 丢弃这个草稿
|
692
|
+
discard_confirmation: 您确定要放弃这个建议草案吗?
|
693
|
+
send: 预览
|
694
|
+
title: 编辑提案草案
|
695
|
+
filters:
|
696
|
+
activity: 我的活动
|
697
|
+
all: 所有的
|
698
|
+
amendment_type: 类型
|
699
|
+
category: 类别
|
700
|
+
my_paragraphs: 我的提议
|
701
|
+
origin: 始发地
|
702
|
+
related_to: 关联到
|
703
|
+
scope: 范围
|
704
|
+
search: 搜索
|
705
|
+
state: 状态
|
706
|
+
type: 类型
|
707
|
+
voted: 支持的
|
708
|
+
filters_small_view:
|
709
|
+
close_modal: 关闭模式
|
710
|
+
filter: 筛选器
|
711
|
+
filter_by: 筛选方式
|
712
|
+
unfold: 展开...
|
713
|
+
index:
|
714
|
+
collaborative_drafts_list: 访问协作草稿
|
715
|
+
new_paragraph: 新提案
|
716
|
+
see_all_withdrawn: 查看所有已撤销的提案
|
717
|
+
view_paragraph: 查看提案
|
718
|
+
linked_paragraphs:
|
719
|
+
paragraph_votes:
|
720
|
+
other: 支持
|
721
|
+
new:
|
722
|
+
send: 继续
|
723
|
+
title: 创建您的提议
|
724
|
+
orders:
|
725
|
+
label: '排序提议:'
|
726
|
+
most_commented: 最多评论
|
727
|
+
most_endorsed: 最多支持
|
728
|
+
most_followed: 关注最多的
|
729
|
+
most_voted: 最多支持
|
730
|
+
random: 随机播放
|
731
|
+
recent: 最近的
|
732
|
+
with_more_authors: 有更多作者
|
733
|
+
participatory_texts:
|
734
|
+
index:
|
735
|
+
document_index: 文档索引
|
736
|
+
view_index:
|
737
|
+
see_index: 查看索引
|
738
|
+
preview:
|
739
|
+
modify: 修改提案
|
740
|
+
paragraph_edit_before_minutes:
|
741
|
+
other: 您将能够在发布提案后的前 %{count} 分钟内编辑此提案。 一旦这次窗口通过后,您将无法编辑提案。
|
742
|
+
publish: 发布
|
743
|
+
title: 发布您的提议
|
744
|
+
paragraph:
|
745
|
+
creation_date: '创建: %{date}'
|
746
|
+
view_paragraph: 查看提案
|
747
|
+
paragraphs:
|
748
|
+
empty: 还没有提案
|
749
|
+
empty_filters: 没有任何符合此标准的提案
|
750
|
+
show:
|
751
|
+
answer: 答案
|
752
|
+
back_to: 返回到
|
753
|
+
back_to_list: 返回列表
|
754
|
+
changes_at_title: 对"%{title}" 的修正
|
755
|
+
comments: 评论
|
756
|
+
edit_paragraph: 编辑提案
|
757
|
+
endorsements_list: 认可名单
|
758
|
+
estimated_cost: 估计费用
|
759
|
+
hidden_endorsers_count:
|
760
|
+
other: 和更多 %{count} 人
|
761
|
+
link_to_collaborative_draft_help_text: 此建议是协作草稿的结果,请查看历史记录
|
762
|
+
link_to_collaborative_draft_text: 查看协作草稿
|
763
|
+
link_to_promoted_emendation_help_text: 这项建议是一项提倡的修正
|
764
|
+
link_to_promoted_emendation_text: 见被拒绝的修正。
|
765
|
+
link_to_paragraph_from_emendation_help_text: 这是一个被拒绝的修改
|
766
|
+
link_to_paragraph_from_emendation_text: 见提案
|
767
|
+
paragraph_accepted_reason: '这一提议已被接受,原因是:'
|
768
|
+
paragraph_in_evaluation_reason: 这项建议正在评估
|
769
|
+
paragraph_rejected_reason: '这一提议被否决,理由是:'
|
770
|
+
read_less: 阅读更多
|
771
|
+
read_more: 阅读更多
|
772
|
+
report: 报告
|
773
|
+
withdraw_btn_hint: 如果您改变主意,只要您没有得到任何支持,您可以撤回您的建议。 该提案未予删除,将列入撤回的提案清单。
|
774
|
+
withdraw_confirmation_html: 您确定要撤回此建议吗?<br><br><strong>此操作不能取消!</strong>
|
775
|
+
withdraw_paragraph: 撤回提案
|
776
|
+
tags:
|
777
|
+
changed_from: "(来自 <u>%{previous_name}</u> 由管理员修改)"
|
778
|
+
update:
|
779
|
+
title: 更新提议
|
780
|
+
vote_button:
|
781
|
+
already_voted: 已经支持
|
782
|
+
already_voted_hover: 取款支持
|
783
|
+
maximum_votes_reached: 已达到支持上限
|
784
|
+
no_votes_remaining: 不支持剩余
|
785
|
+
vote: 支持
|
786
|
+
votes_blocked: 支持已禁用
|
787
|
+
votes_count:
|
788
|
+
count:
|
789
|
+
other: 支持
|
790
|
+
most_popular_paragraph: 最受欢迎的提案
|
791
|
+
need_more_votes: 需要更多支持
|
792
|
+
voting_rules:
|
793
|
+
can_accumulate_supports_beyond_threshold:
|
794
|
+
description: 每个建议都可以积累超过 %{limit} 个支持
|
795
|
+
minimum_votes_per_user:
|
796
|
+
description: 您必须在不同的建议中至少分配 %{votes} 支持。
|
797
|
+
given_enough_votes: 您已经提供了足够的支持。
|
798
|
+
supports_remaining: 您必须支持 %{remaining_votes} 个更多的建议以便您的支持被考虑。
|
799
|
+
paragraph_limit:
|
800
|
+
description: 您最多可以创建 %{limit} 个建议。
|
801
|
+
threshold_per_paragraph:
|
802
|
+
description: 为了被验证的建议需要达到 %{limit} 支持
|
803
|
+
title: '支持受以下规则约束:'
|
804
|
+
vote_limit:
|
805
|
+
description: 您可以最多支持 %{limit} 个建议。
|
806
|
+
left: 剩余时间
|
807
|
+
votes: 支持
|
808
|
+
wizard_aside:
|
809
|
+
back: 后退
|
810
|
+
back_from_step_1: 回到提议
|
811
|
+
back_from_step_2: 回到提议
|
812
|
+
back_from_step_3: 返回比较提案
|
813
|
+
back_from_step_4: 返回编辑草稿
|
814
|
+
info: 您正在创建 <strong>提议</strong>。
|
815
|
+
wizard_steps:
|
816
|
+
current_step: 当前步骤
|
817
|
+
see_steps: 查看步骤
|
818
|
+
step_1: 创建您的提议
|
819
|
+
step_2: 比较
|
820
|
+
step_3: Complete
|
821
|
+
step_4: 发布您的提议
|
822
|
+
step_of: 步骤 %{current_step_num} / %{total_steps}
|
823
|
+
title: 建议创建步骤
|
824
|
+
paragraphs_picker:
|
825
|
+
choose_paragraphs: 选择建议
|
826
|
+
close: 关闭
|
827
|
+
more_paragraphs: 还有 %{number} 个建议。请仔细搜索以找到它们。
|
828
|
+
no_paragraphs: 没有符合您搜索条件的建议或没有任何建议。
|
829
|
+
publish:
|
830
|
+
error: 发布建议时出现问题。
|
831
|
+
success: 建议发布成功。
|
832
|
+
publish_answers:
|
833
|
+
success: 建议答案发布成功。
|
834
|
+
update:
|
835
|
+
error: 保存建议时出现问题。
|
836
|
+
success: 建议已成功更新。
|
837
|
+
update_draft:
|
838
|
+
error: 保存合作草稿时出现问题。
|
839
|
+
success: 建议草稿已成功更新。
|
840
|
+
versions:
|
841
|
+
collaborative_drafts:
|
842
|
+
back_to_resource: 返回协作草稿
|
843
|
+
index:
|
844
|
+
title: 版本
|
845
|
+
paragraphs:
|
846
|
+
back_to_resource: 返回提案
|
847
|
+
withdraw:
|
848
|
+
errors:
|
849
|
+
has_supports: 这项建议不能被撤回,因为它已经得到支持。
|
850
|
+
resource_links:
|
851
|
+
copied_from_component:
|
852
|
+
paragraph_paragraph: 有关提议
|
853
|
+
included_projects:
|
854
|
+
project_result: '此项目中出现的结果:'
|
855
|
+
included_paragraphs:
|
856
|
+
paragraph_project: '这些项目中的建议:'
|
857
|
+
paragraph_result: '这些结果中出现的建议:'
|