decidim-participatory_processes 0.8.4 → 0.9.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/README.md +1 -1
- data/app/assets/javascripts/decidim/participatory_processes/admin/participatory_processes.js.es6 +11 -9
- data/app/commands/decidim/participatory_processes/admin/activate_participatory_process_step.rb +11 -0
- data/app/commands/decidim/participatory_processes/admin/create_participatory_process_admin.rb +1 -3
- data/app/controllers/decidim/participatory_processes/admin/participatory_processes_controller.rb +3 -5
- data/app/controllers/decidim/participatory_processes/participatory_process_steps_controller.rb +1 -2
- data/app/models/decidim/participatory_process.rb +1 -0
- data/app/views/decidim/participatory_processes/admin/participatory_processes/_form.html.erb +2 -1
- data/app/views/decidim/participatory_processes/participatory_processes/index.js.erb +7 -5
- data/app/views/decidim/participatory_processes/participatory_processes/show.html.erb +5 -0
- data/config/locales/ca.yml +5 -5
- data/config/locales/en.yml +5 -4
- data/config/locales/es.yml +8 -8
- data/config/locales/eu.yml +5 -4
- data/config/locales/fi.yml +8 -7
- data/config/locales/fr.yml +5 -4
- data/config/locales/gl.yml +293 -0
- data/config/locales/it.yml +12 -11
- data/config/locales/nl.yml +5 -4
- data/config/locales/pl.yml +5 -4
- data/config/locales/pt-BR.yml +293 -0
- data/config/locales/pt.yml +18 -17
- data/config/locales/ru.yml +5 -4
- data/config/locales/sv.yml +293 -0
- data/config/locales/uk.yml +3 -4
- data/lib/decidim/participatory_processes/participatory_space.rb +7 -2
- data/lib/decidim/participatory_processes/test/factories.rb +45 -0
- data/lib/decidim/participatory_processes/version.rb +1 -1
- metadata +15 -12
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 1df8a831dee4cc738d27694e65664a53a8b8c04619b6f60e3dba73f1262faf69
|
4
|
+
data.tar.gz: 34743fee16f5a1f78d4d31a7ec0e81001d905ce1a05858c7eb158a7f4f6a6bbb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2bcb9ec0d0ca2141124311aa31ec2bdbcf20982cfa694c4337f1802d52f6a2213d65120c443dee103081367e3559ed14ff9c22bc971e248da8f5a972f1554b24
|
7
|
+
data.tar.gz: 5a343e65a82f8212d5a15d108a38ee0c2c78baef42d4aa3185bf3b9fda8ce91e380cd1d1dcceb76f355a722fe4629b40b0de87864e5928bdb3d64b1ec9e265a9
|
data/README.md
CHANGED
data/app/assets/javascripts/decidim/participatory_processes/admin/participatory_processes.js.es6
CHANGED
@@ -1,12 +1,14 @@
|
|
1
1
|
$(() => {
|
2
|
-
|
3
|
-
|
2
|
+
((exports) => {
|
3
|
+
const $participatoryProcessScopeEnabled = $('#participatory_process_scopes_enabled');
|
4
|
+
const $participatoryProcessScopeId = $("#participatory_process_scope_id");
|
4
5
|
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
6
|
+
if ($('.edit_participatory_process, .new_participatory_process').length > 0) {
|
7
|
+
$participatoryProcessScopeEnabled.on('change', (event) => {
|
8
|
+
const checked = event.target.checked;
|
9
|
+
exports.theDataPicker.enabled($participatoryProcessScopeId, checked);
|
10
|
+
})
|
11
|
+
exports.theDataPicker.enabled($participatoryProcessScopeId, $participatoryProcessScopeEnabled.prop('checked'));
|
12
|
+
}
|
13
|
+
})(window);
|
12
14
|
});
|
data/app/commands/decidim/participatory_processes/admin/activate_participatory_process_step.rb
CHANGED
@@ -25,7 +25,9 @@ module Decidim
|
|
25
25
|
Decidim::ParticipatoryProcessStep.transaction do
|
26
26
|
deactivate_active_steps
|
27
27
|
activate_step
|
28
|
+
notify_followers
|
28
29
|
end
|
30
|
+
|
29
31
|
broadcast(:ok)
|
30
32
|
end
|
31
33
|
|
@@ -42,6 +44,15 @@ module Decidim
|
|
42
44
|
def activate_step
|
43
45
|
step.update_attributes!(active: true)
|
44
46
|
end
|
47
|
+
|
48
|
+
def notify_followers
|
49
|
+
Decidim::EventsManager.publish(
|
50
|
+
event: "decidim.events.participatory_process.step_activated",
|
51
|
+
event_class: Decidim::ParticipatoryProcessStepActivatedEvent,
|
52
|
+
resource: step,
|
53
|
+
recipient_ids: step.participatory_process.followers.pluck(:id)
|
54
|
+
)
|
55
|
+
end
|
45
56
|
end
|
46
57
|
end
|
47
58
|
end
|
data/app/commands/decidim/participatory_processes/admin/create_participatory_process_admin.rb
CHANGED
@@ -61,9 +61,7 @@ module Decidim
|
|
61
61
|
organization: participatory_process.organization
|
62
62
|
).first
|
63
63
|
|
64
|
-
if @existing_user && !@existing_user.invitation_accepted?
|
65
|
-
InviteUserAgain.call(@existing_user, invitation_instructions)
|
66
|
-
end
|
64
|
+
InviteUserAgain.call(@existing_user, invitation_instructions) if @existing_user && !@existing_user.invitation_accepted?
|
67
65
|
|
68
66
|
@existing_user
|
69
67
|
end
|
data/app/controllers/decidim/participatory_processes/admin/participatory_processes_controller.rb
CHANGED
@@ -11,7 +11,7 @@ module Decidim
|
|
11
11
|
|
12
12
|
helper ProcessGroupsForSelectHelper
|
13
13
|
|
14
|
-
helper_method :current_participatory_process
|
14
|
+
helper_method :current_participatory_process, :current_participatory_space
|
15
15
|
|
16
16
|
layout "decidim/admin/participatory_processes"
|
17
17
|
|
@@ -83,16 +83,14 @@ module Decidim
|
|
83
83
|
|
84
84
|
private
|
85
85
|
|
86
|
-
def current_participatory_space
|
87
|
-
current_participatory_process
|
88
|
-
end
|
89
|
-
|
90
86
|
def current_participatory_process
|
91
87
|
@current_participatory_process ||= collection.where(slug: params[:slug]).or(
|
92
88
|
collection.where(id: params[:slug])
|
93
89
|
).first
|
94
90
|
end
|
95
91
|
|
92
|
+
alias current_participatory_space current_participatory_process
|
93
|
+
|
96
94
|
def collection
|
97
95
|
@collection ||= Decidim::ParticipatoryProcessesWithUserRole.for(current_user)
|
98
96
|
end
|
@@ -80,7 +80,7 @@
|
|
80
80
|
</div>
|
81
81
|
|
82
82
|
<div class="row column">
|
83
|
-
<%= form
|
83
|
+
<%= scopes_picker_field form, :scope_id, root: nil %>
|
84
84
|
</div>
|
85
85
|
|
86
86
|
<div class="row column">
|
@@ -103,6 +103,7 @@
|
|
103
103
|
|
104
104
|
<div class="row column">
|
105
105
|
<%= form.translated :editor, :announcement %>
|
106
|
+
<p class="help-text"><%== t(".announcement_help") %></p>
|
106
107
|
</div>
|
107
108
|
</div>
|
108
109
|
</div>
|
@@ -1,6 +1,8 @@
|
|
1
|
-
|
2
|
-
const $
|
1
|
+
$(() => {
|
2
|
+
const $grid = $('#processes-grid');
|
3
|
+
const $loading = $grid.find('.loading');
|
3
4
|
|
4
|
-
$grid.find('.card-grid').html('<%= j(render(collection)).strip.html_safe %>');
|
5
|
-
$grid.find('.processes-grid-order-by').html('<%= j(render(partial: "decidim/participatory_processes/order_by_processes", locals: { include_filter: true })).strip.html_safe %>');
|
6
|
-
$loading.hide();
|
5
|
+
$grid.find('.card-grid').html('<%= j(render(collection)).strip.html_safe %>');
|
6
|
+
$grid.find('.processes-grid-order-by').html('<%= j(render(partial: "decidim/participatory_processes/order_by_processes", locals: { include_filter: true })).strip.html_safe %>');
|
7
|
+
$loading.hide();
|
8
|
+
});
|
@@ -22,6 +22,11 @@
|
|
22
22
|
<%= attachments_for current_participatory_space %>
|
23
23
|
</div>
|
24
24
|
<div class="section columns medium-5 mediumlarge-4 large-3">
|
25
|
+
<div class="card extra">
|
26
|
+
<div class="card__content">
|
27
|
+
<%= render partial: "decidim/shared/follow_button", locals: { followable: current_participatory_space } %>
|
28
|
+
</div>
|
29
|
+
</div>
|
25
30
|
<div class="card extra definition-data">
|
26
31
|
<% if translated_attribute(current_participatory_space.participatory_scope).present? %>
|
27
32
|
<div class="definition-data__item participatory_scope">
|
data/config/locales/ca.yml
CHANGED
@@ -1,8 +1,8 @@
|
|
1
|
-
---
|
2
1
|
ca:
|
3
2
|
activemodel:
|
4
3
|
attributes:
|
5
4
|
participatory_process:
|
5
|
+
announcement: Anunci
|
6
6
|
banner_image: Imatge de bàner
|
7
7
|
copy_categories: Copiar categories
|
8
8
|
copy_features: Copiar funcionalitats
|
@@ -22,6 +22,7 @@ ca:
|
|
22
22
|
scope_id: Àmbit
|
23
23
|
scopes_enabled: Àmbit habilitat
|
24
24
|
short_description: Descripció breu
|
25
|
+
show_statistics: Mostra estadístiques
|
25
26
|
slug: Nom curt d'URL
|
26
27
|
start_date: Data d'inici
|
27
28
|
subtitle: Subtítol
|
@@ -152,7 +153,7 @@ ca:
|
|
152
153
|
success: La fase de procés participatiu s'ha actualitzat correctament.
|
153
154
|
participatory_process_user_roles:
|
154
155
|
create:
|
155
|
-
error:
|
156
|
+
error: S'ha produït un error en afegir un usuari a aquest procés participatiu.
|
156
157
|
success: Usuari creat amb èxit per a aquest procés participatiu.
|
157
158
|
destroy:
|
158
159
|
success: Usuari eliminat amb èxit per a aquest procés participatiu.
|
@@ -165,7 +166,7 @@ ca:
|
|
165
166
|
create: Crear
|
166
167
|
title: Nou usuari de procés participatiu.
|
167
168
|
update:
|
168
|
-
error:
|
169
|
+
error: S'ha produït un error en l'actualització d'un usuari per a aquest procés participatiu.
|
169
170
|
success: Usuari actualitzat satisfactòriament per a aquest procés participatiu.
|
170
171
|
participatory_processes:
|
171
172
|
create:
|
@@ -218,6 +219,7 @@ ca:
|
|
218
219
|
slug_help: 'Els noms curts d''URL s''utilitzen per generar els URL que apunten a aquest procés. Només accepta lletres, números i guions, i ha de començar amb una lletra. Exemple: %{url}'
|
219
220
|
participatory_processes:
|
220
221
|
form:
|
222
|
+
announcement_help: El text que introdueixis aquí es mostrarà a l'usuari just a sota de la informació del procés.
|
221
223
|
slug_help: 'Els noms curts d''URL s''utilitzen per generar els URL que apunten a aquest procés. Només accepta lletres, números i guions, i ha de començar amb una lletra. Exemple: %{url}'
|
222
224
|
index:
|
223
225
|
title: Processos participatius
|
@@ -260,8 +262,6 @@ ca:
|
|
260
262
|
surveys_count: Enquestes
|
261
263
|
users_count: Participants
|
262
264
|
votes_count: Suports
|
263
|
-
scopes:
|
264
|
-
global: Àmbit global
|
265
265
|
layouts:
|
266
266
|
decidim:
|
267
267
|
participatory_process_groups:
|
data/config/locales/en.yml
CHANGED
@@ -3,6 +3,7 @@ en:
|
|
3
3
|
activemodel:
|
4
4
|
attributes:
|
5
5
|
participatory_process:
|
6
|
+
announcement: Announcement
|
6
7
|
banner_image: Banner image
|
7
8
|
copy_categories: Copy categories
|
8
9
|
copy_features: Copy features
|
@@ -22,6 +23,7 @@ en:
|
|
22
23
|
scope_id: Scope
|
23
24
|
scopes_enabled: Scopes enabled
|
24
25
|
short_description: Short description
|
26
|
+
show_statistics: Show statistics
|
25
27
|
slug: URL slug
|
26
28
|
start_date: Start date
|
27
29
|
subtitle: Subtitle
|
@@ -152,7 +154,7 @@ en:
|
|
152
154
|
success: Participatory process step updated successfully.
|
153
155
|
participatory_process_user_roles:
|
154
156
|
create:
|
155
|
-
error: There was an error adding
|
157
|
+
error: There was an error adding a user for this participatory process.
|
156
158
|
success: User created successfully for this participatory process.
|
157
159
|
destroy:
|
158
160
|
success: User destroyed successfully for this participatory process.
|
@@ -165,7 +167,7 @@ en:
|
|
165
167
|
create: Create
|
166
168
|
title: New participatory process user.
|
167
169
|
update:
|
168
|
-
error: There was an error updated
|
170
|
+
error: There was an error updated a user for this participatory process.
|
169
171
|
success: User updated successfully for this participatory process.
|
170
172
|
participatory_processes:
|
171
173
|
create:
|
@@ -218,6 +220,7 @@ en:
|
|
218
220
|
slug_help: 'URL slugs are used to generate the URLs that point to this process. Only accepts letters, numbers and dashes, and must start with a letter. Example: %{url}'
|
219
221
|
participatory_processes:
|
220
222
|
form:
|
223
|
+
announcement_help: The text you enter here will be shown to the user right below the process information.
|
221
224
|
slug_help: 'URL slugs are used to generate the URLs that point to this process. Only accepts letters, numbers and dashes, and must start with a letter. Example: %{url}'
|
222
225
|
index:
|
223
226
|
title: Participatory processes
|
@@ -260,8 +263,6 @@ en:
|
|
260
263
|
surveys_count: Surveys
|
261
264
|
users_count: Participants
|
262
265
|
votes_count: Votes
|
263
|
-
scopes:
|
264
|
-
global: Global scope
|
265
266
|
layouts:
|
266
267
|
decidim:
|
267
268
|
participatory_process_groups:
|
data/config/locales/es.yml
CHANGED
@@ -1,8 +1,8 @@
|
|
1
|
-
---
|
2
1
|
es:
|
3
2
|
activemodel:
|
4
3
|
attributes:
|
5
4
|
participatory_process:
|
5
|
+
announcement: Anuncio
|
6
6
|
banner_image: Imagen de banner
|
7
7
|
copy_categories: Copiar categorías
|
8
8
|
copy_features: Copiar funcionalidades
|
@@ -22,10 +22,11 @@ es:
|
|
22
22
|
scope_id: Ámbito
|
23
23
|
scopes_enabled: Ámbitos habilitados
|
24
24
|
short_description: Descripción breve
|
25
|
+
show_statistics: Mostrar estadísticas
|
25
26
|
slug: Texto corto de URL
|
26
27
|
start_date: Fecha de inicio
|
27
28
|
subtitle: Subtítulo
|
28
|
-
target:
|
29
|
+
target: '¿A quién va dirigida?'
|
29
30
|
title: Título
|
30
31
|
participatory_process_group:
|
31
32
|
description: Descripción
|
@@ -47,7 +48,7 @@ es:
|
|
47
48
|
actions:
|
48
49
|
activate: Activar
|
49
50
|
configure: Configurar
|
50
|
-
confirm_destroy:
|
51
|
+
confirm_destroy: '¿Estás seguro?'
|
51
52
|
destroy: Eliminar
|
52
53
|
duplicate: Duplicar
|
53
54
|
edit: Editar
|
@@ -152,7 +153,7 @@ es:
|
|
152
153
|
success: La fase de proceso participativo se ha actualizado correctamente.
|
153
154
|
participatory_process_user_roles:
|
154
155
|
create:
|
155
|
-
error:
|
156
|
+
error: Ha habido un error al agregar un usuario a este proceso participativo.
|
156
157
|
success: Usuario creado con éxito para este proceso participativo.
|
157
158
|
destroy:
|
158
159
|
success: Usuario eliminado con éxito para este proceso participativo.
|
@@ -165,7 +166,7 @@ es:
|
|
165
166
|
create: Crear
|
166
167
|
title: Nuevo usuario del proceso
|
167
168
|
update:
|
168
|
-
error:
|
169
|
+
error: Ha habido un error al actualizar un usuario para este proceso participativo.
|
169
170
|
success: Usuario actualizado correctamente para este proceso participativo.
|
170
171
|
participatory_processes:
|
171
172
|
create:
|
@@ -218,6 +219,7 @@ es:
|
|
218
219
|
slug_help: 'Los textos cortos de URL se utilizan para generar las URL que apuntan a este proceso. Sólo acepta letras, números y guiones, y debe comenzar con una letra. Ejemplo: %{url}'
|
219
220
|
participatory_processes:
|
220
221
|
form:
|
222
|
+
announcement_help: El texto que ingreses aquí se mostrará al usuario justo debajo de la información del proceso.
|
221
223
|
slug_help: 'Los textos cortos de URL se utilizan para generar las URL que apuntan a este proceso. Sólo acepta letras, números y guiones, y debe comenzar con una letra. Ejemplo: %{url}'
|
222
224
|
index:
|
223
225
|
title: Procesos participativos
|
@@ -247,7 +249,7 @@ es:
|
|
247
249
|
start_date: Fecha de inicio
|
248
250
|
target: Quién participa
|
249
251
|
statistics:
|
250
|
-
answers_count:
|
252
|
+
answers_count: '¿A quién va dirigida?'
|
251
253
|
comments_count: Comentarios
|
252
254
|
headline: Actividad
|
253
255
|
meetings_count: Encuentros
|
@@ -260,8 +262,6 @@ es:
|
|
260
262
|
surveys_count: Encuestas
|
261
263
|
users_count: Participantes
|
262
264
|
votes_count: Apoyos
|
263
|
-
scopes:
|
264
|
-
global: Ámbito global
|
265
265
|
layouts:
|
266
266
|
decidim:
|
267
267
|
participatory_process_groups:
|
data/config/locales/eu.yml
CHANGED
@@ -2,6 +2,7 @@ eu:
|
|
2
2
|
activemodel:
|
3
3
|
attributes:
|
4
4
|
participatory_process:
|
5
|
+
announcement: Anuntzio
|
5
6
|
banner_image: Bannerra
|
6
7
|
copy_categories: Kopiatu kategoriak
|
7
8
|
copy_features: Kopiatu funtzionalitateak
|
@@ -21,6 +22,7 @@ eu:
|
|
21
22
|
scope_id: Esparrua
|
22
23
|
scopes_enabled: Esparru gaituak
|
23
24
|
short_description: Deskribapen laburra
|
25
|
+
show_statistics: Erakutsi estatistikak
|
24
26
|
slug: URL laburra
|
25
27
|
start_date: Hasiera-data
|
26
28
|
subtitle: Azpititulua
|
@@ -151,7 +153,7 @@ eu:
|
|
151
153
|
success: Prozesu partizipatiboaren fasea zuzen eguneratu da.
|
152
154
|
participatory_process_user_roles:
|
153
155
|
create:
|
154
|
-
error:
|
156
|
+
error: Errore bat gertatu da partaidetza prozesu honetan erabiltzailea gehitzea.
|
155
157
|
success: Ongi sortu da erabiltzailea prozesu partizipatibo honetarako.
|
156
158
|
destroy:
|
157
159
|
success: Ongi deuseztatu da erabiltzailea prozesu partizipatibo honetarako.
|
@@ -164,7 +166,7 @@ eu:
|
|
164
166
|
create: Sortu
|
165
167
|
title: Prozesuaren erabiltzaile berria.
|
166
168
|
update:
|
167
|
-
error:
|
169
|
+
error: Errore bat gertatu da parte hartzaile prozesu honetarako erabiltzaile bat.
|
168
170
|
success: Ongi eguneratu da erabiltzailea prozesu partizipatibo honetarako.
|
169
171
|
participatory_processes:
|
170
172
|
create:
|
@@ -217,6 +219,7 @@ eu:
|
|
217
219
|
slug_help: 'URL slugs erabiltzen dira prozesu hau adierazten duten URLak sortzeko. Letrak, zenbakiak eta marratxoak soilik onartzen ditu eta letra batekin hasi behar duzu. Adibidea: %{url}'
|
218
220
|
participatory_processes:
|
219
221
|
form:
|
222
|
+
announcement_help: Hemen sartzen duzun testua erabiltzaileari erakutsiko zaio prozesuaren informazioaren azpitik.
|
220
223
|
slug_help: 'URL slugs erabiltzen dira prozesu hau adierazten duten URLak sortzeko. Letrak, zenbakiak eta marratxoak soilik onartzen ditu eta letra batekin hasi behar duzu. Adibidea: %{url}'
|
221
224
|
index:
|
222
225
|
title: Prozesu partizipatiboak
|
@@ -259,8 +262,6 @@ eu:
|
|
259
262
|
surveys_count: Inkestak
|
260
263
|
users_count: Parte-hartzaileak
|
261
264
|
votes_count: Euskarriak
|
262
|
-
scopes:
|
263
|
-
global: Esparrua orokorra
|
264
265
|
layouts:
|
265
266
|
decidim:
|
266
267
|
participatory_process_groups:
|
data/config/locales/fi.yml
CHANGED
@@ -2,9 +2,10 @@ fi:
|
|
2
2
|
activemodel:
|
3
3
|
attributes:
|
4
4
|
participatory_process:
|
5
|
+
announcement: Ilmoitus
|
5
6
|
banner_image: Bannerikuva
|
6
7
|
copy_categories: Kopioi aihepiirit
|
7
|
-
copy_features: Kopioi
|
8
|
+
copy_features: Kopioi ominaisuudet
|
8
9
|
copy_steps: Kopioi vaiheet
|
9
10
|
description: Kuvaus
|
10
11
|
developer_group: Kehitysryhmä
|
@@ -21,6 +22,7 @@ fi:
|
|
21
22
|
scope_id: Konteksti
|
22
23
|
scopes_enabled: Kontekstit käytössä
|
23
24
|
short_description: Lyhyt kuvaus
|
25
|
+
show_statistics: Näytä tilastot
|
24
26
|
slug: URL-tunniste
|
25
27
|
start_date: Aloitusaika
|
26
28
|
subtitle: Alaotsikko
|
@@ -151,7 +153,7 @@ fi:
|
|
151
153
|
success: Osallistumisprosessin vaihe päivitetty onnistuneesti.
|
152
154
|
participatory_process_user_roles:
|
153
155
|
create:
|
154
|
-
error:
|
156
|
+
error: Tapahtui virhe lisätessä käyttäjää osallistumisprosessiin.
|
155
157
|
success: Käyttäjä luotu onnistuneesti tähän osallistumisprosessiin.
|
156
158
|
destroy:
|
157
159
|
success: Käyttäjä poistettu onnistuneesti tästä osallistumisprosessista.
|
@@ -164,7 +166,7 @@ fi:
|
|
164
166
|
create: Luo
|
165
167
|
title: Uusi osallistumisprosessin käyttäjä.
|
166
168
|
update:
|
167
|
-
error:
|
169
|
+
error: Tapahtui virhe päivitettäessä käyttäjää tälle osallistumisprosessille.
|
168
170
|
success: Tämän osallistumisprosessin käyttäjä päivitetty onnistuneesti.
|
169
171
|
participatory_processes:
|
170
172
|
create:
|
@@ -205,7 +207,7 @@ fi:
|
|
205
207
|
participatory_process_groups:
|
206
208
|
show:
|
207
209
|
group_participatory_processes: Prosessit ryhmälle %{group}
|
208
|
-
title:
|
210
|
+
title: Osallistumisprosessiryhmät
|
209
211
|
participatory_process_steps:
|
210
212
|
index:
|
211
213
|
process_steps: Prosessin vaiheet
|
@@ -217,6 +219,7 @@ fi:
|
|
217
219
|
slug_help: 'URL-tunnisteita käytetään tuottamaan URL-tunnisteet, jotka viittaavat tähän prosessiin. Hyväksyy vain kirjaimia, numeroita ja viivoja. Arvon on alettava kirjaimella. Esimerkki: %{url}'
|
218
220
|
participatory_processes:
|
219
221
|
form:
|
222
|
+
announcement_help: Tähän kirjoitettu teksti näkyy käyttäjälle heti prosessitietojen alapuolella.
|
220
223
|
slug_help: 'URL-tunnisteita käytetään tuottamaan URL-tunnisteet, jotka viittaavat tähän prosessiin. Hyväksyy vain kirjaimia, numeroita ja viivoja. Arvon on alettava kirjaimella. Esimerkki: %{url}'
|
221
224
|
index:
|
222
225
|
title: Osallistumisprosessit
|
@@ -230,7 +233,7 @@ fi:
|
|
230
233
|
highlighted_processes:
|
231
234
|
active_processes: Aktiiviset prosessit
|
232
235
|
active_step: Aktiivinen vaihe
|
233
|
-
see_all_processes:
|
236
|
+
see_all_processes: Näytä kaikki prosessit
|
234
237
|
participatory_process_groups:
|
235
238
|
none: Ei ryhmää
|
236
239
|
participatory_processes:
|
@@ -259,8 +262,6 @@ fi:
|
|
259
262
|
surveys_count: Kyselyt
|
260
263
|
users_count: Osallistujat
|
261
264
|
votes_count: Äänet
|
262
|
-
scopes:
|
263
|
-
global: Yleinen konteksti
|
264
265
|
layouts:
|
265
266
|
decidim:
|
266
267
|
participatory_process_groups:
|