decidim-participatory_processes 0.30.3 → 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/extra_data_cell.rb +1 -1
- 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 -26
- data/config/locales/ca.yml +319 -26
- data/config/locales/cs.yml +93 -27
- data/config/locales/de.yml +123 -26
- data/config/locales/el.yml +0 -21
- data/config/locales/en.yml +303 -25
- data/config/locales/es-MX.yml +319 -26
- data/config/locales/es-PY.yml +319 -26
- data/config/locales/es.yml +319 -26
- data/config/locales/eu.yml +309 -31
- data/config/locales/fi-plain.yml +303 -25
- data/config/locales/fi.yml +306 -28
- data/config/locales/fr-CA.yml +86 -25
- data/config/locales/fr.yml +86 -25
- 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 -26
- 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 -25
- 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,17 +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_landing_page_blocks: Duplikovat bloky vstupní strany
|
|
11
|
-
copy_steps: Kopírování kroků
|
|
12
8
|
decidim_area_id: Oblast
|
|
13
9
|
description: Popis
|
|
14
10
|
developer_group: Skupina promotérů
|
|
15
11
|
document: Dokument
|
|
16
12
|
domain: Doména
|
|
13
|
+
duplicate_categories: Duplikovat kategorie
|
|
14
|
+
duplicate_components: Duplikovat komponenty
|
|
15
|
+
duplicate_steps: Duplikovat kroky
|
|
17
16
|
end_date: Datum ukončení
|
|
18
|
-
hashtag: Hashtag
|
|
19
17
|
hero_image: Domácí obrázek
|
|
20
18
|
import_attachments: Importovat přílohy
|
|
21
19
|
import_categories: Importovat kategorie
|
|
@@ -41,7 +39,6 @@ cs:
|
|
|
41
39
|
description: Popis
|
|
42
40
|
developer_group: Skupina propagátorů
|
|
43
41
|
group_url: Webová stránka
|
|
44
|
-
hashtag: Hashtag
|
|
45
42
|
hero_image: Obrázek
|
|
46
43
|
local_area: Oblast působnosti organizace
|
|
47
44
|
meta_scope: Metadata oblasti působnosti
|
|
@@ -92,15 +89,12 @@ cs:
|
|
|
92
89
|
admin:
|
|
93
90
|
actions:
|
|
94
91
|
activate: Aktivovat
|
|
95
|
-
configure: Konfigurovat
|
|
96
92
|
confirm_delete_process: Opravdu chcete odstranit tento proces? Pokud změníte názor, můžete jej obnovit později.
|
|
97
93
|
confirm_destroy: Potvrďte smazání
|
|
98
94
|
destroy: Odstranit
|
|
99
95
|
duplicate: Duplikát
|
|
100
96
|
edit: Upravit
|
|
101
97
|
import_process: Importovat
|
|
102
|
-
menu_hidden: Skrýt
|
|
103
|
-
moderate: Moderovat
|
|
104
98
|
new_process: Nový proces
|
|
105
99
|
new_process_group: Nová skupina procesů
|
|
106
100
|
new_process_step: Nový krok
|
|
@@ -118,7 +112,7 @@ cs:
|
|
|
118
112
|
participatory_process_groups: Skupiny procesů
|
|
119
113
|
participatory_process_groups_submenu:
|
|
120
114
|
info: Info
|
|
121
|
-
landing_page:
|
|
115
|
+
landing_page: Rozložení vstupní strany
|
|
122
116
|
participatory_processes: Procesy
|
|
123
117
|
participatory_processes_submenu:
|
|
124
118
|
attachment_collections: Složky
|
|
@@ -126,7 +120,7 @@ cs:
|
|
|
126
120
|
attachments: Přílohy
|
|
127
121
|
components: Komponenty
|
|
128
122
|
info: O tomto procesu
|
|
129
|
-
landing_page:
|
|
123
|
+
landing_page: Rozložení vstupní strany
|
|
130
124
|
moderations: Moderování
|
|
131
125
|
private_users: Členové
|
|
132
126
|
process_admins: Administrátoři procesu
|
|
@@ -142,16 +136,19 @@ cs:
|
|
|
142
136
|
name: Participační proces
|
|
143
137
|
participatory_process_group:
|
|
144
138
|
fields:
|
|
139
|
+
actions: Akce
|
|
145
140
|
title: Název
|
|
146
141
|
name: Skupina procesů
|
|
147
142
|
participatory_process_step:
|
|
148
143
|
fields:
|
|
144
|
+
actions: Akce
|
|
149
145
|
end_date: Datum ukončení
|
|
150
146
|
start_date: Datum zahájení
|
|
151
147
|
title: Titul
|
|
152
148
|
name: Participační krok procesu
|
|
153
149
|
participatory_process_user_role:
|
|
154
150
|
fields:
|
|
151
|
+
actions: Akce
|
|
155
152
|
email: E-mailem
|
|
156
153
|
name: Název
|
|
157
154
|
role: Role
|
|
@@ -159,16 +156,16 @@ cs:
|
|
|
159
156
|
roles:
|
|
160
157
|
admin: Správce
|
|
161
158
|
collaborator: Spolupracovník
|
|
159
|
+
evaluator: Hodnotitel
|
|
162
160
|
moderator: Moderátor
|
|
163
|
-
valuator: Hodnotitel
|
|
164
161
|
user:
|
|
165
162
|
fields:
|
|
166
163
|
invitation_accepted_at: Pozvánka byla přijata na
|
|
167
164
|
invitation_sent_at: Pozvánka odeslána na
|
|
168
165
|
published: Publikováno
|
|
169
|
-
|
|
166
|
+
participatory_process_duplicates:
|
|
170
167
|
new:
|
|
171
|
-
|
|
168
|
+
duplicate: Duplikovat
|
|
172
169
|
select: Vyberte, která data chcete duplikovat
|
|
173
170
|
title: Duplikovat participativní proces
|
|
174
171
|
participatory_process_groups:
|
|
@@ -269,7 +266,7 @@ cs:
|
|
|
269
266
|
update:
|
|
270
267
|
error: Při aktualizaci tohoto participačního procesu došlo k chybě.
|
|
271
268
|
success: Participační proces byl úspěšně aktualizován.
|
|
272
|
-
|
|
269
|
+
participatory_processes_duplicates:
|
|
273
270
|
create:
|
|
274
271
|
error: Při duplikaci tohoto participativního procesu došlo k problému.
|
|
275
272
|
success: Participativní proces byl úspěšně duplikován.
|
|
@@ -351,11 +348,6 @@ cs:
|
|
|
351
348
|
not_found: 'Typ procesu nebyl v databázi nalezen (ID: %{id}).'
|
|
352
349
|
menu:
|
|
353
350
|
processes: Procesy
|
|
354
|
-
metrics:
|
|
355
|
-
participatory_processes:
|
|
356
|
-
description: Počet participativních procesů v této organizaci
|
|
357
|
-
object: participativní procesy
|
|
358
|
-
title: Participativní procesy
|
|
359
351
|
open_data:
|
|
360
352
|
help:
|
|
361
353
|
participatory_processes:
|
|
@@ -366,7 +358,6 @@ cs:
|
|
|
366
358
|
developer_group: Skupina tvůrců procesu. Jedná se o organizaci, která proces prosazuje.
|
|
367
359
|
end_date: Datum ukončení procesu
|
|
368
360
|
follows_count: Počet uživatelů sledujících tento prostor
|
|
369
|
-
hashtag: Hashtag Procesu, používaný pro Twitter/X
|
|
370
361
|
id: Jedinečný identifikátor tohoto procesu
|
|
371
362
|
local_area: Místní oblast procesu. Tohle je oblast organizace, kde probíhá proces.
|
|
372
363
|
meta_scope: Rozsah metadat procesu
|
|
@@ -428,6 +419,73 @@ cs:
|
|
|
428
419
|
participatory_processes:
|
|
429
420
|
admin:
|
|
430
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é
|
|
431
489
|
highlighted_processes:
|
|
432
490
|
active: Aktivní
|
|
433
491
|
all: Vše
|
|
@@ -436,9 +494,6 @@ cs:
|
|
|
436
494
|
new_import:
|
|
437
495
|
accepted_types:
|
|
438
496
|
json: JSON
|
|
439
|
-
participatory_process_copies:
|
|
440
|
-
form:
|
|
441
|
-
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}'
|
|
442
497
|
participatory_process_groups:
|
|
443
498
|
form:
|
|
444
499
|
metadata: Metadata
|
|
@@ -468,6 +523,19 @@ cs:
|
|
|
468
523
|
title: Obecná informace
|
|
469
524
|
visibility: Viditelnost
|
|
470
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
|
|
471
539
|
extra_data:
|
|
472
540
|
name: Fáze a doba trvání
|
|
473
541
|
hero:
|
|
@@ -485,9 +553,6 @@ cs:
|
|
|
485
553
|
highlighted_processes:
|
|
486
554
|
active_spaces: Aktivní procesy
|
|
487
555
|
see_all_spaces: Zobrazit všechny procesy
|
|
488
|
-
participatory_process_steps:
|
|
489
|
-
index:
|
|
490
|
-
back_to_process: Zpět na stránku procesu
|
|
491
556
|
participatory_processes:
|
|
492
557
|
description:
|
|
493
558
|
area_name: Oblast
|
|
@@ -546,6 +611,7 @@ cs:
|
|
|
546
611
|
related_processes: Související procesy
|
|
547
612
|
statistics:
|
|
548
613
|
processes_count: Procesy
|
|
614
|
+
processes_count_tooltip: Počet veřejně přístupných participačních procesů.
|
|
549
615
|
layouts:
|
|
550
616
|
decidim:
|
|
551
617
|
participatory_process_groups:
|
data/config/locales/de.yml
CHANGED
|
@@ -5,17 +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_landing_page_blocks: Startseiten-Blöcke duplizieren
|
|
11
|
-
copy_steps: Phasen kopieren
|
|
12
8
|
decidim_area_id: Bereich
|
|
13
9
|
description: Beschreibung
|
|
14
10
|
developer_group: Promoter-Gruppe
|
|
15
11
|
document: Dokument
|
|
16
12
|
domain: Domäne
|
|
13
|
+
duplicate_categories: Kategorien duplizieren
|
|
14
|
+
duplicate_components: Komponenten duplizieren
|
|
15
|
+
duplicate_steps: Schritte duplizieren
|
|
17
16
|
end_date: Enddatum
|
|
18
|
-
hashtag: Hashtag
|
|
19
17
|
hero_image: Hauptbild
|
|
20
18
|
import_attachments: Anhänge importieren
|
|
21
19
|
import_categories: Kategorien importieren
|
|
@@ -41,7 +39,6 @@ de:
|
|
|
41
39
|
description: Beschreibung
|
|
42
40
|
developer_group: Gruppe der Unterstützer
|
|
43
41
|
group_url: Website
|
|
44
|
-
hashtag: Hashtag
|
|
45
42
|
hero_image: Bild
|
|
46
43
|
local_area: Organisationsbereich
|
|
47
44
|
meta_scope: Informationen zum Bereich
|
|
@@ -86,15 +83,12 @@ de:
|
|
|
86
83
|
admin:
|
|
87
84
|
actions:
|
|
88
85
|
activate: Aktivieren
|
|
89
|
-
configure: Konfigurieren
|
|
90
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.
|
|
91
87
|
confirm_destroy: Löschen bestätigen
|
|
92
88
|
destroy: Löschen
|
|
93
89
|
duplicate: Duplizieren
|
|
94
90
|
edit: Bearbeiten
|
|
95
91
|
import_process: Importieren
|
|
96
|
-
menu_hidden: Verbergen
|
|
97
|
-
moderate: Moderieren
|
|
98
92
|
new_process: Neuer Beteiligungsprozess
|
|
99
93
|
new_process_group: Neue Prozessgruppe
|
|
100
94
|
new_process_step: Neue Phase
|
|
@@ -112,7 +106,7 @@ de:
|
|
|
112
106
|
participatory_process_groups: Prozessgruppen
|
|
113
107
|
participatory_process_groups_submenu:
|
|
114
108
|
info: Info
|
|
115
|
-
landing_page:
|
|
109
|
+
landing_page: Startseiten-Layout
|
|
116
110
|
participatory_processes: Beteiligungsprozesse
|
|
117
111
|
participatory_processes_submenu:
|
|
118
112
|
attachment_collections: Ordner
|
|
@@ -120,7 +114,7 @@ de:
|
|
|
120
114
|
attachments: Anhänge
|
|
121
115
|
components: Komponenten
|
|
122
116
|
info: Über diesen Prozess
|
|
123
|
-
landing_page:
|
|
117
|
+
landing_page: Startseiten-Layout
|
|
124
118
|
moderations: Moderationen
|
|
125
119
|
private_users: Mitglieder
|
|
126
120
|
process_admins: Benutzer verarbeiten
|
|
@@ -136,16 +130,19 @@ de:
|
|
|
136
130
|
name: Beteiligungsprozess
|
|
137
131
|
participatory_process_group:
|
|
138
132
|
fields:
|
|
133
|
+
actions: Aktionen
|
|
139
134
|
title: Titel
|
|
140
135
|
name: Prozessgruppe
|
|
141
136
|
participatory_process_step:
|
|
142
137
|
fields:
|
|
138
|
+
actions: Aktionen
|
|
143
139
|
end_date: Enddatum
|
|
144
140
|
start_date: Anfangsdatum
|
|
145
141
|
title: Titel
|
|
146
142
|
name: Partizipativer Prozessschritt
|
|
147
143
|
participatory_process_user_role:
|
|
148
144
|
fields:
|
|
145
|
+
actions: Aktionen
|
|
149
146
|
email: Email
|
|
150
147
|
name: Name
|
|
151
148
|
role: Rolle
|
|
@@ -153,16 +150,16 @@ de:
|
|
|
153
150
|
roles:
|
|
154
151
|
admin: Administrator
|
|
155
152
|
collaborator: Mitarbeiter
|
|
153
|
+
evaluator: Bewertende Person
|
|
156
154
|
moderator: Moderator
|
|
157
|
-
valuator: Bewertende
|
|
158
155
|
user:
|
|
159
156
|
fields:
|
|
160
157
|
invitation_accepted_at: Einladung akzeptiert am
|
|
161
158
|
invitation_sent_at: Einladung gesendet am
|
|
162
159
|
published: Veröffentlicht
|
|
163
|
-
|
|
160
|
+
participatory_process_duplicates:
|
|
164
161
|
new:
|
|
165
|
-
|
|
162
|
+
duplicate: Duplizieren
|
|
166
163
|
select: Zu duplizierende Daten auswählen
|
|
167
164
|
title: Beteiligungsprozess duplizieren
|
|
168
165
|
participatory_process_groups:
|
|
@@ -263,7 +260,7 @@ de:
|
|
|
263
260
|
update:
|
|
264
261
|
error: Beim Aktualisieren dieses Beteiligungsprozesses ist ein Fehler aufgetreten.
|
|
265
262
|
success: Beteiligungsprozess erfolgreich aktualisiert.
|
|
266
|
-
|
|
263
|
+
participatory_processes_duplicates:
|
|
267
264
|
create:
|
|
268
265
|
error: Beim Duplizieren dieses Beteiligungsprozesses ist ein Fehler aufgetreten.
|
|
269
266
|
success: Beteiligungsprozess erfolgreich dupliziert.
|
|
@@ -345,11 +342,6 @@ de:
|
|
|
345
342
|
not_found: 'Der Prozesstyp wurde nicht in der Datenbank gefunden (ID: %{id}).'
|
|
346
343
|
menu:
|
|
347
344
|
processes: Beteiligungsprozesse
|
|
348
|
-
metrics:
|
|
349
|
-
participatory_processes:
|
|
350
|
-
description: Anzahl der Beteiligungsprozesse in dieser Organisation
|
|
351
|
-
object: Beteiligungsprozesse
|
|
352
|
-
title: Beteiligungsprozesse
|
|
353
345
|
open_data:
|
|
354
346
|
help:
|
|
355
347
|
participatory_processes:
|
|
@@ -360,7 +352,6 @@ de:
|
|
|
360
352
|
developer_group: Die Entwicklergruppe des Prozesses. Dies ist die Organisation, die den Prozess fördert.
|
|
361
353
|
end_date: Das Enddatum des Prozesses
|
|
362
354
|
follows_count: Die Anzahl Nutzende, die diesem Bereich folgen
|
|
363
|
-
hashtag: Der des Prozesses, verwendet für Twitter/X
|
|
364
355
|
id: Die eindeutige Bezeichnung des Prozesses
|
|
365
356
|
local_area: Der lokale Bereich des Prozesses. Dies ist der Organisationsbereich, in dem der Prozess stattfindet.
|
|
366
357
|
meta_scope: Die Bereichsmetadaten des Ergebnisses
|
|
@@ -420,6 +411,82 @@ de:
|
|
|
420
411
|
participatory_processes:
|
|
421
412
|
admin:
|
|
422
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
|
|
423
490
|
highlighted_processes:
|
|
424
491
|
active: Aktiv
|
|
425
492
|
all: Alle
|
|
@@ -428,9 +495,9 @@ de:
|
|
|
428
495
|
new_import:
|
|
429
496
|
accepted_types:
|
|
430
497
|
json: JSON
|
|
431
|
-
|
|
498
|
+
participatory_process_duplicates:
|
|
432
499
|
form:
|
|
433
|
-
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}'
|
|
434
501
|
participatory_process_groups:
|
|
435
502
|
form:
|
|
436
503
|
metadata: Metadaten
|
|
@@ -460,6 +527,35 @@ de:
|
|
|
460
527
|
title: Allgemeine Information
|
|
461
528
|
visibility: Sichtbarkeit
|
|
462
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
|
|
463
559
|
extra_data:
|
|
464
560
|
name: Phase & Dauer
|
|
465
561
|
hero:
|
|
@@ -477,9 +573,6 @@ de:
|
|
|
477
573
|
highlighted_processes:
|
|
478
574
|
active_spaces: Aktive Prozesse
|
|
479
575
|
see_all_spaces: Alle Prozesse anzeigen
|
|
480
|
-
participatory_process_steps:
|
|
481
|
-
index:
|
|
482
|
-
back_to_process: Zurück zur Prozessseite
|
|
483
576
|
participatory_processes:
|
|
484
577
|
description:
|
|
485
578
|
area_name: Gebiet
|
|
@@ -528,8 +621,12 @@ de:
|
|
|
528
621
|
belongs_to_group: Dieser Prozess gehört zu
|
|
529
622
|
private_space: Dies ist ein privater Prozess
|
|
530
623
|
related_processes: Ähnliche Beteiligungsprozesse
|
|
624
|
+
static_pages:
|
|
625
|
+
democratic_quality_indicators:
|
|
626
|
+
title: Demokratische Qualitätsindikatoren
|
|
531
627
|
statistics:
|
|
532
628
|
processes_count: Beteiligungsprozesse
|
|
629
|
+
processes_count_tooltip: Die Anzahl der Beteiligungsprozesse, die öffentlich zugänglich sind.
|
|
533
630
|
layouts:
|
|
534
631
|
decidim:
|
|
535
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: Όλοι οι τύποι
|