decidim-initiatives 0.9.1 → 0.11.0.pre1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (176) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +16 -16
  3. data/Rakefile +1 -1
  4. data/app/assets/javascripts/decidim/initiatives/admin/invite_users.js +7 -8
  5. data/app/assets/javascripts/decidim/initiatives/application.js +1 -1
  6. data/app/assets/javascripts/decidim/initiatives/identity_selector_dialog.js +6 -9
  7. data/app/assets/javascripts/decidim/initiatives/scoped_type.js +8 -12
  8. data/app/assets/stylesheet/decidim/initiatives/admin.css.scss +10 -11
  9. data/app/assets/stylesheet/decidim/initiatives/application.css.scss +19 -19
  10. data/app/assets/stylesheet/decidim/initiatives/popularity_item.css.scss +40 -24
  11. data/app/assets/stylesheet/decidim/initiatives/print-initiative.css.scss +26 -26
  12. data/app/assets/stylesheet/decidim/initiatives/social_share.css.scss +5 -4
  13. data/app/assets/stylesheet/decidim/initiatives/statistics.css.scss +4 -4
  14. data/app/commands/decidim/initiatives/admin/create_initiative_type.rb +1 -4
  15. data/app/commands/decidim/initiatives/admin/publish_initiative.rb +44 -0
  16. data/app/commands/decidim/initiatives/admin/send_initiative_to_technical_validation.rb +42 -0
  17. data/app/commands/decidim/initiatives/admin/unpublish_initiative.rb +44 -0
  18. data/app/commands/decidim/initiatives/admin/update_initiative.rb +9 -7
  19. data/app/commands/decidim/initiatives/admin/update_initiative_type.rb +1 -4
  20. data/app/commands/decidim/initiatives/create_initiative.rb +23 -13
  21. data/app/commands/decidim/initiatives/spawn_committee_request.rb +1 -1
  22. data/app/constraints/decidim/initiatives/current_component.rb +28 -0
  23. data/app/constraints/decidim/initiatives/current_initiative.rb +2 -2
  24. data/app/controllers/concerns/decidim/initiatives/action_authorization.rb +1 -1
  25. data/app/controllers/concerns/decidim/initiatives/admin/initiative_admin.rb +1 -3
  26. data/app/controllers/concerns/decidim/initiatives/orderable.rb +6 -6
  27. data/app/controllers/concerns/decidim/initiatives/type_selector_options.rb +1 -1
  28. data/app/controllers/decidim/initiatives/admin/application_controller.rb +1 -1
  29. data/app/controllers/decidim/initiatives/admin/{feature_permissions_controller.rb → component_permissions_controller.rb} +2 -2
  30. data/app/controllers/decidim/initiatives/admin/components_controller.rb +15 -0
  31. data/app/controllers/decidim/initiatives/admin/initiatives_controller.rb +29 -18
  32. data/app/controllers/decidim/initiatives/admin/initiatives_type_scopes_controller.rb +6 -6
  33. data/app/controllers/decidim/initiatives/admin/initiatives_types_controller.rb +7 -7
  34. data/app/controllers/decidim/initiatives/committee_requests_controller.rb +2 -3
  35. data/app/controllers/decidim/initiatives/create_initiative_controller.rb +5 -9
  36. data/app/controllers/decidim/initiatives/initiative_votes_controller.rb +3 -3
  37. data/app/controllers/decidim/initiatives/initiatives_controller.rb +0 -1
  38. data/app/forms/decidim/initiatives/admin/initiative_form.rb +1 -1
  39. data/app/forms/decidim/initiatives/admin/initiative_type_scope_form.rb +3 -2
  40. data/app/helpers/decidim/initiatives/create_initiative_helper.rb +7 -7
  41. data/app/helpers/decidim/initiatives/initiative_helper.rb +36 -29
  42. data/app/helpers/decidim/initiatives/initiatives_helper.rb +1 -1
  43. data/app/mailers/decidim/initiatives/initiatives_mailer.rb +18 -16
  44. data/app/models/decidim/initiative.rb +15 -7
  45. data/app/models/decidim/initiatives/abilities/admin/attachments_ability.rb +1 -0
  46. data/app/models/decidim/initiatives/abilities/admin/{features_ability.rb → components_ability.rb} +2 -3
  47. data/app/models/decidim/initiatives_vote.rb +3 -3
  48. data/app/presenters/decidim/initiatives/admin_log/initiative_presenter.rb +49 -0
  49. data/app/presenters/decidim/initiatives/initiative_stats_presenter.rb +4 -4
  50. data/app/queries/decidim/initiatives/admin/manageable_initiatives.rb +8 -8
  51. data/app/queries/decidim/initiatives/freetext_initiative_types.rb +1 -1
  52. data/app/queries/decidim/initiatives/initiatives_created.rb +1 -1
  53. data/app/queries/decidim/initiatives/initiatives_promoted.rb +3 -3
  54. data/app/queries/decidim/initiatives/outdated_validating_initiatives.rb +3 -3
  55. data/app/queries/decidim/initiatives/support_period_finished_initiatives.rb +3 -3
  56. data/app/services/decidim/initiatives/initiative_search.rb +5 -5
  57. data/app/services/decidim/initiatives/progress_notifier.rb +1 -1
  58. data/app/services/decidim/initiatives/status_change_notifier.rb +3 -9
  59. data/app/views/decidim/initiatives/_initiative.html.erb +11 -11
  60. data/app/views/decidim/initiatives/admin/committee_requests/index.html.erb +14 -14
  61. data/app/views/decidim/initiatives/admin/initiatives/_form.html.erb +5 -5
  62. data/app/views/decidim/initiatives/admin/initiatives/edit.html.erb +25 -25
  63. data/app/views/decidim/initiatives/admin/initiatives/index.html.erb +31 -31
  64. data/app/views/decidim/initiatives/admin/initiatives/show.html.erb +7 -8
  65. data/app/views/decidim/initiatives/admin/initiatives_type_scopes/_form.html.erb +1 -3
  66. data/app/views/decidim/initiatives/admin/initiatives_type_scopes/edit.html.erb +8 -8
  67. data/app/views/decidim/initiatives/admin/initiatives_type_scopes/new.html.erb +5 -5
  68. data/app/views/decidim/initiatives/admin/initiatives_types/_form.html.erb +2 -2
  69. data/app/views/decidim/initiatives/admin/initiatives_types/_initiative_type_scopes.html.erb +9 -9
  70. data/app/views/decidim/initiatives/admin/initiatives_types/edit.html.erb +8 -8
  71. data/app/views/decidim/initiatives/admin/initiatives_types/index.html.erb +3 -3
  72. data/app/views/decidim/initiatives/admin/initiatives_types/new.html.erb +3 -3
  73. data/app/views/decidim/initiatives/committee_requests/new.html.erb +13 -13
  74. data/app/views/decidim/initiatives/create_initiative/_finish_help.html.erb +7 -0
  75. data/app/views/decidim/initiatives/create_initiative/_share_committee_link.html.erb +4 -4
  76. data/app/views/decidim/initiatives/create_initiative/fill_data.html.erb +8 -8
  77. data/app/views/decidim/initiatives/create_initiative/finish.html.erb +10 -10
  78. data/app/views/decidim/initiatives/create_initiative/previous_form.html.erb +9 -9
  79. data/app/views/decidim/initiatives/create_initiative/promotal_committee.html.erb +8 -8
  80. data/app/views/decidim/initiatives/create_initiative/select_initiative_type.html.erb +9 -10
  81. data/app/views/decidim/initiatives/create_initiative/show_similar_initiatives.html.erb +7 -7
  82. data/app/views/decidim/initiatives/initiative_votes/update_buttons_and_counters.js.erb +2 -2
  83. data/app/views/decidim/initiatives/initiative_widgets/show.html.erb +1 -1
  84. data/app/views/decidim/initiatives/initiatives/_author.html.erb +3 -3
  85. data/app/views/decidim/initiatives/initiatives/_count.html.erb +1 -1
  86. data/app/views/decidim/initiatives/initiatives/_filters.html.erb +11 -11
  87. data/app/views/decidim/initiatives/initiatives/_filters_small_view.html.erb +5 -5
  88. data/app/views/decidim/initiatives/initiatives/_index_header.html.erb +1 -1
  89. data/app/views/decidim/initiatives/initiatives/_initiative_badge.html.erb +1 -1
  90. data/app/views/decidim/initiatives/initiatives/_initiatives.html.erb +2 -2
  91. data/app/views/decidim/initiatives/initiatives/_result.html.erb +4 -4
  92. data/app/views/decidim/initiatives/initiatives/_statistics.html.erb +5 -5
  93. data/app/views/decidim/initiatives/initiatives/_supports.html.erb +1 -1
  94. data/app/views/decidim/initiatives/initiatives/_supports_count.html.erb +1 -2
  95. data/app/views/decidim/initiatives/initiatives/_tags.html.erb +2 -2
  96. data/app/views/decidim/initiatives/initiatives/_vote_button.html.erb +3 -3
  97. data/app/views/decidim/initiatives/initiatives/_vote_cabin.html.erb +3 -3
  98. data/app/views/decidim/initiatives/initiatives/_votes_count.html.erb +2 -2
  99. data/app/views/decidim/initiatives/initiatives/index.html.erb +8 -8
  100. data/app/views/decidim/initiatives/initiatives/index.js.erb +2 -2
  101. data/app/views/decidim/initiatives/initiatives/show.html.erb +21 -21
  102. data/app/views/decidim/initiatives/initiatives/signature_identities.html.erb +6 -6
  103. data/app/views/decidim/initiatives/initiatives_mailer/_initiative_link.html.erb +2 -2
  104. data/app/views/decidim/initiatives/initiatives_mailer/notify_creation.html.erb +6 -6
  105. data/app/views/decidim/initiatives/initiatives_mailer/notify_progress.html.erb +2 -2
  106. data/app/views/decidim/initiatives/initiatives_mailer/notify_state_change.html.erb +2 -2
  107. data/app/views/decidim/initiatives/initiatives_mailer/notify_validating_request.html.erb +2 -2
  108. data/app/views/decidim/initiatives/initiatives_type_scopes/search.html.erb +1 -1
  109. data/app/views/layouts/decidim/_initiative_creation_header.html.erb +3 -4
  110. data/app/views/layouts/decidim/_initiative_header.html.erb +21 -21
  111. data/app/views/layouts/decidim/_initiative_header_steps.html.erb +1 -1
  112. data/app/views/layouts/decidim/admin/initiative.html.erb +15 -15
  113. data/app/views/layouts/decidim/admin/initiatives.html.erb +4 -4
  114. data/app/views/layouts/decidim/initiative.html.erb +2 -2
  115. data/app/views/layouts/decidim/initiative_creation.html.erb +4 -6
  116. data/config/locales/ca.yml +243 -246
  117. data/config/locales/en.yml +218 -222
  118. data/config/locales/es.yml +243 -246
  119. data/config/locales/eu.yml +322 -0
  120. data/config/locales/fi.yml +322 -0
  121. data/config/locales/fr.yml +322 -0
  122. data/config/locales/gl.yml +322 -0
  123. data/config/locales/it.yml +322 -0
  124. data/config/locales/nl.yml +322 -0
  125. data/config/locales/pl.yml +328 -0
  126. data/config/locales/pt-BR.yml +322 -0
  127. data/config/locales/pt.yml +322 -0
  128. data/config/locales/ru.yml +5 -0
  129. data/config/locales/sv.yml +322 -0
  130. data/config/locales/uk.yml +5 -0
  131. data/db/migrate/20170906091626_create_decidim_initiatives_types.rb +1 -1
  132. data/db/migrate/20170906094044_create_decidim_initiatives.rb +3 -3
  133. data/db/migrate/20170922152432_create_decidim_initiatives_committee_members.rb +2 -2
  134. data/db/migrate/20170927153744_change_signature_interval_to_optional.rb +2 -0
  135. data/db/migrate/20170928160302_add_decidim_user_group_id_to_decidim_initiatives_votes.rb +2 -0
  136. data/db/migrate/20170928160912_remove_scope_from_decidim_initiatives_votes.rb +2 -0
  137. data/db/migrate/20171011110714_add_banner_image_to_initiative_type.rb +2 -0
  138. data/db/migrate/20171011152425_add_hashtag_to_initiatives.rb +2 -0
  139. data/db/migrate/20171013090432_add_initiative_supports_count_to_initiative.rb +7 -1
  140. data/db/migrate/20171017090551_create_decidim_initiatives_decidim_initiatives_type_scopes.rb +4 -2
  141. data/db/migrate/20171017091458_remove_supports_required_from_decidim_initiatives_types.rb +2 -0
  142. data/db/migrate/20171017091734_add_scopes_for_all_initiative_types.rb +29 -5
  143. data/db/migrate/20171017094911_add_scoped_type_to_initiative.rb +2 -0
  144. data/db/migrate/20171017095143_update_initiative_scoped_type.rb +47 -4
  145. data/db/migrate/20171017103029_remove_unused_attributes_from_initiative.rb +2 -0
  146. data/db/migrate/20171019103358_add_initiative_notification_dates.rb +2 -0
  147. data/db/migrate/20171023075942_create_initiative_extra_data.rb +2 -0
  148. data/db/migrate/20171023122747_create_static_pages.rb +15 -6
  149. data/db/migrate/20171023141639_optional_validation_support.rb +2 -0
  150. data/db/migrate/20171031183855_add_offline_votes_to_initiative.rb +2 -0
  151. data/db/migrate/20171102094250_drop_initiative_description_index.rb +2 -0
  152. data/db/migrate/20171102094556_create_initiative_description_index.rb +4 -2
  153. data/db/migrate/20171109132011_enable_pg_extensions.rb +5 -5
  154. data/db/migrate/20171204094639_drop_decidim_initiatives_extra_data.rb +2 -0
  155. data/db/migrate/20171204103119_remove_requires_validation_from_decidim_initiatives_type.rb +2 -0
  156. data/db/migrate/20171214161410_add_unique_on_votes.rb +10 -9
  157. data/lib/decidim/initiatives.rb +2 -2
  158. data/lib/decidim/initiatives/admin_engine.rb +26 -26
  159. data/lib/decidim/initiatives/current_locale.rb +1 -1
  160. data/lib/decidim/initiatives/engine.rb +5 -5
  161. data/lib/decidim/initiatives/initiative_slug.rb +2 -3
  162. data/lib/decidim/initiatives/participatory_space.rb +19 -17
  163. data/lib/decidim/initiatives/test/factories.rb +2 -7
  164. data/lib/decidim/initiatives/version.rb +3 -1
  165. data/lib/tasks/decidim_initiatives.rake +2 -0
  166. metadata +57 -90
  167. data/LICENSE-AGPLv3.txt +0 -661
  168. data/app/constraints/decidim/initiatives/current_feature.rb +0 -28
  169. data/app/controllers/decidim/initiatives/admin/features_controller.rb +0 -16
  170. data/app/helpers/decidim/initiatives/partial_translations_helper.rb +0 -28
  171. data/app/views/decidim/initiatives/create_initiative/_compare_help.ca.html.erb +0 -2
  172. data/app/views/decidim/initiatives/create_initiative/_compare_help.en.html.erb +0 -2
  173. data/app/views/decidim/initiatives/create_initiative/_compare_help.es.html.erb +0 -2
  174. data/app/views/decidim/initiatives/create_initiative/_finish_help.ca.html.erb +0 -19
  175. data/app/views/decidim/initiatives/create_initiative/_finish_help.en.html.erb +0 -20
  176. data/app/views/decidim/initiatives/create_initiative/_finish_help.es.html.erb +0 -19
@@ -1,327 +1,323 @@
1
+ ---
1
2
  en:
2
3
  activemodel:
3
4
  attributes:
4
5
  initiative:
5
- title: Title
6
+ decidim_user_group_id: Author
6
7
  description: Description
7
- signature_start_time: Start of signature collection period
8
- signature_end_time: End of signature collection period
9
8
  offline_votes: Face-to-face supports
9
+ scope_id: Scope
10
+ signature_end_time: End of signature collection period
11
+ signature_start_time: Start of signature collection period
10
12
  signature_type: Signature type
11
13
  signature_type_values:
12
- online: OnLine
13
- offline: Face to face
14
14
  any: Mixed
15
- scope_id: Scope
16
- decidim_user_group_id: Author
17
- initiatives_type:
15
+ offline: Face to face
16
+ online: OnLine
18
17
  title: Title
19
- description: Description
20
- banner_image: Banner image
21
- initiatives_committee_member:
22
- user: Committee member
23
18
  initiative_author:
24
- name: Name and Surname
25
- id_document: DNI/NIE
26
19
  address: Address
27
20
  city: City
28
- province: Province
29
- post_code: Post code
21
+ id_document: DNI/NIE
22
+ name: Name and Surname
30
23
  phone_number: Phone number
24
+ post_code: Post code
25
+ province: Province
26
+ initiatives_committee_member:
27
+ user: Committee member
28
+ initiatives_type:
29
+ banner_image: Banner image
30
+ description: Description
31
+ title: Title
31
32
  organization_data:
32
- name: Complete name
33
- id_document: CIF
34
33
  address: Address
34
+ id_document: CIF
35
+ name: Complete name
35
36
  decidim:
36
37
  admin:
37
- titles:
38
- initiatives_types: Initiative types
39
- initiatives: Initiatives
40
38
  menu:
41
- initiatives_types: Initiative types
42
39
  initiatives: Initiatives
40
+ initiatives_types: Initiative types
43
41
  models:
44
- initiatives_types:
45
- name: Initiative type
46
- fields:
47
- title: Initiative types
48
- created_at: Created at
49
42
  initiatives:
50
43
  fields:
51
- title: Initiatives
52
- state: State
53
44
  created_at: Created at
45
+ state: State
54
46
  supports_count: Supports
47
+ title: Initiatives
55
48
  initiatives_type_scope:
56
- name: Initiative type scope
57
49
  fields:
58
50
  scope: Scope
59
51
  supports_required: Supports required
60
- menu:
61
- initiatives: Initiatives
52
+ name: Initiative type scope
53
+ initiatives_types:
54
+ fields:
55
+ created_at: Created at
56
+ title: Initiative types
57
+ name: Initiative type
58
+ titles:
59
+ initiatives: Initiatives
60
+ initiatives_types: Initiative types
62
61
  initiatives:
63
62
  admin:
64
- initiatives_types:
65
- new:
66
- title: New initiative type
67
- create: Create
68
- form:
69
- title: General information
70
- edit:
71
- update: Update
72
- destroy: Destroy
73
- confirm_destroy: Are you sure?
74
- create:
75
- success: A new initiative type has been successfully created
76
- error: An error has occurred
77
- update:
78
- success: The given initiative has been successfully updated
79
- error: An error has occurred
80
- destroy:
81
- success: The initiative type has been successfully removed
82
- initiative_type_scopes:
83
- title: Scopes for the initiative type
84
- initiatives_type_scopes:
85
- destroy:
86
- success: The scope has been successfully removed
87
- create:
88
- success: A new scope for the given initiative type has been created
89
- error: An error has occurred
90
- update:
91
- success: The scope has been successfully updated
92
- error: An error has occurred
63
+ committee_requests:
64
+ index:
65
+ approve: Approve
66
+ confirm_revoke: Are you sure?
67
+ invite_to_committee_help: Share this link to invite other users to the promotion committee
68
+ no_members_yet: There are no members in the promoter committee
69
+ revoke: Revoke
70
+ title: Committee members
71
+ initiatives:
93
72
  edit:
94
- title: Edit initiative type scope
73
+ accept: Accept initiative
74
+ confirm: Are you sure?
75
+ discard: Discard the initiative
76
+ export_votes: Export supports
77
+ reject: Reject initiative
78
+ send_to_technical_validation: Send to technical validation
79
+ success: The initiative has been sent to technical validation
95
80
  update: Update
96
- back: Back
97
- destroy: Destroy
98
- confirm_destroy: Are you sure?
99
- new:
100
- title: Create initiative type scope
101
- create: Create
102
- back: Back
103
- initiatives:
81
+ form:
82
+ title: General information
104
83
  index:
105
84
  actions_title: Action
106
- preview: Preview
107
- search: Busca
108
- filter_by: Filter by
109
- print: Print
110
85
  filter:
86
+ accepted: Accepted
111
87
  all: All
112
88
  created: Created
113
- validating: Technical validation
114
89
  discarded: Discarded
115
90
  published: Published
116
91
  rejected: Rejected
117
- accepted: Accepted
92
+ validating: Technical validation
93
+ filter_by: Filter by
94
+ preview: Preview
95
+ print: Print
96
+ search: Busca
118
97
  show:
119
98
  print: Print
99
+ update:
100
+ error: An error has occurred
101
+ success: The citizen initiative has been successfully updated
102
+ initiatives_type_scopes:
103
+ create:
104
+ error: An error has occurred
105
+ success: A new scope for the given initiative type has been created
106
+ destroy:
107
+ success: The scope has been successfully removed
120
108
  edit:
109
+ back: Back
110
+ confirm_destroy: Are you sure?
111
+ destroy: Destroy
112
+ title: Edit initiative type scope
113
+ update: Update
114
+ new:
115
+ back: Back
116
+ create: Create
117
+ title: Create initiative type scope
118
+ update:
119
+ error: An error has occurred
120
+ success: The scope has been successfully updated
121
+ initiatives_types:
122
+ create:
123
+ error: An error has occurred
124
+ success: A new initiative type has been successfully created
125
+ destroy:
126
+ success: The initiative type has been successfully removed
127
+ edit:
128
+ confirm_destroy: Are you sure?
129
+ destroy: Destroy
121
130
  update: Update
122
- validate: Validate the initiative
123
- discard: Discard the initiative
124
- confirm: Are you sure?
125
- send_to_technical_validation: Send to technical validation
126
- success: The initiative has been sent to technical validation
127
- export_votes: Export supports
128
- accept: Accept initiative
129
- reject: Reject initiative
130
131
  form:
131
132
  title: General information
133
+ initiative_type_scopes:
134
+ title: Scopes for the initiative type
135
+ new:
136
+ create: Create
137
+ title: New initiative type
132
138
  update:
133
- success: The citizen initiative has been successfully updated
134
139
  error: An error has occurred
135
- committee_requests:
136
- index:
137
- title: Committee members
138
- invite_to_committee_help: Share this link to invite other users to the promotion committee
139
- approve: Approve
140
- revoke: Revoke
141
- confirm_revoke: Are you sure?
142
- no_members_yet: There are no members in the promoter committee
143
- states:
144
- accepted: Accepted
145
- expired: Expired
140
+ success: The given initiative has been successfully updated
141
+ admin_log:
142
+ initiative:
143
+ publish: "%{user_name} published the %{resource_name} initiative"
144
+ send_to_technical_validation: "%{user_name} sent the %{resource_name} initiative to technical validation"
145
+ unpublish: "%{user_name} discarded the %{resource_name} initiative"
146
+ update: "%{user_name} updated the %{resource_name} initiative"
146
147
  admin_states:
148
+ accepted: Accepted
147
149
  created: Created
148
- validating: Technical validation
149
150
  discarded: Discarded
150
151
  published: Published
151
152
  rejected: Rejected
152
- accepted: Accepted
153
+ validating: Technical validation
154
+ committee_requests:
155
+ new:
156
+ continue: Continue
157
+ help_text: You are about to request being membership of the promoter committee of this initiative
158
+ spawn:
159
+ success: Your request has been sent to the initiative author.
160
+ create_initiative:
161
+ fill_data:
162
+ back: Back
163
+ continue: Continue
164
+ fill_data_help: "<ul> <li>Revise the content of your initiative. Is your title easy to understand? Is the objective of your initiative clear?</li> <li>You have to choose the type of signature. In-person, online or a combination of both</li> <li>Which is the geographic scope of the initiative? City, district?</li> </ul>"
165
+ initiative_type: Initiative type
166
+ more_information: "(More information)"
167
+ select_scope: Select a scope
168
+ finish:
169
+ back: Back
170
+ back_to_initiatives: Back to initiatives
171
+ callout_text: Congratulations! Your citizen initiative has been created successfully.
172
+ go_to_my_initiatives: Go to my initiatives
173
+ more_information: "(More information)"
174
+ finish_help:
175
+ access_reminder: Remember that you will always be able to access your initiatives through the user menu.
176
+ help_for_organizations: If you are an association you will have to upload the minutes of the management board of all the organisations that conform the Promoting Commission
177
+ help_in_person_signatures: If you have chosen to collect the signatures in-person or combined with online, you will have to upload the required information.
178
+ help_text: Remember that in order to properly process the initiative you must access the administration panel where you will find the user menu, upload the information required and send it to procedure.
179
+ initiatives_page_link: You can look up all this information on the %{link} dedicated to inform about initiatives.
180
+ page: page
181
+ previous_form:
182
+ back: Back
183
+ continue: Continue
184
+ help: What does the initiative consist of? Write down the title and description. We recommend a short and concise title and a description focused on the proposed solution.
185
+ more_information: "(More information)"
186
+ promotal_committee:
187
+ back: Back
188
+ individual_help_text: Citizen initiatives require a Promoting Commission consisting of at least three people (attestors). You must share the following link with the other people that are part of this initiative. When your contacts receive this link they will have to follow the indicated steps.
189
+ more_information: "(More information)"
190
+ select_initiative_type:
191
+ back: Back
192
+ more_information: "(More information)"
193
+ select: Choose
194
+ select_initiative_type_help: Citizen initiatives are a means by which the citizenship can intervene so that the City Council can undertake actions in defence of the general interest that are within fields of municipal jurisdiction. Which initiative do you want to launch?
195
+ share_committee_link:
196
+ continue: Continue
197
+ invite_to_committee_help: Link to invite people that will be part of the promotal committee
198
+ show_similar_initiatives:
199
+ back: Back
200
+ compare_help: If any of the following initiatives is similar to yours we encourage you to support it. Your proposal will have more possibilities to get done.
201
+ continue: My initiative is different
202
+ more_information: "(More information)"
153
203
  events:
154
204
  create_initiative_event:
155
- email_intro: |-
156
- %{author_name} %{author_nickname}, who you are following, has created a new initiative, check it out and contribute:
205
+ email_intro: "%{author_name} %{author_nickname}, who you are following, has created a new initiative, check it out and contribute:"
157
206
  email_outro: You have received this notification because you are following %{author_nickname}. You can stop receiving notifications following the previous link.
158
207
  email_subject: New initiative by %{author_nickname}
159
208
  notification_title: The <a href="%{resource_path}">%{resource_title}</a> initiative was created by <a href="%{author_path}">%{author_name} %{author_nickname}</a>.
160
209
  endorse_initiative_event:
161
- email_intro: |-
162
- %{author_name} %{author_nickname}, who you are following, has endorsed the following initiative, maybe you want to contribute to the conversation:
210
+ email_intro: "%{author_name} %{author_nickname}, who you are following, has endorsed the following initiative, maybe you want to contribute to the conversation:"
163
211
  email_outro: You have received this notification because you are following %{author_nickname}. You can stop receiving notifications following the previous link.
164
212
  email_subject: Initiative endorsed by %{author_nickname}
165
213
  notification_title: The <a href="%{resource_path}">%{resource_title}</a> initiative was endorsed by <a href="%{author_path}">%{author_name} %{author_nickname}</a>.
166
214
  index:
167
215
  title: Initiatives
216
+ initiative_votes:
217
+ create:
218
+ error: There's been errors when voting the initiative.
168
219
  initiatives:
220
+ author:
221
+ deleted: Deleted
169
222
  count:
170
223
  title:
171
224
  one: "%{count} initiative"
172
225
  other: "%{count} initiatives"
173
- index_header:
174
- new_initiative: New initiative
175
- filters_small_view:
176
- filter: Filter
177
- unfold: Unfold
178
- filter_by: Filter by
179
- close_modal: Close window
180
226
  filters:
181
- search: Search
182
- open: Open
227
+ any: Any
228
+ author: Author
183
229
  closed: Closed
230
+ myself: My initiatives
231
+ open: Open
232
+ search: Search
184
233
  state: State
185
234
  type: Type
186
- all: All
187
- any: Any
188
- myself: My initiatives
189
- author: Author
190
- scopes: Scopes
191
- scope_prompt: Select a scope
192
235
  type_prompt: Select a type
193
- initiatives:
194
- index:
195
- loading: Loading results...
196
- supports_count:
197
- count:
198
- one: " support"
199
- other: " supports"
236
+ filters_small_view:
237
+ close_modal: Close window
238
+ filter: Filter
239
+ filter_by: Filter by
240
+ unfold: Unfold
241
+ index_header:
242
+ new_initiative: New initiative
200
243
  orders:
201
244
  label: 'Sort initiatives by:'
245
+ most_commented: Most commented
246
+ most_voted: Most voted
202
247
  random: Random
203
248
  recent: Most recent
204
- most_voted: Most voted
205
- most_commented: Most commented
249
+ result:
250
+ initiative_accepted_reason: This initiative has been accepted because
251
+ initiative_rejected_reason: This initiative has been rejected due to its lack of supports.
252
+ show:
253
+ any_vote_method: This citizen initiative collects online support as well as face to face.
254
+ offline_method: This citizen initiative only collects face to face supports.
255
+ signature_identities:
256
+ select_identity: Select user identity
257
+ statistics:
258
+ assistants_count_title: Assistants
259
+ comments_count_title: Comments
260
+ meetings_count_title: Meetings
261
+ supports_count_title: Adhesions
262
+ supports:
263
+ title: Listing of adhesions
264
+ supports_count:
265
+ count:
266
+ one: " support"
267
+ other: " supports"
206
268
  vote_cabin:
207
- vote: Sign
208
- votes_blocked: Voting disabled
209
269
  already_voted: Already voted
210
270
  supports_required: "%{total_supports} votes required"
211
- signature_identities:
212
- select_identity: Select user identity
271
+ vote: Sign
272
+ votes_blocked: Voting disabled
213
273
  votes_count:
214
274
  count:
215
275
  one: SIGNATURE
216
276
  other: SIGNATURES
217
- show:
218
- start_time: Start time
219
- end_time: End time
220
- any_vote_method: This citizen initiative collects online support as well as face to face.
221
- offline_method: This citizen initiative only collects face to face supports.
222
- promoter_committee:
223
- committee_section_title: Promoter committee
224
- committee_members:
225
- title: Committee members
226
- supports:
227
- title: Listing of adhesions
228
- statistics:
229
- supports_count_title: Adhesions
230
- comments_count_title: Comments
231
- meetings_count_title: Meetings
232
- assistants_count_title: Assistants
233
- result:
234
- initiative_accepted_reason: This initiative has been accepted because
235
- initiative_rejected_reason: This initiative has been rejected due to its lack of supports.
236
- initiative_votes:
237
- create:
238
- error: There's been errors when voting the initiative.
239
- create_initiative:
240
- select_initiative_type:
241
- select_initiative_type_help: Citizen initiatives are a means by which the citizenship can intervene so that the City Council can undertake actions in defence of the general interest that are within fields of municipal jurisdiction. Which initiative do you want to launch?
242
- select: Choose
243
- back: Back
244
- more_information: (More information)
245
- previous_form:
246
- continue: Continue
247
- back: Back
248
- help: What does the initiative consist of? Write down the title and description. We recommend a short and concise title and a description focused on the proposed solution.
249
- more_information: (More information)
250
- show_similar_initiatives:
251
- continue: My initiative is different
252
- back: Back
253
- more_information: (More information)
254
- fill_data:
255
- continue: Continue
256
- back: Back
257
- select_scope: Select a scope
258
- initiative_type: Initiative type
259
- fill_data_help:
260
- <ul>
261
- <li>Revise the content of your initiative. Is your title easy to understand? Is the objective of your initiative clear?</li>
262
- <li>You have to choose the type of signature. In-person, online or a combination of both</li>
263
- <li>Which is the geographic scope of the initiative? City, district?</li>
264
- </ul>
265
- more_information: (More information)
266
- promotal_committee:
267
- back: Back
268
- continue: Continue
269
- individual_help_text: Citizen initiatives require a Promoting Commission consisting of at least three people (attestors). You must share the following link with the other people that are part of this initiative. When your contacts receive this link they will have to follow the indicated steps.
270
- more_information: (More information)
271
- share_committee_link:
272
- invite_to_committee_help: Link to invite people that will be part of the promotal committee
273
- continue: Continue
274
- finish:
275
- back: Back
276
- callout_text: Congratulations! Your citizen initiative has been created successfully.
277
- go_to_my_initiatives: Go to my initiatives
278
- back_to_initiatives: Back to initiatives
279
- more_information: (More information)
280
- committee_requests:
281
- new:
282
- continue: Continue
283
- help_text: You are about to request being membership of the promoter committee of this initiative
284
- spawn:
285
- success: Your request has been sent to the initiative author.
286
277
  initiatives_mailer:
287
- progress_report_for: "Resume about the initiative: %{title}"
288
- progress_report_body_for: "The initiative %{title} has reached the %{percentage}% of required supports."
289
- technical_validation_for: "The initiative %{title} has requested its technical validation."
290
- technical_validation_body_for: "The initiative %{title} has requested its technical validation."
291
- status_change_for: "The initiative %{title} has changed its state"
292
- status_change_body_for: "The initiative %{title} has changed its state to: %{state}"
293
- creation_subject: "Your citizen initiative '%{title}' has been created"
294
- more_information: Here you have more information about the initiative creation process.
295
- promotal_committee_help: "Remember that you must invite at least %{member_count} people to promotal committee. Forward the following link to invite people to the promotal committee"
278
+ creation_subject: Your citizen initiative '%{title}' has been created
296
279
  initiative_link:
297
280
  check_initiative_details: You can see the initiative details
298
281
  here: here
282
+ more_information: Here you have more information about the initiative creation process.
283
+ progress_report_body_for: The initiative %{title} has reached the %{percentage}% of required supports.
284
+ progress_report_for: 'Resume about the initiative: %{title}'
285
+ promotal_committee_help: Remember that you must invite at least %{member_count} people to promotal committee. Forward the following link to invite people to the promotal committee
286
+ status_change_body_for: 'The initiative %{title} has changed its state to: %{state}'
287
+ status_change_for: The initiative %{title} has changed its state
288
+ technical_validation_body_for: The initiative %{title} has requested its technical validation.
289
+ technical_validation_for: The initiative %{title} has requested its technical validation.
299
290
  pages:
300
291
  home:
301
292
  highlighted_initiatives:
302
293
  active_initiatives: Active initiatives
303
294
  see_all_initiatives: See all initiatives
295
+ states:
296
+ accepted: Accepted
297
+ expired: Expired
298
+ menu:
299
+ initiatives: Initiatives
304
300
  layouts:
305
301
  decidim:
302
+ admin:
303
+ initiative:
304
+ attachments: Attachments
305
+ committee_members: Committee members
306
+ components: Components
307
+ information: Information
306
308
  initiative_creation_header:
307
- select_initiative_type: Choose
308
- previous_form: Start
309
- show_similar_initiatives: Compare
310
309
  fill_data: Create
311
- promotal_committee: Promotal committee
312
310
  finish: Finish
311
+ previous_form: Start
312
+ promotal_committee: Promotal committee
313
+ select_initiative_type: Choose
314
+ show_similar_initiatives: Compare
315
+ initiative_header:
316
+ initiative_menu_item: Initiative
317
+ unfold: Unfold
313
318
  initiatives:
314
319
  initiative:
315
- check_and_support: Check it out and sign
316
320
  check: Check it out
321
+ check_and_support: Check it out and sign
317
322
  no_initiatives_yet:
318
323
  no_initiatives_yet: No initiatives yet!
319
- initiative_header:
320
- initiative_menu_item: Initiative
321
- unfold: Unfold
322
- admin:
323
- initiative:
324
- information: Information
325
- features: Features
326
- attachments: Attachments
327
- committee_members: Committee members