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/id-ID.yml
CHANGED
|
@@ -5,15 +5,11 @@ id:
|
|
|
5
5
|
participatory_process:
|
|
6
6
|
announcement: Pengumuman
|
|
7
7
|
area_id: Daerah
|
|
8
|
-
copy_categories: Salin kategori
|
|
9
|
-
copy_components: Salin komponen
|
|
10
|
-
copy_steps: Salin langkah
|
|
11
8
|
decidim_area_id: Daerah
|
|
12
9
|
description: Deskripsi
|
|
13
10
|
developer_group: Grup promotor
|
|
14
11
|
domain: Domain
|
|
15
12
|
end_date: Tanggal akhir
|
|
16
|
-
hashtag: Tanda pagar
|
|
17
13
|
hero_image: Gambar rumah
|
|
18
14
|
local_area: Area organisasi
|
|
19
15
|
meta_scope: Ruang lingkup metadata
|
|
@@ -60,7 +56,6 @@ id:
|
|
|
60
56
|
admin:
|
|
61
57
|
actions:
|
|
62
58
|
activate: Mengaktifkan
|
|
63
|
-
configure: Konfigurasikan
|
|
64
59
|
confirm_destroy: Konfirmasikan penghapusan
|
|
65
60
|
destroy: Menghapus
|
|
66
61
|
duplicate: Duplikat
|
|
@@ -114,9 +109,6 @@ id:
|
|
|
114
109
|
fields:
|
|
115
110
|
invitation_accepted_at: Undangan diterima di
|
|
116
111
|
invitation_sent_at: Undangan dikirim pada
|
|
117
|
-
participatory_process_copies:
|
|
118
|
-
new:
|
|
119
|
-
copy: Salinan
|
|
120
112
|
participatory_process_groups:
|
|
121
113
|
destroy:
|
|
122
114
|
success: Kelompok proses partisipatif berhasil dihapus.
|
|
@@ -237,11 +229,6 @@ id:
|
|
|
237
229
|
title: Apa itu proses partisipatif?
|
|
238
230
|
menu:
|
|
239
231
|
processes: Proses
|
|
240
|
-
metrics:
|
|
241
|
-
participatory_processes:
|
|
242
|
-
description: Jumlah proses partisipatif dalam organisasi ini
|
|
243
|
-
object: proses partisipatif
|
|
244
|
-
title: Proses partisipatif
|
|
245
232
|
participatory_process_groups:
|
|
246
233
|
content_blocks:
|
|
247
234
|
stats:
|
data/config/locales/is-IS.yml
CHANGED
|
@@ -4,13 +4,9 @@ is:
|
|
|
4
4
|
attributes:
|
|
5
5
|
participatory_process:
|
|
6
6
|
announcement: Tilkynning
|
|
7
|
-
copy_categories: Afrita flokka
|
|
8
|
-
copy_components: Afrita hluti
|
|
9
|
-
copy_steps: Afrita skref
|
|
10
7
|
description: Lýsing
|
|
11
8
|
domain: Lén
|
|
12
9
|
end_date: Loka dagsetning
|
|
13
|
-
hashtag: Kassamerki
|
|
14
10
|
hero_image: Heima mynd
|
|
15
11
|
meta_scope: Gildissvið lýsigagna
|
|
16
12
|
participatory_process_group_id: Vinnuhópur
|
|
@@ -40,7 +36,6 @@ is:
|
|
|
40
36
|
admin:
|
|
41
37
|
actions:
|
|
42
38
|
activate: Virkja
|
|
43
|
-
configure: Stilla
|
|
44
39
|
duplicate: Afrit
|
|
45
40
|
edit: Breyta
|
|
46
41
|
preview: Preview
|
|
@@ -83,9 +78,6 @@ is:
|
|
|
83
78
|
fields:
|
|
84
79
|
invitation_accepted_at: Boð samþykkt á
|
|
85
80
|
invitation_sent_at: Boð sendur á
|
|
86
|
-
participatory_process_copies:
|
|
87
|
-
new:
|
|
88
|
-
copy: Afrita
|
|
89
81
|
participatory_process_groups:
|
|
90
82
|
edit:
|
|
91
83
|
title: Breyta ferli hópsins
|
|
@@ -133,9 +125,6 @@ is:
|
|
|
133
125
|
email_subject: Uppfærsla á %{participatory_space_title}
|
|
134
126
|
menu:
|
|
135
127
|
processes: Ferli
|
|
136
|
-
metrics:
|
|
137
|
-
participatory_processes:
|
|
138
|
-
title: Þátttökuferli
|
|
139
128
|
participatory_process_groups:
|
|
140
129
|
content_blocks:
|
|
141
130
|
stats:
|
data/config/locales/it.yml
CHANGED
|
@@ -5,15 +5,11 @@ it:
|
|
|
5
5
|
participatory_process:
|
|
6
6
|
announcement: Avviso
|
|
7
7
|
area_id: Area
|
|
8
|
-
copy_categories: Copia le categorie
|
|
9
|
-
copy_components: Copia le componenti
|
|
10
|
-
copy_steps: Copia le fasi
|
|
11
8
|
decidim_area_id: Area
|
|
12
9
|
description: Descrizione
|
|
13
10
|
developer_group: Promotore
|
|
14
11
|
domain: Dominio
|
|
15
12
|
end_date: Data di fine
|
|
16
|
-
hashtag: Hashtag
|
|
17
13
|
hero_image: Immagine della Home Page
|
|
18
14
|
local_area: Area organizzativa
|
|
19
15
|
meta_scope: Metadati di ambito
|
|
@@ -34,7 +30,6 @@ it:
|
|
|
34
30
|
description: Descrizione
|
|
35
31
|
developer_group: Gruppo promotore
|
|
36
32
|
group_url: Sito web
|
|
37
|
-
hashtag: Hashtag
|
|
38
33
|
hero_image: Immagine
|
|
39
34
|
local_area: Area di organizzazione
|
|
40
35
|
meta_scope: Ambito metadati
|
|
@@ -73,7 +68,6 @@ it:
|
|
|
73
68
|
admin:
|
|
74
69
|
actions:
|
|
75
70
|
activate: Attiva
|
|
76
|
-
configure: Configura
|
|
77
71
|
confirm_destroy: Conferma cancellazione
|
|
78
72
|
destroy: Elimina
|
|
79
73
|
duplicate: Duplica
|
|
@@ -91,14 +85,12 @@ it:
|
|
|
91
85
|
participatory_process_groups: Gruppo di processi
|
|
92
86
|
participatory_process_groups_submenu:
|
|
93
87
|
info: Informazioni
|
|
94
|
-
landing_page: Pagina di destinazione
|
|
95
88
|
participatory_processes: Processi
|
|
96
89
|
participatory_processes_submenu:
|
|
97
90
|
attachment_collections: Cartelle
|
|
98
91
|
attachment_files: File
|
|
99
92
|
attachments: Allegati
|
|
100
93
|
components: Componenti
|
|
101
|
-
landing_page: Pagina di destinazione
|
|
102
94
|
moderations: Moderazione
|
|
103
95
|
process_admins: Amministratrici/tori di processo
|
|
104
96
|
steps: Fasi (Steps)
|
|
@@ -130,14 +122,10 @@ it:
|
|
|
130
122
|
admin: Amministratore
|
|
131
123
|
collaborator: Collaboratore
|
|
132
124
|
moderator: Moderatore
|
|
133
|
-
valuator: Valutatore
|
|
134
125
|
user:
|
|
135
126
|
fields:
|
|
136
127
|
invitation_accepted_at: Invito accettato su
|
|
137
128
|
invitation_sent_at: Invito inviato a
|
|
138
|
-
participatory_process_copies:
|
|
139
|
-
new:
|
|
140
|
-
copy: Copia
|
|
141
129
|
participatory_process_groups:
|
|
142
130
|
destroy:
|
|
143
131
|
success: Gruppo di processi partecipativi cancellato con successo.
|
|
@@ -276,11 +264,6 @@ it:
|
|
|
276
264
|
title: Cos'è un processo partecipativo?
|
|
277
265
|
menu:
|
|
278
266
|
processes: Processi
|
|
279
|
-
metrics:
|
|
280
|
-
participatory_processes:
|
|
281
|
-
description: Numero di processi partecipativi in questa organizzazione
|
|
282
|
-
object: processi partecipativi
|
|
283
|
-
title: Processi partecipativi
|
|
284
267
|
participatory_process_groups:
|
|
285
268
|
content_blocks:
|
|
286
269
|
html_1:
|
|
@@ -335,9 +318,6 @@ it:
|
|
|
335
318
|
name: Processi evidenziati
|
|
336
319
|
index:
|
|
337
320
|
title: Processi partecipativi
|
|
338
|
-
participatory_process_steps:
|
|
339
|
-
index:
|
|
340
|
-
back_to_process: Torna alla pagina di processo
|
|
341
321
|
participatory_processes:
|
|
342
322
|
filters:
|
|
343
323
|
counters:
|
data/config/locales/ja.yml
CHANGED
|
@@ -5,17 +5,15 @@ ja:
|
|
|
5
5
|
participatory_process:
|
|
6
6
|
announcement: お知らせ
|
|
7
7
|
area_id: エリア
|
|
8
|
-
copy_categories: カテゴリをコピー
|
|
9
|
-
copy_components: コンポーネントをコピー
|
|
10
|
-
copy_landing_page_blocks: ランディングページブロックを複製
|
|
11
|
-
copy_steps: フェーズをコピー
|
|
12
8
|
decidim_area_id: エリア
|
|
13
9
|
description: 説明
|
|
14
10
|
developer_group: プロモーターグループ
|
|
15
11
|
document: ドキュメント
|
|
16
12
|
domain: ドメイン
|
|
13
|
+
duplicate_categories: カテゴリを複製
|
|
14
|
+
duplicate_components: コンポーネントを複製
|
|
15
|
+
duplicate_steps: ステップを複製
|
|
17
16
|
end_date: 終了日
|
|
18
|
-
hashtag: ハッシュタグ
|
|
19
17
|
hero_image: ホーム画像
|
|
20
18
|
import_attachments: 添付ファイルをインポート
|
|
21
19
|
import_categories: カテゴリをインポート
|
|
@@ -41,7 +39,6 @@ ja:
|
|
|
41
39
|
description: 説明
|
|
42
40
|
developer_group: プロモーターグループ
|
|
43
41
|
group_url: ウェブサイト
|
|
44
|
-
hashtag: ハッシュタグ
|
|
45
42
|
hero_image: 画像
|
|
46
43
|
local_area: 組織エリア
|
|
47
44
|
meta_scope: スコープメタデータ
|
|
@@ -83,15 +80,12 @@ ja:
|
|
|
83
80
|
admin:
|
|
84
81
|
actions:
|
|
85
82
|
activate: 有効にする
|
|
86
|
-
configure: 設定
|
|
87
83
|
confirm_delete_process: このプロセスを削除してもよろしいですか?気が変わった場合は、後で復元できます。
|
|
88
84
|
confirm_destroy: 削除の確認
|
|
89
85
|
destroy: 削除
|
|
90
86
|
duplicate: 複製
|
|
91
87
|
edit: 編集
|
|
92
88
|
import_process: インポート
|
|
93
|
-
menu_hidden: 隠す
|
|
94
|
-
moderate: モデレート
|
|
95
89
|
new_process: 新規参加型プロセス
|
|
96
90
|
new_process_group: 新規参加型プロセスグループ
|
|
97
91
|
new_process_step: 新しいフェーズ
|
|
@@ -109,7 +103,7 @@ ja:
|
|
|
109
103
|
participatory_process_groups: 参加型プロセスグループ
|
|
110
104
|
participatory_process_groups_submenu:
|
|
111
105
|
info: 情報
|
|
112
|
-
landing_page:
|
|
106
|
+
landing_page: ランディングページのレイアウト
|
|
113
107
|
participatory_processes: 参加型プロセス
|
|
114
108
|
participatory_processes_submenu:
|
|
115
109
|
attachment_collections: フォルダ
|
|
@@ -117,7 +111,7 @@ ja:
|
|
|
117
111
|
attachments: 添付ファイル
|
|
118
112
|
components: コンポーネント
|
|
119
113
|
info: このプロセスについて
|
|
120
|
-
landing_page:
|
|
114
|
+
landing_page: ランディングページのレイアウト
|
|
121
115
|
moderations: モデレーション
|
|
122
116
|
private_users: メンバー
|
|
123
117
|
process_admins: 参加型プロセス管理者
|
|
@@ -133,16 +127,19 @@ ja:
|
|
|
133
127
|
name: 参加型プロセス
|
|
134
128
|
participatory_process_group:
|
|
135
129
|
fields:
|
|
130
|
+
actions: アクション
|
|
136
131
|
title: タイトル
|
|
137
132
|
name: 参加型プロセスグループ
|
|
138
133
|
participatory_process_step:
|
|
139
134
|
fields:
|
|
135
|
+
actions: アクション
|
|
140
136
|
end_date: 終了日
|
|
141
137
|
start_date: 開始日
|
|
142
138
|
title: タイトル
|
|
143
139
|
name: プロセスのフェーズ
|
|
144
140
|
participatory_process_user_role:
|
|
145
141
|
fields:
|
|
142
|
+
actions: アクション
|
|
146
143
|
email: Eメールアドレス
|
|
147
144
|
name: 名前
|
|
148
145
|
role: ロール
|
|
@@ -150,16 +147,16 @@ ja:
|
|
|
150
147
|
roles:
|
|
151
148
|
admin: 管理者
|
|
152
149
|
collaborator: コラボレーター
|
|
150
|
+
evaluator: 評価者
|
|
153
151
|
moderator: モデレーター
|
|
154
|
-
valuator: 評価者
|
|
155
152
|
user:
|
|
156
153
|
fields:
|
|
157
154
|
invitation_accepted_at: 招待が承認されました
|
|
158
155
|
invitation_sent_at: 招待状が送信された日時
|
|
159
156
|
published: 公開済み
|
|
160
|
-
|
|
157
|
+
participatory_process_duplicates:
|
|
161
158
|
new:
|
|
162
|
-
|
|
159
|
+
duplicate: 複製
|
|
163
160
|
select: 複製したいデータを選択してください
|
|
164
161
|
title: 参加型プロセスを複製
|
|
165
162
|
participatory_process_groups:
|
|
@@ -259,7 +256,7 @@ ja:
|
|
|
259
256
|
update:
|
|
260
257
|
error: この参加型プロセスの更新に問題がありました。
|
|
261
258
|
success: 参加型プロセスが正常に更新されました。
|
|
262
|
-
|
|
259
|
+
participatory_processes_duplicates:
|
|
263
260
|
create:
|
|
264
261
|
error: 参加型プロセスの複製中に問題が発生しました。
|
|
265
262
|
success: 参加型プロセスを複製しました。
|
|
@@ -341,11 +338,6 @@ ja:
|
|
|
341
338
|
not_found: 'プロセス種別がデータベース上に見つかりませんでした (ID: %{id})。'
|
|
342
339
|
menu:
|
|
343
340
|
processes: 参加型プロセス
|
|
344
|
-
metrics:
|
|
345
|
-
participatory_processes:
|
|
346
|
-
description: この組織の参加型プロセス数
|
|
347
|
-
object: 参加型プロセス
|
|
348
|
-
title: 参加型プロセス
|
|
349
341
|
open_data:
|
|
350
342
|
help:
|
|
351
343
|
participatory_processes:
|
|
@@ -356,7 +348,6 @@ ja:
|
|
|
356
348
|
developer_group: プロセスの開発者グループ。これはプロセスをプロモートしている組織です
|
|
357
349
|
end_date: プロセスの終了日時
|
|
358
350
|
follows_count: このスペースをフォローしているユーザー数
|
|
359
|
-
hashtag: Twitter/Xで使用されるプロセスのハッシュタグ
|
|
360
351
|
id: このプロセスの固有ID
|
|
361
352
|
local_area: プロセスのローカルエリア。これはプロセスが行われている組織のエリアです。
|
|
362
353
|
meta_scope: プロセスのスコープメタデータ
|
|
@@ -415,6 +406,82 @@ ja:
|
|
|
415
406
|
participatory_processes:
|
|
416
407
|
admin:
|
|
417
408
|
content_blocks:
|
|
409
|
+
democratic_quality_stats_settings_form:
|
|
410
|
+
announcement:
|
|
411
|
+
body_html: |-
|
|
412
|
+
<ul>
|
|
413
|
+
<li>これらは Decidim のデータから自動的に算出されます。コンテンツブロックを公開すると表示されます。</li>
|
|
414
|
+
<li>これらは、以下のフォームでのあなたの回答に基づいて表示されます。すべての質問に回答すると表示されます。</li>
|
|
415
|
+
</ul>
|
|
416
|
+
title: 'このコンテンツ ブロックには 2 種類の指標が含まれています:'
|
|
417
|
+
citizen_influence:
|
|
418
|
+
citizen_decisional_intervention:
|
|
419
|
+
legend: プロセスのすべてのフェーズ(課題の選定から実行の監督まで)のうち、どのくらいのフェーズで市民が意思決定や実行的な行動を行う権限を持っていますか?
|
|
420
|
+
options:
|
|
421
|
+
five: 80 - 100%
|
|
422
|
+
four: 60 - 80%
|
|
423
|
+
one: 0 - 20%
|
|
424
|
+
three: 40 - 60%
|
|
425
|
+
two: 20 - 40%
|
|
426
|
+
citizen_influence_level:
|
|
427
|
+
legend: このプロセスにおいて、市民はどの程度の意思決定権限を有しているのでしょうか?情報を受け取るだけの段階から、決定に影響力を行使し、資源を管理する段階まで、幅広い範囲についてお聞かせください。
|
|
428
|
+
options:
|
|
429
|
+
five: 参加者は、意思決定やリソースの管理、または実施に関与しました
|
|
430
|
+
four: 参加者は、意思決定において決定的に関与しました
|
|
431
|
+
one: 参加者は、組織から情報を受け取りました
|
|
432
|
+
three: 参加者は、意思決定権を共有する形で関与しました
|
|
433
|
+
two: 参加者は、諮問的に意見を求められるか、組織にフィードバックを提供しました
|
|
434
|
+
name: 市民の影響度
|
|
435
|
+
inclusiveness:
|
|
436
|
+
description: 文化的背景および機能的多様性に基づく包摂性。
|
|
437
|
+
digital_support_offered:
|
|
438
|
+
legend: デジタルサポートは参加者に提供されていますか?
|
|
439
|
+
options:
|
|
440
|
+
five: 'はい'
|
|
441
|
+
two_five: 部分的に
|
|
442
|
+
zero: 'いいえ'
|
|
443
|
+
functional_diversity_invited:
|
|
444
|
+
legend: プロセスにおいて、参照される母集団に対して、関係者および参加者の多様性の程度はどのように評価されますか?
|
|
445
|
+
options:
|
|
446
|
+
five: 良い
|
|
447
|
+
one: 物足りない
|
|
448
|
+
two_five: 十分
|
|
449
|
+
zero: なし
|
|
450
|
+
languages_communicated:
|
|
451
|
+
legend: このプロセスで使用されている言語は何ヶ国語ですか?
|
|
452
|
+
options:
|
|
453
|
+
five: コミュニティで話されている言語の半分以上
|
|
454
|
+
one: 1言語
|
|
455
|
+
two_five: コミュニティで話されている言語の半分以下
|
|
456
|
+
mobility_meeting_access:
|
|
457
|
+
legend: 対面でのミーティングの会場は、移動が困難な方でも利用できるものでしたか?
|
|
458
|
+
options:
|
|
459
|
+
five: 'はい'
|
|
460
|
+
two_five: 部分的に
|
|
461
|
+
zero: 'いいえ'
|
|
462
|
+
name: 包摂性
|
|
463
|
+
participation_scheduling_times:
|
|
464
|
+
legend: 参加セッションは様々な時間(朝、真昼、午後、夕方、週末)に予定されています。
|
|
465
|
+
options:
|
|
466
|
+
five: 'はい'
|
|
467
|
+
two_five: 部分的に
|
|
468
|
+
zero: 'いいえ'
|
|
469
|
+
informativeness:
|
|
470
|
+
information_provided:
|
|
471
|
+
legend: 参加者が議題に影響を与える能力についての情報は提供されていますか?(プロセスやイニシアチブでの伝達、および各ディベートセッションの冒頭において)
|
|
472
|
+
options:
|
|
473
|
+
five: 常にある
|
|
474
|
+
one: ほとんどない
|
|
475
|
+
two_five: 通常ある
|
|
476
|
+
zero: まったくない
|
|
477
|
+
name: 情報量
|
|
478
|
+
published_information_clarity:
|
|
479
|
+
legend: 公開された情報は、意思決定の仕組みについて明確に示していますか?(例:投票、合意形成、直接交渉)
|
|
480
|
+
options:
|
|
481
|
+
five: 完全に明かされている
|
|
482
|
+
one: あまり明かされていない
|
|
483
|
+
two_five: 十分に明かされている
|
|
484
|
+
zero: まったく明かされていない
|
|
418
485
|
highlighted_processes:
|
|
419
486
|
active: アクティブ
|
|
420
487
|
all: すべて
|
|
@@ -423,9 +490,9 @@ ja:
|
|
|
423
490
|
new_import:
|
|
424
491
|
accepted_types:
|
|
425
492
|
json: JSON
|
|
426
|
-
|
|
493
|
+
participatory_process_duplicates:
|
|
427
494
|
form:
|
|
428
|
-
slug_help_html: 'URL
|
|
495
|
+
slug_help_html: 'URLスラグは、このプロセスを指すURLを生成するために使用されます。 英字、数字、ハイフンのみを受け付け、英字で始める必要があります。例: %{url}'
|
|
429
496
|
participatory_process_groups:
|
|
430
497
|
form:
|
|
431
498
|
metadata: メタデータ
|
|
@@ -455,6 +522,35 @@ ja:
|
|
|
455
522
|
title: 一般情報
|
|
456
523
|
visibility: 公開範囲
|
|
457
524
|
content_blocks:
|
|
525
|
+
democratic_quality_stats:
|
|
526
|
+
automatic_metrics:
|
|
527
|
+
description: これらの指標は、プラットフォームデータから自動的に取得されます。
|
|
528
|
+
indicators:
|
|
529
|
+
hybridization: ハイブリッド化
|
|
530
|
+
hybridization_tooltip: プロセス中のオンラインスペースとオフラインスペースの組み合わせレベルを測定します
|
|
531
|
+
influence: 市民の影響度
|
|
532
|
+
influence_tooltip: この指標は、受け入れられた提案とプロセスの結果に対する市民の影響のレベルを測定します。
|
|
533
|
+
traceability: トレーサビリティ
|
|
534
|
+
traceability_tooltip: この指標は、参加型プロセスの透明性とトレーサビリティを測るものです。参加者が提案の進展をどれだけ容易に追跡できるか、また公的な記録を通じて制度的な対応を検証できるかを示します。
|
|
535
|
+
transparency: 応答性
|
|
536
|
+
transparency_tooltip: この指標は、参加者からの意見に対する組織の応答度を測定します。公式の回答と実施された決定を通じて、組織の関与の程度を示します。
|
|
537
|
+
name: 自動指標
|
|
538
|
+
global_score:
|
|
539
|
+
description_html: 以下に、この参加型プロセスの民主的質を評価するために用いられる指標セットを示します。各指標の算出方法についての詳細は、<a href="%{info_url}">民主的品質指標に関する説明ページ</a>をご覧ください。
|
|
540
|
+
name: グローバルスコア
|
|
541
|
+
note: "*評価基準は1から5までの数値で示され、1が最も低い参加指標、5が最も高い参加指標を表します。"
|
|
542
|
+
tooltip: すべての値の平均値として計算されます
|
|
543
|
+
name: 品質指標
|
|
544
|
+
qualitative_metrics:
|
|
545
|
+
description: これらの指標は、プラットフォーム管理者が回答した自己評価調査の結果から取得されています。
|
|
546
|
+
indicators:
|
|
547
|
+
citizen_influence: 市民の影響
|
|
548
|
+
citizen_influence_tooltip: 参加者の意思決定への影響のレベルを測定します。
|
|
549
|
+
inclusiveness: 包摂性
|
|
550
|
+
inclusiveness_tooltip: さまざまな利害関係者が公平に代表されているかどうかを評価します。
|
|
551
|
+
informativeness: 情報量
|
|
552
|
+
informativeness_tooltip: プロセス内で提供される明確さと情報のレベルを測定します。
|
|
553
|
+
name: 自己評価指標
|
|
458
554
|
extra_data:
|
|
459
555
|
name: フェーズと期間
|
|
460
556
|
hero:
|
|
@@ -472,9 +568,6 @@ ja:
|
|
|
472
568
|
highlighted_processes:
|
|
473
569
|
active_spaces: アクティブなプロセス
|
|
474
570
|
see_all_spaces: すべてのプロセスを見る
|
|
475
|
-
participatory_process_steps:
|
|
476
|
-
index:
|
|
477
|
-
back_to_process: 参加型プロセスのページに戻る
|
|
478
571
|
participatory_processes:
|
|
479
572
|
description:
|
|
480
573
|
area_name: エリア
|
|
@@ -519,8 +612,12 @@ ja:
|
|
|
519
612
|
belongs_to_group: このプロセスの所属グループ
|
|
520
613
|
private_space: これはプライベートな参加型プロセスです
|
|
521
614
|
related_processes: 関連する参加型プロセス
|
|
615
|
+
static_pages:
|
|
616
|
+
democratic_quality_indicators:
|
|
617
|
+
title: 民主的品質指標
|
|
522
618
|
statistics:
|
|
523
619
|
processes_count: プロセス
|
|
620
|
+
processes_count_tooltip: 公開されている参加型プロセスの数です。
|
|
524
621
|
layouts:
|
|
525
622
|
decidim:
|
|
526
623
|
participatory_process_groups:
|
data/config/locales/lb.yml
CHANGED
|
@@ -5,15 +5,11 @@ lb:
|
|
|
5
5
|
participatory_process:
|
|
6
6
|
announcement: Ukënnegung
|
|
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
|
domain: Domäne
|
|
15
12
|
end_date: Enddatum
|
|
16
|
-
hashtag: Hashtag
|
|
17
13
|
hero_image: Hauptbild
|
|
18
14
|
local_area: Organisationsbereich
|
|
19
15
|
meta_scope: Bereichs-Metadaten
|
|
@@ -34,7 +30,6 @@ lb:
|
|
|
34
30
|
description: Beschreibung
|
|
35
31
|
developer_group: Gruppe der Unterstützer
|
|
36
32
|
group_url: Website
|
|
37
|
-
hashtag: Hashtag
|
|
38
33
|
hero_image: Bild
|
|
39
34
|
local_area: Organisationsbereich
|
|
40
35
|
meta_scope: Informationen zum Bereich
|
|
@@ -73,7 +68,6 @@ lb:
|
|
|
73
68
|
admin:
|
|
74
69
|
actions:
|
|
75
70
|
activate: Aktivieren
|
|
76
|
-
configure: Konfigurieren
|
|
77
71
|
confirm_destroy: Läsche bestätegen
|
|
78
72
|
destroy: Läschen
|
|
79
73
|
duplicate: Duplizieren
|
|
@@ -91,14 +85,12 @@ lb:
|
|
|
91
85
|
participatory_process_groups: Prozessgruppen
|
|
92
86
|
participatory_process_groups_submenu:
|
|
93
87
|
info: Info
|
|
94
|
-
landing_page: Startseite
|
|
95
88
|
participatory_processes: Beteiligungsprozesse
|
|
96
89
|
participatory_processes_submenu:
|
|
97
90
|
attachment_collections: Dossieren
|
|
98
91
|
attachment_files: Dateien
|
|
99
92
|
attachments: Unhäng
|
|
100
93
|
components: Komponenten
|
|
101
|
-
landing_page: Startseite
|
|
102
94
|
moderations: Moderationen
|
|
103
95
|
process_admins: Benutzer verarbeiten
|
|
104
96
|
steps: Phasen
|
|
@@ -130,14 +122,10 @@ lb:
|
|
|
130
122
|
admin: Administrator
|
|
131
123
|
collaborator: Mitarbeiter
|
|
132
124
|
moderator: Moderator
|
|
133
|
-
valuator: Schätzer
|
|
134
125
|
user:
|
|
135
126
|
fields:
|
|
136
127
|
invitation_accepted_at: Einladung akzeptiert am
|
|
137
128
|
invitation_sent_at: Einladung gesendet am
|
|
138
|
-
participatory_process_copies:
|
|
139
|
-
new:
|
|
140
|
-
copy: Kopieren
|
|
141
129
|
participatory_process_groups:
|
|
142
130
|
destroy:
|
|
143
131
|
success: Beteiligungsprozess erfolgreich gelöscht.
|
|
@@ -252,11 +240,6 @@ lb:
|
|
|
252
240
|
title: Was ist ein partizipativer Prozess?
|
|
253
241
|
menu:
|
|
254
242
|
processes: Bedeelegungsprozesser
|
|
255
|
-
metrics:
|
|
256
|
-
participatory_processes:
|
|
257
|
-
description: Anzahl der Beteiligungsprozesse in dieser Organisation
|
|
258
|
-
object: Bedeelegungsprozesser
|
|
259
|
-
title: Bedeelegungsprozesser
|
|
260
243
|
participatory_process_groups:
|
|
261
244
|
content_blocks:
|
|
262
245
|
html_1:
|
|
@@ -285,9 +268,6 @@ lb:
|
|
|
285
268
|
name: Hervorgehobene Beteiligungsprozesse
|
|
286
269
|
index:
|
|
287
270
|
title: Bedeelegungsprozesser
|
|
288
|
-
participatory_process_steps:
|
|
289
|
-
index:
|
|
290
|
-
back_to_process: Zurück zur Prozessseite
|
|
291
271
|
participatory_processes:
|
|
292
272
|
filters:
|
|
293
273
|
counters:
|
data/config/locales/lt.yml
CHANGED
|
@@ -5,16 +5,12 @@ lt:
|
|
|
5
5
|
participatory_process:
|
|
6
6
|
announcement: Pranešimas
|
|
7
7
|
area_id: Aplinka
|
|
8
|
-
copy_categories: Kopijuoti kategorijas
|
|
9
|
-
copy_components: Kopijuoti komponentus
|
|
10
|
-
copy_steps: Kopijuoti veiksmus
|
|
11
8
|
decidim_area_id: Aplinka
|
|
12
9
|
description: Aprašymas
|
|
13
10
|
developer_group: Rėmėjų grupė
|
|
14
11
|
document: Dokumentas
|
|
15
12
|
domain: Domenas
|
|
16
13
|
end_date: Pabaigos data
|
|
17
|
-
hashtag: Grotažymė
|
|
18
14
|
hero_image: Pradžios paveikslėlis
|
|
19
15
|
import_attachments: Importuoti priedus
|
|
20
16
|
import_categories: Importuoti kategorijas
|
|
@@ -40,7 +36,6 @@ lt:
|
|
|
40
36
|
description: Aprašymas
|
|
41
37
|
developer_group: Rėmėjų grupė
|
|
42
38
|
group_url: Tinklalapis
|
|
43
|
-
hashtag: Grotažymė
|
|
44
39
|
hero_image: Paveikslėlis
|
|
45
40
|
local_area: Organizacijos aplinka
|
|
46
41
|
meta_scope: Srities metaduomenys
|
|
@@ -91,13 +86,11 @@ lt:
|
|
|
91
86
|
admin:
|
|
92
87
|
actions:
|
|
93
88
|
activate: Aktyvuoti
|
|
94
|
-
configure: Konfigūruoti
|
|
95
89
|
confirm_destroy: Patvirtinti ištrynimą
|
|
96
90
|
destroy: Ištrinti
|
|
97
91
|
duplicate: Sukurti kopiją
|
|
98
92
|
edit: Redaguoti
|
|
99
93
|
import_process: Importuoti
|
|
100
|
-
moderate: Moderuoti
|
|
101
94
|
new_process: Naujas procesas
|
|
102
95
|
new_process_group: Nauja procesų grupė
|
|
103
96
|
new_process_step: Naujas etapas
|
|
@@ -110,14 +103,12 @@ lt:
|
|
|
110
103
|
participatory_process_groups: Procesų grupės
|
|
111
104
|
participatory_process_groups_submenu:
|
|
112
105
|
info: Informacija
|
|
113
|
-
landing_page: Pagrindinis puslapis
|
|
114
106
|
participatory_processes: Procesai
|
|
115
107
|
participatory_processes_submenu:
|
|
116
108
|
attachment_collections: Aplankai
|
|
117
109
|
attachment_files: Dokumentai
|
|
118
110
|
attachments: Priedai
|
|
119
111
|
components: Komponentai
|
|
120
|
-
landing_page: Pagrindinis puslapis
|
|
121
112
|
moderations: Moderavimai
|
|
122
113
|
process_admins: Proceso administratoriai
|
|
123
114
|
steps: Etapai
|
|
@@ -149,14 +140,10 @@ lt:
|
|
|
149
140
|
admin: Administratorius
|
|
150
141
|
collaborator: Bendraautorius
|
|
151
142
|
moderator: Moderatorius
|
|
152
|
-
valuator: Vertintojas
|
|
153
143
|
user:
|
|
154
144
|
fields:
|
|
155
145
|
invitation_accepted_at: Kvietimas priimtas
|
|
156
146
|
invitation_sent_at: Kvietimas išsiųstas
|
|
157
|
-
participatory_process_copies:
|
|
158
|
-
new:
|
|
159
|
-
copy: Kopijuoti
|
|
160
147
|
participatory_process_groups:
|
|
161
148
|
destroy:
|
|
162
149
|
success: Dalyvaujamojo proceso grupė pašalinta.
|
|
@@ -310,11 +297,6 @@ lt:
|
|
|
310
297
|
not_found: 'Proceso tipas duomenų bazėje nerastas (ID: %{id}).'
|
|
311
298
|
menu:
|
|
312
299
|
processes: Procesai
|
|
313
|
-
metrics:
|
|
314
|
-
participatory_processes:
|
|
315
|
-
description: Dalyvaujamųjų procesų skaičius šioje organizacijoje
|
|
316
|
-
object: dalyvaujamieji procesai
|
|
317
|
-
title: Dalyvaujamieji procesai
|
|
318
300
|
participatory_process_groups:
|
|
319
301
|
content_blocks:
|
|
320
302
|
extra_data:
|
|
@@ -396,9 +378,6 @@ lt:
|
|
|
396
378
|
highlighted_processes:
|
|
397
379
|
active_spaces: Aktyvūs procesai
|
|
398
380
|
see_all_spaces: Žiūrėti visus procesus
|
|
399
|
-
participatory_process_steps:
|
|
400
|
-
index:
|
|
401
|
-
back_to_process: Grįžti į procesų puslapį
|
|
402
381
|
participatory_processes:
|
|
403
382
|
description:
|
|
404
383
|
area_name: Aplinka
|
data/config/locales/lv.yml
CHANGED
|
@@ -5,15 +5,11 @@ lv:
|
|
|
5
5
|
participatory_process:
|
|
6
6
|
announcement: Paziņojums
|
|
7
7
|
area_id: Joma
|
|
8
|
-
copy_categories: Kopēt kategorijas
|
|
9
|
-
copy_components: Kopēt komponentus
|
|
10
|
-
copy_steps: Kopēt soļus
|
|
11
8
|
decidim_area_id: Joma
|
|
12
9
|
description: Apraksts
|
|
13
10
|
developer_group: Atbalstītāju grupa
|
|
14
11
|
domain: Domēns
|
|
15
12
|
end_date: Beigu datums
|
|
16
|
-
hashtag: Tēmturis
|
|
17
13
|
hero_image: Sākuma attēls
|
|
18
14
|
local_area: Organizācijas joma
|
|
19
15
|
meta_scope: Tvēruma metadati
|
|
@@ -66,7 +62,6 @@ lv:
|
|
|
66
62
|
admin:
|
|
67
63
|
actions:
|
|
68
64
|
activate: Aktivizēt
|
|
69
|
-
configure: Konfigurēt
|
|
70
65
|
confirm_destroy: Apstiprināt dzēšanu
|
|
71
66
|
destroy: Dzēst
|
|
72
67
|
duplicate: Dublēt
|
|
@@ -117,14 +112,10 @@ lv:
|
|
|
117
112
|
admin: Administrators
|
|
118
113
|
collaborator: Līdzizstrādātājs
|
|
119
114
|
moderator: Moderators
|
|
120
|
-
valuator: Vērtētājs
|
|
121
115
|
user:
|
|
122
116
|
fields:
|
|
123
117
|
invitation_accepted_at: Ielūgums pieņemts
|
|
124
118
|
invitation_sent_at: Ielūgumus nosūtīts
|
|
125
|
-
participatory_process_copies:
|
|
126
|
-
new:
|
|
127
|
-
copy: Kopēt
|
|
128
119
|
participatory_process_groups:
|
|
129
120
|
destroy:
|
|
130
121
|
success: Līdzdalības procesa grupa ir veiksmīgi dzēsta.
|
|
@@ -263,11 +254,6 @@ lv:
|
|
|
263
254
|
title: Kas ir līdzdalības process?
|
|
264
255
|
menu:
|
|
265
256
|
processes: Procesi
|
|
266
|
-
metrics:
|
|
267
|
-
participatory_processes:
|
|
268
|
-
description: Līdzdalības procesu skaits šajā organizācijā
|
|
269
|
-
object: līdzdalības procesi
|
|
270
|
-
title: Līdzdalības procesi
|
|
271
257
|
participatory_process_groups:
|
|
272
258
|
content_blocks:
|
|
273
259
|
stats:
|