decidim-initiatives 0.30.2 → 0.31.0.rc1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +46 -9
- data/app/cells/decidim/initiatives/content_blocks/highlighted_initiatives_settings_form/show.erb +7 -2
- data/app/cells/decidim/initiatives/initiative_g_cell.rb +5 -1
- data/app/commands/decidim/initiatives/admin/publish_initiative.rb +1 -5
- data/app/commands/decidim/initiatives/admin/update_initiative.rb +1 -2
- data/app/commands/decidim/initiatives/create_initiative.rb +0 -1
- data/app/commands/decidim/initiatives/update_initiative.rb +1 -3
- data/app/commands/decidim/initiatives/vote_initiative.rb +1 -11
- data/app/controllers/concerns/decidim/initiatives/has_signature_workflow.rb +36 -0
- data/app/controllers/concerns/decidim/initiatives/needs_initiative.rb +1 -12
- data/app/controllers/decidim/initiatives/admin/initiatives_controller.rb +2 -2
- data/app/controllers/decidim/initiatives/admin/initiatives_settings_controller.rb +1 -1
- data/app/controllers/decidim/initiatives/admin/initiatives_type_scopes_controller.rb +2 -2
- data/app/controllers/decidim/initiatives/admin/initiatives_types_controller.rb +2 -2
- data/app/controllers/decidim/initiatives/committee_requests_controller.rb +10 -2
- data/app/controllers/decidim/initiatives/create_initiative_controller.rb +84 -18
- data/app/controllers/decidim/initiatives/initiative_signatures_controller.rb +133 -42
- data/app/controllers/decidim/initiatives/initiative_votes_controller.rb +3 -2
- data/app/controllers/decidim/initiatives/initiatives_controller.rb +21 -2
- data/app/forms/decidim/initiatives/admin/initiative_form.rb +0 -1
- data/app/forms/decidim/initiatives/initiative_form.rb +0 -3
- data/app/helpers/decidim/initiatives/application_helper.rb +2 -0
- data/app/helpers/decidim/initiatives/initiatives_helper.rb +0 -1
- data/app/models/decidim/initiative.rb +7 -31
- data/app/models/decidim/initiatives_committee_member.rb +1 -1
- data/app/models/decidim/initiatives_type.rb +5 -2
- data/app/models/decidim/initiatives_vote.rb +2 -2
- data/app/packs/entrypoints/decidim_initiatives.js +1 -1
- data/app/packs/entrypoints/decidim_initiatives_admin.scss +1 -1
- data/app/packs/src/decidim/initiatives/admin/initiatives_types.js +2 -11
- data/app/packs/src/decidim/initiatives/admin/invite_users.js +1 -1
- data/app/packs/src/decidim/initiatives/application.js +1 -1
- data/app/packs/src/decidim/initiatives/check_code.js +114 -0
- data/app/packs/src/decidim/initiatives/initiative_creation_wizard.js +16 -0
- data/app/packs/src/decidim/initiatives/scoped_type.js +1 -1
- data/app/packs/stylesheets/initiatives.scss +16 -2
- data/app/permissions/decidim/initiatives/admin/permissions.rb +1 -4
- data/app/permissions/decidim/initiatives/permissions.rb +26 -16
- data/app/presenters/decidim/initiative_presenter.rb +12 -6
- data/app/presenters/decidim/initiatives/admin_log/initiative_presenter.rb +1 -2
- data/app/queries/decidim/initiatives/initiatives_stats_followers_count.rb +14 -0
- data/app/queries/decidim/initiatives/initiatives_stats_participants_count.rb +14 -0
- data/app/serializers/decidim/initiatives/open_data_initiative_serializer.rb +0 -1
- data/app/services/decidim/initiatives/data_encryptor.rb +1 -1
- data/app/services/decidim/initiatives/legacy_signature_handler.rb +25 -0
- data/app/services/decidim/initiatives/progress_notifier.rb +1 -7
- data/app/services/decidim/initiatives/signature_handler.rb +248 -0
- data/app/services/decidim/initiatives/status_change_notifier.rb +1 -7
- data/app/views/decidim/initiatives/admin/committee_requests/index.html.erb +29 -11
- data/app/views/decidim/initiatives/admin/exports/_dropdown.html.erb +17 -20
- data/app/views/decidim/initiatives/admin/initiatives/_form.html.erb +7 -13
- data/app/views/decidim/initiatives/admin/initiatives/_initiative_attachments.erb +2 -2
- data/app/views/decidim/initiatives/admin/initiatives/index.html.erb +76 -47
- data/app/views/decidim/initiatives/admin/initiatives_types/_form.html.erb +13 -21
- data/app/views/decidim/initiatives/admin/initiatives_types/_initiative_type_scopes.html.erb +28 -12
- data/app/views/decidim/initiatives/admin/initiatives_types/index.html.erb +33 -15
- data/app/views/decidim/initiatives/create_initiative/_committee_member.html.erb +27 -0
- data/app/views/decidim/initiatives/create_initiative/_return_to_initiatives_button.html.erb +3 -0
- data/app/views/decidim/initiatives/create_initiative/_send_to_technical_validation_button.html.erb +10 -0
- data/app/views/decidim/initiatives/create_initiative/_share_committee_link.html.erb +5 -1
- data/app/views/decidim/initiatives/create_initiative/fill_data.html.erb +7 -11
- data/app/views/decidim/initiatives/create_initiative/finish.html.erb +16 -13
- data/app/views/decidim/initiatives/create_initiative/promotal_committee.html.erb +33 -6
- data/app/views/decidim/initiatives/create_initiative/select_initiative_type.html.erb +40 -26
- data/app/views/decidim/initiatives/initiative_signatures/_sms_code_form.html.erb +22 -0
- data/app/views/decidim/initiatives/initiative_signatures/_sms_phone_number_form.html.erb +13 -0
- data/app/views/decidim/initiatives/initiative_signatures/fill_personal_data.html.erb +23 -22
- data/app/views/decidim/initiatives/initiative_signatures/finish.html.erb +17 -5
- data/app/views/decidim/initiatives/initiative_signatures/sms_code.html.erb +6 -8
- data/app/views/decidim/initiatives/initiative_signatures/sms_phone_number.html.erb +3 -8
- data/app/views/decidim/initiatives/initiative_signatures/update_buttons_and_counters.js.erb +3 -14
- data/app/views/decidim/initiatives/initiative_votes/update_buttons_and_counters.js.erb +3 -14
- data/app/views/decidim/initiatives/initiatives/_committee_members.html.erb +1 -1
- data/app/views/decidim/initiatives/initiatives/_form.html.erb +1 -3
- data/app/views/decidim/initiatives/initiatives/_new_initiative_button.html.erb +10 -3
- data/app/views/decidim/initiatives/initiatives/_pending_initiatives.html.erb +5 -0
- data/app/views/decidim/initiatives/initiatives/index.html.erb +8 -0
- data/app/views/decidim/initiatives/initiatives/show.html.erb +2 -2
- data/app/views/layouts/decidim/_initiative_signature_creation_header.html.erb +20 -2
- data/app/views/layouts/decidim/admin/_manage_initiatives.html.erb +1 -1
- data/app/views/layouts/decidim/initiative_signature_creation.html.erb +3 -1
- data/config/assets.rb +2 -2
- data/config/locales/ar.yml +0 -45
- data/config/locales/bg.yml +0 -54
- data/config/locales/ca-IT.yml +99 -51
- data/config/locales/ca.yml +99 -51
- data/config/locales/cs.yml +93 -54
- data/config/locales/de.yml +99 -51
- data/config/locales/el.yml +0 -45
- data/config/locales/en.yml +99 -51
- data/config/locales/es-MX.yml +99 -51
- data/config/locales/es-PY.yml +99 -51
- data/config/locales/es.yml +99 -51
- data/config/locales/eu.yml +99 -51
- data/config/locales/fi-plain.yml +99 -51
- data/config/locales/fi.yml +99 -51
- data/config/locales/fr-CA.yml +44 -51
- data/config/locales/fr.yml +44 -51
- data/config/locales/ga-IE.yml +0 -17
- data/config/locales/gl.yml +0 -41
- data/config/locales/hu.yml +0 -54
- data/config/locales/id-ID.yml +0 -40
- data/config/locales/is-IS.yml +0 -22
- data/config/locales/it.yml +0 -53
- data/config/locales/ja.yml +98 -49
- data/config/locales/lb.yml +0 -50
- data/config/locales/lt.yml +0 -56
- data/config/locales/lv.yml +0 -46
- data/config/locales/nl.yml +0 -47
- data/config/locales/no.yml +0 -53
- data/config/locales/pl.yml +0 -56
- data/config/locales/pt-BR.yml +0 -53
- data/config/locales/pt.yml +0 -53
- data/config/locales/ro-RO.yml +92 -50
- data/config/locales/ru.yml +0 -25
- data/config/locales/sk.yml +0 -43
- data/config/locales/sl.yml +0 -1
- data/config/locales/sv.yml +10 -53
- data/config/locales/tr-TR.yml +0 -53
- data/config/locales/uk.yml +0 -25
- data/config/locales/zh-CN.yml +0 -45
- data/config/locales/zh-TW.yml +0 -53
- data/db/migrate/20250605104500_remove_hashtag_column_initiatives.rb +7 -0
- data/lib/decidim/api/initiative_api_type.rb +3 -0
- data/lib/decidim/api/initiative_type.rb +23 -4
- data/lib/decidim/exporters/initiative_votes_pdf.rb +1 -1
- data/lib/decidim/initiatives/default_signature_authorizer.rb +17 -0
- data/lib/decidim/initiatives/engine.rb +17 -14
- data/lib/decidim/initiatives/participatory_space.rb +15 -1
- data/lib/decidim/initiatives/seeds.rb +1 -2
- data/lib/decidim/initiatives/signature_workflow_manifest.rb +176 -0
- data/lib/decidim/initiatives/signatures.rb +12 -0
- data/lib/decidim/initiatives/test/factories.rb +7 -7
- data/lib/decidim/initiatives/test/initiatives_signatures_test_helpers.rb +19 -0
- data/lib/decidim/initiatives/validatable_authorizations.rb +83 -0
- data/lib/decidim/initiatives/version.rb +1 -1
- data/lib/decidim/initiatives.rb +23 -12
- metadata +33 -21
- data/app/events/decidim/initiatives/endorse_initiative_event.rb +0 -13
- data/app/forms/decidim/initiatives/vote_form.rb +0 -208
- data/app/packs/src/decidim/initiatives/identity_selector_dialog.js +0 -14
- data/app/services/decidim/initiatives/pdf_signature_example.rb +0 -110
- data/app/views/decidim/initiatives/initiative_signatures/_wizard_steps.html.erb +0 -15
- data/app/views/decidim/initiatives/initiatives/_interactions.html.erb +0 -10
- data/app/views/layouts/decidim/_initiative_header.html.erb +0 -27
data/config/locales/lb.yml
CHANGED
@@ -3,7 +3,6 @@ lb:
|
|
3
3
|
activemodel:
|
4
4
|
attributes:
|
5
5
|
initiative:
|
6
|
-
decidim_user_group_id: Autor
|
7
6
|
description: Beschreibung
|
8
7
|
offline_votes: Face-to-Face-Unterstützung
|
9
8
|
offline_votes_for_scope: Persönliche Unterschriften für %{scope_name}
|
@@ -27,7 +26,6 @@ lb:
|
|
27
26
|
collect_user_extra_fields: Sammeln Sie persönliche Daten des Benutzers bei der Unterschrift
|
28
27
|
custom_signature_end_date_enabled: Die Auswahl des Enddatums der Unterschriftensammlung für Autoren freigeben
|
29
28
|
description: Beschreibung
|
30
|
-
document_number_authorization_handler: Berechtigung zur Überprüfung der Belegnummer bei Abstimmungen
|
31
29
|
extra_fields_legal_information: Rechtliche Informationen zur Erhebung personenbezogener Daten
|
32
30
|
minimum_committee_members: Minimum der Ausschussmitglieder
|
33
31
|
online_signature_enabled: Online-Signatur aktiviert
|
@@ -72,14 +70,11 @@ lb:
|
|
72
70
|
label: Zustand
|
73
71
|
values:
|
74
72
|
accepted: Ausreichend Unterschriften
|
75
|
-
created: Erstellt
|
76
73
|
discarded: Verworfen
|
77
74
|
rejected: Zu wenige Unterschriften
|
78
75
|
validating: Technische Validierung
|
79
76
|
type_id_eq:
|
80
77
|
label: Typ
|
81
|
-
search_placeholder:
|
82
|
-
title_or_description_or_id_string_or_author_name_or_author_nickname_cont: Suche in %{collection} nach Titel, Beschreibung, ID oder Autoren.
|
83
78
|
menu:
|
84
79
|
attachments: Anhänge
|
85
80
|
committee_members: Ausschussmitglieder
|
@@ -207,7 +202,6 @@ lb:
|
|
207
202
|
update: "%{user_name} hat die Initiative %{resource_name} aktualisiert"
|
208
203
|
admin_states:
|
209
204
|
accepted: Ausreichend Unterschriften
|
210
|
-
created: Erstellt
|
211
205
|
discarded: Verworfen
|
212
206
|
rejected: Ungenügend Unterschriften
|
213
207
|
validating: Technische Validierung
|
@@ -235,35 +229,19 @@ lb:
|
|
235
229
|
name: Hervorgehobene Initiativen
|
236
230
|
create_initiative:
|
237
231
|
fill_data:
|
238
|
-
back: Zurück
|
239
232
|
continue: Fortsetzen
|
240
233
|
fill_data_help: "<ul> <li>Inhalt Ihrer Initiative überprüfen. Ist Ihr Titel leicht verständlich? Ist das Ziel Ihrer Initiative klar?</li> <li>Sie müssen die Art der Unterschrift wählen. Persönlich, online oder eine Kombination aus beidem</li> <li>Was ist die geografische Reichweite der Initiative? Stadt, Bezirk?</li> </ul>"
|
241
|
-
more_information: "(Weitere Informationen)"
|
242
234
|
select_area: Wählen Sie einen Bereich aus
|
243
235
|
select_scope: Wählen Sie einen Bereich aus
|
244
236
|
finish:
|
245
237
|
back: Zurück
|
246
|
-
back_to_initiatives: Zurück zu den Initiativen
|
247
|
-
edit_my_initiative: Meine Initiativen bearbeiten
|
248
|
-
go_to_my_initiatives: Geh zu meinen Initiativen
|
249
|
-
more_information: "(Weitere Informationen)"
|
250
|
-
send_my_initiative: Meine Initiative zur technischen Validierung senden
|
251
|
-
finish_help:
|
252
|
-
publish_helper_text: Denken Sie daran, dass Sie für die Veröffentlichung Ihrer Initiative die erforderlichen Informationen ausfüllen müssen und <strong>diese an die technische Validierung</strong> senden müssen, damit ein Administrator sie prüfen kann.
|
253
238
|
previous_form:
|
254
239
|
back: Zréck
|
255
|
-
continue: Fortsetzen
|
256
|
-
promotal_committee:
|
257
|
-
individual_help_text: Diese Art der Bürgerinitiative erfordert einen Ausschuss der Initiatoren, der aus mindestens %{committee_size} Personen (Zeugen) besteht. Sie müssen den folgenden Link mit den anderen Personen teilen, die an dieser Initiative beteiligt sind. Wenn Ihre Kontakte diesen Link erhalten, müssen sie die angegebenen Schritte befolgen.
|
258
|
-
more_information: "(Weitere Informationen)"
|
259
240
|
select_initiative_type:
|
260
241
|
back: Zréck
|
261
242
|
choose_html: Ich möchte eine <strong>%{title}</strong> erstellen
|
262
243
|
more_information: (Weitere Informationen)
|
263
244
|
select: Ich möchte diese Initiative fördern
|
264
|
-
select_initiative_type_help: Bürgerinitiativen sind ein Mittel, mit dem die Bürger eingreifen können, damit die Organisation Maßnahmen zur Verteidigung des Allgemeininteresses ergreifen kann, die in den Zuständigkeitsbereich der Stadtverwaltung fallen. Welche Initiative möchten Sie starten?
|
265
|
-
share_committee_link:
|
266
|
-
invite_to_committee_help: Link, um Leute einzuladen, die Teil des Promoter-Komitees sein werden
|
267
245
|
edit:
|
268
246
|
accept: Initiative akzeptieren
|
269
247
|
back: Zréck
|
@@ -285,11 +263,6 @@ lb:
|
|
285
263
|
email_outro: Du hues dës Noriicht kritt, well s'du dem %{author_nickname} nogees. Falls du esou Noriichten net méi wëlls kréien, géi op den Link uewen.
|
286
264
|
email_subject: Neue Initiative von %{author_nickname}
|
287
265
|
notification_title: Die Initiative <a href="%{resource_path}">%{resource_title}</a> wurde von <a href="%{author_path}">%{author_name} %{author_nickname}</a> erstellt.
|
288
|
-
endorse_initiative_event:
|
289
|
-
email_intro: "%{author_name} %{author_nickname}, dem Sie folgen, hat die folgende Initiative unterstützt, vielleicht möchten Sie mitreden:"
|
290
|
-
email_outro: Du hues dës Noriicht kritt, well s'du dem %{author_nickname} nogees. Falls du esou Noriichten net méi wëlls kréien, géi op den Link uewen.
|
291
|
-
email_subject: Initiative wurde von %{author_nickname} unterstützt
|
292
|
-
notification_title: Die Initiative <a href="%{resource_path}">%{resource_title}</a> wurde von <a href="%{author_path}">%{author_name} %{author_nickname}</a> unterstützt.
|
293
266
|
revoke_membership_request:
|
294
267
|
email_intro: "%{author_nickname} hat Ihre Anfrage fürs Promoter-Komittee der Initiative %{resource_title} abgelehnt."
|
295
268
|
email_outro: 'Sie haben diese Benachrichtigung erhalten, weil Sie sich bei dieser Initiative beworben haben: %{resource_title}.'
|
@@ -301,20 +274,11 @@ lb:
|
|
301
274
|
email_subject: "%{applicant_nickname} möchte Ihrer Initiative beitreten"
|
302
275
|
notification_title: <a href="%{applicant_profile_url}">%{applicant_nickname}</a> hat sich für das Promoter-Komittee Ihrer Initiative <a href="%{resource_url}">%{resource_title}</a> beworben. Um anzunehmen oder abzulehnen, klicken Sie <a href="%{resource_url}/edit">hier</a>.
|
303
276
|
initiative_signatures:
|
304
|
-
fill_personal_data:
|
305
|
-
continue: Fortsetzen
|
306
277
|
finish:
|
307
278
|
back_to_initiative: Zurück zur Initiative
|
308
|
-
sms_code:
|
309
|
-
continue: Code überprüfen und fortfahren
|
310
|
-
help: Überprüfen Sie die an Ihrem Telefon empfangene SMS
|
311
|
-
sms_phone_number:
|
312
|
-
continue: Senden Sie mir eine SMS
|
313
279
|
initiative_votes:
|
314
280
|
create:
|
315
281
|
error: Beim Signieren der Initiative sind Fehler aufgetreten.
|
316
|
-
personal_data:
|
317
|
-
invalid: Persönliche Daten stimmen nicht mit den zur Autorisierung angegebenen Daten überein.
|
318
282
|
sms_phone:
|
319
283
|
invalid: Die Telefonnummer ist ungültig oder muss noch autorisiert werden. Bitte überprüfen Sie Ihre Berechtigungen.
|
320
284
|
initiatives:
|
@@ -343,11 +307,6 @@ lb:
|
|
343
307
|
initiatives:
|
344
308
|
closed_initiatives_warning: Derzeit gibt es keine offenen Initiativen, aber hier finden Sie alle abgeschlossenen Initiativen aufgelistet.
|
345
309
|
no_initiatives_warning: Keine Initiativen entsprechen Ihren Suchkriterien.
|
346
|
-
interactions:
|
347
|
-
comments_count:
|
348
|
-
count:
|
349
|
-
one: Kommentar
|
350
|
-
other: Bemerkungen
|
351
310
|
orders:
|
352
311
|
label: 'Initiativen sortieren nach:'
|
353
312
|
print:
|
@@ -360,7 +319,6 @@ lb:
|
|
360
319
|
show:
|
361
320
|
badge_name:
|
362
321
|
accepted: Ausreichend Unterschriften
|
363
|
-
created: Erstellt
|
364
322
|
discarded: Verworfen
|
365
323
|
rejected: Ungenügend Unterschriften
|
366
324
|
validating: Technische Validierung
|
@@ -381,15 +339,7 @@ lb:
|
|
381
339
|
decidim:
|
382
340
|
initiative_creation_header:
|
383
341
|
fill_data: Erstellen
|
384
|
-
finish: Fertig
|
385
|
-
promotal_committee: Promoter-Komitee
|
386
342
|
select_initiative_type: Wählen
|
387
|
-
initiative_signature_creation_header:
|
388
|
-
fill_personal_data: Ergänzen Sie Ihre Daten
|
389
|
-
finish: Fertig
|
390
|
-
sms_code: SMS-Code-Bestätigung
|
391
|
-
sms_phone_number: Handynummer
|
392
|
-
title: Zeichen %{initiative_title}
|
393
343
|
initiatives:
|
394
344
|
no_initiatives_yet:
|
395
345
|
no_initiatives_yet: Keine Initiativen bisher!
|
data/config/locales/lt.yml
CHANGED
@@ -7,9 +7,7 @@ lt:
|
|
7
7
|
answer_url: Atsakymo nuoroda
|
8
8
|
area_id: Aplinka
|
9
9
|
decidim_scope_id: Sritis
|
10
|
-
decidim_user_group_id: Autorė(-ius)
|
11
10
|
description: Aprašymas
|
12
|
-
hashtag: Grotažymė
|
13
11
|
offline_votes: Fiziniai parašai
|
14
12
|
offline_votes_for_scope: Fiziniai parašai%{scope_name}
|
15
13
|
scope_id: Apimtis
|
@@ -36,7 +34,6 @@ lt:
|
|
36
34
|
comments_enabled: Įjungti komentarus
|
37
35
|
custom_signature_end_date_enabled: Suteikti autoriams galimybę pasirinkti parašų rinkimo periodo pabaigą
|
38
36
|
description: Aprašymas
|
39
|
-
document_number_authorization_handler: Leidimas tikrinti dokumento numerį gavus parašą
|
40
37
|
extra_fields_legal_information: Teisinė informacija apie asmens duomenų rinkimą
|
41
38
|
minimum_committee_members: Mažiausias komiteto narių skaičius
|
42
39
|
online_signature_enabled: Pasirašymas internetu įjungtas
|
@@ -95,14 +92,11 @@ lt:
|
|
95
92
|
label: Būsena
|
96
93
|
values:
|
97
94
|
accepted: Parašų užtenka
|
98
|
-
created: Sukurta
|
99
95
|
discarded: Atmesta
|
100
96
|
rejected: Parašų neužtenka
|
101
97
|
validating: Techninis patvirtinimas
|
102
98
|
type_id_eq:
|
103
99
|
label: Tipas
|
104
|
-
search_placeholder:
|
105
|
-
title_or_description_or_id_string_or_author_name_or_author_nickname_cont: Ieškoti %{collection} pagal pavadinimą, aprašymą, ID ar autoriaus vardą ir pavardę.
|
106
100
|
initiatives_settings:
|
107
101
|
update:
|
108
102
|
success: Iniciatyvų nustatymai atnaujinti.
|
@@ -288,7 +282,6 @@ lt:
|
|
288
282
|
edit:
|
289
283
|
update: Atnaujinti
|
290
284
|
form:
|
291
|
-
authorizations: Autorizacijos nustatymai
|
292
285
|
options: Variantai
|
293
286
|
initiative_type_scopes:
|
294
287
|
title: Iniciatyvos rūšies sritys
|
@@ -311,7 +304,6 @@ lt:
|
|
311
304
|
update: "%{user_name} atnaujino %{resource_name} iniciatyvos tipą"
|
312
305
|
admin_states:
|
313
306
|
accepted: Parašų užtenka
|
314
|
-
created: Sukurta
|
315
307
|
discarded: Atmesta
|
316
308
|
rejected: Parašų neužtenka
|
317
309
|
validating: Techninis patvirtinimas
|
@@ -340,38 +332,21 @@ lt:
|
|
340
332
|
name: Paryškintos iniciatyvos
|
341
333
|
create_initiative:
|
342
334
|
fill_data:
|
343
|
-
back: Atgal
|
344
335
|
continue: Tęsti
|
345
336
|
fill_data_help: "<ul> <li>Peržiūrėkite savo iniciatyvos turinį. Ar jūsų pavadinimas lengvai suprantamas? Ar jūsų iniciatyvos tikslas aiškus?</li> <li>Turite pasirinkti parašo rūšį. Asmeniškai, internetu, derinti abu būdus</li> <li>Kokia iniciatyvos geografinė taikymo sritis?</li> </ul>"
|
346
|
-
more_information: "(Daugiau informacijos)"
|
347
337
|
select_area: Pasirinkti erdvę
|
348
338
|
select_scope: Pasirinkti apimtį
|
349
339
|
finish:
|
350
340
|
back: Atgal
|
351
|
-
back_to_initiatives: Grįžti į iniciatyvas
|
352
|
-
confirm: Jūs siųsite šią iniciatyvą administratoriaus peržiūrai ir publikavimui. Paskelbus iniciatyvą jos koreguoti nebegalėsite. Ar tikrai norite ją siųsti?
|
353
|
-
edit_my_initiative: Redaguoti mano iniciatyvas
|
354
|
-
go_to_my_initiatives: Eiti į mano iniciatyvas
|
355
|
-
more_information: "(Daugiau informacijos)"
|
356
|
-
send_my_initiative: Siųsti mano iniciatyvą techniniam patvirtinimui
|
357
|
-
finish_help:
|
358
|
-
publish_helper_text: Prisiminkite, kad tam, kad iniciatyva būtų publikuota turite užpildyti būtiną informaciją ir <strong>išsiųsti ją techniniam patvirtinimui</strong> atliekamam administratorių.
|
359
341
|
previous_form:
|
360
342
|
back: Atgal
|
361
|
-
continue: Tęsti
|
362
|
-
promotal_committee:
|
363
|
-
individual_help_text: Kad būtų galima įgyvendinti tokią piliečių iniciatyvą, Rėmimo komisiją turi sudaryti ne mažiau kaip %{committee_size} nariai (vertintojai). Šią nuorodą bendrinkite su kitais šioje iniciatyvoje dalyvaujančiais asmenimis. Gavę šią nuorodą, jūsų kontaktiniai asmenys turės atlikti nurodytus veiksmus.
|
364
|
-
more_information: "(Daugiau informacijos)"
|
365
343
|
select_initiative_type:
|
366
344
|
back: Atgal
|
367
345
|
choose_html: Noriu sukurti <strong>%{title}</strong>
|
368
346
|
more_information: (Daugiau informacijos)
|
369
347
|
new: Sukurti naują iniciatyvą
|
370
348
|
select: Noriu paremti šią iniciatyvą
|
371
|
-
select_initiative_type_help: Iniciatyvos yra būdas dalyviams įsitraukti ir kartu su organizacija ginti bendrąjį interesą. Kurią iniciatyvą norite pradėti Jūs?
|
372
349
|
verification_required: Norėdami pasirašyti iniciatyvą, patvirtinkite savo paskyrą
|
373
|
-
share_committee_link:
|
374
|
-
invite_to_committee_help: Nuoroda, skirta dalyviams į rėmėjų komitetą pakviesti
|
375
350
|
edit:
|
376
351
|
accept: Priimti iniciatyvą
|
377
352
|
back: Atgal
|
@@ -393,11 +368,6 @@ lt:
|
|
393
368
|
email_outro: Šį pranešimą gavote dėl to, kad sekate %{author_nickname}. Jeigu nebenorite gauti pranešimų, spustelėkite aukščiau esančią nuorodą.
|
394
369
|
email_subject: Nauja %{author_nickname} iniciatyva
|
395
370
|
notification_title: Iniciatyvą <a href="%{resource_path}">%{resource_title}</a> sukūrė <a href="%{author_path}">%{author_name} %{author_nickname}</a>.
|
396
|
-
endorse_initiative_event:
|
397
|
-
email_intro: "%{author_name} %{author_nickname}, kurį sekate, pritarė šiai iniciatyvai. Jei norėtumėte įsitraukti į pokalbį:"
|
398
|
-
email_outro: Šį pranešimą gavote dėl to, kad sekate %{author_nickname}. Jeigu nebenorite gauti pranešimų, spustelėkite aukščiau esančią nuorodą.
|
399
|
-
email_subject: Iniciatyvai pritaria %{author_nickname}
|
400
|
-
notification_title: Iniciatyvai <a href="%{resource_path}">%{resource_title}</a> pritarė <a href="%{author_path}">%{author_name} %{author_nickname}</a>.
|
401
371
|
revoke_membership_request:
|
402
372
|
email_intro: "%{author_nickname} atmetė Jūsų aplikaciją tapti remėjų komiteto nariu %{resource_title} iniciatyvai."
|
403
373
|
email_outro: 'Ši pranešimą gavote nes aplikavote į iniciatyvą: %{resource_title}.'
|
@@ -416,23 +386,14 @@ lt:
|
|
416
386
|
uninitialized: Iniciatyvos dar nesukonfiguruotos.
|
417
387
|
initiative_signatures:
|
418
388
|
fill_personal_data:
|
419
|
-
continue: Tęsti
|
420
389
|
help: Kad pasirašytumėte iniciatyvą, įrašykite savo asmens duomenis toliau nurodomuose laukeliuose.
|
421
390
|
finish:
|
422
391
|
back_to_initiative: Grįžti į iniciatyvą
|
423
|
-
sms_code:
|
424
|
-
continue: Patikrinkite kodą ir tęskite
|
425
|
-
help: Pasitikrinkite telefone gautą SMS žinutę
|
426
|
-
sms_phone_number:
|
427
|
-
continue: Atsisiųsti SMS
|
428
|
-
help: Užpildykite formą su patikrintu telefono numeriu tam, kad gautumėte patvirtinimo kodą.
|
429
392
|
initiative_votes:
|
430
393
|
create:
|
431
394
|
error: Pasirašant iniciatyvą kilo problema.
|
432
395
|
invalid: Iniciatyvai pasirašyti pateikti duomenys - neteisingi.
|
433
396
|
success_html: Sveikiname! Iniciatyva <strong> %{title}</strong> pasirašyta.
|
434
|
-
personal_data:
|
435
|
-
invalid: Asmens duomenys neatitinka leidimui gauti pateiktų duomenų.
|
436
397
|
sms_code:
|
437
398
|
invalid: Jūsų tikrinimo kodas nesutampa su mūsų kodu. Dar kartą patikrinkite jums atsiųstą SMS žinutę.
|
438
399
|
sms_phone:
|
@@ -470,13 +431,6 @@ lt:
|
|
470
431
|
initiatives:
|
471
432
|
closed_initiatives_warning: Šiuo metu atvirų iniciatyvų nėra, tačiau čia galite rasti visų baigtų svarstyti iniciatyvų sąrašą.
|
472
433
|
no_initiatives_warning: Jūsų paieškos kriterijus atitinkančių iniciatyvų nerasta.
|
473
|
-
interactions:
|
474
|
-
comments_count:
|
475
|
-
count:
|
476
|
-
one: Komentaras
|
477
|
-
few: Komentarai
|
478
|
-
many: Komentarai
|
479
|
-
other: Komentarai
|
480
434
|
orders:
|
481
435
|
label: 'Rūšiuoti iniciatyvas pagal:'
|
482
436
|
most_commented: Labiausiai komentuota
|
@@ -558,7 +512,6 @@ lt:
|
|
558
512
|
show:
|
559
513
|
badge_name:
|
560
514
|
accepted: Parašų užtenka
|
561
|
-
created: Sukurta
|
562
515
|
discarded: Atmesta
|
563
516
|
rejected: Parašų neužtenka
|
564
517
|
validating: Techninis patvirtinimas
|
@@ -577,20 +530,11 @@ lt:
|
|
577
530
|
initiatives_type:
|
578
531
|
actions:
|
579
532
|
title: Veiksmai
|
580
|
-
vote: Pasirašyti
|
581
533
|
layouts:
|
582
534
|
decidim:
|
583
535
|
initiative_creation_header:
|
584
536
|
fill_data: Sukurti
|
585
|
-
finish: Baigti
|
586
|
-
promotal_committee: Rėmėjų komitetas
|
587
537
|
select_initiative_type: Pasirinkti
|
588
|
-
initiative_signature_creation_header:
|
589
|
-
fill_personal_data: Užpildyti savo duomenis
|
590
|
-
finish: Baigti
|
591
|
-
sms_code: SMS kodo tikrinimas
|
592
|
-
sms_phone_number: Mobilaus telefono numeris
|
593
|
-
title: Pasirašyti %{initiative_title}
|
594
538
|
initiatives:
|
595
539
|
no_initiatives_yet:
|
596
540
|
no_initiatives_yet: Dar nėra iniciatyvų!
|
data/config/locales/lv.yml
CHANGED
@@ -3,7 +3,6 @@ lv:
|
|
3
3
|
activemodel:
|
4
4
|
attributes:
|
5
5
|
initiative:
|
6
|
-
decidim_user_group_id: Autors
|
7
6
|
description: Apraksts
|
8
7
|
offline_votes: Klātienes paraksti
|
9
8
|
scope_id: Darbības tvērums
|
@@ -25,7 +24,6 @@ lv:
|
|
25
24
|
collect_user_extra_fields: Vākt dalībnieka personas datus ar parakstu
|
26
25
|
custom_signature_end_date_enabled: Ļaut autoriem izvēlēties parakstu vākšanas perioda beigas
|
27
26
|
description: Apraksts
|
28
|
-
document_number_authorization_handler: Autorizācija, lai verificētu dokumenta numuru parakstos
|
29
27
|
extra_fields_legal_information: Juridiska informācija par personas datu vākšanu
|
30
28
|
minimum_committee_members: Minimālais skaits komisijas locekļu
|
31
29
|
online_signature_enabled: Tiešsaistes paraksts ir iespējots
|
@@ -63,9 +61,6 @@ lv:
|
|
63
61
|
admin:
|
64
62
|
actions:
|
65
63
|
new_initiative_type: Jauns iniciatīvas veids
|
66
|
-
filters:
|
67
|
-
search_placeholder:
|
68
|
-
title_or_description_or_id_string_or_author_name_or_author_nickname_cont: Meklēt %{collection} pēc nosaukuma, apraksta, ID vai autora vārda.
|
69
64
|
menu:
|
70
65
|
information: Informācija
|
71
66
|
initiatives: Iniciatīvas
|
@@ -215,7 +210,6 @@ lv:
|
|
215
210
|
update: "%{user_name} atjaunināja %{resource_name} iniciatīvu"
|
216
211
|
admin_states:
|
217
212
|
accepted: Pietiekami daudz parakstu
|
218
|
-
created: Izveidots
|
219
213
|
discarded: Atmests
|
220
214
|
rejected: Nepietiek parakstu
|
221
215
|
validating: Tehniskā validācija
|
@@ -239,54 +233,30 @@ lv:
|
|
239
233
|
name: Izceltās iniciatīvas
|
240
234
|
create_initiative:
|
241
235
|
fill_data:
|
242
|
-
back: Atpakaļ
|
243
236
|
continue: Turpināt
|
244
|
-
more_information: "(Papildu informācija)"
|
245
237
|
select_area: Izvēlieties jomu
|
246
238
|
select_scope: Izvēlēties darbības tvērumu
|
247
239
|
finish:
|
248
240
|
back: Atpakaļ
|
249
|
-
back_to_initiatives: Atpakaļ pie iniciatīvām
|
250
|
-
go_to_my_initiatives: Doties pie manām iniciatīvām
|
251
|
-
more_information: "(Papildu informācija)"
|
252
241
|
previous_form:
|
253
242
|
back: Atpakaļ
|
254
|
-
continue: Turpināt
|
255
|
-
promotal_committee:
|
256
|
-
more_information: "(Papildu informācija)"
|
257
243
|
select_initiative_type:
|
258
244
|
back: Atpakaļ
|
259
245
|
choose_html: Es vēlos izveidot <strong>%{title}</strong>
|
260
246
|
more_information: (Papildu informācija)
|
261
247
|
select: Es vēlos veicināt šo iniciatīvu
|
262
|
-
share_committee_link:
|
263
|
-
invite_to_committee_help: Saite, lai uzaicinātu cilvēkus, kas piedalīsies veicinātāju komitejā
|
264
248
|
events:
|
265
249
|
create_initiative_event:
|
266
250
|
email_intro: "{author_name}%{author_nickname}, kam jūs sekojat, ir izveidojis jaunu iniciatīvu \"%{resource_title}\". Aplūkojiet to un piedalieties:"
|
267
251
|
email_outro: Jūs saņēmāt šo paziņojumu, jo sekojat %{author_nickname}. Jūs varat atteikties no paziņojumu saņemšanas, sekojot iepriekšējai saitei.
|
268
252
|
email_subject: '%{author_nickname} ir jauna iniciatīva'
|
269
253
|
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> izveidoja iniciatīvu <a href="%{resource_path}">%{resource_title}</a>.
|
270
|
-
endorse_initiative_event:
|
271
|
-
email_intro: "%{author_name} %{author_nickname}, kam jūs sekojat, ir atbalstījis šo iniciatīvu, iespējams, jūs vēlaties iesaistīties sarunā par to:"
|
272
|
-
email_outro: Jūs saņēmāt šo paziņojumu, jo sekojat %{author_nickname}. Jūs varat atteikties no paziņojumu saņemšanas, sekojot iepriekšējai saitei.
|
273
|
-
email_subject: Iniciatīvu atbalstīja %{author_nickname}
|
274
|
-
notification_title: <a href="%{resource_path}">%{resource_title}</a> iniciatīvu atbalstīja <a href="%{author_path}">%{author_name} %{author_nickname}</a>.
|
275
254
|
initiative_signatures:
|
276
|
-
fill_personal_data:
|
277
|
-
continue: Turpināt
|
278
255
|
finish:
|
279
256
|
back_to_initiative: Atpakaļ pie iniciatīvas
|
280
|
-
sms_code:
|
281
|
-
continue: Pārbaudīt kodu un turpināt
|
282
|
-
help: Pārbaudiet tālrunī saņemto SMS
|
283
|
-
sms_phone_number:
|
284
|
-
continue: Sūtīt man SMS
|
285
257
|
initiative_votes:
|
286
258
|
create:
|
287
259
|
error: Iniciatīvas parakstīšanas laikā radās problēma
|
288
|
-
personal_data:
|
289
|
-
invalid: Personas dati neatbilst autorizējoties sniegtajiem datiem.
|
290
260
|
sms_phone:
|
291
261
|
invalid: Tālruņa numurs nav derīgs vai gaida autorizāciju. Lūdzu, pārbaudiet savas autorizācijas.
|
292
262
|
initiatives:
|
@@ -310,12 +280,6 @@ lv:
|
|
310
280
|
type: Veids
|
311
281
|
index_header:
|
312
282
|
new_initiative: Jauna iniciatīva
|
313
|
-
interactions:
|
314
|
-
comments_count:
|
315
|
-
count:
|
316
|
-
zero: Komentēt
|
317
|
-
one: Komentēt
|
318
|
-
other: Komentēt
|
319
283
|
orders:
|
320
284
|
label: 'Kārtot iniciatīvas pēc:'
|
321
285
|
most_commented: Visvairāk komentētie
|
@@ -349,7 +313,6 @@ lv:
|
|
349
313
|
show:
|
350
314
|
badge_name:
|
351
315
|
accepted: Pietiekami daudz parakstu
|
352
|
-
created: Izveidots
|
353
316
|
discarded: Atmests
|
354
317
|
rejected: Nepietiek parakstu
|
355
318
|
validating: Tehniskā validācija
|
@@ -363,20 +326,11 @@ lv:
|
|
363
326
|
initiatives_type:
|
364
327
|
actions:
|
365
328
|
title: Darbības
|
366
|
-
vote: Parakstīt
|
367
329
|
layouts:
|
368
330
|
decidim:
|
369
331
|
initiative_creation_header:
|
370
332
|
fill_data: Izveidot
|
371
|
-
finish: Pabeigt
|
372
|
-
promotal_committee: Veicināšanas komiteja
|
373
333
|
select_initiative_type: Izvēlēties
|
374
|
-
initiative_signature_creation_header:
|
375
|
-
fill_personal_data: Pabeidziet ierakstīt savus datus
|
376
|
-
finish: Pabeigt
|
377
|
-
sms_code: SMS koda verifikācija
|
378
|
-
sms_phone_number: Mobilā tālruņa numurs
|
379
|
-
title: Parakstīt %{initiative_title}
|
380
334
|
initiatives:
|
381
335
|
no_initiatives_yet:
|
382
336
|
no_initiatives_yet: Pagaidām nav iniciatīvu!
|
data/config/locales/nl.yml
CHANGED
@@ -3,7 +3,6 @@ nl:
|
|
3
3
|
activemodel:
|
4
4
|
attributes:
|
5
5
|
initiative:
|
6
|
-
decidim_user_group_id: Auteur
|
7
6
|
description: Beschrijving
|
8
7
|
offline_votes: Face-to-face handtekeningen
|
9
8
|
scope_id: Bereik
|
@@ -25,7 +24,6 @@ nl:
|
|
25
24
|
collect_user_extra_fields: Persoonlijke gebruikersgegevens verzamelen bij ondertekening
|
26
25
|
custom_signature_end_date_enabled: Sta auteurs toe het einde van de handtekeningperiode te kiezen
|
27
26
|
description: Beschrijving
|
28
|
-
document_number_authorization_handler: Autorisatie om documentnummer op handtekeningen te verifiëren
|
29
27
|
extra_fields_legal_information: Juridische informatie over het verzamelen van persoonlijke gegevens
|
30
28
|
minimum_committee_members: Minimaal aantal commissieleden
|
31
29
|
online_signature_enabled: Online handtekening ingeschakeld
|
@@ -61,9 +59,6 @@ nl:
|
|
61
59
|
admin:
|
62
60
|
actions:
|
63
61
|
new_initiative_type: Nieuw initiatiefstype
|
64
|
-
filters:
|
65
|
-
search_placeholder:
|
66
|
-
title_or_description_or_id_string_or_author_name_or_author_nickname_cont: Zoek %{collection} op titel, beschrijving, ID of auteur naam.
|
67
62
|
menu:
|
68
63
|
attachments: Bijlagen
|
69
64
|
committee_members: Commissieleden
|
@@ -226,7 +221,6 @@ nl:
|
|
226
221
|
update: "%{user_name} heeft het initiatief %{resource_name} bijgewerkt"
|
227
222
|
admin_states:
|
228
223
|
accepted: Genoeg handtekeningen
|
229
|
-
created: gemaakt
|
230
224
|
discarded: Afgedankte
|
231
225
|
rejected: Niet genoeg handtekeningen
|
232
226
|
validating: Technische validatie
|
@@ -254,31 +248,19 @@ nl:
|
|
254
248
|
name: Gemarkeerde initiatieven
|
255
249
|
create_initiative:
|
256
250
|
fill_data:
|
257
|
-
back: Terug
|
258
251
|
continue: Doorgaan met
|
259
252
|
fill_data_help: "<ul> <li>Herbekijk de inhoud van je initiatief. Is de titel begrijpelijk? 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?</li> </ul>"
|
260
|
-
more_information: "(Meer informatie)"
|
261
253
|
select_area: Selecteer een gebied
|
262
254
|
select_scope: Selecteer een scope
|
263
255
|
finish:
|
264
256
|
back: Terug
|
265
|
-
back_to_initiatives: Terug naar initiatieven
|
266
|
-
edit_my_initiative: Mijn initiatieven bewerken
|
267
|
-
go_to_my_initiatives: Ga naar mijn initiatieven
|
268
|
-
more_information: "(Meer informatie)"
|
269
|
-
send_my_initiative: Stuur mijn initiatief naar technische validatie
|
270
257
|
previous_form:
|
271
258
|
back: Terug
|
272
|
-
continue: Doorgaan met
|
273
|
-
promotal_committee:
|
274
|
-
more_information: "(Meer informatie)"
|
275
259
|
select_initiative_type:
|
276
260
|
back: Terug
|
277
261
|
choose_html: Ik wil een <strong>%{title}</strong> aanmaken
|
278
262
|
more_information: (Meer informatie)
|
279
263
|
select: Ik wil dit initiatief promoten
|
280
|
-
share_committee_link:
|
281
|
-
invite_to_committee_help: Link om mensen uit te nodigen die deel zullen uitmaken van de promotieraad
|
282
264
|
events:
|
283
265
|
approve_membership_request:
|
284
266
|
email_intro: "%{author_nickname} heeft je aanvraag om deel uit te maken van het promotiecomité %{resource_title} aanvaard."
|
@@ -289,11 +271,6 @@ nl:
|
|
289
271
|
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.
|
290
272
|
email_subject: Nieuw initiatief van %{author_nickname}
|
291
273
|
notification_title: Het <a href="%{resource_path}">%{resource_title}</a> initiatief is gemaakt door <a href="%{author_path}">%{author_name} %{author_nickname}</a>.
|
292
|
-
endorse_initiative_event:
|
293
|
-
email_intro: "%{author_name} %{author_nickname}, die je volgt, heeft het volgende initiatief onderschreven, misschien wil je een bijdrage leveren aan het gesprek:"
|
294
|
-
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.
|
295
|
-
email_subject: Initiatief goedgekeurd door %{author_nickname}
|
296
|
-
notification_title: Het <a href="%{resource_path}">%{resource_title}</a> initiatief werd goedgekeurd door <a href="%{author_path}">%{author_name} %{author_nickname}</a>.
|
297
274
|
revoke_membership_request:
|
298
275
|
email_intro: "%{author_nickname} heeft je aanvraag om deel uit te maken van de promotiecommissie voor het volgende initiatief %{resource_title} aanvaard."
|
299
276
|
email_subject: "%{author_nickname} heeft je aanvraag voor de promotiecommissie afgewezen"
|
@@ -304,20 +281,11 @@ nl:
|
|
304
281
|
email_subject: "%{applicant_nickname} wil deelnemen aan je initiatief"
|
305
282
|
notification_title: <a href="%{applicant_profile_url}">%{applicant_nickname}</a> wil graag deel uitmaken van de promotiecommissie voor jouw initiatief <a href="%{resource_url}">%{resource_title}</a>. Om te accepteren of te weigeren, klik <a href="%{resource_url}/edit">hier</a>.
|
306
283
|
initiative_signatures:
|
307
|
-
fill_personal_data:
|
308
|
-
continue: Doorgaan met
|
309
284
|
finish:
|
310
285
|
back_to_initiative: Terug naar initiatief
|
311
|
-
sms_code:
|
312
|
-
continue: Controleer de code en ga verder
|
313
|
-
help: Controleer de sms die je op je telefoon hebt ontvangen
|
314
|
-
sms_phone_number:
|
315
|
-
continue: Stuur me een sms
|
316
286
|
initiative_votes:
|
317
287
|
create:
|
318
288
|
error: Er zijn fouten opgetreden bij het ondertekenen van het initiatief.
|
319
|
-
personal_data:
|
320
|
-
invalid: Persoonlijke gegevens komen niet overeen met gegevens die zijn verstrekt voor autorisatie.
|
321
289
|
sms_phone:
|
322
290
|
invalid: Het telefoonnummer is ongeldig of in afwachting van autorisatie. Controleer alstublieft uw autorisaties.
|
323
291
|
initiatives:
|
@@ -341,11 +309,6 @@ nl:
|
|
341
309
|
new_initiative: Nieuw initiatief
|
342
310
|
initiatives:
|
343
311
|
no_initiatives_warning: De zoekopdracht heeft geen resultaten opgeleverd.
|
344
|
-
interactions:
|
345
|
-
comments_count:
|
346
|
-
count:
|
347
|
-
one: Commentaar
|
348
|
-
other: Commentaar
|
349
312
|
orders:
|
350
313
|
label: 'Sorteer initiatieven op:'
|
351
314
|
most_commented: Meeste reacties
|
@@ -387,7 +350,6 @@ nl:
|
|
387
350
|
show:
|
388
351
|
badge_name:
|
389
352
|
accepted: Genoeg handtekeningen
|
390
|
-
created: Aangemaakt
|
391
353
|
discarded: Verwijderd
|
392
354
|
rejected: Niet genoeg handtekeningen
|
393
355
|
validating: Technische validatie
|
@@ -404,20 +366,11 @@ nl:
|
|
404
366
|
initiatives_type:
|
405
367
|
actions:
|
406
368
|
title: acties
|
407
|
-
vote: Teken
|
408
369
|
layouts:
|
409
370
|
decidim:
|
410
371
|
initiative_creation_header:
|
411
372
|
fill_data: creëren
|
412
|
-
finish: Voltooien
|
413
|
-
promotal_committee: Promotieraad
|
414
373
|
select_initiative_type: Kiezen
|
415
|
-
initiative_signature_creation_header:
|
416
|
-
fill_personal_data: Vul uw gegevens in
|
417
|
-
finish: Voltooien
|
418
|
-
sms_code: Verificatie van sms-codes
|
419
|
-
sms_phone_number: Mobiele telefoonnummer
|
420
|
-
title: Teken %{initiative_title}
|
421
374
|
initiatives:
|
422
375
|
no_initiatives_yet:
|
423
376
|
no_initiatives_yet: Nog geen initiatieven!
|