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/ro-RO.yml
CHANGED
@@ -6,7 +6,6 @@ ro:
|
|
6
6
|
answer: Răspuns
|
7
7
|
area_id: Zonă
|
8
8
|
decidim_scope_id: Domeniu de interes
|
9
|
-
decidim_user_group_id: Autor
|
10
9
|
description: Descriere
|
11
10
|
offline_votes: Semnături în persoană
|
12
11
|
offline_votes_for_scope: Semnături personale pentru %{scope_name}
|
@@ -34,7 +33,7 @@ ro:
|
|
34
33
|
comments_enabled: Comentarii activate
|
35
34
|
custom_signature_end_date_enabled: Permite autorilor să aleagă sfârșitul perioadei de colectare a semnăturilor
|
36
35
|
description: Descriere
|
37
|
-
document_number_authorization_handler:
|
36
|
+
document_number_authorization_handler: Fluxul de lucru al semnăturii
|
38
37
|
extra_fields_legal_information: Informații juridice privind colectarea datelor cu caracter personal
|
39
38
|
minimum_committee_members: Numărul minim de membri ai comitetului
|
40
39
|
online_signature_enabled: Semnătură online activată
|
@@ -85,14 +84,12 @@ ro:
|
|
85
84
|
label: Județ
|
86
85
|
values:
|
87
86
|
accepted: Semnături suficiente
|
88
|
-
created:
|
87
|
+
created: Create
|
89
88
|
discarded: Respins
|
90
89
|
rejected: Semnături insuficiente
|
91
90
|
validating: Validarea tehnică
|
92
91
|
type_id_eq:
|
93
92
|
label: Tip
|
94
|
-
search_placeholder:
|
95
|
-
title_or_description_or_id_string_or_author_name_or_author_nickname_cont: Caută %{collection} după titlu, descriere, ID sau numele autorului.
|
96
93
|
menu:
|
97
94
|
attachments: Atașamente
|
98
95
|
committee_members: Membrii comitetului
|
@@ -277,8 +274,8 @@ ro:
|
|
277
274
|
edit:
|
278
275
|
update: Actualizare
|
279
276
|
form:
|
280
|
-
authorizations: Setări de autorizare
|
281
277
|
options: Opţiuni
|
278
|
+
signature_workflow_settings: Setări ale fluxului de lucru al semnăturii
|
282
279
|
initiative_type_scopes:
|
283
280
|
title: Domeniul de interes al tipului de inițiativă
|
284
281
|
new:
|
@@ -292,7 +289,7 @@ ro:
|
|
292
289
|
update: "%{user_name} a actualizat inițiativa %{resource_name}"
|
293
290
|
admin_states:
|
294
291
|
accepted: Semnături suficiente
|
295
|
-
created:
|
292
|
+
created: Create
|
296
293
|
discarded: Respins
|
297
294
|
rejected: Semnături insuficiente
|
298
295
|
validating: Validarea tehnică
|
@@ -319,38 +316,53 @@ ro:
|
|
319
316
|
highlighted_initiatives:
|
320
317
|
name: Inițiative evidențiate
|
321
318
|
create_initiative:
|
319
|
+
committee_member:
|
320
|
+
approve: Aprobați
|
321
|
+
confirm_approve: Sunteți sigur că doriți să aprobați acest membru?
|
322
|
+
confirm_revoke: Sunteți sigur că doriți să revocați acest membru?
|
323
|
+
revoke: Revocați
|
322
324
|
fill_data:
|
323
|
-
|
325
|
+
confirm_discard: Sigur doriți să renunțați la această inițiativă?
|
324
326
|
continue: Continuă
|
327
|
+
discard: Renunțați la inițiativă
|
325
328
|
fill_data_help: "<ul> <li>Examinează conținutul inițiativei tale. Este ușor de înțeles titlul pus de tine? E clar obiectivul inițiativei?</li> <li>Trebuie să alegi tipul de semnătură. În persoană, online sau o combinație a ambelor</li> <li>Care este aria geografică a inițiativei?</li> </ul>"
|
326
|
-
more_information:
|
329
|
+
more_information: Mai multe informații
|
327
330
|
select_area: Selectează o zonă
|
328
331
|
select_scope: Selectează un domeniu de interes
|
329
332
|
finish:
|
330
333
|
back: Înapoi
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
go_to_my_initiatives: Accesează inițiativele mele
|
336
|
-
more_information: "(Mai multe informații)"
|
337
|
-
send_my_initiative: Trimite inițiativa mea spre validarea tehnică
|
338
|
-
finish_help:
|
339
|
-
publish_helper_text: Reţine faptul că pentru ca iniţiativa ta să fie publicată, trebuie să completezi informaţiile necesare şi <strong>să le trimiți spre validarea tehnică</strong> pentru ca un administrator să le revizuiască.
|
334
|
+
callout_text_created: Felicitări! Inițiativa dvs. a fost creată cu succes.
|
335
|
+
callout_text_validating: Inițiativa dvs. a fost trimisă cu succes pentru validarea tehnică.
|
336
|
+
go_to_initiatives: Mergeți la inițiative
|
337
|
+
publish_helper_text_html: Amintiți-vă că pentru ca inițiativa dumneavoastră să fie publicată, aceasta trebuie validată tehnic de către un administrator.
|
340
338
|
previous_form:
|
341
339
|
back: Înapoi
|
342
|
-
continue: Continuă
|
343
340
|
promotal_committee:
|
344
|
-
individual_help_text:
|
345
|
-
|
341
|
+
individual_help_text: Inițiativa dvs. a fost creată și este salvată ca ciornă. Acum trebuie să adăugați oameni la Comitetul pentru promovare.
|
342
|
+
invite_link_title: Link pentru a invita persoane
|
343
|
+
promoters_committee_help_2: Amintiți-vă că pentru ca inițiativa dvs. să fie publicată trebuie să completați informațiile necesare și să le trimiteți la validarea tehnică pentru a fi examinată de către un administrator.
|
344
|
+
promoters_committee_help_html: Înainte de a trimite inițiativa dvs. pentru validare tehnică, trebuie să adăugați încă %{committee_members_left} membri în comitetul de promovare. Acum aveți <strong>%{committee_members_count}/%{committee_size}</strong> membri.
|
345
|
+
promoters_committee_title: Comitet de promovare
|
346
|
+
return_to_initiatives_button:
|
347
|
+
return_initiatives_html: Omiteți pentru moment și <a href="%{initiatives_path}">întoarceți-vă la inițiative</a>
|
346
348
|
select_initiative_type:
|
347
349
|
back: Înapoi
|
348
350
|
choose_html: Vreau să creez un <strong>%{title}</strong>
|
351
|
+
consult_existing_initiatives: Consultați inițiativele existente
|
352
|
+
continue: Continuați
|
349
353
|
more_information: (Mai multe informații)
|
350
354
|
select: Doresc să promovez această iniţiativă
|
351
|
-
|
355
|
+
select_initiative_type_help_html: "<p>Inițiativele sunt un mijloc prin care participanții pot interveni astfel încât organizația să poată întreprinde acțiuni de apărare a interesului general. Ce inițiativă doriți să lansați?</p>"
|
356
|
+
show_less: Afișați mai puțin
|
357
|
+
show_more: Afișați mai mult
|
358
|
+
subtitle: Ce inițiativă doriți să promovați?
|
359
|
+
send_to_technical_validation_button:
|
360
|
+
button: Trimiteți pentru validare tehnică
|
361
|
+
confirm: Veți trimite inițiativa unui administrator pentru a o revizui și a o publica. Odată publicat, nu o veți mai putea edita. Sunteți sigur?
|
352
362
|
share_committee_link:
|
353
|
-
invite_to_committee_help: Link pentru a invita persoane care vor face parte din
|
363
|
+
invite_to_committee_help: Link pentru a invita persoane care vor face parte din Comisia de promovare.
|
364
|
+
invite_to_committee_help_2: Acest tip de inițiativă cetățenească necesită un comitet de promotori compus cel puțin din membri %{committee_size} (certificatori). Trebuie să împărtășiți următorul link cu celelalte persoane care fac parte din această inițiativă. Când persoanele de contact primesc acest link, acestea vor trebui să urmeze pașii indicați.
|
365
|
+
more_information: Mai multe informații
|
354
366
|
edit:
|
355
367
|
accept: Acceptă inițiativa
|
356
368
|
back: Înapoi
|
@@ -372,11 +384,6 @@ ro:
|
|
372
384
|
email_outro: Ai primit această notificare deoarece urmărești%{author_nickname}. Poți opri notificările accesând linkul anterior.
|
373
385
|
email_subject: O nouă inițiativă a %{author_nickname}
|
374
386
|
notification_title: Inițiativa <a href="%{resource_path}">%{resource_title}</a> a fost creată de <a href="%{author_path}">%{author_name} %{author_nickname}</a>.
|
375
|
-
endorse_initiative_event:
|
376
|
-
email_intro: "%{author_name} %{author_nickname}, pe care îl urmărești, a susținut următoarea inițiativă; dacă dorești, poți contribui și tu aici:"
|
377
|
-
email_outro: Ai primit această notificare deoarece urmărești%{author_nickname}. Poți opri notificările accesând linkul anterior.
|
378
|
-
email_subject: Inițiativă susținută de %{author_nickname}
|
379
|
-
notification_title: Inițiativa <a href="%{resource_path}">%{resource_title}</a> a fost susținută de <a href="%{author_path}">%{author_name} %{author_nickname}</a>.
|
380
387
|
revoke_membership_request:
|
381
388
|
email_intro: "%{author_nickname} a respins cererea tapentru a face parte din comitetul de promovare pentru inițiativa următoare %{resource_title}."
|
382
389
|
email_outro: 'Ai primit această notificare deoarece ai cerut să iei parte la această inițiativă: %{resource_title}.'
|
@@ -388,20 +395,43 @@ ro:
|
|
388
395
|
email_subject: "%{applicant_nickname} vrea să se alăture inițiativei tale"
|
389
396
|
notification_title: <a href="%{applicant_profile_url}">%{applicant_nickname}</a> a depus cerere pentru comitetul de promovare al inițiativa tale <a href="%{resource_url}">%{resource_title}</a>. Pentru a accepta sau respinge apasă <a href="%{resource_url}/edit">aici</a>.
|
390
397
|
initiative_signatures:
|
398
|
+
dummy_signature:
|
399
|
+
form:
|
400
|
+
fields:
|
401
|
+
date_of_birth:
|
402
|
+
label: Data naşterii
|
403
|
+
document_number:
|
404
|
+
placeholder: Numărul documentului
|
405
|
+
document_type:
|
406
|
+
prompt: Tipul documentului
|
407
|
+
document_type_and_number:
|
408
|
+
help_text: Numărul documentului corespunde documentului utilizat la verificarea prin recensământ.
|
409
|
+
label: Tipul și numărul documentului
|
410
|
+
gender:
|
411
|
+
options:
|
412
|
+
man: Bărbat
|
413
|
+
non_binary: Non binar
|
414
|
+
woman: Femeie
|
391
415
|
fill_personal_data:
|
392
|
-
continue:
|
416
|
+
continue: Validați datele dumneavoastră
|
417
|
+
invalid_authorization: Datele furnizate pentru a continua acțiunea nu sunt compatibile cu autorizările existente sau trebuie să creați o autorizare noua.
|
418
|
+
invalid_data: Unele dintre datele cu caracter personal furnizate pentru verificarea identității dumneavoastră nu sunt valide.
|
393
419
|
finish:
|
394
420
|
back_to_initiative: Înapoi la inițiativă
|
395
|
-
|
396
|
-
continue: Verifică codul și continuă
|
397
|
-
help: Verifică SMS-ul primit pe telefonul tău
|
421
|
+
title: Ați semnat inițiativa
|
398
422
|
sms_phone_number:
|
399
|
-
|
423
|
+
confirmed_data: Ați confirmat datele.
|
424
|
+
continue: Semnați inițiativa
|
425
|
+
help_enter_your_number: Vă rugăm să introduceți numărul dumneavoastră de telefon. Apoi veți primi un SMS cu un cod de validare.
|
426
|
+
receive_code: Codul primit
|
427
|
+
resend_code_html: Nu ați primit codul? <a href="%{new_code_path}">Încercați din nou</a>
|
428
|
+
your_code_is_correct: Codul dumneavoastră este corect.
|
429
|
+
your_code_is_incorrect: Codul nu este corect. Examinați-l sau <a href="%{new_code_path}">încercați din nou</a>.
|
430
|
+
your_confirmation_code: Codul dumneavoastră de confirmare
|
400
431
|
initiative_votes:
|
401
432
|
create:
|
433
|
+
already_voted: Semnătura si datele dumneavoastră au fost deja înregistrate.
|
402
434
|
error: A existat o problemă la semnarea inițiativei.
|
403
|
-
personal_data:
|
404
|
-
invalid: Datele cu caracter personal nu sunt compatibile cu datele furnizate pentru autorizare.
|
405
435
|
sms_phone:
|
406
436
|
invalid: Numărul de telefon este invalid sau în aşteptarea autorizaţiei. Te rugăm să verific setările tale de autorizare.
|
407
437
|
initiatives:
|
@@ -432,12 +462,6 @@ ro:
|
|
432
462
|
initiatives:
|
433
463
|
closed_initiatives_warning: În prezent, nu există inițiative deschise, dar aici poți găsi toate inițiativele anterioare.
|
434
464
|
no_initiatives_warning: Nicio inițiativă nu corespunde criteriilor de căutare.
|
435
|
-
interactions:
|
436
|
-
comments_count:
|
437
|
-
count:
|
438
|
-
one: Comentariu
|
439
|
-
few: Comentariu
|
440
|
-
other: Comentariu
|
441
465
|
orders:
|
442
466
|
label: 'Sortați inițiativele după:'
|
443
467
|
most_commented: Cele mai comentate
|
@@ -445,6 +469,8 @@ ro:
|
|
445
469
|
random: Aleator
|
446
470
|
recent: Cele mai recente
|
447
471
|
recently_published: Cel mai recent publicat
|
472
|
+
pending_initiatives:
|
473
|
+
title: Inițiative create și în așteptare
|
448
474
|
print:
|
449
475
|
address: Adresă
|
450
476
|
author_title: Autorul inițiativei
|
@@ -502,10 +528,27 @@ ro:
|
|
502
528
|
show:
|
503
529
|
badge_name:
|
504
530
|
accepted: Semnături suficiente
|
505
|
-
created:
|
531
|
+
created: Create
|
506
532
|
discarded: Respins
|
507
533
|
rejected: Semnături insuficiente
|
508
534
|
validating: Validarea tehnică
|
535
|
+
signatures:
|
536
|
+
workflows:
|
537
|
+
dummy_signature_handler:
|
538
|
+
description:
|
539
|
+
name: Handler cu semnătură fictivă
|
540
|
+
dummy_signature_with_personal_data_handler:
|
541
|
+
description:
|
542
|
+
name:
|
543
|
+
dummy_signature_with_sms_handler:
|
544
|
+
description:
|
545
|
+
name: Handler semnătură fictiva cu doar SMS
|
546
|
+
ephemeral_dummy_signature_handler:
|
547
|
+
description:
|
548
|
+
name:
|
549
|
+
legacy_signature_handler:
|
550
|
+
description:
|
551
|
+
name: Handler cu semnătură inițială
|
509
552
|
states:
|
510
553
|
accepted: Acceptat
|
511
554
|
expired: Expirat
|
@@ -519,20 +562,19 @@ ro:
|
|
519
562
|
initiatives_type:
|
520
563
|
actions:
|
521
564
|
title: Acțiuni
|
522
|
-
|
565
|
+
statistics:
|
566
|
+
initiatives_count: Inițiative
|
567
|
+
initiatives_count_tooltip: Numărul de inițiative cetățenești publicate.
|
523
568
|
layouts:
|
524
569
|
decidim:
|
525
570
|
initiative_creation_header:
|
526
571
|
fill_data: Creează
|
527
|
-
finish:
|
528
|
-
promotal_committee:
|
572
|
+
finish: Validarea tehnică
|
573
|
+
promotal_committee: Căutați promotori
|
529
574
|
select_initiative_type: Alege
|
530
575
|
initiative_signature_creation_header:
|
531
|
-
|
532
|
-
|
533
|
-
sms_code: Verificare cod SMS
|
534
|
-
sms_phone_number: Număr de telefon mobil
|
535
|
-
title: Semnează %{initiative_title}
|
576
|
+
help_information_html: Pentru a semna inițiativa <strong>%{initiative_title}</strong> promovat de %{initiative_author} trebuie să furnizați câteva informații care vor face inițiativa obligatorie din punct de vedere juridic. Nicio informație despre tine nu va fi făcută publică.
|
577
|
+
verify_your_identity: Verificați identitatea dumneavoastră
|
536
578
|
initiatives:
|
537
579
|
no_initiatives_yet:
|
538
580
|
no_initiatives_yet: Nicio inițiativă încă!
|
data/config/locales/ru.yml
CHANGED
@@ -3,7 +3,6 @@ ru:
|
|
3
3
|
activemodel:
|
4
4
|
attributes:
|
5
5
|
initiative:
|
6
|
-
decidim_user_group_id: Автор
|
7
6
|
description: Описание
|
8
7
|
offline_votes: Выражения поддержки на личных встречах
|
9
8
|
scope_id: Охват
|
@@ -127,7 +126,6 @@ ru:
|
|
127
126
|
unpublish: "%{user_name} отбросил почин %{resource_name}"
|
128
127
|
update: "%{user_name} обновил почин %{resource_name}"
|
129
128
|
admin_states:
|
130
|
-
created: Созданные
|
131
129
|
discarded: Отброшенные
|
132
130
|
validating: Техническая проверка
|
133
131
|
application_helper:
|
@@ -144,39 +142,21 @@ ru:
|
|
144
142
|
name: Рекомендуемые почины
|
145
143
|
create_initiative:
|
146
144
|
fill_data:
|
147
|
-
back: Вернуться
|
148
145
|
continue: Продолжить
|
149
|
-
more_information: "(Дополнительные сведения)"
|
150
146
|
select_scope: Выбрать охват
|
151
147
|
finish:
|
152
148
|
back: Вернуться
|
153
|
-
back_to_initiatives: Вернуться к починам
|
154
|
-
go_to_my_initiatives: Перейти к моим починам
|
155
|
-
more_information: "(Дополнительные сведения)"
|
156
149
|
previous_form:
|
157
150
|
back: Вернуться
|
158
|
-
continue: Продолжить
|
159
|
-
promotal_committee:
|
160
|
-
more_information: "(Дополнительные сведения)"
|
161
151
|
select_initiative_type:
|
162
152
|
back: Вернуться
|
163
153
|
more_information: (Дополнительные сведения)
|
164
|
-
share_committee_link:
|
165
|
-
invite_to_committee_help: Ссылка для приглашения людей, которые войдут в рабочую группу по продвижению
|
166
154
|
events:
|
167
155
|
create_initiative_event:
|
168
156
|
email_intro: "%{author_name} %{author_nickname}, за которым вы следите, создал новый почин. Прочитайте его и внесите свой вклад:"
|
169
157
|
email_outro: Вы получили это уведомление, потому что вы следите за «%{author_nickname}». Вы можете отписаться от уведомлений, перейдя по приведенной выше ссылке.
|
170
158
|
email_subject: Новый почин от %{author_nickname}
|
171
159
|
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> предложил почин <a href="%{resource_path}">%{resource_title}</a>.
|
172
|
-
endorse_initiative_event:
|
173
|
-
email_intro: "%{author_name} %{author_nickname}, за которым вы следите, поддержал следующую инициативу. Возможно, вы хотите поучаствовать в разговоре:"
|
174
|
-
email_outro: Вы получили это уведомление, потому что вы следите за «%{author_nickname}». Вы можете отписаться от уведомлений, перейдя по приведенной выше ссылке.
|
175
|
-
email_subject: Инициатива поддержана %{author_nickname}
|
176
|
-
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> поддержал почин <a href="%{resource_path}">%{resource_title}</a>.
|
177
|
-
initiative_signatures:
|
178
|
-
fill_personal_data:
|
179
|
-
continue: Продолжить
|
180
160
|
initiative_votes:
|
181
161
|
create:
|
182
162
|
error: При попытке подписаться за этот почин произошли ошибки.
|
@@ -242,15 +222,10 @@ ru:
|
|
242
222
|
expired: Истекшие
|
243
223
|
menu:
|
244
224
|
initiatives: Почины
|
245
|
-
resources:
|
246
|
-
initiatives_type:
|
247
|
-
actions:
|
248
|
-
vote: Подписать
|
249
225
|
layouts:
|
250
226
|
decidim:
|
251
227
|
initiative_creation_header:
|
252
228
|
fill_data: Создать
|
253
|
-
promotal_committee: Рабочая группа по продвижению
|
254
229
|
select_initiative_type: Выбрать
|
255
230
|
initiatives:
|
256
231
|
no_initiatives_yet:
|
data/config/locales/sk.yml
CHANGED
@@ -3,7 +3,6 @@ sk:
|
|
3
3
|
activemodel:
|
4
4
|
attributes:
|
5
5
|
initiative:
|
6
|
-
decidim_user_group_id: Autor
|
7
6
|
description: Popis
|
8
7
|
offline_votes: Podpora tvárou v tvár
|
9
8
|
scope_id: Rozsah
|
@@ -22,7 +21,6 @@ sk:
|
|
22
21
|
banner_image: Obrázok banneru
|
23
22
|
collect_user_extra_fields: Zbierajte osobné údaje užívateľov podpisom
|
24
23
|
description: Popis
|
25
|
-
document_number_authorization_handler: Povolenie overiť číslo dokumentu na hlasovaní
|
26
24
|
extra_fields_legal_information: Právne informácie o zbere osobných údajov
|
27
25
|
minimum_committee_members: Minimálny počet členov výboru
|
28
26
|
online_signature_enabled: Online podpis povolený
|
@@ -172,7 +170,6 @@ sk:
|
|
172
170
|
send_to_technical_validation: "% {USER_NAME} zaslala% {resource_name} iniciatívu k technickému overenie"
|
173
171
|
update: "% {USER_NAME} aktualizoval iniciatívu% {resource_name}"
|
174
172
|
admin_states:
|
175
|
-
created: Vytvorené
|
176
173
|
discarded: Odstránená
|
177
174
|
application_helper:
|
178
175
|
filter_state_values:
|
@@ -188,53 +185,29 @@ sk:
|
|
188
185
|
name: Významné iniciatívy
|
189
186
|
create_initiative:
|
190
187
|
fill_data:
|
191
|
-
back: Späť
|
192
188
|
continue: Pokračovať
|
193
|
-
more_information: "(Viac informácií)"
|
194
189
|
select_scope: Zvoľte rozsah
|
195
190
|
finish:
|
196
191
|
back: Späť
|
197
|
-
back_to_initiatives: Späť na iniciatívy
|
198
|
-
go_to_my_initiatives: Ísť na mojej iniciatívy
|
199
|
-
more_information: "(Viac informácií)"
|
200
192
|
previous_form:
|
201
193
|
back: Späť
|
202
|
-
continue: Pokračovať
|
203
|
-
promotal_committee:
|
204
|
-
more_information: "(Viac informácií)"
|
205
194
|
select_initiative_type:
|
206
195
|
back: Späť
|
207
196
|
choose_html: Chcem vytvoriť <strong>%{title} </strong>
|
208
197
|
more_information: (Viac informácií)
|
209
198
|
select: Chcem túto iniciatívu podporiť
|
210
|
-
share_committee_link:
|
211
|
-
invite_to_committee_help: Odkaz na pozvanie ľudí, ktorí budú súčasťou podporovaného výboru
|
212
199
|
events:
|
213
200
|
create_initiative_event:
|
214
201
|
email_intro: "% {AUTHOR_NAME}% {author_nickname}, ktorého sledujete, vytvoril novú iniciatívu, skontroloval ju a prispel:"
|
215
202
|
email_outro: Toto oznámenie ste dostali, pretože sledujete %{author_nickname}. Notifikácie môžete zrušiť po kliknutí na predchádzajúci odkaz.
|
216
203
|
email_subject: Nová iniciatíva od%{author_nickname}
|
217
204
|
notification_title: Iniciatíva <a href="%{resource_path}">% {resource_title} </a> bola vytvorená <a href="%{author_path}">% {AUTHOR_NAME}% {author_nickname} </a>.
|
218
|
-
endorse_initiative_event:
|
219
|
-
email_intro: "% {AUTHOR_NAME}% {author_nickname}, ktorého sledujete, schválil nasledujúce iniciatívu, možno chcete prispieť k konverzáciu:"
|
220
|
-
email_outro: Toto oznámenie ste dostali, pretože sledujete %{author_nickname}. Notifikácie môžete zrušiť po kliknutí na predchádzajúci odkaz.
|
221
|
-
email_subject: Iniciatíva bola schválená od%{author_nickname}
|
222
|
-
notification_title: Iniciatíva <a href="%{resource_path}">% {resource_title} </a> bola schválená <a href="%{author_path}">% {AUTHOR_NAME}% {author_nickname} </a>.
|
223
205
|
initiative_signatures:
|
224
|
-
fill_personal_data:
|
225
|
-
continue: Pokračovať
|
226
206
|
finish:
|
227
207
|
back_to_initiative: Späť na iniciatívu
|
228
|
-
sms_code:
|
229
|
-
continue: Skontrolujte kód a pokračujte
|
230
|
-
help: Skontrolujte SMS prijaté v telefóne
|
231
|
-
sms_phone_number:
|
232
|
-
continue: Pošlite mi SMS
|
233
208
|
initiative_votes:
|
234
209
|
create:
|
235
210
|
error: Pri podpise iniciatívy došlo k chybám.
|
236
|
-
personal_data:
|
237
|
-
invalid: Osobné údaje nie sú v súlade s údajmi poskytnutými na autorizáciu.
|
238
211
|
sms_phone:
|
239
212
|
invalid: Telefónne číslo je neplatné alebo čaká na autorizáciu. Skontrolujte prosím vaše oprávnenie.
|
240
213
|
initiatives:
|
@@ -258,13 +231,6 @@ sk:
|
|
258
231
|
type: Typ
|
259
232
|
index_header:
|
260
233
|
new_initiative: Nová iniciatíva
|
261
|
-
interactions:
|
262
|
-
comments_count:
|
263
|
-
count:
|
264
|
-
one: Komentár
|
265
|
-
few: Komentáre
|
266
|
-
many: Komentáre
|
267
|
-
other: Komentáre
|
268
234
|
orders:
|
269
235
|
label: 'Triediť iniciatívy podľa:'
|
270
236
|
most_commented: Najviac komentované
|
@@ -311,20 +277,11 @@ sk:
|
|
311
277
|
initiatives_type:
|
312
278
|
actions:
|
313
279
|
title: Akcia
|
314
|
-
vote: Podpísať
|
315
280
|
layouts:
|
316
281
|
decidim:
|
317
282
|
initiative_creation_header:
|
318
283
|
fill_data: Vytvoriť
|
319
|
-
finish: Dokončiť
|
320
|
-
promotal_committee: Výbor predkladateľov
|
321
284
|
select_initiative_type: Vybrať
|
322
|
-
initiative_signature_creation_header:
|
323
|
-
fill_personal_data: Dokončiť svoje údaje
|
324
|
-
finish: Dokončiť
|
325
|
-
sms_code: Overenie kódu SMS
|
326
|
-
sms_phone_number: Číslo mobilného telefónu
|
327
|
-
title: Podpísať%{initiative_title}
|
328
285
|
initiatives:
|
329
286
|
no_initiatives_yet:
|
330
287
|
no_initiatives_yet: Zatiaľ žiadne iniciatívy!
|
data/config/locales/sl.yml
CHANGED
data/config/locales/sv.yml
CHANGED
@@ -7,9 +7,7 @@ sv:
|
|
7
7
|
answer_url: Svars-URL
|
8
8
|
area_id: Område
|
9
9
|
decidim_scope_id: Indelning
|
10
|
-
decidim_user_group_id: Författare
|
11
10
|
description: Beskrivning
|
12
|
-
hashtag: Hashtag
|
13
11
|
offline_votes: Fysiska underskrifter
|
14
12
|
offline_votes_for_scope: Personliga underskrifter för %{scope_name}
|
15
13
|
scope_id: Indelning
|
@@ -36,7 +34,6 @@ sv:
|
|
36
34
|
comments_enabled: Aktivera kommentarer
|
37
35
|
custom_signature_end_date_enabled: Gör det möjligt för författarna att välja när perioden för insamling av underskrifter ska sluta
|
38
36
|
description: Beskrivning
|
39
|
-
document_number_authorization_handler: Tillstånd att verifiera dokumentnummer för underskrifter
|
40
37
|
extra_fields_legal_information: Juridisk information om insamling av personuppgifter
|
41
38
|
minimum_committee_members: Minsta antal kampanjmedlemmar
|
42
39
|
online_signature_enabled: Digitala signaturer är aktiverade
|
@@ -80,6 +77,7 @@ sv:
|
|
80
77
|
decidim:
|
81
78
|
admin:
|
82
79
|
actions:
|
80
|
+
cannot_answer: Kan inte svara på detta initiativ
|
83
81
|
new_initiative_type: Ny initiativtyp
|
84
82
|
new_initiative_type_scope: Skapa indelning för initiativ
|
85
83
|
filters:
|
@@ -90,7 +88,6 @@ sv:
|
|
90
88
|
label: Status
|
91
89
|
values:
|
92
90
|
accepted: Tillräckligt många underskrifter
|
93
|
-
created: Skapad
|
94
91
|
discarded: Avvisad
|
95
92
|
open: Öppna
|
96
93
|
rejected: För få underskrifter
|
@@ -98,7 +95,7 @@ sv:
|
|
98
95
|
type_id_eq:
|
99
96
|
label: Typ
|
100
97
|
search_placeholder:
|
101
|
-
title_or_description_or_id_string_or_author_name_or_author_nickname_cont: Sök %{collection} med titel, beskrivning, ID eller författarnamn
|
98
|
+
title_or_description_or_id_string_or_author_name_or_author_nickname_cont: Sök %{collection} med titel, beskrivning, ID eller författarnamn
|
102
99
|
initiatives_settings:
|
103
100
|
update:
|
104
101
|
error: Det gick inte att uppdatera inställningarna för initiativ.
|
@@ -125,8 +122,12 @@ sv:
|
|
125
122
|
state: Status
|
126
123
|
supports_count: Underskrifter
|
127
124
|
title: Initiativ
|
125
|
+
initiatives_committee_member:
|
126
|
+
fields:
|
127
|
+
actions: Handlingar
|
128
128
|
initiatives_type_scope:
|
129
129
|
fields:
|
130
|
+
actions: Handlingar
|
130
131
|
scope: Indelning
|
131
132
|
supports_required: Antal underskrifter som krävs
|
132
133
|
name: Indelning för initiativtypen
|
@@ -253,6 +254,7 @@ sv:
|
|
253
254
|
success: Initiativet har skickats till teknisk validering.
|
254
255
|
update: Uppdatera
|
255
256
|
form:
|
257
|
+
attachments_title: Bilagor
|
256
258
|
settings: Inställningar
|
257
259
|
title: Allmän information
|
258
260
|
index:
|
@@ -301,7 +303,6 @@ sv:
|
|
301
303
|
edit:
|
302
304
|
update: Uppdatera
|
303
305
|
form:
|
304
|
-
authorizations: Inställningar för autentisering
|
305
306
|
child_scope_threshold_enabled_help_html: 'Den här konfigurationen har inte stöd för offline-röster. Den aktiverar indelningar och fungerar med en auktorisering som associerar ett utrymme till användaren. Kontrollera att du väljer den auktoriseringen, nedan i auktoriseringsinställningar. För att det ska fungera måste indelningen konfigureras på ett hierarkiskt sätt: 1 Förälder - N barn. För mer information om hur denna konfiguration fungerar, se <a href="https://docs.decidim.org/en/admin/spaces/initiatives/" target="_blank">initiativs admindokumentationssida</a>.'
|
306
307
|
only_global_scope_enabled_help_html: Välj den här om du aktiverade "Child scope signatur" och konfigurerade den globala indelningen som din överordnade indelning. Genom att aktivera detta kommer man att hoppa över valet av initiativtyp i guiden för att skapa initiativ. För mer information om hur denna konfiguration fungerar, se denna <a href="https://docs.decidim.org/en/admin/spaces/initiatives/" target="_blank">länk</a>.
|
307
308
|
options: Alternativ
|
@@ -327,7 +328,6 @@ sv:
|
|
327
328
|
update: "%{user_name} uppdaterade initiativtypen %{resource_name}"
|
328
329
|
admin_states:
|
329
330
|
accepted: Tillräckligt många underskrifter
|
330
|
-
created: Skapad
|
331
331
|
discarded: Bortagna
|
332
332
|
open: Öppna
|
333
333
|
rejected: För få underskrifter
|
@@ -357,38 +357,21 @@ sv:
|
|
357
357
|
name: Viktiga initiativ just nu
|
358
358
|
create_initiative:
|
359
359
|
fill_data:
|
360
|
-
back: Tillbaka
|
361
360
|
continue: Fortsätt
|
362
361
|
fill_data_help: "<ul> <li>Granska innehållet i initiativet. Är titeln lätt att förstå? Har initiativet ett tydligt mål?</li> <li>Du måste välja typ av underskrifter. Fysiska, digitala eller en kombination av båda</li> <li>Vilket är initiativets geografiska omfång? Stad, distrikt?</li> </ul>"
|
363
|
-
more_information: "(Mer information)"
|
364
362
|
select_area: Välj ett område
|
365
363
|
select_scope: Välj en indelning
|
366
364
|
finish:
|
367
365
|
back: Tillbaka
|
368
|
-
back_to_initiatives: Tillbaka till initiativ
|
369
|
-
confirm: Du kommer att skicka initiativet till en administratör för att granska och publicera det. När det har publicerats kommer du inte att kunna redigera det. Vill du gå vidare?
|
370
|
-
edit_my_initiative: Redigera mitt initiativ
|
371
|
-
go_to_my_initiatives: Gå till mina initiativ
|
372
|
-
more_information: "(Mer information)"
|
373
|
-
send_my_initiative: Skicka mitt initiativ till teknisk validering
|
374
|
-
finish_help:
|
375
|
-
publish_helper_text: Kom ihåg att för att ditt initiativ ska publiceras måste du fylla i obligatoriska uppgifter och <strong>skicka det till teknisk validering</strong> för att en administratör ska kunna granska det.
|
376
366
|
previous_form:
|
377
367
|
back: Tillbaka
|
378
|
-
continue: Fortsätta
|
379
|
-
promotal_committee:
|
380
|
-
individual_help_text: Den här typen av medborgarinitiativ kräver att kampanjgruppen består av minst %{committee_size} personer (attesterare). Du måste dela följande länk med andra personer som är del av initiativet. När dina kontakter får denna länk måste de följa de angivna stegen.
|
381
|
-
more_information: "(Mer information)"
|
382
368
|
select_initiative_type:
|
383
369
|
back: Tillbaka
|
384
370
|
choose_html: Jag vill skapa ett <strong>%{title}</strong>
|
385
371
|
more_information: Mer information
|
386
372
|
new: Skapa nytt initiativ
|
387
373
|
select: Jag vill arbeta för detta initiativ
|
388
|
-
select_initiative_type_help: Initiativ är ett sätt för deltagare att påverka sin organisation och ta initiativ till förbättringar. Vilket initiativ vill du lansera?
|
389
374
|
verification_required: Verifiera ditt konto för att skriva under initiativet
|
390
|
-
share_committee_link:
|
391
|
-
invite_to_committee_help: Länk för att bjuda in personer till kampanjgruppen
|
392
375
|
edit:
|
393
376
|
accept: Acceptera initiativet
|
394
377
|
back: Tillbaka
|
@@ -410,11 +393,6 @@ sv:
|
|
410
393
|
email_outro: Du har fått det här meddelandet eftersom du följer %{author_nickname}. Du kan sluta ta att emot meddelanden via föregående länk.
|
411
394
|
email_subject: Nytt initiativ från %{author_nickname}
|
412
395
|
notification_title: Initiativet <a href="%{resource_path}">%{resource_title}</a> skapades av <a href="%{author_path}">%{author_name} %{author_nickname}</a>.
|
413
|
-
endorse_initiative_event:
|
414
|
-
email_intro: "%{author_name} %{author_nickname}, som du följer, gillar följande initiativ. Kanske du vill bidra till diskussionen:"
|
415
|
-
email_outro: Du har fått det här meddelandet eftersom du följer %{author_nickname}. Du kan sluta ta att emot meddelanden via föregående länk.
|
416
|
-
email_subject: '%{author_nickname} gillar Initiativet'
|
417
|
-
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> gillar initiativet <a href="%{resource_path}">%{resource_title}</a>.
|
418
396
|
revoke_membership_request:
|
419
397
|
email_intro: "%{author_nickname} avslog din ansökan om att ingå i kampanjgruppen för följande initiativ %{resource_title}."
|
420
398
|
email_outro: 'Du har fått det här meddelandet eftersom du är författaren av initiativet %{resource_title}.'
|
@@ -433,23 +411,14 @@ sv:
|
|
433
411
|
uninitialized: Initiativ är ännu inte konfigurerade av en administratör.
|
434
412
|
initiative_signatures:
|
435
413
|
fill_personal_data:
|
436
|
-
continue: Fortsätta
|
437
414
|
help: Skriv under initiativet genom att fylla i följande fält med dina uppgifter.
|
438
415
|
finish:
|
439
416
|
back_to_initiative: Tillbaka till initiativet
|
440
|
-
sms_code:
|
441
|
-
continue: Kontrollera koden och fortsätt
|
442
|
-
help: Se det SMS som skickades till din telefon
|
443
|
-
sms_phone_number:
|
444
|
-
continue: Skicka mig ett SMS
|
445
|
-
help: Begär en verifieringskod genom att fyll i formuläret med ditt verifierade telefonnummer.
|
446
417
|
initiative_votes:
|
447
418
|
create:
|
448
419
|
error: Det gick inte att skriva under initiativet.
|
449
420
|
invalid: Uppgifterna för underskrift av initiativet är ogiltiga.
|
450
421
|
success_html: Grattis! Du har skrivit under initiativet <strong> %{title}</strong>.
|
451
|
-
personal_data:
|
452
|
-
invalid: Personuppgifterna överensstämmer inte med de uppgifter som lämnats för godkännande.
|
453
422
|
sms_code:
|
454
423
|
invalid: Din verifieringskod matchar inte vår. Vänligen dubbelkolla SMS vi skickade dig.
|
455
424
|
sms_phone:
|
@@ -485,11 +454,6 @@ sv:
|
|
485
454
|
initiatives:
|
486
455
|
closed_initiatives_warning: För tillfället finns inga öppna initiativ, men här är en lista över alla avslutade initiativ.
|
487
456
|
no_initiatives_warning: Inga initiativ matchar dina sökkriterier.
|
488
|
-
interactions:
|
489
|
-
comments_count:
|
490
|
-
count:
|
491
|
-
one: Kommentar
|
492
|
-
other: Kommentarer
|
493
457
|
orders:
|
494
458
|
label: 'Sortera initiativ efter:'
|
495
459
|
most_commented: Mest kommenterade
|
@@ -569,7 +533,6 @@ sv:
|
|
569
533
|
show:
|
570
534
|
badge_name:
|
571
535
|
accepted: Tillräckligt många underskrifter
|
572
|
-
created: Skapad
|
573
536
|
discarded: Bortagen
|
574
537
|
open: Öppna
|
575
538
|
rejected: För få underskrifter
|
@@ -590,20 +553,14 @@ sv:
|
|
590
553
|
initiatives_type:
|
591
554
|
actions:
|
592
555
|
title: Åtgärder
|
593
|
-
|
556
|
+
statistics:
|
557
|
+
initiatives_count: Initiativ
|
558
|
+
initiatives_count_tooltip: Antalet offentliggjorda medborgarinitiativ.
|
594
559
|
layouts:
|
595
560
|
decidim:
|
596
561
|
initiative_creation_header:
|
597
562
|
fill_data: Skapa
|
598
|
-
finish: Slutför
|
599
|
-
promotal_committee: Kampanjgrupp
|
600
563
|
select_initiative_type: Välj
|
601
|
-
initiative_signature_creation_header:
|
602
|
-
fill_personal_data: Komplettera dina uppgifter
|
603
|
-
finish: Slutför
|
604
|
-
sms_code: Verifiering med SMS-kod
|
605
|
-
sms_phone_number: Mobiltelefonnummer
|
606
|
-
title: Skriv under %{initiative_title}
|
607
564
|
initiatives:
|
608
565
|
no_initiatives_yet:
|
609
566
|
no_initiatives_yet: Inga initiativ ännu!
|