decidim-participatory_processes 0.31.2 → 0.31.4
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/serializers/decidim/participatory_processes/participatory_process_importer.rb +12 -15
- data/app/views/decidim/participatory_processes/admin/participatory_process_steps/index.html.erb +1 -1
- data/app/views/decidim/participatory_processes/participatory_processes/_collection.html.erb +1 -1
- data/config/locales/ar.yml +0 -7
- data/config/locales/bg.yml +1 -10
- data/config/locales/bs-BA.yml +0 -6
- data/config/locales/ca-IT.yml +5 -5
- data/config/locales/ca.yml +5 -5
- data/config/locales/cs.yml +7 -10
- data/config/locales/de.yml +1 -13
- data/config/locales/el.yml +1 -9
- data/config/locales/es-MX.yml +8 -8
- data/config/locales/es-PY.yml +8 -8
- data/config/locales/es.yml +6 -6
- data/config/locales/eu.yml +12 -10
- data/config/locales/fi-plain.yml +13 -6
- data/config/locales/fi.yml +8 -1
- data/config/locales/fr-CA.yml +5 -9
- data/config/locales/fr.yml +5 -9
- data/config/locales/ga-IE.yml +1 -0
- data/config/locales/gl.yml +1 -7
- data/config/locales/hu.yml +1 -9
- data/config/locales/id-ID.yml +0 -6
- data/config/locales/is-IS.yml +0 -3
- data/config/locales/it.yml +2 -10
- data/config/locales/ja.yml +4 -2
- data/config/locales/lb.yml +0 -7
- data/config/locales/lt.yml +1 -9
- data/config/locales/lv.yml +0 -9
- data/config/locales/nl.yml +2 -11
- data/config/locales/no.yml +0 -9
- data/config/locales/pl.yml +1 -10
- data/config/locales/pt-BR.yml +5 -7
- data/config/locales/pt.yml +1 -10
- data/config/locales/ro-RO.yml +1 -9
- data/config/locales/ru.yml +0 -6
- data/config/locales/sk.yml +1 -10
- data/config/locales/sr-CS.yml +0 -6
- data/config/locales/sv.yml +234 -42
- data/config/locales/tr-TR.yml +0 -10
- data/config/locales/uk.yml +0 -6
- data/config/locales/zh-CN.yml +0 -9
- data/config/locales/zh-TW.yml +3 -11
- data/lib/decidim/participatory_processes/version.rb +1 -1
- metadata +16 -16
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7e94e20e46d9fcc9807f70f51eefafbe6f1653815f8d1e8b7a26a35671d6d31f
|
|
4
|
+
data.tar.gz: 1156bd17a3a11807631ca8ace4d1c067a1a9e7df141825b46d453b8165ae7f11
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 884566bbbd2040ee6c2366f5bebee07d7202c91cb2c1245fbc7162fe36196d1ca33dc5b3109368b14e26e4b46a28ea15bacf887b0ff3066c2734b6ec9f56f9df
|
|
7
|
+
data.tar.gz: 3b0f8e52dd74a56a33820e3d0b4dfb477d0376dea265ef5698926ca2e56f7dd2e4271deca80a12bd78a710c5381a62fc34541ca1094ee2f0ce93be3f57e27ef7
|
|
@@ -107,27 +107,24 @@ module Decidim
|
|
|
107
107
|
next
|
|
108
108
|
end
|
|
109
109
|
|
|
110
|
-
begin
|
|
111
|
-
file_tmp = URI.parse(url).open
|
|
112
|
-
rescue OpenURI::HTTPError, Errno::ENOENT, Errno::ECONNREFUSED, SocketError, Net::OpenTimeout, Net::ReadTimeout => e
|
|
113
|
-
@warnings << I18n.t(
|
|
114
|
-
"decidim.participatory_processes.admin.imports.attachment_error",
|
|
115
|
-
title: attachment_title(file),
|
|
116
|
-
error: format_error(e)
|
|
117
|
-
)
|
|
118
|
-
next
|
|
119
|
-
end
|
|
120
|
-
|
|
121
110
|
Decidim.traceability.perform_action!("create", Attachment, @user) do
|
|
122
111
|
attachment = Attachment.new(
|
|
123
112
|
title: file["title"],
|
|
124
113
|
description: file["description"],
|
|
125
|
-
content_type: file_tmp.content_type,
|
|
126
114
|
attached_to: @imported_process,
|
|
127
|
-
weight: file["weight"]
|
|
128
|
-
file: file_tmp, # Define attached_to before this
|
|
129
|
-
file_size: file_tmp.size
|
|
115
|
+
weight: file["weight"]
|
|
130
116
|
)
|
|
117
|
+
begin
|
|
118
|
+
attachment.attached_uploader(:file).remote_url = url
|
|
119
|
+
attachment.set_content_type_and_size
|
|
120
|
+
rescue OpenURI::HTTPError, Errno::ENOENT, Errno::ECONNREFUSED, SocketError, Net::OpenTimeout, Net::ReadTimeout => e
|
|
121
|
+
@warnings << I18n.t(
|
|
122
|
+
"decidim.participatory_processes.admin.imports.attachment_error",
|
|
123
|
+
title: attachment_title(file),
|
|
124
|
+
error: format_error(e)
|
|
125
|
+
)
|
|
126
|
+
next
|
|
127
|
+
end
|
|
131
128
|
attachment.create_attachment_collection(file["attachment_collection"])
|
|
132
129
|
attachment.save!
|
|
133
130
|
attachment
|
data/app/views/decidim/participatory_processes/admin/participatory_process_steps/index.html.erb
CHANGED
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
<tr data-id="<%= step.id %>">
|
|
25
25
|
<td data-label="<%= t("models.participatory_process_step.fields.title", scope: "decidim.admin") %>">
|
|
26
26
|
<div class="flex items-center gap-x-2">
|
|
27
|
-
<%= icon "
|
|
27
|
+
<%= icon("draggable", class: "dragger hover:cursor-grab") %>
|
|
28
28
|
<% if step.active? %>
|
|
29
29
|
<span class="icon-active"></span>
|
|
30
30
|
<% end %>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<% date_filter_text = %w(active upcoming past all).include?(params.dig(:filter, :with_date)) ? params.dig(:filter, :with_date) : default_date_filter %>
|
|
2
|
-
<h2 class="h5 md:h3 decorator"><%= t(date_filter_text, scope: "decidim.participatory_processes.participatory_processes.filters.counters", count: collection.total_count) %></h2>
|
|
2
|
+
<h2 class="h5 md:h3 decorator" aria-live="polite" aria-atomic="true"><%= t(date_filter_text, scope: "decidim.participatory_processes.participatory_processes.filters.counters", count: collection.total_count) %></h2>
|
|
3
3
|
|
|
4
4
|
<div class="card__grid-grid">
|
|
5
5
|
<%= render(collection) %>
|
data/config/locales/ar.yml
CHANGED
|
@@ -130,7 +130,6 @@ ar:
|
|
|
130
130
|
destroy:
|
|
131
131
|
success: تم حذف مجموعة العملية التشاركية بنجاح.
|
|
132
132
|
edit:
|
|
133
|
-
title: تحرير مجموعة العملية
|
|
134
133
|
update: تحديث
|
|
135
134
|
new:
|
|
136
135
|
create: إنشاء
|
|
@@ -141,7 +140,6 @@ ar:
|
|
|
141
140
|
participatory_process_imports:
|
|
142
141
|
new:
|
|
143
142
|
import: استيراد
|
|
144
|
-
title: استيراد مسار تشاركي
|
|
145
143
|
participatory_process_publications:
|
|
146
144
|
create:
|
|
147
145
|
error: كانت هناك مشكلة في نشر هذه العملية التشاركية.
|
|
@@ -161,13 +159,11 @@ ar:
|
|
|
161
159
|
destroy:
|
|
162
160
|
success: تم حذف مرحلة العملية التشاركية بنجاح.
|
|
163
161
|
edit:
|
|
164
|
-
title: تحرير مرحلة العملية التشاركية
|
|
165
162
|
update: تحديث
|
|
166
163
|
index:
|
|
167
164
|
steps_title: المراحل
|
|
168
165
|
new:
|
|
169
166
|
create: إنشاء
|
|
170
|
-
title: مرحلة عملية تشاركية جديدة
|
|
171
167
|
ordering:
|
|
172
168
|
error: كانت هناك مشكلة في إعادة ترتيب هذه المراحل من العملية التشاركية.
|
|
173
169
|
update:
|
|
@@ -181,8 +177,6 @@ ar:
|
|
|
181
177
|
success: تمت إزالة المشرف بنجاح من هذه العملية التشاركية.
|
|
182
178
|
edit:
|
|
183
179
|
update: تحديث
|
|
184
|
-
index:
|
|
185
|
-
process_admins_title: مدراء العملية التشاركية
|
|
186
180
|
new:
|
|
187
181
|
create: إنشاء
|
|
188
182
|
update:
|
|
@@ -200,7 +194,6 @@ ar:
|
|
|
200
194
|
published: نشرت
|
|
201
195
|
new:
|
|
202
196
|
create: إنشاء
|
|
203
|
-
title: عملية تشاركية جديدة
|
|
204
197
|
update:
|
|
205
198
|
error: حدثت مشكلة أثناء تحديث هذه العملية التشاركية.
|
|
206
199
|
success: عملية المشاركة تم تحديثها بنجاح.
|
data/config/locales/bg.yml
CHANGED
|
@@ -146,7 +146,6 @@ bg:
|
|
|
146
146
|
destroy:
|
|
147
147
|
success: Групата на процеса на участие беше изтрита успешно.
|
|
148
148
|
edit:
|
|
149
|
-
title: Редактиране на групата на процеса
|
|
150
149
|
update: Актуализация
|
|
151
150
|
new:
|
|
152
151
|
create: Създаване
|
|
@@ -161,7 +160,6 @@ bg:
|
|
|
161
160
|
new:
|
|
162
161
|
import: Импортиране
|
|
163
162
|
select: Изберете кои данни искате да импортирате
|
|
164
|
-
title: Импортиране на процес на участие
|
|
165
163
|
participatory_process_publications:
|
|
166
164
|
create:
|
|
167
165
|
error: Възникна проблем при публикуването на този процес на участие.
|
|
@@ -191,13 +189,11 @@ bg:
|
|
|
191
189
|
Оставихме го тук, за да можете да мигрирате CTA, от които се нуждаете. Полетата <i>Call to action path</i> и
|
|
192
190
|
<i>Текстът на подканващата фраза</i> ще бъде премахнат в следващата версия.
|
|
193
191
|
title: CTA е остарял
|
|
194
|
-
title: Редактиране на етап на процес на участие
|
|
195
192
|
update: Актуализация
|
|
196
193
|
index:
|
|
197
|
-
steps_title:
|
|
194
|
+
steps_title: Фази
|
|
198
195
|
new:
|
|
199
196
|
create: Създаване
|
|
200
|
-
title: Нов етап на процес на участие
|
|
201
197
|
ordering:
|
|
202
198
|
error: Възникна проблем при промяната на реда на тези етапи на процеса на участие.
|
|
203
199
|
update:
|
|
@@ -210,13 +206,9 @@ bg:
|
|
|
210
206
|
destroy:
|
|
211
207
|
success: Администраторът успешно премахнат от този процес на участие.
|
|
212
208
|
edit:
|
|
213
|
-
title: Актуализиране на администратора на процеса на участие
|
|
214
209
|
update: Актуализация
|
|
215
|
-
index:
|
|
216
|
-
process_admins_title: Администратори на процес на участие
|
|
217
210
|
new:
|
|
218
211
|
create: Създаване
|
|
219
|
-
title: Нов администратор на процес на участие
|
|
220
212
|
update:
|
|
221
213
|
error: Възникна проблем при актуализирането на администратор за този процес на участие.
|
|
222
214
|
success: Администраторът беше актуализиран успешно за този процес на участие.
|
|
@@ -233,7 +225,6 @@ bg:
|
|
|
233
225
|
unpublished: Непубликувано
|
|
234
226
|
new:
|
|
235
227
|
create: Създаване
|
|
236
|
-
title: Нов процес на участие
|
|
237
228
|
update:
|
|
238
229
|
error: Възникна проблем при актуализирането на този процес на участие.
|
|
239
230
|
success: Процесът на участие беше актуализиран успешно.
|
data/config/locales/bs-BA.yml
CHANGED
data/config/locales/ca-IT.yml
CHANGED
|
@@ -170,7 +170,7 @@ ca-IT:
|
|
|
170
170
|
error: Hi ha hagut un error en eliminar el grup de processos participatius.
|
|
171
171
|
success: El grup de processos participatius s'ha eliminat correctament.
|
|
172
172
|
edit:
|
|
173
|
-
title:
|
|
173
|
+
title: Editar el grup de procés
|
|
174
174
|
update: Actualitza
|
|
175
175
|
new:
|
|
176
176
|
create: Crea
|
|
@@ -185,7 +185,7 @@ ca-IT:
|
|
|
185
185
|
new:
|
|
186
186
|
import: Importar
|
|
187
187
|
select: Selecciona quines dades vols importar.
|
|
188
|
-
title: Importar
|
|
188
|
+
title: Importar un procés participatiu
|
|
189
189
|
participatory_process_publications:
|
|
190
190
|
create:
|
|
191
191
|
error: S'ha produït un error en publicar aquest procés participatiu.
|
|
@@ -214,13 +214,13 @@ ca-IT:
|
|
|
214
214
|
Ara això es fa a la <b>Página d'inici</b>, fent servir el bloc de contingut <b>Imatges principal i botó d'acció</b>.
|
|
215
215
|
L'hem deixar aquí per a que migris els CTAs que necessitis. Els camps <i>Ruta del botó d'acció</i> i <i>Text del botó d'acció</i> s'eliminaran a la propera versió.
|
|
216
216
|
title: CTA obsolet
|
|
217
|
-
title:
|
|
217
|
+
title: Editar la fase de procés participatiu
|
|
218
218
|
update: Actualitza
|
|
219
219
|
index:
|
|
220
220
|
steps_title: Fases del procés
|
|
221
221
|
new:
|
|
222
222
|
create: Crea
|
|
223
|
-
title: Nova fase
|
|
223
|
+
title: Nova fase del procés participatiu
|
|
224
224
|
ordering:
|
|
225
225
|
error: S'ha produït un error en la reordenació de les fases d'aquest procés participatiu.
|
|
226
226
|
update:
|
|
@@ -233,7 +233,7 @@ ca-IT:
|
|
|
233
233
|
destroy:
|
|
234
234
|
success: L'administradora s'ha eliminat correctament d'aquest procés participatiu.
|
|
235
235
|
edit:
|
|
236
|
-
title: Actualitzar administradora
|
|
236
|
+
title: Actualitzar l'administradora del procés participatiu
|
|
237
237
|
update: Actualitza
|
|
238
238
|
index:
|
|
239
239
|
process_admins_title: Administradores del procés participatiu
|
data/config/locales/ca.yml
CHANGED
|
@@ -170,7 +170,7 @@ ca:
|
|
|
170
170
|
error: Hi ha hagut un error en eliminar el grup de processos participatius.
|
|
171
171
|
success: El grup de processos participatius s'ha eliminat correctament.
|
|
172
172
|
edit:
|
|
173
|
-
title:
|
|
173
|
+
title: Editar el grup de procés
|
|
174
174
|
update: Actualitza
|
|
175
175
|
new:
|
|
176
176
|
create: Crea
|
|
@@ -185,7 +185,7 @@ ca:
|
|
|
185
185
|
new:
|
|
186
186
|
import: Importar
|
|
187
187
|
select: Selecciona quines dades vols importar.
|
|
188
|
-
title: Importar
|
|
188
|
+
title: Importar un procés participatiu
|
|
189
189
|
participatory_process_publications:
|
|
190
190
|
create:
|
|
191
191
|
error: S'ha produït un error en publicar aquest procés participatiu.
|
|
@@ -214,13 +214,13 @@ ca:
|
|
|
214
214
|
Ara això es fa a la <b>Página d'inici</b>, fent servir el bloc de contingut <b>Imatges principal i botó d'acció</b>.
|
|
215
215
|
L'hem deixar aquí per a que migris els CTAs que necessitis. Els camps <i>Ruta del botó d'acció</i> i <i>Text del botó d'acció</i> s'eliminaran a la propera versió.
|
|
216
216
|
title: CTA obsolet
|
|
217
|
-
title:
|
|
217
|
+
title: Editar la fase de procés participatiu
|
|
218
218
|
update: Actualitza
|
|
219
219
|
index:
|
|
220
220
|
steps_title: Fases del procés
|
|
221
221
|
new:
|
|
222
222
|
create: Crea
|
|
223
|
-
title: Nova fase
|
|
223
|
+
title: Nova fase del procés participatiu
|
|
224
224
|
ordering:
|
|
225
225
|
error: S'ha produït un error en la reordenació de les fases d'aquest procés participatiu.
|
|
226
226
|
update:
|
|
@@ -233,7 +233,7 @@ ca:
|
|
|
233
233
|
destroy:
|
|
234
234
|
success: L'administradora s'ha eliminat correctament d'aquest procés participatiu.
|
|
235
235
|
edit:
|
|
236
|
-
title: Actualitzar administradora
|
|
236
|
+
title: Actualitzar l'administradora del procés participatiu
|
|
237
237
|
update: Actualitza
|
|
238
238
|
index:
|
|
239
239
|
process_admins_title: Administradores del procés participatiu
|
data/config/locales/cs.yml
CHANGED
|
@@ -66,6 +66,8 @@ cs:
|
|
|
66
66
|
attributes:
|
|
67
67
|
document:
|
|
68
68
|
allowed_file_content_types: 'Neplatný typ dokumentu. Jsou povoleny pouze soubory s následujícími příponami: %{types}'
|
|
69
|
+
empty: Dokument je prázdný
|
|
70
|
+
invalid_json: Dokument není platný JSON
|
|
69
71
|
models:
|
|
70
72
|
decidim/participatory_process_step_activated_event: Krok aktivován
|
|
71
73
|
decidim/participatory_process_step_changed_event: Krok se změnil
|
|
@@ -168,13 +170,13 @@ cs:
|
|
|
168
170
|
new:
|
|
169
171
|
duplicate: Duplikovat
|
|
170
172
|
select: Vyberte, která data chcete duplikovat
|
|
171
|
-
title: Duplikovat
|
|
173
|
+
title: Duplikovat participační proces
|
|
172
174
|
participatory_process_groups:
|
|
173
175
|
destroy:
|
|
174
176
|
error: Došlo k chybě při zničení skupiny participačních procesů.
|
|
175
177
|
success: Účastní skupina procesů byla úspěšně smazána.
|
|
176
178
|
edit:
|
|
177
|
-
title: Upravit skupinu
|
|
179
|
+
title: Upravit skupinu procesu
|
|
178
180
|
update: Aktualizace
|
|
179
181
|
new:
|
|
180
182
|
create: Vytvořit
|
|
@@ -189,7 +191,6 @@ cs:
|
|
|
189
191
|
new:
|
|
190
192
|
import: Importovat
|
|
191
193
|
select: Vyberte, které údaje chcete importovat
|
|
192
|
-
title: Importovat proces participace
|
|
193
194
|
participatory_process_publications:
|
|
194
195
|
create:
|
|
195
196
|
error: Při publikování tohoto procesu participace došlo k chybě.
|
|
@@ -219,13 +220,11 @@ cs:
|
|
|
219
220
|
Nechali jsme zde pro vás migraci CTA, které potřebujete. Pole <i>Cesta výzvy k akci</i> a
|
|
220
221
|
<i>Text výzvy k akci</i> bude v příští verzi odstraněn.
|
|
221
222
|
title: Zastaralá CTA
|
|
222
|
-
title: Úprava kroku procesu participace
|
|
223
223
|
update: Aktualizace
|
|
224
224
|
index:
|
|
225
225
|
steps_title: Kroky
|
|
226
226
|
new:
|
|
227
227
|
create: Vytvořit
|
|
228
|
-
title: Nový krok procesu participace
|
|
229
228
|
ordering:
|
|
230
229
|
error: Došlo k chybě při novém uspořádání těchto kroků procesu participace.
|
|
231
230
|
update:
|
|
@@ -238,13 +237,9 @@ cs:
|
|
|
238
237
|
destroy:
|
|
239
238
|
success: Uživatel byl úspěšně odstraněn z tohoto participačního procesu.
|
|
240
239
|
edit:
|
|
241
|
-
title: Aktualizovat správce participačního procesu
|
|
242
240
|
update: Aktualizace
|
|
243
|
-
index:
|
|
244
|
-
process_admins_title: Uživatelé účastnických procesů
|
|
245
241
|
new:
|
|
246
242
|
create: Vytvořit
|
|
247
|
-
title: Nový správce participačního procesu
|
|
248
243
|
update:
|
|
249
244
|
error: Došlo k chybě při aktualizaci uživatele pro tento participační proces.
|
|
250
245
|
success: Uživatel byl úspěšně aktualizován pro tento participační proces.
|
|
@@ -505,9 +500,11 @@ cs:
|
|
|
505
500
|
selection_criteria: Kritéria výběru
|
|
506
501
|
imports:
|
|
507
502
|
attachment_error: Přílohu "%{title}" nelze importovat (%{error}).
|
|
503
|
+
hero_image_error: Obrázek hrdiny nelze importovat (%{error}).
|
|
508
504
|
new_import:
|
|
509
505
|
accepted_types:
|
|
510
506
|
json: JSON
|
|
507
|
+
help_html: Tato funkce importu umožňuje vytvořit nový participační proces z exportovaného JSON souboru. Můžete exportovat proces z jiné organizace nebo ze stejné organizace. Importovaný proces bude obsahovat jeho nastavení, komponenty a přílohy (je-li vybráno).
|
|
511
508
|
participatory_process_duplicates:
|
|
512
509
|
form:
|
|
513
510
|
slug_help_html: 'URL slugy slouží ke generaci adres URL, které odkazují na tento proces. Povolená jsou pouze písmena, číslice a pomlčky a musí začínat písmenem. Příklad: %{url}'
|
|
@@ -572,7 +569,7 @@ cs:
|
|
|
572
569
|
extra_data:
|
|
573
570
|
name: Fáze a doba trvání
|
|
574
571
|
hero:
|
|
575
|
-
name: Obrázek hrdiny a
|
|
572
|
+
name: Obrázek hrdiny a výzva k akci
|
|
576
573
|
highlighted_processes:
|
|
577
574
|
name: Zvýrazněné procesy
|
|
578
575
|
related_processes:
|
data/config/locales/de.yml
CHANGED
|
@@ -106,6 +106,7 @@ de:
|
|
|
106
106
|
menu:
|
|
107
107
|
participatory_process_groups: Prozessgruppen
|
|
108
108
|
participatory_process_groups_submenu:
|
|
109
|
+
info: Über diese Prozessgruppe
|
|
109
110
|
landing_page: Startseiten-Layout
|
|
110
111
|
participatory_processes: Beteiligungsprozesse
|
|
111
112
|
participatory_processes_submenu:
|
|
@@ -161,13 +162,11 @@ de:
|
|
|
161
162
|
new:
|
|
162
163
|
duplicate: Duplizieren
|
|
163
164
|
select: Zu duplizierende Daten auswählen
|
|
164
|
-
title: Beteiligungsprozess duplizieren
|
|
165
165
|
participatory_process_groups:
|
|
166
166
|
destroy:
|
|
167
167
|
error: Beim Löschen der Beteiligungsprozessgruppe ist ein Fehler aufgetreten.
|
|
168
168
|
success: Beteiligungsprozess erfolgreich gelöscht.
|
|
169
169
|
edit:
|
|
170
|
-
title: Prozessgruppe bearbeiten
|
|
171
170
|
update: Aktualisieren
|
|
172
171
|
new:
|
|
173
172
|
create: Erstellen
|
|
@@ -182,7 +181,6 @@ de:
|
|
|
182
181
|
new:
|
|
183
182
|
import: Importieren
|
|
184
183
|
select: Wählen Sie aus, welche Daten Sie importieren möchten
|
|
185
|
-
title: Beteiligungsprozess importieren
|
|
186
184
|
participatory_process_publications:
|
|
187
185
|
create:
|
|
188
186
|
error: Bei der Veröffentlichung dieses Beteiligungsprozesses ist ein Fehler aufgetreten.
|
|
@@ -212,13 +210,11 @@ de:
|
|
|
212
210
|
Sie können die benötigten Handlungsaufforderungen migrieren. Die Felder <i>Aufruf zum Aktionspfad</i> und
|
|
213
211
|
<i>Aufruf zum Aktionstext</i> werden in der nächsten Version entfernt.
|
|
214
212
|
title: Handlungsaufforderung veraltet
|
|
215
|
-
title: Beteiligungsschritt bearbeiten
|
|
216
213
|
update: Aktualisieren
|
|
217
214
|
index:
|
|
218
215
|
steps_title: Schritte
|
|
219
216
|
new:
|
|
220
217
|
create: Erstellen
|
|
221
|
-
title: Neuer partizipativer Prozessschritt
|
|
222
218
|
ordering:
|
|
223
219
|
error: Beim Neuanordnen dieser partizipativen Prozessschritte ist ein Fehler aufgetreten.
|
|
224
220
|
update:
|
|
@@ -231,13 +227,9 @@ de:
|
|
|
231
227
|
destroy:
|
|
232
228
|
success: Der Benutzer wurde erfolgreich aus diesem partizipativen Prozess entfernt.
|
|
233
229
|
edit:
|
|
234
|
-
title: Admin des Beteiligungsprozesses aktualisieren
|
|
235
230
|
update: Aktualisieren
|
|
236
|
-
index:
|
|
237
|
-
process_admins_title: Partizipative Prozessbenutzer
|
|
238
231
|
new:
|
|
239
232
|
create: Erstellen
|
|
240
|
-
title: Neuer Administrator des Beteiligungsprozesses
|
|
241
233
|
update:
|
|
242
234
|
error: Für diesen partizipativen Prozess wurde ein Fehler bei einem Benutzer aktualisiert.
|
|
243
235
|
success: Der Benutzer wurde für diesen partizipativen Prozess erfolgreich aktualisiert.
|
|
@@ -252,11 +244,8 @@ de:
|
|
|
252
244
|
public: Öffentlich
|
|
253
245
|
published: Veröffentlicht
|
|
254
246
|
unpublished: Nicht veröffentlicht
|
|
255
|
-
manage_trash:
|
|
256
|
-
title: Gelöschte Beteiligungsprozesse
|
|
257
247
|
new:
|
|
258
248
|
create: Erstellen
|
|
259
|
-
title: Neuer Beteiligungsprozess
|
|
260
249
|
update:
|
|
261
250
|
error: Beim Aktualisieren dieses Beteiligungsprozesses ist ein Fehler aufgetreten.
|
|
262
251
|
success: Beteiligungsprozess erfolgreich aktualisiert.
|
|
@@ -275,7 +264,6 @@ de:
|
|
|
275
264
|
participatory_process_groups: Partizipative Prozessgruppen
|
|
276
265
|
participatory_process_types: Beteiligungsprozesstypen
|
|
277
266
|
participatory_processes: Beteiligungsprozesse
|
|
278
|
-
participatory_processes_deleted: Gelöschte Beteiligungsprozesse
|
|
279
267
|
tooltips:
|
|
280
268
|
deleted_processes_info: Prozesse können nur gelöscht werden, wenn der Status "Nicht veröffentlicht" ist.
|
|
281
269
|
users:
|
data/config/locales/el.yml
CHANGED
|
@@ -101,6 +101,7 @@ el:
|
|
|
101
101
|
attachment_files: Αρχεία
|
|
102
102
|
attachments: Συνημμένα
|
|
103
103
|
components: Στοιχεία
|
|
104
|
+
info: Σχετικά με αυτή τη διεργασία
|
|
104
105
|
moderations: Εποπτεύσεις
|
|
105
106
|
process_admins: Διαχειριστές διαδικασιών
|
|
106
107
|
steps: Φάσεις
|
|
@@ -140,7 +141,6 @@ el:
|
|
|
140
141
|
destroy:
|
|
141
142
|
success: Η ομάδα διαδικασιών συμμετοχής διαγράφηκε με επιτυχία.
|
|
142
143
|
edit:
|
|
143
|
-
title: Επεξεργασία ομάδας διαδικασιών
|
|
144
144
|
update: Ενημέρωση
|
|
145
145
|
new:
|
|
146
146
|
create: Δημιουργία
|
|
@@ -155,7 +155,6 @@ el:
|
|
|
155
155
|
new:
|
|
156
156
|
import: Εισαγωγή
|
|
157
157
|
select: Επιλέξτε ποια δεδομένα θέλετε να εισαγάγετε
|
|
158
|
-
title: Εισαγωγή διαδικασίας συμμετοχής
|
|
159
158
|
participatory_process_publications:
|
|
160
159
|
create:
|
|
161
160
|
error: Υπήρξε ένα πρόβλημα κατά τη δημοσίευση αυτής της διαδικασίας συμμετοχής.
|
|
@@ -178,13 +177,11 @@ el:
|
|
|
178
177
|
last_step: Δεν είναι δυνατή η διαγραφή της τελευταίας φάσης μιας διεργασίας.
|
|
179
178
|
success: Η φάση διαδικασίας συμμετοχής διαγράφηκε με επιτυχία.
|
|
180
179
|
edit:
|
|
181
|
-
title: Επεξεργασία φάσης διαδικασίας συμμετοχής
|
|
182
180
|
update: Ενημέρωση
|
|
183
181
|
index:
|
|
184
182
|
steps_title: Φάσεις
|
|
185
183
|
new:
|
|
186
184
|
create: Δημιουργία
|
|
187
|
-
title: Νέα φάση διαδικασίας συμμετοχής
|
|
188
185
|
ordering:
|
|
189
186
|
error: Παρουσιάστηκε πρόβλημα κατά την αναδιάταξη αυτών των φάσεων της διαδικασίας συμμετοχής.
|
|
190
187
|
update:
|
|
@@ -197,13 +194,9 @@ el:
|
|
|
197
194
|
destroy:
|
|
198
195
|
success: Ο διαχειριστής καταργήθηκε με επιτυχία από αυτήν τη διαδικασία συμμετοχής.
|
|
199
196
|
edit:
|
|
200
|
-
title: Ενημέρωση διαχειριστή διαδικασίας συμμετοχής
|
|
201
197
|
update: Ενημέρωση
|
|
202
|
-
index:
|
|
203
|
-
process_admins_title: Διαχειριστές διαδικασίας συμμετοχής
|
|
204
198
|
new:
|
|
205
199
|
create: Δημιουργία
|
|
206
|
-
title: Νέος διαχειριστής διαδικασίας συμμετοχής
|
|
207
200
|
update:
|
|
208
201
|
error: Υπήρξε ένα πρόβλημα κατά την ενημέρωση ενός διαχειριστή για αυτήν τη διαδικασία συμμετοχής.
|
|
209
202
|
success: Ο διαχειριστής ενημερώθηκε με επιτυχία για αυτήν τη διαδικασία συμμετοχής.
|
|
@@ -219,7 +212,6 @@ el:
|
|
|
219
212
|
published: Δημοσιεύτηκε
|
|
220
213
|
new:
|
|
221
214
|
create: Δημιουργία
|
|
222
|
-
title: Νέα διαδικασία συμμετοχής
|
|
223
215
|
update:
|
|
224
216
|
error: Υπήρξε ένα πρόβλημα κατά την ενημέρωση αυτής της διαδικασίας συμμετοχής.
|
|
225
217
|
success: Η διαδικασία συμμετοχής ενημερώθηκε με επιτυχία.
|
data/config/locales/es-MX.yml
CHANGED
|
@@ -109,7 +109,7 @@ es-MX:
|
|
|
109
109
|
participatory_process_groups: Grupos de procesos
|
|
110
110
|
participatory_process_groups_submenu:
|
|
111
111
|
info: Acerca de este grupo de procesos
|
|
112
|
-
landing_page: Disposición de la página de
|
|
112
|
+
landing_page: Disposición de la página de inicio
|
|
113
113
|
participatory_processes: Procesos
|
|
114
114
|
participatory_processes_submenu:
|
|
115
115
|
attachment_collections: Carpetas
|
|
@@ -117,7 +117,7 @@ es-MX:
|
|
|
117
117
|
attachments: Archivos adjuntos
|
|
118
118
|
components: Componentes
|
|
119
119
|
info: Acerca de este proceso
|
|
120
|
-
landing_page: Disposición de la página de
|
|
120
|
+
landing_page: Disposición de la página de inicio
|
|
121
121
|
moderations: Moderaciones
|
|
122
122
|
private_users: Miembros
|
|
123
123
|
process_admins: Usuarios del proceso
|
|
@@ -170,7 +170,7 @@ es-MX:
|
|
|
170
170
|
error: Se ha producido un error al eliminar el grupo de procesos participativos.
|
|
171
171
|
success: El grupo de proceso participativo se eliminó con éxito.
|
|
172
172
|
edit:
|
|
173
|
-
title: Editar grupo de procesos
|
|
173
|
+
title: Editar el grupo de procesos
|
|
174
174
|
update: Actualizar
|
|
175
175
|
new:
|
|
176
176
|
create: Crear
|
|
@@ -185,7 +185,7 @@ es-MX:
|
|
|
185
185
|
new:
|
|
186
186
|
import: Importar
|
|
187
187
|
select: Selecciona qué datos quieres importar
|
|
188
|
-
title: Importar proceso participativo
|
|
188
|
+
title: Importar un proceso participativo
|
|
189
189
|
participatory_process_publications:
|
|
190
190
|
create:
|
|
191
191
|
error: Se ha producido un error al publicar este proceso participativo.
|
|
@@ -215,13 +215,13 @@ es-MX:
|
|
|
215
215
|
Lo hemos dejado aquí para que migres las CTAs que necesites. Los campos <i>Ruta del botón de acción</i> y
|
|
216
216
|
<i>Texto del botón de acción</i> se eliminaran en la próxima versión.
|
|
217
217
|
title: CTA obsoleto
|
|
218
|
-
title: Editar fase
|
|
218
|
+
title: Editar la fase del proceso participativo
|
|
219
219
|
update: Actualizar
|
|
220
220
|
index:
|
|
221
221
|
steps_title: Fases del proceso
|
|
222
222
|
new:
|
|
223
223
|
create: Crear
|
|
224
|
-
title:
|
|
224
|
+
title: Nueva fase del proceso participativo
|
|
225
225
|
ordering:
|
|
226
226
|
error: Se ha producido un error en la reordenación de las fases de este proceso participativo.
|
|
227
227
|
update:
|
|
@@ -234,10 +234,10 @@ es-MX:
|
|
|
234
234
|
destroy:
|
|
235
235
|
success: Usuario eliminado con éxito de este proceso participativo.
|
|
236
236
|
edit:
|
|
237
|
-
title:
|
|
237
|
+
title: Actualizar la administradora del proceso participativo
|
|
238
238
|
update: Actualizar
|
|
239
239
|
index:
|
|
240
|
-
process_admins_title:
|
|
240
|
+
process_admins_title: Administradoras del proceso participativo
|
|
241
241
|
new:
|
|
242
242
|
create: Crear
|
|
243
243
|
title: Nueva administradora del proceso participativo
|
data/config/locales/es-PY.yml
CHANGED
|
@@ -109,7 +109,7 @@ es-PY:
|
|
|
109
109
|
participatory_process_groups: Grupos de procesos
|
|
110
110
|
participatory_process_groups_submenu:
|
|
111
111
|
info: Acerca de este grupo de procesos
|
|
112
|
-
landing_page: Disposición de la página de
|
|
112
|
+
landing_page: Disposición de la página de inicio
|
|
113
113
|
participatory_processes: Procesos
|
|
114
114
|
participatory_processes_submenu:
|
|
115
115
|
attachment_collections: Carpetas
|
|
@@ -117,7 +117,7 @@ es-PY:
|
|
|
117
117
|
attachments: Archivos adjuntos
|
|
118
118
|
components: Componentes
|
|
119
119
|
info: Acerca de este proceso
|
|
120
|
-
landing_page: Disposición de la página de
|
|
120
|
+
landing_page: Disposición de la página de inicio
|
|
121
121
|
moderations: Moderaciones
|
|
122
122
|
private_users: Miembros
|
|
123
123
|
process_admins: Usuarios del proceso
|
|
@@ -170,7 +170,7 @@ es-PY:
|
|
|
170
170
|
error: Se ha producido un error al eliminar el grupo de procesos participativos.
|
|
171
171
|
success: El grupo de proceso participativo se eliminó con éxito.
|
|
172
172
|
edit:
|
|
173
|
-
title: Editar grupo de procesos
|
|
173
|
+
title: Editar el grupo de procesos
|
|
174
174
|
update: Actualizar
|
|
175
175
|
new:
|
|
176
176
|
create: Crear
|
|
@@ -185,7 +185,7 @@ es-PY:
|
|
|
185
185
|
new:
|
|
186
186
|
import: Importar
|
|
187
187
|
select: Selecciona qué datos quieres importar
|
|
188
|
-
title: Importar proceso participativo
|
|
188
|
+
title: Importar un proceso participativo
|
|
189
189
|
participatory_process_publications:
|
|
190
190
|
create:
|
|
191
191
|
error: Se ha producido un error al publicar este proceso participativo.
|
|
@@ -215,13 +215,13 @@ es-PY:
|
|
|
215
215
|
Lo hemos dejado aquí para que migres las CTAs que necesites. Los campos <i>Ruta del botón de acción</i> y
|
|
216
216
|
<i>Texto del botón de acción</i> se eliminaran en la próxima versión.
|
|
217
217
|
title: CTA obsoleto
|
|
218
|
-
title: Editar fase
|
|
218
|
+
title: Editar la fase del proceso participativo
|
|
219
219
|
update: Actualizar
|
|
220
220
|
index:
|
|
221
221
|
steps_title: Fases del proceso
|
|
222
222
|
new:
|
|
223
223
|
create: Crear
|
|
224
|
-
title:
|
|
224
|
+
title: Nueva fase del proceso participativo
|
|
225
225
|
ordering:
|
|
226
226
|
error: Se ha producido un error en la reordenación de las fases de este proceso participativo.
|
|
227
227
|
update:
|
|
@@ -234,10 +234,10 @@ es-PY:
|
|
|
234
234
|
destroy:
|
|
235
235
|
success: Usuario eliminado con éxito de este proceso participativo.
|
|
236
236
|
edit:
|
|
237
|
-
title:
|
|
237
|
+
title: Actualizar la administradora del proceso participativo
|
|
238
238
|
update: Actualizar
|
|
239
239
|
index:
|
|
240
|
-
process_admins_title:
|
|
240
|
+
process_admins_title: Administradoras del proceso participativo
|
|
241
241
|
new:
|
|
242
242
|
create: Crear
|
|
243
243
|
title: Nueva administradora del proceso participativo
|