decidim-accountability 0.9.3 → 0.10.0
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/assets/javascripts/decidim/accountability/admin/accountability_admin.js.es6 +46 -0
- data/app/assets/javascripts/decidim/accountability/version_diff.js.es6 +2 -6
- data/app/commands/decidim/accountability/admin/create_result.rb +15 -0
- data/app/commands/decidim/accountability/admin/update_status.rb +1 -1
- data/app/commands/decidim/accountability/admin/update_timeline_entry.rb +1 -1
- data/app/controllers/decidim/accountability/admin/results_controller.rb +20 -0
- data/app/events/decidim/accountability/proposal_linked_event.rb +21 -0
- data/app/forms/decidim/accountability/admin/result_form.rb +13 -3
- data/app/models/decidim/accountability/result.rb +8 -1
- data/app/presenters/decidim/accountability/admin_log/result_presenter.rb +44 -0
- data/app/views/decidim/accountability/admin/results/_form.html.erb +3 -5
- data/app/views/decidim/accountability/admin/results/_proposals.html.erb +12 -0
- data/app/views/decidim/accountability/results/_home_categories.html.erb +3 -3
- data/app/views/decidim/accountability/results/_home_header.html.erb +1 -1
- data/app/views/decidim/accountability/results/_nav_breadcrumb.html.erb +12 -4
- data/app/views/decidim/accountability/results/_results_leaf.html.erb +1 -1
- data/app/views/decidim/accountability/results/_results_parent.html.erb +1 -1
- data/app/views/decidim/accountability/results/_show_leaf.html.erb +1 -1
- data/app/views/decidim/accountability/results/_show_parent.html.erb +1 -1
- data/app/views/decidim/accountability/results/_stats_box.html.erb +20 -2
- data/app/views/decidim/participatory_processes/participatory_process_groups/_highlighted_results.html.erb +12 -0
- data/app/views/decidim/participatory_processes/participatory_process_groups/_result.html.erb +32 -0
- data/app/views/decidim/participatory_spaces/_highlighted_results.html.erb +14 -0
- data/app/views/decidim/participatory_spaces/_result.html.erb +32 -0
- data/config/locales/ca.yml +28 -1
- data/config/locales/en.yml +28 -1
- data/config/locales/es.yml +28 -1
- data/config/locales/eu.yml +28 -1
- data/config/locales/fi.yml +28 -1
- data/config/locales/fr.yml +28 -1
- data/config/locales/gl.yml +28 -1
- data/config/locales/it.yml +28 -1
- data/config/locales/nl.yml +28 -1
- data/config/locales/pl.yml +28 -6
- data/config/locales/pt-BR.yml +28 -1
- data/config/locales/pt.yml +28 -1
- data/config/locales/ru.yml +0 -1
- data/config/locales/sv.yml +28 -1
- data/config/locales/uk.yml +3 -3
- data/lib/decidim/accountability/admin_engine.rb +3 -0
- data/lib/decidim/accountability/engine.rb +34 -0
- data/lib/decidim/accountability/feature.rb +1 -0
- data/lib/decidim/accountability/version.rb +1 -1
- metadata +29 -22
- data/app/assets/javascripts/decidim/accountability/admin/accountability_admin.js +0 -9
@@ -0,0 +1,12 @@
|
|
1
|
+
<% if results.any? %>
|
2
|
+
<section class="section row collapse highlighted_results">
|
3
|
+
<h2 class="section-heading"><%= t(".results") %></h2>
|
4
|
+
<div class="row">
|
5
|
+
<div class="columns accountability">
|
6
|
+
<div class="card card--action card--list">
|
7
|
+
<%= render partial: 'decidim/participatory_processes/participatory_process_groups/result', collection: results %>
|
8
|
+
</div>
|
9
|
+
</div>
|
10
|
+
</div>
|
11
|
+
</section>
|
12
|
+
<% end %>
|
@@ -0,0 +1,32 @@
|
|
1
|
+
<div class="card--list__item">
|
2
|
+
<%= icon "actions", class: "card--list__icon", remove_icon_class: true %>
|
3
|
+
|
4
|
+
<%= link_to resource_locator(result).path, class: "card--list__text card__link card__link--block" do %>
|
5
|
+
<h5 class="card--list__heading">
|
6
|
+
<%= translated_attribute(result.title) %>
|
7
|
+
</h5>
|
8
|
+
|
9
|
+
<div class="text-small card--meta">
|
10
|
+
<% if result.start_date %>
|
11
|
+
<strong><%= t("models.result.fields.start_date", scope: "decidim.accountability") %></strong>
|
12
|
+
<span><%= result.start_date %></span>
|
13
|
+
<% end %>
|
14
|
+
|
15
|
+
<% if result.end_date %>
|
16
|
+
<strong><%= t("models.result.fields.end_date", scope: "decidim.accountability") %></strong>
|
17
|
+
<span><%= result.end_date %></span>
|
18
|
+
<% end %>
|
19
|
+
|
20
|
+
<% if result.status %>
|
21
|
+
<strong><%= t("models.result.fields.status", scope: "decidim.accountability") %></strong>
|
22
|
+
<span><%= translated_attribute(result.status.name) %></span>
|
23
|
+
<% end %>
|
24
|
+
</div>
|
25
|
+
<% end %>
|
26
|
+
|
27
|
+
<% if result.progress.present? %>
|
28
|
+
<div class="card--list__data">
|
29
|
+
<span class="card--list__data__number"><%= display_percentage result.progress %></span>
|
30
|
+
</div>
|
31
|
+
<% end%>
|
32
|
+
</div>
|
@@ -0,0 +1,14 @@
|
|
1
|
+
<% if results.any? %>
|
2
|
+
<section class="section row collapse highlighted_results">
|
3
|
+
<h4 class="section-heading">
|
4
|
+
<%= t(".results") %> <a href="<%= main_feature_path(results.first.feature) %>" class="text-small"><%= t(".see_all_results") %></a>
|
5
|
+
</h4>
|
6
|
+
<div class="row">
|
7
|
+
<div class="columns accountability">
|
8
|
+
<div class="card card--action card--list">
|
9
|
+
<%= render partial: 'decidim/participatory_spaces/result', collection: results %>
|
10
|
+
</div>
|
11
|
+
</div>
|
12
|
+
</div>
|
13
|
+
</section>
|
14
|
+
<% end %>
|
@@ -0,0 +1,32 @@
|
|
1
|
+
<div class="card--list__item">
|
2
|
+
<%= icon "actions", class: "card--list__icon", remove_icon_class: true %>
|
3
|
+
|
4
|
+
<%= link_to resource_locator(result).path, class: "card--list__text card__link card__link--block" do %>
|
5
|
+
<h5 class="card--list__heading">
|
6
|
+
<%= translated_attribute(result.title) %>
|
7
|
+
</h5>
|
8
|
+
|
9
|
+
<div class="text-small card--meta">
|
10
|
+
<% if result.start_date %>
|
11
|
+
<strong><%= t("models.result.fields.start_date", scope: "decidim.accountability") %></strong>
|
12
|
+
<span><%= result.start_date %></span>
|
13
|
+
<% end %>
|
14
|
+
|
15
|
+
<% if result.end_date %>
|
16
|
+
<strong><%= t("models.result.fields.end_date", scope: "decidim.accountability") %></strong>
|
17
|
+
<span><%= result.end_date %></span>
|
18
|
+
<% end %>
|
19
|
+
|
20
|
+
<% if result.status %>
|
21
|
+
<strong><%= t("models.result.fields.status", scope: "decidim.accountability") %></strong>
|
22
|
+
<span><%= translated_attribute(result.status.name) %></span>
|
23
|
+
<% end %>
|
24
|
+
</div>
|
25
|
+
<% end %>
|
26
|
+
|
27
|
+
<% if result.progress.present? %>
|
28
|
+
<div class="card--list__data">
|
29
|
+
<span class="card--list__data__number"><%= display_percentage result.progress %></span>
|
30
|
+
</div>
|
31
|
+
<% end%>
|
32
|
+
</div>
|
data/config/locales/ca.yml
CHANGED
@@ -9,9 +9,10 @@ ca:
|
|
9
9
|
end_date: Fi
|
10
10
|
progress: Progrés
|
11
11
|
project_ids: Projectes inclosos
|
12
|
-
|
12
|
+
proposals: Propostes incloses
|
13
13
|
start_date: Inici
|
14
14
|
title: Títol
|
15
|
+
updated_at: Actualitzat el
|
15
16
|
status:
|
16
17
|
description: Descripció
|
17
18
|
key: Clau
|
@@ -49,11 +50,17 @@ ca:
|
|
49
50
|
edit:
|
50
51
|
title: Edita resultat
|
51
52
|
update: Actualitza resultat
|
53
|
+
form:
|
54
|
+
add_proposal: Afegir proposta
|
52
55
|
index:
|
53
56
|
title: Resultats
|
54
57
|
new:
|
55
58
|
create: Crea resultat
|
56
59
|
title: Nou resultat
|
60
|
+
proposals:
|
61
|
+
close: Tanca
|
62
|
+
current_selection: Selecció actual
|
63
|
+
select: Selecciona
|
57
64
|
update:
|
58
65
|
invalid: Hi ha hagut un problema en actualitzar aquest resultat
|
59
66
|
success: El resultat ha estat actualitzat correctament
|
@@ -94,6 +101,10 @@ ca:
|
|
94
101
|
update:
|
95
102
|
invalid: Hi ha hagut un problema en actualitzar aquest element
|
96
103
|
success: El element ha estat actualitzat correctament
|
104
|
+
admin_log:
|
105
|
+
result:
|
106
|
+
create: "%{user_name} ha creat el resultat %{resource_name} en %{space_name}"
|
107
|
+
update: "%{user_name} ha actualitzat el resultat %{resource_name} en %{space_name}"
|
97
108
|
models:
|
98
109
|
result:
|
99
110
|
fields:
|
@@ -156,6 +167,13 @@ ca:
|
|
156
167
|
changes_at_title: Canvis a "%{title}"
|
157
168
|
version:
|
158
169
|
version_index: Versió %{index}
|
170
|
+
events:
|
171
|
+
accountability:
|
172
|
+
proposal_linked:
|
173
|
+
email_intro: 'La proposta "%{proposal_title}" s''ha inclòs en un resultat. Pots veure-ho des d''aquesta pàgina:'
|
174
|
+
email_outro: Has rebut aquesta notificació perquè estàs seguint "%{proposal_title}". Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
175
|
+
email_subject: Una actualització a %{proposal_title}
|
176
|
+
notification_title: La proposta <a href="%{proposal_path}">%{proposal_title}</a> s'ha inclòs al resultat <a href="%{resource_path}">%{resource_title}</a>.
|
159
177
|
features:
|
160
178
|
accountability:
|
161
179
|
name: Seguiment
|
@@ -163,12 +181,21 @@ ca:
|
|
163
181
|
global:
|
164
182
|
categories_label: Nom per a "Categories"
|
165
183
|
comments_enabled: Comentaris habilitats
|
184
|
+
display_progress_enabled: Mostra el progrés
|
166
185
|
heading_leaf_level_results: Nom per a "Projectes"
|
167
186
|
heading_parent_level_results: Nom per a "Resultats"
|
168
187
|
intro: Introducció
|
169
188
|
subcategories_label: Nom per a "Subcategories"
|
170
189
|
step:
|
171
190
|
comments_blocked: Comentaris bloquejats
|
191
|
+
participatory_processes:
|
192
|
+
participatory_process_groups:
|
193
|
+
highlighted_results:
|
194
|
+
results: Resultats
|
195
|
+
participatory_spaces:
|
196
|
+
highlighted_results:
|
197
|
+
results: Resultats
|
198
|
+
see_all_results: Veure tots els resultats
|
172
199
|
resource_links:
|
173
200
|
included_projects:
|
174
201
|
result_projects: Projectes inclosos en aquest resultat
|
data/config/locales/en.yml
CHANGED
@@ -10,9 +10,10 @@ en:
|
|
10
10
|
end_date: End date
|
11
11
|
progress: Progress
|
12
12
|
project_ids: Included projects
|
13
|
-
|
13
|
+
proposals: Included proposals
|
14
14
|
start_date: Start date
|
15
15
|
title: Title
|
16
|
+
updated_at: Updated at
|
16
17
|
status:
|
17
18
|
description: Description
|
18
19
|
key: Key
|
@@ -50,11 +51,17 @@ en:
|
|
50
51
|
edit:
|
51
52
|
title: Edit result
|
52
53
|
update: Update result
|
54
|
+
form:
|
55
|
+
add_proposal: Add proposal
|
53
56
|
index:
|
54
57
|
title: Results
|
55
58
|
new:
|
56
59
|
create: Create result
|
57
60
|
title: New result
|
61
|
+
proposals:
|
62
|
+
close: Close
|
63
|
+
current_selection: Current selection
|
64
|
+
select: Select
|
58
65
|
update:
|
59
66
|
invalid: There's been a problem updating this result
|
60
67
|
success: Result successfully updated
|
@@ -95,6 +102,10 @@ en:
|
|
95
102
|
update:
|
96
103
|
invalid: There's been a problem updating this entry
|
97
104
|
success: Entry successfully updated
|
105
|
+
admin_log:
|
106
|
+
result:
|
107
|
+
create: "%{user_name} created result %{resource_name} in %{space_name}"
|
108
|
+
update: "%{user_name} updated result %{resource_name} in %{space_name}"
|
98
109
|
models:
|
99
110
|
result:
|
100
111
|
fields:
|
@@ -157,6 +168,13 @@ en:
|
|
157
168
|
changes_at_title: Changes at "%{title}"
|
158
169
|
version:
|
159
170
|
version_index: Version %{index}
|
171
|
+
events:
|
172
|
+
accountability:
|
173
|
+
proposal_linked:
|
174
|
+
email_intro: 'The proposal "%{proposal_title}" has been included in a result. You can see it from this page:'
|
175
|
+
email_outro: You have received this notification because you are following "%{proposal_title}". You can stop receiving notifications following the previous link.
|
176
|
+
email_subject: An update to %{proposal_title}
|
177
|
+
notification_title: The proposal <a href="%{proposal_path}">%{proposal_title}</a> has been included in the <a href="%{resource_path}">%{resource_title}</a> result.
|
160
178
|
features:
|
161
179
|
accountability:
|
162
180
|
name: Accountability
|
@@ -164,12 +182,21 @@ en:
|
|
164
182
|
global:
|
165
183
|
categories_label: Name for "Categories"
|
166
184
|
comments_enabled: Comments enabled
|
185
|
+
display_progress_enabled: Display progress
|
167
186
|
heading_leaf_level_results: Name for "Projects"
|
168
187
|
heading_parent_level_results: Name for "Results"
|
169
188
|
intro: Intro
|
170
189
|
subcategories_label: Name for "Subcategories"
|
171
190
|
step:
|
172
191
|
comments_blocked: Comments blocked
|
192
|
+
participatory_processes:
|
193
|
+
participatory_process_groups:
|
194
|
+
highlighted_results:
|
195
|
+
results: Results
|
196
|
+
participatory_spaces:
|
197
|
+
highlighted_results:
|
198
|
+
results: Results
|
199
|
+
see_all_results: See all results
|
173
200
|
resource_links:
|
174
201
|
included_projects:
|
175
202
|
result_projects: Projects included in this result
|
data/config/locales/es.yml
CHANGED
@@ -9,9 +9,10 @@ es:
|
|
9
9
|
end_date: Fin
|
10
10
|
progress: Progreso
|
11
11
|
project_ids: Proyectos incluidos
|
12
|
-
|
12
|
+
proposals: Propuestas incluidas
|
13
13
|
start_date: Inicio
|
14
14
|
title: Título
|
15
|
+
updated_at: Actualizado en
|
15
16
|
status:
|
16
17
|
description: Descripción
|
17
18
|
key: Clave
|
@@ -49,11 +50,17 @@ es:
|
|
49
50
|
edit:
|
50
51
|
title: Editar resultado
|
51
52
|
update: Actualizar resultado
|
53
|
+
form:
|
54
|
+
add_proposal: Agregar propuesta
|
52
55
|
index:
|
53
56
|
title: Resultados
|
54
57
|
new:
|
55
58
|
create: Crear resultado
|
56
59
|
title: Nuevo resultado
|
60
|
+
proposals:
|
61
|
+
close: Cerrar
|
62
|
+
current_selection: Selección actual
|
63
|
+
select: Seleccionar
|
57
64
|
update:
|
58
65
|
invalid: Ha habido un problema al actualizar este resultado
|
59
66
|
success: El resultado ha actualizado correctamente
|
@@ -94,6 +101,10 @@ es:
|
|
94
101
|
update:
|
95
102
|
invalid: Ha habido un problema al actualizar este elemento
|
96
103
|
success: El elemento ha actualizado correctamente
|
104
|
+
admin_log:
|
105
|
+
result:
|
106
|
+
create: "%{user_name} creó el resultado %{resource_name} en %{space_name}"
|
107
|
+
update: "%{user_name} actualizó el resultado %{resource_name} en %{space_name}"
|
97
108
|
models:
|
98
109
|
result:
|
99
110
|
fields:
|
@@ -156,6 +167,13 @@ es:
|
|
156
167
|
changes_at_title: Cambios en "%{title}"
|
157
168
|
version:
|
158
169
|
version_index: Versión %{index}
|
170
|
+
events:
|
171
|
+
accountability:
|
172
|
+
proposal_linked:
|
173
|
+
email_intro: 'La propuesta "%{proposal_title}" se ha incluido en un resultado. Puedes verlo desde esta página:'
|
174
|
+
email_outro: Has recibido esta notificación porque estás siguiendo "%{proposal_title}". Puedes dejar de recibir notificaciones siguiendo el enlace anterior.
|
175
|
+
email_subject: Una actualización en %{proposal_title}
|
176
|
+
notification_title: Se ha incluido la propuesta <a href="%{proposal_path}">%{proposal_title}</a> en el resultado <a href="%{resource_path}">%{resource_title}</a>.
|
159
177
|
features:
|
160
178
|
accountability:
|
161
179
|
name: Seguimiento
|
@@ -163,12 +181,21 @@ es:
|
|
163
181
|
global:
|
164
182
|
categories_label: Nombre para "Categorías"
|
165
183
|
comments_enabled: Comentarios habilitados
|
184
|
+
display_progress_enabled: Mostrar progreso
|
166
185
|
heading_leaf_level_results: Nombre para "Proyectos"
|
167
186
|
heading_parent_level_results: Nombre para "Resultados"
|
168
187
|
intro: Introducción
|
169
188
|
subcategories_label: Nombre para "Subcategorías"
|
170
189
|
step:
|
171
190
|
comments_blocked: Comentarios bloqueados
|
191
|
+
participatory_processes:
|
192
|
+
participatory_process_groups:
|
193
|
+
highlighted_results:
|
194
|
+
results: Resultados
|
195
|
+
participatory_spaces:
|
196
|
+
highlighted_results:
|
197
|
+
results: Resultados
|
198
|
+
see_all_results: Ver todos los resultados
|
172
199
|
resource_links:
|
173
200
|
included_projects:
|
174
201
|
result_projects: Proyectos incluidos en este resultado
|
data/config/locales/eu.yml
CHANGED
@@ -9,9 +9,10 @@ eu:
|
|
9
9
|
end_date: Bukaera-data
|
10
10
|
progress: ' Aurrerapena '
|
11
11
|
project_ids: Proiektu barne
|
12
|
-
|
12
|
+
proposals: Proposamen sortak
|
13
13
|
start_date: Hasiera-data
|
14
14
|
title: Izenburua
|
15
|
+
updated_at: Eguneratuta
|
15
16
|
status:
|
16
17
|
description: Descripción
|
17
18
|
key: Gakoa
|
@@ -49,11 +50,17 @@ eu:
|
|
49
50
|
edit:
|
50
51
|
title: Editatu emaitza
|
51
52
|
update: Eguneratu emaitza
|
53
|
+
form:
|
54
|
+
add_proposal: Gehitu proposamena
|
52
55
|
index:
|
53
56
|
title: Emaitzak
|
54
57
|
new:
|
55
58
|
create: Sortu emaitza
|
56
59
|
title: Emaitza berria
|
60
|
+
proposals:
|
61
|
+
close: Itxi
|
62
|
+
current_selection: Oraingo hautapena
|
63
|
+
select: Aukeratu
|
57
64
|
update:
|
58
65
|
invalid: Arazo bat izan da emaitza hau eguneratzean.
|
59
66
|
success: Emaitza zuzen eguneratu da.
|
@@ -94,6 +101,10 @@ eu:
|
|
94
101
|
update:
|
95
102
|
invalid: Arazo bat izan da sarrera hau eguneratzean
|
96
103
|
success: Sarrera ondo eguneratu da
|
104
|
+
admin_log:
|
105
|
+
result:
|
106
|
+
create: "%{user_name} emaitza sortu da %{resource_name} en %{space_name}"
|
107
|
+
update: "%{user_name} emaitza eguneratu %{resource_name} en %{space_name}"
|
97
108
|
models:
|
98
109
|
result:
|
99
110
|
fields:
|
@@ -156,6 +167,13 @@ eu:
|
|
156
167
|
changes_at_title: Aldaketak "%{title}" atalean
|
157
168
|
version:
|
158
169
|
version_index: '%{index} bertsioa'
|
170
|
+
events:
|
171
|
+
accountability:
|
172
|
+
proposal_linked:
|
173
|
+
email_intro: '"%{proposal_title}" proposamena emaitza batean sartu da. Orrialde hau ikusi dezakezu:'
|
174
|
+
email_outro: Jakinarazpena jaso duzu "%{proposal_title}" jarraitzen ari zarenagatik. Aurreko esteka jarraituz jakinarazpenak jasotzeari uztea erabaki dezakezu.
|
175
|
+
email_subject: '%{proposal_title} eguneratzea'
|
176
|
+
notification_title: <a href="%{proposal_path}">%{proposal_title}</a> <a href="%{resource_path}">%{resource_title}</a> emaitza izan da.
|
159
177
|
features:
|
160
178
|
accountability:
|
161
179
|
name: Emaitzak
|
@@ -163,12 +181,21 @@ eu:
|
|
163
181
|
global:
|
164
182
|
categories_label: '"Kategoriak" izena'
|
165
183
|
comments_enabled: Iruzkinak gaituta
|
184
|
+
display_progress_enabled: Bistaratze aurrerapena
|
166
185
|
heading_leaf_level_results: '"Proiektuak" izena'
|
167
186
|
heading_parent_level_results: '"Emaitzak" izena'
|
168
187
|
intro: Intro
|
169
188
|
subcategories_label: Izena "Azpikategoriak" izenarekin
|
170
189
|
step:
|
171
190
|
comments_blocked: Iruzkinak blokeatuta
|
191
|
+
participatory_processes:
|
192
|
+
participatory_process_groups:
|
193
|
+
highlighted_results:
|
194
|
+
results: Emaitzak
|
195
|
+
participatory_spaces:
|
196
|
+
highlighted_results:
|
197
|
+
results: Emaitzak
|
198
|
+
see_all_results: Ikusi emaitza guztiak
|
172
199
|
resource_links:
|
173
200
|
included_projects:
|
174
201
|
result_projects: Emaitza honetan sartutako proiektuak
|
data/config/locales/fi.yml
CHANGED
@@ -9,9 +9,10 @@ fi:
|
|
9
9
|
end_date: Päättymisaika
|
10
10
|
progress: Edistyminen
|
11
11
|
project_ids: Liitetyt projektit
|
12
|
-
|
12
|
+
proposals: Mukana olevat ehdotukset
|
13
13
|
start_date: Aloitusaika
|
14
14
|
title: Otsikko
|
15
|
+
updated_at: Päivitetty klo
|
15
16
|
status:
|
16
17
|
description: Kuvaus
|
17
18
|
key: Tunniste
|
@@ -49,11 +50,17 @@ fi:
|
|
49
50
|
edit:
|
50
51
|
title: Muokkaa tulosta
|
51
52
|
update: Päivitä tulos
|
53
|
+
form:
|
54
|
+
add_proposal: Lisää ehdotus
|
52
55
|
index:
|
53
56
|
title: Tulokset
|
54
57
|
new:
|
55
58
|
create: Luo tulos
|
56
59
|
title: Uusi tulos
|
60
|
+
proposals:
|
61
|
+
close: kiinni
|
62
|
+
current_selection: Nykyinen valinta
|
63
|
+
select: valita
|
57
64
|
update:
|
58
65
|
invalid: Tuloksen päivityksessä tapahtui virhe
|
59
66
|
success: Tulos päivitetty onnistuneesti
|
@@ -94,6 +101,10 @@ fi:
|
|
94
101
|
update:
|
95
102
|
invalid: Merkinnän päivityksessä tapahtui virhe
|
96
103
|
success: Merkinnän päivitys onnistui
|
104
|
+
admin_log:
|
105
|
+
result:
|
106
|
+
create: "%{user_name} luotu tulos %{resource_name} vuonna %{space_name}"
|
107
|
+
update: "%{user_name} päivitetty tulos %{resource_name} vuonna %{space_name}"
|
97
108
|
models:
|
98
109
|
result:
|
99
110
|
fields:
|
@@ -156,6 +167,13 @@ fi:
|
|
156
167
|
changes_at_title: Muutokset kohteessa "%{title}"
|
157
168
|
version:
|
158
169
|
version_index: Versio %{index}
|
170
|
+
events:
|
171
|
+
accountability:
|
172
|
+
proposal_linked:
|
173
|
+
email_intro: 'Tulos on sisällytetty ehdotukseen "%{proposal_title}". Voit nähdä sen tällä sivulla:'
|
174
|
+
email_outro: Olet saanut tämän ilmoituksen, koska seuraat "%{proposal_title}". Voit lopettaa ilmoitusten vastaanottamisen edellisen linkin jälkeen.
|
175
|
+
email_subject: Päivitys %{proposal_title}
|
176
|
+
notification_title: Ehdotus <a href="%{proposal_path}">%{proposal_title}</a> on sisällytetty <a href="%{resource_path}">%{resource_title}</a> tulokseen.
|
159
177
|
features:
|
160
178
|
accountability:
|
161
179
|
name: Tulokset
|
@@ -163,12 +181,21 @@ fi:
|
|
163
181
|
global:
|
164
182
|
categories_label: Nimi kohteelle "Luokat"
|
165
183
|
comments_enabled: Kommentointi sallittu
|
184
|
+
display_progress_enabled: Näytä edistyminen
|
166
185
|
heading_leaf_level_results: Nimi kohteelle "Projektit"
|
167
186
|
heading_parent_level_results: Nimi kohteelle "Tulokset"
|
168
187
|
intro: Esittelyteksti
|
169
188
|
subcategories_label: Nimi kohteelle "Ala-aihepiirit"
|
170
189
|
step:
|
171
190
|
comments_blocked: Kommentointi estetty
|
191
|
+
participatory_processes:
|
192
|
+
participatory_process_groups:
|
193
|
+
highlighted_results:
|
194
|
+
results: tulokset
|
195
|
+
participatory_spaces:
|
196
|
+
highlighted_results:
|
197
|
+
results: tulokset
|
198
|
+
see_all_results: Katso kaikki tulokset
|
172
199
|
resource_links:
|
173
200
|
included_projects:
|
174
201
|
result_projects: Tähän tulokseen liittyvät hankkeet
|