decidim-participatory_processes 0.30.3 → 0.31.0.rc2
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/commands/decidim/participatory_processes/create_democratic_quality_indicators_page.rb +40 -0
- 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/helpers/decidim/participatory_processes/participatory_process_helper.rb +1 -1
- 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 +320 -26
- data/config/locales/ca.yml +320 -26
- data/config/locales/cs.yml +116 -25
- data/config/locales/de.yml +124 -26
- data/config/locales/el.yml +0 -21
- data/config/locales/en.yml +304 -25
- data/config/locales/es-MX.yml +320 -26
- data/config/locales/es-PY.yml +320 -26
- data/config/locales/es.yml +320 -26
- data/config/locales/eu.yml +305 -26
- data/config/locales/fi-plain.yml +304 -25
- data/config/locales/fi.yml +304 -25
- data/config/locales/fr-CA.yml +87 -25
- data/config/locales/fr.yml +87 -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 +305 -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 +87 -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 +17 -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 +30 -25
- data/lib/decidim/participatory_processes/participatory_space.rb +1 -4
- data/lib/decidim/participatory_processes/seeds.rb +5 -5
- data/lib/decidim/participatory_processes/test/factories.rb +2 -3
- data/lib/decidim/participatory_processes/version.rb +1 -1
- metadata +72 -21
- 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,16 @@ 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_landing_page_blocks: Duplikovat bloky vstupní strany
|
|
16
|
+
duplicate_steps: Duplikovat kroky
|
|
17
17
|
end_date: Datum ukončení
|
|
18
|
-
hashtag: Hashtag
|
|
19
18
|
hero_image: Domácí obrázek
|
|
20
19
|
import_attachments: Importovat přílohy
|
|
21
20
|
import_categories: Importovat kategorie
|
|
@@ -41,7 +40,6 @@ cs:
|
|
|
41
40
|
description: Popis
|
|
42
41
|
developer_group: Skupina propagátorů
|
|
43
42
|
group_url: Webová stránka
|
|
44
|
-
hashtag: Hashtag
|
|
45
43
|
hero_image: Obrázek
|
|
46
44
|
local_area: Oblast působnosti organizace
|
|
47
45
|
meta_scope: Metadata oblasti působnosti
|
|
@@ -92,15 +90,12 @@ cs:
|
|
|
92
90
|
admin:
|
|
93
91
|
actions:
|
|
94
92
|
activate: Aktivovat
|
|
95
|
-
configure: Konfigurovat
|
|
96
93
|
confirm_delete_process: Opravdu chcete odstranit tento proces? Pokud změníte názor, můžete jej obnovit později.
|
|
97
94
|
confirm_destroy: Potvrďte smazání
|
|
98
95
|
destroy: Odstranit
|
|
99
96
|
duplicate: Duplikát
|
|
100
97
|
edit: Upravit
|
|
101
98
|
import_process: Importovat
|
|
102
|
-
menu_hidden: Skrýt
|
|
103
|
-
moderate: Moderovat
|
|
104
99
|
new_process: Nový proces
|
|
105
100
|
new_process_group: Nová skupina procesů
|
|
106
101
|
new_process_step: Nový krok
|
|
@@ -118,7 +113,7 @@ cs:
|
|
|
118
113
|
participatory_process_groups: Skupiny procesů
|
|
119
114
|
participatory_process_groups_submenu:
|
|
120
115
|
info: Info
|
|
121
|
-
landing_page:
|
|
116
|
+
landing_page: Rozložení vstupní strany
|
|
122
117
|
participatory_processes: Procesy
|
|
123
118
|
participatory_processes_submenu:
|
|
124
119
|
attachment_collections: Složky
|
|
@@ -126,7 +121,7 @@ cs:
|
|
|
126
121
|
attachments: Přílohy
|
|
127
122
|
components: Komponenty
|
|
128
123
|
info: O tomto procesu
|
|
129
|
-
landing_page:
|
|
124
|
+
landing_page: Rozložení vstupní strany
|
|
130
125
|
moderations: Moderování
|
|
131
126
|
private_users: Členové
|
|
132
127
|
process_admins: Administrátoři procesu
|
|
@@ -142,16 +137,19 @@ cs:
|
|
|
142
137
|
name: Participační proces
|
|
143
138
|
participatory_process_group:
|
|
144
139
|
fields:
|
|
140
|
+
actions: Akce
|
|
145
141
|
title: Název
|
|
146
142
|
name: Skupina procesů
|
|
147
143
|
participatory_process_step:
|
|
148
144
|
fields:
|
|
145
|
+
actions: Akce
|
|
149
146
|
end_date: Datum ukončení
|
|
150
147
|
start_date: Datum zahájení
|
|
151
148
|
title: Titul
|
|
152
149
|
name: Participační krok procesu
|
|
153
150
|
participatory_process_user_role:
|
|
154
151
|
fields:
|
|
152
|
+
actions: Akce
|
|
155
153
|
email: E-mailem
|
|
156
154
|
name: Název
|
|
157
155
|
role: Role
|
|
@@ -159,16 +157,16 @@ cs:
|
|
|
159
157
|
roles:
|
|
160
158
|
admin: Správce
|
|
161
159
|
collaborator: Spolupracovník
|
|
160
|
+
evaluator: Hodnotitel
|
|
162
161
|
moderator: Moderátor
|
|
163
|
-
valuator: Hodnotitel
|
|
164
162
|
user:
|
|
165
163
|
fields:
|
|
166
164
|
invitation_accepted_at: Pozvánka byla přijata na
|
|
167
165
|
invitation_sent_at: Pozvánka odeslána na
|
|
168
166
|
published: Publikováno
|
|
169
|
-
|
|
167
|
+
participatory_process_duplicates:
|
|
170
168
|
new:
|
|
171
|
-
|
|
169
|
+
duplicate: Duplikovat
|
|
172
170
|
select: Vyberte, která data chcete duplikovat
|
|
173
171
|
title: Duplikovat participativní proces
|
|
174
172
|
participatory_process_groups:
|
|
@@ -269,7 +267,7 @@ cs:
|
|
|
269
267
|
update:
|
|
270
268
|
error: Při aktualizaci tohoto participačního procesu došlo k chybě.
|
|
271
269
|
success: Participační proces byl úspěšně aktualizován.
|
|
272
|
-
|
|
270
|
+
participatory_processes_duplicates:
|
|
273
271
|
create:
|
|
274
272
|
error: Při duplikaci tohoto participativního procesu došlo k problému.
|
|
275
273
|
success: Participativní proces byl úspěšně duplikován.
|
|
@@ -351,11 +349,6 @@ cs:
|
|
|
351
349
|
not_found: 'Typ procesu nebyl v databázi nalezen (ID: %{id}).'
|
|
352
350
|
menu:
|
|
353
351
|
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
352
|
open_data:
|
|
360
353
|
help:
|
|
361
354
|
participatory_processes:
|
|
@@ -366,7 +359,6 @@ cs:
|
|
|
366
359
|
developer_group: Skupina tvůrců procesu. Jedná se o organizaci, která proces prosazuje.
|
|
367
360
|
end_date: Datum ukončení procesu
|
|
368
361
|
follows_count: Počet uživatelů sledujících tento prostor
|
|
369
|
-
hashtag: Hashtag Procesu, používaný pro Twitter/X
|
|
370
362
|
id: Jedinečný identifikátor tohoto procesu
|
|
371
363
|
local_area: Místní oblast procesu. Tohle je oblast organizace, kde probíhá proces.
|
|
372
364
|
meta_scope: Rozsah metadat procesu
|
|
@@ -428,6 +420,80 @@ cs:
|
|
|
428
420
|
participatory_processes:
|
|
429
421
|
admin:
|
|
430
422
|
content_blocks:
|
|
423
|
+
democratic_quality_stats_settings_form:
|
|
424
|
+
announcement:
|
|
425
|
+
body_html: |-
|
|
426
|
+
<ul>
|
|
427
|
+
<li>Ty jsou automaticky počítány z dat Decidim. Jakmile publikujete blok obsahu, budou viditelné.</li>
|
|
428
|
+
<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>
|
|
429
|
+
</ul>
|
|
430
|
+
title: 'Tento blok obsahu obsahuje dva typy metrik:'
|
|
431
|
+
citizen_influence:
|
|
432
|
+
citizen_decisional_intervention:
|
|
433
|
+
legend: Ze všech fází procesu (od výběru problémů až po provádění dohledu), v kolika případech je veřejnost schopna přijímat rozhodnutí nebo přijímat exekutivní opatření?
|
|
434
|
+
options:
|
|
435
|
+
five: 80 - 100%
|
|
436
|
+
four: 60 - 80%
|
|
437
|
+
one: 0 - 20%
|
|
438
|
+
three: 40 - 60%
|
|
439
|
+
two: 20 - 40%
|
|
440
|
+
citizen_influence_level:
|
|
441
|
+
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ů?
|
|
442
|
+
options:
|
|
443
|
+
five: Účastníci byli zapojeni do rozhodování a správy zdrojů nebo implementace
|
|
444
|
+
four: Účastníci byli rozhodujícím způsobem zapojeni do rozhodování
|
|
445
|
+
one: Účastníci obdrželi informace od organizace
|
|
446
|
+
three: Účastníci kteří byli zapojeni do sdílení rozhodovacích pravomocí
|
|
447
|
+
two: Účastníci kteří byli konzultováni nebo poskytli organizaci zpětnou vazbu
|
|
448
|
+
name: Vliv občanů
|
|
449
|
+
inclusiveness:
|
|
450
|
+
description: Inkluzivita podle kulturního původu a funkční rozmanitosti.
|
|
451
|
+
digital_support_offered:
|
|
452
|
+
legend: Byla účastníkům nabídnuta digitální podpora?
|
|
453
|
+
options:
|
|
454
|
+
five: 'Ano'
|
|
455
|
+
two_five: Částečně
|
|
456
|
+
zero: 'Ne'
|
|
457
|
+
functional_diversity_invited:
|
|
458
|
+
options:
|
|
459
|
+
five: Dobrý
|
|
460
|
+
one: Nízký
|
|
461
|
+
two_five: Dostatečný
|
|
462
|
+
zero: Žádný
|
|
463
|
+
languages_communicated:
|
|
464
|
+
legend: Kolik jazyků bylo použito v rámci procesu?
|
|
465
|
+
options:
|
|
466
|
+
five: Více než polovina jazyků, jimiž se hovoří v komunitě
|
|
467
|
+
one: Jeden jazyk
|
|
468
|
+
two_five: Méně než polovina jazyků, jimiž se hovoří v komunitě
|
|
469
|
+
mobility_meeting_access:
|
|
470
|
+
legend: Byla místa konání osobních setkání přístupná lidem se sníženou pohyblivostí?
|
|
471
|
+
options:
|
|
472
|
+
five: 'Ano'
|
|
473
|
+
two_five: Částečně
|
|
474
|
+
zero: 'Ne'
|
|
475
|
+
name: Inkluzivita
|
|
476
|
+
participation_scheduling_times:
|
|
477
|
+
legend: Zasedání o účasti byla naplánována v různých časech (ranní, poledne, odpoledne, večer a víkendy).
|
|
478
|
+
options:
|
|
479
|
+
five: 'Ano'
|
|
480
|
+
two_five: Částečně
|
|
481
|
+
zero: 'Ne'
|
|
482
|
+
informativeness:
|
|
483
|
+
information_provided:
|
|
484
|
+
options:
|
|
485
|
+
five: Vždy
|
|
486
|
+
one: Téměř nikdy
|
|
487
|
+
two_five: Obvykle
|
|
488
|
+
zero: Nikdy
|
|
489
|
+
name: Informativita
|
|
490
|
+
published_information_clarity:
|
|
491
|
+
legend: Poskytují zveřejněné informace jasné informace o rozhodovacích mechanismech? (např. hlasování, konsensus, přímá jednání)
|
|
492
|
+
options:
|
|
493
|
+
five: Úpln jasné
|
|
494
|
+
one: Málo jasné
|
|
495
|
+
two_five: Dostatečně jasné
|
|
496
|
+
zero: Nejasné
|
|
431
497
|
highlighted_processes:
|
|
432
498
|
active: Aktivní
|
|
433
499
|
all: Vše
|
|
@@ -436,7 +502,7 @@ cs:
|
|
|
436
502
|
new_import:
|
|
437
503
|
accepted_types:
|
|
438
504
|
json: JSON
|
|
439
|
-
|
|
505
|
+
participatory_process_duplicates:
|
|
440
506
|
form:
|
|
441
507
|
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
508
|
participatory_process_groups:
|
|
@@ -468,6 +534,33 @@ cs:
|
|
|
468
534
|
title: Obecná informace
|
|
469
535
|
visibility: Viditelnost
|
|
470
536
|
content_blocks:
|
|
537
|
+
democratic_quality_stats:
|
|
538
|
+
automatic_metrics:
|
|
539
|
+
description: Tyto ukazatele se získávají automaticky z dat platformy.
|
|
540
|
+
indicators:
|
|
541
|
+
hybridization: Hybridizace
|
|
542
|
+
hybridization_tooltip: Tento ukazatel měří úroveň kombinace online a offline prostor během procesu
|
|
543
|
+
influence: Vliv občanů
|
|
544
|
+
influence_tooltip: Tento ukazatel měří míru vlivu občanů na přijaté návrhy a výsledky procesu.
|
|
545
|
+
traceability: Sledovatelnost
|
|
546
|
+
traceability_tooltip: Tento ukazatel měří transparentnost a sledovatelnost účastnického procesu. Odráží to, jak snadno mohou účastníci sledovat vývoj návrhů a ověřovat institucionální opatření prostřednictvím zveřejněných záznamů.
|
|
547
|
+
transparency: Odezva
|
|
548
|
+
transparency_tooltip: Tento ukazatel měří míru schopnosti organizace reagovat na vstupy účastníků, což odráží jejich angažovanost prostřednictvím oficiálních reakcí a realizovaných rozhodnutí.
|
|
549
|
+
name: Automatická měření
|
|
550
|
+
global_score:
|
|
551
|
+
description_html: Níže je uveden soubor ukazatelů používaných k posouzení demokratické kvality tohoto účastnického procesu. Další podrobnosti o tom, jak jsou vypočítány, naleznete v <a href="%{info_url}">informační stránce o demokratických ukazatelích kvality</a>.
|
|
552
|
+
name: Globální skóre
|
|
553
|
+
note: "*Orientační hodnoty se měří na stupnici od 1 do 5, kde 1 představuje nejnižší a 5 nejvyšší ukazatel kvality."
|
|
554
|
+
name: Ukazatel kvality
|
|
555
|
+
qualitative_metrics:
|
|
556
|
+
description: Tyto ukazatele se získávají z odpovědí na sebehodnocení, které vyplní správci platformy.
|
|
557
|
+
indicators:
|
|
558
|
+
citizen_influence: Vliv občanů
|
|
559
|
+
inclusiveness: Inkluzivita
|
|
560
|
+
inclusiveness_tooltip: Hodnocení, zda jsou zastoupeny různé zúčastněné strany.
|
|
561
|
+
informativeness: Informativita
|
|
562
|
+
informativeness_tooltip: Měří úroveň jasnosti a informací poskytovaných v rámci procesu.
|
|
563
|
+
name: Metriky sebehodnocení
|
|
471
564
|
extra_data:
|
|
472
565
|
name: Fáze a doba trvání
|
|
473
566
|
hero:
|
|
@@ -485,9 +578,6 @@ cs:
|
|
|
485
578
|
highlighted_processes:
|
|
486
579
|
active_spaces: Aktivní procesy
|
|
487
580
|
see_all_spaces: Zobrazit všechny procesy
|
|
488
|
-
participatory_process_steps:
|
|
489
|
-
index:
|
|
490
|
-
back_to_process: Zpět na stránku procesu
|
|
491
581
|
participatory_processes:
|
|
492
582
|
description:
|
|
493
583
|
area_name: Oblast
|
|
@@ -546,6 +636,7 @@ cs:
|
|
|
546
636
|
related_processes: Související procesy
|
|
547
637
|
statistics:
|
|
548
638
|
processes_count: Procesy
|
|
639
|
+
processes_count_tooltip: Počet veřejně přístupných participačních procesů.
|
|
549
640
|
layouts:
|
|
550
641
|
decidim:
|
|
551
642
|
participatory_process_groups:
|
data/config/locales/de.yml
CHANGED
|
@@ -5,17 +5,16 @@ 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_landing_page_blocks: Startseiten-Blöcke duplizieren
|
|
16
|
+
duplicate_steps: Schritte duplizieren
|
|
17
17
|
end_date: Enddatum
|
|
18
|
-
hashtag: Hashtag
|
|
19
18
|
hero_image: Hauptbild
|
|
20
19
|
import_attachments: Anhänge importieren
|
|
21
20
|
import_categories: Kategorien importieren
|
|
@@ -41,7 +40,6 @@ de:
|
|
|
41
40
|
description: Beschreibung
|
|
42
41
|
developer_group: Gruppe der Unterstützer
|
|
43
42
|
group_url: Website
|
|
44
|
-
hashtag: Hashtag
|
|
45
43
|
hero_image: Bild
|
|
46
44
|
local_area: Organisationsbereich
|
|
47
45
|
meta_scope: Informationen zum Bereich
|
|
@@ -86,15 +84,12 @@ de:
|
|
|
86
84
|
admin:
|
|
87
85
|
actions:
|
|
88
86
|
activate: Aktivieren
|
|
89
|
-
configure: Konfigurieren
|
|
90
87
|
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
88
|
confirm_destroy: Löschen bestätigen
|
|
92
89
|
destroy: Löschen
|
|
93
90
|
duplicate: Duplizieren
|
|
94
91
|
edit: Bearbeiten
|
|
95
92
|
import_process: Importieren
|
|
96
|
-
menu_hidden: Verbergen
|
|
97
|
-
moderate: Moderieren
|
|
98
93
|
new_process: Neuer Beteiligungsprozess
|
|
99
94
|
new_process_group: Neue Prozessgruppe
|
|
100
95
|
new_process_step: Neue Phase
|
|
@@ -112,7 +107,7 @@ de:
|
|
|
112
107
|
participatory_process_groups: Prozessgruppen
|
|
113
108
|
participatory_process_groups_submenu:
|
|
114
109
|
info: Info
|
|
115
|
-
landing_page:
|
|
110
|
+
landing_page: Startseiten-Layout
|
|
116
111
|
participatory_processes: Beteiligungsprozesse
|
|
117
112
|
participatory_processes_submenu:
|
|
118
113
|
attachment_collections: Ordner
|
|
@@ -120,7 +115,7 @@ de:
|
|
|
120
115
|
attachments: Anhänge
|
|
121
116
|
components: Komponenten
|
|
122
117
|
info: Über diesen Prozess
|
|
123
|
-
landing_page:
|
|
118
|
+
landing_page: Startseiten-Layout
|
|
124
119
|
moderations: Moderationen
|
|
125
120
|
private_users: Mitglieder
|
|
126
121
|
process_admins: Benutzer verarbeiten
|
|
@@ -136,16 +131,19 @@ de:
|
|
|
136
131
|
name: Beteiligungsprozess
|
|
137
132
|
participatory_process_group:
|
|
138
133
|
fields:
|
|
134
|
+
actions: Aktionen
|
|
139
135
|
title: Titel
|
|
140
136
|
name: Prozessgruppe
|
|
141
137
|
participatory_process_step:
|
|
142
138
|
fields:
|
|
139
|
+
actions: Aktionen
|
|
143
140
|
end_date: Enddatum
|
|
144
141
|
start_date: Anfangsdatum
|
|
145
142
|
title: Titel
|
|
146
143
|
name: Partizipativer Prozessschritt
|
|
147
144
|
participatory_process_user_role:
|
|
148
145
|
fields:
|
|
146
|
+
actions: Aktionen
|
|
149
147
|
email: Email
|
|
150
148
|
name: Name
|
|
151
149
|
role: Rolle
|
|
@@ -153,16 +151,16 @@ de:
|
|
|
153
151
|
roles:
|
|
154
152
|
admin: Administrator
|
|
155
153
|
collaborator: Mitarbeiter
|
|
154
|
+
evaluator: Bewertende Person
|
|
156
155
|
moderator: Moderator
|
|
157
|
-
valuator: Bewertende
|
|
158
156
|
user:
|
|
159
157
|
fields:
|
|
160
158
|
invitation_accepted_at: Einladung akzeptiert am
|
|
161
159
|
invitation_sent_at: Einladung gesendet am
|
|
162
160
|
published: Veröffentlicht
|
|
163
|
-
|
|
161
|
+
participatory_process_duplicates:
|
|
164
162
|
new:
|
|
165
|
-
|
|
163
|
+
duplicate: Duplizieren
|
|
166
164
|
select: Zu duplizierende Daten auswählen
|
|
167
165
|
title: Beteiligungsprozess duplizieren
|
|
168
166
|
participatory_process_groups:
|
|
@@ -263,7 +261,7 @@ de:
|
|
|
263
261
|
update:
|
|
264
262
|
error: Beim Aktualisieren dieses Beteiligungsprozesses ist ein Fehler aufgetreten.
|
|
265
263
|
success: Beteiligungsprozess erfolgreich aktualisiert.
|
|
266
|
-
|
|
264
|
+
participatory_processes_duplicates:
|
|
267
265
|
create:
|
|
268
266
|
error: Beim Duplizieren dieses Beteiligungsprozesses ist ein Fehler aufgetreten.
|
|
269
267
|
success: Beteiligungsprozess erfolgreich dupliziert.
|
|
@@ -345,11 +343,6 @@ de:
|
|
|
345
343
|
not_found: 'Der Prozesstyp wurde nicht in der Datenbank gefunden (ID: %{id}).'
|
|
346
344
|
menu:
|
|
347
345
|
processes: Beteiligungsprozesse
|
|
348
|
-
metrics:
|
|
349
|
-
participatory_processes:
|
|
350
|
-
description: Anzahl der Beteiligungsprozesse in dieser Organisation
|
|
351
|
-
object: Beteiligungsprozesse
|
|
352
|
-
title: Beteiligungsprozesse
|
|
353
346
|
open_data:
|
|
354
347
|
help:
|
|
355
348
|
participatory_processes:
|
|
@@ -360,7 +353,6 @@ de:
|
|
|
360
353
|
developer_group: Die Entwicklergruppe des Prozesses. Dies ist die Organisation, die den Prozess fördert.
|
|
361
354
|
end_date: Das Enddatum des Prozesses
|
|
362
355
|
follows_count: Die Anzahl Nutzende, die diesem Bereich folgen
|
|
363
|
-
hashtag: Der des Prozesses, verwendet für Twitter/X
|
|
364
356
|
id: Die eindeutige Bezeichnung des Prozesses
|
|
365
357
|
local_area: Der lokale Bereich des Prozesses. Dies ist der Organisationsbereich, in dem der Prozess stattfindet.
|
|
366
358
|
meta_scope: Die Bereichsmetadaten des Ergebnisses
|
|
@@ -420,6 +412,82 @@ de:
|
|
|
420
412
|
participatory_processes:
|
|
421
413
|
admin:
|
|
422
414
|
content_blocks:
|
|
415
|
+
democratic_quality_stats_settings_form:
|
|
416
|
+
announcement:
|
|
417
|
+
body_html: |-
|
|
418
|
+
<ul>
|
|
419
|
+
<li>Diese werden automatisch aus Decidim-Daten berechnet. Sie werden sichtbar, sobald Sie den Inhaltsblock veröffentlichen.</li>
|
|
420
|
+
<li>Diese basieren auf Ihren Antworten im folgenden Formular. Sie werden angezeigt, sobald Sie alle Fragen beantwortet haben.</li>
|
|
421
|
+
</ul>
|
|
422
|
+
title: 'Dieser Inhaltsblock enthält zwei Arten von Kennzahlen:'
|
|
423
|
+
citizen_influence:
|
|
424
|
+
citizen_decisional_intervention:
|
|
425
|
+
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?
|
|
426
|
+
options:
|
|
427
|
+
five: 80 - 100%
|
|
428
|
+
four: 60 - 80%
|
|
429
|
+
one: 0 - 20%
|
|
430
|
+
three: 40 - 60%
|
|
431
|
+
two: 20 - 40%
|
|
432
|
+
citizen_influence_level:
|
|
433
|
+
legend: Inwieweit hat das Volk die Entscheidungsbefugnis in diesem Prozess, von der einfachen Information bis hin zur entscheidenden Beeinflussung von Entscheidungen und der Ressourcenverwaltung?
|
|
434
|
+
options:
|
|
435
|
+
five: Teilnehmende waren an der Entscheidungsfindung und der Verwaltung der Ressourcen oder der Umsetzung beteiligt
|
|
436
|
+
four: Teilnehmende waren massgeblich an der Entscheidungsfindung beteiligt
|
|
437
|
+
one: Teilnehmende haben Informationen von der Organisation erhalten
|
|
438
|
+
three: Teilnehmende waren an der Entscheidungsbefugnis mitbeteiligt
|
|
439
|
+
two: Teilnehmende wurden beratend gefragt oder haben Feedback an die Organisation gegeben
|
|
440
|
+
name: Volkseinfluss
|
|
441
|
+
inclusiveness:
|
|
442
|
+
description: Inklusion nach kultureller Herkunft und funktionaler Vielfalt.
|
|
443
|
+
digital_support_offered:
|
|
444
|
+
legend: Wurde den Teilnehmenden digitale Unterstützung angeboten?
|
|
445
|
+
options:
|
|
446
|
+
five: 'Ja'
|
|
447
|
+
two_five: Teilweise
|
|
448
|
+
zero: 'Nein'
|
|
449
|
+
functional_diversity_invited:
|
|
450
|
+
legend: Wie wird die Vielfalt der Akteuren und Teilnehmenden in Bezug auf die Referenzbevölkerung in diesem Prozess bewertet?
|
|
451
|
+
options:
|
|
452
|
+
five: Gut
|
|
453
|
+
one: Tief
|
|
454
|
+
two_five: Ausreichend
|
|
455
|
+
zero: Keine
|
|
456
|
+
languages_communicated:
|
|
457
|
+
legend: Wie viele Sprachen wurden innerhalb des Prozesses verwendet?
|
|
458
|
+
options:
|
|
459
|
+
five: Mehr als die Hälfte der in der Gemeinschaft gesprochenen Sprachen
|
|
460
|
+
one: Eine Sprache
|
|
461
|
+
two_five: Weniger als die Hälfte der in der Gemeinschaft gesprochenen Sprachen
|
|
462
|
+
mobility_meeting_access:
|
|
463
|
+
legend: Waren die Veranstaltungsorte der physischen Veranstaltungen für Menschen mit eingeschränkter Mobilität zugänglich?
|
|
464
|
+
options:
|
|
465
|
+
five: 'Ja'
|
|
466
|
+
two_five: Teilweise
|
|
467
|
+
zero: 'Nein'
|
|
468
|
+
name: Inklusion
|
|
469
|
+
participation_scheduling_times:
|
|
470
|
+
legend: Die Teilnahme war zu verschiedenen Zeiten geplant (morgens, mittags, nachmittags, abends oder am Wochenende).
|
|
471
|
+
options:
|
|
472
|
+
five: 'Ja'
|
|
473
|
+
two_five:
|
|
474
|
+
zero: 'Nein'
|
|
475
|
+
informativeness:
|
|
476
|
+
information_provided:
|
|
477
|
+
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)
|
|
478
|
+
options:
|
|
479
|
+
five: Immer
|
|
480
|
+
one: Fast nie
|
|
481
|
+
two_five: Normalerweise
|
|
482
|
+
zero: Nie
|
|
483
|
+
name: Informationsgehalt
|
|
484
|
+
published_information_clarity:
|
|
485
|
+
legend: Bieten die veröffentlichten Informationen Klarheit über die Entscheidungsmechanismen? (z.B. Abstimmung, Konsens, direkte Verhandlungen)
|
|
486
|
+
options:
|
|
487
|
+
five: Volle Klarheit
|
|
488
|
+
one: Geringe Klarheit
|
|
489
|
+
two_five: Ausreichende Klarheit
|
|
490
|
+
zero: Keine Klarheit
|
|
423
491
|
highlighted_processes:
|
|
424
492
|
active: Aktiv
|
|
425
493
|
all: Alle
|
|
@@ -428,9 +496,9 @@ de:
|
|
|
428
496
|
new_import:
|
|
429
497
|
accepted_types:
|
|
430
498
|
json: JSON
|
|
431
|
-
|
|
499
|
+
participatory_process_duplicates:
|
|
432
500
|
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
|
|
501
|
+
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
502
|
participatory_process_groups:
|
|
435
503
|
form:
|
|
436
504
|
metadata: Metadaten
|
|
@@ -460,6 +528,35 @@ de:
|
|
|
460
528
|
title: Allgemeine Information
|
|
461
529
|
visibility: Sichtbarkeit
|
|
462
530
|
content_blocks:
|
|
531
|
+
democratic_quality_stats:
|
|
532
|
+
automatic_metrics:
|
|
533
|
+
description: Diese Indikatoren werden automatisch von den Plattformdaten abgerufen.
|
|
534
|
+
indicators:
|
|
535
|
+
hybridization: Hybridisierung
|
|
536
|
+
hybridization_tooltip: Dieser Indikator misst den Kombinationsgrad der Online- und Offline-Bestandteile des Prozesses
|
|
537
|
+
influence: Volkseinfluss
|
|
538
|
+
influence_tooltip: Dieser Indikator misst den Einfluss der Bürger auf die akzeptierten Vorschläge und die Ergebnisse des Prozesses.
|
|
539
|
+
traceability: Nachvollziehbarkeit
|
|
540
|
+
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.
|
|
541
|
+
transparency: Antwortverhalten
|
|
542
|
+
transparency_tooltip: Dieser Indikator misst die Reaktionsfähigkeit der Organisation auf die Teilnehmendeneingaben und spiegelt ihr Engagement durch offizielle Reaktionen und umgesetzte Entscheidungen wider.
|
|
543
|
+
name: Automatische Kennzahlen
|
|
544
|
+
global_score:
|
|
545
|
+
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>.
|
|
546
|
+
name: Globale Punktzahl
|
|
547
|
+
note: "*Die Richtwerte werden auf einer Skala von 1 bis 5 gemessen, wobei 1 den niedrigsten und 5 den höchsten Qualitätsindikator darstellt."
|
|
548
|
+
tooltip: Berechnet als Durchschnitt aller Dimensionen
|
|
549
|
+
name: Qualitätsindikator
|
|
550
|
+
qualitative_metrics:
|
|
551
|
+
description: Diese Indikatoren stammen von den Antworten auf eine von den Verwaltern der Plattform ausgefüllte Selbstbeurteilungsbefragung.
|
|
552
|
+
indicators:
|
|
553
|
+
citizen_influence: Volkseinfluss
|
|
554
|
+
citizen_influence_tooltip: Misst die Auswirkungen der Teilnehmenden auf die Entscheidungsfindung.
|
|
555
|
+
inclusiveness: Inklusion
|
|
556
|
+
inclusiveness_tooltip: Bewertet, ob verschiedene Interessengruppen fair vertreten sind.
|
|
557
|
+
informativeness: Informationsgehalt
|
|
558
|
+
informativeness_tooltip: Misst den Grad an Klarheit und Information innerhalb des Prozesses.
|
|
559
|
+
name: Kennzahlen der Selbsteinschätzung
|
|
463
560
|
extra_data:
|
|
464
561
|
name: Phase & Dauer
|
|
465
562
|
hero:
|
|
@@ -477,9 +574,6 @@ de:
|
|
|
477
574
|
highlighted_processes:
|
|
478
575
|
active_spaces: Aktive Prozesse
|
|
479
576
|
see_all_spaces: Alle Prozesse anzeigen
|
|
480
|
-
participatory_process_steps:
|
|
481
|
-
index:
|
|
482
|
-
back_to_process: Zurück zur Prozessseite
|
|
483
577
|
participatory_processes:
|
|
484
578
|
description:
|
|
485
579
|
area_name: Gebiet
|
|
@@ -528,8 +622,12 @@ de:
|
|
|
528
622
|
belongs_to_group: Dieser Prozess gehört zu
|
|
529
623
|
private_space: Dies ist ein privater Prozess
|
|
530
624
|
related_processes: Ähnliche Beteiligungsprozesse
|
|
625
|
+
static_pages:
|
|
626
|
+
democratic_quality_indicators:
|
|
627
|
+
title: Demokratische Qualitätsindikatoren
|
|
531
628
|
statistics:
|
|
532
629
|
processes_count: Beteiligungsprozesse
|
|
630
|
+
processes_count_tooltip: Die Anzahl der Beteiligungsprozesse, die öffentlich zugänglich sind.
|
|
533
631
|
layouts:
|
|
534
632
|
decidim:
|
|
535
633
|
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: Όλοι οι τύποι
|