decidim-proposals 0.27.4 → 0.28.0.rc4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (276) hide show
  1. checksums.yaml +4 -4
  2. data/app/cells/decidim/proposals/collaborative_draft_cell.rb +1 -1
  3. data/app/cells/decidim/proposals/collaborative_draft_l_cell.rb +16 -0
  4. data/app/cells/decidim/proposals/collaborative_draft_link_to_proposal/show.erb +4 -12
  5. data/app/cells/decidim/proposals/collaborative_draft_link_to_proposal_cell.rb +0 -29
  6. data/app/cells/decidim/proposals/collaborative_draft_metadata_cell.rb +30 -0
  7. data/app/cells/decidim/proposals/content_blocks/highlighted_proposals_cell.rb +2 -8
  8. data/app/cells/decidim/proposals/cost_report/show.erb +5 -34
  9. data/app/cells/decidim/proposals/cost_report_cell.rb +0 -13
  10. data/app/cells/decidim/proposals/highlighted_proposals_for_component/show.erb +29 -17
  11. data/app/cells/decidim/proposals/highlighted_proposals_for_component_cell.rb +34 -8
  12. data/app/cells/decidim/proposals/irreversible_action_modal/show.erb +9 -17
  13. data/app/cells/decidim/proposals/irreversible_action_modal_cell.rb +7 -9
  14. data/app/cells/decidim/proposals/participatory_text_proposal/buttons.erb +21 -31
  15. data/app/cells/decidim/proposals/participatory_text_proposal/show.erb +5 -9
  16. data/app/cells/decidim/proposals/participatory_text_proposal_cell.rb +0 -9
  17. data/app/cells/decidim/proposals/proposal_activity_cell.rb +1 -12
  18. data/app/cells/decidim/proposals/proposal_cell.rb +6 -1
  19. data/app/cells/decidim/proposals/proposal_l_cell.rb +47 -0
  20. data/app/cells/decidim/proposals/proposal_link_to_collaborative_draft_cell.rb +6 -4
  21. data/app/cells/decidim/proposals/proposal_link_to_rejected_emendation_cell.rb +9 -7
  22. data/app/cells/decidim/proposals/proposal_linked_resources/show.erb +3 -8
  23. data/app/cells/decidim/proposals/proposal_metadata_cell.rb +61 -0
  24. data/app/cells/decidim/proposals/proposal_s_cell.rb +21 -0
  25. data/app/cells/decidim/proposals/proposals_picker/show.erb +13 -13
  26. data/app/cells/decidim/proposals/proposals_picker_cell.rb +15 -38
  27. data/app/commands/decidim/proposals/accept_access_to_collaborative_draft.rb +1 -1
  28. data/app/commands/decidim/proposals/admin/answer_proposal.rb +1 -1
  29. data/app/commands/decidim/proposals/admin/assign_proposals_to_valuator.rb +3 -3
  30. data/app/commands/decidim/proposals/admin/create_proposal.rb +2 -2
  31. data/app/commands/decidim/proposals/admin/create_proposal_note.rb +4 -4
  32. data/app/commands/decidim/proposals/admin/discard_participatory_text.rb +1 -1
  33. data/app/commands/decidim/proposals/admin/import_participatory_text.rb +1 -1
  34. data/app/commands/decidim/proposals/admin/import_proposals.rb +2 -13
  35. data/app/commands/decidim/proposals/admin/merge_proposals.rb +1 -1
  36. data/app/commands/decidim/proposals/admin/notify_proposal_answer.rb +3 -3
  37. data/app/commands/decidim/proposals/admin/publish_answers.rb +1 -1
  38. data/app/commands/decidim/proposals/admin/publish_participatory_text.rb +2 -2
  39. data/app/commands/decidim/proposals/admin/split_proposals.rb +1 -1
  40. data/app/commands/decidim/proposals/admin/unassign_proposals_from_valuator.rb +2 -2
  41. data/app/commands/decidim/proposals/admin/update_participatory_text.rb +1 -1
  42. data/app/commands/decidim/proposals/admin/update_proposal.rb +5 -1
  43. data/app/commands/decidim/proposals/admin/update_proposal_scope.rb +1 -1
  44. data/app/commands/decidim/proposals/create_collaborative_draft.rb +13 -3
  45. data/app/commands/decidim/proposals/create_proposal.rb +14 -5
  46. data/app/commands/decidim/proposals/hashtags_methods.rb +1 -1
  47. data/app/commands/decidim/proposals/publish_proposal.rb +1 -1
  48. data/app/commands/decidim/proposals/reject_access_to_collaborative_draft.rb +1 -1
  49. data/app/commands/decidim/proposals/request_access_to_collaborative_draft.rb +1 -1
  50. data/app/commands/decidim/proposals/unvote_proposal.rb +2 -2
  51. data/app/commands/decidim/proposals/update_collaborative_draft.rb +12 -2
  52. data/app/commands/decidim/proposals/update_proposal.rb +16 -14
  53. data/app/commands/decidim/proposals/vote_proposal.rb +2 -2
  54. data/app/controllers/concerns/decidim/proposals/admin/filterable.rb +4 -13
  55. data/app/controllers/concerns/decidim/proposals/orderable.rb +2 -2
  56. data/app/controllers/decidim/proposals/admin/proposal_answers_controller.rb +2 -2
  57. data/app/controllers/decidim/proposals/admin/proposal_notes_controller.rb +1 -1
  58. data/app/controllers/decidim/proposals/admin/proposals_controller.rb +2 -2
  59. data/app/controllers/decidim/proposals/collaborative_drafts_controller.rb +3 -9
  60. data/app/controllers/decidim/proposals/proposal_votes_controller.rb +3 -3
  61. data/app/controllers/decidim/proposals/proposals_controller.rb +42 -12
  62. data/app/events/decidim/proposals/accepted_proposal_event.rb +1 -1
  63. data/app/events/decidim/proposals/admin/proposal_note_created_event.rb +1 -1
  64. data/app/events/decidim/proposals/admin/update_proposal_category_event.rb +1 -1
  65. data/app/events/decidim/proposals/admin/update_proposal_scope_event.rb +1 -1
  66. data/app/events/decidim/proposals/collaborative_draft_access_accepted_event.rb +1 -1
  67. data/app/events/decidim/proposals/collaborative_draft_access_rejected_event.rb +1 -1
  68. data/app/events/decidim/proposals/collaborative_draft_access_request_event.rb +1 -1
  69. data/app/events/decidim/proposals/collaborative_draft_access_requested_event.rb +1 -1
  70. data/app/events/decidim/proposals/collaborative_draft_access_requester_accepted_event.rb +1 -1
  71. data/app/events/decidim/proposals/collaborative_draft_access_requester_rejected_event.rb +1 -1
  72. data/app/events/decidim/proposals/collaborative_draft_withdrawn_event.rb +1 -1
  73. data/app/events/decidim/proposals/evaluating_proposal_event.rb +1 -1
  74. data/app/events/decidim/proposals/proposal_endorsed_event.rb +1 -1
  75. data/app/events/decidim/proposals/proposal_mentioned_event.rb +1 -1
  76. data/app/events/decidim/proposals/publish_proposal_event.rb +1 -1
  77. data/app/events/decidim/proposals/rejected_proposal_event.rb +1 -1
  78. data/app/forms/decidim/proposals/admin/import_participatory_text_form.rb +1 -1
  79. data/app/forms/decidim/proposals/admin/proposal_base_form.rb +2 -2
  80. data/app/forms/decidim/proposals/admin/proposal_form.rb +1 -1
  81. data/app/forms/decidim/proposals/admin/proposals_fork_form.rb +1 -1
  82. data/app/forms/decidim/proposals/admin/valuation_assignment_form.rb +1 -1
  83. data/app/forms/decidim/proposals/proposal_form.rb +9 -27
  84. data/app/helpers/decidim/proposals/admin/proposal_bulk_actions_helper.rb +1 -1
  85. data/app/helpers/decidim/proposals/admin/proposals_helper.rb +13 -13
  86. data/app/helpers/decidim/proposals/application_helper.rb +79 -27
  87. data/app/helpers/decidim/proposals/collaborative_draft_helper.rb +44 -4
  88. data/app/helpers/decidim/proposals/map_helper.rb +3 -4
  89. data/app/helpers/decidim/proposals/participatory_texts_helper.rb +1 -9
  90. data/app/helpers/decidim/proposals/proposal_cells_helper.rb +1 -1
  91. data/app/helpers/decidim/proposals/proposal_votes_helper.rb +2 -24
  92. data/app/helpers/decidim/proposals/proposal_wizard_helper.rb +14 -81
  93. data/app/helpers/decidim/proposals/proposals_helper.rb +0 -12
  94. data/app/jobs/decidim/proposals/hide_all_created_by_author_job.rb +20 -0
  95. data/app/jobs/decidim/proposals/notify_proposals_mentioned_job.rb +1 -1
  96. data/app/jobs/decidim/proposals/settings_change_job.rb +2 -2
  97. data/app/models/decidim/proposals/collaborative_draft.rb +4 -16
  98. data/app/models/decidim/proposals/proposal.rb +19 -14
  99. data/app/models/decidim/proposals/proposal_vote.rb +3 -3
  100. data/app/packs/documents/decidim/proposals/participatory_texts/participatory_text.md +9 -4
  101. data/app/packs/entrypoints/decidim_proposals.js +4 -0
  102. data/app/packs/entrypoints/decidim_proposals_admin.js +0 -1
  103. data/app/packs/images/decidim/gamification/badges/decidim_gamification_badges_accepted_proposals.svg +68 -1
  104. data/app/packs/images/decidim/gamification/badges/decidim_gamification_badges_proposal_votes.svg +34 -1
  105. data/app/packs/images/decidim/gamification/badges/decidim_gamification_badges_proposals.svg +64 -1
  106. data/app/packs/src/decidim/proposals/add_proposal.js +25 -39
  107. data/app/packs/src/decidim/proposals/choose_proposals.js +20 -0
  108. data/app/packs/stylesheets/decidim/proposals/proposals.scss +97 -0
  109. data/app/permissions/decidim/proposals/admin/permissions.rb +3 -3
  110. data/app/permissions/decidim/proposals/permissions.rb +1 -1
  111. data/app/presenters/decidim/proposals/admin_log/proposal_note_presenter.rb +2 -2
  112. data/app/presenters/decidim/proposals/admin_log/proposal_presenter.rb +2 -2
  113. data/app/presenters/decidim/proposals/admin_log/valuation_assignment_presenter.rb +2 -2
  114. data/app/presenters/decidim/proposals/proposal_presenter.rb +6 -2
  115. data/app/services/decidim/proposals/diff_renderer.rb +3 -3
  116. data/app/services/decidim/proposals/proposal_builder.rb +6 -6
  117. data/app/views/decidim/proposals/admin/participatory_texts/_article-preview.html.erb +2 -4
  118. data/app/views/decidim/proposals/admin/participatory_texts/_bulk-actions.html.erb +2 -2
  119. data/app/views/decidim/proposals/admin/participatory_texts/index.html.erb +58 -46
  120. data/app/views/decidim/proposals/admin/participatory_texts/new_import.html.erb +31 -33
  121. data/app/views/decidim/proposals/admin/proposal_answers/_form.html.erb +17 -11
  122. data/app/views/decidim/proposals/admin/proposal_notes/_form.html.erb +5 -6
  123. data/app/views/decidim/proposals/admin/proposal_notes/_proposal_notes.html.erb +28 -36
  124. data/app/views/decidim/proposals/admin/proposals/_bulk-actions.html.erb +27 -30
  125. data/app/views/decidim/proposals/admin/proposals/_documents.html.erb +13 -0
  126. data/app/views/decidim/proposals/admin/proposals/_endorsers.html.erb +25 -0
  127. data/app/views/decidim/proposals/admin/proposals/_form.html.erb +70 -90
  128. data/app/views/decidim/proposals/admin/proposals/_meetings.html.erb +13 -0
  129. data/app/views/decidim/proposals/admin/proposals/_photos.html.erb +13 -0
  130. data/app/views/decidim/proposals/admin/proposals/_proposal-tr.html.erb +30 -24
  131. data/app/views/decidim/proposals/admin/proposals/bulk_actions/_assign_to_valuator.html.erb +3 -3
  132. data/app/views/decidim/proposals/admin/proposals/bulk_actions/_dropdown.html.erb +3 -2
  133. data/app/views/decidim/proposals/admin/proposals/bulk_actions/_merge.html.erb +4 -4
  134. data/app/views/decidim/proposals/admin/proposals/bulk_actions/_publish_answers.html.erb +3 -3
  135. data/app/views/decidim/proposals/admin/proposals/bulk_actions/_recategorize.html.erb +3 -3
  136. data/app/views/decidim/proposals/admin/proposals/bulk_actions/_scope-change.html.erb +4 -8
  137. data/app/views/decidim/proposals/admin/proposals/bulk_actions/_split.html.erb +3 -3
  138. data/app/views/decidim/proposals/admin/proposals/bulk_actions/_unassign_from_valuator.html.erb +3 -3
  139. data/app/views/decidim/proposals/admin/proposals/edit.html.erb +17 -7
  140. data/app/views/decidim/proposals/admin/proposals/index.html.erb +50 -63
  141. data/app/views/decidim/proposals/admin/proposals/new.html.erb +16 -6
  142. data/app/views/decidim/proposals/admin/proposals/publish_answers.js.erb +2 -2
  143. data/app/views/decidim/proposals/admin/proposals/show.html.erb +204 -157
  144. data/app/views/decidim/proposals/admin/proposals/update_attribute.js.erb +4 -4
  145. data/app/views/decidim/proposals/admin/proposals_imports/new.html.erb +48 -34
  146. data/app/views/decidim/proposals/collaborative_drafts/_accept_request_access_form.html.erb +1 -1
  147. data/app/views/decidim/proposals/collaborative_drafts/_actions.html.erb +7 -0
  148. data/app/views/decidim/proposals/collaborative_drafts/_collaborative_draft_aside.html.erb +53 -0
  149. data/app/views/decidim/proposals/collaborative_drafts/_collaborative_drafts.html.erb +12 -13
  150. data/app/views/decidim/proposals/collaborative_drafts/_collaborator_requests.html.erb +8 -12
  151. data/app/views/decidim/proposals/collaborative_drafts/_edit_form_fields.html.erb +26 -54
  152. data/app/views/decidim/proposals/collaborative_drafts/_reject_request_access_form.html.erb +1 -3
  153. data/app/views/decidim/proposals/collaborative_drafts/_request_access_form.html.erb +1 -1
  154. data/app/views/decidim/proposals/collaborative_drafts/edit.html.erb +23 -25
  155. data/app/views/decidim/proposals/collaborative_drafts/index.html.erb +30 -22
  156. data/app/views/decidim/proposals/collaborative_drafts/index.js.erb +0 -5
  157. data/app/views/decidim/proposals/collaborative_drafts/new.html.erb +22 -18
  158. data/app/views/decidim/proposals/collaborative_drafts/show.html.erb +39 -109
  159. data/app/views/decidim/proposals/proposal_votes/update_buttons_and_counters.js.erb +2 -2
  160. data/app/views/decidim/proposals/proposals/_actions.html.erb +13 -0
  161. data/app/views/decidim/proposals/proposals/_edit_form_fields.html.erb +31 -70
  162. data/app/views/decidim/proposals/proposals/_linked_proposals.html.erb +3 -35
  163. data/app/views/decidim/proposals/proposals/_proposal_aside.html.erb +40 -0
  164. data/app/views/decidim/proposals/proposals/_proposals.html.erb +18 -39
  165. data/app/views/decidim/proposals/proposals/_proposals_picker.html.erb +5 -0
  166. data/app/views/decidim/proposals/proposals/_remaining_votes_count.html.erb +3 -3
  167. data/app/views/decidim/proposals/proposals/_vote_button.html.erb +16 -17
  168. data/app/views/decidim/proposals/proposals/_votes_count.html.erb +3 -6
  169. data/app/views/decidim/proposals/proposals/_voting_rules.html.erb +28 -41
  170. data/app/views/decidim/proposals/proposals/_wizard_header.html.erb +19 -25
  171. data/app/views/decidim/proposals/proposals/compare.html.erb +17 -16
  172. data/app/views/decidim/proposals/proposals/complete.html.erb +26 -21
  173. data/app/views/decidim/proposals/proposals/edit.html.erb +32 -27
  174. data/app/views/decidim/proposals/proposals/edit_draft.html.erb +21 -19
  175. data/app/views/decidim/proposals/proposals/index.html.erb +56 -47
  176. data/app/views/decidim/proposals/proposals/index.js.erb +0 -5
  177. data/app/views/decidim/proposals/proposals/new.html.erb +30 -35
  178. data/app/views/decidim/proposals/proposals/participatory_texts/_proposal_vote_button.html.erb +5 -5
  179. data/app/views/decidim/proposals/proposals/participatory_texts/_view_index.html.erb +15 -8
  180. data/app/views/decidim/proposals/proposals/participatory_texts/participatory_text.html.erb +32 -15
  181. data/app/views/decidim/proposals/proposals/preview.html.erb +37 -34
  182. data/app/views/decidim/proposals/proposals/show.html.erb +90 -106
  183. data/app/views/decidim/proposals/versions/show.html.erb +13 -5
  184. data/config/assets.rb +0 -1
  185. data/config/brakeman.ignore +31 -56
  186. data/config/locales/ar.yml +17 -156
  187. data/config/locales/bg.yml +0 -18
  188. data/config/locales/ca.yml +62 -118
  189. data/config/locales/cs.yml +71 -129
  190. data/config/locales/de.yml +69 -125
  191. data/config/locales/el.yml +54 -121
  192. data/config/locales/en.yml +76 -132
  193. data/config/locales/es-MX.yml +70 -126
  194. data/config/locales/es-PY.yml +69 -125
  195. data/config/locales/es.yml +66 -122
  196. data/config/locales/eu.yml +194 -248
  197. data/config/locales/fi-plain.yml +63 -119
  198. data/config/locales/fi.yml +63 -119
  199. data/config/locales/fr-CA.yml +66 -121
  200. data/config/locales/fr.yml +84 -139
  201. data/config/locales/ga-IE.yml +0 -32
  202. data/config/locales/gl.yml +7 -129
  203. data/config/locales/hu.yml +38 -133
  204. data/config/locales/id-ID.yml +5 -109
  205. data/config/locales/is-IS.yml +0 -56
  206. data/config/locales/it.yml +7 -139
  207. data/config/locales/ja.yml +61 -122
  208. data/config/locales/lb.yml +0 -5
  209. data/config/locales/lt.yml +84 -124
  210. data/config/locales/lv.yml +9 -139
  211. data/config/locales/nl.yml +8 -142
  212. data/config/locales/no.yml +7 -132
  213. data/config/locales/pl.yml +11 -144
  214. data/config/locales/pt-BR.yml +9 -136
  215. data/config/locales/pt.yml +7 -138
  216. data/config/locales/ro-RO.yml +9 -145
  217. data/config/locales/ru.yml +1 -64
  218. data/config/locales/sk.yml +11 -136
  219. data/config/locales/sq-AL.yml +1 -0
  220. data/config/locales/sr-CS.yml +0 -23
  221. data/config/locales/sv.yml +20 -138
  222. data/config/locales/th-TH.yml +1 -0
  223. data/config/locales/tr-TR.yml +8 -138
  224. data/config/locales/uk.yml +1 -64
  225. data/config/locales/zh-CN.yml +5 -130
  226. data/config/locales/zh-TW.yml +31 -107
  227. data/db/migrate/20170307085300_migrate_proposal_reports_data_to_reports.rb +1 -1
  228. data/db/migrate/20230427105700_change_states_on_collaborative_drafts.rb +34 -0
  229. data/db/migrate/20230427105700_change_states_on_proposals.rb +34 -0
  230. data/lib/decidim/api/proposals_type.rb +2 -2
  231. data/lib/decidim/proposals/component.rb +11 -289
  232. data/lib/decidim/proposals/doc_to_markdown.rb +0 -4
  233. data/lib/decidim/proposals/engine.rb +43 -7
  234. data/lib/decidim/proposals/import/proposal_answer_creator.rb +1 -1
  235. data/lib/decidim/proposals/import/proposal_creator.rb +10 -10
  236. data/lib/decidim/proposals/markdown_to_proposals.rb +8 -2
  237. data/lib/decidim/proposals/proposal_serializer.rb +4 -4
  238. data/lib/decidim/proposals/seeds.rb +278 -0
  239. data/lib/decidim/proposals/test/factories.rb +62 -22
  240. data/lib/decidim/proposals/version.rb +1 -1
  241. metadata +55 -63
  242. data/app/cells/decidim/proposals/collaborative_draft_m/footer.erb +0 -6
  243. data/app/cells/decidim/proposals/collaborative_draft_m/tags.erb +0 -1
  244. data/app/cells/decidim/proposals/collaborative_draft_m_cell.rb +0 -44
  245. data/app/cells/decidim/proposals/content_blocks/highlighted_proposals/elements.erb +0 -5
  246. data/app/cells/decidim/proposals/content_blocks/highlighted_proposals/heading.erb +0 -1
  247. data/app/cells/decidim/proposals/proposal_link_to_rejected_emendation/show.erb +0 -9
  248. data/app/cells/decidim/proposals/proposal_m/footer.erb +0 -26
  249. data/app/cells/decidim/proposals/proposal_m/tags.erb +0 -1
  250. data/app/cells/decidim/proposals/proposal_m_cell.rb +0 -151
  251. data/app/cells/decidim/proposals/proposal_tags/show.erb +0 -33
  252. data/app/cells/decidim/proposals/proposal_tags_cell.rb +0 -35
  253. data/app/cells/decidim/proposals/proposals_picker/proposals.erb +0 -12
  254. data/app/controllers/concerns/decidim/proposals/admin/picker.rb +0 -21
  255. data/app/controllers/decidim/proposals/widgets_controller.rb +0 -19
  256. data/app/helpers/decidim/proposals/admin/filterable_helper.rb +0 -17
  257. data/app/helpers/decidim/proposals/admin/proposals_picker_helper.rb +0 -30
  258. data/app/packs/src/decidim/proposals/admin/proposals_picker.js +0 -50
  259. data/app/packs/stylesheets/decidim/proposals/_proposals.scss +0 -1
  260. data/app/packs/stylesheets/decidim/proposals/proposals/_preview.scss +0 -3
  261. data/app/views/decidim/proposals/collaborative_drafts/_count.html.erb +0 -1
  262. data/app/views/decidim/proposals/collaborative_drafts/_filters.html.erb +0 -32
  263. data/app/views/decidim/proposals/collaborative_drafts/_filters_small_view.html.erb +0 -18
  264. data/app/views/decidim/proposals/collaborative_drafts/_new_collaborative_draft_button.html.erb +0 -11
  265. data/app/views/decidim/proposals/collaborative_drafts/_wizard_aside.html.erb +0 -13
  266. data/app/views/decidim/proposals/collaborative_drafts/_wizard_header.html.erb +0 -14
  267. data/app/views/decidim/proposals/proposals/_count.html.erb +0 -1
  268. data/app/views/decidim/proposals/proposals/_dynamic_map_instructions.html.erb +0 -4
  269. data/app/views/decidim/proposals/proposals/_filters.html.erb +0 -48
  270. data/app/views/decidim/proposals/proposals/_filters_small_view.html.erb +0 -18
  271. data/app/views/decidim/proposals/proposals/_proposal_similar.html.erb +0 -22
  272. data/app/views/decidim/proposals/proposals/_wizard_aside.html.erb +0 -20
  273. data/app/views/decidim/proposals/proposals/participatory_texts/_index.html.erb +0 -19
  274. data/app/views/decidim/proposals/versions/index.html.erb +0 -16
  275. data/config/environment.rb +0 -0
  276. data/lib/decidim/proposals/test/capybara_proposals_picker.rb +0 -59
@@ -32,7 +32,7 @@ en:
32
32
  cost_report: Cost report
33
33
  execution_period: Execution period
34
34
  proposals_copy:
35
- copy_proposals: I understand that this will import all proposals from the selected component to the current one and that this action can't be reversed.
35
+ copy_proposals: I understand that this will import all proposals from the selected component to the current one and that this action cannot be reversed.
36
36
  origin_component_id: Component to copy the proposals from
37
37
  proposals_import:
38
38
  import_proposals: Import proposals
@@ -111,16 +111,18 @@ en:
111
111
  values:
112
112
  accepted: Accepted
113
113
  evaluating: Evaluating
114
+ not_answered: Not answered
114
115
  published: Published
115
116
  rejected: Rejected
116
117
  validating: Technical validation
117
118
  withdrawn: Withdrawn
118
- state_null:
119
- label: State
120
- values:
121
- 'true': Not answered
122
119
  valuator_role_ids_has:
123
120
  label: Assigned to valuator
121
+ with_any_state:
122
+ label: Answered
123
+ values:
124
+ state_not_published: Not answered
125
+ state_published: Answered
124
126
  search_placeholder:
125
127
  id_string_or_title_cont: Search %{collection} by ID or title.
126
128
  components:
@@ -214,7 +216,7 @@ en:
214
216
  endorsements_enabled: Endorsements enabled
215
217
  proposal_answering_enabled: Proposal answering enabled
216
218
  publish_answers_immediately: Publish proposal answers immediately
217
- publish_answers_immediately_help_html: Mind that if you answer any proposal without this enabled, you'll need to publish them manually by selecting them and using the action for publication. For more info on how this works, see <a href="https://docs.decidim.org/en/admin/components/proposals/answers#_publication" target="_blank">proposals' answers documentation page</a>.
219
+ publish_answers_immediately_help_html: Mind that if you answer any proposal without this enabled, you will need to publish them manually by selecting them and using the action for publication. For more info on how this works, see <a href="https://docs.decidim.org/en/admin/components/proposals/answers#_publication" target="_blank">proposals' answers documentation page</a>.
218
220
  suggested_hashtags: Hashtags suggested to participants for new proposals
219
221
  votes_blocked: Supports blocked
220
222
  votes_enabled: Supports enabled
@@ -223,10 +225,10 @@ en:
223
225
  proposals:
224
226
  admin:
225
227
  proposal_note_created:
226
- email_intro: Someone has left a note on the proposal "%{resource_title}". Check it out at <a href="%{admin_proposal_info_url}">the admin panel</a>
228
+ email_intro: Someone has left a note on the proposal "%{resource_title}". Check it out at <a href="%{admin_proposal_info_url}">the admin panel</a>.
227
229
  email_outro: You have received this notification because you can valuate the proposal.
228
230
  email_subject: Someone left a note on proposal %{resource_title}.
229
- notification_title: Someone has left a note on the proposal <a href="%{resource_path}">%{resource_title}</a>. Check it out at <a href="%{admin_proposal_info_path}">the admin panel</a>
231
+ notification_title: Someone has left a note on the proposal <a href="%{resource_path}">%{resource_title}</a>. Check it out at <a href="%{admin_proposal_info_path}">the admin panel</a>.
230
232
  collaborative_draft_access_accepted:
231
233
  email_intro: '%{requester_name} has been accepted to access as a contributor of the <a href="%{resource_url}">%{resource_title}</a> collaborative draft.'
232
234
  email_outro: You have received this notification because you are a collaborator of <a href="%{resource_url}">%{resource_title}</a>.
@@ -261,12 +263,12 @@ en:
261
263
  email_intro: 'You can now create new proposals in %{participatory_space_title}! Start participating in this page:'
262
264
  email_outro: You have received this notification because you are following %{participatory_space_title}. You can stop receiving notifications following the previous link.
263
265
  email_subject: Proposals now available in %{participatory_space_title}
264
- notification_title: You can now put forward <a href="%{resource_path}">new proposals</a> in <a href="%{participatory_space_url}">%{participatory_space_title}</a>
266
+ notification_title: You can now put forward <a href="%{resource_path}">new proposals</a> in <a href="%{participatory_space_url}">%{participatory_space_title}</a>.
265
267
  endorsing_enabled:
266
268
  email_intro: 'You can endorse proposals in %{participatory_space_title}! Start participating in this page:'
267
269
  email_outro: You have received this notification because you are following %{participatory_space_title}. You can stop receiving notifications following the previous link.
268
270
  email_subject: Proposals endorsing has started for %{participatory_space_title}
269
- notification_title: You can now start <a href="%{resource_path}">endorsing proposals</a> in <a href="%{participatory_space_url}">%{participatory_space_title}</a>
271
+ notification_title: You can now start <a href="%{resource_path}">endorsing proposals</a> in <a href="%{participatory_space_url}">%{participatory_space_title}</a>.
270
272
  proposal_accepted:
271
273
  affected_user:
272
274
  email_intro: 'Your proposal "%{resource_title}" has been accepted. You can read the answer in this page:'
@@ -276,7 +278,7 @@ en:
276
278
  follower:
277
279
  email_intro: 'The proposal "%{resource_title}" has been accepted. You can read the answer in this page:'
278
280
  email_outro: You have received this notification because you are following "%{resource_title}". You can unfollow it from the previous link.
279
- email_subject: A proposal you're following has been accepted
281
+ email_subject: A proposal you are following has been accepted
280
282
  notification_title: The <a href="%{resource_path}">%{resource_title}</a> proposal has been accepted.
281
283
  proposal_evaluating:
282
284
  affected_user:
@@ -287,7 +289,7 @@ en:
287
289
  follower:
288
290
  email_intro: 'The proposal "%{resource_title}" is currently being evaluated. You can check for an answer in this page:'
289
291
  email_outro: You have received this notification because you are following "%{resource_title}". You can unfollow it from the previous link.
290
- email_subject: A proposal you're following is being evaluated
292
+ email_subject: A proposal you are following is being evaluated
291
293
  notification_title: The <a href="%{resource_path}">%{resource_title}</a> proposal is being evaluated.
292
294
  proposal_mentioned:
293
295
  email_intro: Your proposal "%{mentioned_proposal_title}" has been mentioned <a href="%{resource_url}">in this space</a> in the comments.
@@ -303,8 +305,8 @@ en:
303
305
  email_intro: The proposal "%{resource_title}" has been added to "%{participatory_space_title}" that you are following.
304
306
  email_outro: You have received this notification because you are following "%{participatory_space_title}". You can stop receiving notifications following the previous link.
305
307
  email_subject: New proposal "%{resource_title}" added to %{participatory_space_title}
306
- notification_title: The proposal <a href="%{resource_path}">%{resource_title}</a> has been added to %{participatory_space_title} by %{author}
307
- notification_title_official: The official proposal <a href="%{resource_path}">%{resource_title}</a> has been added to %{participatory_space_title}
308
+ notification_title: The proposal <a href="%{resource_path}">%{resource_title}</a> has been added to %{participatory_space_title} by %{author}.
309
+ notification_title_official: The official proposal <a href="%{resource_path}">%{resource_title}</a> has been added to %{participatory_space_title}.
308
310
  proposal_rejected:
309
311
  affected_user:
310
312
  email_intro: 'Your proposal "%{resource_title}" has been rejected. You can read the answer in this page:'
@@ -314,7 +316,7 @@ en:
314
316
  follower:
315
317
  email_intro: 'The proposal "%{resource_title}" has been rejected. You can read the answer in this page:'
316
318
  email_outro: You have received this notification because you are following "%{resource_title}". You can unfollow it from the previous link.
317
- email_subject: A proposal you're following has been rejected
319
+ email_subject: A proposal you are following has been rejected
318
320
  notification_title: The <a href="%{resource_path}">%{resource_title}</a> proposal has been rejected.
319
321
  proposal_update_category:
320
322
  email_intro: 'An admin has updated the category of your proposal "%{resource_title}", check it out in this page:'
@@ -353,7 +355,7 @@ en:
353
355
  description_own: You have given support to %{score} proposals.
354
356
  name: Proposal supports
355
357
  next_level_in: Give support to %{score} more proposals to reach the next level!
356
- unearned_another: This participant hasn't given support to any proposals yet.
358
+ unearned_another: This participant has not given support to any proposals yet.
357
359
  unearned_own: You have given support to no proposals yet.
358
360
  proposals:
359
361
  conditions:
@@ -364,7 +366,7 @@ en:
364
366
  description_own: You have created %{score} proposals.
365
367
  name: Proposals
366
368
  next_level_in: Create %{score} more proposals to reach the next level!
367
- unearned_another: This participant hasn't created any proposals yet.
369
+ unearned_another: This participant has not created any proposals yet.
368
370
  unearned_own: You have created no proposals yet.
369
371
  metrics:
370
372
  accepted_proposals:
@@ -385,7 +387,8 @@ en:
385
387
  title: Supports
386
388
  participatory_spaces:
387
389
  highlighted_proposals:
388
- see_all: See all proposals (%{count})
390
+ last: Last proposals
391
+ see_all: See all proposals
389
392
  proposals:
390
393
  actions:
391
394
  answer_proposal: Answer proposal
@@ -429,8 +432,8 @@ en:
429
432
  one: proposal
430
433
  other: proposals
431
434
  title:
432
- answers: Import proposal answers
433
- proposals: Import proposals
435
+ answers: Import proposal answers from a file
436
+ proposals: Import proposals from a file
434
437
  models:
435
438
  proposal:
436
439
  name: Proposal
@@ -455,12 +458,12 @@ en:
455
458
  md: Markdown
456
459
  odt: ODT
457
460
  bottom_hint: "(You will be able to preview and sort document sections)"
458
- document_legend: 'Add a document lesser than 2MB, each section until 3 levels deep will be parsed into proposals. Suported formats are: %{valid_mime_types}'
461
+ document_legend: 'Add a document lesser than 2MB, each section until 3 levels deep will be parsed into proposals. Supported formats are: %{valid_mime_types}'
459
462
  title: Add document
460
463
  upload_document: Upload document
461
464
  publish:
462
- invalid: Could not publish proposals
463
- success: All proposals have been published
465
+ invalid: There was a problem publishing proposals.
466
+ success: All proposals have been published.
464
467
  sections:
465
468
  article: "<em>Article</em>"
466
469
  section: "<em>Section:</em> <strong>%{title}</strong>"
@@ -477,8 +480,8 @@ en:
477
480
  title: Answer for proposal %{title}
478
481
  proposal_notes:
479
482
  create:
480
- error: There was a problem creating this proposal note
481
- success: Proposal note successfully created
483
+ error: There was a problem creating this proposal note.
484
+ success: Proposal note successfully created.
482
485
  form:
483
486
  note: Note
484
487
  submit: Submit
@@ -486,11 +489,11 @@ en:
486
489
  title: Private notes
487
490
  proposals:
488
491
  answer:
489
- invalid: There's been a problem answering this proposal
490
- success: Proposal successfully answered
492
+ invalid: There has been a problem answering this proposal.
493
+ success: Proposal successfully answered.
491
494
  create:
492
- invalid: There's been a problem creating this proposal
493
- success: Proposal successfully created
495
+ invalid: There has been a problem creating this proposal.
496
+ success: Proposal successfully created.
494
497
  edit:
495
498
  title: Update proposal
496
499
  update: Update
@@ -524,55 +527,47 @@ en:
524
527
  create: Create
525
528
  title: Create proposal
526
529
  publish_answers:
527
- number_of_proposals: Answers for %{number} proposals will be published.
528
- select_a_proposal: Please select a proposal
530
+ number_of_proposals: Answers for %{number} proposal's will be published?
531
+ select_a_proposal: Please select a proposal.
529
532
  show:
530
533
  amendments_count: Amendments count
531
534
  assigned_valuators: Assigned valuators
532
- authors: Authors
533
535
  body: Body
534
536
  comments_count: Comments count
535
- comments_negative_count: Against
536
- comments_neutral_count: Neutral
537
- comments_positive_count: Favor
538
- created_at: Creation date
539
537
  documents: Documents
540
538
  endorsements_count: Endorsements count
541
- endorsements_ranking: Ranking by endorsements
542
539
  endorsers: Endorsers
543
- link: Link
540
+ link: See proposal
544
541
  n_more_endorsers:
545
542
  one: and 1 more
546
543
  other: and %{count} more
547
544
  photos: Photos
548
- proposals: Proposals
549
545
  ranking: "%{ranking} of %{total}"
550
546
  related_meetings: Related meetings
551
547
  remove_assignment: Remove assignment
552
548
  remove_assignment_confirmation: Are you sure you want to remove the valuator from this proposal?
553
549
  valuators: Valuators
554
550
  votes_count: Supports count
555
- votes_ranking: Ranking by supports
556
551
  update_category:
557
552
  invalid: 'These proposals already had the %{subject_name} category: %{proposals}.'
558
- select_a_category: Please select a category
559
- select_a_proposal: Please select a proposal
553
+ select_a_category: Please select a category.
554
+ select_a_proposal: Please select a proposal.
560
555
  success: 'Proposals successfully updated to the %{subject_name} category: %{proposals}.'
561
556
  update_scope:
562
557
  invalid: 'These proposals already had the %{subject_name} scope: %{proposals}.'
563
- select_a_proposal: Please select a proposal
564
- select_a_scope: Please select a scope
558
+ select_a_proposal: Please select a proposal.
559
+ select_a_scope: Please select a scope.
565
560
  success: 'Proposals successfully updated to the %{subject_name} scope: %{proposals}.'
566
561
  proposals_imports:
567
562
  create:
568
- invalid: There was a problem importing the proposals
569
- success: "%{number} proposals successfully imported"
563
+ invalid: There was a problem importing the proposals.
564
+ success: "%{number} proposals successfully imported."
570
565
  new:
571
566
  create: Import proposals
572
567
  no_components: There are no other proposal components in this participatory space to import the proposals from.
573
568
  select_component: Please select a component
574
569
  select_states: Check the status of the proposals to import
575
- title: Import proposals
570
+ title: Import proposals from another component
576
571
  proposals_merges:
577
572
  create:
578
573
  invalid: 'There has been a problem merging the selected proposals because some of them:'
@@ -583,11 +578,11 @@ en:
583
578
  success: Successfully splitted the proposals into new ones.
584
579
  valuation_assignments:
585
580
  create:
586
- invalid: There was an error assigning proposals to a valuator
587
- success: Proposals assigned to a valuator successfully
581
+ invalid: There was an error assigning proposals to a valuator.
582
+ success: Proposals assigned to a valuator successfully.
588
583
  delete:
589
- invalid: There was an error unassigning proposals from a valuator
590
- success: Valuator unassigned from proposals successfully
584
+ invalid: There was an error unassigning proposals from a valuator.
585
+ success: Valuator unassigned from proposals successfully.
591
586
  admin_log:
592
587
  proposal:
593
588
  answer: "%{user_name} answered the %{resource_name} proposal on the %{space_name} space"
@@ -606,16 +601,12 @@ en:
606
601
  rejected: Rejected
607
602
  withdrawn: Withdrawn
608
603
  application_helper:
609
- filter_category_values:
610
- all: All
611
604
  filter_origin_values:
612
605
  all: All
613
606
  meetings: Meetings
614
607
  official: Official
615
608
  participants: Participants
616
609
  user_groups: Groups
617
- filter_scope_values:
618
- all: All
619
610
  filter_state_values:
620
611
  accepted: Accepted
621
612
  all: All
@@ -631,24 +622,19 @@ en:
631
622
  publish:
632
623
  error: There was a problem publishing the collaborative draft.
633
624
  irreversible_action_modal:
634
- body: After publishing the draft as a proposal, the draft won't be editable anymore. The proposal won't accept new authors or contributions.
625
+ body: After publishing the draft as a proposal, it will not be editable anymore. The proposal will not accept new authors or contributions.
635
626
  cancel: Cancel
636
627
  ok: Publish as a Proposal
637
628
  title: The following action is irreversible
638
629
  success: Collaborative draft published successfully as a proposal.
639
- view_collaborative_draft: View Collaborative Draft
640
630
  withdraw:
641
631
  error: There was a problem closing the collaborative draft.
642
632
  irreversible_action_modal:
643
- body: After closing the draft, the draft won't be editable anymore. The draft won't accept new authors or contributions.
633
+ body: After closing the draft, it will not be editable anymore. The draft will not accept new authors or contributions.
644
634
  cancel: Cancel
645
635
  ok: Withdraw the collaborative draft
646
636
  title: The following action is irreversible
647
637
  success: Collaborative draft withdrawn successfully.
648
- count:
649
- drafts_count:
650
- one: "%{count} collaborative draft"
651
- other: "%{count} collaborative drafts"
652
638
  create:
653
639
  error: There was a problem creating this collaborative draft.
654
640
  success: Collaborative draft successfully created.
@@ -658,6 +644,8 @@ en:
658
644
  select_a_category: Please select a category
659
645
  send: Send
660
646
  title: Edit collaborative draft
647
+ empty: There are no collaborative drafts yet
648
+ empty_filters: There is no collaborative draft with this criteria
661
649
  filters:
662
650
  all: All
663
651
  amendment: Amendments
@@ -674,6 +662,11 @@ en:
674
662
  filter: Filter
675
663
  filter_by: Filter by
676
664
  unfold: Unfold
665
+ index:
666
+ count:
667
+ one: "%{count} collaborative draft"
668
+ other: "%{count} collaborative drafts"
669
+ name: Collaborative drafts
677
670
  new:
678
671
  add_file: Add file
679
672
  edit_file: Edit file
@@ -688,32 +681,30 @@ en:
688
681
  requests:
689
682
  accepted_request:
690
683
  error: Could not be accepted as a collaborator, please try again later.
691
- success: "@%{user} has been accepted as a collaborator successfully"
684
+ success: "@%{user} has been accepted as a collaborator successfully."
692
685
  access_requested:
693
686
  error: Your request could not be completed, please try again later.
694
- success: Your request to collaborate has been successfully sent
687
+ success: Your request to collaborate has been successfully sent.
695
688
  collaboration_requests:
696
689
  accept_request: Accept
697
690
  reject_request: Reject
698
691
  title: Collaboration requests
699
692
  rejected_request:
700
693
  error: Could not be rejected as a collaborator, please try again later.
701
- success: "@%{user} has been successfully rejected as a collaborator"
694
+ success: "@%{user} has been successfully rejected as a collaborator."
702
695
  show:
703
- back: Back
704
696
  edit: Edit collaborative draft
705
- final_proposal: final proposal
697
+ final_proposal: Final proposal
706
698
  final_proposal_help_text: This draft is finished. Check out the final proposal
707
699
  hidden_authors_count:
708
700
  one: and %{count} more person
709
701
  other: and %{count} more people
710
- info-message: This is a <strong>collaborative draft</strong> for a proposal. This means that you can help their authors to shape the proposal using the comment section below or improve it directly by requesting access to edit it. Once the authors grant you access, you'll be able to make changes to this draft.
702
+ info-message: This is a <strong>collaborative draft</strong> for a proposal. This means that you can help their authors to shape the proposal using the comment section below or improve it directly by requesting access to edit it. Once the authors grant you access, you will be able to make changes to this draft.
711
703
  publish: Publish
712
704
  publish_info: Publish this version of the draft or
713
- published_proposal: published proposal
705
+ published_proposal: Published proposal
714
706
  request_access: Request access
715
707
  requested_access: Access requested
716
- version_history: see version history for this proposal
717
708
  withdraw: withdraw the draft
718
709
  states:
719
710
  open: Open
@@ -724,12 +715,11 @@ en:
724
715
  success: Collaborative draft successfully updated.
725
716
  wizard_aside:
726
717
  back_from_collaborative_draft: Back to collaborative drafts
727
- info: You are creating a <strong>collaborative draft</strong>.
728
718
  wizard_header:
729
719
  title: Create your collaborative draft
730
720
  content_blocks:
731
721
  highlighted_proposals:
732
- proposals: Proposals
722
+ name: Proposals
733
723
  create:
734
724
  error: There was a problem saving the proposal.
735
725
  success: Proposal successfully created. Saved as a Draft.
@@ -737,14 +727,9 @@ en:
737
727
  error: There was a problem deleting the collaborative draft.
738
728
  success: Proposal draft was successfully deleted.
739
729
  last_activity:
740
- new_proposal_at_html: "<span>New proposal at %{link}</span>"
741
- proposal_updated_at_html: "<span>Proposal updated at %{link}</span>"
730
+ new_proposal: 'New proposal:'
731
+ proposal_updated: 'Proposal updated:'
742
732
  models:
743
- collaborative_draft:
744
- fields:
745
- authors: Authors
746
- comments: Comments
747
- contributions: Contributions
748
733
  proposal:
749
734
  fields:
750
735
  category: Category
@@ -761,13 +746,12 @@ en:
761
746
  valuators: Valuators
762
747
  votes: Votes
763
748
  new:
764
- limit_reached: You can't create new proposals since you've exceeded the limit.
749
+ limit_reached: You cannot create new proposals since you have exceeded the limit.
765
750
  participatory_text_proposal:
766
751
  alternative_title: There are no participatory texts at the moment
767
752
  buttons:
768
753
  amend: Amend
769
754
  comment: Comment
770
- comments: Comments
771
755
  proposal_votes:
772
756
  create:
773
757
  error: There was a problem supporting the proposal.
@@ -779,21 +763,14 @@ en:
779
763
  complete:
780
764
  send: Send
781
765
  title: Complete your proposal
782
- count:
783
- proposals_count:
784
- one: "%{count} proposal"
785
- other: "%{count} proposals"
786
766
  dynamic_map_instructions:
787
767
  description: The coordinates will be updated when clicking on 'preview' button. However, the address does not change.
788
768
  instructions: You can move the point on the map.
789
769
  edit:
790
770
  add_documents: Add documents
791
- add_image: Add image
792
771
  attachment_legend: "(Optional) Add an attachment"
793
772
  back: Back
794
773
  edit_documents: Edit documents
795
- edit_image: Edit image
796
- gallery_legend: "(Optional) Add an image to the proposal card"
797
774
  select_a_category: Please select a category
798
775
  send: Send
799
776
  title: Edit proposal
@@ -815,23 +792,16 @@ en:
815
792
  state: Status
816
793
  type: Type
817
794
  voted: Supported
818
- filters_small_view:
819
- close_modal: Close modal
820
- filter: Filter
821
- filter_by: Filter by
822
- unfold: Unfold
823
795
  index:
824
796
  click_here: See all proposals
825
797
  collaborative_drafts_list: Access collaborative drafts
798
+ count:
799
+ one: "%{count} proposal"
800
+ other: "%{count} proposals"
826
801
  new_proposal: New proposal
827
802
  see_all: See all proposals
828
803
  see_all_withdrawn: See all withdrawn proposals
829
804
  text_banner: You are viewing the list of proposals withdrawn by their authors. %{go_back_link}.
830
- view_proposal: View proposal
831
- linked_proposals:
832
- proposal_votes:
833
- one: support
834
- other: supports
835
805
  new:
836
806
  send: Continue
837
807
  title: Create your proposal
@@ -845,10 +815,8 @@ en:
845
815
  recent: Recent
846
816
  with_more_authors: With more authors
847
817
  participatory_texts:
848
- index:
849
- document_index: Document index
850
818
  view_index:
851
- see_index: See index
819
+ document_index: Document index
852
820
  placeholder:
853
821
  address: 37 Homewood Drive Brownsburg, IN 46112
854
822
  preview:
@@ -860,20 +828,13 @@ en:
860
828
  other: You will be able to edit this proposal during the first %{count} minutes after the proposal is published. Once this time window passes, you will not be able to edit the proposal.
861
829
  publish: Publish
862
830
  title: Publish your proposal
863
- proposal:
864
- creation_date: 'Creation: %{date}'
865
- view_proposal: View proposal
866
831
  proposals:
867
- empty: There is no proposal yet
868
- empty_filters: There isn't any proposal with this criteria
832
+ empty: There are no proposals yet.
833
+ empty_filters: There are no proposals with this criteria.
869
834
  show:
870
835
  answer: Answer
871
- back_to: Back to
872
- back_to_list: Back to list
873
836
  changes_at_title: Amendment to "%{title}"
874
- comments: Comments
875
837
  edit_proposal: Edit proposal
876
- endorsements_list: List of Endorsements
877
838
  estimated_cost: Estimated cost
878
839
  hidden_endorsers_count:
879
840
  one: and %{count} more person
@@ -887,14 +848,9 @@ en:
887
848
  proposal_accepted_reason: 'This proposal has been accepted because:'
888
849
  proposal_in_evaluation_reason: This proposal is being evaluated
889
850
  proposal_rejected_reason: 'This proposal has been rejected because:'
890
- read_less: Read less
891
- read_more: Read more
892
- report: Report
893
851
  withdraw_btn_hint: You can withdraw your proposal if you change your mind, as long as you have not received any support. The proposal is not deleted, it will appear in the list of withdrawn proposals.
894
852
  withdraw_confirmation_html: Are you sure you want to withdraw this proposal?<br><br><strong>This action cannot be cancelled!</strong>
895
853
  withdraw_proposal: Withdraw proposal
896
- tags:
897
- changed_from: "(changed from <u>%{previous_name}</u> by an administrator)"
898
854
  update:
899
855
  title: Update proposal
900
856
  vote_button:
@@ -908,45 +864,37 @@ en:
908
864
  count:
909
865
  one: Support
910
866
  other: Supports
911
- most_popular_proposal: Most popular proposal
912
- need_more_votes: Need more supports
913
867
  voting_rules:
914
868
  can_accumulate_supports_beyond_threshold:
915
869
  description: Each proposal can accumulate more than %{limit} supports
916
870
  minimum_votes_per_user:
917
871
  description: You must distribute a minimum of %{votes} supports among different proposals.
918
- given_enough_votes: You've given enough supports.
872
+ given_enough_votes: You have given enough supports.
919
873
  supports_remaining: You have to support %{remaining_votes} more proposals for your supports to be taken into account.
920
874
  proposal_limit:
921
875
  description: You can create up to %{limit} proposals.
922
876
  threshold_per_proposal:
923
- description: In order to be validated proposals need to reach %{limit} supports
877
+ description: In order to be validated proposals need to reach %{limit} supports.
924
878
  title: 'Supports are subject to the following rules:'
925
879
  vote_limit:
926
880
  description: You can support up to %{limit} proposals.
927
- left: Remaining
928
- votes: Supports
881
+ votes: Remaining %{number} supports
929
882
  wizard_aside:
930
883
  back: Back
931
884
  back_from_step_1: Back to proposals
932
885
  back_from_step_2: Back to proposals
933
886
  back_from_step_3: Back to compare proposals
934
887
  back_from_step_4: Back to edit draft
935
- info: You are creating a <strong>proposal</strong>.
936
888
  wizard_steps:
937
889
  current_step: Current step
938
- see_steps: see steps
939
890
  step_1: Create your proposal
940
891
  step_2: Compare
941
892
  step_3: Complete
942
893
  step_4: Publish your proposal
943
- step_of: Step %{current_step_num} of %{total_steps}
944
894
  title: Proposal creation steps
945
895
  proposals_picker:
946
896
  choose_proposals: Choose proposals
947
- close: Close
948
- more_proposals: There are %{number} more proposals. Refine your search to locate them.
949
- no_proposals: No proposals match your search criteria or there isn't any proposals.
897
+ no_proposals: No proposals match your search criteria or there is not any proposals.
950
898
  publish:
951
899
  error: There was a problem publishing the proposal.
952
900
  success: Proposal successfully published.
@@ -959,15 +907,11 @@ en:
959
907
  error: There was a problem saving the collaborative draft.
960
908
  success: Proposal draft successfully updated.
961
909
  versions:
962
- collaborative_drafts:
963
- back_to_resource: Go back to collaborative draft
964
910
  index:
965
911
  title: Versions
966
- proposals:
967
- back_to_resource: Go back to proposal
968
912
  withdraw:
969
913
  errors:
970
- has_supports: This proposal can not be withdrawn because it already has supports.
914
+ has_supports: This proposal cannot be withdrawn because it already has supports.
971
915
  resource_links:
972
916
  copied_from_component:
973
917
  proposal_proposal: Related proposals