decidim-proposals 0.27.6 → 0.28.0.rc4

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