decidim-participatory_processes 0.14.1 → 0.14.2
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 82d1f6ab2ad9a16580540367b73f88ff343e4a0847beb36e74d2856ff4a0d2e4
|
4
|
+
data.tar.gz: dda2711e02770169b6dc86a8e92602726bd19ba9d09c0dcea971f787a7ef965a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5d0e115307023da597a944fedd34b977fe95d0f1b38075bf229855a381156f154aa1693f493a9de2fa1a8cbd3b3966e89b8beb45fe31ee2f2612ed6c6421eea7
|
7
|
+
data.tar.gz: bd273e49e35cef0d04ccf94846ad0bd2e09c3ec3b455dd8c004e4c71f940bde327775ac3c7771c39c593447ff2adc42f69a61738c029aac43f8ead8d9e232c2a
|
@@ -81,13 +81,21 @@ module Decidim
|
|
81
81
|
end
|
82
82
|
|
83
83
|
def copy_participatory_process_categories
|
84
|
-
@participatory_process.categories.each do |category|
|
85
|
-
Category.create!(
|
84
|
+
@participatory_process.categories.first_class.each do |category|
|
85
|
+
new_category = Category.create!(
|
86
86
|
name: category.name,
|
87
87
|
description: category.description,
|
88
|
-
parent_id: category.parent_id,
|
89
88
|
participatory_space: @copied_process
|
90
89
|
)
|
90
|
+
|
91
|
+
category.descendants.each do |child|
|
92
|
+
Category.create!(
|
93
|
+
name: child.name,
|
94
|
+
description: child.description,
|
95
|
+
participatory_space: @copied_process,
|
96
|
+
parent: new_category
|
97
|
+
)
|
98
|
+
end
|
91
99
|
end
|
92
100
|
end
|
93
101
|
|
@@ -0,0 +1,371 @@
|
|
1
|
+
de:
|
2
|
+
activemodel:
|
3
|
+
attributes:
|
4
|
+
participatory_process:
|
5
|
+
announcement: Ankündigung
|
6
|
+
banner_image: Bannerbild
|
7
|
+
copy_categories: Kategorien kopieren
|
8
|
+
copy_components: Kopieren Sie Komponenten
|
9
|
+
copy_steps: Schritte kopieren
|
10
|
+
description: Beschreibung
|
11
|
+
developer_group: Promoter-Gruppe
|
12
|
+
domain: Domain
|
13
|
+
end_date: Endtermin
|
14
|
+
hashtag: Hashtag
|
15
|
+
hero_image: Hauptbild
|
16
|
+
local_area: Organisationsbereich
|
17
|
+
meta_scope: Bereichs-Metadaten
|
18
|
+
participatory_process_group_id: Prozessgruppe
|
19
|
+
participatory_scope: Was ist entschieden?
|
20
|
+
participatory_structure: Wie ist es entschieden?
|
21
|
+
promoted: Gefördert
|
22
|
+
published_at: Veröffentlicht unter
|
23
|
+
scope_id: Umfang
|
24
|
+
scopes_enabled: Bereiche aktiviert
|
25
|
+
short_description: Kurze Beschreibung
|
26
|
+
show_statistics: Zeige Statistiken
|
27
|
+
slug: URL-Block
|
28
|
+
start_date: Anfangsdatum
|
29
|
+
subtitle: Untertitel
|
30
|
+
target: Wer nimmt teil?
|
31
|
+
title: Titel
|
32
|
+
participatory_process_group:
|
33
|
+
description: Beschreibung
|
34
|
+
hero_image: Bild
|
35
|
+
name: Name
|
36
|
+
participatory_process_ids: Ähnliche Prozesse
|
37
|
+
participatory_process_step:
|
38
|
+
description: Beschreibung
|
39
|
+
end_date: Endtermin
|
40
|
+
short_description: Kurze Beschreibung
|
41
|
+
start_date: Anfangsdatum
|
42
|
+
title: Titel
|
43
|
+
participatory_process_user_role:
|
44
|
+
email: Email
|
45
|
+
name: Name
|
46
|
+
role: Rolle
|
47
|
+
models:
|
48
|
+
decidim/participatory_process_step_activated_event: Schritt aktiviert
|
49
|
+
decidim/participatory_process_step_changed_event: Schritt geändert
|
50
|
+
activerecord:
|
51
|
+
models:
|
52
|
+
decidim/participatory_process:
|
53
|
+
one: Partizipationsprozess
|
54
|
+
other: Partizipative Prozesse
|
55
|
+
decidim/participatory_process_group:
|
56
|
+
one: Partizipative Prozessgruppe
|
57
|
+
other: Partizipative Prozessgruppen
|
58
|
+
decidim/participatory_process_step:
|
59
|
+
one: Schritt
|
60
|
+
other: Schritte
|
61
|
+
decidim:
|
62
|
+
admin:
|
63
|
+
actions:
|
64
|
+
activate: aktivieren Sie
|
65
|
+
configure: Konfigurieren
|
66
|
+
confirm_destroy: Löschen bestätigen
|
67
|
+
destroy: Löschen
|
68
|
+
duplicate: Duplikat
|
69
|
+
edit: Bearbeiten
|
70
|
+
new_process: Neuer Prozess
|
71
|
+
new_process_group: Neue Prozessgruppe
|
72
|
+
new_process_step: Neuer Schritt
|
73
|
+
new_process_user_role: Neuer Prozessbenutzer
|
74
|
+
preview: Vorschau
|
75
|
+
publish: Veröffentlichen
|
76
|
+
resend_invitation: Einladung erneut versenden
|
77
|
+
unpublish: Veröffentlichung rückgängig machen
|
78
|
+
menu:
|
79
|
+
participatory_process_groups: Prozessgruppen
|
80
|
+
participatory_processes: Prozesse
|
81
|
+
participatory_processes_submenu:
|
82
|
+
attachment_collections: Ordner
|
83
|
+
attachment_files: Dateien
|
84
|
+
attachments: Anlagen
|
85
|
+
categories: Kategorien
|
86
|
+
components: Komponenten
|
87
|
+
info: Info
|
88
|
+
moderations: Moderationen
|
89
|
+
private_users: Private Benutzer
|
90
|
+
process_admins: Benutzer verarbeiten
|
91
|
+
steps: Schritte
|
92
|
+
models:
|
93
|
+
participatory_process:
|
94
|
+
fields:
|
95
|
+
created_at: Hergestellt in
|
96
|
+
private: Privatgelände
|
97
|
+
promoted: Hervorgehoben
|
98
|
+
published: Veröffentlicht
|
99
|
+
title: Titel
|
100
|
+
name: Partizipationsprozess
|
101
|
+
participatory_process_group:
|
102
|
+
fields:
|
103
|
+
name: Name
|
104
|
+
name: Prozessgruppe
|
105
|
+
participatory_process_step:
|
106
|
+
fields:
|
107
|
+
end_date: Endtermin
|
108
|
+
start_date: Anfangsdatum
|
109
|
+
title: Titel
|
110
|
+
name: Partizipativer Prozessschritt
|
111
|
+
participatory_process_user_role:
|
112
|
+
fields:
|
113
|
+
email: Email
|
114
|
+
name: Name
|
115
|
+
role: Rolle
|
116
|
+
name: Partizipativer Prozessbenutzer
|
117
|
+
roles:
|
118
|
+
admin: Administrator
|
119
|
+
collaborator: Mitarbeiter
|
120
|
+
moderator: Moderator
|
121
|
+
user:
|
122
|
+
fields:
|
123
|
+
invitation_accepted_at: Einladung angenommen bei
|
124
|
+
invitation_sent_at: Einladung gesendet an
|
125
|
+
participatory_process_copies:
|
126
|
+
new:
|
127
|
+
copy: Kopieren
|
128
|
+
select: Wählen Sie die Daten aus, die Sie duplizieren möchten
|
129
|
+
title: Doppelter partizipativer Prozess
|
130
|
+
participatory_process_groups:
|
131
|
+
destroy:
|
132
|
+
success: Participatory Prozessgruppe erfolgreich gelöscht.
|
133
|
+
edit:
|
134
|
+
title: Prozessgruppe bearbeiten
|
135
|
+
update: Aktualisieren
|
136
|
+
new:
|
137
|
+
create: Erstellen
|
138
|
+
title: Neue Prozessgruppe
|
139
|
+
update:
|
140
|
+
error: Beim Aktualisieren dieser partizipativen Prozessgruppe ist ein Fehler aufgetreten.
|
141
|
+
success: Partizipative Prozessgruppe wurde erfolgreich aktualisiert.
|
142
|
+
participatory_process_publications:
|
143
|
+
create:
|
144
|
+
error: Bei der Veröffentlichung dieses partizipativen Prozesses ist ein Fehler aufgetreten.
|
145
|
+
success: Partizipativer Prozess erfolgreich veröffentlicht.
|
146
|
+
destroy:
|
147
|
+
error: Beim Aufheben der Veröffentlichung dieses partizipativen Prozesses ist ein Fehler aufgetreten.
|
148
|
+
success: Partizipativer Prozess wurde nicht veröffentlicht.
|
149
|
+
participatory_process_step_activations:
|
150
|
+
create:
|
151
|
+
error: Beim Aktivieren dieses partizipativen Prozessschritts ist ein Fehler aufgetreten.
|
152
|
+
success: Partizipativer Prozessschritt erfolgreich aktiviert
|
153
|
+
participatory_process_steps:
|
154
|
+
create:
|
155
|
+
error: Beim Erstellen eines neuen partizipativen Prozessschritts ist ein Fehler aufgetreten.
|
156
|
+
success: Partizipativer Prozessschritt erfolgreich erstellt
|
157
|
+
default_title: Einführung
|
158
|
+
destroy:
|
159
|
+
error:
|
160
|
+
active_step: Der aktive Schritt kann nicht gelöscht werden.
|
161
|
+
last_step: Der letzte Schritt eines Prozesses kann nicht gelöscht werden.
|
162
|
+
success: Participatory-Prozessschritt erfolgreich gelöscht
|
163
|
+
edit:
|
164
|
+
title: Beteiligungsschritt bearbeiten
|
165
|
+
update: Aktualisieren
|
166
|
+
index:
|
167
|
+
steps_title: Schritte
|
168
|
+
new:
|
169
|
+
create: Erstellen
|
170
|
+
title: Neuer partizipativer Prozessschritt
|
171
|
+
ordering:
|
172
|
+
error: Beim Neuanordnen dieser partizipativen Prozessschritte ist ein Fehler aufgetreten.
|
173
|
+
update:
|
174
|
+
error: Beim Aktualisieren dieses partizipativen Prozessschritts ist ein Fehler aufgetreten.
|
175
|
+
success: Partizipativer Prozessschritt erfolgreich aktualisiert.
|
176
|
+
participatory_process_user_roles:
|
177
|
+
create:
|
178
|
+
error: Beim Hinzufügen eines Benutzers für diesen partizipativen Prozess ist ein Fehler aufgetreten.
|
179
|
+
success: Benutzer hat diesen partizipativen Prozess erfolgreich hinzugefügt.
|
180
|
+
destroy:
|
181
|
+
success: Der Benutzer wurde erfolgreich aus diesem partizipativen Prozess entfernt.
|
182
|
+
edit:
|
183
|
+
title: Benutzer des partizipativen Prozesses aktualisieren
|
184
|
+
update: Aktualisieren
|
185
|
+
index:
|
186
|
+
process_admins_title: Partizipative Prozessbenutzer
|
187
|
+
new:
|
188
|
+
create: Erstellen
|
189
|
+
title: Neuer partizipativer Prozessbenutzer.
|
190
|
+
update:
|
191
|
+
error: Für diesen partizipativen Prozess wurde ein Fehler bei einem Benutzer aktualisiert.
|
192
|
+
success: Der Benutzer wurde für diesen partizipativen Prozess erfolgreich aktualisiert.
|
193
|
+
participatory_processes:
|
194
|
+
create:
|
195
|
+
error: Beim Erstellen eines neuen partizipativen Prozesses ist ein Fehler aufgetreten.
|
196
|
+
success: Partizipativer Prozess erfolgreich erstellt. Konfigurieren Sie jetzt seine Schritte.
|
197
|
+
destroy:
|
198
|
+
success: Participatory-Prozess wurde erfolgreich gelöscht.
|
199
|
+
edit:
|
200
|
+
update: Aktualisieren
|
201
|
+
form:
|
202
|
+
title: Allgemeine Information
|
203
|
+
index:
|
204
|
+
not_published: Nicht veröffentlicht
|
205
|
+
private: Privatgelände
|
206
|
+
public: Öffentlichkeit
|
207
|
+
published: Veröffentlicht
|
208
|
+
new:
|
209
|
+
create: Erstellen
|
210
|
+
title: Neuer partizipativer Prozess
|
211
|
+
update:
|
212
|
+
error: Beim Aktualisieren dieses partizipativen Prozesses ist ein Fehler aufgetreten.
|
213
|
+
success: Participatory-Prozess erfolgreich aktualisiert.
|
214
|
+
participatory_processes_copies:
|
215
|
+
create:
|
216
|
+
error: Beim Duplizieren dieses partizipativen Prozesses ist ein Fehler aufgetreten.
|
217
|
+
success: Partizipativer Prozess erfolgreich dupliziert.
|
218
|
+
participatory_processes_group:
|
219
|
+
create:
|
220
|
+
error: Beim Erstellen einer neuen partizipativen Prozessgruppe ist ein Fehler aufgetreten.
|
221
|
+
success: Partizipative Prozessgruppe erfolgreich erstellt.
|
222
|
+
titles:
|
223
|
+
participatory_process_groups: Partizipative Prozessgruppen
|
224
|
+
participatory_processes: Partizipative Prozesse
|
225
|
+
users:
|
226
|
+
resend_invitation:
|
227
|
+
error: Beim erneuten Senden der Einladung ist ein Fehler aufgetreten.
|
228
|
+
success: Einladung wird erfolgreich erneut gesendet.
|
229
|
+
admin_log:
|
230
|
+
participatory_process:
|
231
|
+
create: "%{user_name} hat den %{resource_name} Partizipationsprozess erstellt"
|
232
|
+
publish: "%{user_name} veröffentlichte den %{resource_name} Partizipationsprozess"
|
233
|
+
unpublish: "%{user_name} unveröffentlicht den %{resource_name} Partizipationsprozess"
|
234
|
+
update: "%{user_name} hat den %{resource_name} Partizipationsprozess aktualisiert"
|
235
|
+
participatory_process_step:
|
236
|
+
activate: "%{user_name} den %{resource_name} Schritt im %{space_name} Partizipationsprozess aktiviert"
|
237
|
+
create: "%{user_name} erstellt den %{resource_name} Schritt in dem %{space_name} Partizipationsprozess"
|
238
|
+
delete: "%{user_name} löschte den %{resource_name} Schritt in dem %{space_name} Partizipationsprozess"
|
239
|
+
update: "%{user_name} hat den %{resource_name} Schritt im %{space_name} Partizipationsprozess aktualisiert"
|
240
|
+
participatory_process_user_role:
|
241
|
+
create: "%{user_name} lud den Benutzer %{resource_name} zu dem %{space_name} Partizipationsprozess ein"
|
242
|
+
delete: "%{user_name} entfernte den Benutzer %{resource_name} aus dem %{space_name} Partizipationsprozess"
|
243
|
+
update: "%{user_name} änderte die Rolle des Benutzers %{resource_name} im %{space_name} Partizipationsprozess"
|
244
|
+
events:
|
245
|
+
participatory_process:
|
246
|
+
step_activated:
|
247
|
+
email_intro: 'Der %{resource_title} Schritt ist jetzt für %{participatory_space_title}. Sie können es von dieser Seite sehen:'
|
248
|
+
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{participatory_space_title}. Sie können nach dem vorherigen Link keine Benachrichtigungen mehr erhalten.
|
249
|
+
email_subject: Ein Update auf %{participatory_space_title}
|
250
|
+
notification_title: Der %{resource_title} Schritt ist jetzt aktiv für <a href="%{resource_path}">%{participatory_space_title}</a>
|
251
|
+
step_changed:
|
252
|
+
email_intro: 'Die Daten für den Schritt %{resource_title} bei %{participatory_space_title} wurden aktualisiert. Sie können es von dieser Seite sehen:'
|
253
|
+
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{participatory_space_title}. Sie können nach dem vorherigen Link keine Benachrichtigungen mehr erhalten.
|
254
|
+
email_subject: Ein Update auf %{participatory_space_title}
|
255
|
+
notification_title: Die Daten für den <a href="%{resource_path}">%{resource_title}</a> Schritt bei <a href="%{participatory_space_url}">%{participatory_space_title}</a> wurden aktualisiert.
|
256
|
+
menu:
|
257
|
+
processes: Prozesse
|
258
|
+
participatory_process_groups:
|
259
|
+
show:
|
260
|
+
group_participatory_processes:
|
261
|
+
one: 1 Prozesse für %{group}
|
262
|
+
other: "%{count} Prozesse für %{group}"
|
263
|
+
title: Partizipative Prozessgruppen
|
264
|
+
participatory_process_steps:
|
265
|
+
index:
|
266
|
+
process_steps: Prozessschritte
|
267
|
+
title: Partizipative Prozessschritte
|
268
|
+
participatory_processes:
|
269
|
+
admin:
|
270
|
+
participatory_process_copies:
|
271
|
+
form:
|
272
|
+
slug_help: 'URL-Slugs werden zum Generieren der URLs verwendet, die auf diesen Prozess verweisen. Akzeptiert nur Buchstaben, Zahlen und Bindestriche und muss mit einem Buchstaben beginnen. Beispiel: %{url}'
|
273
|
+
participatory_processes:
|
274
|
+
form:
|
275
|
+
announcement_help: Der Text, den Sie hier eingeben, wird dem Benutzer direkt unter den Prozessinformationen angezeigt.
|
276
|
+
slug_help: 'URL-Slugs werden zum Generieren der URLs verwendet, die auf diesen Prozess verweisen. Akzeptiert nur Buchstaben, Zahlen und Bindestriche und muss mit einem Buchstaben beginnen. Beispiel: %{url}'
|
277
|
+
content_blocks:
|
278
|
+
highlighted_processes:
|
279
|
+
name: Markierte Prozesse
|
280
|
+
index:
|
281
|
+
title: Partizipative Prozesse
|
282
|
+
pages:
|
283
|
+
home:
|
284
|
+
highlighted_processes:
|
285
|
+
active_processes: Aktive Prozesse
|
286
|
+
active_step: Aktiver Schritt
|
287
|
+
more_information: Mehr Informationen
|
288
|
+
participate: Sich beteiligen
|
289
|
+
see_all_processes: Alle Prozesse anzeigen
|
290
|
+
participatory_process_groups:
|
291
|
+
none: Keiner
|
292
|
+
participatory_processes:
|
293
|
+
filters:
|
294
|
+
counters:
|
295
|
+
active:
|
296
|
+
one: 1 aktiver Prozess
|
297
|
+
other: "%{count} aktive Prozesse"
|
298
|
+
all:
|
299
|
+
one: 1 Prozess
|
300
|
+
other: "%{count} Prozesse"
|
301
|
+
past:
|
302
|
+
one: 1 vergangener Prozess
|
303
|
+
other: "%{count} vergangene Prozesse"
|
304
|
+
upcoming:
|
305
|
+
one: 1 bevorstehender Prozess
|
306
|
+
other: "%{count} bevorstehende Prozesse"
|
307
|
+
explanations:
|
308
|
+
no_active: Keine aktiven Prozesse
|
309
|
+
no_active_nor_upcoming: Keine aktiven oder anstehenden Prozesse
|
310
|
+
no_active_nor_upcoming_callout: Es gibt keine aktiven oder bevorstehenden Prozesse. Hier ist eine Liste der vergangenen.
|
311
|
+
names:
|
312
|
+
active: Aktiv
|
313
|
+
all: Alle
|
314
|
+
past: Vergangenheit
|
315
|
+
upcoming: Bevorstehende
|
316
|
+
see: Sehen
|
317
|
+
index:
|
318
|
+
loading: Ergebnisse werden geladen ...
|
319
|
+
show:
|
320
|
+
developer_group: Promoter-Gruppe
|
321
|
+
end_date: Endtermin
|
322
|
+
local_area: Organisationsbereich
|
323
|
+
participatory_scope: Was ist entschieden?
|
324
|
+
participatory_structure: Wie ist es entschieden?
|
325
|
+
private_space: Dies ist ein privater Prozess
|
326
|
+
scope: Umfang
|
327
|
+
start_date: Anfangsdatum
|
328
|
+
target: Wer nimmt teil?
|
329
|
+
unspecified: Keine Angabe
|
330
|
+
statistics:
|
331
|
+
answers_count: Antworten
|
332
|
+
comments_count: Bemerkungen
|
333
|
+
debates_count: Debatten
|
334
|
+
endorsements_count: Empfehlungen
|
335
|
+
headline: Aktivität
|
336
|
+
meetings_count: Meetings
|
337
|
+
orders_count: Stimmen
|
338
|
+
pages_count: Seiten
|
339
|
+
processes_count: Prozesse
|
340
|
+
projects_count: Projekte
|
341
|
+
proposals_count: Vorschläge
|
342
|
+
results_count: Ergebnisse
|
343
|
+
surveys_count: Umfragen
|
344
|
+
users_count: Teilnehmer
|
345
|
+
votes_count: Stimmen
|
346
|
+
layouts:
|
347
|
+
decidim:
|
348
|
+
participatory_process_groups:
|
349
|
+
participatory_process_group:
|
350
|
+
browse: Durchsuche
|
351
|
+
processes_count: 'Prozesse:'
|
352
|
+
participatory_process_widgets:
|
353
|
+
show:
|
354
|
+
active_step: Aktiver Schritt
|
355
|
+
take_part: Teilnehmen
|
356
|
+
participatory_processes:
|
357
|
+
index:
|
358
|
+
promoted_processes: Markierte Prozesse
|
359
|
+
participatory_process:
|
360
|
+
active_step: 'Aktueller Schritt:'
|
361
|
+
take_part: Teilnehmen
|
362
|
+
promoted_process:
|
363
|
+
active_step: 'Aktueller Schritt:'
|
364
|
+
more_info: Mehr Info
|
365
|
+
take_part: Teilnehmen
|
366
|
+
process_header:
|
367
|
+
process_menu_item: Der Prozess
|
368
|
+
unfold: Entfalten
|
369
|
+
process_header_steps:
|
370
|
+
step: Schritt %{current} von %{total}
|
371
|
+
view_steps: Schritte anzeigen
|
data/config/locales/fi.yml
CHANGED
@@ -10,7 +10,7 @@ fi:
|
|
10
10
|
description: Kuvaus
|
11
11
|
developer_group: Kehittäjäryhmä
|
12
12
|
domain: Toimintaympäristö
|
13
|
-
end_date:
|
13
|
+
end_date: Päättymispäivä
|
14
14
|
hashtag: Hashtag
|
15
15
|
hero_image: Etusivun kuva
|
16
16
|
local_area: Järjestöalue
|
@@ -19,13 +19,13 @@ fi:
|
|
19
19
|
participatory_scope: Mitä päätetään
|
20
20
|
participatory_structure: Miten päätetään
|
21
21
|
promoted: Korostettu
|
22
|
-
published_at:
|
22
|
+
published_at: Julkaisuaika
|
23
23
|
scope_id: Teema
|
24
24
|
scopes_enabled: Teemat käytössä
|
25
25
|
short_description: Lyhyt kuvaus
|
26
26
|
show_statistics: Näytä tilastot
|
27
27
|
slug: URL-tunniste
|
28
|
-
start_date:
|
28
|
+
start_date: Alkamispäivä
|
29
29
|
subtitle: Alaotsikko
|
30
30
|
target: Kuka osallistuu
|
31
31
|
title: Otsikko
|
@@ -36,9 +36,9 @@ fi:
|
|
36
36
|
participatory_process_ids: Liittyvät prosessit
|
37
37
|
participatory_process_step:
|
38
38
|
description: Kuvaus
|
39
|
-
end_date:
|
39
|
+
end_date: Päättymispäivä
|
40
40
|
short_description: Lyhyt kuvaus
|
41
|
-
start_date:
|
41
|
+
start_date: Alkamispäivä
|
42
42
|
title: Otsikko
|
43
43
|
participatory_process_user_role:
|
44
44
|
email: Sähköposti
|
@@ -104,8 +104,8 @@ fi:
|
|
104
104
|
name: Prosessiryhmä
|
105
105
|
participatory_process_step:
|
106
106
|
fields:
|
107
|
-
end_date:
|
108
|
-
start_date:
|
107
|
+
end_date: Päättymispäivä
|
108
|
+
start_date: Alkamispäivä
|
109
109
|
title: Otsikko
|
110
110
|
name: Osallistumisprosessin vaihe
|
111
111
|
participatory_process_user_role:
|
@@ -116,7 +116,7 @@ fi:
|
|
116
116
|
name: Osallistumisprosessin käyttäjä
|
117
117
|
roles:
|
118
118
|
admin: Järjestelmänvalvoja
|
119
|
-
collaborator:
|
119
|
+
collaborator: Osallistumiskäyttäjä
|
120
120
|
moderator: Moderoija
|
121
121
|
user:
|
122
122
|
fields:
|
@@ -245,12 +245,12 @@ fi:
|
|
245
245
|
participatory_process:
|
246
246
|
step_activated:
|
247
247
|
email_intro: 'Vaihe %{resource_title} on nyt käytössä kohteessa %{participatory_space_title}. Voit nähdä sen tällä sivulla:'
|
248
|
-
email_outro:
|
248
|
+
email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat kohdetta %{participatory_space_title}. Voit lopettaa ilmoitusten vastaanottamisen edellä esitetyn linkin kautta.
|
249
249
|
email_subject: Päivitys kohteeseen %{participatory_space_title}
|
250
250
|
notification_title: Vaihe %{resource_title} on nyt käytössä kohteessa <a href="%{resource_path}">%{participatory_space_title}</a>
|
251
251
|
step_changed:
|
252
252
|
email_intro: 'Vaiheen %{resource_title} päivämäärät kohteessa %{participatory_space_title} on päivitetty. Voit nähdä sen tällä sivulla:'
|
253
|
-
email_outro:
|
253
|
+
email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat kohdetta %{participatory_space_title}. Voit lopettaa ilmoitusten vastaanottamisen edellä esitetyn linkin kautta.
|
254
254
|
email_subject: Päivitys kohteeseen %{participatory_space_title}
|
255
255
|
notification_title: Päivämäärät on päivitetty vaiheelle <a href="%{resource_path}">%{resource_title}</a> tilassa <a href="%{participatory_space_url}">%{participatory_space_title}</a>.
|
256
256
|
menu:
|
@@ -309,7 +309,7 @@ fi:
|
|
309
309
|
no_active_nor_upcoming: Ei käytössä olevia tai tulevia prosesseja
|
310
310
|
no_active_nor_upcoming_callout: Käytössä olevia tai tulevia prosesseja ei ole tiedossa. Tässä on luettelo menneistä prosesseista.
|
311
311
|
names:
|
312
|
-
active:
|
312
|
+
active: Aktiiviset
|
313
313
|
all: Kaikki
|
314
314
|
past: Menneet
|
315
315
|
upcoming: Tulevat
|
@@ -318,13 +318,13 @@ fi:
|
|
318
318
|
loading: Ladataan tulokset...
|
319
319
|
show:
|
320
320
|
developer_group: Kehittäjäryhmä
|
321
|
-
end_date:
|
321
|
+
end_date: Päättymispäivä
|
322
322
|
local_area: Organisaatioalue
|
323
323
|
participatory_scope: Mitä päätetään
|
324
324
|
participatory_structure: Miten päätetään
|
325
325
|
private_space: Tämä on yksityinen prosessi
|
326
326
|
scope: Teema
|
327
|
-
start_date:
|
327
|
+
start_date: Alkamispäivä
|
328
328
|
target: Kuka osallistuu
|
329
329
|
unspecified: Ei määritelty
|
330
330
|
statistics:
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: decidim-participatory_processes
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.14.
|
4
|
+
version: 0.14.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Josep Jaume Rey Peroy
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2018-
|
13
|
+
date: 2018-10-03 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: decidim-core
|
@@ -18,42 +18,42 @@ dependencies:
|
|
18
18
|
requirements:
|
19
19
|
- - '='
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 0.14.
|
21
|
+
version: 0.14.2
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
25
25
|
requirements:
|
26
26
|
- - '='
|
27
27
|
- !ruby/object:Gem::Version
|
28
|
-
version: 0.14.
|
28
|
+
version: 0.14.2
|
29
29
|
- !ruby/object:Gem::Dependency
|
30
30
|
name: decidim-admin
|
31
31
|
requirement: !ruby/object:Gem::Requirement
|
32
32
|
requirements:
|
33
33
|
- - '='
|
34
34
|
- !ruby/object:Gem::Version
|
35
|
-
version: 0.14.
|
35
|
+
version: 0.14.2
|
36
36
|
type: :development
|
37
37
|
prerelease: false
|
38
38
|
version_requirements: !ruby/object:Gem::Requirement
|
39
39
|
requirements:
|
40
40
|
- - '='
|
41
41
|
- !ruby/object:Gem::Version
|
42
|
-
version: 0.14.
|
42
|
+
version: 0.14.2
|
43
43
|
- !ruby/object:Gem::Dependency
|
44
44
|
name: decidim-dev
|
45
45
|
requirement: !ruby/object:Gem::Requirement
|
46
46
|
requirements:
|
47
47
|
- - '='
|
48
48
|
- !ruby/object:Gem::Version
|
49
|
-
version: 0.14.
|
49
|
+
version: 0.14.2
|
50
50
|
type: :development
|
51
51
|
prerelease: false
|
52
52
|
version_requirements: !ruby/object:Gem::Requirement
|
53
53
|
requirements:
|
54
54
|
- - '='
|
55
55
|
- !ruby/object:Gem::Version
|
56
|
-
version: 0.14.
|
56
|
+
version: 0.14.2
|
57
57
|
description: Participatory processes component for decidim.
|
58
58
|
email:
|
59
59
|
- josepjaume@gmail.com
|
@@ -200,6 +200,7 @@ files:
|
|
200
200
|
- app/views/layouts/decidim/admin/participatory_processes.html.erb
|
201
201
|
- app/views/layouts/decidim/participatory_process.html.erb
|
202
202
|
- config/locales/ca.yml
|
203
|
+
- config/locales/de.yml
|
203
204
|
- config/locales/en.yml
|
204
205
|
- config/locales/es-PY.yml
|
205
206
|
- config/locales/es.yml
|