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.
- checksums.yaml +4 -4
- data/README.md +16 -16
- data/Rakefile +1 -1
- data/app/assets/javascripts/decidim/initiatives/admin/invite_users.js +7 -8
- data/app/assets/javascripts/decidim/initiatives/application.js +1 -1
- data/app/assets/javascripts/decidim/initiatives/identity_selector_dialog.js +6 -9
- data/app/assets/javascripts/decidim/initiatives/scoped_type.js +8 -12
- data/app/assets/stylesheet/decidim/initiatives/admin.css.scss +10 -11
- data/app/assets/stylesheet/decidim/initiatives/application.css.scss +19 -19
- data/app/assets/stylesheet/decidim/initiatives/popularity_item.css.scss +40 -24
- data/app/assets/stylesheet/decidim/initiatives/print-initiative.css.scss +26 -26
- data/app/assets/stylesheet/decidim/initiatives/social_share.css.scss +5 -4
- data/app/assets/stylesheet/decidim/initiatives/statistics.css.scss +4 -4
- data/app/commands/decidim/initiatives/admin/create_initiative_type.rb +1 -4
- data/app/commands/decidim/initiatives/admin/publish_initiative.rb +44 -0
- data/app/commands/decidim/initiatives/admin/send_initiative_to_technical_validation.rb +42 -0
- data/app/commands/decidim/initiatives/admin/unpublish_initiative.rb +44 -0
- data/app/commands/decidim/initiatives/admin/update_initiative.rb +9 -7
- data/app/commands/decidim/initiatives/admin/update_initiative_type.rb +1 -4
- data/app/commands/decidim/initiatives/create_initiative.rb +23 -13
- data/app/commands/decidim/initiatives/spawn_committee_request.rb +1 -1
- data/app/constraints/decidim/initiatives/current_component.rb +28 -0
- data/app/constraints/decidim/initiatives/current_initiative.rb +2 -2
- data/app/controllers/concerns/decidim/initiatives/action_authorization.rb +1 -1
- data/app/controllers/concerns/decidim/initiatives/admin/initiative_admin.rb +1 -3
- data/app/controllers/concerns/decidim/initiatives/orderable.rb +6 -6
- data/app/controllers/concerns/decidim/initiatives/type_selector_options.rb +1 -1
- data/app/controllers/decidim/initiatives/admin/application_controller.rb +1 -1
- data/app/controllers/decidim/initiatives/admin/{feature_permissions_controller.rb → component_permissions_controller.rb} +2 -2
- data/app/controllers/decidim/initiatives/admin/components_controller.rb +15 -0
- data/app/controllers/decidim/initiatives/admin/initiatives_controller.rb +29 -18
- data/app/controllers/decidim/initiatives/admin/initiatives_type_scopes_controller.rb +6 -6
- data/app/controllers/decidim/initiatives/admin/initiatives_types_controller.rb +7 -7
- data/app/controllers/decidim/initiatives/committee_requests_controller.rb +2 -3
- data/app/controllers/decidim/initiatives/create_initiative_controller.rb +5 -9
- data/app/controllers/decidim/initiatives/initiative_votes_controller.rb +3 -3
- data/app/controllers/decidim/initiatives/initiatives_controller.rb +0 -1
- data/app/forms/decidim/initiatives/admin/initiative_form.rb +1 -1
- data/app/forms/decidim/initiatives/admin/initiative_type_scope_form.rb +3 -2
- data/app/helpers/decidim/initiatives/create_initiative_helper.rb +7 -7
- data/app/helpers/decidim/initiatives/initiative_helper.rb +36 -29
- data/app/helpers/decidim/initiatives/initiatives_helper.rb +1 -1
- data/app/mailers/decidim/initiatives/initiatives_mailer.rb +18 -16
- data/app/models/decidim/initiative.rb +15 -7
- data/app/models/decidim/initiatives/abilities/admin/attachments_ability.rb +1 -0
- data/app/models/decidim/initiatives/abilities/admin/{features_ability.rb → components_ability.rb} +2 -3
- data/app/models/decidim/initiatives_vote.rb +3 -3
- data/app/presenters/decidim/initiatives/admin_log/initiative_presenter.rb +49 -0
- data/app/presenters/decidim/initiatives/initiative_stats_presenter.rb +4 -4
- data/app/queries/decidim/initiatives/admin/manageable_initiatives.rb +8 -8
- data/app/queries/decidim/initiatives/freetext_initiative_types.rb +1 -1
- data/app/queries/decidim/initiatives/initiatives_created.rb +1 -1
- data/app/queries/decidim/initiatives/initiatives_promoted.rb +3 -3
- data/app/queries/decidim/initiatives/outdated_validating_initiatives.rb +3 -3
- data/app/queries/decidim/initiatives/support_period_finished_initiatives.rb +3 -3
- data/app/services/decidim/initiatives/initiative_search.rb +5 -5
- data/app/services/decidim/initiatives/progress_notifier.rb +1 -1
- data/app/services/decidim/initiatives/status_change_notifier.rb +3 -9
- data/app/views/decidim/initiatives/_initiative.html.erb +11 -11
- data/app/views/decidim/initiatives/admin/committee_requests/index.html.erb +14 -14
- data/app/views/decidim/initiatives/admin/initiatives/_form.html.erb +5 -5
- data/app/views/decidim/initiatives/admin/initiatives/edit.html.erb +25 -25
- data/app/views/decidim/initiatives/admin/initiatives/index.html.erb +31 -31
- data/app/views/decidim/initiatives/admin/initiatives/show.html.erb +7 -8
- data/app/views/decidim/initiatives/admin/initiatives_type_scopes/_form.html.erb +1 -3
- data/app/views/decidim/initiatives/admin/initiatives_type_scopes/edit.html.erb +8 -8
- data/app/views/decidim/initiatives/admin/initiatives_type_scopes/new.html.erb +5 -5
- data/app/views/decidim/initiatives/admin/initiatives_types/_form.html.erb +2 -2
- data/app/views/decidim/initiatives/admin/initiatives_types/_initiative_type_scopes.html.erb +9 -9
- data/app/views/decidim/initiatives/admin/initiatives_types/edit.html.erb +8 -8
- data/app/views/decidim/initiatives/admin/initiatives_types/index.html.erb +3 -3
- data/app/views/decidim/initiatives/admin/initiatives_types/new.html.erb +3 -3
- data/app/views/decidim/initiatives/committee_requests/new.html.erb +13 -13
- data/app/views/decidim/initiatives/create_initiative/_finish_help.html.erb +7 -0
- data/app/views/decidim/initiatives/create_initiative/_share_committee_link.html.erb +4 -4
- data/app/views/decidim/initiatives/create_initiative/fill_data.html.erb +8 -8
- data/app/views/decidim/initiatives/create_initiative/finish.html.erb +10 -10
- data/app/views/decidim/initiatives/create_initiative/previous_form.html.erb +9 -9
- data/app/views/decidim/initiatives/create_initiative/promotal_committee.html.erb +8 -8
- data/app/views/decidim/initiatives/create_initiative/select_initiative_type.html.erb +9 -10
- data/app/views/decidim/initiatives/create_initiative/show_similar_initiatives.html.erb +7 -7
- data/app/views/decidim/initiatives/initiative_votes/update_buttons_and_counters.js.erb +2 -2
- data/app/views/decidim/initiatives/initiative_widgets/show.html.erb +1 -1
- data/app/views/decidim/initiatives/initiatives/_author.html.erb +3 -3
- data/app/views/decidim/initiatives/initiatives/_count.html.erb +1 -1
- data/app/views/decidim/initiatives/initiatives/_filters.html.erb +11 -11
- data/app/views/decidim/initiatives/initiatives/_filters_small_view.html.erb +5 -5
- data/app/views/decidim/initiatives/initiatives/_index_header.html.erb +1 -1
- data/app/views/decidim/initiatives/initiatives/_initiative_badge.html.erb +1 -1
- data/app/views/decidim/initiatives/initiatives/_initiatives.html.erb +2 -2
- data/app/views/decidim/initiatives/initiatives/_result.html.erb +4 -4
- data/app/views/decidim/initiatives/initiatives/_statistics.html.erb +5 -5
- data/app/views/decidim/initiatives/initiatives/_supports.html.erb +1 -1
- data/app/views/decidim/initiatives/initiatives/_supports_count.html.erb +1 -2
- data/app/views/decidim/initiatives/initiatives/_tags.html.erb +2 -2
- data/app/views/decidim/initiatives/initiatives/_vote_button.html.erb +3 -3
- data/app/views/decidim/initiatives/initiatives/_vote_cabin.html.erb +3 -3
- data/app/views/decidim/initiatives/initiatives/_votes_count.html.erb +2 -2
- data/app/views/decidim/initiatives/initiatives/index.html.erb +8 -8
- data/app/views/decidim/initiatives/initiatives/index.js.erb +2 -2
- data/app/views/decidim/initiatives/initiatives/show.html.erb +21 -21
- data/app/views/decidim/initiatives/initiatives/signature_identities.html.erb +6 -6
- data/app/views/decidim/initiatives/initiatives_mailer/_initiative_link.html.erb +2 -2
- data/app/views/decidim/initiatives/initiatives_mailer/notify_creation.html.erb +6 -6
- data/app/views/decidim/initiatives/initiatives_mailer/notify_progress.html.erb +2 -2
- data/app/views/decidim/initiatives/initiatives_mailer/notify_state_change.html.erb +2 -2
- data/app/views/decidim/initiatives/initiatives_mailer/notify_validating_request.html.erb +2 -2
- data/app/views/decidim/initiatives/initiatives_type_scopes/search.html.erb +1 -1
- data/app/views/layouts/decidim/_initiative_creation_header.html.erb +3 -4
- data/app/views/layouts/decidim/_initiative_header.html.erb +21 -21
- data/app/views/layouts/decidim/_initiative_header_steps.html.erb +1 -1
- data/app/views/layouts/decidim/admin/initiative.html.erb +15 -15
- data/app/views/layouts/decidim/admin/initiatives.html.erb +4 -4
- data/app/views/layouts/decidim/initiative.html.erb +2 -2
- data/app/views/layouts/decidim/initiative_creation.html.erb +4 -6
- data/config/locales/ca.yml +243 -246
- data/config/locales/en.yml +218 -222
- data/config/locales/es.yml +243 -246
- data/config/locales/eu.yml +322 -0
- data/config/locales/fi.yml +322 -0
- data/config/locales/fr.yml +322 -0
- data/config/locales/gl.yml +322 -0
- data/config/locales/it.yml +322 -0
- data/config/locales/nl.yml +322 -0
- data/config/locales/pl.yml +328 -0
- data/config/locales/pt-BR.yml +322 -0
- data/config/locales/pt.yml +322 -0
- data/config/locales/ru.yml +5 -0
- data/config/locales/sv.yml +322 -0
- data/config/locales/uk.yml +5 -0
- data/db/migrate/20170906091626_create_decidim_initiatives_types.rb +1 -1
- data/db/migrate/20170906094044_create_decidim_initiatives.rb +3 -3
- data/db/migrate/20170922152432_create_decidim_initiatives_committee_members.rb +2 -2
- data/db/migrate/20170927153744_change_signature_interval_to_optional.rb +2 -0
- data/db/migrate/20170928160302_add_decidim_user_group_id_to_decidim_initiatives_votes.rb +2 -0
- data/db/migrate/20170928160912_remove_scope_from_decidim_initiatives_votes.rb +2 -0
- data/db/migrate/20171011110714_add_banner_image_to_initiative_type.rb +2 -0
- data/db/migrate/20171011152425_add_hashtag_to_initiatives.rb +2 -0
- data/db/migrate/20171013090432_add_initiative_supports_count_to_initiative.rb +7 -1
- data/db/migrate/20171017090551_create_decidim_initiatives_decidim_initiatives_type_scopes.rb +4 -2
- data/db/migrate/20171017091458_remove_supports_required_from_decidim_initiatives_types.rb +2 -0
- data/db/migrate/20171017091734_add_scopes_for_all_initiative_types.rb +29 -5
- data/db/migrate/20171017094911_add_scoped_type_to_initiative.rb +2 -0
- data/db/migrate/20171017095143_update_initiative_scoped_type.rb +47 -4
- data/db/migrate/20171017103029_remove_unused_attributes_from_initiative.rb +2 -0
- data/db/migrate/20171019103358_add_initiative_notification_dates.rb +2 -0
- data/db/migrate/20171023075942_create_initiative_extra_data.rb +2 -0
- data/db/migrate/20171023122747_create_static_pages.rb +15 -6
- data/db/migrate/20171023141639_optional_validation_support.rb +2 -0
- data/db/migrate/20171031183855_add_offline_votes_to_initiative.rb +2 -0
- data/db/migrate/20171102094250_drop_initiative_description_index.rb +2 -0
- data/db/migrate/20171102094556_create_initiative_description_index.rb +4 -2
- data/db/migrate/20171109132011_enable_pg_extensions.rb +5 -5
- data/db/migrate/20171204094639_drop_decidim_initiatives_extra_data.rb +2 -0
- data/db/migrate/20171204103119_remove_requires_validation_from_decidim_initiatives_type.rb +2 -0
- data/db/migrate/20171214161410_add_unique_on_votes.rb +10 -9
- data/lib/decidim/initiatives.rb +2 -2
- data/lib/decidim/initiatives/admin_engine.rb +26 -26
- data/lib/decidim/initiatives/current_locale.rb +1 -1
- data/lib/decidim/initiatives/engine.rb +5 -5
- data/lib/decidim/initiatives/initiative_slug.rb +2 -3
- data/lib/decidim/initiatives/participatory_space.rb +19 -17
- data/lib/decidim/initiatives/test/factories.rb +2 -7
- data/lib/decidim/initiatives/version.rb +3 -1
- data/lib/tasks/decidim_initiatives.rake +2 -0
- metadata +57 -90
- data/LICENSE-AGPLv3.txt +0 -661
- data/app/constraints/decidim/initiatives/current_feature.rb +0 -28
- data/app/controllers/decidim/initiatives/admin/features_controller.rb +0 -16
- data/app/helpers/decidim/initiatives/partial_translations_helper.rb +0 -28
- data/app/views/decidim/initiatives/create_initiative/_compare_help.ca.html.erb +0 -2
- data/app/views/decidim/initiatives/create_initiative/_compare_help.en.html.erb +0 -2
- data/app/views/decidim/initiatives/create_initiative/_compare_help.es.html.erb +0 -2
- data/app/views/decidim/initiatives/create_initiative/_finish_help.ca.html.erb +0 -19
- data/app/views/decidim/initiatives/create_initiative/_finish_help.en.html.erb +0 -20
- data/app/views/decidim/initiatives/create_initiative/_finish_help.es.html.erb +0 -19
data/config/locales/en.yml
CHANGED
@@ -1,327 +1,323 @@
|
|
1
|
+
---
|
1
2
|
en:
|
2
3
|
activemodel:
|
3
4
|
attributes:
|
4
5
|
initiative:
|
5
|
-
|
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
|
-
|
16
|
-
|
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
|
-
|
29
|
-
|
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
|
-
|
61
|
-
|
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
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
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
|
-
|
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
|
-
|
97
|
-
|
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
|
-
|
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
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
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
|
-
|
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
|
-
|
182
|
-
|
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
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
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
|
-
|
205
|
-
|
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
|
-
|
212
|
-
|
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
|
-
|
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
|