decidim-initiatives 0.27.4 → 0.28.0.rc5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +7 -3
- data/app/cells/decidim/initiatives/content_blocks/highlighted_initiatives_cell.rb +17 -18
- data/app/cells/decidim/initiatives/initiative_cell.rb +6 -1
- data/app/cells/decidim/initiatives/initiative_dropdown_metadata_cell.rb +19 -0
- data/app/cells/decidim/initiatives/initiative_g_cell.rb +31 -0
- data/app/cells/decidim/initiatives/initiative_metadata_g_cell.rb +62 -0
- data/app/cells/decidim/initiatives/initiative_s_cell.rb +15 -0
- data/app/cells/decidim/initiatives_votes/vote/show.erb +25 -19
- data/app/cells/decidim/initiatives_votes/vote_cell.rb +3 -1
- data/app/commands/decidim/initiatives/admin/accept_initiative.rb +40 -0
- data/app/commands/decidim/initiatives/admin/create_initiative_type.rb +1 -1
- data/app/commands/decidim/initiatives/admin/create_initiative_type_scope.rb +1 -1
- data/app/commands/decidim/initiatives/admin/discard_initiative.rb +40 -0
- data/app/commands/decidim/initiatives/admin/publish_initiative.rb +1 -1
- data/app/commands/decidim/initiatives/admin/reject_initiative.rb +40 -0
- data/app/commands/decidim/initiatives/admin/send_initiative_to_technical_validation.rb +2 -2
- data/app/commands/decidim/initiatives/admin/unpublish_initiative.rb +1 -1
- data/app/commands/decidim/initiatives/admin/update_initiative.rb +1 -1
- data/app/commands/decidim/initiatives/admin/update_initiative_answer.rb +1 -1
- data/app/commands/decidim/initiatives/admin/update_initiative_type.rb +1 -1
- data/app/commands/decidim/initiatives/admin/update_initiative_type_scope.rb +1 -1
- data/app/commands/decidim/initiatives/admin/update_initiatives_settings.rb +1 -1
- data/app/commands/decidim/initiatives/attachment_methods.rb +2 -24
- data/app/commands/decidim/initiatives/create_initiative.rb +19 -14
- data/app/commands/decidim/initiatives/send_initiative_to_technical_validation.rb +2 -2
- data/app/commands/decidim/initiatives/spawn_committee_request.rb +1 -1
- data/app/commands/decidim/initiatives/unvote_initiative.rb +1 -1
- data/app/commands/decidim/initiatives/update_initiative.rb +9 -2
- data/app/commands/decidim/initiatives/validate_mobile_phone.rb +2 -2
- data/app/commands/decidim/initiatives/vote_initiative.rb +5 -5
- data/app/constraints/decidim/initiatives/current_initiative.rb +1 -1
- data/app/controllers/concerns/decidim/initiatives/admin/filterable.rb +2 -2
- data/app/controllers/concerns/decidim/initiatives/needs_initiative.rb +1 -1
- data/app/controllers/decidim/initiatives/admin/answers_controller.rb +3 -0
- data/app/controllers/decidim/initiatives/admin/committee_requests_controller.rb +2 -0
- data/app/controllers/decidim/initiatives/admin/components_controller.rb +3 -0
- data/app/controllers/decidim/initiatives/admin/initiative_attachments_controller.rb +2 -0
- data/app/controllers/decidim/initiatives/admin/initiatives_controller.rb +17 -6
- data/app/controllers/decidim/initiatives/admin/initiatives_permissions_controller.rb +3 -0
- data/app/controllers/decidim/initiatives/admin/initiatives_settings_controller.rb +2 -0
- data/app/controllers/decidim/initiatives/admin/initiatives_type_scopes_controller.rb +30 -0
- data/app/controllers/decidim/initiatives/admin/initiatives_types_controller.rb +14 -0
- data/app/controllers/decidim/initiatives/admin/initiatives_types_permissions_controller.rb +21 -0
- data/app/controllers/decidim/initiatives/admin/moderations/reports_controller.rb +2 -2
- data/app/controllers/decidim/initiatives/admin/moderations_controller.rb +4 -2
- data/app/controllers/decidim/initiatives/application_controller.rb +0 -1
- data/app/controllers/decidim/initiatives/authorization_create_modals_controller.rb +25 -0
- data/app/controllers/decidim/initiatives/authorization_sign_modals_controller.rb +2 -2
- data/app/controllers/decidim/initiatives/committee_requests_controller.rb +0 -2
- data/app/controllers/decidim/initiatives/create_initiative_controller.rb +62 -115
- data/app/controllers/decidim/initiatives/initiative_signatures_controller.rb +113 -81
- data/app/controllers/decidim/initiatives/initiative_types_controller.rb +7 -0
- data/app/controllers/decidim/initiatives/initiatives_controller.rb +37 -17
- data/app/controllers/decidim/initiatives/versions_controller.rb +0 -1
- data/app/events/decidim/initiatives/admin/initiative_sent_to_technical_validation_event.rb +1 -1
- data/app/events/decidim/initiatives/admin/support_threshold_reached_event.rb +1 -1
- data/app/events/decidim/initiatives/approve_membership_request_event.rb +12 -12
- data/app/events/decidim/initiatives/create_initiative_event.rb +6 -6
- data/app/events/decidim/initiatives/endorse_initiative_event.rb +1 -1
- data/app/events/decidim/initiatives/extend_initiative_event.rb +1 -1
- data/app/events/decidim/initiatives/initiative_sent_to_technical_validation_event.rb +1 -1
- data/app/events/decidim/initiatives/milestone_completed_event.rb +1 -1
- data/app/events/decidim/initiatives/revoke_membership_request_event.rb +12 -12
- data/app/events/decidim/initiatives/spawn_committee_request_event.rb +12 -12
- data/app/forms/decidim/initiatives/admin/initiative_form.rb +1 -1
- data/app/forms/decidim/initiatives/initiative_form.rb +22 -31
- data/app/forms/decidim/initiatives/previous_form.rb +4 -0
- data/app/forms/decidim/initiatives/vote_form.rb +11 -11
- data/app/helpers/decidim/initiatives/admin/initiatives_helper.rb +1 -1
- data/app/helpers/decidim/initiatives/application_helper.rb +4 -61
- data/app/helpers/decidim/initiatives/initiative_helper.rb +48 -5
- data/app/helpers/decidim/initiatives/initiatives_helper.rb +33 -12
- data/app/jobs/decidim/initiatives/export_initiatives_job.rb +1 -1
- data/app/models/decidim/initiative.rb +17 -20
- data/app/models/decidim/initiatives_vote.rb +1 -1
- data/app/packs/entrypoints/decidim_initiatives.js +3 -0
- data/app/packs/images/decidim/gamification/badges/decidim_gamification_badges_initiatives.svg +42 -1
- data/app/packs/src/decidim/initiatives/application.js +0 -1
- data/app/packs/src/decidim/initiatives/scoped_type.js +1 -1
- data/app/packs/stylesheets/decidim/initiatives/initiatives-votes.scss +21 -21
- data/app/packs/stylesheets/decidim/initiatives/print-initiative.scss +59 -31
- data/app/packs/stylesheets/initiatives.scss +171 -0
- data/app/permissions/decidim/initiatives/permissions.rb +3 -3
- data/app/presenters/decidim/initiatives/admin_log/initiative_presenter.rb +2 -2
- data/app/presenters/decidim/initiatives/admin_log/initiatives_settings_presenter.rb +2 -2
- data/app/presenters/decidim/initiatives/admin_log/initiatives_type_presenter.rb +2 -2
- data/app/queries/decidim/initiatives/organization_prioritized_initiatives.rb +1 -1
- data/app/queries/decidim/initiatives/similar_initiatives.rb +2 -2
- data/app/queries/decidim/initiatives/support_period_finished_initiatives.rb +1 -1
- data/app/queries/decidim/initiatives/user_authorizations.rb +1 -1
- data/app/services/decidim/initiatives/pdf_signature_example.rb +44 -52
- data/app/views/decidim/initiatives/_modal.html.erb +15 -0
- data/app/views/decidim/initiatives/admin/answers/_info_initiative.html.erb +21 -19
- data/app/views/decidim/initiatives/admin/answers/edit.html.erb +41 -27
- data/app/views/decidim/initiatives/admin/committee_requests/index.html.erb +41 -48
- data/app/views/decidim/initiatives/admin/exports/_dropdown.html.erb +8 -7
- data/app/views/decidim/initiatives/admin/initiatives/_form.html.erb +111 -95
- data/app/views/decidim/initiatives/admin/initiatives/_initiative_attachments.erb +7 -7
- data/app/views/decidim/initiatives/admin/initiatives/_signatures.html.erb +87 -0
- data/app/views/decidim/initiatives/admin/initiatives/edit.html.erb +72 -60
- data/app/views/decidim/initiatives/admin/initiatives/export_pdf_signatures.html.erb +8 -0
- data/app/views/decidim/initiatives/admin/initiatives/export_pdf_signatures.pdf.erb +5 -78
- data/app/views/decidim/initiatives/admin/initiatives/index.html.erb +76 -75
- data/app/views/decidim/initiatives/admin/initiatives_settings/_form.html.erb +7 -8
- data/app/views/decidim/initiatives/admin/initiatives_settings/edit.html.erb +17 -5
- data/app/views/decidim/initiatives/admin/initiatives_type_scopes/_form.html.erb +11 -6
- data/app/views/decidim/initiatives/admin/initiatives_type_scopes/edit.html.erb +16 -22
- data/app/views/decidim/initiatives/admin/initiatives_type_scopes/new.html.erb +17 -15
- data/app/views/decidim/initiatives/admin/initiatives_types/_form.html.erb +93 -76
- data/app/views/decidim/initiatives/admin/initiatives_types/_initiative_type_scopes.html.erb +35 -33
- data/app/views/decidim/initiatives/admin/initiatives_types/edit.html.erb +16 -12
- data/app/views/decidim/initiatives/admin/initiatives_types/index.html.erb +39 -48
- data/app/views/decidim/initiatives/admin/initiatives_types/new.html.erb +16 -9
- data/app/views/decidim/initiatives/committee_requests/new.html.erb +21 -19
- data/app/views/decidim/initiatives/create_initiative/_share_committee_link.html.erb +15 -20
- data/app/views/decidim/initiatives/create_initiative/fill_data.html.erb +62 -100
- data/app/views/decidim/initiatives/create_initiative/finish.html.erb +24 -28
- data/app/views/decidim/initiatives/create_initiative/promotal_committee.html.erb +15 -17
- data/app/views/decidim/initiatives/create_initiative/select_initiative_type.html.erb +32 -46
- data/app/views/decidim/initiatives/initiative_signatures/_wizard_steps.html.erb +15 -19
- data/app/views/decidim/initiatives/initiative_signatures/fill_personal_data.html.erb +25 -36
- data/app/views/decidim/initiatives/initiative_signatures/finish.html.erb +5 -16
- data/app/views/decidim/initiatives/initiative_signatures/sms_code.html.erb +8 -19
- data/app/views/decidim/initiatives/initiative_signatures/sms_phone_number.html.erb +8 -20
- data/app/views/decidim/initiatives/initiatives/_committee_members.html.erb +48 -66
- data/app/views/decidim/initiatives/initiatives/_form.html.erb +49 -95
- data/app/views/decidim/initiatives/initiatives/_initiative_badge.html.erb +3 -5
- data/app/views/decidim/initiatives/initiatives/_initiative_hero.html.erb +13 -0
- data/app/views/decidim/initiatives/initiatives/_initiatives.html.erb +6 -15
- data/app/views/decidim/initiatives/initiatives/_interactions.html.erb +1 -1
- data/app/views/decidim/initiatives/initiatives/_new_initiative_button.html.erb +28 -0
- data/app/views/decidim/initiatives/initiatives/_progress_bar.html.erb +2 -6
- data/app/views/decidim/initiatives/initiatives/_result.html.erb +15 -21
- data/app/views/decidim/initiatives/initiatives/_send_to_technical_validation.html.erb +3 -3
- data/app/views/decidim/initiatives/initiatives/_tags_type.html.erb +1 -0
- data/app/views/decidim/initiatives/initiatives/_vote_button.html.erb +9 -9
- data/app/views/decidim/initiatives/initiatives/_vote_cabin.html.erb +7 -7
- data/app/views/decidim/initiatives/initiatives/edit.html.erb +63 -68
- data/app/views/decidim/initiatives/initiatives/index.html.erb +17 -18
- data/app/views/decidim/initiatives/initiatives/index.js.erb +0 -5
- data/app/views/decidim/initiatives/initiatives/print.html.erb +123 -120
- data/app/views/decidim/initiatives/initiatives/show.html.erb +188 -70
- data/app/views/decidim/initiatives/initiatives_mailer/notify_creation.html.erb +2 -2
- data/app/views/decidim/initiatives/initiatives_type_scopes/search.html.erb +2 -1
- data/app/views/decidim/initiatives/versions/show.html.erb +14 -5
- data/app/views/layouts/decidim/_initiative_creation_header.html.erb +17 -28
- data/app/views/layouts/decidim/_initiative_header.html.erb +3 -23
- data/app/views/layouts/decidim/_initiative_header_steps.html.erb +4 -12
- data/app/views/layouts/decidim/_initiative_signature_creation_header.html.erb +5 -26
- data/app/views/layouts/decidim/admin/initiative.html.erb +12 -13
- data/app/views/layouts/decidim/admin/initiatives.html.erb +40 -11
- data/app/views/layouts/decidim/initiative.html.erb +16 -11
- data/app/views/layouts/decidim/initiative_creation.html.erb +7 -18
- data/app/views/layouts/decidim/initiative_head.html.erb +15 -0
- data/app/views/layouts/decidim/initiative_signature_creation.html.erb +3 -11
- data/config/assets.rb +0 -1
- data/config/environment.rb +3 -0
- data/config/initializers/wicked_pdf.rb +1 -1
- data/config/locales/ar.yml +1 -92
- data/config/locales/ca.yml +65 -104
- data/config/locales/cs.yml +70 -109
- data/config/locales/de.yml +71 -110
- data/config/locales/el.yml +1 -97
- data/config/locales/en.yml +69 -108
- data/config/locales/es-MX.yml +65 -104
- data/config/locales/es-PY.yml +65 -104
- data/config/locales/es.yml +65 -104
- data/config/locales/eu.yml +171 -161
- data/config/locales/fi-plain.yml +67 -106
- data/config/locales/fi.yml +67 -106
- data/config/locales/fr-CA.yml +72 -106
- data/config/locales/fr.yml +70 -104
- data/config/locales/ga-IE.yml +0 -35
- data/config/locales/gl.yml +1 -87
- data/config/locales/hu.yml +25 -107
- data/config/locales/id-ID.yml +1 -88
- data/config/locales/is-IS.yml +1 -57
- data/config/locales/it.yml +6 -111
- data/config/locales/ja.yml +63 -109
- data/config/locales/lb.yml +6 -73
- data/config/locales/lt.yml +72 -101
- data/config/locales/lv.yml +1 -98
- data/config/locales/nl.yml +6 -103
- data/config/locales/no.yml +6 -114
- data/config/locales/pl.yml +11 -111
- data/config/locales/pt-BR.yml +21 -116
- data/config/locales/pt.yml +6 -111
- data/config/locales/ro-RO.yml +13 -108
- data/config/locales/ru.yml +1 -65
- data/config/locales/sk.yml +1 -84
- data/config/locales/sl.yml +3 -5
- data/config/locales/sq-AL.yml +1 -0
- data/config/locales/sv.yml +20 -107
- data/config/locales/th-TH.yml +1 -0
- data/config/locales/tr-TR.yml +9 -111
- data/config/locales/uk.yml +1 -65
- data/config/locales/zh-CN.yml +6 -102
- data/config/locales/zh-TW.yml +31 -97
- data/db/migrate/20171017091734_add_scopes_for_all_initiative_types.rb +1 -1
- data/db/migrate/20171017095143_update_initiative_scoped_type.rb +1 -1
- data/db/migrate/20191002082220_move_signature_type_to_initative_type.rb +1 -1
- data/lib/decidim/api/initiative_committee_member_type.rb +2 -2
- data/lib/decidim/initiatives/admin_engine.rb +13 -93
- data/lib/decidim/initiatives/content_blocks/registry_manager.rb +22 -0
- data/lib/decidim/initiatives/engine.rb +45 -23
- data/lib/decidim/initiatives/menu.rb +150 -0
- data/lib/decidim/initiatives/participatory_space.rb +6 -91
- data/lib/decidim/initiatives/query_extensions.rb +5 -5
- data/lib/decidim/initiatives/seeds.rb +95 -0
- data/lib/decidim/initiatives/test/factories.rb +25 -7
- data/lib/decidim/initiatives/version.rb +1 -1
- data/lib/decidim/initiatives.rb +1 -1
- data/lib/tasks/decidim_initiatives.rake +2 -2
- data/lib/tasks/initiatives/upgrade/decidim_initiatives_upgrade_tasks.rake +1 -1
- metadata +49 -75
- data/app/cells/decidim/initiatives/content_blocks/highlighted_initiatives/show.erb +0 -28
- data/app/cells/decidim/initiatives/initiative_m/author.erb +0 -10
- data/app/cells/decidim/initiatives/initiative_m/footer.erb +0 -28
- data/app/cells/decidim/initiatives/initiative_m/tags.erb +0 -9
- data/app/cells/decidim/initiatives/initiative_m_cell.rb +0 -77
- data/app/controllers/decidim/initiatives/widgets_controller.rb +0 -30
- data/app/packs/stylesheets/decidim/initiatives/admin.scss +0 -33
- data/app/packs/stylesheets/decidim/initiatives/initiatives.scss +0 -64
- data/app/packs/stylesheets/decidim/initiatives/popularity_item.scss +0 -76
- data/app/packs/stylesheets/decidim/initiatives/statistics.scss +0 -15
- data/app/views/decidim/initiatives/create_initiative/_finish_help.html.erb +0 -2
- data/app/views/decidim/initiatives/create_initiative/previous_form.html.erb +0 -40
- data/app/views/decidim/initiatives/create_initiative/show_similar_initiatives.html.erb +0 -23
- data/app/views/decidim/initiatives/initiatives/_author.html.erb +0 -35
- data/app/views/decidim/initiatives/initiatives/_count.html.erb +0 -1
- data/app/views/decidim/initiatives/initiatives/_filters.html.erb +0 -33
- data/app/views/decidim/initiatives/initiatives/_filters_small_view.html.erb +0 -18
- data/app/views/decidim/initiatives/initiatives/_index_header.html.erb +0 -44
- data/app/views/decidim/initiatives/initiatives/_tags.html.erb +0 -7
- data/app/views/decidim/initiatives/versions/index.html.erb +0 -8
- data/db/seeds/city.jpeg +0 -0
- data/db/seeds/city2.jpeg +0 -0
- data/lib/decidim/initiatives/initiatives_filter_form_builder.rb +0 -56
- data/lib/gem_overrides/origami/date.rb +0 -47
data/config/locales/el.yml
CHANGED
@@ -49,7 +49,6 @@ el:
|
|
49
49
|
attachment:
|
50
50
|
file: Το αρχείο δεν είναι έγκυρο
|
51
51
|
needs_to_be_reattached: Πρέπει να επισυναφθεί ξανά
|
52
|
-
title: Ο τίτλος δεν πρέπει να είναι κενός
|
53
52
|
activerecord:
|
54
53
|
models:
|
55
54
|
decidim/initiative_comittee:
|
@@ -140,10 +139,8 @@ el:
|
|
140
139
|
- Ακολουθήστε τα βήματα για να δημιουργήσετε μια νέα πρωτοβουλία
|
141
140
|
description: Αυτό το έμβλημα χορηγείται όταν ξεκινάτε νέες πρωτοβουλίες, και συνεργάζεστε με άλλα άτομα για να τις πραγματοποιήσετε.
|
142
141
|
description_another: Αυτός ο συμμετέχων έχει δημοσιεύσει %{score} πρωτοβουλίες.
|
143
|
-
description_own: Έχετε δημοσιεύσει %{score} πρωτοβουλίες.
|
144
142
|
name: Δημοσιευμένες πρωτοβουλίες
|
145
143
|
next_level_in: Δημοσιεύστε %{score} ακόμη πρωτοβουλίες για να φτάσετε στο επόμενο επίπεδο!
|
146
|
-
unearned_another: Αυτός ο συμμετέχων δεν έχει δημοσιεύσει ακόμη κάποια δραστηριότητα.
|
147
144
|
unearned_own: Δεν έχετε δημοσιεύσει ακόμη πρωτοβουλίες.
|
148
145
|
help:
|
149
146
|
participatory_spaces:
|
@@ -169,8 +166,6 @@ el:
|
|
169
166
|
index:
|
170
167
|
approve: Έγκριση
|
171
168
|
confirm_revoke: Είστε βέβαιοι;
|
172
|
-
invite_to_committee_help: Κοινοποιήστε αυτόν τον σύνδεσμο για να προσκαλέσετε άλλους συμμετέχοντες στην επιτροπή προώθησης
|
173
|
-
no_members_yet: Δεν υπάρχουν μέλη στην επιτροπή προώθησης
|
174
169
|
revoke: Ανάκληση
|
175
170
|
title: Μέλη επιτροπής
|
176
171
|
content_blocks:
|
@@ -187,7 +182,6 @@ el:
|
|
187
182
|
export_votes: Εξαγωγή υπογραφών
|
188
183
|
reject: Απόρριψη πρωτοβουλίας
|
189
184
|
send_to_technical_validation: Αποστολή στην τεχνική επικύρωση
|
190
|
-
success: Η πρωτοβουλία έχει σταλεί στην τεχνική επικύρωση
|
191
185
|
update: Ενημέρωση
|
192
186
|
form:
|
193
187
|
title: Γενικές πληροφορίες
|
@@ -200,48 +194,21 @@ el:
|
|
200
194
|
edit: Επεξεργασία
|
201
195
|
new: Νέα
|
202
196
|
photos: Φωτογραφίες
|
203
|
-
update:
|
204
|
-
error: Παρουσιάστηκε σφάλμα
|
205
|
-
success: Η πρωτοβουλία ενημερώθηκε με επιτυχία
|
206
197
|
initiatives_type_scopes:
|
207
|
-
create:
|
208
|
-
error: Παρουσιάστηκε σφάλμα
|
209
|
-
success: Δημιουργήθηκε ένα νέο πεδίο εφαρμογής για τον συγκεκριμένο τύπο πρωτοβουλίας
|
210
|
-
destroy:
|
211
|
-
success: Το πεδίο εφαρμογής καταργήθηκε με επιτυχία
|
212
198
|
edit:
|
213
|
-
back: Πίσω
|
214
|
-
confirm_destroy: Είστε βέβαιοι;
|
215
|
-
destroy: Διαγραφή
|
216
199
|
title: Επεξεργασία πεδίου εφαρμογής τύπου πρωτοβουλίας
|
217
200
|
update: Ενημέρωση
|
218
201
|
new:
|
219
|
-
back: Πίσω
|
220
202
|
create: Δημιουργία
|
221
203
|
title: Δημιουργία πεδίου εφαρμογής τύπου πρωτοβουλίας
|
222
|
-
update:
|
223
|
-
error: Παρουσιάστηκε σφάλμα
|
224
|
-
success: Το πεδίο εφαρμογής ενημερώθηκε με επιτυχία
|
225
204
|
initiatives_types:
|
226
|
-
create:
|
227
|
-
error: Παρουσιάστηκε σφάλμα
|
228
|
-
success: Ένας νέος τύπος πρωτοβουλίας δημιουργήθηκε με επιτυχία
|
229
|
-
destroy:
|
230
|
-
success: Ο τύπος πρωτοβουλίας καταργήθηκε με επιτυχία
|
231
205
|
edit:
|
232
|
-
confirm_destroy: Είστε βέβαιοι;
|
233
|
-
destroy: Διαγραφή
|
234
206
|
update: Ενημέρωση
|
235
|
-
form:
|
236
|
-
title: Γενικές πληροφορίες
|
237
207
|
initiative_type_scopes:
|
238
208
|
title: Πεδία εφαρμογής για τον τύπο πρωτοβουλίας
|
239
209
|
new:
|
240
210
|
create: Δημιουργία
|
241
211
|
title: Νέος τύπος πρωτοβουλίας
|
242
|
-
update:
|
243
|
-
error: Παρουσιάστηκε σφάλμα
|
244
|
-
success: Ο τύπος πρωτοβουλίας ενημερώθηκε με επιτυχία
|
245
212
|
admin_log:
|
246
213
|
initiative:
|
247
214
|
publish: "Ο χρήστης %{user_name} δημοσίευσε την πρωτοβουλία %{resource_name}"
|
@@ -256,10 +223,6 @@ el:
|
|
256
223
|
rejected: Δεν υπάρχουν αρκετές υπογραφές
|
257
224
|
validating: Τεχνική επικύρωση
|
258
225
|
application_helper:
|
259
|
-
filter_area_values:
|
260
|
-
all: Όλα
|
261
|
-
filter_scope_values:
|
262
|
-
all: Όλα
|
263
226
|
filter_state_values:
|
264
227
|
accepted: Αρκετές υπογραφές
|
265
228
|
all: Όλα
|
@@ -272,7 +235,6 @@ el:
|
|
272
235
|
committee_requests:
|
273
236
|
new:
|
274
237
|
continue: Συνέχεια
|
275
|
-
help_text: Πρόκειται να ζητήσετε να γίνετε μέλος της επιτροπής προώθησης αυτής της πρωτοβουλίας
|
276
238
|
spawn:
|
277
239
|
success: Το αίτημά σας στάλθηκε στον συντάκτη πρωτοβουλίας.
|
278
240
|
content_blocks:
|
@@ -293,24 +255,15 @@ el:
|
|
293
255
|
previous_form:
|
294
256
|
back: Πίσω
|
295
257
|
continue: Συνέχεια
|
296
|
-
help: Από τι αποτελείται η πρωτοβουλία; Γράψτε τον τίτλο και την περιγραφή. Συνιστούμε έναν σύντομο και περιεκτικό τίτλο και μια περιγραφή επικεντρωμένη στην προτεινόμενη λύση.
|
297
|
-
more_information: "(Περισσότερες πληροφορίες)"
|
298
258
|
promotal_committee:
|
299
|
-
back: Πίσω
|
300
259
|
more_information: "(Περισσότερες πληροφορίες)"
|
301
260
|
select_initiative_type:
|
302
261
|
back: Πίσω
|
303
262
|
choose_html: Θέλω να δημιουργήσω μια πρωτοβουλία <strong>%{title}</strong>
|
304
|
-
more_information:
|
263
|
+
more_information: (Περισσότερες πληροφορίες)
|
305
264
|
select: Θέλω να προωθήσω αυτήν την πρωτοβουλία
|
306
265
|
share_committee_link:
|
307
|
-
continue: Συνέχεια
|
308
266
|
invite_to_committee_help: Σύνδεσμος για να προσκαλέσετε άτομα που θα είναι μέλη της επιτροπής προώθησης
|
309
|
-
show_similar_initiatives:
|
310
|
-
back: Πίσω
|
311
|
-
compare_help: Εάν κάποια από τις παρακάτω πρωτοβουλίες είναι παρόμοια με τη δική σας, σας συνιστούμε να την υπογράψετε. Η πρότασή σας θα έχει περισσότερες πιθανότητες να υλοποιηθεί.
|
312
|
-
continue: Η πρωτοβουλία μου είναι διαφορετική
|
313
|
-
more_information: "(Περισσότερες πληροφορίες)"
|
314
267
|
events:
|
315
268
|
create_initiative_event:
|
316
269
|
email_intro: "Ο συντάκτης %{author_name} %{author_nickname}, τον οποίο ακολουθείτε, δημιούργησε μια νέα πρωτοβουλία. Δείτε την και συνεισφέρετε:"
|
@@ -322,19 +275,9 @@ el:
|
|
322
275
|
email_outro: Λάβατε αυτήν την ειδοποίηση επειδή ακολουθείτε τον συντάκτη %{author_nickname}. Μπορείτε να διακόψετε τη λήψη ειδοποιήσεων ακολουθώντας τον προηγούμενο σύνδεσμο.
|
323
276
|
email_subject: Η πρωτοβουλία επιδοκιμάστηκε από τον συντάκτη %{author_nickname}
|
324
277
|
notification_title: Η <a href="%{resource_path}">%{resource_title}</a> πρωτοβουλία επιδοκιμάστηκε από τον συντάκτη <a href="%{author_path}">%{author_name} %{author_nickname}</a>.
|
325
|
-
form:
|
326
|
-
add_attachments: Έγγραφα
|
327
|
-
delete_attachment: Διαγραφή
|
328
|
-
index:
|
329
|
-
title: Πρωτοβουλίες
|
330
278
|
initiative_signatures:
|
331
279
|
fill_personal_data:
|
332
280
|
continue: Συνέχεια
|
333
|
-
date_select:
|
334
|
-
day: Ημέρα
|
335
|
-
month: Μήνας
|
336
|
-
year: Έτος
|
337
|
-
help: Συμπληρώστε τα ακόλουθα πεδία με τα προσωπικά σας στοιχεία για να υπογράψετε την πρωτοβουλία
|
338
281
|
finish:
|
339
282
|
back_to_initiative: Επιστροφή στην πρωτοβουλία
|
340
283
|
sms_code:
|
@@ -342,27 +285,18 @@ el:
|
|
342
285
|
help: Ελέγξτε το SMS που λάβατε στο τηλέφωνό σας
|
343
286
|
sms_phone_number:
|
344
287
|
continue: Αποστολή SMS σε μένα
|
345
|
-
help: Συμπληρώστε τη φόρμα με τον επαληθευμένο αριθμό τηλεφώνου σας, για να ζητήσετε τον κωδικό επαλήθευσής σας
|
346
288
|
initiative_votes:
|
347
289
|
create:
|
348
290
|
error: Υπήρξε ένα πρόβλημα κατά την υπογραφή της πρωτοβουλίας.
|
349
|
-
invalid: Τα δεδομένα που παρέχονται για την υπογραφή της πρωτοβουλίας δεν είναι έγκυρα
|
350
|
-
success_html: Συγχαρητήρια! Η πρωτοβουλία <strong> %{title}</strong> υπογράφτηκε με επιτυχία
|
351
291
|
personal_data:
|
352
292
|
invalid: Τα προσωπικά στοιχεία δεν συμφωνούν με τα στοιχεία που παρείχατε για εξουσιοδότηση.
|
353
|
-
sms_code:
|
354
|
-
invalid: Ο κωδικός επαλήθευσής σας δεν ταιριάζει με τον δικό μας. Ελέγξτε ξανά το SMS που σας στείλαμε.
|
355
293
|
sms_phone:
|
356
294
|
invalid: Ο αριθμός τηλεφώνου δεν είναι έγκυρος ή εκκρεμεί εξουσιοδότηση. Ελέγξτε τις εξουσιοδοτήσεις σας.
|
357
295
|
initiatives:
|
358
|
-
author:
|
359
|
-
deleted: Διαγράφηκε
|
360
296
|
author_list:
|
361
297
|
hidden_authors_count:
|
362
298
|
one: και 1 ακόμη άτομο
|
363
299
|
other: και %{count} ακόμη άτομα
|
364
|
-
committee_members:
|
365
|
-
revoke: Ανάκληση
|
366
300
|
count:
|
367
301
|
title:
|
368
302
|
one: "%{count} πρωτοβουλία"
|
@@ -373,14 +307,8 @@ el:
|
|
373
307
|
author: Συντάκτης
|
374
308
|
myself: Οι πρωτοβουλίες μου
|
375
309
|
scope: Πεδίο εφαρμογής
|
376
|
-
search: Αναζήτηση
|
377
310
|
state: Κατάσταση
|
378
311
|
type: Τύπος
|
379
|
-
filters_small_view:
|
380
|
-
close_modal: Κλείσιμο παραθύρου
|
381
|
-
filter: Φίλτρο
|
382
|
-
filter_by: Φιλτράρισμα κατά
|
383
|
-
unfold: Αποκάλυψη
|
384
312
|
index_header:
|
385
313
|
new_initiative: Νέα πρωτοβουλία
|
386
314
|
interactions:
|
@@ -399,8 +327,6 @@ el:
|
|
399
327
|
city: Πόλη
|
400
328
|
result:
|
401
329
|
initiative_rejected_reason: Αυτή η πρωτοβουλία απορρίφθηκε λόγω της έλλειψης υπογραφών.
|
402
|
-
show:
|
403
|
-
follow_description: Λήψη ειδοποίησης όταν υπάρχουν νέα σε αυτήν την πρωτοβουλία
|
404
330
|
signatures_count:
|
405
331
|
one: "υπογραφή"
|
406
332
|
other: "υπογραφές"
|
@@ -414,8 +340,6 @@ el:
|
|
414
340
|
count:
|
415
341
|
one: Υπογραφή
|
416
342
|
other: Υπογραφές
|
417
|
-
most_popular_initiative: Η πιο δημοφιλής πρωτοβουλία
|
418
|
-
need_more_votes: Απαιτούνται περισσότερες υπογραφές
|
419
343
|
initiatives_mailer:
|
420
344
|
creation_subject: Η πρωτοβουλία σας «%{title}» δημιουργήθηκε
|
421
345
|
initiative_link:
|
@@ -427,8 +351,6 @@ el:
|
|
427
351
|
promotal_committee_help: Να θυμάστε ότι πρέπει να προσκαλέσετε τουλάχιστον %{member_count} άτομα στην επιτροπή προώθησης. Προωθήστε τον παρακάτω σύνδεσμο για να προσκαλέσετε άτομα στην επιτροπή προώθησης
|
428
352
|
status_change_body_for: 'Η κατάσταση της πρωτοβουλίας %{title} άλλαξε σε: %{state}'
|
429
353
|
status_change_for: Η κατάσταση της πρωτοβουλίας %{title} άλλαξε
|
430
|
-
last_activity:
|
431
|
-
new_initiative: Νέα πρωτοβουλία
|
432
354
|
show:
|
433
355
|
badge_name:
|
434
356
|
accepted: Αρκετές υπογραφές
|
@@ -441,9 +363,6 @@ el:
|
|
441
363
|
accepted: Έγινε αποδοχή
|
442
364
|
expired: Έληξε
|
443
365
|
unavailable_scope: Μη διαθέσιμο πεδίο εφαρμογής
|
444
|
-
versions:
|
445
|
-
shared:
|
446
|
-
back_to_resource: Επιστροφή στην πρωτοβουλία
|
447
366
|
menu:
|
448
367
|
initiatives: Πρωτοβουλίες
|
449
368
|
resources:
|
@@ -454,31 +373,16 @@ el:
|
|
454
373
|
layouts:
|
455
374
|
decidim:
|
456
375
|
initiative_creation_header:
|
457
|
-
back: Πίσω
|
458
376
|
fill_data: Δημιουργία
|
459
377
|
finish: Τέλος
|
460
|
-
previous_form: Έναρξη
|
461
378
|
promotal_committee: Επιτροπή προώθησης
|
462
379
|
select_initiative_type: Επιλέξτε
|
463
|
-
show_similar_initiatives: Σύγκριση
|
464
|
-
step: Βήμα %{current} από %{total}
|
465
|
-
title: Δημιουργία νέας πρωτοβουλίας
|
466
|
-
initiative_header:
|
467
|
-
initiative_menu_item: Πρωτοβουλία
|
468
380
|
initiative_signature_creation_header:
|
469
|
-
back: Πίσω
|
470
381
|
fill_personal_data: Συμπληρώστε τα στοιχεία σας
|
471
382
|
finish: Τέλος
|
472
|
-
finished: Δημιουργήθηκε υπογραφή πρωτοβουλίας
|
473
|
-
see_steps: δείτε τα βήματα
|
474
|
-
select_identity: Επιλέξτε ταυτότητα
|
475
383
|
sms_code: Επαλήθευση κωδικού μέσω SMS
|
476
384
|
sms_phone_number: Αριθμός κινητού τηλεφώνου
|
477
|
-
step: Βήμα %{current} από %{total}
|
478
385
|
title: Υπογραφή πρωτοβουλίας %{initiative_title}
|
479
386
|
initiatives:
|
480
|
-
initiative:
|
481
|
-
check: Δείτε την
|
482
|
-
check_and_support: Δείτε και υπογράψτε την
|
483
387
|
no_initiatives_yet:
|
484
388
|
no_initiatives_yet: Δεν υπάρχουν ακόμη πρωτοβουλίες!
|
data/config/locales/en.yml
CHANGED
@@ -65,7 +65,7 @@ en:
|
|
65
65
|
attachment:
|
66
66
|
file: File is invalid
|
67
67
|
needs_to_be_reattached: Needs to be reattached
|
68
|
-
title: Title
|
68
|
+
title: Title should not be empty
|
69
69
|
activerecord:
|
70
70
|
models:
|
71
71
|
decidim/initiative:
|
@@ -80,7 +80,9 @@ en:
|
|
80
80
|
decidim:
|
81
81
|
admin:
|
82
82
|
actions:
|
83
|
+
manage: Manage
|
83
84
|
new_initiative_type: New initiative type
|
85
|
+
new_initiative_type_scope: New initiative type scope
|
84
86
|
filters:
|
85
87
|
initiatives:
|
86
88
|
decidim_area_id_eq:
|
@@ -100,15 +102,20 @@ en:
|
|
100
102
|
title_or_description_or_id_string_or_author_name_or_author_nickname_cont: Search %{collection} by title, description, ID or author name.
|
101
103
|
initiatives_settings:
|
102
104
|
update:
|
103
|
-
error: An error has occured
|
104
|
-
success: The initiatives settings have been successfully updated
|
105
|
+
error: An error has occured.
|
106
|
+
success: The initiatives settings have been successfully updated.
|
105
107
|
menu:
|
106
108
|
attachments: Attachments
|
107
109
|
committee_members: Committee members
|
108
110
|
components: Components
|
109
111
|
information: Information
|
112
|
+
initiative_type_scopes: Initiative type scopes
|
110
113
|
initiatives: Initiatives
|
114
|
+
initiatives_menu:
|
115
|
+
see_initiative: See initiative
|
111
116
|
initiatives_settings: Settings
|
117
|
+
initiatives_submenu:
|
118
|
+
info: About this initiative
|
112
119
|
initiatives_types: Initiative types
|
113
120
|
moderations: Moderations
|
114
121
|
models:
|
@@ -190,10 +197,10 @@ en:
|
|
190
197
|
- Follow the steps to create a new initiative
|
191
198
|
description: This badge is granted when you launch new initiatives, partnering with others to carry them out.
|
192
199
|
description_another: This participant has gotten %{score} initiatives published.
|
193
|
-
description_own: You
|
200
|
+
description_own: You have got %{score} initiatives published.
|
194
201
|
name: Published initiatives
|
195
202
|
next_level_in: Get %{score} more initiatives published to reach the next level!
|
196
|
-
unearned_another: This participant
|
203
|
+
unearned_another: This participant has not gotten any initiatives published yet.
|
197
204
|
unearned_own: You got no initiatives published yet.
|
198
205
|
help:
|
199
206
|
participatory_spaces:
|
@@ -219,8 +226,8 @@ en:
|
|
219
226
|
index:
|
220
227
|
approve: Approve
|
221
228
|
confirm_revoke: Are you sure?
|
222
|
-
invite_to_committee_help: Share this link to invite other participants to the promoter committee
|
223
|
-
no_members_yet: There are no members in the promoter committee
|
229
|
+
invite_to_committee_help: Share this link to invite other participants to the promoter committee.
|
230
|
+
no_members_yet: There are no members in the promoter committee.
|
224
231
|
revoke: Revoke
|
225
232
|
title: Committee members
|
226
233
|
content_blocks:
|
@@ -242,10 +249,9 @@ en:
|
|
242
249
|
export_votes: Export signatures
|
243
250
|
reject: Reject initiative
|
244
251
|
send_to_technical_validation: Send to technical validation
|
245
|
-
success: The initiative has been sent to technical validation
|
252
|
+
success: The initiative has been sent to technical validation.
|
246
253
|
update: Update
|
247
254
|
form:
|
248
|
-
attachments: Attachments
|
249
255
|
settings: Settings
|
250
256
|
title: General information
|
251
257
|
index:
|
@@ -258,8 +264,8 @@ en:
|
|
258
264
|
new: New
|
259
265
|
photos: Photos
|
260
266
|
update:
|
261
|
-
error: An error has occurred
|
262
|
-
success: The initiative has been successfully updated
|
267
|
+
error: An error has occurred.
|
268
|
+
success: The initiative has been successfully updated.
|
263
269
|
initiatives_settings:
|
264
270
|
edit:
|
265
271
|
update: Update
|
@@ -272,47 +278,40 @@ en:
|
|
272
278
|
title: Settings for initiatives
|
273
279
|
initiatives_type_scopes:
|
274
280
|
create:
|
275
|
-
error: An error has occurred
|
276
|
-
success: A new scope for the given initiative type has been created
|
281
|
+
error: An error has occurred.
|
282
|
+
success: A new scope for the given initiative type has been created.
|
277
283
|
destroy:
|
278
|
-
success: The scope has been successfully removed
|
284
|
+
success: The scope has been successfully removed.
|
279
285
|
edit:
|
280
|
-
back: Back
|
281
|
-
confirm_destroy: Are you sure?
|
282
|
-
destroy: Delete
|
283
286
|
title: Edit initiative type scope
|
284
287
|
update: Update
|
285
288
|
new:
|
286
|
-
back: Back
|
287
289
|
create: Create
|
288
290
|
title: Create initiative type scope
|
289
291
|
update:
|
290
|
-
error: An error has occurred
|
291
|
-
success: The scope has been successfully updated
|
292
|
+
error: An error has occurred.
|
293
|
+
success: The scope has been successfully updated.
|
292
294
|
initiatives_types:
|
293
295
|
create:
|
294
|
-
error: An error has occurred
|
295
|
-
success: A new initiative type has been successfully created
|
296
|
+
error: An error has occurred.
|
297
|
+
success: A new initiative type has been successfully created.
|
296
298
|
destroy:
|
297
|
-
success: The initiative type has been successfully removed
|
299
|
+
success: The initiative type has been successfully removed.
|
298
300
|
edit:
|
299
|
-
confirm_destroy: Are you sure?
|
300
|
-
destroy: Delete
|
301
301
|
update: Update
|
302
302
|
form:
|
303
303
|
authorizations: Authorization settings
|
304
|
-
|
305
|
-
|
304
|
+
child_scope_threshold_enabled_help_html: 'This config flag doesn''t support offline votes. It enables sub-scopes and works with an authorization handler that associates a scope to the user. Make sure you select that authorization, below in authorization settings. For it to work, scopes need to be configured in a hierarchical way: 1 Parent - N Child. For more info on how this configuration works, see <a href="https://docs.decidim.org/en/admin/spaces/initiatives/" target="_blank">initiatives'' admin documentation page</a>.'
|
305
|
+
only_global_scope_enabled_help_html: Tick this flag if you enabled "Child scope signature" and configured the global scope as your parent scope. By enabling this, initiative type selection will be skipped in the initiative creation wizard. For more info on how this configuration works, see this <a href="https://docs.decidim.org/en/admin/spaces/initiatives/" target="_blank">link</a>.
|
306
306
|
options: Options
|
307
|
-
title: General information
|
308
307
|
initiative_type_scopes:
|
309
308
|
title: Scopes for the initiative type
|
310
309
|
new:
|
311
310
|
create: Create
|
312
311
|
title: New initiative type
|
313
312
|
update:
|
314
|
-
error: An error has occurred
|
315
|
-
success: The initiative type has been successfully updated
|
313
|
+
error: An error has occurred.
|
314
|
+
success: The initiative type has been successfully updated.
|
316
315
|
admin_log:
|
317
316
|
initiative:
|
318
317
|
publish: "%{user_name} published the %{resource_name} initiative"
|
@@ -333,10 +332,6 @@ en:
|
|
333
332
|
rejected: Not enough signatures
|
334
333
|
validating: Technical validation
|
335
334
|
application_helper:
|
336
|
-
filter_area_values:
|
337
|
-
all: All
|
338
|
-
filter_scope_values:
|
339
|
-
all: All
|
340
335
|
filter_state_values:
|
341
336
|
accepted: Enough signatures
|
342
337
|
all: All
|
@@ -351,7 +346,7 @@ en:
|
|
351
346
|
success: Request has been approved.
|
352
347
|
new:
|
353
348
|
continue: Continue
|
354
|
-
help_text: You are about to request becoming a member of the promoter committee of this initiative
|
349
|
+
help_text: You are about to request becoming a member of the promoter committee of this initiative.
|
355
350
|
revoke:
|
356
351
|
success: Request has been revoked.
|
357
352
|
spawn:
|
@@ -363,7 +358,6 @@ en:
|
|
363
358
|
fill_data:
|
364
359
|
back: Back
|
365
360
|
continue: Continue
|
366
|
-
decidim_user_group_id_help: It's not possible to change initiative authorship after creation
|
367
361
|
fill_data_help: "<ul> <li>Review 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?</li> </ul>"
|
368
362
|
more_information: "(More information)"
|
369
363
|
select_area: Select an area
|
@@ -378,31 +372,23 @@ en:
|
|
378
372
|
more_information: "(More information)"
|
379
373
|
send_my_initiative: Send my initiative to technical validation
|
380
374
|
finish_help:
|
381
|
-
access_reminder: You can access your initiatives through the %{link} filter on the Initiatives page.
|
382
375
|
publish_helper_text: Remember that for your initiative to be published you must complete the required information and <strong>send it to technical validation</strong> for an administrator to review it.
|
383
376
|
previous_form:
|
384
377
|
back: Back
|
385
378
|
continue: Continue
|
386
|
-
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.
|
387
|
-
more_information: "(More information)"
|
388
379
|
promotal_committee:
|
389
|
-
back: Back
|
390
380
|
individual_help_text: This kind of initiative requires a Promoting Commission consisting of at least %{committee_size} 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.
|
391
381
|
more_information: "(More information)"
|
392
382
|
select_initiative_type:
|
393
383
|
back: Back
|
394
384
|
choose_html: I want to create a <strong>%{title}</strong>
|
395
|
-
more_information:
|
385
|
+
more_information: More information
|
386
|
+
new: Create a new initiative
|
396
387
|
select: I want to promote this initiative
|
397
388
|
select_initiative_type_help: Initiatives are a means by which the participants can intervene so that the organization can undertake actions in defence of the general interest. Which initiative do you want to launch?
|
389
|
+
verification_required: Verify your account to promote this initiative
|
398
390
|
share_committee_link:
|
399
|
-
continue: Continue
|
400
391
|
invite_to_committee_help: Link to invite people that will be part of the promoter committee
|
401
|
-
show_similar_initiatives:
|
402
|
-
back: Back
|
403
|
-
compare_help: If any of the following initiatives is similar to yours we encourage you to sign it. Your proposal will have more possibilities to get done.
|
404
|
-
continue: My initiative is different
|
405
|
-
more_information: "(More information)"
|
406
392
|
edit:
|
407
393
|
accept: Accept the initiative
|
408
394
|
back: Back
|
@@ -440,20 +426,18 @@ en:
|
|
440
426
|
email_subject: "%{applicant_nickname} wants to join your initiative"
|
441
427
|
notification_title: <a href="%{applicant_profile_url}">%{applicant_nickname}</a> applied for the promoter committee of your initiative <a href="%{resource_url}">%{resource_title}</a>. To accept or reject click <a href="%{resource_url}/edit">here</a>.
|
442
428
|
form:
|
443
|
-
|
429
|
+
add_documents: Add documents
|
430
|
+
add_image: Add image
|
444
431
|
attachment_legend: "(Optional) Add an attachment"
|
445
|
-
|
432
|
+
edit_documents: Edit documents
|
433
|
+
edit_image: Edit image
|
434
|
+
image_legend: "(Optional) Add an image"
|
446
435
|
index:
|
447
|
-
|
448
|
-
uninitialized: Initiatives are not yet configured by an administrator
|
436
|
+
uninitialized: Initiatives are not yet configured by an administrator.
|
449
437
|
initiative_signatures:
|
450
438
|
fill_personal_data:
|
451
439
|
continue: Continue
|
452
|
-
|
453
|
-
day: Day
|
454
|
-
month: Month
|
455
|
-
year: Year
|
456
|
-
help: Please, fill the following fields with your personal data to sign the initiative
|
440
|
+
help: Please, fill the following fields with your personal data to sign the initiative.
|
457
441
|
finish:
|
458
442
|
back_to_initiative: Back to initiative
|
459
443
|
sms_code:
|
@@ -461,30 +445,30 @@ en:
|
|
461
445
|
help: Check the SMS received at your phone
|
462
446
|
sms_phone_number:
|
463
447
|
continue: Send me an SMS
|
464
|
-
help: Fill the form with your verified phone number to request your verification code
|
448
|
+
help: Fill the form with your verified phone number to request your verification code.
|
465
449
|
initiative_votes:
|
466
450
|
create:
|
467
451
|
error: There was a problem signing the initiative.
|
468
|
-
invalid: The data provided to sign the initiative is not valid
|
469
|
-
success_html: Congratulations! The <strong> %{title}</strong> initiative has been successfully signed
|
452
|
+
invalid: The data provided to sign the initiative is not valid.
|
453
|
+
success_html: Congratulations! The <strong> %{title}</strong> initiative has been successfully signed.
|
470
454
|
personal_data:
|
471
455
|
invalid: Personal data is not consistent with data provided for authorization.
|
472
456
|
sms_code:
|
473
|
-
invalid: Your verification code
|
457
|
+
invalid: Your verification code does not match ours. Please double-check the SMS we sent you.
|
474
458
|
sms_phone:
|
475
459
|
invalid: The phone number is invalid or pending of authorization. Please, check your authorizations.
|
476
460
|
initiatives:
|
477
|
-
author:
|
478
|
-
deleted: Deleted
|
479
461
|
author_list:
|
480
462
|
hidden_authors_count:
|
481
463
|
one: and 1 more person
|
482
464
|
other: and %{count} more people
|
483
465
|
committee_members:
|
484
466
|
approve: Approve
|
485
|
-
|
486
|
-
|
487
|
-
|
467
|
+
confirm_approve: Are you sure you want to approve this member?
|
468
|
+
confirm_revoke: Are you sure you want to revoke this member?
|
469
|
+
invite_to_committee_help: Share this link to invite other participants to the promoter committee.
|
470
|
+
link: Link
|
471
|
+
no_members_yet: There are no members in the promoter committee.
|
488
472
|
revoke: Revoke
|
489
473
|
title: Committee members
|
490
474
|
count:
|
@@ -497,21 +481,10 @@ en:
|
|
497
481
|
author: Author
|
498
482
|
myself: My initiatives
|
499
483
|
scope: Scope
|
500
|
-
search: Search
|
501
484
|
state: Status
|
502
485
|
type: Type
|
503
|
-
filters_small_view:
|
504
|
-
close_modal: Close window
|
505
|
-
filter: Filter
|
506
|
-
filter_by: Filter by
|
507
|
-
unfold: Unfold
|
508
486
|
index_header:
|
509
487
|
new_initiative: New initiative
|
510
|
-
not_authorized:
|
511
|
-
authorizations_page: View authorizations
|
512
|
-
close: Close
|
513
|
-
explanation: You need to be verified in order to create a new initiative.
|
514
|
-
title: Authorization required
|
515
488
|
initiatives:
|
516
489
|
closed_initiatives_warning: Currently, there are no open initiatives, but here you can find all the closed initiatives listed.
|
517
490
|
no_initiatives_warning: No initiatives match your search criteria.
|
@@ -550,16 +523,20 @@ en:
|
|
550
523
|
section: 'If requested by the organization, please print and fill out this form to submit where indicated:'
|
551
524
|
signature: Signature
|
552
525
|
result:
|
553
|
-
answer_title: This initiative has been answered
|
526
|
+
answer_title: This initiative has been answered.
|
554
527
|
initiative_rejected_reason: This initiative has been rejected due to its lack of signatures.
|
555
528
|
show:
|
556
|
-
|
529
|
+
area: Area
|
530
|
+
before_send_to_technical_validation_announcement: 'Before sending your initiative for technical validation, you need to add %{count} more members to the promoter committee.<br/><br/>Share this link with the people you want to be part of your committee: %{href}'
|
557
531
|
confirm: You are going to send the initiative for an admin to review it and publish it. Once published you will not be able to edit it. Are you sure?
|
558
532
|
edit: Edit
|
559
|
-
|
560
|
-
|
561
|
-
print: Print Initiative
|
533
|
+
initiative_data: Initiative data
|
534
|
+
scope: Scope
|
562
535
|
send_to_technical_validation: Send to technical validation
|
536
|
+
send_to_technical_validation_announcement: If everything looks ok, click on "Send to technical validation" for an administrator to review and publish your initiative
|
537
|
+
signature_collection: Signature collection
|
538
|
+
state: State
|
539
|
+
type: Type
|
563
540
|
signatures_count:
|
564
541
|
one: " signature"
|
565
542
|
other: " signatures"
|
@@ -573,8 +550,6 @@ en:
|
|
573
550
|
count:
|
574
551
|
one: Signature
|
575
552
|
other: Signatures
|
576
|
-
most_popular_initiative: Most popular initiative
|
577
|
-
need_more_votes: Need more signatures
|
578
553
|
initiatives_mailer:
|
579
554
|
creation_subject: Your initiative '%{title}' has been created
|
580
555
|
initiative_link:
|
@@ -587,12 +562,17 @@ en:
|
|
587
562
|
status_change_body_for: 'The initiative %{title} has changed its status to: %{state}'
|
588
563
|
status_change_for: The initiative %{title} has changed its status
|
589
564
|
last_activity:
|
590
|
-
new_initiative: New initiative
|
565
|
+
new_initiative: 'New initiative:'
|
566
|
+
modal:
|
567
|
+
not_authorized:
|
568
|
+
authorizations_page: View authorizations
|
569
|
+
explanation: You need to be verified in order to create a new initiative.
|
570
|
+
title: Authorization required
|
591
571
|
pages:
|
592
572
|
home:
|
593
573
|
highlighted_initiatives:
|
594
|
-
|
595
|
-
|
574
|
+
active_spaces: Active initiatives
|
575
|
+
see_all_spaces: See all initiatives
|
596
576
|
show:
|
597
577
|
badge_name:
|
598
578
|
accepted: Enough signatures
|
@@ -601,18 +581,13 @@ en:
|
|
601
581
|
published: Published
|
602
582
|
rejected: Not enough signatures
|
603
583
|
validating: Technical validation
|
604
|
-
signature_interval:
|
605
|
-
title: Signature collection period
|
606
584
|
states:
|
607
585
|
accepted: Accepted
|
608
586
|
expired: Expired
|
609
587
|
unavailable_scope: Unavailable scope
|
610
588
|
update:
|
611
|
-
error: An error has occurred
|
612
|
-
success: The initiative has been successfully updated
|
613
|
-
versions:
|
614
|
-
shared:
|
615
|
-
back_to_resource: Go back to initiative
|
589
|
+
error: An error has occurred.
|
590
|
+
success: The initiative has been successfully updated.
|
616
591
|
menu:
|
617
592
|
initiatives: Initiatives
|
618
593
|
resources:
|
@@ -621,36 +596,22 @@ en:
|
|
621
596
|
comment: Comment
|
622
597
|
initiatives_type:
|
623
598
|
actions:
|
599
|
+
create: Create
|
624
600
|
title: Actions
|
625
601
|
vote: Sign
|
626
602
|
layouts:
|
627
603
|
decidim:
|
628
604
|
initiative_creation_header:
|
629
|
-
back: Back
|
630
605
|
fill_data: Create
|
631
606
|
finish: Finish
|
632
|
-
previous_form: Start
|
633
607
|
promotal_committee: Promoter committee
|
634
608
|
select_initiative_type: Choose
|
635
|
-
show_similar_initiatives: Compare
|
636
|
-
step: Step %{current} of %{total}
|
637
|
-
title: Create new initiative
|
638
|
-
initiative_header:
|
639
|
-
initiative_menu_item: Initiative
|
640
609
|
initiative_signature_creation_header:
|
641
|
-
back: Back
|
642
610
|
fill_personal_data: Complete your data
|
643
611
|
finish: Finish
|
644
|
-
finished: Initiative signature created
|
645
|
-
see_steps: see steps
|
646
|
-
select_identity: Select identity
|
647
612
|
sms_code: SMS code verification
|
648
613
|
sms_phone_number: Mobile phone number
|
649
|
-
step: Step %{current} of %{total}
|
650
614
|
title: Sign %{initiative_title}
|
651
615
|
initiatives:
|
652
|
-
initiative:
|
653
|
-
check: Check it out
|
654
|
-
check_and_support: Check it out and sign
|
655
616
|
no_initiatives_yet:
|
656
617
|
no_initiatives_yet: No initiatives yet!
|