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/cs.yml
CHANGED
@@ -7,9 +7,7 @@ cs:
|
|
7
7
|
answer_url: URL odpovědi
|
8
8
|
area_id: Oblast
|
9
9
|
decidim_scope_id: Oblast působnosti
|
10
|
-
decidim_user_group_id: Autor
|
11
10
|
description: Popis
|
12
|
-
hashtag: Hashtag
|
13
11
|
offline_votes: Osobní fyzické podpisy
|
14
12
|
offline_votes_for_scope: Podepsané osoby pro %{scope_name}
|
15
13
|
scope_id: Rozsah
|
@@ -36,7 +34,7 @@ cs:
|
|
36
34
|
comments_enabled: Povolit komentáře
|
37
35
|
custom_signature_end_date_enabled: Povolit autorům zvolit konec doby sběru podpisů
|
38
36
|
description: Popis
|
39
|
-
document_number_authorization_handler:
|
37
|
+
document_number_authorization_handler: Pracovní postup podpisu
|
40
38
|
extra_fields_legal_information: Právní informace o shromažďování osobních údajů
|
41
39
|
minimum_committee_members: Minimální počet členů výboru
|
42
40
|
online_signature_enabled: Online podpis povolen
|
@@ -86,6 +84,7 @@ cs:
|
|
86
84
|
decidim:
|
87
85
|
admin:
|
88
86
|
actions:
|
87
|
+
cannot_answer: Na tuto iniciativu nelze odpovědět
|
89
88
|
new_initiative_type: Nový typ iniciativy
|
90
89
|
new_initiative_type_scope: Nový typ rozsahu iniciativy
|
91
90
|
filters:
|
@@ -96,15 +95,13 @@ cs:
|
|
96
95
|
label: Stav
|
97
96
|
values:
|
98
97
|
accepted: Dostatek podpisů
|
99
|
-
created:
|
98
|
+
created: Navrženo
|
100
99
|
discarded: Vyřazeno
|
101
100
|
open: Otevřeno
|
102
101
|
rejected: Nedostatek podpisů
|
103
102
|
validating: Technické ověření
|
104
103
|
type_id_eq:
|
105
104
|
label: Typ
|
106
|
-
search_placeholder:
|
107
|
-
title_or_description_or_id_string_or_author_name_or_author_nickname_cont: Hledat %{collection} podle názvu, popisu, ID nebo jména autora.
|
108
105
|
initiatives_settings:
|
109
106
|
update:
|
110
107
|
error: Při aktualizaci nastavení iniciativ došlo k chybě.
|
@@ -131,8 +128,12 @@ cs:
|
|
131
128
|
state: Stav
|
132
129
|
supports_count: Podpisy
|
133
130
|
title: Iniciativy
|
131
|
+
initiatives_committee_member:
|
132
|
+
fields:
|
133
|
+
actions: Akce
|
134
134
|
initiatives_type_scope:
|
135
135
|
fields:
|
136
|
+
actions: Akce
|
136
137
|
scope: Rozsah
|
137
138
|
supports_required: Vyžadováno podpisů
|
138
139
|
name: Rozsah typu iniciativy
|
@@ -272,6 +273,7 @@ cs:
|
|
272
273
|
success: Iniciativa byla odeslána na technické potvrzení.
|
273
274
|
update: Aktualizovat
|
274
275
|
form:
|
276
|
+
attachments_title: Přílohy
|
275
277
|
settings: Nastavení
|
276
278
|
title: Obecná informace
|
277
279
|
index:
|
@@ -326,10 +328,10 @@ cs:
|
|
326
328
|
edit:
|
327
329
|
update: Aktualizovat
|
328
330
|
form:
|
329
|
-
authorizations: Nastavení autorizace
|
330
331
|
child_scope_threshold_enabled_help_html: 'Tento příznak konfigurace nepodporuje offline hlasování. Umožňuje podřazené rozsahy a pracuje s autorizačním handlerem, který přiřazuje rozsah k uživateli. Ujistěte se, že jste zvolili toto autorizaci, níže v nastavení autorizace. Aby fungoval, je třeba nastavit rozsahy hierarchickým způsobem: 1 nadřazený - N podřazených. Více informací o tom, jak tato konfigurace funguje, naleznete v <a href="https://docs.decidim.org/en/admin/spaces/initiatives/" target="_blank">administrátorské dokumentaci</a>.'
|
331
332
|
only_global_scope_enabled_help_html: Zaškrtněte tento příznak, pokud jste povolili "Podřazený rozsah" a nakonfigurovali globální rozsah jako váš nadřazený rozsah. Povolením této možnosti bude výběr typu iniciativy přeskočeno v průvodci vytvořením iniciativy. Více informací o tom, jak funguje tato konfigurace, naleznete v tomto <a href="https://docs.decidim.org/en/admin/spaces/initiatives/" target="_blank">odkazu</a>.
|
332
333
|
options: Možnosti
|
334
|
+
signature_workflow_settings: Nastavení pracovního postupu podpisu
|
333
335
|
initiative_type_scopes:
|
334
336
|
title: Oblasti působnosti pro tento druh iniciativ
|
335
337
|
new:
|
@@ -352,7 +354,7 @@ cs:
|
|
352
354
|
update: "%{user_name} aktualizoval typ iniciativ %{resource_name}"
|
353
355
|
admin_states:
|
354
356
|
accepted: Dostatek podpisů
|
355
|
-
created:
|
357
|
+
created: Navrženo
|
356
358
|
discarded: Vyřazeno
|
357
359
|
open: Otevřeno
|
358
360
|
rejected: Nedostatek podpisů
|
@@ -381,40 +383,55 @@ cs:
|
|
381
383
|
highlighted_initiatives:
|
382
384
|
name: Zvýrazněné iniciativy
|
383
385
|
create_initiative:
|
386
|
+
committee_member:
|
387
|
+
approve: Schválit
|
388
|
+
confirm_approve: Opravdu chcete schválit tohoto člena?
|
389
|
+
confirm_revoke: Opravdu chcete tohoto člena odvolat?
|
390
|
+
revoke: Odvolat
|
384
391
|
fill_data:
|
385
|
-
|
392
|
+
confirm_discard: Opravdu chcete tuto iniciativu zrušit?
|
386
393
|
continue: Pokračovat
|
394
|
+
discard: Zrušit iniciativu
|
387
395
|
fill_data_help: "<ul> <li>Přečtěte si obsah vaší iniciativy. Je váš název snadno srozumitelný? Je cíl vaší iniciativy jasný?</li> <li>Musíte zvolit typ podpisu. Osobní, on-line nebo kombinace obou</li> <li>Jaká je geografická oblast působnosti?</li> </ul>"
|
388
|
-
more_information:
|
396
|
+
more_information: Více informací
|
389
397
|
select_area: Vybrat oblast
|
390
398
|
select_scope: Zvolte rozsah
|
391
399
|
finish:
|
392
400
|
back: Zpět
|
393
|
-
|
394
|
-
|
395
|
-
|
396
|
-
|
397
|
-
go_to_my_initiatives: Jít na mé iniciativy
|
398
|
-
more_information: "(Více informací)"
|
399
|
-
send_my_initiative: Poslat moji iniciativu na technické ověření
|
400
|
-
finish_help:
|
401
|
-
publish_helper_text: Nezapomeňte, že pro publikování vaší iniciativy musíte vyplnit požadované informace a <strong>je zašlete na technické potvrzení</strong>, aby ji správce mohl zkontrolovat.
|
401
|
+
callout_text_created: Blahopřejeme! Vaše iniciativa byla úspěšně vytvořena.
|
402
|
+
callout_text_validating: Vaše iniciativa byla úspěšně odeslána na technické potvrzení.
|
403
|
+
go_to_initiatives: Přejít na iniciativy
|
404
|
+
publish_helper_text_html: Nezapomeňte, že pro publikování vaší iniciativy musí být administrátor technicky ověřen pro přezkoumání.
|
402
405
|
previous_form:
|
403
406
|
back: Zpět
|
404
|
-
continue: Pokračovat
|
405
407
|
promotal_committee:
|
406
|
-
individual_help_text:
|
407
|
-
|
408
|
+
individual_help_text: Vaše iniciativa byla vytvořena a je uložena jako návrh. Teď musíte přidat lidi do Výboru propagátorů.
|
409
|
+
invite_link_title: Odkaz pro pozvání lidí
|
410
|
+
promoters_committee_help_2: Nezapomeňte, že pro publikování vaší iniciativy musíte vyplnit požadované informace a poslat je na technické potvrzení správce.
|
411
|
+
promoters_committee_help_html: Před odesláním vaší iniciativy pro technické ověření musíte přidat %{committee_members_left} více členů do výboru promotéra, máte <strong>%{committee_members_count}/%{committee_size}</strong>.
|
412
|
+
promoters_committee_title: Výbor pro propagátory
|
413
|
+
return_to_initiatives_button:
|
414
|
+
return_initiatives_html: Prozatím přeskočit a <a href="%{initiatives_path}">vrátit se k iniciativám</a>
|
408
415
|
select_initiative_type:
|
409
416
|
back: Zpět
|
410
417
|
choose_html: Chci vytvořit <strong>%{title}</strong>
|
418
|
+
consult_existing_initiatives: Konzultovat existující iniciativy
|
419
|
+
continue: Pokračovat
|
411
420
|
more_information: (Více informací)
|
412
421
|
new: Vytvořit novou iniciativu
|
413
422
|
select: Chci tuto iniciativu podpořit
|
414
|
-
|
423
|
+
select_initiative_type_help_html: "<p>Iniciativy jsou prostředkem, který mohou účastníci zasáhnout, aby organizace mohla podniknout kroky na ochranu obecného zájmu. Kterou iniciativu chcete spustit?</p>"
|
424
|
+
show_less: Zobrazit méně
|
425
|
+
show_more: Zobrazit více
|
426
|
+
subtitle: Jakou iniciativu chcete podporovat?
|
415
427
|
verification_required: Ověřte svůj účet pro podporu této iniciativy
|
428
|
+
send_to_technical_validation_button:
|
429
|
+
button: Poslat na technické ověření
|
430
|
+
confirm: Chystáte se poslat iniciativu správci, aby ji zkontroloval a publikoval ji. Po zveřejnění jej nebudete moci upravovat. Jste si jisti?
|
416
431
|
share_committee_link:
|
417
|
-
invite_to_committee_help: Odkaz na pozvání lidí, kteří budou součástí
|
432
|
+
invite_to_committee_help: Odkaz na pozvání lidí, kteří budou součástí propagační komise.
|
433
|
+
invite_to_committee_help_2: Tento typ občanské iniciativy vyžaduje výbor propagátorů složený alespoň z %{committee_size} členů (certifikátorů). Musíte sdílet následující spojení s ostatními lidmi, kteří jsou součástí této iniciativy. Až vaše kontakty obdrží tento odkaz, budou muset postupovat podle uvedených kroků.
|
434
|
+
more_information: Více informací
|
418
435
|
edit:
|
419
436
|
accept: Přijmout iniciativu
|
420
437
|
back: Zpět
|
@@ -436,11 +453,6 @@ cs:
|
|
436
453
|
email_outro: Toto oznámení jste obdrželi, protože jste sledovali %{author_nickname}. Po předchozím propojení můžete přestat přijímat oznámení.
|
437
454
|
email_subject: Nová iniciativa od %{author_nickname}
|
438
455
|
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> vytvořil Iniciativu <a href="%{resource_path}">%{resource_title}</a>.
|
439
|
-
endorse_initiative_event:
|
440
|
-
email_intro: "%{author_name} %{author_nickname}, kterého sledujete, schválil následující iniciativu, možná chcete přispět k konverzaci:"
|
441
|
-
email_outro: Toto oznámení jste obdrželi, protože jste sledovali %{author_nickname}. Po předchozím propojení můžete přestat přijímat oznámení.
|
442
|
-
email_subject: Iniciativa byla schválena od %{author_nickname}
|
443
|
-
notification_title: Iniciativa <a href="%{resource_path}">%{resource_title}</a> byla schválena od <a href="%{author_path}">%{author_name} %{author_nickname}</a>.
|
444
456
|
revoke_membership_request:
|
445
457
|
email_intro: "%{author_nickname} odmítl vaši nabídku k členství funkcionáře ve výboru propagace pro tuto iniciativu %{resource_title}."
|
446
458
|
email_outro: 'Obdrželi jste toto oznámení, protože jste podali žádost o tuto iniciativu: %{resource_title}.'
|
@@ -461,24 +473,45 @@ cs:
|
|
461
473
|
index:
|
462
474
|
uninitialized: Iniciativy ještě nejsou nakonfigurovány správcem.
|
463
475
|
initiative_signatures:
|
476
|
+
dummy_signature:
|
477
|
+
form:
|
478
|
+
fields:
|
479
|
+
date_of_birth:
|
480
|
+
label: Datum narození
|
481
|
+
document_number:
|
482
|
+
placeholder: Číslo dokumentu
|
483
|
+
document_type:
|
484
|
+
prompt: Typ dokumentu
|
485
|
+
document_type_and_number:
|
486
|
+
label: Typ a číslo dokumentu
|
487
|
+
gender:
|
488
|
+
options:
|
489
|
+
man: Muž
|
490
|
+
non_binary: Nebinární
|
491
|
+
woman: Žena
|
464
492
|
fill_personal_data:
|
465
|
-
continue:
|
493
|
+
continue: Ověřit vaše data
|
466
494
|
help: Chcete-li iniciativu podepsat, vyplňte své osobní údaje do následujících polí.
|
495
|
+
invalid_authorization: Poskytnutá data k provedení akce nejsou kompatibilní s vašimi existujícími autorizacemi nebo musíte vytvořit udělenou autorizaci.
|
496
|
+
invalid_data: Některé osobní údaje poskytnuté k ověření Vaší totožnosti nejsou platné.
|
467
497
|
finish:
|
468
498
|
back_to_initiative: Zpět na iniciativu
|
469
|
-
|
470
|
-
continue: Zkontrolujte kód a pokračujte
|
471
|
-
help: Zkontrolujte SMS přijaté v telefonu
|
499
|
+
title: Podepsali jste iniciativu
|
472
500
|
sms_phone_number:
|
473
|
-
|
474
|
-
|
501
|
+
confirmed_data: Potvrdili jste svá data.
|
502
|
+
continue: Podepsat iniciativu
|
503
|
+
help_enter_your_number: Zadejte své telefonní číslo. Poté obdržíte SMS s ověřovacím kódem.
|
504
|
+
receive_code: Přijmout kód
|
505
|
+
resend_code_html: Neobdrželi jste kód? <a href="%{new_code_path}">Zkuste to znovu</a>
|
506
|
+
your_code_is_correct: Váš kód je správný.
|
507
|
+
your_code_is_incorrect: Kód není správný. Zkontrolujte jej nebo <a href="%{new_code_path}">zkuste znovu</a>.
|
508
|
+
your_confirmation_code: Váš potvrzovací kód
|
475
509
|
initiative_votes:
|
476
510
|
create:
|
511
|
+
already_voted: Váš podpis byl již zaregistrován s vašimi daty.
|
477
512
|
error: Při podpisu iniciativy došlo k chybám.
|
478
513
|
invalid: Údaje poskytnuté k podpisu iniciativy nejsou platné.
|
479
514
|
success_html: Gratulujeme! Iniciativa <strong> %{title}</strong> byla úspěšně podepsána.
|
480
|
-
personal_data:
|
481
|
-
invalid: Osobní údaje nejsou v souladu s údaji poskytnutými k autorizaci.
|
482
515
|
sms_code:
|
483
516
|
invalid: Váš ověřovací kód se neshoduje s naším. Zkontrolujte prosím SMS, kterou jsme vám poslali.
|
484
517
|
sms_phone:
|
@@ -518,13 +551,6 @@ cs:
|
|
518
551
|
initiatives:
|
519
552
|
closed_initiatives_warning: V současné době neexistují žádné otevřené iniciativy, ale zde najdete všechny uzavřené iniciativy uvedené v seznamu.
|
520
553
|
no_initiatives_warning: Žádná iniciativa neodpovídá vašim kritériím vyhledávání.
|
521
|
-
interactions:
|
522
|
-
comments_count:
|
523
|
-
count:
|
524
|
-
one: Komentář
|
525
|
-
few: Komentáře
|
526
|
-
many: Komentáře
|
527
|
-
other: Komentáře
|
528
554
|
orders:
|
529
555
|
label: 'Seřadit iniciativy podle:'
|
530
556
|
most_commented: Nejvíce komentované
|
@@ -532,6 +558,8 @@ cs:
|
|
532
558
|
random: Náhodné
|
533
559
|
recent: Nejnovější
|
534
560
|
recently_published: Nedávno publikované
|
561
|
+
pending_initiatives:
|
562
|
+
title: Návrhy a čekající iniciativy
|
535
563
|
print:
|
536
564
|
address: Adresa
|
537
565
|
author_title: Autor iniciativy
|
@@ -608,11 +636,24 @@ cs:
|
|
608
636
|
show:
|
609
637
|
badge_name:
|
610
638
|
accepted: Dostatek podpisů
|
611
|
-
created:
|
639
|
+
created: Navrženo
|
612
640
|
discarded: Zahozeno
|
613
641
|
open: Otevřeno
|
614
642
|
rejected: Nedostatek podpisů
|
615
643
|
validating: Technické ověření
|
644
|
+
signatures:
|
645
|
+
workflows:
|
646
|
+
dummy_signature_handler:
|
647
|
+
description: Podpis, který přijímá osobní údaje od uživatele, potvrzuje autorizaci a kontroluje SMS kód
|
648
|
+
name: Zpracovatel podpisu
|
649
|
+
dummy_signature_with_personal_data_handler:
|
650
|
+
description: Podpis, který od uživatele přijímá pouze osobní údaje a potvrzuje je
|
651
|
+
name: Zpracovatel podpisu s osobními údaji
|
652
|
+
dummy_signature_with_sms_handler:
|
653
|
+
description: Podpis, který ověřuje pouze telefonní číslo, které vyhledává existující autorizaci a kontroluje SMS kód
|
654
|
+
name: Zpracovatel podpisu pouze s SMS
|
655
|
+
legacy_signature_handler:
|
656
|
+
name: Zastaralý zpracovatel podpisu
|
616
657
|
states:
|
617
658
|
accepted: Přijato
|
618
659
|
expired: Platnost vypršela
|
@@ -635,7 +676,6 @@ cs:
|
|
635
676
|
description: Popis iniciativy
|
636
677
|
first_progress_notification_at: Datum, kdy bylo odesláno první oznámení o pokroku
|
637
678
|
follows_count: Počet uživatelů sledujících tento prostor
|
638
|
-
hashtag: Hashtag Iniciativy, používaný pro Twitter/X
|
639
679
|
offline_votes: Počet podpisů, které byly použity mimo tuto platformu
|
640
680
|
online_votes: Počet podpisů, které tato iniciativa obdržela on-line (přímo prostřednictvím platformy)
|
641
681
|
published_at: Datum, kdy byl tento prostor publikován
|
@@ -659,20 +699,19 @@ cs:
|
|
659
699
|
actions:
|
660
700
|
create: Vytvořit iniciativu
|
661
701
|
title: Akce
|
662
|
-
|
702
|
+
statistics:
|
703
|
+
initiatives_count: Iniciativy
|
704
|
+
initiatives_count_tooltip: Počet zveřejněných občanských iniciativ.
|
663
705
|
layouts:
|
664
706
|
decidim:
|
665
707
|
initiative_creation_header:
|
666
708
|
fill_data: Vytvořit
|
667
|
-
finish:
|
668
|
-
promotal_committee:
|
709
|
+
finish: Technické ověření
|
710
|
+
promotal_committee: Hledat propagátory
|
669
711
|
select_initiative_type: Vybrat
|
670
712
|
initiative_signature_creation_header:
|
671
|
-
|
672
|
-
|
673
|
-
sms_code: Ověření kódu SMS
|
674
|
-
sms_phone_number: Číslo mobilního telefonu
|
675
|
-
title: Podepsat %{initiative_title}
|
713
|
+
help_information_html: Chcete-li podepsat iniciativu <strong>%{initiative_title}</strong> podporovanou %{initiative_author}, musíte poskytnout nějaké informace, díky nimž bude iniciativa podepsána a právně závazná. Žádné informace o vás nebudou zveřejněny.
|
714
|
+
verify_your_identity: Ověřte svou identitu
|
676
715
|
initiatives:
|
677
716
|
no_initiatives_yet:
|
678
717
|
no_initiatives_yet: Zatím žádné iniciativy!
|
data/config/locales/de.yml
CHANGED
@@ -7,9 +7,7 @@ de:
|
|
7
7
|
answer_url: Antwort-URL
|
8
8
|
area_id: Gebiet
|
9
9
|
decidim_scope_id: Thema
|
10
|
-
decidim_user_group_id: Autor
|
11
10
|
description: Beschreibung
|
12
|
-
hashtag: Hashtag
|
13
11
|
offline_votes: Face-to-Face-Unterstützung
|
14
12
|
offline_votes_for_scope: Persönliche Unterschriften für %{scope_name}
|
15
13
|
scope_id: Umfang
|
@@ -36,7 +34,7 @@ de:
|
|
36
34
|
comments_enabled: Kommentare aktivieren
|
37
35
|
custom_signature_end_date_enabled: Die Auswahl des Enddatums der Unterschriftensammlung für Autoren freigeben
|
38
36
|
description: Beschreibung
|
39
|
-
document_number_authorization_handler:
|
37
|
+
document_number_authorization_handler: Unterzeichnungsablauf
|
40
38
|
extra_fields_legal_information: Rechtliche Informationen zur Erhebung personenbezogener Daten
|
41
39
|
minimum_committee_members: Minimum der Ausschussmitglieder
|
42
40
|
online_signature_enabled: Online-Signatur aktiviert
|
@@ -80,6 +78,7 @@ de:
|
|
80
78
|
decidim:
|
81
79
|
admin:
|
82
80
|
actions:
|
81
|
+
cannot_answer: Initiative kann nicht beantwortet werden
|
83
82
|
new_initiative_type: Neuer Initiativentyp
|
84
83
|
new_initiative_type_scope: Neuer Initiativentyp
|
85
84
|
filters:
|
@@ -90,7 +89,7 @@ de:
|
|
90
89
|
label: Status
|
91
90
|
values:
|
92
91
|
accepted: Ausreichend Unterschriften
|
93
|
-
created:
|
92
|
+
created: Entworfen
|
94
93
|
discarded: Verworfen
|
95
94
|
open: Offen
|
96
95
|
rejected: Zu wenige Unterschriften
|
@@ -98,7 +97,7 @@ de:
|
|
98
97
|
type_id_eq:
|
99
98
|
label: Typ
|
100
99
|
search_placeholder:
|
101
|
-
title_or_description_or_id_string_or_author_name_or_author_nickname_cont: Suche in %{collection} nach Titel, Beschreibung, ID oder Autoren
|
100
|
+
title_or_description_or_id_string_or_author_name_or_author_nickname_cont: Suche in %{collection} nach Titel, Beschreibung, ID oder Autoren
|
102
101
|
initiatives_settings:
|
103
102
|
update:
|
104
103
|
error: Beim Aktualisieren der Initiativeneinstellungen ist ein Fehler aufgetreten.
|
@@ -125,8 +124,12 @@ de:
|
|
125
124
|
state: Status
|
126
125
|
supports_count: Unterschriften
|
127
126
|
title: Initiativen
|
127
|
+
initiatives_committee_member:
|
128
|
+
fields:
|
129
|
+
actions: Aktionen
|
128
130
|
initiatives_type_scope:
|
129
131
|
fields:
|
132
|
+
actions: Aktionen
|
130
133
|
scope: Umfang
|
131
134
|
supports_required: Unterstützungen erforderlich
|
132
135
|
name: Typ der Initiative
|
@@ -266,6 +269,7 @@ de:
|
|
266
269
|
success: Die Initiative wurde an die technische Validierung gesendet.
|
267
270
|
update: Aktualisieren
|
268
271
|
form:
|
272
|
+
attachments_title: Anhänge
|
269
273
|
settings: Einstellungen
|
270
274
|
title: Allgemeine Information
|
271
275
|
index:
|
@@ -320,10 +324,10 @@ de:
|
|
320
324
|
edit:
|
321
325
|
update: Aktualisieren
|
322
326
|
form:
|
323
|
-
authorizations: Autorisierungseinstellungen
|
324
327
|
child_scope_threshold_enabled_help_html: 'Diese Einstellung unterstützt keine Offline-Abstimmungen. Es aktiviert Unter-Themenbereiche und arbeitet mit einem Autorisierungs-Handler zusammen, der dem Teilnehmenden einen Themenbereich zuordnet. Stellen Sie sicher, dass Sie diese Autorisierung unten in den Autorisierungseinstellungen auswählen. Hierfür müssen die Themenbereiche auf hierarchische Weise konfiguriert werden: 1 Überthema - N Unterthemen. Weitere Informationen zur Konfiguration finden Sie auf der <a href="https://docs.decidim.org/en/admin/spaces/initiatives/" target="_blank">Dokumentationsseite für Admins von Initiativen.</a>.'
|
325
328
|
only_global_scope_enabled_help_html: Aktivieren Sie diese Einstellung, wenn Sie "Unterthemen-Signaturen" aktiviert haben und den globalen Themenbereich als Ihren Elternbereich konfiguriert haben. Dadurch wird die Auswahl des Initialtyps im Assistenten zur Erstellung der Initiative übersprungen. Weitere Informationen darüber, wie diese Konfiguration funktioniert, finden Sie <a href="https://docs.decidim.org/en/admin/spaces/initiatives/" target="_blank">hier</a>.
|
326
329
|
options: Optionen
|
330
|
+
signature_workflow_settings: Einstellungen zum Unterzeichnungsablauf
|
327
331
|
initiative_type_scopes:
|
328
332
|
title: Bereiche für den Typ der Initiative
|
329
333
|
new:
|
@@ -346,7 +350,7 @@ de:
|
|
346
350
|
update: "%{user_name} hat den Initiativentyp %{resource_name} aktualisiert"
|
347
351
|
admin_states:
|
348
352
|
accepted: Ausreichend Unterschriften
|
349
|
-
created:
|
353
|
+
created: Entworfen
|
350
354
|
discarded: Verworfen
|
351
355
|
open: Offen
|
352
356
|
rejected: Ungenügend Unterschriften
|
@@ -375,40 +379,55 @@ de:
|
|
375
379
|
highlighted_initiatives:
|
376
380
|
name: Hervorgehobene Initiativen
|
377
381
|
create_initiative:
|
382
|
+
committee_member:
|
383
|
+
approve: Genehmigen
|
384
|
+
confirm_approve: Sind Sie sicher, dass Sie dieses Mitglied genehmigen möchten?
|
385
|
+
confirm_revoke: Sind Sie sicher, dass Sie dieses Mitglied widerrufen möchten?
|
386
|
+
revoke: Widerrufen
|
378
387
|
fill_data:
|
379
|
-
|
388
|
+
confirm_discard: Sind Sie sicher, dass Sie diese Initiative verwerfen möchten?
|
380
389
|
continue: Fortsetzen
|
390
|
+
discard: Initiative verwerfen
|
381
391
|
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>"
|
382
|
-
more_information:
|
392
|
+
more_information: Weitere Informationen
|
383
393
|
select_area: Wählen Sie einen Bereich aus
|
384
394
|
select_scope: Wählen Sie einen Bereich aus
|
385
395
|
finish:
|
386
396
|
back: Zurück
|
387
|
-
|
388
|
-
|
389
|
-
|
390
|
-
|
391
|
-
go_to_my_initiatives: Geh zu meinen Initiativen
|
392
|
-
more_information: "(Weitere Informationen)"
|
393
|
-
send_my_initiative: Meine Initiative zur technischen Validierung senden
|
394
|
-
finish_help:
|
395
|
-
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.
|
397
|
+
callout_text_created: Herzlichen Glückwunsch! Ihre Initiative wurde erfolgreich erstellt.
|
398
|
+
callout_text_validating: Ihre Initiative wurde erfolgreich an die technische Validierung gesendet.
|
399
|
+
go_to_initiatives: Zu Initiativen gehen
|
400
|
+
publish_helper_text_html: Denken Sie daran, dass für die Veröffentlichung Ihrer Initiative eine technische Validierung durch einen Admin erforderlich ist.
|
396
401
|
previous_form:
|
397
402
|
back: Zurück
|
398
|
-
continue: Fortsetzen
|
399
403
|
promotal_committee:
|
400
|
-
individual_help_text:
|
401
|
-
|
404
|
+
individual_help_text: Ihre Initiative wurde erstellt und als Entwurf gespeichert. Jetzt müssen Sie Personen dem zum Unterstützungskommittee hinzufügen.
|
405
|
+
invite_link_title: Link, um Leute einzuladen
|
406
|
+
promoters_committee_help_2: Denken Sie daran, dass Sie für die Veröffentlichung Ihrer Initiative die erforderlichen Informationen ausfüllen müssen und diese an die technische Validierung senden müssen, damit ein Admin sie prüfen kann.
|
407
|
+
promoters_committee_help_html: Bevor Sie Ihre Initiative zur technischen Validierung senden, müssen Sie %{committee_members_left} weitere Mitglieder dem Unterstützungskommittee hinzufügen. Sie haben derzeit <strong>%{committee_members_count}/%{committee_size}</strong>.
|
408
|
+
promoters_committee_title: Unterstützungskommittee
|
409
|
+
return_to_initiatives_button:
|
410
|
+
return_initiatives_html: Jetzt überspringen und <a href="%{initiatives_path}">zu den Initiativen zurückkehren</a>
|
402
411
|
select_initiative_type:
|
403
412
|
back: Zurück
|
404
413
|
choose_html: Ich möchte eine <strong>%{title}</strong> erstellen
|
414
|
+
consult_existing_initiatives: Bestehende Initiativen konsultieren
|
415
|
+
continue: Fortsetzen
|
405
416
|
more_information: (Weitere Informationen)
|
406
417
|
new: Neue Initiative erstellen
|
407
418
|
select: Ich möchte diese Initiative fördern
|
408
|
-
|
419
|
+
select_initiative_type_help_html: "<p>Initiativen sind Instrumente, mit dem die Personen eingreifen können, damit die Organisation Aktionen im Namen des Allgemeininteresses durchführen kann. Welche Initiative möchten Sie starten?</p>"
|
420
|
+
show_less: Weniger anzeigen
|
421
|
+
show_more: Mehr anzeigen
|
422
|
+
subtitle: Welche Initiative wollen Sie bewerben?
|
409
423
|
verification_required: Bestätigen Sie Ihr Konto, um die Initiative zu unterstützen
|
424
|
+
send_to_technical_validation_button:
|
425
|
+
button: Zur technischen Prüfung senden
|
426
|
+
confirm: Sie werden die Initiative an einen Admin senden, welcher sie zu überprüft und veröffentlicht. Sobald die Initiative veröffentlicht ist, können Sie sie nicht bearbeiten. Sind Sie sicher?
|
410
427
|
share_committee_link:
|
411
|
-
invite_to_committee_help: Link, um Leute einzuladen, die Teil des
|
428
|
+
invite_to_committee_help: Link, um Leute einzuladen, die Teil des Unterstützungskommittees sein werden.
|
429
|
+
invite_to_committee_help_2: Diese Art der Bürgerinitiative erfordert ein Unterstützungskommittee, welches 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.
|
430
|
+
more_information: Weitere Informationen
|
412
431
|
edit:
|
413
432
|
accept: Initiative akzeptieren
|
414
433
|
back: Zurück
|
@@ -430,11 +449,6 @@ de:
|
|
430
449
|
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{author_nickname} folgen. Falls Sie keine solchen Benachrichtigungen mehr erhalten möchten, besuchen Sie den obigen Link.
|
431
450
|
email_subject: Neue Initiative von %{author_nickname}
|
432
451
|
notification_title: Die Initiative <a href="%{resource_path}">%{resource_title}</a> wurde von <a href="%{author_path}">%{author_name} %{author_nickname}</a> erstellt.
|
433
|
-
endorse_initiative_event:
|
434
|
-
email_intro: "%{author_name} %{author_nickname}, dem Sie folgen, hat die folgende Initiative unterstützt, vielleicht möchten Sie mitreden:"
|
435
|
-
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{author_nickname} folgen. Falls Sie keine solchen Benachrichtigungen mehr erhalten möchten, besuchen Sie den obigen Link.
|
436
|
-
email_subject: Initiative wurde von %{author_nickname} unterstützt
|
437
|
-
notification_title: Die Initiative <a href="%{resource_path}">%{resource_title}</a> wurde von <a href="%{author_path}">%{author_name} %{author_nickname}</a> unterstützt.
|
438
452
|
revoke_membership_request:
|
439
453
|
email_intro: "%{author_nickname} hat Ihre Anfrage fürs Promoter-Komittee der Initiative %{resource_title} abgelehnt."
|
440
454
|
email_outro: 'Sie haben diese Benachrichtigung erhalten, weil Sie sich bei dieser Initiative beworben haben: %{resource_title}.'
|
@@ -455,24 +469,46 @@ de:
|
|
455
469
|
index:
|
456
470
|
uninitialized: Initiativen wurden noch nicht von einem Admin konfiguriert.
|
457
471
|
initiative_signatures:
|
472
|
+
dummy_signature:
|
473
|
+
form:
|
474
|
+
fields:
|
475
|
+
date_of_birth:
|
476
|
+
label: Geburtsdatum
|
477
|
+
document_number:
|
478
|
+
placeholder: Dokumentnummer
|
479
|
+
document_type:
|
480
|
+
prompt: Dokumenttyp
|
481
|
+
document_type_and_number:
|
482
|
+
help_text: Die Dokumentennummer entspricht dem Dokument, welches bei der Schriftenbeglaubigung verwendet wird.
|
483
|
+
label: Dokumenttyp und -nummer
|
484
|
+
gender:
|
485
|
+
options:
|
486
|
+
man: Mann
|
487
|
+
non_binary: Nicht-binär
|
488
|
+
woman: Frau
|
458
489
|
fill_personal_data:
|
459
|
-
continue:
|
490
|
+
continue: Daten überprüfen
|
460
491
|
help: Bitte füllen Sie die folgenden Felder mit Ihren persönlichen Daten aus, um die Initiative zu unterzeichnen.
|
492
|
+
invalid_authorization: Die Daten, die zum Fortfahren der Aktion zur Verfügung gestellt werden, sind nicht kompatibel mit Ihren bestehenden Genehmigungen oder Sie müssen eine erteilte Genehmigung erstellen.
|
493
|
+
invalid_data: Einige der zur Überprüfung Ihrer Identität zur Verfügung gestellten persönlichen Daten sind nicht gültig.
|
461
494
|
finish:
|
462
495
|
back_to_initiative: Zurück zur Initiative
|
463
|
-
|
464
|
-
continue: Code überprüfen und fortfahren
|
465
|
-
help: Überprüfen Sie die an Ihrem Telefon empfangene SMS
|
496
|
+
title: Sie haben die Initiative unterzeichnet
|
466
497
|
sms_phone_number:
|
467
|
-
|
468
|
-
|
498
|
+
confirmed_data: Sie haben Ihre Daten bestätigt.
|
499
|
+
continue: Initiative unterzeichnen
|
500
|
+
help_enter_your_number: Bitte geben Sie Ihre Telefonnummer ein. Sie erhalten dann eine SMS mit einem Bestätigungscode.
|
501
|
+
receive_code: Code erhalten
|
502
|
+
resend_code_html: Keinen Code erhalten? <a href="%{new_code_path}">Erneut versuchen</a>
|
503
|
+
your_code_is_correct: Der Code ist korrekt.
|
504
|
+
your_code_is_incorrect: Der Code ist nicht korrekt. Vitte überprüfen oder <a href="%{new_code_path}"> erneut versuchen</a>.
|
505
|
+
your_confirmation_code: Ihr Bestätigungscode
|
469
506
|
initiative_votes:
|
470
507
|
create:
|
508
|
+
already_voted: Ihre Unterschrift wurde bereits mit Ihren Daten registriert.
|
471
509
|
error: Beim Signieren der Initiative sind Fehler aufgetreten.
|
472
510
|
invalid: Ihre zur Unterzeichnung der Initiative bereitgestellten Daten sind nicht gültig.
|
473
511
|
success_html: Herzliche Glückwünsche! Die Initiative <strong> %{title}</strong> wurde erfolgreich unterzeichnet.
|
474
|
-
personal_data:
|
475
|
-
invalid: Persönliche Daten stimmen nicht mit den zur Autorisierung angegebenen Daten überein.
|
476
512
|
sms_code:
|
477
513
|
invalid: Ihr Bestätigungscode stimmt nicht mit unserem überein. Bitte überprüfen Sie die SMS, die wir Ihnen gesendet haben.
|
478
514
|
sms_phone:
|
@@ -508,11 +544,6 @@ de:
|
|
508
544
|
initiatives:
|
509
545
|
closed_initiatives_warning: Derzeit gibt es keine offenen Initiativen, aber hier finden Sie alle abgeschlossenen Initiativen aufgelistet.
|
510
546
|
no_initiatives_warning: Keine Initiativen entsprechen Ihren Suchkriterien.
|
511
|
-
interactions:
|
512
|
-
comments_count:
|
513
|
-
count:
|
514
|
-
one: Kommentar
|
515
|
-
other: Bemerkungen
|
516
547
|
orders:
|
517
548
|
label: 'Initiativen sortieren nach:'
|
518
549
|
most_commented: Am meisten kommentiert
|
@@ -520,6 +551,8 @@ de:
|
|
520
551
|
random: Zufällig
|
521
552
|
recent: Neueste zuerst
|
522
553
|
recently_published: Zuletzt veröffentlicht
|
554
|
+
pending_initiatives:
|
555
|
+
title: Entwürfe & ausstehende Initiativen
|
523
556
|
print:
|
524
557
|
address: Adresse
|
525
558
|
author_title: Autor der Initiative
|
@@ -592,11 +625,28 @@ de:
|
|
592
625
|
show:
|
593
626
|
badge_name:
|
594
627
|
accepted: Ausreichend Unterschriften
|
595
|
-
created:
|
628
|
+
created: Entworfen
|
596
629
|
discarded: Verworfen
|
597
630
|
open: Offen
|
598
631
|
rejected: Ungenügend Unterschriften
|
599
632
|
validating: Technische Validierung
|
633
|
+
signatures:
|
634
|
+
workflows:
|
635
|
+
dummy_signature_handler:
|
636
|
+
description: Unterzeichnung, welche die persönlichen Daten des Benutzers aufnimmt, die Autorisierung und den SMS-Code überprüft
|
637
|
+
name: Muster-Unterzeichnungsverfahren
|
638
|
+
dummy_signature_with_personal_data_handler:
|
639
|
+
description: Unterzeichnung, die nur persönliche Informationen der Nutzenden annimmt und diese validiert
|
640
|
+
name: Muster-Unterzeichnungsverfahren mit persönlichen Daten
|
641
|
+
dummy_signature_with_sms_handler:
|
642
|
+
description: Unterzeichnung, die nur die Telefonnummer auf der Suche nach einer zugehörigen Autorisierung und den SMS-Code überprüft
|
643
|
+
name: Muster-Unterzeichnungsverfahren nur mit SMS
|
644
|
+
ephemeral_dummy_signature_handler:
|
645
|
+
description: Ephemere Unterzeichnung, die persönliche Informationen der Nutzenden annimmt, die Autorisierungen und den SMS-Code überprüft
|
646
|
+
name: Ephemeres Muster-Unterzeichnungsverfahren
|
647
|
+
legacy_signature_handler:
|
648
|
+
description: Veraltetes Muster-Unterzeichnungsverfahren basierend auf der alten Unterzeichnungsfunktion einschließlich der Erfassung persönlicher Daten, SMS-Schritt und Validierung der Autorisierung mit dummy_authorization_handler. Ändere jeden Parameter, um sich an die verwendete Konfiguration anzupassen
|
649
|
+
name: Veraltetes Muster-Unterzeichnungsverfahren
|
600
650
|
states:
|
601
651
|
accepted: Akzeptiert
|
602
652
|
expired: Abgelaufen
|
@@ -619,7 +669,6 @@ de:
|
|
619
669
|
description: Die Beschreibung der Initiative
|
620
670
|
first_progress_notification_at: Das Datum, an dem die erste Fortschrittsbenachrichtigung gesendet wurde
|
621
671
|
follows_count: Die Anzahl Nutzende, die diesem Raum folgen
|
622
|
-
hashtag: Der Hashtag der Initiative, verwendet für Twitter/X
|
623
672
|
offline_votes: Die Anzahl der Unterschriften, die diese Initiative von ausserhalb dieser Plattform erhalten hat
|
624
673
|
online_votes: Die Anzahl der Unterschriften, die diese Initiative online erhalten hat (direkt über die Plattform)
|
625
674
|
published_at: Veröffentlichungsdatum des Bereichs
|
@@ -638,25 +687,24 @@ de:
|
|
638
687
|
resources:
|
639
688
|
initiative:
|
640
689
|
actions:
|
641
|
-
comment:
|
690
|
+
comment: Kommentieren
|
642
691
|
initiatives_type:
|
643
692
|
actions:
|
644
693
|
create: Initiative erstellen
|
645
694
|
title: Aktionen
|
646
|
-
|
695
|
+
statistics:
|
696
|
+
initiatives_count: Initiativen
|
697
|
+
initiatives_count_tooltip: Die Anzahl der veröffentlichten Volksinitiativen.
|
647
698
|
layouts:
|
648
699
|
decidim:
|
649
700
|
initiative_creation_header:
|
650
701
|
fill_data: Erstellen
|
651
|
-
finish:
|
652
|
-
promotal_committee:
|
702
|
+
finish: Technische Prüfung
|
703
|
+
promotal_committee: Suche nach Unterstützenden
|
653
704
|
select_initiative_type: Wählen
|
654
705
|
initiative_signature_creation_header:
|
655
|
-
|
656
|
-
|
657
|
-
sms_code: SMS-Code-Bestätigung
|
658
|
-
sms_phone_number: Handynummer
|
659
|
-
title: Zeichen %{initiative_title}
|
706
|
+
help_information_html: Um die Initiative <strong>%{initiative_title}</strong> zu unterzeichnen, die von %{initiative_author} gefördert wurde, müssen Sie einige Informationen angeben, die die Unterzeichnung der Initiative rechtsverbindlich machen. Keine Informationen über Sie werden öffentlich gemacht.
|
707
|
+
verify_your_identity: Bestätigen Sie Ihre Identität
|
660
708
|
initiatives:
|
661
709
|
no_initiatives_yet:
|
662
710
|
no_initiatives_yet: Keine Initiativen bisher!
|