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
@@ -0,0 +1,322 @@
|
|
1
|
+
it:
|
2
|
+
activemodel:
|
3
|
+
attributes:
|
4
|
+
initiative:
|
5
|
+
decidim_user_group_id: Autore
|
6
|
+
description: Descrizione
|
7
|
+
offline_votes: Supporti faccia a faccia
|
8
|
+
scope_id: Scopo
|
9
|
+
signature_end_time: Fine del periodo di raccolta della firma
|
10
|
+
signature_start_time: Inizio del periodo di raccolta della firma
|
11
|
+
signature_type: Tipo di firma
|
12
|
+
signature_type_values:
|
13
|
+
any: Misto
|
14
|
+
offline: Faccia a faccia
|
15
|
+
online: In linea
|
16
|
+
title: Titolo
|
17
|
+
initiative_author:
|
18
|
+
address: Indirizzo
|
19
|
+
city: Città
|
20
|
+
id_document: DNI / NIE
|
21
|
+
name: Nome e cognome
|
22
|
+
phone_number: Numero di telefono
|
23
|
+
post_code: Codice postale
|
24
|
+
province: Provincia
|
25
|
+
initiatives_committee_member:
|
26
|
+
user: membro del Comitato
|
27
|
+
initiatives_type:
|
28
|
+
banner_image: Immagine banner
|
29
|
+
description: Descrizione
|
30
|
+
title: Titolo
|
31
|
+
organization_data:
|
32
|
+
address: Indirizzo
|
33
|
+
id_document: CIF
|
34
|
+
name: Nome completo
|
35
|
+
decidim:
|
36
|
+
admin:
|
37
|
+
menu:
|
38
|
+
initiatives: iniziative
|
39
|
+
initiatives_types: Tipi di iniziativa
|
40
|
+
models:
|
41
|
+
initiatives:
|
42
|
+
fields:
|
43
|
+
created_at: Creato a
|
44
|
+
state: Stato
|
45
|
+
supports_count: supporti
|
46
|
+
title: iniziative
|
47
|
+
initiatives_type_scope:
|
48
|
+
fields:
|
49
|
+
scope: Scopo
|
50
|
+
supports_required: Supporti richiesti
|
51
|
+
name: Ambito del tipo di iniziativa
|
52
|
+
initiatives_types:
|
53
|
+
fields:
|
54
|
+
created_at: Creato a
|
55
|
+
title: Tipi di iniziativa
|
56
|
+
name: Tipo di iniziativa
|
57
|
+
titles:
|
58
|
+
initiatives: iniziative
|
59
|
+
initiatives_types: Tipi di iniziativa
|
60
|
+
initiatives:
|
61
|
+
admin:
|
62
|
+
committee_requests:
|
63
|
+
index:
|
64
|
+
approve: Approvare
|
65
|
+
confirm_revoke: Sei sicuro?
|
66
|
+
invite_to_committee_help: Condividi questo link per invitare altri utenti al comitato di promozione
|
67
|
+
no_members_yet: Non ci sono membri nel comitato promotore
|
68
|
+
revoke: Revocare
|
69
|
+
title: membri del Comitato
|
70
|
+
initiatives:
|
71
|
+
edit:
|
72
|
+
accept: Accetta l'iniziativa
|
73
|
+
confirm: Sei sicuro?
|
74
|
+
discard: Scartare l'iniziativa
|
75
|
+
export_votes: Supporti di esportazione
|
76
|
+
reject: Rifiuta l'iniziativa
|
77
|
+
send_to_technical_validation: Invia a convalida tecnica
|
78
|
+
success: L'iniziativa è stata inviata alla convalida tecnica
|
79
|
+
update: Aggiornare
|
80
|
+
form:
|
81
|
+
title: Informazione generale
|
82
|
+
index:
|
83
|
+
actions_title: Azione
|
84
|
+
filter:
|
85
|
+
accepted: Accettato
|
86
|
+
all: Tutti
|
87
|
+
created: Creato
|
88
|
+
discarded: Discarded
|
89
|
+
published: Pubblicato
|
90
|
+
rejected: Respinto
|
91
|
+
validating: Convalida tecnica
|
92
|
+
filter_by: Filtra per
|
93
|
+
preview: Anteprima
|
94
|
+
print: Stampare
|
95
|
+
search: Busca
|
96
|
+
show:
|
97
|
+
print: Stampare
|
98
|
+
update:
|
99
|
+
error: C'è stato un errore
|
100
|
+
success: L'iniziativa cittadina è stata aggiornata con successo
|
101
|
+
initiatives_type_scopes:
|
102
|
+
create:
|
103
|
+
error: C'è stato un errore
|
104
|
+
success: È stato creato un nuovo ambito per il tipo di iniziativa specificato
|
105
|
+
destroy:
|
106
|
+
success: L'ambito è stato rimosso con successo
|
107
|
+
edit:
|
108
|
+
back: Indietro
|
109
|
+
confirm_destroy: Sei sicuro?
|
110
|
+
destroy: Distruggere
|
111
|
+
title: Modifica l'ambito del tipo di iniziativa
|
112
|
+
update: Aggiornare
|
113
|
+
new:
|
114
|
+
back: Indietro
|
115
|
+
create: Creare
|
116
|
+
title: Crea lo scope del tipo di iniziativa
|
117
|
+
update:
|
118
|
+
error: C'è stato un errore
|
119
|
+
success: L'ambito è stato aggiornato con successo
|
120
|
+
initiatives_types:
|
121
|
+
create:
|
122
|
+
error: C'è stato un errore
|
123
|
+
success: Un nuovo tipo di iniziativa è stato creato con successo
|
124
|
+
destroy:
|
125
|
+
success: Il tipo di iniziativa è stato rimosso con successo
|
126
|
+
edit:
|
127
|
+
confirm_destroy: Sei sicuro?
|
128
|
+
destroy: Distruggere
|
129
|
+
update: Aggiornare
|
130
|
+
form:
|
131
|
+
title: Informazione generale
|
132
|
+
initiative_type_scopes:
|
133
|
+
title: Ambiti per il tipo di iniziativa
|
134
|
+
new:
|
135
|
+
create: Creare
|
136
|
+
title: Nuovo tipo di iniziativa
|
137
|
+
update:
|
138
|
+
error: C'è stato un errore
|
139
|
+
success: L'iniziativa data è stata aggiornata con successo
|
140
|
+
admin_log:
|
141
|
+
initiative:
|
142
|
+
publish: "%{user_name} ha pubblicato l'iniziativa %{resource_name}"
|
143
|
+
send_to_technical_validation: "%{user_name} ha inviato l'iniziativa %{resource_name} alla convalida tecnica"
|
144
|
+
unpublish: "%{user_name} ha scartato l'iniziativa %{resource_name}"
|
145
|
+
update: "%{user_name} ha aggiornato l'iniziativa %{resource_name}"
|
146
|
+
admin_states:
|
147
|
+
accepted: Accettato
|
148
|
+
created: Creato
|
149
|
+
discarded: Discarded
|
150
|
+
published: Pubblicato
|
151
|
+
rejected: Respinto
|
152
|
+
validating: Convalida tecnica
|
153
|
+
committee_requests:
|
154
|
+
new:
|
155
|
+
continue: Continua
|
156
|
+
help_text: Stai per richiedere l'iscrizione al comitato promotore di questa iniziativa
|
157
|
+
spawn:
|
158
|
+
success: La tua richiesta è stata inviata all'autore dell'iniziativa.
|
159
|
+
create_initiative:
|
160
|
+
fill_data:
|
161
|
+
back: Indietro
|
162
|
+
continue: Continua
|
163
|
+
fill_data_help: "<ul> <li>Rivedi il contenuto della tua iniziativa. Il tuo titolo è facile da capire? L'obiettivo della tua iniziativa è chiaro?</li> <li>Devi scegliere il tipo di firma. Di persona, online o una combinazione di entrambi</li> <li>Qual è lo scopo geografico dell'iniziativa? Città, distretto?</li> </ul>"
|
164
|
+
initiative_type: Tipo di iniziativa
|
165
|
+
more_information: "(Maggiori informazioni)"
|
166
|
+
select_scope: Seleziona un ambito
|
167
|
+
finish:
|
168
|
+
back: Indietro
|
169
|
+
back_to_initiatives: Torna alle iniziative
|
170
|
+
callout_text: Complimenti! La tua iniziativa cittadina è stata creata con successo.
|
171
|
+
go_to_my_initiatives: Vai alle mie iniziative
|
172
|
+
more_information: "(Maggiori informazioni)"
|
173
|
+
finish_help:
|
174
|
+
access_reminder: Ricorda che sarai sempre in grado di accedere alle tue iniziative attraverso il menu utente.
|
175
|
+
help_for_organizations: Se sei un'associazione dovrai caricare i verbali del consiglio di amministrazione di tutte le organizzazioni che conformano la Commissione Promotrice
|
176
|
+
help_in_person_signatures: Se hai scelto di raccogliere le firme di persona o combinato con online, dovrai caricare le informazioni richieste.
|
177
|
+
help_text: Ricorda che per elaborare correttamente l'iniziativa devi accedere al pannello di amministrazione dove troverai il menu utente, caricare le informazioni richieste e inviarlo alla procedura.
|
178
|
+
initiatives_page_link: Puoi consultare tutte queste informazioni sul %{link} dedicato a informare sulle iniziative.
|
179
|
+
page: pagina
|
180
|
+
previous_form:
|
181
|
+
back: Indietro
|
182
|
+
continue: Continua
|
183
|
+
help: In cosa consiste l'iniziativa? Annota il titolo e la descrizione. Raccomandiamo un titolo breve e conciso e una descrizione focalizzata sulla soluzione proposta.
|
184
|
+
more_information: "(Maggiori informazioni)"
|
185
|
+
promotal_committee:
|
186
|
+
back: Indietro
|
187
|
+
individual_help_text: Le iniziative dei cittadini richiedono una Commissione di promozione composta da almeno tre persone (gli attestati). È necessario condividere il seguente collegamento con le altre persone che fanno parte di questa iniziativa. Quando i tuoi contatti riceveranno questo link dovranno seguire i passaggi indicati.
|
188
|
+
more_information: "(Maggiori informazioni)"
|
189
|
+
select_initiative_type:
|
190
|
+
back: Indietro
|
191
|
+
more_information: "(Maggiori informazioni)"
|
192
|
+
select: Scegliere
|
193
|
+
select_initiative_type_help: Le iniziative dei cittadini sono un mezzo attraverso il quale la cittadinanza può intervenire in modo che il Consiglio comunale possa intraprendere azioni in difesa dell'interesse generale che rientrano nei campi di giurisdizione municipale. Quale iniziativa vuoi lanciare?
|
194
|
+
share_committee_link:
|
195
|
+
continue: Continua
|
196
|
+
invite_to_committee_help: Link per invitare persone che faranno parte del comitato promotore
|
197
|
+
show_similar_initiatives:
|
198
|
+
back: Indietro
|
199
|
+
compare_help: Se una qualsiasi delle seguenti iniziative è simile alla tua, ti incoraggiamo a supportarla. La tua proposta avrà più possibilità di essere completata.
|
200
|
+
continue: La mia iniziativa è diversa
|
201
|
+
more_information: "(Maggiori informazioni)"
|
202
|
+
events:
|
203
|
+
create_initiative_event:
|
204
|
+
email_intro: "%{author_name} %{author_nickname}, che stai seguendo, ha creato una nuova iniziativa, dai un'occhiata e dai:"
|
205
|
+
email_outro: Hai ricevuto questa notifica perché stai seguendo %{author_nickname}. È possibile interrompere la ricezione di notifiche seguendo il collegamento precedente.
|
206
|
+
email_subject: Nuova iniziativa di %{author_nickname}
|
207
|
+
notification_title: L'iniziativa <a href="%{resource_path}">%{resource_title}</a> è stata creata da <a href="%{author_path}">%{author_name} %{author_nickname}</a>.
|
208
|
+
endorse_initiative_event:
|
209
|
+
email_intro: "%{author_name} %{author_nickname}, che stai seguendo, ha approvato la seguente iniziativa, forse tu vuoi contribuire alla conversazione:"
|
210
|
+
email_outro: Hai ricevuto questa notifica perché stai seguendo %{author_nickname}. È possibile interrompere la ricezione di notifiche seguendo il collegamento precedente.
|
211
|
+
email_subject: Iniziativa approvata da %{author_nickname}
|
212
|
+
notification_title: L'iniziativa <a href="%{resource_path}">%{resource_title}</a> è stata approvata da <a href="%{author_path}">%{author_name} %{author_nickname}</a>.
|
213
|
+
index:
|
214
|
+
title: iniziative
|
215
|
+
initiative_votes:
|
216
|
+
create:
|
217
|
+
error: Ci sono stati errori nel votare l'iniziativa.
|
218
|
+
initiatives:
|
219
|
+
author:
|
220
|
+
deleted: eliminata
|
221
|
+
count:
|
222
|
+
title:
|
223
|
+
one: "%{count} iniziativa"
|
224
|
+
other: "%{count} iniziative"
|
225
|
+
filters:
|
226
|
+
any: Qualunque
|
227
|
+
author: Autore
|
228
|
+
closed: Chiuso
|
229
|
+
myself: Le mie iniziative
|
230
|
+
open: Aperto
|
231
|
+
search: Ricerca
|
232
|
+
state: Stato
|
233
|
+
type: genere
|
234
|
+
type_prompt: Seleziona un tipo
|
235
|
+
filters_small_view:
|
236
|
+
close_modal: Chiudi la finestra
|
237
|
+
filter: Filtro
|
238
|
+
filter_by: Filtra per
|
239
|
+
unfold: spiegare
|
240
|
+
index_header:
|
241
|
+
new_initiative: Nuova iniziativa
|
242
|
+
orders:
|
243
|
+
label: 'Ordina le iniziative per:'
|
244
|
+
most_commented: Più commentato
|
245
|
+
most_voted: Più votati
|
246
|
+
random: Casuale
|
247
|
+
recent: Piu recente
|
248
|
+
result:
|
249
|
+
initiative_accepted_reason: Questa iniziativa è stata accettata perché
|
250
|
+
initiative_rejected_reason: Questa iniziativa è stata respinta a causa della sua mancanza di supporti.
|
251
|
+
show:
|
252
|
+
any_vote_method: Questa iniziativa cittadina raccoglie supporto online e faccia a faccia.
|
253
|
+
offline_method: Questa iniziativa cittadina raccoglie solo supporti faccia a faccia.
|
254
|
+
signature_identities:
|
255
|
+
select_identity: Seleziona l'identità dell'utente
|
256
|
+
statistics:
|
257
|
+
assistants_count_title: assistenti
|
258
|
+
comments_count_title: Commenti
|
259
|
+
meetings_count_title: incontri
|
260
|
+
supports_count_title: adesioni
|
261
|
+
supports:
|
262
|
+
title: Elenco delle adesioni
|
263
|
+
supports_count:
|
264
|
+
count:
|
265
|
+
one: " supporto"
|
266
|
+
other: " supporti"
|
267
|
+
vote_cabin:
|
268
|
+
already_voted: Già votato
|
269
|
+
supports_required: "%{total_supports} voti richiesti"
|
270
|
+
vote: Cartello
|
271
|
+
votes_blocked: Voto disabilitato
|
272
|
+
votes_count:
|
273
|
+
count:
|
274
|
+
one: FIRMA
|
275
|
+
other: FIRME
|
276
|
+
initiatives_mailer:
|
277
|
+
creation_subject: La tua iniziativa cittadina '%{title}' è stata creata
|
278
|
+
initiative_link:
|
279
|
+
check_initiative_details: Puoi vedere i dettagli dell'iniziativa
|
280
|
+
here: Qui
|
281
|
+
more_information: Qui hai maggiori informazioni sul processo di creazione dell'iniziativa.
|
282
|
+
progress_report_body_for: L'iniziativa %{title} ha raggiunto il %{percentage}% dei supporti richiesti.
|
283
|
+
progress_report_for: 'Riprendi sull''iniziativa: %{title}'
|
284
|
+
promotal_committee_help: Ricorda che devi invitare almeno %{member_count} persone al comitato promotore. Inoltra il seguente link per invitare le persone al comitato promotore
|
285
|
+
status_change_body_for: 'L''iniziativa %{title} ha cambiato il suo stato in: %{state}'
|
286
|
+
status_change_for: L'iniziativa %{title} ha cambiato il suo stato
|
287
|
+
technical_validation_body_for: L'iniziativa %{title} ha richiesto la sua convalida tecnica.
|
288
|
+
technical_validation_for: L'iniziativa %{title} ha richiesto la sua convalida tecnica.
|
289
|
+
pages:
|
290
|
+
home:
|
291
|
+
highlighted_initiatives:
|
292
|
+
active_initiatives: Iniziative attive
|
293
|
+
see_all_initiatives: Vedi tutte le iniziative
|
294
|
+
states:
|
295
|
+
accepted: Accettato
|
296
|
+
expired: Scaduto
|
297
|
+
menu:
|
298
|
+
initiatives: iniziative
|
299
|
+
layouts:
|
300
|
+
decidim:
|
301
|
+
admin:
|
302
|
+
initiative:
|
303
|
+
attachments: allegati
|
304
|
+
committee_members: membri del Comitato
|
305
|
+
components: componenti
|
306
|
+
information: Informazione
|
307
|
+
initiative_creation_header:
|
308
|
+
fill_data: Creare
|
309
|
+
finish: finire
|
310
|
+
previous_form: Inizio
|
311
|
+
promotal_committee: Comitato promozionale
|
312
|
+
select_initiative_type: Scegliere
|
313
|
+
show_similar_initiatives: Confrontare
|
314
|
+
initiative_header:
|
315
|
+
initiative_menu_item: Iniziativa
|
316
|
+
unfold: spiegare
|
317
|
+
initiatives:
|
318
|
+
initiative:
|
319
|
+
check: Controlla
|
320
|
+
check_and_support: Guardalo e firmalo
|
321
|
+
no_initiatives_yet:
|
322
|
+
no_initiatives_yet: Nessuna iniziativa ancora!
|
@@ -0,0 +1,322 @@
|
|
1
|
+
nl:
|
2
|
+
activemodel:
|
3
|
+
attributes:
|
4
|
+
initiative:
|
5
|
+
decidim_user_group_id: Auteur
|
6
|
+
description: Beschrijving
|
7
|
+
offline_votes: Face-to-face ondersteuning
|
8
|
+
scope_id: Bereik
|
9
|
+
signature_end_time: Einde van de periode om handtekeningen te verzamelen
|
10
|
+
signature_start_time: Begin van de periode om handtekeningen te verzamelen
|
11
|
+
signature_type: Handtekeningstype
|
12
|
+
signature_type_values:
|
13
|
+
any: Gemengd
|
14
|
+
offline: Face to face
|
15
|
+
online: Online
|
16
|
+
title: Titel
|
17
|
+
initiative_author:
|
18
|
+
address: Adres
|
19
|
+
city: stad
|
20
|
+
id_document: DNI / NIE
|
21
|
+
name: Naam en familienaam
|
22
|
+
phone_number: Telefoonnummer
|
23
|
+
post_code: Postcode
|
24
|
+
province: Provincie
|
25
|
+
initiatives_committee_member:
|
26
|
+
user: Commissie lid
|
27
|
+
initiatives_type:
|
28
|
+
banner_image: Banner afbeelding
|
29
|
+
description: Beschrijving
|
30
|
+
title: Titel
|
31
|
+
organization_data:
|
32
|
+
address: Adres
|
33
|
+
id_document: CIF
|
34
|
+
name: Volledige naam
|
35
|
+
decidim:
|
36
|
+
admin:
|
37
|
+
menu:
|
38
|
+
initiatives: initiatieven
|
39
|
+
initiatives_types: Initiatieftypen
|
40
|
+
models:
|
41
|
+
initiatives:
|
42
|
+
fields:
|
43
|
+
created_at: Aangemaakt op
|
44
|
+
state: Staat
|
45
|
+
supports_count: steunen
|
46
|
+
title: initiatieven
|
47
|
+
initiatives_type_scope:
|
48
|
+
fields:
|
49
|
+
scope: Bereik
|
50
|
+
supports_required: Ondersteuning vereist
|
51
|
+
name: Type initiatief
|
52
|
+
initiatives_types:
|
53
|
+
fields:
|
54
|
+
created_at: Aangemaakt op
|
55
|
+
title: Initiatieftypen
|
56
|
+
name: Initiatieftype
|
57
|
+
titles:
|
58
|
+
initiatives: initiatieven
|
59
|
+
initiatives_types: Initiatieftypen
|
60
|
+
initiatives:
|
61
|
+
admin:
|
62
|
+
committee_requests:
|
63
|
+
index:
|
64
|
+
approve: Goedkeuren
|
65
|
+
confirm_revoke: Weet je het zeker?
|
66
|
+
invite_to_committee_help: Deel deze link om andere gebruikers uit te nodigen voor de promotiecommissie
|
67
|
+
no_members_yet: Er zijn geen leden in de promotieraad
|
68
|
+
revoke: Intrekken
|
69
|
+
title: Commissieleden
|
70
|
+
initiatives:
|
71
|
+
edit:
|
72
|
+
accept: Accepteer initiatief
|
73
|
+
confirm: Weet je het zeker?
|
74
|
+
discard: Gooi het initiatief weg
|
75
|
+
export_votes: Exportondersteuning
|
76
|
+
reject: Verwerp initiatief
|
77
|
+
send_to_technical_validation: Stuur naar technische validatie
|
78
|
+
success: Het initiatief is verzonden naar technische validatie
|
79
|
+
update: Bijwerken
|
80
|
+
form:
|
81
|
+
title: Algemene informatie
|
82
|
+
index:
|
83
|
+
actions_title: Actie
|
84
|
+
filter:
|
85
|
+
accepted: Aanvaard
|
86
|
+
all: Alle
|
87
|
+
created: Aangemaakt
|
88
|
+
discarded: verworpen
|
89
|
+
published: Gepubliceerd
|
90
|
+
rejected: Verworpen
|
91
|
+
validating: Technische validatie
|
92
|
+
filter_by: Sorteer op
|
93
|
+
preview: Voorbeeld
|
94
|
+
print: Afdrukken
|
95
|
+
search: Busca
|
96
|
+
show:
|
97
|
+
print: Afdrukken
|
98
|
+
update:
|
99
|
+
error: er is een fout opgetreden
|
100
|
+
success: Het burgerinitiatief is met succes bijgewerkt
|
101
|
+
initiatives_type_scopes:
|
102
|
+
create:
|
103
|
+
error: er is een fout opgetreden
|
104
|
+
success: Er is een nieuwe scope voor het gegeven initiatieftype gecreëerd
|
105
|
+
destroy:
|
106
|
+
success: De scope is succesvol verwijderd
|
107
|
+
edit:
|
108
|
+
back: Terug
|
109
|
+
confirm_destroy: Weet je het zeker?
|
110
|
+
destroy: Vernietigen
|
111
|
+
title: Bewerk het initiatieftype bereik
|
112
|
+
update: Bijwerken
|
113
|
+
new:
|
114
|
+
back: Terug
|
115
|
+
create: creëren
|
116
|
+
title: Creër initiatiefstype bereik
|
117
|
+
update:
|
118
|
+
error: er is een fout opgetreden
|
119
|
+
success: Het bereik is met succes bijgewerkt
|
120
|
+
initiatives_types:
|
121
|
+
create:
|
122
|
+
error: er is een fout opgetreden
|
123
|
+
success: Een nieuw initiatieftype is succesvol gemaakt
|
124
|
+
destroy:
|
125
|
+
success: Het initiatieftype is succesvol verwijderd
|
126
|
+
edit:
|
127
|
+
confirm_destroy: Weet je het zeker?
|
128
|
+
destroy: Vernietigen
|
129
|
+
update: Bijwerken
|
130
|
+
form:
|
131
|
+
title: Algemene informatie
|
132
|
+
initiative_type_scopes:
|
133
|
+
title: Scopes voor het initiatieftype
|
134
|
+
new:
|
135
|
+
create: creëren
|
136
|
+
title: Nieuw initiatiefstype
|
137
|
+
update:
|
138
|
+
error: Er is een fout opgetreden
|
139
|
+
success: Het gegeven initiatief is met succes bijgewerkt
|
140
|
+
admin_log:
|
141
|
+
initiative:
|
142
|
+
publish: "%{user_name} heeft het %{resource_name} -initiatief gepubliceerd"
|
143
|
+
send_to_technical_validation: "%{user_name} heeft het %{resource_name} -initiatief verzonden naar technische validatie"
|
144
|
+
unpublish: "%{user_name} heeft het initiatief %{resource_name} verwijderd"
|
145
|
+
update: "%{user_name} heeft het initiatief %{resource_name} bijgewerkt"
|
146
|
+
admin_states:
|
147
|
+
accepted: Aanvaard
|
148
|
+
created: gemaakt
|
149
|
+
discarded: afgedankte
|
150
|
+
published: Gepubliceerd
|
151
|
+
rejected: Verworpen
|
152
|
+
validating: Technische validatie
|
153
|
+
committee_requests:
|
154
|
+
new:
|
155
|
+
continue: Doorgaan met
|
156
|
+
help_text: Je staat op het punt lid te worden van de promotieraad van dit initiatief
|
157
|
+
spawn:
|
158
|
+
success: Je verzoek is verzonden aan de auteur van het initiatief.
|
159
|
+
create_initiative:
|
160
|
+
fill_data:
|
161
|
+
back: Terug
|
162
|
+
continue: Doorgaan met
|
163
|
+
fill_data_help: "<ul> <li>Herbekijk de inhoud van je initiatief. Is uw titel gemakkelijk te begrijpen? Is het doel van uw initiatief duidelijk?</li> <li>Je moet het type handtekening kiezen. Persoonlijk, online of een combinatie van beide</li> <li>Wat is de geografische reikwijdte van het initiatief? Stadsdeel?</li> </ul>"
|
164
|
+
initiative_type: Initiatieftype
|
165
|
+
more_information: "(Meer informatie)"
|
166
|
+
select_scope: Selecteer een scope
|
167
|
+
finish:
|
168
|
+
back: Terug
|
169
|
+
back_to_initiatives: Terug naar initiatieven
|
170
|
+
callout_text: Hartelijk gefeliciteerd! Je burgerinitiatief is succesvol aangemaakt.
|
171
|
+
go_to_my_initiatives: Ga naar mijn initiatieven
|
172
|
+
more_information: "(Meer informatie)"
|
173
|
+
finish_help:
|
174
|
+
access_reminder: Vergeet niet dat je altijd toegang hebt tot je initiatieven via het gebruikersmenu.
|
175
|
+
help_for_organizations: Als je een vereniging bent, moet je de notulen van de raad van bestuur van alle organisaties die conform de Promotcommissie zijn, uploaden
|
176
|
+
help_in_person_signatures: Als je ervoor hebt gekozen de handtekeningen persoonlijk te verzamelen of in combinatie met online, moet je de vereiste informatie uploaden.
|
177
|
+
help_text: 'Belangrijk: om het initiatief goed te verwerken moet je toegang hebben tot het administratiepaneel waar je het gebruikersmenu kan vinden. De vereiste informatie kan je uploaden en het naar de procedure sturen.'
|
178
|
+
initiatives_page_link: Je kunt al deze informatie op de %{link} opzoeken om je te informeren over initiatieven.
|
179
|
+
page: pagina
|
180
|
+
previous_form:
|
181
|
+
back: Terug
|
182
|
+
continue: Doorgaan met
|
183
|
+
help: Waaruit bestaat het initiatief? Noteer de titel en beschrijving. We adviseren een korte en bondige titel en een beschrijving gericht op de voorgestelde oplossing.
|
184
|
+
more_information: "(Meer informatie)"
|
185
|
+
promotal_committee:
|
186
|
+
back: Terug
|
187
|
+
individual_help_text: Burgerinspraken vereisen een promotie groep bestaande uit ten minste drie personen (verklaringen). Je moet de volgende link delen met de andere mensen die deel uitmaken van dit initiatief. Wanneer je contacten deze link ontvangen, moeten zij de aangegeven stappen volgen.
|
188
|
+
more_information: "(Meer informatie)"
|
189
|
+
select_initiative_type:
|
190
|
+
back: Terug
|
191
|
+
more_information: "(Meer informatie)"
|
192
|
+
select: Kiezen
|
193
|
+
select_initiative_type_help: Burgerinitiatieven zijn een middel waarmee het burgerschap kan ingrijpen, zodat de gemeenteraad acties kan ondernemen ter verdediging van het algemeen belang die zich binnen de rechtsgebieden van de gemeente bevinden. Welk initiatief wil jij lanceren?
|
194
|
+
share_committee_link:
|
195
|
+
continue: Doorgaan met
|
196
|
+
invite_to_committee_help: Link om mensen uit te nodigen die deel zullen uitmaken van de promotiecommissie
|
197
|
+
show_similar_initiatives:
|
198
|
+
back: Terug
|
199
|
+
compare_help: Als een van de volgende initiatieven vergelijkbaar is met die van jou, moedigen wij je aan dit te ondersteunen. Je voorstel heeft meer mogelijkheden om gedaan te worden.
|
200
|
+
continue: Mijn initiatief is anders
|
201
|
+
more_information: "(Meer informatie)"
|
202
|
+
events:
|
203
|
+
create_initiative_event:
|
204
|
+
email_intro: "%{author_name} %{author_nickname}, die je volgt, heeft een nieuw initiatief gemaakt, bekijk het en draag bij:"
|
205
|
+
email_outro: Je hebt deze melding ontvangen omdat je %{author_nickname} volgt. Je kunt stoppen met het ontvangen van notificaties door te klikken op de voorgaande link.
|
206
|
+
email_subject: Nieuw initiatief van %{author_nickname}
|
207
|
+
notification_title: Het <a href="%{resource_path}">%{resource_title}</a> initiatief is gemaakt door <a href="%{author_path}">%{author_name} %{author_nickname}</a>.
|
208
|
+
endorse_initiative_event:
|
209
|
+
email_intro: "%{author_name} %{author_nickname}, die je volgt, heeft het volgende initiatief onderschreven, misschien wil je een bijdrage leveren aan het gesprek:"
|
210
|
+
email_outro: Je hebt deze melding ontvangen omdat je %{author_nickname}volgt. Je kunt stoppen met het ontvangen van meldingen via deze link.
|
211
|
+
email_subject: Initiatief goedgekeurd door %{author_nickname}
|
212
|
+
notification_title: Het <a href="%{resource_path}">%{resource_title}</a> initiatief werd goedgekeurd door <a href="%{author_path}">%{author_name} %{author_nickname}</a>.
|
213
|
+
index:
|
214
|
+
title: initiatieven
|
215
|
+
initiative_votes:
|
216
|
+
create:
|
217
|
+
error: Er zijn fouten opgetreden bij het stemmen op het initiatief.
|
218
|
+
initiatives:
|
219
|
+
author:
|
220
|
+
deleted: verwijderde
|
221
|
+
count:
|
222
|
+
title:
|
223
|
+
one: "%{count} initiatief"
|
224
|
+
other: "%{count} initiatieven"
|
225
|
+
filters:
|
226
|
+
any: Alle
|
227
|
+
author: Auteur
|
228
|
+
closed: Gesloten
|
229
|
+
myself: Mijn initiatieven
|
230
|
+
open: Open
|
231
|
+
search: Zoeken
|
232
|
+
state: Staat
|
233
|
+
type: Type
|
234
|
+
type_prompt: Selecteer een type
|
235
|
+
filters_small_view:
|
236
|
+
close_modal: Sluit venster
|
237
|
+
filter: Sorteer
|
238
|
+
filter_by: Sorteer op
|
239
|
+
unfold: Uitvouwen
|
240
|
+
index_header:
|
241
|
+
new_initiative: Nieuw initiatief
|
242
|
+
orders:
|
243
|
+
label: 'Sorteer initiatieven op:'
|
244
|
+
most_commented: Meest gereageerd
|
245
|
+
most_voted: Meest gestemd
|
246
|
+
random: Willekeurig
|
247
|
+
recent: Meest recente
|
248
|
+
result:
|
249
|
+
initiative_accepted_reason: Dit initiatief is geaccepteerd omdat
|
250
|
+
initiative_rejected_reason: Dit initiatief is afgewezen vanwege het gebrek aan ondersteuning.
|
251
|
+
show:
|
252
|
+
any_vote_method: Dit burgerinitiatief verzamelt zowel online als face-to-face stemmen.
|
253
|
+
offline_method: Dit burgerinitiatief verzamelt alleen face-to-face stemmen.
|
254
|
+
signature_identities:
|
255
|
+
select_identity: Selecteer gebruikersidentiteit
|
256
|
+
statistics:
|
257
|
+
assistants_count_title: assistenten
|
258
|
+
comments_count_title: Reacties
|
259
|
+
meetings_count_title: Events
|
260
|
+
supports_count_title: verklevingen
|
261
|
+
supports:
|
262
|
+
title: Lijst van verklevingen
|
263
|
+
supports_count:
|
264
|
+
count:
|
265
|
+
one: " ondersteuning"
|
266
|
+
other: " ondersteuningen"
|
267
|
+
vote_cabin:
|
268
|
+
already_voted: Reeds gestemd
|
269
|
+
supports_required: "%{total_supports} stemmen vereist"
|
270
|
+
vote: Teken
|
271
|
+
votes_blocked: Stemmen uitgeschakeld
|
272
|
+
votes_count:
|
273
|
+
count:
|
274
|
+
one: HANDTEKENING
|
275
|
+
other: HANDTEKENINGEN
|
276
|
+
initiatives_mailer:
|
277
|
+
creation_subject: Je burgerinitiatief '%{title}' is gemaakt
|
278
|
+
initiative_link:
|
279
|
+
check_initiative_details: Je kan de details van het initiatief bekijken
|
280
|
+
here: hier
|
281
|
+
more_information: Hier heb je meer informatie over het proces voor het maken van initiatieven.
|
282
|
+
progress_report_body_for: Het initiatief %{title} heeft %{percentage}% van de vereiste stemmen behaald.
|
283
|
+
progress_report_for: 'Doorgaan over het initiatief: %{title}'
|
284
|
+
promotal_committee_help: Vergeet niet dat je ten minste %{member_count} mensen moet uitnodigen voor een promotiecommissie. Stuur de volgende link door om mensen uit te nodigen voor de promotiecommissie
|
285
|
+
status_change_body_for: 'Het initiatief %{title} heeft de status gewijzigd in: %{state}'
|
286
|
+
status_change_for: Het initiatief %{title} is van status veranderd
|
287
|
+
technical_validation_body_for: Het initiatief %{title} heeft om technische validatie ervan verzocht.
|
288
|
+
technical_validation_for: Het initiatief %{title} heeft om technische validatie ervan verzocht.
|
289
|
+
pages:
|
290
|
+
home:
|
291
|
+
highlighted_initiatives:
|
292
|
+
active_initiatives: Actieve initiatieven
|
293
|
+
see_all_initiatives: Bekijk alle initiatieven
|
294
|
+
states:
|
295
|
+
accepted: Aanvaard
|
296
|
+
expired: Vervallen
|
297
|
+
menu:
|
298
|
+
initiatives: initiatieven
|
299
|
+
layouts:
|
300
|
+
decidim:
|
301
|
+
admin:
|
302
|
+
initiative:
|
303
|
+
attachments: Bijlagen
|
304
|
+
committee_members: Commissieleden
|
305
|
+
components: Onderdelen
|
306
|
+
information: Informatie
|
307
|
+
initiative_creation_header:
|
308
|
+
fill_data: creëren
|
309
|
+
finish: Voltooien
|
310
|
+
previous_form: Begin
|
311
|
+
promotal_committee: Promotieraad
|
312
|
+
select_initiative_type: Kiezen
|
313
|
+
show_similar_initiatives: Vergelijken
|
314
|
+
initiative_header:
|
315
|
+
initiative_menu_item: Initiatief
|
316
|
+
unfold: Ontvouwen
|
317
|
+
initiatives:
|
318
|
+
initiative:
|
319
|
+
check: Bekijken
|
320
|
+
check_and_support: Bekijk het en onderteken
|
321
|
+
no_initiatives_yet:
|
322
|
+
no_initiatives_yet: Nog geen initiatieven!
|