decidim-initiatives 0.30.1 → 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 +4 -7
- 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 +100 -52
- 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 +120 -72
- 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/menu.rb +1 -1
- 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/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!
|
data/config/locales/no.yml
CHANGED
@@ -3,7 +3,6 @@
|
|
3
3
|
activemodel:
|
4
4
|
attributes:
|
5
5
|
initiative:
|
6
|
-
decidim_user_group_id: Forfatter
|
7
6
|
description: Beskrivelse
|
8
7
|
offline_votes: Personlige underskrifter
|
9
8
|
offline_votes_for_scope: Signatur ved fysisk oppmøte for %{scope_name}
|
@@ -27,7 +26,6 @@
|
|
27
26
|
collect_user_extra_fields: Samle deltakerens personlige data ved signatur
|
28
27
|
custom_signature_end_date_enabled: Muliggjør at forfattere kan velge slutten av signaturinnsamlingsperioden
|
29
28
|
description: Beskrivelse
|
30
|
-
document_number_authorization_handler: Fullmakt til å verifisere dokumentnummer på underskrifter
|
31
29
|
extra_fields_legal_information: Juridisk informasjon om innsamling av personopplysninger
|
32
30
|
minimum_committee_members: Minimum av komitémedlemmer
|
33
31
|
online_signature_enabled: Online signatur aktivert
|
@@ -72,14 +70,11 @@
|
|
72
70
|
label: Tilstand
|
73
71
|
values:
|
74
72
|
accepted: Nok signaturer
|
75
|
-
created: Opprettet
|
76
73
|
discarded: Forkastet
|
77
74
|
rejected: Ikke nok signaturer
|
78
75
|
validating: Teknisk validering
|
79
76
|
type_id_eq:
|
80
77
|
label: Type
|
81
|
-
search_placeholder:
|
82
|
-
title_or_description_or_id_string_or_author_name_or_author_nickname_cont: Søk i %{collection} etter tittel, beskrivelse, ID eller forfatternavn.
|
83
78
|
menu:
|
84
79
|
attachments: Vedlegg
|
85
80
|
committee_members: Utvalgets medlemmer
|
@@ -247,7 +242,6 @@
|
|
247
242
|
edit:
|
248
243
|
update: Oppdater
|
249
244
|
form:
|
250
|
-
authorizations: Innstillinger for autorisasjon
|
251
245
|
options: Valg
|
252
246
|
initiative_type_scopes:
|
253
247
|
title: Tema for initiativtypen
|
@@ -264,7 +258,6 @@
|
|
264
258
|
update: "%{user_name} oppdaterte innstillingene for initiativer"
|
265
259
|
admin_states:
|
266
260
|
accepted: Nok signaturer
|
267
|
-
created: Opprettet
|
268
261
|
discarded: Forkastet
|
269
262
|
rejected: Ikke nok signaturer
|
270
263
|
validating: Teknisk validering
|
@@ -292,36 +285,19 @@
|
|
292
285
|
name: Fremhevede initiativer
|
293
286
|
create_initiative:
|
294
287
|
fill_data:
|
295
|
-
back: Tilbake
|
296
288
|
continue: Fortsett
|
297
289
|
fill_data_help: "<ul> <li>Gjennomgå innholdet i ditt initiativ. Er tittelen din lett å forstå? Er målet med initiativet ditt tydelig?</li> <li>Du må velge type signatur. Pålogget, fysisk tilstede eller en kombinasjon av begge</li> <li>Hvilket geografisk tema av satsingen?</li> </ul>"
|
298
|
-
more_information: "(Mer informasjon)"
|
299
290
|
select_area: Velg et område
|
300
291
|
select_scope: Velg et temaet
|
301
292
|
finish:
|
302
293
|
back: Tilbake
|
303
|
-
back_to_initiatives: Tilbake til initiativer
|
304
|
-
confirm: Du sender nå initiativet til en administrator for å gjennomgå og publisere det. Når det er publisert vil du ikke kunne redigere den. Er du sikker?
|
305
|
-
edit_my_initiative: Rediger mitt initiativ
|
306
|
-
go_to_my_initiatives: Gå til mine initiativer
|
307
|
-
more_information: "(Mer informasjon)"
|
308
|
-
send_my_initiative: Send mitt initiativ til teknisk validering
|
309
|
-
finish_help:
|
310
|
-
publish_helper_text: Husk at for å publisere ditt initiativ må du fylle ut påkrevd informasjon og <strong>sende den til teknisk validering</strong> slik at en administrator kan gjennomgå det.
|
311
294
|
previous_form:
|
312
295
|
back: Tilbake
|
313
|
-
continue: Fortsett
|
314
|
-
promotal_committee:
|
315
|
-
individual_help_text: Denne typen initiativ krever en promoteringskommisjon som består av minst %{committee_size} personer (vitner). Du må dele følgende kobling til de andre som inngår i dette initiativet. Når kontaktene dine mottar denne lenken må de følge de angitte trinnene.
|
316
|
-
more_information: "(Mer informasjon)"
|
317
296
|
select_initiative_type:
|
318
297
|
back: Tilbake
|
319
298
|
choose_html: Jeg vil opprette en <strong>%{title}</strong>
|
320
299
|
more_information: (Mer informasjon)
|
321
300
|
select: Jeg ønsker å promotere dette initiativet
|
322
|
-
select_initiative_type_help: Initiativer er en måte deltakerne kan gripe inn på, slik at organisasjonen kan iverksette tiltak i forsvar for den generelle interessen. Hvilket initiativ vil du lansere?
|
323
|
-
share_committee_link:
|
324
|
-
invite_to_committee_help: Lenke for å invitere folk som vil være en del av promotør komiteen
|
325
301
|
edit:
|
326
302
|
accept: Godta initiativ
|
327
303
|
back: Tilbake
|
@@ -342,30 +318,16 @@
|
|
342
318
|
email_outro: Du har mottatt denne varslingen fordi du følger %{author_nickname}. Du kan slutte å motta varsler hvis du følger den forrige lenken.
|
343
319
|
email_subject: Nytt initiativ av %{author_nickname}
|
344
320
|
notification_title: <a href="%{resource_path}">%{resource_title}</a> initiativet ble opprettet av <a href="%{author_path}">%{author_name} %{author_nickname}</a>.
|
345
|
-
endorse_initiative_event:
|
346
|
-
email_intro: "%{author_name}%{author_nickname}, som du følger, har sluttet seg til følgende initiativ: kanskje du vil bidra til samtalen:"
|
347
|
-
email_outro: Du har mottatt denne varslingen fordi du følger %{author_nickname}. Du kan slutte å motta varsler hvis du følger den forrige lenken.
|
348
|
-
email_subject: Initiativ påtegne av %{author_nickname}
|
349
|
-
notification_title: <a href="%{resource_path}">%{resource_title}</a> initiativet ble påtegnet av <a href="%{author_path}">%{author_name} %{author_nickname}</a>.
|
350
321
|
revoke_membership_request:
|
351
322
|
email_outro: 'Du mottok dette varselet fordi du søkte på dette initiativet: %{resource_title}.'
|
352
323
|
email_subject: "%{author_nickname} avviste din søknad til promotørkomiteen"
|
353
324
|
notification_title: <a href="%{author_profile_url}">%{author_nickname}</a> avviste søknaden din om å være en del av promotørutvalget i følgende initiativ <a href="%{resource_url}">%{resource_title}</a>.
|
354
325
|
initiative_signatures:
|
355
|
-
fill_personal_data:
|
356
|
-
continue: Fortsett
|
357
326
|
finish:
|
358
327
|
back_to_initiative: Tilbake til initiativ
|
359
|
-
sms_code:
|
360
|
-
continue: Sjekk kode og fortsett
|
361
|
-
help: Sjekk SMS mottatt på telefonen
|
362
|
-
sms_phone_number:
|
363
|
-
continue: Send meg en meldig
|
364
328
|
initiative_votes:
|
365
329
|
create:
|
366
330
|
error: Det oppstod et problem med å signere initiativet.
|
367
|
-
personal_data:
|
368
|
-
invalid: Personopplysninger samsvar ikke med informasjonen som er gitt for autorisering.
|
369
331
|
sms_phone:
|
370
332
|
invalid: Telefonnummeret er ugyldig eller venter på godkjenning. Vennligst sjekk autorisasjonene dine.
|
371
333
|
initiatives:
|
@@ -394,11 +356,6 @@
|
|
394
356
|
initiatives:
|
395
357
|
closed_initiatives_warning: Det er foreløpig ingen åpne initiativer, men her kan du finne alle tidligere initiativer.
|
396
358
|
no_initiatives_warning: Ingen initiativer samsvarer med dine søkekriterier.
|
397
|
-
interactions:
|
398
|
-
comments_count:
|
399
|
-
count:
|
400
|
-
one: Kommentar
|
401
|
-
other: Kommentar
|
402
359
|
orders:
|
403
360
|
label: 'Sorter initiativer etter:'
|
404
361
|
most_commented: Mest kommentert
|
@@ -461,7 +418,6 @@
|
|
461
418
|
show:
|
462
419
|
badge_name:
|
463
420
|
accepted: Nok signaturer
|
464
|
-
created: Opprettet
|
465
421
|
discarded: Forkastet
|
466
422
|
rejected: Ikke nok signaturer
|
467
423
|
validating: Teknisk validering
|
@@ -478,20 +434,11 @@
|
|
478
434
|
initiatives_type:
|
479
435
|
actions:
|
480
436
|
title: Handlinger
|
481
|
-
vote: Signer
|
482
437
|
layouts:
|
483
438
|
decidim:
|
484
439
|
initiative_creation_header:
|
485
440
|
fill_data: Opprett
|
486
|
-
finish: Fullfør
|
487
|
-
promotal_committee: Promotør komitè
|
488
441
|
select_initiative_type: Velg
|
489
|
-
initiative_signature_creation_header:
|
490
|
-
fill_personal_data: Fullfør dataene dine
|
491
|
-
finish: Fullfør
|
492
|
-
sms_code: SMS-kode verifisering
|
493
|
-
sms_phone_number: Mobiltelefon number
|
494
|
-
title: Signer %{initiative_title}
|
495
442
|
initiatives:
|
496
443
|
no_initiatives_yet:
|
497
444
|
no_initiatives_yet: Ingen intiativer ennå!
|
data/config/locales/pl.yml
CHANGED
@@ -7,9 +7,7 @@ pl:
|
|
7
7
|
answer_url: Adres URL odpowiedzi
|
8
8
|
area_id: Obszar
|
9
9
|
decidim_scope_id: Zakres
|
10
|
-
decidim_user_group_id: Autor
|
11
10
|
description: Opis
|
12
|
-
hashtag: Hashtag
|
13
11
|
offline_votes: Podpisy na piśmie
|
14
12
|
offline_votes_for_scope: Podpisy dla %{scope_name}
|
15
13
|
scope_id: Zakres
|
@@ -36,7 +34,6 @@ pl:
|
|
36
34
|
comments_enabled: Włącz komentarze
|
37
35
|
custom_signature_end_date_enabled: Pozwól autorom na wybór końca okresu zbierania podpisów
|
38
36
|
description: Opis
|
39
|
-
document_number_authorization_handler: Zezwolenie na weryfikację numeru dokumentu przy zbiórce podpisów
|
40
37
|
extra_fields_legal_information: Informacje prawne dotyczące gromadzenia danych osobowych
|
41
38
|
minimum_committee_members: Minimum członków komitetu
|
42
39
|
online_signature_enabled: Pozwól na podpisy online
|
@@ -96,14 +93,11 @@ pl:
|
|
96
93
|
label: Stan
|
97
94
|
values:
|
98
95
|
accepted: Wystarczająca liczba podpisów
|
99
|
-
created: Utworzono
|
100
96
|
discarded: Odrzucono
|
101
97
|
rejected: Niewystarczająca liczba podpisów
|
102
98
|
validating: Walidacja techniczna
|
103
99
|
type_id_eq:
|
104
100
|
label: Typ
|
105
|
-
search_placeholder:
|
106
|
-
title_or_description_or_id_string_or_author_name_or_author_nickname_cont: Wyszukaj %{collection} według tytułu, opisu, ID lub nazwy autora.
|
107
101
|
initiatives_settings:
|
108
102
|
update:
|
109
103
|
success: Ustawienia inicjatyw zostały pomyślnie zaktualizowane.
|
@@ -300,7 +294,6 @@ pl:
|
|
300
294
|
edit:
|
301
295
|
update: Aktualizuj
|
302
296
|
form:
|
303
|
-
authorizations: Ustawienia autoryzacji
|
304
297
|
child_scope_threshold_enabled_help_html: 'Ta flaga konfiguracja nie wspiera głosowania offline. Zezwala ona na pod-zakresy i działa z uchwytem autoryzacji, który łączy zakres z użytkownikiem. Upewnij się, że wybrałeś(aś) taką autoryzację w sekcji autoryzacji poniżej. Zakresy muszą być konfigurowane w hierarchii: 1 Rodzic - N element podrzędny. Więcej informacji o działaniu tej konfiguracji znajdziesz pod tą <a href="https://docs.decidim.org/en/admin/spaces/initiatives/" target="_blank">stroną dokumentacji administracji inicjatywami</a>.'
|
305
298
|
only_global_scope_enabled_help_html: Zaznacz tę flagę, jeśli włączyłeś(aś) opcję "Podpisy zakresu podrzędnego" i skonfigurowałeś(aś) globalny zakres jako zakres nadrzędny. Umożliwiając to działanie, wybór typu inicjatywy zostanie pominięty w kreatorze tworzenia inicjatyw. Aby uzyskać więcej informacji na temat funkcjonowania tej konfiguracji, zobacz ten <a href="https://docs.decidim.org/en/admin/spaces/initiatives/" target="_blank">link</a>.
|
306
299
|
options: Ustawienia
|
@@ -325,7 +318,6 @@ pl:
|
|
325
318
|
update: "%{user_name} zaktualizował(a) typ inicjatyw %{resource_name}"
|
326
319
|
admin_states:
|
327
320
|
accepted: Wystarczająca liczba podpisów
|
328
|
-
created: Utworzono
|
329
321
|
discarded: Odrzucono
|
330
322
|
rejected: Niewystarczająca liczba podpisów
|
331
323
|
validating: Weryfikacja techniczna
|
@@ -354,38 +346,21 @@ pl:
|
|
354
346
|
name: Wyróżnione inicjatywy
|
355
347
|
create_initiative:
|
356
348
|
fill_data:
|
357
|
-
back: Wróć
|
358
349
|
continue: Dalej
|
359
350
|
fill_data_help: "<ul> <li>Sprawdź treść swojej inicjatywy. Czy tytuł jest łatwy do zrozumienia? Czy cel inicjatywy jest jasny?</li> <li>Musisz wybrać rodzaj podpisu. Na piśmie, online lub połączenie obu</li> <li>Jaki jest zasięg geograficzny inicjatywy?</li> </ul>"
|
360
|
-
more_information: "(Więcej informacji)"
|
361
351
|
select_area: Wybierz kategorię
|
362
352
|
select_scope: Wybierz zakres
|
363
353
|
finish:
|
364
354
|
back: Wróć
|
365
|
-
back_to_initiatives: Wróć do inicjatyw
|
366
|
-
confirm: Zamierzasz wysłać inicjatywę administratorowi, aby ją przejrzał i opublikował. Po opublikowaniu nie będziesz mógł jej edytować. Czy jesteś pewien?
|
367
|
-
edit_my_initiative: Edytuj moją inicjatywę
|
368
|
-
go_to_my_initiatives: Przejdź do moich inicjatyw
|
369
|
-
more_information: "(Więcej informacji)"
|
370
|
-
send_my_initiative: Wyślij moją inicjatywę do weryfikacji technicznej
|
371
|
-
finish_help:
|
372
|
-
publish_helper_text: Pamiętaj, że aby Twoja inicjatywa została opublikowana, musisz uzupełnić wymagane informacje i <strong>przesłać ją do weryfikacji technicznej</strong>, aby administrator mógł ją przejrzeć.
|
373
355
|
previous_form:
|
374
356
|
back: Wróć
|
375
|
-
continue: Dalej
|
376
|
-
promotal_committee:
|
377
|
-
individual_help_text: Tego rodzaju inicjatywa obywatelska wymaga Komisji Organizacyjnej, która składa się z co najmniej %{committee_size} osób. Udostępnij poniższy link innym osobom, które są częścią tej inicjatywy. Gdy Twoi znajomi otrzymają ten link, będą musieli wykonać wskazane kroki.
|
378
|
-
more_information: "(Więcej informacji)"
|
379
357
|
select_initiative_type:
|
380
358
|
back: Wróć
|
381
359
|
choose_html: Chcę utworzyć <strong>%{title}</strong>
|
382
360
|
more_information: (Więcej informacji)
|
383
361
|
new: Utwórz nową inicjatywę
|
384
362
|
select: Chcę utworzyć inicjatywę tego typu
|
385
|
-
select_initiative_type_help: Inicjatywy są środkiem, za pomocą którego uczestnicy mogą interweniować tak, aby organizacja mogła podejmować działania w obronie interesu ogólnego. Którą inicjatywę chcesz uruchomić?
|
386
363
|
verification_required: Zweryfikuj swoje konto, aby promować tę inicjatywę
|
387
|
-
share_committee_link:
|
388
|
-
invite_to_committee_help: Link do zaproszenia osób, które będą częścią komitetu organizacyjnego
|
389
364
|
edit:
|
390
365
|
accept: Akceptuj inicjatywę
|
391
366
|
back: Wróć
|
@@ -407,11 +382,6 @@ pl:
|
|
407
382
|
email_outro: Otrzymałeś to powiadomienie, ponieważ obserwujesz %{author_nickname}. Możesz przestać otrzymywać powiadomienia po kliknięciu w poprzedni link.
|
408
383
|
email_subject: Nowa inicjatywa autorstwa %{author_nickname}
|
409
384
|
notification_title: Inicjatywa <a href="%{resource_path}">%{resource_title}</a> została utworzona przez <a href="%{author_path}">%{author_name} %{author_nickname}</a>.
|
410
|
-
endorse_initiative_event:
|
411
|
-
email_intro: "Użytkownika %{author_name} %{author_nickname}, którego obserwujesz, zarekomendował następującą inicjatywę, być może chcesz dołączyć i wziąć udział w rozmowie:"
|
412
|
-
email_outro: Otrzymałeś to powiadomienie, ponieważ obserwujesz %{author_nickname}. Możesz przestać otrzymywać powiadomienia po kliknięciu w poprzedni link.
|
413
|
-
email_subject: Inicjatywa rekomendowana przez %{author_nickname}
|
414
|
-
notification_title: Inicjatywa <a href="%{resource_path}">%{resource_title}</a> została zarekomendowana przez <a href="%{author_path}">%{author_name} %{author_nickname}</a>.
|
415
385
|
revoke_membership_request:
|
416
386
|
email_intro: "%{author_nickname} odrzucił Twoje zgłoszenie na członka komitetu organizacyjnego inicjatywy %{resource_title}."
|
417
387
|
email_outro: 'Otrzymałeś to powiadomienie, ponieważ zgłosiłeś się do inicjatywy %{resource_title}.'
|
@@ -430,23 +400,14 @@ pl:
|
|
430
400
|
uninitialized: Inicjatywy nie są jeszcze skonfigurowane przez administratora.
|
431
401
|
initiative_signatures:
|
432
402
|
fill_personal_data:
|
433
|
-
continue: Dalej
|
434
403
|
help: Wypełnij następujące pola swoimi danymi osobowymi, aby podpisać inicjatywę.
|
435
404
|
finish:
|
436
405
|
back_to_initiative: Wróć do inicjatywy
|
437
|
-
sms_code:
|
438
|
-
continue: Sprawdź kod i kontynuuj
|
439
|
-
help: Sprawdź SMS, który wysłaliśmy na Twój numer telefonu
|
440
|
-
sms_phone_number:
|
441
|
-
continue: Wyślij mi SMS-a
|
442
|
-
help: Wpisz w formularzu swój zweryfikowany numer telefonu, aby otrzymać kod weryfikacyjny.
|
443
406
|
initiative_votes:
|
444
407
|
create:
|
445
408
|
error: Podczas podpisywania inicjatywy wystąpiły błędy.
|
446
409
|
invalid: Dane dostarczone do poparcia inicjatywy nie są ważne.
|
447
410
|
success_html: Gratulacje! Inicjatywa <strong> %{title}</strong> została poparta.
|
448
|
-
personal_data:
|
449
|
-
invalid: Dane osobowe nie są zgodne z danymi przekazanymi do autoryzacji.
|
450
411
|
sms_code:
|
451
412
|
invalid: Kod weryfikacyjny nie odpowiada naszemu kodowi. Prosimy o ponowne sprawdzenie wiadomości SMS.
|
452
413
|
sms_phone:
|
@@ -486,13 +447,6 @@ pl:
|
|
486
447
|
initiatives:
|
487
448
|
closed_initiatives_warning: Obecnie nie ma aktualnych inicjatyw, ale tutaj możesz zobaczyć wszystkie poprzednie inicjatywy.
|
488
449
|
no_initiatives_warning: Brak inicjatyw spełniających kryteria wyszukiwania.
|
489
|
-
interactions:
|
490
|
-
comments_count:
|
491
|
-
count:
|
492
|
-
one: Komentarz
|
493
|
-
few: Komentarze
|
494
|
-
many: Komentarze
|
495
|
-
other: Komentarze
|
496
450
|
orders:
|
497
451
|
label: 'Sortuj inicjatywy według:'
|
498
452
|
most_commented: Najczęściej komentowane
|
@@ -576,7 +530,6 @@ pl:
|
|
576
530
|
show:
|
577
531
|
badge_name:
|
578
532
|
accepted: Wystarczająca liczba podpisów
|
579
|
-
created: Utworzone
|
580
533
|
discarded: Odrzucone
|
581
534
|
rejected: Niewystarczająca liczba podpisów
|
582
535
|
validating: Walidacja techniczna
|
@@ -595,20 +548,11 @@ pl:
|
|
595
548
|
initiatives_type:
|
596
549
|
actions:
|
597
550
|
title: Działania
|
598
|
-
vote: Podpisz
|
599
551
|
layouts:
|
600
552
|
decidim:
|
601
553
|
initiative_creation_header:
|
602
554
|
fill_data: Utwórz
|
603
|
-
finish: Koniec
|
604
|
-
promotal_committee: Komitet organizacyjny
|
605
555
|
select_initiative_type: Wybierz
|
606
|
-
initiative_signature_creation_header:
|
607
|
-
fill_personal_data: Uzupełnij swoje dane
|
608
|
-
finish: Koniec
|
609
|
-
sms_code: Weryfikacja kodem SMS
|
610
|
-
sms_phone_number: Numer telefonu komórkowego
|
611
|
-
title: Podpisz %{initiative_title}
|
612
556
|
initiatives:
|
613
557
|
no_initiatives_yet:
|
614
558
|
no_initiatives_yet: Nie ma jeszcze inicjatyw!
|