decidim-participatory_processes 0.30.0 → 0.30.2
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/commands/decidim/participatory_processes/admin/copy_participatory_process.rb +34 -0
- data/app/controllers/decidim/participatory_processes/participatory_processes_controller.rb +1 -1
- data/app/forms/decidim/participatory_processes/admin/participatory_process_copy_form.rb +1 -0
- data/app/permissions/decidim/participatory_processes/permissions.rb +4 -6
- data/app/serializers/decidim/participatory_processes/participatory_process_importer.rb +7 -4
- data/app/views/decidim/participatory_processes/admin/participatory_process_copies/_form.html.erb +4 -0
- data/app/views/decidim/participatory_processes/admin/participatory_processes/_process_row.html.erb +1 -1
- data/app/views/decidim/participatory_processes/admin/participatory_processes/index.html.erb +11 -9
- data/config/locales/ar.yml +0 -6
- data/config/locales/bg.yml +0 -6
- data/config/locales/ca-IT.yml +2 -2
- data/config/locales/ca.yml +2 -2
- data/config/locales/cs.yml +5 -3
- data/config/locales/de.yml +13 -13
- data/config/locales/el.yml +1 -6
- data/config/locales/es-MX.yml +4 -4
- data/config/locales/es-PY.yml +4 -4
- data/config/locales/es.yml +2 -2
- data/config/locales/eu.yml +3 -3
- data/config/locales/fi-plain.yml +5 -3
- data/config/locales/fi.yml +2 -0
- data/config/locales/fr-CA.yml +3 -3
- data/config/locales/fr.yml +3 -3
- data/config/locales/gl.yml +1 -6
- data/config/locales/hu.yml +1 -6
- data/config/locales/id-ID.yml +0 -6
- data/config/locales/is-IS.yml +0 -2
- data/config/locales/it.yml +1 -6
- data/config/locales/ja.yml +2 -2
- data/config/locales/lb.yml +1 -2
- data/config/locales/lt.yml +0 -6
- data/config/locales/lv.yml +0 -6
- data/config/locales/nl.yml +1 -6
- data/config/locales/no.yml +0 -6
- data/config/locales/pl.yml +1 -7
- data/config/locales/pt-BR.yml +1 -6
- data/config/locales/pt.yml +1 -6
- data/config/locales/ro-RO.yml +1 -6
- data/config/locales/ru.yml +0 -6
- data/config/locales/sk.yml +0 -6
- data/config/locales/sv.yml +5 -5
- data/config/locales/tr-TR.yml +1 -6
- data/config/locales/uk.yml +0 -6
- data/config/locales/zh-CN.yml +0 -6
- data/config/locales/zh-TW.yml +1 -6
- data/lib/decidim/participatory_processes/menu.rb +1 -1
- data/lib/decidim/participatory_processes/version.rb +1 -1
- metadata +10 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9dfb3b14eed79e4decb75418d6bfeee8d55db420a6482555c5e6750ab16fc81a
|
4
|
+
data.tar.gz: b3cefb856a915c0b22e811d716c264039e399bcc768b88194d04aaa2500f7695
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 73b96bead3f5403f84865e8be0be9148e475cc7ad83c53c044deae885307ad748287d40655d0e47f23907be2a5600ec9e33109b806d0c65b905742bbbae8f264
|
7
|
+
data.tar.gz: 880adda6eb23f04cb81f502ff003da08351617075d5eb2fdd0342d7e81ff2cc29c021d585114f76cbed0a2dd2b9b08255e7c356ca41d3c89faa6f56196b389a8
|
@@ -31,6 +31,7 @@ module Decidim
|
|
31
31
|
copy_participatory_process_attachments
|
32
32
|
copy_participatory_process_steps if @form.copy_steps?
|
33
33
|
copy_participatory_process_components if @form.copy_components?
|
34
|
+
copy_landing_page_blocks if @form.copy_landing_page_blocks?
|
34
35
|
end
|
35
36
|
end
|
36
37
|
|
@@ -108,6 +109,39 @@ module Decidim
|
|
108
109
|
acc.update(@steps_relationship[step_id.to_s] => settings)
|
109
110
|
end
|
110
111
|
end
|
112
|
+
|
113
|
+
def copy_landing_page_blocks
|
114
|
+
blocks = Decidim::ContentBlock.where(scoped_resource_id: @participatory_process.id, scope_name: "participatory_process_homepage",
|
115
|
+
organization: @participatory_process.organization)
|
116
|
+
return if blocks.blank?
|
117
|
+
|
118
|
+
blocks.each do |block|
|
119
|
+
new_block = Decidim::ContentBlock.create!(
|
120
|
+
organization: @copied_process.organization,
|
121
|
+
scope_name: "participatory_process_homepage",
|
122
|
+
scoped_resource_id: @copied_process.id,
|
123
|
+
manifest_name: block.manifest_name,
|
124
|
+
settings: block.settings,
|
125
|
+
weight: block.weight,
|
126
|
+
published_at: block.published_at.present? ? @copied_process.created_at : nil # determine if block is active/inactive
|
127
|
+
)
|
128
|
+
copy_block_attachments(block, new_block) if block.attachments.present?
|
129
|
+
end
|
130
|
+
end
|
131
|
+
|
132
|
+
def copy_block_attachments(block, new_block)
|
133
|
+
block.attachments.map(&:name).each do |name|
|
134
|
+
original_image = block.images_container.send(name).blob
|
135
|
+
next if original_image.blank?
|
136
|
+
|
137
|
+
new_block.images_container.send("#{name}=", ActiveStorage::Blob.create_and_upload!(
|
138
|
+
io: StringIO.new(original_image.download),
|
139
|
+
filename: "image.png",
|
140
|
+
content_type: block.images_container.background_image.blob.content_type
|
141
|
+
))
|
142
|
+
new_block.save!
|
143
|
+
end
|
144
|
+
end
|
111
145
|
end
|
112
146
|
end
|
113
147
|
end
|
@@ -16,6 +16,7 @@ module Decidim
|
|
16
16
|
attribute :slug, String
|
17
17
|
attribute :copy_steps, Boolean
|
18
18
|
attribute :copy_components, Boolean
|
19
|
+
attribute :copy_landing_page_blocks, Boolean
|
19
20
|
|
20
21
|
validates :slug, presence: true, format: { with: Decidim::ParticipatoryProcess.slug_format }
|
21
22
|
validates :title, translatable_presence: true
|
@@ -3,8 +3,6 @@
|
|
3
3
|
module Decidim
|
4
4
|
module ParticipatoryProcesses
|
5
5
|
class Permissions < Decidim::DefaultPermissions
|
6
|
-
include Decidim::UserRoleChecker
|
7
|
-
|
8
6
|
def permissions
|
9
7
|
user_can_enter_processes_space_area?
|
10
8
|
user_can_enter_process_groups_space_area?
|
@@ -135,7 +133,7 @@ module Decidim
|
|
135
133
|
return true unless process.private_space
|
136
134
|
return false unless user
|
137
135
|
|
138
|
-
user.admin || process.users.include?(user)
|
136
|
+
user.admin || user_has_any_role?(user, process, broad_check: true) || process.users.include?(user)
|
139
137
|
end
|
140
138
|
|
141
139
|
# Only organization admins can enter the process groups space area.
|
@@ -156,7 +154,7 @@ module Decidim
|
|
156
154
|
permission_action.subject == :space_area &&
|
157
155
|
context.fetch(:space_name, nil) == :processes
|
158
156
|
|
159
|
-
toggle_allow(user.admin? || has_manageable_processes?)
|
157
|
+
toggle_allow(user.admin? || user_has_any_role?(user, process, broad_check: true) || has_manageable_processes?)
|
160
158
|
end
|
161
159
|
|
162
160
|
# Only organization admins can manage process groups.
|
@@ -246,7 +244,7 @@ module Decidim
|
|
246
244
|
:process_step,
|
247
245
|
:process_user_role,
|
248
246
|
:export_space,
|
249
|
-
:
|
247
|
+
:share_token,
|
250
248
|
:import
|
251
249
|
].include?(permission_action.subject)
|
252
250
|
allow! if is_allowed
|
@@ -265,7 +263,7 @@ module Decidim
|
|
265
263
|
:process_step,
|
266
264
|
:process_user_role,
|
267
265
|
:export_space,
|
268
|
-
:
|
266
|
+
:share_token,
|
269
267
|
:import
|
270
268
|
].include?(permission_action.subject)
|
271
269
|
allow! if is_allowed
|
@@ -21,6 +21,7 @@ module Decidim
|
|
21
21
|
def import(attributes, _user, opts)
|
22
22
|
title = opts[:title]
|
23
23
|
slug = opts[:slug]
|
24
|
+
process_group = import_process_group(attributes["participatory_process_group"]) unless attributes["participatory_process_group"].nil?
|
24
25
|
Decidim.traceability.perform_action!(:create, ParticipatoryProcess, @user, visibility: "all") do
|
25
26
|
@imported_process = ParticipatoryProcess.new(
|
26
27
|
organization: @organization,
|
@@ -41,7 +42,7 @@ module Decidim
|
|
41
42
|
end_date: attributes["end_date"],
|
42
43
|
announcement: attributes["announcement"],
|
43
44
|
private_space: attributes["private_space"],
|
44
|
-
participatory_process_group:
|
45
|
+
participatory_process_group: process_group
|
45
46
|
)
|
46
47
|
@imported_process.attached_uploader(:hero_image).remote_url = attributes["remote_hero_image_url"] if attributes["remote_hero_image_url"].present?
|
47
48
|
|
@@ -111,9 +112,11 @@ module Decidim
|
|
111
112
|
end
|
112
113
|
end
|
113
114
|
|
114
|
-
attachments["attachment_collections"].
|
115
|
-
|
116
|
-
|
115
|
+
unless attachments["attachment_collections"].empty?
|
116
|
+
attachments["attachment_collections"].map do |collection|
|
117
|
+
Decidim.traceability.perform_action!("create", AttachmentCollection, @user) do
|
118
|
+
create_attachment_collection(collection)
|
119
|
+
end
|
117
120
|
end
|
118
121
|
end
|
119
122
|
end
|
data/app/views/decidim/participatory_processes/admin/participatory_processes/_process_row.html.erb
CHANGED
@@ -36,7 +36,7 @@
|
|
36
36
|
<span class="action-space icon"></span>
|
37
37
|
<% end %>
|
38
38
|
<% else %>
|
39
|
-
<% if allowed_to? :read, :
|
39
|
+
<% if allowed_to? :read, :share_token, current_participatory_space: process %>
|
40
40
|
<%= icon_link_to "share-line", decidim_admin_participatory_processes.participatory_process_share_tokens_path(process), t("actions.share_tokens", scope: "decidim.admin"), class: "action-icon--new" %>
|
41
41
|
<% else %>
|
42
42
|
<span class="action-space icon"></span>
|
@@ -16,14 +16,16 @@
|
|
16
16
|
</tbody>
|
17
17
|
</table>
|
18
18
|
</div>
|
19
|
-
|
20
|
-
|
21
|
-
<%=
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
19
|
+
<% if allowed_to? :read, :process, trashable_deleted_resource: @participatory_processes %>
|
20
|
+
<div class="card mt-4">
|
21
|
+
<%= link_to manage_trash_participatory_processes_path, class: "flex items-center underline text-secondary" do %>
|
22
|
+
<%= icon "delete-bin-2-line", class: "mr-2 fill-current text-secondary", role: "img" %>
|
23
|
+
<%= t("actions.view_deleted_processes", scope: "decidim.admin") %>
|
24
|
+
<span class="ml-2">
|
25
|
+
<%= icon_with_tooltip("information-line", t("tooltips.deleted_processes_info", scope: "decidim.admin")) %>
|
26
|
+
</span>
|
27
|
+
<% end %>
|
28
|
+
</div>
|
29
|
+
<% end %>
|
28
30
|
|
29
31
|
<%= decidim_paginate @participatory_processes %>
|
data/config/locales/ar.yml
CHANGED
@@ -134,8 +134,6 @@ ar:
|
|
134
134
|
participatory_process_copies:
|
135
135
|
new:
|
136
136
|
copy: نسخ
|
137
|
-
select: حدد البيانات التي ترغب في تكرارها
|
138
|
-
title: عملية تشاركية مكررة
|
139
137
|
participatory_process_groups:
|
140
138
|
destroy:
|
141
139
|
success: تم حذف مجموعة العملية التشاركية بنجاح.
|
@@ -214,10 +212,6 @@ ar:
|
|
214
212
|
update:
|
215
213
|
error: حدثت مشكلة أثناء تحديث هذه العملية التشاركية.
|
216
214
|
success: عملية المشاركة تم تحديثها بنجاح.
|
217
|
-
participatory_processes_copies:
|
218
|
-
create:
|
219
|
-
error: كانت هناك مشكلة في تكرار هذه العملية التشاركية.
|
220
|
-
success: عملية المشاركة تتكرر بنجاح.
|
221
215
|
participatory_processes_group:
|
222
216
|
create:
|
223
217
|
error: كانت هناك مشكلة في إنشاء مجموعة عملية تشاركية جديدة.
|
data/config/locales/bg.yml
CHANGED
@@ -157,8 +157,6 @@ bg:
|
|
157
157
|
participatory_process_copies:
|
158
158
|
new:
|
159
159
|
copy: Копиране
|
160
|
-
select: Изберете кои данни искате да дублирате
|
161
|
-
title: Дублиране на процеси на участие
|
162
160
|
participatory_process_groups:
|
163
161
|
destroy:
|
164
162
|
success: Групата на процеса на участие беше изтрита успешно.
|
@@ -254,10 +252,6 @@ bg:
|
|
254
252
|
update:
|
255
253
|
error: Възникна проблем при актуализирането на този процес на участие.
|
256
254
|
success: Процесът на участие беше актуализиран успешно.
|
257
|
-
participatory_processes_copies:
|
258
|
-
create:
|
259
|
-
error: Възникна проблем при дублирането на този процес на участие.
|
260
|
-
success: Процесът на участие беше дублиран успешно.
|
261
255
|
participatory_processes_group:
|
262
256
|
create:
|
263
257
|
error: Възникна проблем при създаването на нова група на процеса на участие.
|
data/config/locales/ca-IT.yml
CHANGED
@@ -163,7 +163,7 @@ ca-IT:
|
|
163
163
|
new:
|
164
164
|
copy: Còpia
|
165
165
|
select: Selecciona quines dades vols duplicar
|
166
|
-
title:
|
166
|
+
title: Duplicar el procés participatiu
|
167
167
|
participatory_process_groups:
|
168
168
|
destroy:
|
169
169
|
error: Hi ha hagut un error en eliminar el grup de processos participatius.
|
@@ -263,7 +263,7 @@ ca-IT:
|
|
263
263
|
success: El procés participatiu s'ha actualitzat correctament.
|
264
264
|
participatory_processes_copies:
|
265
265
|
create:
|
266
|
-
error: S'ha produït un error en duplicar
|
266
|
+
error: S'ha produït un error en duplicar aquest procés participatiu.
|
267
267
|
success: El procés participatiu ha estat duplicat correctament.
|
268
268
|
participatory_processes_group:
|
269
269
|
create:
|
data/config/locales/ca.yml
CHANGED
@@ -163,7 +163,7 @@ ca:
|
|
163
163
|
new:
|
164
164
|
copy: Còpia
|
165
165
|
select: Selecciona quines dades vols duplicar
|
166
|
-
title:
|
166
|
+
title: Duplicar el procés participatiu
|
167
167
|
participatory_process_groups:
|
168
168
|
destroy:
|
169
169
|
error: Hi ha hagut un error en eliminar el grup de processos participatius.
|
@@ -263,7 +263,7 @@ ca:
|
|
263
263
|
success: El procés participatiu s'ha actualitzat correctament.
|
264
264
|
participatory_processes_copies:
|
265
265
|
create:
|
266
|
-
error: S'ha produït un error en duplicar
|
266
|
+
error: S'ha produït un error en duplicar aquest procés participatiu.
|
267
267
|
success: El procés participatiu ha estat duplicat correctament.
|
268
268
|
participatory_processes_group:
|
269
269
|
create:
|
data/config/locales/cs.yml
CHANGED
@@ -169,7 +169,7 @@ cs:
|
|
169
169
|
new:
|
170
170
|
copy: Kopírovat
|
171
171
|
select: Vyberte, která data chcete duplikovat
|
172
|
-
title:
|
172
|
+
title: Duplikovat participativní proces
|
173
173
|
participatory_process_groups:
|
174
174
|
destroy:
|
175
175
|
error: Došlo k chybě při zničení skupiny participačních procesů.
|
@@ -270,8 +270,8 @@ cs:
|
|
270
270
|
success: Participační proces byl úspěšně aktualizován.
|
271
271
|
participatory_processes_copies:
|
272
272
|
create:
|
273
|
-
error: Při
|
274
|
-
success:
|
273
|
+
error: Při duplikaci tohoto participativního procesu došlo k problému.
|
274
|
+
success: Participativní proces byl úspěšně duplikován.
|
275
275
|
participatory_processes_group:
|
276
276
|
create:
|
277
277
|
error: Došlo k chybě při vytváření nové skupiny účastnických procesů.
|
@@ -417,6 +417,8 @@ cs:
|
|
417
417
|
few: "%{count} procesy"
|
418
418
|
many: "%{count} procesů"
|
419
419
|
other: "%{count} procesy"
|
420
|
+
related_processes:
|
421
|
+
help: Všechny vybrané procesy budou přiřazeny k této skupině, včetně těch, které jsou již přiřazeny do jiných skupin.
|
420
422
|
show:
|
421
423
|
title: Skupiny účastnických procesů
|
422
424
|
participatory_process_steps:
|
data/config/locales/de.yml
CHANGED
@@ -116,7 +116,7 @@ de:
|
|
116
116
|
participatory_processes_submenu:
|
117
117
|
attachment_collections: Ordner
|
118
118
|
attachment_files: Dateien
|
119
|
-
attachments:
|
119
|
+
attachments: Anhänge
|
120
120
|
components: Komponenten
|
121
121
|
info: Über diesen Prozess
|
122
122
|
landing_page: Startseite
|
@@ -162,7 +162,7 @@ de:
|
|
162
162
|
participatory_process_copies:
|
163
163
|
new:
|
164
164
|
copy: Kopieren
|
165
|
-
select:
|
165
|
+
select: Zu duplizierende Daten auswählen
|
166
166
|
title: Beteiligungsprozess duplizieren
|
167
167
|
participatory_process_groups:
|
168
168
|
destroy:
|
@@ -205,7 +205,7 @@ de:
|
|
205
205
|
error:
|
206
206
|
active_step: Der aktive Schritt kann nicht gelöscht werden.
|
207
207
|
last_step: Der letzte Schritt eines Prozesses kann nicht gelöscht werden.
|
208
|
-
success:
|
208
|
+
success: Beteiligungsprozessschritt erfolgreich gelöscht.
|
209
209
|
edit:
|
210
210
|
cta_deprecated:
|
211
211
|
body_html: |-
|
@@ -246,7 +246,7 @@ de:
|
|
246
246
|
participatory_processes:
|
247
247
|
create:
|
248
248
|
error: Beim Erstellen eines neuen Beteiligungsprozesses ist ein Fehler aufgetreten.
|
249
|
-
success:
|
249
|
+
success: Beteiligungsprozess erfolgreich erstellt. Konfigurieren Sie als nächstes die Phasen.
|
250
250
|
edit:
|
251
251
|
update: Aktualisieren
|
252
252
|
index:
|
@@ -258,14 +258,14 @@ de:
|
|
258
258
|
title: Gelöschte Beteiligungsprozesse
|
259
259
|
new:
|
260
260
|
create: Erstellen
|
261
|
-
title: Neuer
|
261
|
+
title: Neuer Beteiligungsprozess
|
262
262
|
update:
|
263
263
|
error: Beim Aktualisieren dieses Beteiligungsprozesses ist ein Fehler aufgetreten.
|
264
|
-
success:
|
264
|
+
success: Beteiligungsprozess erfolgreich aktualisiert.
|
265
265
|
participatory_processes_copies:
|
266
266
|
create:
|
267
267
|
error: Beim Duplizieren dieses Beteiligungsprozesses ist ein Fehler aufgetreten.
|
268
|
-
success:
|
268
|
+
success: Beteiligungsprozess erfolgreich dupliziert.
|
269
269
|
participatory_processes_group:
|
270
270
|
create:
|
271
271
|
error: Beim Erstellen einer neuen partizipativen Prozessgruppe ist ein Fehler aufgetreten.
|
@@ -323,21 +323,21 @@ de:
|
|
323
323
|
email_subject: Sie wurden als %{role} für "%{resource_title}" ausgewählt.
|
324
324
|
notification_title: Sie wurden als %{role} für den Beteiligungsprozess <a href="%{resource_url}">%{resource_title}</a> ausgewählt.
|
325
325
|
step_activated:
|
326
|
-
email_intro: 'Der Prozessschritt %{resource_title} ist jetzt aktiv in %{participatory_space_title}. Sie
|
326
|
+
email_intro: 'Der Prozessschritt %{resource_title} ist jetzt aktiv in %{participatory_space_title}. Sehen Sie es sich auf dieser Seite an:'
|
327
327
|
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{participatory_space_title} folgen. Falls Sie keine solchen Benachrichtigungen mehr erhalten möchten, besuchen Sie den obigen Link.
|
328
328
|
email_subject: Eine Aktualisierung auf %{participatory_space_title}
|
329
329
|
notification_title: Der Prozessschritt %{resource_title} ist jetzt aktiv in <a href="%{resource_path}">%{participatory_space_title}</a>
|
330
330
|
step_changed:
|
331
|
-
email_intro: 'Die Daten für den Schritt %{resource_title} bei %{participatory_space_title} wurden aktualisiert. Sie
|
331
|
+
email_intro: 'Die Daten für den Schritt %{resource_title} bei %{participatory_space_title} wurden aktualisiert. Sehen Sie es sich auf dieser Seite an:'
|
332
332
|
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{participatory_space_title} folgen. Falls Sie keine solchen Benachrichtigungen mehr erhalten möchten, besuchen Sie den obigen Link.
|
333
333
|
email_subject: Eine Aktualisierung auf %{participatory_space_title}
|
334
334
|
notification_title: Die Daten für den Prozessschritt <a href="%{resource_path}">%{resource_title}</a> in <a href="%{participatory_space_url}">%{participatory_space_title}</a> wurden aktualisiert.
|
335
335
|
help:
|
336
336
|
participatory_spaces:
|
337
337
|
participatory_processes:
|
338
|
-
contextual: "<p>Ein <strong>
|
338
|
+
contextual: "<p>Ein <strong>Beteiligungsprozess</strong> ist eine Abfolge von partizipativen Aktivitäten (z.B. zuerst eine Umfrage ausfüllen, dann Vorschläge machen, diese an physischen oder virtuellen Veranstaltungen zu diskutieren, und sie schließlich zu priorisieren) mit dem Ziel, ein bestimmtes Thema zu definieren und Entscheidungen dazu zu treffen.</p> <p>Beispiele für Beteiligungsprozesse sind: ein Verfahren zur Wahl von Ausschussmitgliedern (bei dem die Kandidaturen zuerst präsentiert und anschließend debattiert werden, und schließlich eine Kandidatur ausgewählt wird), partizipative Budgets (bei denen Vorschläge gemacht und wirtschaftlich bewertet werden und über das verfügbare Geld abgestimmt wird), ein strategischer Planungsprozess, die gemeinschaftliche Ausarbeitung einer Vorschrift oder Norm, die Gestaltung eines städtischen Raums oder die Erstellung einer öffentlichen Strategie.</p>\n"
|
339
339
|
page: "<p>Ein <strong>Partizipationsprozess</strong> ist eine Folge von Partizipations-Aktivitäten (z.B. zuerst eine Umfrage ausfüllen, dann Vorschläge machen, diese face-to-face oder an virtuellen Sitzungen diskutieren, und sie schließlich zu priorisieren) mit dem Ziel, ein bestimmtes Thema zu definieren und Entscheidungen dazu zu treffen.</p> <p>Beispiele für partizipatorische Prozesse sind: ein Verfahren zur Wahl von Ausschussmitgliedern (bei dem die Kandidaturen zuerst präsentiert und anschließend debattiert werden, und schließlich eine Kandidatur ausgewählt wird), die partizipative Budgets (bei denen Vorschläge gemacht und wirtschaftlich bewertet werden und über das verfügbare Geld abgestimmt wird), ein strategischer Planungsprozess, die gemeinschaftliche Ausarbeitung einer Vorschrift oder Norm, die Gestaltung eines städtischen Raums oder die Erstellung einer öffentlichen Strategie.</p>\n"
|
340
|
-
title: Was ist ein
|
340
|
+
title: Was ist ein Beteiligungsprozess?
|
341
341
|
log:
|
342
342
|
value_types:
|
343
343
|
participatory_process_type_presenter:
|
@@ -470,7 +470,7 @@ de:
|
|
470
470
|
index:
|
471
471
|
title: Beteiligungsprozesse
|
472
472
|
last_activity:
|
473
|
-
new_participatory_process: 'Neuer
|
473
|
+
new_participatory_process: 'Neuer Beteiligungsprozess:'
|
474
474
|
pages:
|
475
475
|
home:
|
476
476
|
highlighted_processes:
|
@@ -516,7 +516,7 @@ de:
|
|
516
516
|
all: Alle
|
517
517
|
past: Vergangenheit
|
518
518
|
upcoming: Bevorstehende
|
519
|
-
see:
|
519
|
+
see: Anzeigen
|
520
520
|
type: Typ
|
521
521
|
show:
|
522
522
|
title: Über diesen Prozess
|
data/config/locales/el.yml
CHANGED
@@ -111,6 +111,7 @@ el:
|
|
111
111
|
attachment_files: Αρχεία
|
112
112
|
attachments: Συνημμένα
|
113
113
|
components: Στοιχεία
|
114
|
+
landing_page: Σελίδα άφιξης
|
114
115
|
moderations: Εποπτεύσεις
|
115
116
|
process_admins: Διαχειριστές διαδικασιών
|
116
117
|
steps: Φάσεις
|
@@ -150,8 +151,6 @@ el:
|
|
150
151
|
participatory_process_copies:
|
151
152
|
new:
|
152
153
|
copy: Αντιγραφή
|
153
|
-
select: Επιλέξτε ποια δεδομένα θέλετε να αντιγράψετε
|
154
|
-
title: Αντιγραφή διαδικασίας συμμετοχής
|
155
154
|
participatory_process_groups:
|
156
155
|
destroy:
|
157
156
|
success: Η ομάδα διαδικασιών συμμετοχής διαγράφηκε με επιτυχία.
|
@@ -239,10 +238,6 @@ el:
|
|
239
238
|
update:
|
240
239
|
error: Υπήρξε ένα πρόβλημα κατά την ενημέρωση αυτής της διαδικασίας συμμετοχής.
|
241
240
|
success: Η διαδικασία συμμετοχής ενημερώθηκε με επιτυχία.
|
242
|
-
participatory_processes_copies:
|
243
|
-
create:
|
244
|
-
error: Υπήρξε ένα πρόβλημα κατά την αντιγραφή αυτής της διαδικασίας συμμετοχής.
|
245
|
-
success: Η διαδικασία συμμετοχής αντιγράφτηκε με επιτυχία.
|
246
241
|
participatory_processes_group:
|
247
242
|
create:
|
248
243
|
error: Υπήρξε ένα πρόβλημα κατά τη δημιουργία μιας νέας ομάδας διαδικασίας συμμετοχής.
|
data/config/locales/es-MX.yml
CHANGED
@@ -162,8 +162,8 @@ es-MX:
|
|
162
162
|
participatory_process_copies:
|
163
163
|
new:
|
164
164
|
copy: Copiar
|
165
|
-
select:
|
166
|
-
title: Duplicar proceso participativo
|
165
|
+
select: Selecciona qué datos quieres duplicar
|
166
|
+
title: Duplicar el proceso participativo
|
167
167
|
participatory_process_groups:
|
168
168
|
destroy:
|
169
169
|
error: Se ha producido un error al eliminar el grupo de procesos participativos.
|
@@ -264,8 +264,8 @@ es-MX:
|
|
264
264
|
success: El proceso participativo se ha actualizado correctamente.
|
265
265
|
participatory_processes_copies:
|
266
266
|
create:
|
267
|
-
error:
|
268
|
-
success: El proceso participativo se
|
267
|
+
error: Se ha producido un error al duplicar este proceso participativo.
|
268
|
+
success: El proceso participativo se ha duplicado correctamente.
|
269
269
|
participatory_processes_group:
|
270
270
|
create:
|
271
271
|
error: Se ha producido un error al crear este grupo.
|
data/config/locales/es-PY.yml
CHANGED
@@ -162,8 +162,8 @@ es-PY:
|
|
162
162
|
participatory_process_copies:
|
163
163
|
new:
|
164
164
|
copy: Copiar
|
165
|
-
select:
|
166
|
-
title: Duplicar proceso participativo
|
165
|
+
select: Selecciona qué datos quieres duplicar
|
166
|
+
title: Duplicar el proceso participativo
|
167
167
|
participatory_process_groups:
|
168
168
|
destroy:
|
169
169
|
error: Se ha producido un error al eliminar el grupo de procesos participativos.
|
@@ -264,8 +264,8 @@ es-PY:
|
|
264
264
|
success: El proceso participativo se ha actualizado correctamente.
|
265
265
|
participatory_processes_copies:
|
266
266
|
create:
|
267
|
-
error:
|
268
|
-
success: El proceso participativo se
|
267
|
+
error: Se ha producido un error al duplicar este proceso participativo.
|
268
|
+
success: El proceso participativo se ha duplicado correctamente.
|
269
269
|
participatory_processes_group:
|
270
270
|
create:
|
271
271
|
error: Se ha producido un error al crear este grupo.
|
data/config/locales/es.yml
CHANGED
@@ -162,8 +162,8 @@ es:
|
|
162
162
|
participatory_process_copies:
|
163
163
|
new:
|
164
164
|
copy: Copiar
|
165
|
-
select: Selecciona
|
166
|
-
title: Duplicar proceso participativo
|
165
|
+
select: Selecciona qué datos quieres duplicar
|
166
|
+
title: Duplicar el proceso participativo
|
167
167
|
participatory_process_groups:
|
168
168
|
destroy:
|
169
169
|
error: Se ha producido un error al eliminar el grupo de procesos participativos.
|
data/config/locales/eu.yml
CHANGED
@@ -119,7 +119,7 @@ eu:
|
|
119
119
|
attachments: Eranskinak
|
120
120
|
components: Osagaiak
|
121
121
|
info: Prozesu honi buruz
|
122
|
-
landing_page: Hasierako
|
122
|
+
landing_page: Hasierako orrialdea
|
123
123
|
moderations: Moderazioak
|
124
124
|
private_users: Kideak
|
125
125
|
process_admins: Prozesuaren parte-hartzaileak
|
@@ -162,7 +162,7 @@ eu:
|
|
162
162
|
participatory_process_copies:
|
163
163
|
new:
|
164
164
|
copy: Kopiatu
|
165
|
-
select:
|
165
|
+
select: Hautatu zein datu bikoiztu nahi dituzun
|
166
166
|
title: Bikoiztu partaidetza-prozesua
|
167
167
|
participatory_process_groups:
|
168
168
|
destroy:
|
@@ -524,7 +524,7 @@ eu:
|
|
524
524
|
index:
|
525
525
|
title: Kideak
|
526
526
|
show:
|
527
|
-
belongs_to_group: Prozesu hau
|
527
|
+
belongs_to_group: Prozesu hau nori dagokio
|
528
528
|
private_space: Prozesu pribatua da
|
529
529
|
related_processes: Elkarrekin lotutako prozesuak
|
530
530
|
statistics:
|
data/config/locales/fi-plain.yml
CHANGED
@@ -163,7 +163,7 @@ fi-pl:
|
|
163
163
|
new:
|
164
164
|
copy: Kopio
|
165
165
|
select: Valitse, mitkä tiedot haluat kopioida
|
166
|
-
title: Kopioi
|
166
|
+
title: Kopioi osallistumisprosessi
|
167
167
|
participatory_process_groups:
|
168
168
|
destroy:
|
169
169
|
error: Osallistumistilojen ryhmän poisto epäonnistui.
|
@@ -263,8 +263,8 @@ fi-pl:
|
|
263
263
|
success: Osallisuusprosessi päivitetty onnistuneesti.
|
264
264
|
participatory_processes_copies:
|
265
265
|
create:
|
266
|
-
error:
|
267
|
-
success:
|
266
|
+
error: Osallistumisprosessin kopiointi epäonnistui.
|
267
|
+
success: Osallistumisprosessin kopiointi onnistui.
|
268
268
|
participatory_processes_group:
|
269
269
|
create:
|
270
270
|
error: Uuden osallisuusprosessiryhmän luonnissa tapahtui virhe.
|
@@ -408,6 +408,8 @@ fi-pl:
|
|
408
408
|
participatory_processes:
|
409
409
|
one: 1 prosessi
|
410
410
|
other: "%{count} prosessia"
|
411
|
+
related_processes:
|
412
|
+
help: Valitut prosessit liitetään tähän ryhmään, myös sellaiset, jotka on aikaisemmin liitetty johonkin toiseen ryhmään.
|
411
413
|
show:
|
412
414
|
title: Osallisuusprosessiryhmät
|
413
415
|
participatory_process_steps:
|
data/config/locales/fi.yml
CHANGED
@@ -408,6 +408,8 @@ fi:
|
|
408
408
|
participatory_processes:
|
409
409
|
one: 1 prosessi
|
410
410
|
other: "%{count} prosessia"
|
411
|
+
related_processes:
|
412
|
+
help: Valitut prosessit liitetään tähän ryhmään, myös sellaiset, jotka on aikaisemmin liitetty johonkin toiseen ryhmään.
|
411
413
|
show:
|
412
414
|
title: Osallistumisprosessiryhmät
|
413
415
|
participatory_process_steps:
|
data/config/locales/fr-CA.yml
CHANGED
@@ -163,7 +163,7 @@ fr-CA:
|
|
163
163
|
new:
|
164
164
|
copy: Copier
|
165
165
|
select: Sélectionnez les données que vous souhaitez dupliquer
|
166
|
-
title: Dupliquer
|
166
|
+
title: Dupliquer le processus participatif
|
167
167
|
participatory_process_groups:
|
168
168
|
destroy:
|
169
169
|
error: Une erreur s'est produite lors de la suppression du groupe de concertations.
|
@@ -263,8 +263,8 @@ fr-CA:
|
|
263
263
|
success: Concertation mise à jour avec succès.
|
264
264
|
participatory_processes_copies:
|
265
265
|
create:
|
266
|
-
error:
|
267
|
-
success:
|
266
|
+
error: Un problème est survenu lors de la duplication de ce processus participatif.
|
267
|
+
success: Processus participatif dupliqué avec succès.
|
268
268
|
participatory_processes_group:
|
269
269
|
create:
|
270
270
|
error: Une erreur s'est produite lors de la création d'un nouveau groupe de concertations.
|
data/config/locales/fr.yml
CHANGED
@@ -163,7 +163,7 @@ fr:
|
|
163
163
|
new:
|
164
164
|
copy: Copier
|
165
165
|
select: Sélectionnez les données que vous souhaitez dupliquer
|
166
|
-
title: Dupliquer
|
166
|
+
title: Dupliquer le processus participatif
|
167
167
|
participatory_process_groups:
|
168
168
|
destroy:
|
169
169
|
error: Une erreur s'est produite lors de la suppression du groupe de concertations.
|
@@ -263,8 +263,8 @@ fr:
|
|
263
263
|
success: Concertation mise à jour avec succès.
|
264
264
|
participatory_processes_copies:
|
265
265
|
create:
|
266
|
-
error:
|
267
|
-
success:
|
266
|
+
error: Un problème est survenu lors de la duplication de ce processus participatif.
|
267
|
+
success: Processus participatif dupliqué avec succès.
|
268
268
|
participatory_processes_group:
|
269
269
|
create:
|
270
270
|
error: Une erreur s'est produite lors de la création d'un nouveau groupe de concertations.
|
data/config/locales/gl.yml
CHANGED
@@ -95,6 +95,7 @@ gl:
|
|
95
95
|
attachment_files: Arquivos
|
96
96
|
attachments: Anexos
|
97
97
|
components: Compoñentes
|
98
|
+
landing_page: Páxina de inicio
|
98
99
|
moderations: Moderacións
|
99
100
|
process_admins: Usuarios do proceso
|
100
101
|
steps: Pasos
|
@@ -133,8 +134,6 @@ gl:
|
|
133
134
|
participatory_process_copies:
|
134
135
|
new:
|
135
136
|
copy: Copiar
|
136
|
-
select: Seleccione os datos que desexa duplicar
|
137
|
-
title: Duplicar o proceso participativo
|
138
137
|
participatory_process_groups:
|
139
138
|
destroy:
|
140
139
|
success: Grupo de proceso participativo eliminado con éxito.
|
@@ -213,10 +212,6 @@ gl:
|
|
213
212
|
update:
|
214
213
|
error: Produciuse un erro ao actualizar este proceso participativo.
|
215
214
|
success: Proceso participativo actualizado con éxito.
|
216
|
-
participatory_processes_copies:
|
217
|
-
create:
|
218
|
-
error: Produciuse un erro ao duplicar este proceso participativo.
|
219
|
-
success: O proceso participativo duplicouse con éxito.
|
220
215
|
participatory_processes_group:
|
221
216
|
create:
|
222
217
|
error: Produciuse un erro ao crear un novo grupo de procesos participativos.
|