decidim-participatory_processes 0.30.1 → 0.30.3
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_processes/content_blocks/extra_data_cell.rb +1 -1
- data/app/permissions/decidim/participatory_processes/permissions.rb +2 -2
- data/app/serializers/decidim/participatory_processes/participatory_process_importer.rb +7 -4
- data/app/views/decidim/participatory_processes/admin/participatory_processes/_process_row.html.erb +1 -1
- data/config/locales/ar.yml +0 -6
- data/config/locales/bg.yml +0 -6
- data/config/locales/ca-IT.yml +3 -2
- data/config/locales/ca.yml +3 -2
- data/config/locales/cs.yml +4 -3
- data/config/locales/de.yml +13 -12
- data/config/locales/el.yml +1 -6
- data/config/locales/en.yml +1 -0
- data/config/locales/es-MX.yml +5 -4
- data/config/locales/es-PY.yml +5 -4
- data/config/locales/es.yml +3 -2
- data/config/locales/eu.yml +9 -8
- data/config/locales/fi-plain.yml +6 -3
- data/config/locales/fi.yml +6 -3
- data/config/locales/fr-CA.yml +4 -3
- data/config/locales/fr.yml +4 -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 +3 -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 -4
- 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: 4b41e9e87300d44c4d6d3355151a4793f0f79409b576e2fb92c81bf25a9a1d1c
|
|
4
|
+
data.tar.gz: ccad7e60488d809ddf66cb050bbcdb3b60d9b56ba29e473ff85ff26e44496b15
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 71a09680a5113e1dfa8a09fcd6c4c2b7290240a0e38d08937da321102123025ba225055b92ab95c0b17ff0e43627b9f83736c908c910ef078f4d4c9ddbca86ff
|
|
7
|
+
data.tar.gz: 18f99310b16f52b911c9c3cd720198579864faaa58818b48cd0bb205c2564b2920e13a7c5e1b90a858ac9c0ab4df27f483f910d7a24ebfb55883f7f0b470b6d1
|
|
@@ -244,7 +244,7 @@ module Decidim
|
|
|
244
244
|
:process_step,
|
|
245
245
|
:process_user_role,
|
|
246
246
|
:export_space,
|
|
247
|
-
:
|
|
247
|
+
:share_token,
|
|
248
248
|
:import
|
|
249
249
|
].include?(permission_action.subject)
|
|
250
250
|
allow! if is_allowed
|
|
@@ -263,7 +263,7 @@ module Decidim
|
|
|
263
263
|
:process_step,
|
|
264
264
|
:process_user_role,
|
|
265
265
|
:export_space,
|
|
266
|
-
:
|
|
266
|
+
:share_token,
|
|
267
267
|
:import
|
|
268
268
|
].include?(permission_action.subject)
|
|
269
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>
|
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
|
@@ -7,6 +7,7 @@ ca-IT:
|
|
|
7
7
|
area_id: Àrea
|
|
8
8
|
copy_categories: Copiar les categories
|
|
9
9
|
copy_components: Copiar els components
|
|
10
|
+
copy_landing_page_blocks: Duplicar els blocs de contingut de la pàgina d'inici
|
|
10
11
|
copy_steps: Copiar les fases
|
|
11
12
|
decidim_area_id: Àrea
|
|
12
13
|
description: Descripció
|
|
@@ -163,7 +164,7 @@ ca-IT:
|
|
|
163
164
|
new:
|
|
164
165
|
copy: Còpia
|
|
165
166
|
select: Selecciona quines dades vols duplicar
|
|
166
|
-
title:
|
|
167
|
+
title: Duplicar el procés participatiu
|
|
167
168
|
participatory_process_groups:
|
|
168
169
|
destroy:
|
|
169
170
|
error: Hi ha hagut un error en eliminar el grup de processos participatius.
|
|
@@ -263,7 +264,7 @@ ca-IT:
|
|
|
263
264
|
success: El procés participatiu s'ha actualitzat correctament.
|
|
264
265
|
participatory_processes_copies:
|
|
265
266
|
create:
|
|
266
|
-
error: S'ha produït un error en duplicar
|
|
267
|
+
error: S'ha produït un error en duplicar aquest procés participatiu.
|
|
267
268
|
success: El procés participatiu ha estat duplicat correctament.
|
|
268
269
|
participatory_processes_group:
|
|
269
270
|
create:
|
data/config/locales/ca.yml
CHANGED
|
@@ -7,6 +7,7 @@ ca:
|
|
|
7
7
|
area_id: Àrea
|
|
8
8
|
copy_categories: Copiar les categories
|
|
9
9
|
copy_components: Copiar els components
|
|
10
|
+
copy_landing_page_blocks: Duplicar els blocs de contingut de la pàgina d'inici
|
|
10
11
|
copy_steps: Copiar les fases
|
|
11
12
|
decidim_area_id: Àrea
|
|
12
13
|
description: Descripció
|
|
@@ -163,7 +164,7 @@ ca:
|
|
|
163
164
|
new:
|
|
164
165
|
copy: Còpia
|
|
165
166
|
select: Selecciona quines dades vols duplicar
|
|
166
|
-
title:
|
|
167
|
+
title: Duplicar el procés participatiu
|
|
167
168
|
participatory_process_groups:
|
|
168
169
|
destroy:
|
|
169
170
|
error: Hi ha hagut un error en eliminar el grup de processos participatius.
|
|
@@ -263,7 +264,7 @@ ca:
|
|
|
263
264
|
success: El procés participatiu s'ha actualitzat correctament.
|
|
264
265
|
participatory_processes_copies:
|
|
265
266
|
create:
|
|
266
|
-
error: S'ha produït un error en duplicar
|
|
267
|
+
error: S'ha produït un error en duplicar aquest procés participatiu.
|
|
267
268
|
success: El procés participatiu ha estat duplicat correctament.
|
|
268
269
|
participatory_processes_group:
|
|
269
270
|
create:
|
data/config/locales/cs.yml
CHANGED
|
@@ -7,6 +7,7 @@ cs:
|
|
|
7
7
|
area_id: Oblast
|
|
8
8
|
copy_categories: Kopírovat kategorie
|
|
9
9
|
copy_components: Kopírování komponent
|
|
10
|
+
copy_landing_page_blocks: Duplikovat bloky vstupní strany
|
|
10
11
|
copy_steps: Kopírování kroků
|
|
11
12
|
decidim_area_id: Oblast
|
|
12
13
|
description: Popis
|
|
@@ -169,7 +170,7 @@ cs:
|
|
|
169
170
|
new:
|
|
170
171
|
copy: Kopírovat
|
|
171
172
|
select: Vyberte, která data chcete duplikovat
|
|
172
|
-
title:
|
|
173
|
+
title: Duplikovat participativní proces
|
|
173
174
|
participatory_process_groups:
|
|
174
175
|
destroy:
|
|
175
176
|
error: Došlo k chybě při zničení skupiny participačních procesů.
|
|
@@ -270,8 +271,8 @@ cs:
|
|
|
270
271
|
success: Participační proces byl úspěšně aktualizován.
|
|
271
272
|
participatory_processes_copies:
|
|
272
273
|
create:
|
|
273
|
-
error: Při
|
|
274
|
-
success:
|
|
274
|
+
error: Při duplikaci tohoto participativního procesu došlo k problému.
|
|
275
|
+
success: Participativní proces byl úspěšně duplikován.
|
|
275
276
|
participatory_processes_group:
|
|
276
277
|
create:
|
|
277
278
|
error: Došlo k chybě při vytváření nové skupiny účastnických procesů.
|
data/config/locales/de.yml
CHANGED
|
@@ -7,6 +7,7 @@ de:
|
|
|
7
7
|
area_id: Bereich
|
|
8
8
|
copy_categories: Kategorien kopieren
|
|
9
9
|
copy_components: Komponenten kopieren
|
|
10
|
+
copy_landing_page_blocks: Startseiten-Blöcke duplizieren
|
|
10
11
|
copy_steps: Phasen kopieren
|
|
11
12
|
decidim_area_id: Bereich
|
|
12
13
|
description: Beschreibung
|
|
@@ -116,7 +117,7 @@ de:
|
|
|
116
117
|
participatory_processes_submenu:
|
|
117
118
|
attachment_collections: Ordner
|
|
118
119
|
attachment_files: Dateien
|
|
119
|
-
attachments:
|
|
120
|
+
attachments: Anhänge
|
|
120
121
|
components: Komponenten
|
|
121
122
|
info: Über diesen Prozess
|
|
122
123
|
landing_page: Startseite
|
|
@@ -162,7 +163,7 @@ de:
|
|
|
162
163
|
participatory_process_copies:
|
|
163
164
|
new:
|
|
164
165
|
copy: Kopieren
|
|
165
|
-
select:
|
|
166
|
+
select: Zu duplizierende Daten auswählen
|
|
166
167
|
title: Beteiligungsprozess duplizieren
|
|
167
168
|
participatory_process_groups:
|
|
168
169
|
destroy:
|
|
@@ -205,7 +206,7 @@ de:
|
|
|
205
206
|
error:
|
|
206
207
|
active_step: Der aktive Schritt kann nicht gelöscht werden.
|
|
207
208
|
last_step: Der letzte Schritt eines Prozesses kann nicht gelöscht werden.
|
|
208
|
-
success:
|
|
209
|
+
success: Beteiligungsprozessschritt erfolgreich gelöscht.
|
|
209
210
|
edit:
|
|
210
211
|
cta_deprecated:
|
|
211
212
|
body_html: |-
|
|
@@ -246,7 +247,7 @@ de:
|
|
|
246
247
|
participatory_processes:
|
|
247
248
|
create:
|
|
248
249
|
error: Beim Erstellen eines neuen Beteiligungsprozesses ist ein Fehler aufgetreten.
|
|
249
|
-
success:
|
|
250
|
+
success: Beteiligungsprozess erfolgreich erstellt. Konfigurieren Sie als nächstes die Phasen.
|
|
250
251
|
edit:
|
|
251
252
|
update: Aktualisieren
|
|
252
253
|
index:
|
|
@@ -258,14 +259,14 @@ de:
|
|
|
258
259
|
title: Gelöschte Beteiligungsprozesse
|
|
259
260
|
new:
|
|
260
261
|
create: Erstellen
|
|
261
|
-
title: Neuer
|
|
262
|
+
title: Neuer Beteiligungsprozess
|
|
262
263
|
update:
|
|
263
264
|
error: Beim Aktualisieren dieses Beteiligungsprozesses ist ein Fehler aufgetreten.
|
|
264
|
-
success:
|
|
265
|
+
success: Beteiligungsprozess erfolgreich aktualisiert.
|
|
265
266
|
participatory_processes_copies:
|
|
266
267
|
create:
|
|
267
268
|
error: Beim Duplizieren dieses Beteiligungsprozesses ist ein Fehler aufgetreten.
|
|
268
|
-
success:
|
|
269
|
+
success: Beteiligungsprozess erfolgreich dupliziert.
|
|
269
270
|
participatory_processes_group:
|
|
270
271
|
create:
|
|
271
272
|
error: Beim Erstellen einer neuen partizipativen Prozessgruppe ist ein Fehler aufgetreten.
|
|
@@ -323,21 +324,21 @@ de:
|
|
|
323
324
|
email_subject: Sie wurden als %{role} für "%{resource_title}" ausgewählt.
|
|
324
325
|
notification_title: Sie wurden als %{role} für den Beteiligungsprozess <a href="%{resource_url}">%{resource_title}</a> ausgewählt.
|
|
325
326
|
step_activated:
|
|
326
|
-
email_intro: 'Der Prozessschritt %{resource_title} ist jetzt aktiv in %{participatory_space_title}. Sie
|
|
327
|
+
email_intro: 'Der Prozessschritt %{resource_title} ist jetzt aktiv in %{participatory_space_title}. Sehen Sie es sich auf dieser Seite an:'
|
|
327
328
|
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
329
|
email_subject: Eine Aktualisierung auf %{participatory_space_title}
|
|
329
330
|
notification_title: Der Prozessschritt %{resource_title} ist jetzt aktiv in <a href="%{resource_path}">%{participatory_space_title}</a>
|
|
330
331
|
step_changed:
|
|
331
|
-
email_intro: 'Die Daten für den Schritt %{resource_title} bei %{participatory_space_title} wurden aktualisiert. Sie
|
|
332
|
+
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
333
|
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
334
|
email_subject: Eine Aktualisierung auf %{participatory_space_title}
|
|
334
335
|
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
336
|
help:
|
|
336
337
|
participatory_spaces:
|
|
337
338
|
participatory_processes:
|
|
338
|
-
contextual: "<p>Ein <strong>
|
|
339
|
+
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
340
|
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
|
|
341
|
+
title: Was ist ein Beteiligungsprozess?
|
|
341
342
|
log:
|
|
342
343
|
value_types:
|
|
343
344
|
participatory_process_type_presenter:
|
|
@@ -470,7 +471,7 @@ de:
|
|
|
470
471
|
index:
|
|
471
472
|
title: Beteiligungsprozesse
|
|
472
473
|
last_activity:
|
|
473
|
-
new_participatory_process: 'Neuer
|
|
474
|
+
new_participatory_process: 'Neuer Beteiligungsprozess:'
|
|
474
475
|
pages:
|
|
475
476
|
home:
|
|
476
477
|
highlighted_processes:
|
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/en.yml
CHANGED
data/config/locales/es-MX.yml
CHANGED
|
@@ -7,6 +7,7 @@ es-MX:
|
|
|
7
7
|
area_id: Área
|
|
8
8
|
copy_categories: Copiar categorías
|
|
9
9
|
copy_components: Copiar componentes
|
|
10
|
+
copy_landing_page_blocks: Duplicar los bloques de contenido de la página de inicio
|
|
10
11
|
copy_steps: Copiar las fases
|
|
11
12
|
decidim_area_id: Área
|
|
12
13
|
description: Descripción
|
|
@@ -162,8 +163,8 @@ es-MX:
|
|
|
162
163
|
participatory_process_copies:
|
|
163
164
|
new:
|
|
164
165
|
copy: Copiar
|
|
165
|
-
select:
|
|
166
|
-
title: Duplicar proceso participativo
|
|
166
|
+
select: Selecciona qué datos quieres duplicar
|
|
167
|
+
title: Duplicar el proceso participativo
|
|
167
168
|
participatory_process_groups:
|
|
168
169
|
destroy:
|
|
169
170
|
error: Se ha producido un error al eliminar el grupo de procesos participativos.
|
|
@@ -264,8 +265,8 @@ es-MX:
|
|
|
264
265
|
success: El proceso participativo se ha actualizado correctamente.
|
|
265
266
|
participatory_processes_copies:
|
|
266
267
|
create:
|
|
267
|
-
error:
|
|
268
|
-
success: El proceso participativo se
|
|
268
|
+
error: Se ha producido un error al duplicar este proceso participativo.
|
|
269
|
+
success: El proceso participativo se ha duplicado correctamente.
|
|
269
270
|
participatory_processes_group:
|
|
270
271
|
create:
|
|
271
272
|
error: Se ha producido un error al crear este grupo.
|
data/config/locales/es-PY.yml
CHANGED
|
@@ -7,6 +7,7 @@ es-PY:
|
|
|
7
7
|
area_id: Área
|
|
8
8
|
copy_categories: Copiar categorías
|
|
9
9
|
copy_components: Copiar componentes
|
|
10
|
+
copy_landing_page_blocks: Duplicar los bloques de contenido de la página de inicio
|
|
10
11
|
copy_steps: Copiar las fases
|
|
11
12
|
decidim_area_id: Área
|
|
12
13
|
description: Descripción
|
|
@@ -162,8 +163,8 @@ es-PY:
|
|
|
162
163
|
participatory_process_copies:
|
|
163
164
|
new:
|
|
164
165
|
copy: Copiar
|
|
165
|
-
select:
|
|
166
|
-
title: Duplicar proceso participativo
|
|
166
|
+
select: Selecciona qué datos quieres duplicar
|
|
167
|
+
title: Duplicar el proceso participativo
|
|
167
168
|
participatory_process_groups:
|
|
168
169
|
destroy:
|
|
169
170
|
error: Se ha producido un error al eliminar el grupo de procesos participativos.
|
|
@@ -264,8 +265,8 @@ es-PY:
|
|
|
264
265
|
success: El proceso participativo se ha actualizado correctamente.
|
|
265
266
|
participatory_processes_copies:
|
|
266
267
|
create:
|
|
267
|
-
error:
|
|
268
|
-
success: El proceso participativo se
|
|
268
|
+
error: Se ha producido un error al duplicar este proceso participativo.
|
|
269
|
+
success: El proceso participativo se ha duplicado correctamente.
|
|
269
270
|
participatory_processes_group:
|
|
270
271
|
create:
|
|
271
272
|
error: Se ha producido un error al crear este grupo.
|
data/config/locales/es.yml
CHANGED
|
@@ -7,6 +7,7 @@ es:
|
|
|
7
7
|
area_id: Área
|
|
8
8
|
copy_categories: Copiar categorías
|
|
9
9
|
copy_components: Copiar componentes
|
|
10
|
+
copy_landing_page_blocks: Duplicar los bloques de contenido de la página de inicio
|
|
10
11
|
copy_steps: Copiar las fases
|
|
11
12
|
decidim_area_id: Área
|
|
12
13
|
description: Descripción
|
|
@@ -162,8 +163,8 @@ es:
|
|
|
162
163
|
participatory_process_copies:
|
|
163
164
|
new:
|
|
164
165
|
copy: Copiar
|
|
165
|
-
select: Selecciona
|
|
166
|
-
title: Duplicar proceso participativo
|
|
166
|
+
select: Selecciona qué datos quieres duplicar
|
|
167
|
+
title: Duplicar el proceso participativo
|
|
167
168
|
participatory_process_groups:
|
|
168
169
|
destroy:
|
|
169
170
|
error: Se ha producido un error al eliminar el grupo de procesos participativos.
|
data/config/locales/eu.yml
CHANGED
|
@@ -7,6 +7,7 @@ eu:
|
|
|
7
7
|
area_id: Arloa
|
|
8
8
|
copy_categories: Kopiatu kategoriak
|
|
9
9
|
copy_components: Kopiatu osagaiak
|
|
10
|
+
copy_landing_page_blocks: Bikoiztu lurreratze-orrien blokeak
|
|
10
11
|
copy_steps: Kopiatu faseak
|
|
11
12
|
decidim_area_id: Arloa
|
|
12
13
|
description: Deskribapena
|
|
@@ -119,7 +120,7 @@ eu:
|
|
|
119
120
|
attachments: Eranskinak
|
|
120
121
|
components: Osagaiak
|
|
121
122
|
info: Prozesu honi buruz
|
|
122
|
-
landing_page: Hasierako
|
|
123
|
+
landing_page: Hasierako orrialdea
|
|
123
124
|
moderations: Moderazioak
|
|
124
125
|
private_users: Kideak
|
|
125
126
|
process_admins: Prozesuaren parte-hartzaileak
|
|
@@ -162,7 +163,7 @@ eu:
|
|
|
162
163
|
participatory_process_copies:
|
|
163
164
|
new:
|
|
164
165
|
copy: Kopiatu
|
|
165
|
-
select:
|
|
166
|
+
select: Hautatu zein datu bikoiztu nahi dituzun
|
|
166
167
|
title: Bikoiztu partaidetza-prozesua
|
|
167
168
|
participatory_process_groups:
|
|
168
169
|
destroy:
|
|
@@ -363,7 +364,7 @@ eu:
|
|
|
363
364
|
id: Prozesu honen identifikatzaile bakarra
|
|
364
365
|
local_area: Prozesuaren tokiko arloa. Hau da prozesua garatzen ari den erakundearen arloa.
|
|
365
366
|
meta_scope: Prozesuaren eremu-metadatuak
|
|
366
|
-
participatory_process_group: Prozesuaren taldea,
|
|
367
|
+
participatory_process_group: Prozesuaren taldea, baten parte bada
|
|
367
368
|
participatory_process_type: Prozesu mota
|
|
368
369
|
participatory_scope: Prozesuaren parte-hartze eremua
|
|
369
370
|
participatory_structure: Prozesuaren partaidetza-egitura. Horrela erabakitzen da prozesua.
|
|
@@ -392,7 +393,7 @@ eu:
|
|
|
392
393
|
html:
|
|
393
394
|
name: HTML blokea
|
|
394
395
|
html_1:
|
|
395
|
-
name:
|
|
396
|
+
name: Aurreneko HTML blokea
|
|
396
397
|
html_2:
|
|
397
398
|
name: Bigarren HTML blokea
|
|
398
399
|
html_3:
|
|
@@ -410,7 +411,7 @@ eu:
|
|
|
410
411
|
one: Prozesu bat
|
|
411
412
|
other: "Prozesu bat"
|
|
412
413
|
related_processes:
|
|
413
|
-
help: Hautatutako prozesu guztiak talde
|
|
414
|
+
help: Hautatutako prozesu guztiak talde honi esleituko zaizkio, beste talde batzuei esleitutakoak barne.
|
|
414
415
|
show:
|
|
415
416
|
title: Partaidetza-prozesuen taldeak
|
|
416
417
|
participatory_process_steps:
|
|
@@ -437,7 +438,7 @@ eu:
|
|
|
437
438
|
visibility: Ikusgarritasuna
|
|
438
439
|
participatory_process_imports:
|
|
439
440
|
form:
|
|
440
|
-
document_legend:
|
|
441
|
+
document_legend: Dokumentu bat atxikitu
|
|
441
442
|
slug_help_html: 'URLetako testu laburrak erabiltzen dira prozesu honi aurre egiteko URLak sortzeko. Letrak, zenbakiak eta gidoiak soilik onartzen ditu, eta letra batez hasi behar du. Adibidea: %{url}'
|
|
442
443
|
participatory_process_steps:
|
|
443
444
|
form:
|
|
@@ -453,7 +454,7 @@ eu:
|
|
|
453
454
|
no_taxonomy_filters_found: Ez da taxonomia-iragazkirik aurkitu.
|
|
454
455
|
private_notice: Kiak kudeatu ahal izango dituzu pribatu gisa ezarri ondoren
|
|
455
456
|
related_processes: Elkarrekin lotutako prozesuak
|
|
456
|
-
select_process_group:
|
|
457
|
+
select_process_group: Prozesu-talde bat hautatu
|
|
457
458
|
slug_help_html: 'URLetako testu laburrak erabiltzen dira prozesu honi aurre egiteko URLak sortzeko. Letrak, zenbakiak eta gidoiak soilik onartzen ditu, eta letra batez hasi behar du. Adibidea: %{url}'
|
|
458
459
|
taxonomies: Taxonomiak
|
|
459
460
|
title: Informazio orokorra
|
|
@@ -524,7 +525,7 @@ eu:
|
|
|
524
525
|
index:
|
|
525
526
|
title: Kideak
|
|
526
527
|
show:
|
|
527
|
-
belongs_to_group: Prozesu hau
|
|
528
|
+
belongs_to_group: Prozesu hau nori dagokio
|
|
528
529
|
private_space: Prozesu pribatua da
|
|
529
530
|
related_processes: Elkarrekin lotutako prozesuak
|
|
530
531
|
statistics:
|
data/config/locales/fi-plain.yml
CHANGED
|
@@ -7,6 +7,7 @@ fi-pl:
|
|
|
7
7
|
area_id: Alue
|
|
8
8
|
copy_categories: Kopioi aihepiirit
|
|
9
9
|
copy_components: Kopioi komponentit
|
|
10
|
+
copy_landing_page_blocks: Kopioi laskeutumissivun sisältölohkot
|
|
10
11
|
copy_steps: Kopioi vaiheet
|
|
11
12
|
decidim_area_id: Alue
|
|
12
13
|
description: Kuvaus
|
|
@@ -163,7 +164,7 @@ fi-pl:
|
|
|
163
164
|
new:
|
|
164
165
|
copy: Kopio
|
|
165
166
|
select: Valitse, mitkä tiedot haluat kopioida
|
|
166
|
-
title: Kopioi
|
|
167
|
+
title: Kopioi osallistumisprosessi
|
|
167
168
|
participatory_process_groups:
|
|
168
169
|
destroy:
|
|
169
170
|
error: Osallistumistilojen ryhmän poisto epäonnistui.
|
|
@@ -263,8 +264,8 @@ fi-pl:
|
|
|
263
264
|
success: Osallisuusprosessi päivitetty onnistuneesti.
|
|
264
265
|
participatory_processes_copies:
|
|
265
266
|
create:
|
|
266
|
-
error:
|
|
267
|
-
success:
|
|
267
|
+
error: Osallistumisprosessin kopiointi epäonnistui.
|
|
268
|
+
success: Osallistumisprosessin kopiointi onnistui.
|
|
268
269
|
participatory_processes_group:
|
|
269
270
|
create:
|
|
270
271
|
error: Uuden osallisuusprosessiryhmän luonnissa tapahtui virhe.
|
|
@@ -408,6 +409,8 @@ fi-pl:
|
|
|
408
409
|
participatory_processes:
|
|
409
410
|
one: 1 prosessi
|
|
410
411
|
other: "%{count} prosessia"
|
|
412
|
+
related_processes:
|
|
413
|
+
help: Valitut prosessit liitetään tähän ryhmään, myös sellaiset, jotka on aikaisemmin liitetty johonkin toiseen ryhmään.
|
|
411
414
|
show:
|
|
412
415
|
title: Osallisuusprosessiryhmät
|
|
413
416
|
participatory_process_steps:
|
data/config/locales/fi.yml
CHANGED
|
@@ -7,6 +7,7 @@ fi:
|
|
|
7
7
|
area_id: Alue
|
|
8
8
|
copy_categories: Kopioi aihepiirit
|
|
9
9
|
copy_components: Kopioi komponentit
|
|
10
|
+
copy_landing_page_blocks: Kopioi laskeutumissivun sisältölohkot
|
|
10
11
|
copy_steps: Kopioi vaiheet
|
|
11
12
|
decidim_area_id: Alue
|
|
12
13
|
description: Kuvaus
|
|
@@ -408,6 +409,8 @@ fi:
|
|
|
408
409
|
participatory_processes:
|
|
409
410
|
one: 1 prosessi
|
|
410
411
|
other: "%{count} prosessia"
|
|
412
|
+
related_processes:
|
|
413
|
+
help: Valitut prosessit liitetään tähän ryhmään, myös sellaiset, jotka on aikaisemmin liitetty johonkin toiseen ryhmään.
|
|
411
414
|
show:
|
|
412
415
|
title: Osallistumisprosessiryhmät
|
|
413
416
|
participatory_process_steps:
|
|
@@ -497,8 +500,8 @@ fi:
|
|
|
497
500
|
one: 1 prosessi
|
|
498
501
|
other: "%{count} prosessia"
|
|
499
502
|
past:
|
|
500
|
-
one: 1
|
|
501
|
-
other: "%{count}
|
|
503
|
+
one: 1 päättynyt prosessi
|
|
504
|
+
other: "%{count} päättynyttä prosessia"
|
|
502
505
|
upcoming:
|
|
503
506
|
one: 1 tuleva prosessi
|
|
504
507
|
other: "%{count} tulevaa prosessia"
|
|
@@ -511,7 +514,7 @@ fi:
|
|
|
511
514
|
names:
|
|
512
515
|
active: Aktiiviset
|
|
513
516
|
all: Kaikki
|
|
514
|
-
past:
|
|
517
|
+
past: Päättyneet
|
|
515
518
|
upcoming: Tulevat
|
|
516
519
|
see: Näytä
|
|
517
520
|
type: Tyyppi
|
data/config/locales/fr-CA.yml
CHANGED
|
@@ -7,6 +7,7 @@ fr-CA:
|
|
|
7
7
|
area_id: Périmètre d'assemblée
|
|
8
8
|
copy_categories: Copier les catégories
|
|
9
9
|
copy_components: Copier les fonctionnalités
|
|
10
|
+
copy_landing_page_blocks: Dupliquer les blocs de page d'accueil
|
|
10
11
|
copy_steps: Copier les étapes
|
|
11
12
|
decidim_area_id: Périmètre d'assemblée
|
|
12
13
|
description: Description
|
|
@@ -163,7 +164,7 @@ fr-CA:
|
|
|
163
164
|
new:
|
|
164
165
|
copy: Copier
|
|
165
166
|
select: Sélectionnez les données que vous souhaitez dupliquer
|
|
166
|
-
title: Dupliquer
|
|
167
|
+
title: Dupliquer le processus participatif
|
|
167
168
|
participatory_process_groups:
|
|
168
169
|
destroy:
|
|
169
170
|
error: Une erreur s'est produite lors de la suppression du groupe de concertations.
|
|
@@ -263,8 +264,8 @@ fr-CA:
|
|
|
263
264
|
success: Concertation mise à jour avec succès.
|
|
264
265
|
participatory_processes_copies:
|
|
265
266
|
create:
|
|
266
|
-
error:
|
|
267
|
-
success:
|
|
267
|
+
error: Un problème est survenu lors de la duplication de ce processus participatif.
|
|
268
|
+
success: Processus participatif dupliqué avec succès.
|
|
268
269
|
participatory_processes_group:
|
|
269
270
|
create:
|
|
270
271
|
error: Une erreur s'est produite lors de la création d'un nouveau groupe de concertations.
|
data/config/locales/fr.yml
CHANGED
|
@@ -7,6 +7,7 @@ fr:
|
|
|
7
7
|
area_id: Périmètre d'assemblée
|
|
8
8
|
copy_categories: Copier les catégories
|
|
9
9
|
copy_components: Copier les fonctionnalités
|
|
10
|
+
copy_landing_page_blocks: Dupliquer les blocs de page d'accueil
|
|
10
11
|
copy_steps: Copier les étapes
|
|
11
12
|
decidim_area_id: Périmètre d'assemblée
|
|
12
13
|
description: Description
|
|
@@ -163,7 +164,7 @@ fr:
|
|
|
163
164
|
new:
|
|
164
165
|
copy: Copier
|
|
165
166
|
select: Sélectionnez les données que vous souhaitez dupliquer
|
|
166
|
-
title: Dupliquer
|
|
167
|
+
title: Dupliquer le processus participatif
|
|
167
168
|
participatory_process_groups:
|
|
168
169
|
destroy:
|
|
169
170
|
error: Une erreur s'est produite lors de la suppression du groupe de concertations.
|
|
@@ -263,8 +264,8 @@ fr:
|
|
|
263
264
|
success: Concertation mise à jour avec succès.
|
|
264
265
|
participatory_processes_copies:
|
|
265
266
|
create:
|
|
266
|
-
error:
|
|
267
|
-
success:
|
|
267
|
+
error: Un problème est survenu lors de la duplication de ce processus participatif.
|
|
268
|
+
success: Processus participatif dupliqué avec succès.
|
|
268
269
|
participatory_processes_group:
|
|
269
270
|
create:
|
|
270
271
|
error: Une erreur s'est produite lors de la création d'un nouveau groupe de concertations.
|