decidim-participatory_processes 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/app/cells/decidim/participatory_process_groups/content_blocks/main_data/content.erb +1 -1
- data/app/cells/decidim/participatory_process_groups/content_blocks/main_data_cell.rb +1 -15
- data/app/cells/decidim/participatory_processes/content_blocks/democratic_quality_stats/show.erb +74 -0
- data/app/cells/decidim/participatory_processes/content_blocks/democratic_quality_stats_cell.rb +29 -0
- data/app/cells/decidim/participatory_processes/content_blocks/democratic_quality_stats_settings_form/citizen_influence.erb +32 -0
- data/app/cells/decidim/participatory_processes/content_blocks/democratic_quality_stats_settings_form/inclusiveness.erb +69 -0
- data/app/cells/decidim/participatory_processes/content_blocks/democratic_quality_stats_settings_form/informativeness.erb +29 -0
- data/app/cells/decidim/participatory_processes/content_blocks/democratic_quality_stats_settings_form/show.erb +10 -0
- data/app/cells/decidim/participatory_processes/content_blocks/democratic_quality_stats_settings_form_cell.rb +81 -0
- data/app/cells/decidim/participatory_processes/content_blocks/highlighted_processes_settings_form/show.erb +3 -1
- data/app/cells/decidim/participatory_processes/content_blocks/main_data_cell.rb +10 -2
- data/app/cells/decidim/participatory_processes/indicator/show.erb +11 -0
- data/app/cells/decidim/participatory_processes/indicator_cell.rb +25 -0
- data/app/cells/decidim/participatory_processes/process_dropdown_metadata/metadata.erb +0 -7
- data/app/cells/decidim/participatory_processes/process_filters_cell.rb +2 -0
- data/app/cells/decidim/participatory_processes/process_step/show.erb +1 -1
- data/app/commands/decidim/participatory_processes/admin/create_participatory_process.rb +1 -1
- data/app/commands/decidim/participatory_processes/admin/create_participatory_process_group.rb +1 -1
- data/app/commands/decidim/participatory_processes/admin/{copy_participatory_process.rb → duplicate_participatory_process.rb} +25 -26
- data/app/commands/decidim/participatory_processes/admin/import_participatory_process.rb +1 -1
- data/app/commands/decidim/participatory_processes/admin/update_participatory_process.rb +16 -4
- data/app/commands/decidim/participatory_processes/admin/update_participatory_process_group.rb +1 -1
- data/app/controllers/decidim/participatory_processes/admin/{participatory_process_copies_controller.rb → participatory_process_duplicates_controller.rb} +7 -7
- data/app/controllers/decidim/participatory_processes/admin/participatory_process_group_landing_page_controller.rb +4 -0
- data/app/controllers/decidim/participatory_processes/admin/participatory_process_groups_controller.rb +3 -3
- data/app/controllers/decidim/participatory_processes/admin/participatory_process_imports_controller.rb +1 -1
- data/app/controllers/decidim/participatory_processes/admin/participatory_process_landing_page_controller.rb +4 -0
- data/app/controllers/decidim/participatory_processes/admin/participatory_process_steps_controller.rb +2 -2
- data/app/controllers/decidim/participatory_processes/admin/participatory_processes_controller.rb +3 -3
- data/app/controllers/decidim/participatory_processes/participatory_processes_controller.rb +0 -9
- data/app/forms/decidim/participatory_processes/admin/{participatory_process_copy_form.rb → participatory_process_duplicate_form.rb} +5 -5
- data/app/forms/decidim/participatory_processes/admin/participatory_process_form.rb +2 -1
- data/app/forms/decidim/participatory_processes/admin/participatory_process_group_form.rb +0 -1
- data/app/helpers/decidim/participatory_processes/application_helper.rb +14 -0
- data/app/models/decidim/participatory_process.rb +4 -4
- data/app/models/decidim/participatory_process_group.rb +9 -0
- data/app/permissions/decidim/participatory_processes/permissions.rb +4 -4
- data/app/presenters/decidim/participatory_processes/admin_log/participatory_process_group_presenter.rb +0 -1
- data/app/presenters/decidim/participatory_processes/admin_log/participatory_process_presenter.rb +0 -1
- data/app/presenters/decidim/participatory_processes/participatory_process_democratic_quality_stats_presenter.rb +312 -0
- data/app/presenters/decidim/participatory_processes/participatory_process_group_stats_presenter.rb +1 -11
- data/app/presenters/decidim/participatory_processes/participatory_process_presenter.rb +35 -1
- data/app/presenters/decidim/participatory_processes/participatory_process_stats_presenter.rb +1 -3
- data/app/queries/decidim/participatory_processes/participatory_processes_stats_followers_count.rb +31 -0
- data/app/queries/decidim/participatory_processes/participatory_processes_stats_participants_count.rb +27 -0
- data/app/serializers/decidim/participatory_processes/participatory_process_importer.rb +0 -1
- data/app/views/decidim/participatory_processes/admin/{participatory_process_copies → participatory_process_duplicates}/_form.html.erb +5 -5
- data/app/views/decidim/participatory_processes/admin/participatory_process_duplicates/new.html.erb +19 -0
- data/app/views/decidim/participatory_processes/admin/participatory_process_groups/_form.html.erb +3 -7
- data/app/views/decidim/participatory_processes/admin/participatory_process_groups/index.html.erb +31 -15
- data/app/views/decidim/participatory_processes/admin/participatory_process_steps/_form.html.erb +1 -1
- data/app/views/decidim/participatory_processes/admin/participatory_process_steps/index.html.erb +39 -21
- data/app/views/decidim/participatory_processes/admin/participatory_process_user_roles/index.html.erb +42 -24
- data/app/views/decidim/participatory_processes/admin/participatory_processes/_form.html.erb +10 -14
- data/app/views/decidim/participatory_processes/admin/participatory_processes/_process_row.html.erb +125 -53
- data/app/views/decidim/participatory_processes/admin/participatory_processes/edit.html.erb +0 -8
- data/app/views/decidim/participatory_processes/admin/participatory_processes/index.html.erb +2 -2
- data/app/views/decidim/participatory_processes/admin/participatory_processes/manage_trash.html.erb +2 -1
- data/app/views/layouts/decidim/admin/_manage_processes.html.erb +1 -1
- data/app/views/layouts/decidim/admin/participatory_process_group.html.erb +1 -1
- data/config/assets.rb +2 -2
- data/config/locales/ar.yml +0 -13
- data/config/locales/bg.yml +0 -24
- data/config/locales/bs-BA.yml +0 -4
- data/config/locales/ca-IT.yml +319 -25
- data/config/locales/ca.yml +319 -25
- data/config/locales/cs.yml +93 -26
- data/config/locales/de.yml +123 -25
- data/config/locales/el.yml +0 -21
- data/config/locales/en.yml +303 -24
- data/config/locales/es-MX.yml +319 -25
- data/config/locales/es-PY.yml +319 -25
- data/config/locales/es.yml +319 -25
- data/config/locales/eu.yml +304 -25
- data/config/locales/fi-plain.yml +303 -24
- data/config/locales/fi.yml +303 -24
- data/config/locales/fr-CA.yml +86 -24
- data/config/locales/fr.yml +86 -24
- data/config/locales/ga-IE.yml +0 -7
- data/config/locales/gl.yml +0 -19
- data/config/locales/hu.yml +0 -21
- data/config/locales/id-ID.yml +0 -13
- data/config/locales/is-IS.yml +0 -11
- data/config/locales/it.yml +0 -20
- data/config/locales/ja.yml +123 -25
- data/config/locales/lb.yml +0 -20
- data/config/locales/lt.yml +0 -21
- data/config/locales/lv.yml +0 -14
- data/config/locales/nl.yml +0 -20
- data/config/locales/no.yml +0 -21
- data/config/locales/pl.yml +16 -24
- data/config/locales/pt-BR.yml +0 -23
- data/config/locales/pt.yml +0 -20
- data/config/locales/ro-RO.yml +2 -21
- data/config/locales/ru.yml +0 -11
- data/config/locales/sk.yml +0 -14
- data/config/locales/sr-CS.yml +0 -4
- data/config/locales/sv.yml +86 -24
- data/config/locales/tr-TR.yml +0 -20
- data/config/locales/uk.yml +0 -11
- data/config/locales/zh-CN.yml +0 -17
- data/config/locales/zh-TW.yml +0 -21
- data/db/migrate/20250403110052_add_democratic_quality_static_page.rb +34 -0
- data/db/migrate/20250605114136_remove_hashtag_from_participatory_processes.rb +7 -0
- data/db/migrate/20250605114415_remove_hashtag_from_participatory_processes_groups.rb +7 -0
- data/decidim-participatory_processes.gemspec +3 -0
- data/lib/decidim/api/participatory_process_group_type.rb +9 -0
- data/lib/decidim/api/participatory_process_input_filter.rb +0 -1
- data/lib/decidim/api/participatory_process_step_type.rb +2 -0
- data/lib/decidim/api/participatory_process_type.rb +17 -11
- data/lib/decidim/participatory_processes/admin_engine.rb +1 -1
- data/lib/decidim/participatory_processes/content_blocks/registry_manager.rb +25 -5
- data/lib/decidim/participatory_processes/engine.rb +22 -25
- data/lib/decidim/participatory_processes/participatory_space.rb +1 -4
- data/lib/decidim/participatory_processes/seeds.rb +3 -5
- data/lib/decidim/participatory_processes/test/factories.rb +2 -3
- data/lib/decidim/participatory_processes/version.rb +1 -1
- metadata +72 -22
- data/app/cells/decidim/participatory_processes/content_blocks/metrics_cell.rb +0 -25
- data/app/presenters/decidim/participatory_processes/participatory_process_metric_charts_presenter.rb +0 -21
- data/app/queries/decidim/participatory_processes/metrics/participatory_process_followers_metric_measure.rb +0 -31
- data/app/queries/decidim/participatory_processes/metrics/participatory_processes_metric_manage.rb +0 -27
- data/app/queries/decidim/participatory_processes/stats_followers_count.rb +0 -60
- data/app/queries/decidim/participatory_processes/stats_participants_count.rb +0 -136
- data/app/views/decidim/participatory_processes/admin/participatory_process_copies/new.html.erb +0 -19
- data/app/views/decidim/participatory_processes/participatory_processes/all_metrics.html.erb +0 -25
data/config/locales/cs.yml
CHANGED
@@ -5,16 +5,15 @@ cs:
|
|
5
5
|
participatory_process:
|
6
6
|
announcement: Oznámení
|
7
7
|
area_id: Oblast
|
8
|
-
copy_categories: Kopírovat kategorie
|
9
|
-
copy_components: Kopírování komponent
|
10
|
-
copy_steps: Kopírování kroků
|
11
8
|
decidim_area_id: Oblast
|
12
9
|
description: Popis
|
13
10
|
developer_group: Skupina promotérů
|
14
11
|
document: Dokument
|
15
12
|
domain: Doména
|
13
|
+
duplicate_categories: Duplikovat kategorie
|
14
|
+
duplicate_components: Duplikovat komponenty
|
15
|
+
duplicate_steps: Duplikovat kroky
|
16
16
|
end_date: Datum ukončení
|
17
|
-
hashtag: Hashtag
|
18
17
|
hero_image: Domácí obrázek
|
19
18
|
import_attachments: Importovat přílohy
|
20
19
|
import_categories: Importovat kategorie
|
@@ -40,7 +39,6 @@ cs:
|
|
40
39
|
description: Popis
|
41
40
|
developer_group: Skupina propagátorů
|
42
41
|
group_url: Webová stránka
|
43
|
-
hashtag: Hashtag
|
44
42
|
hero_image: Obrázek
|
45
43
|
local_area: Oblast působnosti organizace
|
46
44
|
meta_scope: Metadata oblasti působnosti
|
@@ -91,15 +89,12 @@ cs:
|
|
91
89
|
admin:
|
92
90
|
actions:
|
93
91
|
activate: Aktivovat
|
94
|
-
configure: Konfigurovat
|
95
92
|
confirm_delete_process: Opravdu chcete odstranit tento proces? Pokud změníte názor, můžete jej obnovit později.
|
96
93
|
confirm_destroy: Potvrďte smazání
|
97
94
|
destroy: Odstranit
|
98
95
|
duplicate: Duplikát
|
99
96
|
edit: Upravit
|
100
97
|
import_process: Importovat
|
101
|
-
menu_hidden: Skrýt
|
102
|
-
moderate: Moderovat
|
103
98
|
new_process: Nový proces
|
104
99
|
new_process_group: Nová skupina procesů
|
105
100
|
new_process_step: Nový krok
|
@@ -117,7 +112,7 @@ cs:
|
|
117
112
|
participatory_process_groups: Skupiny procesů
|
118
113
|
participatory_process_groups_submenu:
|
119
114
|
info: Info
|
120
|
-
landing_page:
|
115
|
+
landing_page: Rozložení vstupní strany
|
121
116
|
participatory_processes: Procesy
|
122
117
|
participatory_processes_submenu:
|
123
118
|
attachment_collections: Složky
|
@@ -125,7 +120,7 @@ cs:
|
|
125
120
|
attachments: Přílohy
|
126
121
|
components: Komponenty
|
127
122
|
info: O tomto procesu
|
128
|
-
landing_page:
|
123
|
+
landing_page: Rozložení vstupní strany
|
129
124
|
moderations: Moderování
|
130
125
|
private_users: Členové
|
131
126
|
process_admins: Administrátoři procesu
|
@@ -141,16 +136,19 @@ cs:
|
|
141
136
|
name: Participační proces
|
142
137
|
participatory_process_group:
|
143
138
|
fields:
|
139
|
+
actions: Akce
|
144
140
|
title: Název
|
145
141
|
name: Skupina procesů
|
146
142
|
participatory_process_step:
|
147
143
|
fields:
|
144
|
+
actions: Akce
|
148
145
|
end_date: Datum ukončení
|
149
146
|
start_date: Datum zahájení
|
150
147
|
title: Titul
|
151
148
|
name: Participační krok procesu
|
152
149
|
participatory_process_user_role:
|
153
150
|
fields:
|
151
|
+
actions: Akce
|
154
152
|
email: E-mailem
|
155
153
|
name: Název
|
156
154
|
role: Role
|
@@ -158,16 +156,16 @@ cs:
|
|
158
156
|
roles:
|
159
157
|
admin: Správce
|
160
158
|
collaborator: Spolupracovník
|
159
|
+
evaluator: Hodnotitel
|
161
160
|
moderator: Moderátor
|
162
|
-
valuator: Hodnotitel
|
163
161
|
user:
|
164
162
|
fields:
|
165
163
|
invitation_accepted_at: Pozvánka byla přijata na
|
166
164
|
invitation_sent_at: Pozvánka odeslána na
|
167
165
|
published: Publikováno
|
168
|
-
|
166
|
+
participatory_process_duplicates:
|
169
167
|
new:
|
170
|
-
|
168
|
+
duplicate: Duplikovat
|
171
169
|
select: Vyberte, která data chcete duplikovat
|
172
170
|
title: Duplikovat participativní proces
|
173
171
|
participatory_process_groups:
|
@@ -268,7 +266,7 @@ cs:
|
|
268
266
|
update:
|
269
267
|
error: Při aktualizaci tohoto participačního procesu došlo k chybě.
|
270
268
|
success: Participační proces byl úspěšně aktualizován.
|
271
|
-
|
269
|
+
participatory_processes_duplicates:
|
272
270
|
create:
|
273
271
|
error: Při duplikaci tohoto participativního procesu došlo k problému.
|
274
272
|
success: Participativní proces byl úspěšně duplikován.
|
@@ -350,11 +348,6 @@ cs:
|
|
350
348
|
not_found: 'Typ procesu nebyl v databázi nalezen (ID: %{id}).'
|
351
349
|
menu:
|
352
350
|
processes: Procesy
|
353
|
-
metrics:
|
354
|
-
participatory_processes:
|
355
|
-
description: Počet participativních procesů v této organizaci
|
356
|
-
object: participativní procesy
|
357
|
-
title: Participativní procesy
|
358
351
|
open_data:
|
359
352
|
help:
|
360
353
|
participatory_processes:
|
@@ -365,7 +358,6 @@ cs:
|
|
365
358
|
developer_group: Skupina tvůrců procesu. Jedná se o organizaci, která proces prosazuje.
|
366
359
|
end_date: Datum ukončení procesu
|
367
360
|
follows_count: Počet uživatelů sledujících tento prostor
|
368
|
-
hashtag: Hashtag Procesu, používaný pro Twitter/X
|
369
361
|
id: Jedinečný identifikátor tohoto procesu
|
370
362
|
local_area: Místní oblast procesu. Tohle je oblast organizace, kde probíhá proces.
|
371
363
|
meta_scope: Rozsah metadat procesu
|
@@ -427,6 +419,73 @@ cs:
|
|
427
419
|
participatory_processes:
|
428
420
|
admin:
|
429
421
|
content_blocks:
|
422
|
+
democratic_quality_stats_settings_form:
|
423
|
+
announcement:
|
424
|
+
body_html: |-
|
425
|
+
<ul>
|
426
|
+
<li>Ty jsou automaticky počítány z dat Decidim. Jakmile publikujete blok obsahu, budou viditelné.</li>
|
427
|
+
<li>Ty jsou založeny na vašich odpovědích v následujícím formuláři. Budou viditelné, jakmile odpovíte na všechny otázky.</li>
|
428
|
+
</ul>
|
429
|
+
title: 'Tento blok obsahu obsahuje dva typy metrik:'
|
430
|
+
citizen_influence:
|
431
|
+
citizen_decisional_intervention:
|
432
|
+
options:
|
433
|
+
five: 80 - 100%
|
434
|
+
four: 60 - 80%
|
435
|
+
one: 0 - 20%
|
436
|
+
three: 40 - 60%
|
437
|
+
two: 20 - 40%
|
438
|
+
citizen_influence_level:
|
439
|
+
legend: Do jaké míry mají občané v tomto procesu rozhodovací pravomoc, od pouhého přijímání informací až po rozhodný vliv na rozhodování a řízení zdrojů?
|
440
|
+
options:
|
441
|
+
five: Účastníci byli zapojeni do rozhodování a správy zdrojů nebo implementace
|
442
|
+
four: Účastníci byli rozhodujícím způsobem zapojeni do rozhodování
|
443
|
+
one: Účastníci obdrželi informace od organizace
|
444
|
+
name: Vliv občanů
|
445
|
+
inclusiveness:
|
446
|
+
digital_support_offered:
|
447
|
+
options:
|
448
|
+
five: 'Ano'
|
449
|
+
two_five: Částečně
|
450
|
+
zero: 'Ne'
|
451
|
+
functional_diversity_invited:
|
452
|
+
options:
|
453
|
+
five: Dobrý
|
454
|
+
one: Nízký
|
455
|
+
two_five: Dostatečný
|
456
|
+
zero: Žádný
|
457
|
+
languages_communicated:
|
458
|
+
legend: Kolik jazyků bylo použito v rámci procesu?
|
459
|
+
options:
|
460
|
+
five: Více než polovina jazyků, jimiž se hovoří v komunitě
|
461
|
+
one: Jeden jazyk
|
462
|
+
two_five: Méně než polovina jazyků, jimiž se hovoří v komunitě
|
463
|
+
mobility_meeting_access:
|
464
|
+
legend: Byla místa konání osobních setkání přístupná lidem se sníženou pohyblivostí?
|
465
|
+
options:
|
466
|
+
five: 'Ano'
|
467
|
+
two_five: Částečně
|
468
|
+
zero: 'Ne'
|
469
|
+
name: Inkluzivita
|
470
|
+
participation_scheduling_times:
|
471
|
+
options:
|
472
|
+
five: 'Ano'
|
473
|
+
two_five: Částečně
|
474
|
+
zero: 'Ne'
|
475
|
+
informativeness:
|
476
|
+
information_provided:
|
477
|
+
options:
|
478
|
+
five: Vždy
|
479
|
+
one: Téměř nikdy
|
480
|
+
two_five: Obvykle
|
481
|
+
zero: Nikdy
|
482
|
+
name: Informativita
|
483
|
+
published_information_clarity:
|
484
|
+
legend: Poskytují zveřejněné informace jasné informace o rozhodovacích mechanismech? (např. hlasování, konsensus, přímá jednání)
|
485
|
+
options:
|
486
|
+
five: Úpln jasné
|
487
|
+
one: Málo jasné
|
488
|
+
two_five: Dostatečně jasné
|
430
489
|
highlighted_processes:
|
431
490
|
active: Aktivní
|
432
491
|
all: Vše
|
@@ -435,9 +494,6 @@ cs:
|
|
435
494
|
new_import:
|
436
495
|
accepted_types:
|
437
496
|
json: JSON
|
438
|
-
participatory_process_copies:
|
439
|
-
form:
|
440
|
-
slug_help_html: 'URL slugy slouží ke generaci adres URL, které odkazují na tento proces. Povolená jsou pouze písmena, číslice a pomlčky a musí začínat písmenem. Příklad: %{url}'
|
441
497
|
participatory_process_groups:
|
442
498
|
form:
|
443
499
|
metadata: Metadata
|
@@ -467,6 +523,19 @@ cs:
|
|
467
523
|
title: Obecná informace
|
468
524
|
visibility: Viditelnost
|
469
525
|
content_blocks:
|
526
|
+
democratic_quality_stats:
|
527
|
+
automatic_metrics:
|
528
|
+
description: Tyto ukazatele se získávají automaticky z dat platformy.
|
529
|
+
indicators:
|
530
|
+
hybridization: Hybridizace
|
531
|
+
hybridization_tooltip: Tento ukazatel měří úroveň kombinace online a offline prostor během procesu
|
532
|
+
influence: Vliv občanů
|
533
|
+
influence_tooltip: Tento ukazatel měří míru vlivu občanů na přijaté návrhy a výsledky procesu.
|
534
|
+
traceability: Sledovatelnost
|
535
|
+
transparency: Odezva
|
536
|
+
name: Automatická měření
|
537
|
+
global_score:
|
538
|
+
name: Globální skóre
|
470
539
|
extra_data:
|
471
540
|
name: Fáze a doba trvání
|
472
541
|
hero:
|
@@ -484,9 +553,6 @@ cs:
|
|
484
553
|
highlighted_processes:
|
485
554
|
active_spaces: Aktivní procesy
|
486
555
|
see_all_spaces: Zobrazit všechny procesy
|
487
|
-
participatory_process_steps:
|
488
|
-
index:
|
489
|
-
back_to_process: Zpět na stránku procesu
|
490
556
|
participatory_processes:
|
491
557
|
description:
|
492
558
|
area_name: Oblast
|
@@ -545,6 +611,7 @@ cs:
|
|
545
611
|
related_processes: Související procesy
|
546
612
|
statistics:
|
547
613
|
processes_count: Procesy
|
614
|
+
processes_count_tooltip: Počet veřejně přístupných participačních procesů.
|
548
615
|
layouts:
|
549
616
|
decidim:
|
550
617
|
participatory_process_groups:
|
data/config/locales/de.yml
CHANGED
@@ -5,16 +5,15 @@ de:
|
|
5
5
|
participatory_process:
|
6
6
|
announcement: Ankündigung
|
7
7
|
area_id: Bereich
|
8
|
-
copy_categories: Kategorien kopieren
|
9
|
-
copy_components: Komponenten kopieren
|
10
|
-
copy_steps: Phasen kopieren
|
11
8
|
decidim_area_id: Bereich
|
12
9
|
description: Beschreibung
|
13
10
|
developer_group: Promoter-Gruppe
|
14
11
|
document: Dokument
|
15
12
|
domain: Domäne
|
13
|
+
duplicate_categories: Kategorien duplizieren
|
14
|
+
duplicate_components: Komponenten duplizieren
|
15
|
+
duplicate_steps: Schritte duplizieren
|
16
16
|
end_date: Enddatum
|
17
|
-
hashtag: Hashtag
|
18
17
|
hero_image: Hauptbild
|
19
18
|
import_attachments: Anhänge importieren
|
20
19
|
import_categories: Kategorien importieren
|
@@ -40,7 +39,6 @@ de:
|
|
40
39
|
description: Beschreibung
|
41
40
|
developer_group: Gruppe der Unterstützer
|
42
41
|
group_url: Website
|
43
|
-
hashtag: Hashtag
|
44
42
|
hero_image: Bild
|
45
43
|
local_area: Organisationsbereich
|
46
44
|
meta_scope: Informationen zum Bereich
|
@@ -85,15 +83,12 @@ de:
|
|
85
83
|
admin:
|
86
84
|
actions:
|
87
85
|
activate: Aktivieren
|
88
|
-
configure: Konfigurieren
|
89
86
|
confirm_delete_process: Sind Sie sicher, dass Sie diesen Prozess löschen möchten? Wenn Sie Ihre Meinung ändern, können Sie ihn später wiederherstellen.
|
90
87
|
confirm_destroy: Löschen bestätigen
|
91
88
|
destroy: Löschen
|
92
89
|
duplicate: Duplizieren
|
93
90
|
edit: Bearbeiten
|
94
91
|
import_process: Importieren
|
95
|
-
menu_hidden: Verbergen
|
96
|
-
moderate: Moderieren
|
97
92
|
new_process: Neuer Beteiligungsprozess
|
98
93
|
new_process_group: Neue Prozessgruppe
|
99
94
|
new_process_step: Neue Phase
|
@@ -111,7 +106,7 @@ de:
|
|
111
106
|
participatory_process_groups: Prozessgruppen
|
112
107
|
participatory_process_groups_submenu:
|
113
108
|
info: Info
|
114
|
-
landing_page:
|
109
|
+
landing_page: Startseiten-Layout
|
115
110
|
participatory_processes: Beteiligungsprozesse
|
116
111
|
participatory_processes_submenu:
|
117
112
|
attachment_collections: Ordner
|
@@ -119,7 +114,7 @@ de:
|
|
119
114
|
attachments: Anhänge
|
120
115
|
components: Komponenten
|
121
116
|
info: Über diesen Prozess
|
122
|
-
landing_page:
|
117
|
+
landing_page: Startseiten-Layout
|
123
118
|
moderations: Moderationen
|
124
119
|
private_users: Mitglieder
|
125
120
|
process_admins: Benutzer verarbeiten
|
@@ -135,16 +130,19 @@ de:
|
|
135
130
|
name: Beteiligungsprozess
|
136
131
|
participatory_process_group:
|
137
132
|
fields:
|
133
|
+
actions: Aktionen
|
138
134
|
title: Titel
|
139
135
|
name: Prozessgruppe
|
140
136
|
participatory_process_step:
|
141
137
|
fields:
|
138
|
+
actions: Aktionen
|
142
139
|
end_date: Enddatum
|
143
140
|
start_date: Anfangsdatum
|
144
141
|
title: Titel
|
145
142
|
name: Partizipativer Prozessschritt
|
146
143
|
participatory_process_user_role:
|
147
144
|
fields:
|
145
|
+
actions: Aktionen
|
148
146
|
email: Email
|
149
147
|
name: Name
|
150
148
|
role: Rolle
|
@@ -152,16 +150,16 @@ de:
|
|
152
150
|
roles:
|
153
151
|
admin: Administrator
|
154
152
|
collaborator: Mitarbeiter
|
153
|
+
evaluator: Bewertende Person
|
155
154
|
moderator: Moderator
|
156
|
-
valuator: Bewertende
|
157
155
|
user:
|
158
156
|
fields:
|
159
157
|
invitation_accepted_at: Einladung akzeptiert am
|
160
158
|
invitation_sent_at: Einladung gesendet am
|
161
159
|
published: Veröffentlicht
|
162
|
-
|
160
|
+
participatory_process_duplicates:
|
163
161
|
new:
|
164
|
-
|
162
|
+
duplicate: Duplizieren
|
165
163
|
select: Zu duplizierende Daten auswählen
|
166
164
|
title: Beteiligungsprozess duplizieren
|
167
165
|
participatory_process_groups:
|
@@ -262,7 +260,7 @@ de:
|
|
262
260
|
update:
|
263
261
|
error: Beim Aktualisieren dieses Beteiligungsprozesses ist ein Fehler aufgetreten.
|
264
262
|
success: Beteiligungsprozess erfolgreich aktualisiert.
|
265
|
-
|
263
|
+
participatory_processes_duplicates:
|
266
264
|
create:
|
267
265
|
error: Beim Duplizieren dieses Beteiligungsprozesses ist ein Fehler aufgetreten.
|
268
266
|
success: Beteiligungsprozess erfolgreich dupliziert.
|
@@ -344,11 +342,6 @@ de:
|
|
344
342
|
not_found: 'Der Prozesstyp wurde nicht in der Datenbank gefunden (ID: %{id}).'
|
345
343
|
menu:
|
346
344
|
processes: Beteiligungsprozesse
|
347
|
-
metrics:
|
348
|
-
participatory_processes:
|
349
|
-
description: Anzahl der Beteiligungsprozesse in dieser Organisation
|
350
|
-
object: Beteiligungsprozesse
|
351
|
-
title: Beteiligungsprozesse
|
352
345
|
open_data:
|
353
346
|
help:
|
354
347
|
participatory_processes:
|
@@ -359,7 +352,6 @@ de:
|
|
359
352
|
developer_group: Die Entwicklergruppe des Prozesses. Dies ist die Organisation, die den Prozess fördert.
|
360
353
|
end_date: Das Enddatum des Prozesses
|
361
354
|
follows_count: Die Anzahl Nutzende, die diesem Bereich folgen
|
362
|
-
hashtag: Der des Prozesses, verwendet für Twitter/X
|
363
355
|
id: Die eindeutige Bezeichnung des Prozesses
|
364
356
|
local_area: Der lokale Bereich des Prozesses. Dies ist der Organisationsbereich, in dem der Prozess stattfindet.
|
365
357
|
meta_scope: Die Bereichsmetadaten des Ergebnisses
|
@@ -419,6 +411,82 @@ de:
|
|
419
411
|
participatory_processes:
|
420
412
|
admin:
|
421
413
|
content_blocks:
|
414
|
+
democratic_quality_stats_settings_form:
|
415
|
+
announcement:
|
416
|
+
body_html: |-
|
417
|
+
<ul>
|
418
|
+
<li>Diese werden automatisch aus Decidim-Daten berechnet. Sie werden sichtbar, sobald Sie den Inhaltsblock veröffentlichen.</li>
|
419
|
+
<li>Diese basieren auf Ihren Antworten im folgenden Formular. Sie werden angezeigt, sobald Sie alle Fragen beantwortet haben.</li>
|
420
|
+
</ul>
|
421
|
+
title: 'Dieser Inhaltsblock enthält zwei Arten von Kennzahlen:'
|
422
|
+
citizen_influence:
|
423
|
+
citizen_decisional_intervention:
|
424
|
+
legend: In wie vielen Prozessphasen (von der Problemidentifikation bis zum Monitoring der Ausführung) hatte die Öffentlichkeit die Möglichkeit, Entscheidungen zu treffen oder exekutive Massnahmen zu ergreifen?
|
425
|
+
options:
|
426
|
+
five: 80 - 100%
|
427
|
+
four: 60 - 80%
|
428
|
+
one: 0 - 20%
|
429
|
+
three: 40 - 60%
|
430
|
+
two: 20 - 40%
|
431
|
+
citizen_influence_level:
|
432
|
+
legend: Inwieweit hat das Volk die Entscheidungsbefugnis in diesem Prozess, von der einfachen Information bis hin zur entscheidenden Beeinflussung von Entscheidungen und der Ressourcenverwaltung?
|
433
|
+
options:
|
434
|
+
five: Teilnehmende waren an der Entscheidungsfindung und der Verwaltung der Ressourcen oder der Umsetzung beteiligt
|
435
|
+
four: Teilnehmende waren massgeblich an der Entscheidungsfindung beteiligt
|
436
|
+
one: Teilnehmende haben Informationen von der Organisation erhalten
|
437
|
+
three: Teilnehmende waren an der Entscheidungsbefugnis mitbeteiligt
|
438
|
+
two: Teilnehmende wurden beratend gefragt oder haben Feedback an die Organisation gegeben
|
439
|
+
name: Volkseinfluss
|
440
|
+
inclusiveness:
|
441
|
+
description: Inklusion nach kultureller Herkunft und funktionaler Vielfalt.
|
442
|
+
digital_support_offered:
|
443
|
+
legend: Wurde den Teilnehmenden digitale Unterstützung angeboten?
|
444
|
+
options:
|
445
|
+
five: 'Ja'
|
446
|
+
two_five: Teilweise
|
447
|
+
zero: 'Nein'
|
448
|
+
functional_diversity_invited:
|
449
|
+
legend: Wie wird die Vielfalt der Akteuren und Teilnehmenden in Bezug auf die Referenzbevölkerung in diesem Prozess bewertet?
|
450
|
+
options:
|
451
|
+
five: Gut
|
452
|
+
one: Tief
|
453
|
+
two_five: Ausreichend
|
454
|
+
zero: Keine
|
455
|
+
languages_communicated:
|
456
|
+
legend: Wie viele Sprachen wurden innerhalb des Prozesses verwendet?
|
457
|
+
options:
|
458
|
+
five: Mehr als die Hälfte der in der Gemeinschaft gesprochenen Sprachen
|
459
|
+
one: Eine Sprache
|
460
|
+
two_five: Weniger als die Hälfte der in der Gemeinschaft gesprochenen Sprachen
|
461
|
+
mobility_meeting_access:
|
462
|
+
legend: Waren die Veranstaltungsorte der physischen Veranstaltungen für Menschen mit eingeschränkter Mobilität zugänglich?
|
463
|
+
options:
|
464
|
+
five: 'Ja'
|
465
|
+
two_five: Teilweise
|
466
|
+
zero: 'Nein'
|
467
|
+
name: Inklusion
|
468
|
+
participation_scheduling_times:
|
469
|
+
legend: Die Teilnahme war zu verschiedenen Zeiten geplant (morgens, mittags, nachmittags, abends oder am Wochenende).
|
470
|
+
options:
|
471
|
+
five: 'Ja'
|
472
|
+
two_five:
|
473
|
+
zero: 'Nein'
|
474
|
+
informativeness:
|
475
|
+
information_provided:
|
476
|
+
legend: Gibt es Informationen darüber, inwiefern die Teilnehmenden das diskutierte Thema beeinflussen können? (sowohl in der Kommunikation des Prozesses und den Einladungen dazu, als auch zu Beginn jeder Debatte)
|
477
|
+
options:
|
478
|
+
five: Immer
|
479
|
+
one: Fast nie
|
480
|
+
two_five: Normalerweise
|
481
|
+
zero: Nie
|
482
|
+
name: Informationsgehalt
|
483
|
+
published_information_clarity:
|
484
|
+
legend: Bieten die veröffentlichten Informationen Klarheit über die Entscheidungsmechanismen? (z.B. Abstimmung, Konsens, direkte Verhandlungen)
|
485
|
+
options:
|
486
|
+
five: Volle Klarheit
|
487
|
+
one: Geringe Klarheit
|
488
|
+
two_five: Ausreichende Klarheit
|
489
|
+
zero: Keine Klarheit
|
422
490
|
highlighted_processes:
|
423
491
|
active: Aktiv
|
424
492
|
all: Alle
|
@@ -427,9 +495,9 @@ de:
|
|
427
495
|
new_import:
|
428
496
|
accepted_types:
|
429
497
|
json: JSON
|
430
|
-
|
498
|
+
participatory_process_duplicates:
|
431
499
|
form:
|
432
|
-
slug_help_html: 'URL-Slugs werden zum Generieren der URLs verwendet, die auf diesen Prozess verweisen. Akzeptiert werden nur Buchstaben, Zahlen und Bindestriche und
|
500
|
+
slug_help_html: 'URL-Slugs werden zum Generieren der URLs verwendet, die auf diesen Prozess verweisen. Akzeptiert werden nur Buchstaben, Zahlen und Bindestriche und sie müssen mit einem Buchstaben beginnen. Beispiel: %{url}'
|
433
501
|
participatory_process_groups:
|
434
502
|
form:
|
435
503
|
metadata: Metadaten
|
@@ -459,6 +527,35 @@ de:
|
|
459
527
|
title: Allgemeine Information
|
460
528
|
visibility: Sichtbarkeit
|
461
529
|
content_blocks:
|
530
|
+
democratic_quality_stats:
|
531
|
+
automatic_metrics:
|
532
|
+
description: Diese Indikatoren werden automatisch von den Plattformdaten abgerufen.
|
533
|
+
indicators:
|
534
|
+
hybridization: Hybridisierung
|
535
|
+
hybridization_tooltip: Dieser Indikator misst den Kombinationsgrad der Online- und Offline-Bestandteile des Prozesses
|
536
|
+
influence: Volkseinfluss
|
537
|
+
influence_tooltip: Dieser Indikator misst den Einfluss der Bürger auf die akzeptierten Vorschläge und die Ergebnisse des Prozesses.
|
538
|
+
traceability: Nachvollziehbarkeit
|
539
|
+
traceability_tooltip: Dieser Indikator misst die Transparenz und Rückverfolgbarkeit des Partizipationprozesses. Er zeigt, wie einfach die Teilnehmenden der Entwicklung der Vorschläge verfolgen und institutionelle Massnahmen durch veröffentlichte Belege überprüfen können.
|
540
|
+
transparency: Antwortverhalten
|
541
|
+
transparency_tooltip: Dieser Indikator misst die Reaktionsfähigkeit der Organisation auf die Teilnehmendeneingaben und spiegelt ihr Engagement durch offizielle Reaktionen und umgesetzte Entscheidungen wider.
|
542
|
+
name: Automatische Kennzahlen
|
543
|
+
global_score:
|
544
|
+
description_html: Unten finden Sie eine Reihe von Indikatoren, mit denen die demokratische Qualität dieses partizipatorischen Prozesses beurteilt werden kann. Weitere Details zur Berechnung finden Sie auf der <a href="%{info_url}">Informationsseite zu den demokratischen Qualitätsindikatoren</a>.
|
545
|
+
name: Globale Punktzahl
|
546
|
+
note: "*Die Richtwerte werden auf einer Skala von 1 bis 5 gemessen, wobei 1 den niedrigsten und 5 den höchsten Qualitätsindikator darstellt."
|
547
|
+
tooltip: Berechnet als Durchschnitt aller Dimensionen
|
548
|
+
name: Qualitätsindikator
|
549
|
+
qualitative_metrics:
|
550
|
+
description: Diese Indikatoren stammen von den Antworten auf eine von den Verwaltern der Plattform ausgefüllte Selbstbeurteilungsbefragung.
|
551
|
+
indicators:
|
552
|
+
citizen_influence: Volkseinfluss
|
553
|
+
citizen_influence_tooltip: Misst die Auswirkungen der Teilnehmenden auf die Entscheidungsfindung.
|
554
|
+
inclusiveness: Inklusion
|
555
|
+
inclusiveness_tooltip: Bewertet, ob verschiedene Interessengruppen fair vertreten sind.
|
556
|
+
informativeness: Informationsgehalt
|
557
|
+
informativeness_tooltip: Misst den Grad an Klarheit und Information innerhalb des Prozesses.
|
558
|
+
name: Kennzahlen der Selbsteinschätzung
|
462
559
|
extra_data:
|
463
560
|
name: Phase & Dauer
|
464
561
|
hero:
|
@@ -476,9 +573,6 @@ de:
|
|
476
573
|
highlighted_processes:
|
477
574
|
active_spaces: Aktive Prozesse
|
478
575
|
see_all_spaces: Alle Prozesse anzeigen
|
479
|
-
participatory_process_steps:
|
480
|
-
index:
|
481
|
-
back_to_process: Zurück zur Prozessseite
|
482
576
|
participatory_processes:
|
483
577
|
description:
|
484
578
|
area_name: Gebiet
|
@@ -527,8 +621,12 @@ de:
|
|
527
621
|
belongs_to_group: Dieser Prozess gehört zu
|
528
622
|
private_space: Dies ist ein privater Prozess
|
529
623
|
related_processes: Ähnliche Beteiligungsprozesse
|
624
|
+
static_pages:
|
625
|
+
democratic_quality_indicators:
|
626
|
+
title: Demokratische Qualitätsindikatoren
|
530
627
|
statistics:
|
531
628
|
processes_count: Beteiligungsprozesse
|
629
|
+
processes_count_tooltip: Die Anzahl der Beteiligungsprozesse, die öffentlich zugänglich sind.
|
532
630
|
layouts:
|
533
631
|
decidim:
|
534
632
|
participatory_process_groups:
|
data/config/locales/el.yml
CHANGED
@@ -5,16 +5,12 @@ el:
|
|
5
5
|
participatory_process:
|
6
6
|
announcement: Ανακοίνωση
|
7
7
|
area_id: Τομέας
|
8
|
-
copy_categories: Αντιγραφή κατηγοριών
|
9
|
-
copy_components: Αντιγραφή στοιχείων
|
10
|
-
copy_steps: Αντιγραφή βημάτων
|
11
8
|
decidim_area_id: Τομέας
|
12
9
|
description: Περιγραφή
|
13
10
|
developer_group: Ομάδα προώθησης
|
14
11
|
document: Έγγραφο
|
15
12
|
domain: Τομέας
|
16
13
|
end_date: Ημερομηνία λήξης
|
17
|
-
hashtag: Hashtag
|
18
14
|
hero_image: Εικόνα αρχικής σελίδας
|
19
15
|
import_attachments: Εισαγωγή συνημμένων
|
20
16
|
import_categories: Εισαγωγή κατηγοριών
|
@@ -40,7 +36,6 @@ el:
|
|
40
36
|
description: Περιγραφή
|
41
37
|
developer_group: Ομάδα προώθησης
|
42
38
|
group_url: Ιστοσελίδα
|
43
|
-
hashtag: Hashtag
|
44
39
|
hero_image: Εικόνα
|
45
40
|
local_area: Περιοχή οργανισμού
|
46
41
|
meta_scope: Μεταδεδομένα πεδίου εφαρμογής
|
@@ -85,13 +80,11 @@ el:
|
|
85
80
|
admin:
|
86
81
|
actions:
|
87
82
|
activate: Ενεργοποίηση
|
88
|
-
configure: Διαμόρφωση
|
89
83
|
confirm_destroy: Επιβεβαίωση διαγραφής
|
90
84
|
destroy: Διαγραφή
|
91
85
|
duplicate: Αντιγραφή
|
92
86
|
edit: Επεξεργασία
|
93
87
|
import_process: Εισαγωγή
|
94
|
-
moderate: Συντονισμός
|
95
88
|
new_process: Νέα διαδικασία
|
96
89
|
new_process_group: Νέα ομάδα διαδικασιών
|
97
90
|
new_process_step: Νέα φάση
|
@@ -104,14 +97,12 @@ el:
|
|
104
97
|
participatory_process_groups: Ομάδες διαδικασιών
|
105
98
|
participatory_process_groups_submenu:
|
106
99
|
info: Πληροφορίες
|
107
|
-
landing_page: Σελίδα άφιξης
|
108
100
|
participatory_processes: Διαδικασίες
|
109
101
|
participatory_processes_submenu:
|
110
102
|
attachment_collections: Φάκελοι
|
111
103
|
attachment_files: Αρχεία
|
112
104
|
attachments: Συνημμένα
|
113
105
|
components: Στοιχεία
|
114
|
-
landing_page: Σελίδα άφιξης
|
115
106
|
moderations: Εποπτεύσεις
|
116
107
|
process_admins: Διαχειριστές διαδικασιών
|
117
108
|
steps: Φάσεις
|
@@ -143,14 +134,10 @@ el:
|
|
143
134
|
admin: Διαχειριστής
|
144
135
|
collaborator: Συνεργάτης
|
145
136
|
moderator: Επόπτης
|
146
|
-
valuator: Εκτιμητής
|
147
137
|
user:
|
148
138
|
fields:
|
149
139
|
invitation_accepted_at: Η πρόσκληση έγινε αποδεκτή στις
|
150
140
|
invitation_sent_at: Η πρόσκληση στάλθηκε στις
|
151
|
-
participatory_process_copies:
|
152
|
-
new:
|
153
|
-
copy: Αντιγραφή
|
154
141
|
participatory_process_groups:
|
155
142
|
destroy:
|
156
143
|
success: Η ομάδα διαδικασιών συμμετοχής διαγράφηκε με επιτυχία.
|
@@ -304,11 +291,6 @@ el:
|
|
304
291
|
not_found: 'Ο τύπος διεργασίας δεν βρέθηκε στη βάση δεδομένων (ID: %{id}).'
|
305
292
|
menu:
|
306
293
|
processes: Διαδικασίες
|
307
|
-
metrics:
|
308
|
-
participatory_processes:
|
309
|
-
description: Αριθμός διαδικασιών συμμετοχής σε αυτόν τον οργανισμό
|
310
|
-
object: διαδικασίες συμμετοχής
|
311
|
-
title: Διαδικασίες συμμετοχής
|
312
294
|
participatory_process_groups:
|
313
295
|
content_blocks:
|
314
296
|
html_1:
|
@@ -363,9 +345,6 @@ el:
|
|
363
345
|
name: Επισημασμένες διαδικασίες
|
364
346
|
index:
|
365
347
|
title: Διαδικασίες συμμετοχής
|
366
|
-
participatory_process_steps:
|
367
|
-
index:
|
368
|
-
back_to_process: Πίσω στην σελίδα της διαδικασίας
|
369
348
|
participatory_processes:
|
370
349
|
filters:
|
371
350
|
all_types: Όλοι οι τύποι
|