decidim-accountability 0.28.1 → 0.28.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/cells/decidim/accountability/project/timeline.erb +2 -2
- data/app/cells/decidim/accountability/project_cell.rb +15 -3
- data/app/cells/decidim/accountability/status/status.erb +1 -1
- data/app/cells/decidim/accountability/status_cell.rb +1 -0
- data/app/controllers/decidim/accountability/results_controller.rb +22 -0
- data/app/events/decidim/accountability/base_result_event.rb +4 -0
- data/app/views/decidim/accountability/admin/results/index.html.erb +14 -6
- data/app/views/decidim/accountability/results/_scope_filters.html.erb +2 -2
- data/app/views/decidim/accountability/results/_search.html.erb +4 -4
- data/config/locales/bg.yml +6 -0
- data/config/locales/ca.yml +1 -0
- data/config/locales/cs.yml +1 -0
- data/config/locales/de.yml +1 -0
- data/config/locales/en.yml +1 -0
- data/config/locales/es-MX.yml +5 -4
- data/config/locales/es-PY.yml +5 -4
- data/config/locales/es.yml +7 -6
- data/config/locales/eu.yml +4 -3
- data/config/locales/fi-plain.yml +1 -0
- data/config/locales/fi.yml +3 -2
- data/config/locales/ja.yml +1 -0
- data/config/locales/pl.yml +6 -0
- data/config/locales/ro-RO.yml +9 -7
- data/config/locales/sv.yml +70 -31
- data/config/locales/th-TH.yml +214 -0
- data/lib/decidim/accountability/version.rb +1 -1
- metadata +24 -24
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3e32021f073e29d5623c1eb099b05634e7dd7c0ea6e89b30f145ceb4e5011a00
|
4
|
+
data.tar.gz: fceae726abb7ddf4cd46760cad2550cdc1a96457a032037e7a493aee38199297
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 23ece08d9215aec5e29e2b7c6f369e58a58c4661d70479262e533297b5e2fb7b7003e8944cb2711c620ddfaefac6a7f29e01a0f6525d907df13c901975c6b496
|
7
|
+
data.tar.gz: 566b0cdf9398d1b5ea360ab90c0ea23222d7fe783d16ebffd909386294e87e41123ce563c44f5a2788a0aa3ac18c71bf5ac5da5efbe233bc8dc3e6afff5197bf
|
@@ -6,14 +6,14 @@
|
|
6
6
|
</div>
|
7
7
|
<div class="accountability__project-timeline-entry-attributes">
|
8
8
|
<h3>
|
9
|
-
<%=
|
9
|
+
<%= decidim_sanitize_translated timeline_entry.title %>
|
10
10
|
</h3>
|
11
11
|
<div>
|
12
12
|
<%= l timeline_entry.entry_date, format: :decidim_short %>
|
13
13
|
</div>
|
14
14
|
<% if translated_attribute(timeline_entry.description).present? %>
|
15
15
|
<div>
|
16
|
-
<%=
|
16
|
+
<%= decidim_sanitize_translated(timeline_entry.description) %>
|
17
17
|
</div>
|
18
18
|
<% end %>
|
19
19
|
</div>
|
@@ -17,11 +17,15 @@ module Decidim
|
|
17
17
|
alias result model
|
18
18
|
|
19
19
|
def show
|
20
|
-
render
|
20
|
+
render template
|
21
21
|
end
|
22
22
|
|
23
23
|
private
|
24
24
|
|
25
|
+
def template
|
26
|
+
@template ||= options[:template] || :show
|
27
|
+
end
|
28
|
+
|
25
29
|
def title
|
26
30
|
decidim_escape_translated result.title
|
27
31
|
end
|
@@ -37,11 +41,19 @@ module Decidim
|
|
37
41
|
def tab_panel_items
|
38
42
|
[
|
39
43
|
{
|
40
|
-
enabled:
|
41
|
-
id: "
|
44
|
+
enabled: timeline_entries.any?,
|
45
|
+
id: "timeline_entries",
|
42
46
|
text: t("decidim.accountability.results.timeline.title"),
|
43
47
|
icon: "route-line",
|
44
48
|
method: :cell,
|
49
|
+
args: ["decidim/accountability/project", result, { template: :timeline }]
|
50
|
+
},
|
51
|
+
{
|
52
|
+
enabled: children.any?,
|
53
|
+
id: "included_results",
|
54
|
+
text: t("activemodel.attributes.result.subresults"),
|
55
|
+
icon: "briefcase-2-line",
|
56
|
+
method: :cell,
|
45
57
|
args: ["decidim/accountability/results", result.children]
|
46
58
|
},
|
47
59
|
{
|
@@ -1,7 +1,7 @@
|
|
1
1
|
<p class="accountability__status-title"><%= title %></p>
|
2
2
|
|
3
3
|
<% if component_settings.display_progress_enabled? && progress.present? %>
|
4
|
-
<div class="accountability__status-progress">
|
4
|
+
<div class="accountability__status-progress" role="progressbar" aria-label="<%= t("decidim.shared.progress") %>" aria-valuenow="<%= number_with_precision(progress, separator: ".", precision: 1) %>" aria-valuemin="0" aria-valuemax="100" aria-valuetext="<%= number_to_percentage(progress, precision: 1) %>">
|
5
5
|
<div style="width:<%= progress %>%"></div>
|
6
6
|
</div>
|
7
7
|
<% end %>
|
@@ -5,11 +5,15 @@ module Decidim
|
|
5
5
|
# Exposes the result resource so users can view them
|
6
6
|
class ResultsController < Decidim::Accountability::ApplicationController
|
7
7
|
include FilterResource
|
8
|
+
include Decidim::TranslatableAttributes
|
9
|
+
|
8
10
|
helper Decidim::TraceabilityHelper
|
9
11
|
helper Decidim::Accountability::BreadcrumbHelper
|
10
12
|
|
11
13
|
helper_method :results, :result, :first_class_categories, :count_calculator, :nav_paths
|
12
14
|
|
15
|
+
before_action :set_controller_breadcrumb
|
16
|
+
|
13
17
|
def show
|
14
18
|
raise ActionController::RoutingError, "Not Found" unless result
|
15
19
|
end
|
@@ -66,6 +70,24 @@ module Decidim
|
|
66
70
|
def count_calculator(scope_id, category_id)
|
67
71
|
Decidim::Accountability::ResultsCalculator.new(current_component, scope_id, category_id).count
|
68
72
|
end
|
73
|
+
|
74
|
+
def controller_breadcrumb_items
|
75
|
+
@controller_breadcrumb_items ||= []
|
76
|
+
end
|
77
|
+
|
78
|
+
def set_controller_breadcrumb
|
79
|
+
controller_breadcrumb_items << breadcrumb_item
|
80
|
+
end
|
81
|
+
|
82
|
+
def breadcrumb_item
|
83
|
+
return {} if result&.parent.blank?
|
84
|
+
|
85
|
+
{
|
86
|
+
label: translated_attribute(result.parent.title),
|
87
|
+
url: result_path(result.parent),
|
88
|
+
active: true
|
89
|
+
}
|
90
|
+
end
|
69
91
|
end
|
70
92
|
end
|
71
93
|
end
|
@@ -20,6 +20,10 @@ module Decidim
|
|
20
20
|
def proposal
|
21
21
|
@proposal ||= resource.linked_resources(:proposals, "included_proposals").find_by(id: extra[:proposal_id])
|
22
22
|
end
|
23
|
+
|
24
|
+
def hidden_resource?
|
25
|
+
super || (proposal.respond_to?(:hidden?) && proposal.hidden?)
|
26
|
+
end
|
23
27
|
end
|
24
28
|
end
|
25
29
|
end
|
@@ -9,12 +9,20 @@
|
|
9
9
|
|
10
10
|
<%= export_dropdowns(query) %>
|
11
11
|
<%= import_dropdown do %>
|
12
|
-
|
13
|
-
<%= link_to
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
12
|
+
<% if allowed_to?(:create, :result) && parent_result.nil? %>
|
13
|
+
<%= link_to new_projects_import_path do %>
|
14
|
+
<li class="imports--component imports--results">
|
15
|
+
<%= t("actions.import", scope: "decidim.accountability", name: t("models.result.name", scope: "decidim.accountability.admin")) %>
|
16
|
+
</li>
|
17
|
+
<% end %>
|
18
|
+
<% end %>
|
19
|
+
<% if allowed_to? :create, :result %>
|
20
|
+
<%= link_to import_results_path do %>
|
21
|
+
<li class="imports--component imports--results">
|
22
|
+
<%= t("actions.import_csv", scope: "decidim.accountability") %>
|
23
|
+
</li>
|
24
|
+
<% end %>
|
25
|
+
<% end %>
|
18
26
|
<% end %>
|
19
27
|
<%= render partial: "decidim/accountability/admin/shared/subnav" unless parent_result %>
|
20
28
|
<%= link_to t("actions.new_result", scope: "decidim.accountability"), new_result_path(parent_id: parent_result), class: "button button__sm button__secondary" if allowed_to? :create, :result %>
|
@@ -4,7 +4,7 @@
|
|
4
4
|
|
5
5
|
<% if current_component.has_subscopes? %>
|
6
6
|
<div class="filter-container">
|
7
|
-
<button id="dropdown-trigger-accountability" data-component="dropdown" data-target="dropdown-menu-accountability" data-auto-close="true"
|
7
|
+
<button id="dropdown-trigger-accountability" data-component="dropdown" data-target="dropdown-menu-accountability" data-auto-close="true">
|
8
8
|
<% items.each do |item| %>
|
9
9
|
<%= content_tag :span, class: "#{"is-active" if item[:active]}" do %>
|
10
10
|
<span class="sr-only"><%= item[:sr_text] %></span>
|
@@ -15,7 +15,7 @@
|
|
15
15
|
<%= icon "arrow-down-s-line", class: "w-8 h-8 flex-none text-secondary fill-current" %>
|
16
16
|
<%= icon "arrow-up-s-line", class: "w-8 h-8 flex-none text-secondary fill-current" %>
|
17
17
|
</button>
|
18
|
-
<ul id="dropdown-menu-accountability" data-scope-filters>
|
18
|
+
<ul id="dropdown-menu-accountability" data-scope-filters aria-hidden="true">
|
19
19
|
<% items.each do |item| %>
|
20
20
|
<li>
|
21
21
|
<%= link_to item[:url], class: "filter#{" is-active" if item[:active]}" do %>
|
@@ -1,5 +1,5 @@
|
|
1
1
|
<%= form_tag results_path, method: :get do %>
|
2
|
-
<div class="filter-search">
|
2
|
+
<div class="filter-search filter-container">
|
3
3
|
<label>
|
4
4
|
<span class="sr-only"><%= t("search", scope: "decidim.accountability.results.search") %></span>
|
5
5
|
<%= search_field_tag(
|
@@ -10,9 +10,9 @@
|
|
10
10
|
value: "",
|
11
11
|
title: t("search", scope: "decidim.accountability.results.search")
|
12
12
|
) %>
|
13
|
-
<button type="submit" aria-label="<%= t("search", scope: "decidim.accountability.results.search") %>">
|
14
|
-
<%= icon "search-line" %>
|
15
|
-
</button>
|
16
13
|
</label>
|
14
|
+
<button type="submit" aria-label="<%= t("search", scope: "decidim.accountability.results.search") %>">
|
15
|
+
<%= icon "search-line" %>
|
16
|
+
</button>
|
17
17
|
</div>
|
18
18
|
<% end %>
|
data/config/locales/bg.yml
CHANGED
@@ -93,9 +93,15 @@ bg:
|
|
93
93
|
new:
|
94
94
|
create: Импортиране
|
95
95
|
import_all_selected_projects: Импортирайте всички избрани за изпълнение проекти
|
96
|
+
new_items:
|
97
|
+
one: 1 избран проект ще бъде импортнат
|
98
|
+
other: "%{count} избрани проекта ще бъдат импортирани"
|
96
99
|
no_components: В това пространство за участие няма бюджетни компоненти, за да се импортират проектите в резултати.
|
97
100
|
origin_component_id: Компонент за произход
|
98
101
|
select_component: Избери компонент
|
102
|
+
success:
|
103
|
+
one: 1 проект е в опашката за импортиране. Ще бъдете уведомени по имейл, след приключване на импорта.
|
104
|
+
other: "%{count} проекта са на опашка за импортиране. Ще бъдете уведомени по имейл, след като приключите."
|
99
105
|
title: Импортирайте проекти от друг компонент
|
100
106
|
results:
|
101
107
|
create:
|
data/config/locales/ca.yml
CHANGED
data/config/locales/cs.yml
CHANGED
data/config/locales/de.yml
CHANGED
data/config/locales/en.yml
CHANGED
data/config/locales/es-MX.yml
CHANGED
@@ -13,6 +13,7 @@ es-MX:
|
|
13
13
|
project_ids: Proyectos incluidos
|
14
14
|
proposals: Propuestas incluidas
|
15
15
|
start_date: Inicio
|
16
|
+
subresults: Subresultados
|
16
17
|
title: Título
|
17
18
|
updated_at: Actualizado en
|
18
19
|
status:
|
@@ -42,9 +43,9 @@ es-MX:
|
|
42
43
|
edit: Editar
|
43
44
|
import: Importar proyectos desde otro componente
|
44
45
|
import_csv: Importar resultados desde un archivo CSV
|
45
|
-
new_result:
|
46
|
-
new_status:
|
47
|
-
new_timeline_entry:
|
46
|
+
new_result: Nuevo resultado
|
47
|
+
new_status: Nuevo estado
|
48
|
+
new_timeline_entry: Nueva entrada de cronología
|
48
49
|
preview: Previsualizar
|
49
50
|
timeline_entries: Evolución del proyecto
|
50
51
|
title: Acciones
|
@@ -224,7 +225,7 @@ es-MX:
|
|
224
225
|
home:
|
225
226
|
categories_label: Categorías
|
226
227
|
empty: Aún no hay ningún resultado.
|
227
|
-
empty_filters: No hay
|
228
|
+
empty_filters: No hay resultados con estos criterios.
|
228
229
|
subcategories_label: Subcategorías
|
229
230
|
home_header:
|
230
231
|
global_status: Estado de ejecución global
|
data/config/locales/es-PY.yml
CHANGED
@@ -13,6 +13,7 @@ es-PY:
|
|
13
13
|
project_ids: Proyectos incluidos
|
14
14
|
proposals: Propuestas incluidas
|
15
15
|
start_date: Inicio
|
16
|
+
subresults: Subresultados
|
16
17
|
title: Título
|
17
18
|
updated_at: Actualizado en
|
18
19
|
status:
|
@@ -42,9 +43,9 @@ es-PY:
|
|
42
43
|
edit: Editar
|
43
44
|
import: Importar proyectos desde otro componente
|
44
45
|
import_csv: Importar resultados desde un archivo CSV
|
45
|
-
new_result:
|
46
|
-
new_status:
|
47
|
-
new_timeline_entry:
|
46
|
+
new_result: Nuevo resultado
|
47
|
+
new_status: Nuevo estado
|
48
|
+
new_timeline_entry: Nueva entrada de cronología
|
48
49
|
preview: Previsualizar
|
49
50
|
timeline_entries: Evolución del proyecto
|
50
51
|
title: Acciones
|
@@ -224,7 +225,7 @@ es-PY:
|
|
224
225
|
home:
|
225
226
|
categories_label: Categorías
|
226
227
|
empty: Aún no hay ningún resultado.
|
227
|
-
empty_filters: No hay
|
228
|
+
empty_filters: No hay resultados con estos criterios.
|
228
229
|
subcategories_label: Subcategorías
|
229
230
|
home_header:
|
230
231
|
global_status: Estado de ejecución global
|
data/config/locales/es.yml
CHANGED
@@ -13,6 +13,7 @@ es:
|
|
13
13
|
project_ids: Proyectos incluidos
|
14
14
|
proposals: Propuestas incluidas
|
15
15
|
start_date: Fecha de inicio
|
16
|
+
subresults: Subresultados
|
16
17
|
title: Título
|
17
18
|
updated_at: Actualizado el
|
18
19
|
status:
|
@@ -42,9 +43,9 @@ es:
|
|
42
43
|
edit: Editar
|
43
44
|
import: Importar proyectos desde otro componente
|
44
45
|
import_csv: Importar resultados desde un archivo CSV
|
45
|
-
new_result:
|
46
|
-
new_status:
|
47
|
-
new_timeline_entry:
|
46
|
+
new_result: Nuevo resultado
|
47
|
+
new_status: Nuevo estado
|
48
|
+
new_timeline_entry: Nueva entrada de cronología
|
48
49
|
preview: Previsualizar
|
49
50
|
timeline_entries: Evolución del proyecto
|
50
51
|
title: Acciones
|
@@ -100,7 +101,7 @@ es:
|
|
100
101
|
origin_component_id: Componente de origen
|
101
102
|
select_component: Selecciona un componente
|
102
103
|
success:
|
103
|
-
one: Hay
|
104
|
+
one: Hay 1 proyecto para ser importado. Se notificará por correo electrónico, cuando se complete la importación.
|
104
105
|
other: "Hay %{count} proyectos para ser importados. Se notificará por correo electrónico, cuando se complete la importación."
|
105
106
|
title: Importar proyectos desde otro componente
|
106
107
|
results:
|
@@ -156,7 +157,7 @@ es:
|
|
156
157
|
title: Nuevo elemento
|
157
158
|
update:
|
158
159
|
invalid: Se ha producido un error al actualizar esta entrada.
|
159
|
-
success: Entrada
|
160
|
+
success: Entrada actualizada correctamente.
|
160
161
|
admin_log:
|
161
162
|
result:
|
162
163
|
create: "%{user_name} creó el resultado %{resource_name} en %{space_name}"
|
@@ -224,7 +225,7 @@ es:
|
|
224
225
|
home:
|
225
226
|
categories_label: Categorías
|
226
227
|
empty: Aún no hay ningún resultado.
|
227
|
-
empty_filters: No hay
|
228
|
+
empty_filters: No hay resultados con estos criterios.
|
228
229
|
subcategories_label: Subcategorías
|
229
230
|
home_header:
|
230
231
|
global_status: Estado de ejecución global
|
data/config/locales/eu.yml
CHANGED
@@ -13,6 +13,7 @@ eu:
|
|
13
13
|
project_ids: Barne dauden proiektuak
|
14
14
|
proposals: Barne dauden proposamenak
|
15
15
|
start_date: Hasiera-data
|
16
|
+
subresults: Azpiemaitzak
|
16
17
|
title: Izenburua
|
17
18
|
updated_at: Noiz eguneratua
|
18
19
|
status:
|
@@ -138,11 +139,11 @@ eu:
|
|
138
139
|
create: Egoera sortu
|
139
140
|
title: Beste egoera bat
|
140
141
|
update:
|
141
|
-
invalid:
|
142
|
-
success: Egoera
|
142
|
+
invalid: Arazoren bat gertatu da egoera hau sortzean.
|
143
|
+
success: Egoera ondo eguneratu da.
|
143
144
|
timeline_entries:
|
144
145
|
create:
|
145
|
-
invalid:
|
146
|
+
invalid: Arazoen bat gertatu da sarrera hau sortzean.
|
146
147
|
success: Sarrera zuzen sortua.
|
147
148
|
destroy:
|
148
149
|
success: Sarrera behar bezala ezabatua.
|
data/config/locales/fi-plain.yml
CHANGED
data/config/locales/fi.yml
CHANGED
@@ -13,6 +13,7 @@ fi:
|
|
13
13
|
project_ids: Liitetyt hankkeet
|
14
14
|
proposals: Sisällytetyt ehdotukset
|
15
15
|
start_date: Alkamispäivä
|
16
|
+
subresults: Alitulokset
|
16
17
|
title: Otsikko
|
17
18
|
updated_at: Päivitysaika
|
18
19
|
status:
|
@@ -277,12 +278,12 @@ fi:
|
|
277
278
|
events:
|
278
279
|
accountability:
|
279
280
|
proposal_linked:
|
280
|
-
email_intro: 'Ehdotus "%{proposal_title}" on liitetty tulokseen. Voit tutustua siihen
|
281
|
+
email_intro: 'Ehdotus "%{proposal_title}" on liitetty tulokseen. Voit tutustua siihen sivulta:'
|
281
282
|
email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat "%{proposal_title}". Voit lopettaa ilmoitusten vastaanottamisen edellä esitetyn linkin kautta.
|
282
283
|
email_subject: Päivitys kohtaan %{proposal_title}
|
283
284
|
notification_title: Ehdotus <a href="%{proposal_path}">%{proposal_title}</a> on sisällytetty tulokseen <a href="%{resource_path}">%{resource_title}</a>.
|
284
285
|
result_progress_updated:
|
285
|
-
email_intro: 'Tulos "%{resource_title}", joka sisältää ehdotuksen "%{proposal_title}", on nyt %{progress}% valmis. Voit tutustua siihen
|
286
|
+
email_intro: 'Tulos "%{resource_title}", joka sisältää ehdotuksen "%{proposal_title}", on nyt %{progress}% valmis. Voit tutustua siihen sivulta:'
|
286
287
|
email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat ehdotusta "%{proposal_title}" ja se sisältyy tulokseen "%{resource_title}". Voit lopettaa ilmoitusten vastaanottamisen edellä esitetyn linkin kautta.
|
287
288
|
email_subject: Päivitys kohteen %{resource_title} edistykseen
|
288
289
|
notification_title: Tulos <a href="%{resource_path}">%{resource_title}</a>, joka sisältää ehdotuksen <a href="%{proposal_path}">%{proposal_title}</a>, on nyt %{progress}% valmis.
|
data/config/locales/ja.yml
CHANGED
data/config/locales/pl.yml
CHANGED
@@ -13,6 +13,7 @@ pl:
|
|
13
13
|
project_ids: Uwzględnione projekty
|
14
14
|
proposals: Uwzględnione propozycje
|
15
15
|
start_date: Data rozpoczęcia
|
16
|
+
subresults: Podwyniki
|
16
17
|
title: Tytuł
|
17
18
|
updated_at: Zaktualizowano
|
18
19
|
status:
|
@@ -186,6 +187,11 @@ pl:
|
|
186
187
|
success: Importowanie wyników zakończyło się pomyślnie. Możesz przejrzeć wyniki w panelu administracyjnym.
|
187
188
|
import_projects_mailer:
|
188
189
|
import:
|
190
|
+
added_projects:
|
191
|
+
one: Wynik został prawidłowo zaimportowany z projektów.
|
192
|
+
few: "Wyniki zostały prawidłowo zaimportowane z projektów."
|
193
|
+
many: "Wyniki zostały prawidłowo zaimportowane z projektów."
|
194
|
+
other: "%{count} wynik/wyniki/wyników został/zostały/zostało zaimportowanych z projektów."
|
189
195
|
subject: Zaimportowano wyniki
|
190
196
|
success: Pomyślnie zaimportowano projekty do wyników w komponencie %{component_name}. Możesz przejrzeć wyniki w interfejsie administracji.
|
191
197
|
last_activity:
|
data/config/locales/ro-RO.yml
CHANGED
@@ -8,11 +8,12 @@ ro:
|
|
8
8
|
decidim_scope_id: Domeniu de interes
|
9
9
|
description: Descriere
|
10
10
|
end_date: Data de sfârșit
|
11
|
-
meetings_ids:
|
11
|
+
meetings_ids: Ședințe incluse
|
12
12
|
progress: Progres
|
13
13
|
project_ids: Proiecte incluse
|
14
14
|
proposals: Propuneri incluse
|
15
15
|
start_date: Data de început
|
16
|
+
subresults: Subrezultate
|
16
17
|
title: Titlu
|
17
18
|
updated_at: Ultima actualizare
|
18
19
|
status:
|
@@ -57,6 +58,7 @@ ro:
|
|
57
58
|
new:
|
58
59
|
download_export: Descărcați Exportul în format CSV
|
59
60
|
import: Importați
|
61
|
+
title: Importați rezultate dintr-un fișier CSV
|
60
62
|
imports:
|
61
63
|
create:
|
62
64
|
invalid: A apărut o problemă la importul rezultatelor.
|
@@ -74,7 +76,7 @@ ro:
|
|
74
76
|
new_items:
|
75
77
|
one: 1 proiect selectat va fi importat
|
76
78
|
few: "Proiectele selectate vor fi importate"
|
77
|
-
other: "Cele %{count} proiecte vor fi importate"
|
79
|
+
other: "Cele %{count} proiecte selectate vor fi importate"
|
78
80
|
origin_component_id: Componenta de origine
|
79
81
|
select_component: Selectați componenta
|
80
82
|
success:
|
@@ -176,11 +178,11 @@ ro:
|
|
176
178
|
fields:
|
177
179
|
category: Categorie
|
178
180
|
created_at: Creat
|
179
|
-
end_date:
|
181
|
+
end_date: Data de sfârșit
|
180
182
|
id: ID
|
181
183
|
progress: Progres
|
182
184
|
scope: Domeniu de interes
|
183
|
-
start_date:
|
185
|
+
start_date: Data de început
|
184
186
|
status: Stare
|
185
187
|
title: Titlu
|
186
188
|
status:
|
@@ -204,7 +206,7 @@ ro:
|
|
204
206
|
home:
|
205
207
|
categories_label: Categorii
|
206
208
|
empty: Nu există rezultate încă.
|
207
|
-
empty_filters: Nu există rezultate
|
209
|
+
empty_filters: Nu există rezultate pentru acest criteriu.
|
208
210
|
subcategories_label: Subcategorii
|
209
211
|
home_header:
|
210
212
|
global_status: Stare execuție globală
|
@@ -244,7 +246,7 @@ ro:
|
|
244
246
|
global:
|
245
247
|
categories_label: Nume pentru "Categorii"
|
246
248
|
comments_enabled: Comentarii activate
|
247
|
-
comments_max_length: Lungimea maximă a comentariilor (
|
249
|
+
comments_max_length: Lungimea maximă a comentariilor (Lăsați 0 pentru valoarea implicită)
|
248
250
|
display_progress_enabled: Afișare progres
|
249
251
|
heading_leaf_level_results: Nume pentru "Proiecte"
|
250
252
|
heading_parent_level_results: Nume pentru "Rezultate"
|
@@ -258,7 +260,7 @@ ro:
|
|
258
260
|
accountability:
|
259
261
|
proposal_linked:
|
260
262
|
email_intro: 'Propunerea "%{proposal_title}" a fost inclusă într-un rezultat. O puteți vedea de pe această pagină:'
|
261
|
-
email_outro:
|
263
|
+
email_outro: Ați primit această notificare deoarece urmați "%{proposal_title}". Puteți înceta să primiți notificări urmând linkul anterior.
|
262
264
|
email_subject: O actualizare la %{proposal_title}
|
263
265
|
notification_title: Propunerea <a href="%{proposal_path}">%{proposal_title}</a> a fost inclusă în rezultatul <a href="%{resource_path}">%{resource_title}</a>.
|
264
266
|
result_progress_updated:
|
data/config/locales/sv.yml
CHANGED
@@ -8,11 +8,12 @@ sv:
|
|
8
8
|
decidim_scope_id: Omfattning
|
9
9
|
description: Beskrivning
|
10
10
|
end_date: Slutdatum
|
11
|
-
meetings_ids:
|
11
|
+
meetings_ids: Möten som omfattas
|
12
12
|
progress: Genomförande
|
13
13
|
project_ids: Projekt som omfattas
|
14
14
|
proposals: Förslag som omfattas
|
15
15
|
start_date: Startdatum
|
16
|
+
subresults: Delresultat
|
16
17
|
title: Titel
|
17
18
|
updated_at: Uppdaterad
|
18
19
|
status:
|
@@ -26,7 +27,7 @@ sv:
|
|
26
27
|
title: Titel
|
27
28
|
models:
|
28
29
|
decidim/accountability/proposal_linked_event: Förslag som ingår i ett resultat
|
29
|
-
decidim/accountability/result_progress_updated_event:
|
30
|
+
decidim/accountability/result_progress_updated_event: Resultatet har uppdaterats
|
30
31
|
activerecord:
|
31
32
|
models:
|
32
33
|
decidim/accountability/result:
|
@@ -40,6 +41,11 @@ sv:
|
|
40
41
|
confirm_destroy: Vill du radera detta %{name}?
|
41
42
|
destroy: Radera
|
42
43
|
edit: Redigera
|
44
|
+
import: Importera från en annan komponent
|
45
|
+
import_csv: Importera resultat från CSV-fil
|
46
|
+
new_result: Nytt resultat
|
47
|
+
new_status: Ny status
|
48
|
+
new_timeline_entry: Ny post i tidslinje
|
43
49
|
preview: Förhandsvisa
|
44
50
|
timeline_entries: Projektutveckling
|
45
51
|
title: Åtgärder
|
@@ -49,13 +55,13 @@ sv:
|
|
49
55
|
results: Resultat
|
50
56
|
import_results:
|
51
57
|
new:
|
52
|
-
download_export: Ladda ner exporten som CSV
|
58
|
+
download_export: Ladda ner exporten som CSV-fil
|
53
59
|
import: Importera
|
54
60
|
info: |
|
55
|
-
<p>Vi rekommenderar att du följer
|
61
|
+
<p>Vi rekommenderar att du följer de här stegen:</p>
|
56
62
|
<ol>
|
57
|
-
<li><a href='%{link_new_status}' target='_blank'>Skapa
|
58
|
-
<li><a href='%{link_new_result}' target='_blank'>Skapa minst ett resultat manuellt</a>
|
63
|
+
<li><a href='%{link_new_status}' target='_blank'>Skapa status för de resultat</a> som du vill lägga till</li>
|
64
|
+
<li><a href='%{link_new_result}' target='_blank'>Skapa minst ett resultat manuellt</a> från administratörspanelen innan du importerar, för att få en bättre förståelse för formatet och vad du behöver fylla i.</li>
|
59
65
|
<li>%{link_export_csv}</li>
|
60
66
|
<li>Genomför ändringarna lokalt. Du kan endast ändra följande kolumner i CSV-filen:
|
61
67
|
<ul>
|
@@ -72,8 +78,10 @@ sv:
|
|
72
78
|
</ul>
|
73
79
|
</li>
|
74
80
|
</ol>
|
81
|
+
title: Importera resultat från CSV-fil
|
75
82
|
imports:
|
76
83
|
create:
|
84
|
+
invalid: Det gick inte att importera resultaten.
|
77
85
|
success: Importen av filen har påbörjats. Inom några minuter kommer du att få ett e-postmeddelande med importresultatet.
|
78
86
|
models:
|
79
87
|
result:
|
@@ -89,10 +97,19 @@ sv:
|
|
89
97
|
new_items:
|
90
98
|
one: 1 valt projekt kommer att importeras
|
91
99
|
other: "%{count} valda projekt kommer att importeras"
|
92
|
-
no_components: Det finns
|
100
|
+
no_components: Det finns ingen budget-komponenter att importera projekt från i den här processen.
|
93
101
|
origin_component_id: Ursprungskomponent
|
94
102
|
select_component: Välj en komponent
|
103
|
+
success:
|
104
|
+
one: 1 projekt väntar på att importeras. Du får ett e-postmeddelande när det är klart.
|
105
|
+
other: "%{count} projekt väntar på att importeras. Du får ett e-postmeddelande när det är klart."
|
106
|
+
title: Importera från en annan komponent
|
95
107
|
results:
|
108
|
+
create:
|
109
|
+
invalid: Det gick inte att skapa resultatet.
|
110
|
+
success: Resultatet har skapats.
|
111
|
+
destroy:
|
112
|
+
success: Resultatet har raderats.
|
96
113
|
edit:
|
97
114
|
title: Redigera resultat
|
98
115
|
update: Uppdatera resultat
|
@@ -101,10 +118,18 @@ sv:
|
|
101
118
|
new:
|
102
119
|
create: Skapa resultat
|
103
120
|
title: Nytt resultat
|
121
|
+
update:
|
122
|
+
invalid: Det gick inte att uppdatera resultatet.
|
123
|
+
success: Resultatet har uppdaterats.
|
104
124
|
shared:
|
105
125
|
subnav:
|
106
126
|
statuses: Status
|
107
127
|
statuses:
|
128
|
+
create:
|
129
|
+
invalid: Det gick inte att skapa statusen.
|
130
|
+
success: Statusen har skapats.
|
131
|
+
destroy:
|
132
|
+
success: Statusen har raderats.
|
108
133
|
edit:
|
109
134
|
title: Redigera status
|
110
135
|
update: Uppdatera status
|
@@ -113,7 +138,15 @@ sv:
|
|
113
138
|
new:
|
114
139
|
create: Skapa status
|
115
140
|
title: Ny status
|
141
|
+
update:
|
142
|
+
invalid: Det gick inte att uppdatera statusen.
|
143
|
+
success: Statusen har uppdaterats.
|
116
144
|
timeline_entries:
|
145
|
+
create:
|
146
|
+
invalid: Det gick inte att skapa den här posten.
|
147
|
+
success: Posten har skapats.
|
148
|
+
destroy:
|
149
|
+
success: Posten har raderats.
|
117
150
|
edit:
|
118
151
|
title: Redigera post
|
119
152
|
update: Uppdatera post
|
@@ -122,6 +155,9 @@ sv:
|
|
122
155
|
new:
|
123
156
|
create: Skapa post
|
124
157
|
title: Ny post
|
158
|
+
update:
|
159
|
+
invalid: Det gick inte att uppdatera den här posten.
|
160
|
+
success: Posten har uppdaterats.
|
125
161
|
admin_log:
|
126
162
|
result:
|
127
163
|
create: "%{user_name} skapade resultatet %{resource_name} i %{space_name}"
|
@@ -144,16 +180,17 @@ sv:
|
|
144
180
|
import_mailer:
|
145
181
|
import:
|
146
182
|
errors: Fel
|
183
|
+
errors_present: Det gick inte att importera resultaten.
|
147
184
|
row_number: Rad
|
148
|
-
subject:
|
149
|
-
success:
|
185
|
+
subject: Resultaten har importerats
|
186
|
+
success: Resultaten har importerats. Du kan granska resultaten i administrationsgränssnittet.
|
150
187
|
import_projects_mailer:
|
151
188
|
import:
|
152
189
|
added_projects:
|
153
190
|
one: Ett resultat importerades från projekt.
|
154
191
|
other: "%{count} resultat importerades från projekt."
|
155
192
|
subject: Projekten har importerats
|
156
|
-
success: Projekten har importerats till resultat. Du kan se resultaten i administrationsgränssnittet.
|
193
|
+
success: Projekten har importerats till resultat i %{component_name}. Du kan se resultaten i administrationsgränssnittet.
|
157
194
|
last_activity:
|
158
195
|
new_result: 'Nytt resultat:'
|
159
196
|
models:
|
@@ -164,7 +201,7 @@ sv:
|
|
164
201
|
end_date: Slutdatum
|
165
202
|
id: ID
|
166
203
|
progress: Genomförande
|
167
|
-
scope:
|
204
|
+
scope: Indelning
|
168
205
|
start_date: Startdatum
|
169
206
|
status: Status
|
170
207
|
title: Titel
|
@@ -173,7 +210,7 @@ sv:
|
|
173
210
|
description: Beskrivning
|
174
211
|
key: Nyckel
|
175
212
|
name: Namn
|
176
|
-
progress:
|
213
|
+
progress: Genomförande
|
177
214
|
timeline_entry:
|
178
215
|
fields:
|
179
216
|
entry_date: Datum
|
@@ -187,6 +224,8 @@ sv:
|
|
187
224
|
all: Alla
|
188
225
|
home:
|
189
226
|
categories_label: Kategorier
|
227
|
+
empty: Det finns inget resultat ännu.
|
228
|
+
empty_filters: Det finns inget resultat med de här kriterierna.
|
190
229
|
subcategories_label: Underkategorier
|
191
230
|
home_header:
|
192
231
|
global_status: Global genomförandestatus
|
@@ -200,9 +239,9 @@ sv:
|
|
200
239
|
attendees: Deltagare
|
201
240
|
back_to_resource: Gå tillbaka till resultatet
|
202
241
|
comments: Kommentarer
|
203
|
-
contributions:
|
242
|
+
contributions: Insatser
|
204
243
|
last_edited_by: Senast ändrad av
|
205
|
-
last_updated_at: Senast uppdaterad
|
244
|
+
last_updated_at: Senast uppdaterad
|
206
245
|
meetings: Möten
|
207
246
|
proposals: Förslag
|
208
247
|
votes: Stöd
|
@@ -214,39 +253,39 @@ sv:
|
|
214
253
|
category_id_eq:
|
215
254
|
label: Kategori
|
216
255
|
scope_id_eq:
|
217
|
-
label:
|
256
|
+
label: Indelning
|
218
257
|
status_id_eq:
|
219
258
|
label: Status
|
220
259
|
components:
|
221
260
|
accountability:
|
222
261
|
actions:
|
223
262
|
comment: Kommentar
|
224
|
-
name:
|
263
|
+
name: Genomförande
|
225
264
|
settings:
|
226
265
|
global:
|
227
|
-
categories_label: Namn
|
228
|
-
comments_enabled: Kommentarer
|
229
|
-
comments_max_length: Maximal
|
230
|
-
display_progress_enabled: Visa
|
231
|
-
heading_leaf_level_results: Namn
|
232
|
-
heading_parent_level_results: Namn
|
233
|
-
intro:
|
234
|
-
scope_id:
|
235
|
-
scopes_enabled:
|
236
|
-
subcategories_label: Namn
|
266
|
+
categories_label: Namn på "Kategorier"
|
267
|
+
comments_enabled: Kommentarer aktiverade
|
268
|
+
comments_max_length: Maximal kommentarslängd (ange 0 för att använda standardvärdet)
|
269
|
+
display_progress_enabled: Visa genomförande
|
270
|
+
heading_leaf_level_results: Namn på "Projekt"
|
271
|
+
heading_parent_level_results: Namn på "Resultat"
|
272
|
+
intro: Introduktion
|
273
|
+
scope_id: Indelning
|
274
|
+
scopes_enabled: Aktivera indelningar
|
275
|
+
subcategories_label: Namn på "Underkategorier"
|
237
276
|
step:
|
238
|
-
comments_blocked:
|
277
|
+
comments_blocked: Stäng av kommentarer
|
239
278
|
events:
|
240
279
|
accountability:
|
241
280
|
proposal_linked:
|
242
281
|
email_intro: 'Förslaget "%{proposal_title}" har tagits med i ett resultat. Visa det från den här sidan:'
|
243
|
-
email_outro: Du har fått det här meddelandet eftersom du följer "%{proposal_title}". Du kan sluta att ta emot meddelanden genom att
|
244
|
-
email_subject: En uppdatering
|
282
|
+
email_outro: Du har fått det här meddelandet eftersom du följer "%{proposal_title}". Du kan sluta att ta emot meddelanden genom att klicka på föregående länk.
|
283
|
+
email_subject: En uppdatering av %{proposal_title}
|
245
284
|
notification_title: Förslaget <a href="%{proposal_path}">%{proposal_title}</a> har tagits med i resultatet <a href="%{resource_path}">%{resource_title}</a>.
|
246
285
|
result_progress_updated:
|
247
286
|
email_intro: 'Resultatet "%{resource_title}", som omfattar förslaget "%{proposal_title}", är nu %{progress}% färdigt. Du kan se det från den här sidan:'
|
248
|
-
email_outro: Du har fått
|
249
|
-
email_subject: En uppdatering
|
287
|
+
email_outro: Du har fått det här meddelande eftersom du följer "%{proposal_title}", och detta förslag ingår i resultatet "%{resource_title}". Du kan sluta ta emot meddelanden genom att klicka på föregående länk.
|
288
|
+
email_subject: En uppdatering av genomförandet av %{resource_title}
|
250
289
|
notification_title: Resultatet <a href="%{resource_path}">%{resource_title}</a>, som ingår i förslaget <a href="%{proposal_path}">%{proposal_title}</a>, är nu %{progress}% färdigt.
|
251
290
|
metrics:
|
252
291
|
results:
|
data/config/locales/th-TH.yml
CHANGED
@@ -1 +1,215 @@
|
|
1
|
+
---
|
1
2
|
th:
|
3
|
+
activemodel:
|
4
|
+
attributes:
|
5
|
+
result:
|
6
|
+
decidim_accountability_status_id: สถานะ
|
7
|
+
decidim_category_id: หมวดหมู่
|
8
|
+
decidim_scope_id: ขอบเขต
|
9
|
+
description: คำอธิบาย
|
10
|
+
end_date: วันสิ้นสุด
|
11
|
+
meetings_ids: รวมการประชุม
|
12
|
+
progress: ความคืบหน้า
|
13
|
+
project_ids: รวมโครงการ
|
14
|
+
proposals: รวมข้อเสนอ
|
15
|
+
start_date: วันที่เริ่มต้น
|
16
|
+
title: ชื่อ
|
17
|
+
updated_at: อัปเดตที่
|
18
|
+
status:
|
19
|
+
description: คำอธิบาย
|
20
|
+
key: สำคัญ
|
21
|
+
name: ชื่อ
|
22
|
+
progress: ความคืบหน้า
|
23
|
+
timeline_entry:
|
24
|
+
description: คำอธิบาย
|
25
|
+
entry_date: วันที่
|
26
|
+
title: ชื่อ
|
27
|
+
models:
|
28
|
+
decidim/accountability/proposal_linked_event: ข้อเสนอที่รวมอยู่ในผลลัพธ์
|
29
|
+
decidim/accountability/result_progress_updated_event: อัปเดตความคืบหน้าของผลลัพธ์แล้ว
|
30
|
+
activerecord:
|
31
|
+
models:
|
32
|
+
decidim/accountability/result:
|
33
|
+
other: ผลลัพธ์
|
34
|
+
decidim:
|
35
|
+
accountability:
|
36
|
+
actions:
|
37
|
+
attachment_collections: โฟลเดอร์
|
38
|
+
attachments: ไฟล์แนบ
|
39
|
+
confirm_destroy: คุณแน่ใจหรือไม่ว่าต้องการลบ %{name} นี้
|
40
|
+
destroy: ลบ
|
41
|
+
edit: แก้ไข
|
42
|
+
import: นำเข้าโครงการจากส่วนประกอบอื่น
|
43
|
+
import_csv: นำเข้าผลลัพธ์จากไฟล์ CSV
|
44
|
+
new_result: ผลลัพธ์ใหม่
|
45
|
+
new_status: สถานะใหม่
|
46
|
+
new_timeline_entry: รายการไทม์ไลน์ใหม่
|
47
|
+
preview: ดูตัวอย่าง
|
48
|
+
timeline_entries: วิวัฒนาการของโครงการ
|
49
|
+
title: การดำเนินการ
|
50
|
+
admin:
|
51
|
+
exports:
|
52
|
+
result_comments: ความคิดเห็น
|
53
|
+
results: ผลลัพธ์
|
54
|
+
import_results:
|
55
|
+
new:
|
56
|
+
download_export: ดาวน์โหลดการส่งออกด้วยรูปแบบ CSV
|
57
|
+
import: นำเข้า
|
58
|
+
info: |
|
59
|
+
<p>เราขอแนะนำให้คุณทำตามขั้นตอนเหล่านี้:</p>
|
60
|
+
<ol>
|
61
|
+
<li><a href='%{link_new_status}' target='_blank'>สร้างสถานะสำหรับผลลัพธ์</a> ที่คุณต้องการเพิ่ม</li>
|
62
|
+
<li><a href='%{link_new_result}' target='_blank'>สร้างผลลัพธ์อย่างน้อยหนึ่งรายการด้วยตนเอง</a>ผ่านแผงการดูแลระบบนี้ก่อนที่จะใช้การนำเข้า เพื่อให้มีความเข้าใจที่ดีขึ้นเกี่ยวกับรูปแบบและสิ่งที่คุณต้องการ เพื่อกรอก</li>
|
63
|
+
<li>%{link_export_csv}</li>
|
64
|
+
<li>ทำการเปลี่ยนแปลงภายในเครื่อง คุณสามารถเปลี่ยนได้เฉพาะคอลัมน์ต่อไปนี้ของ CSV:
|
65
|
+
<ul>
|
66
|
+
<li><b>category/id:</b> รหัสสำหรับหมวดหมู่</li>
|
67
|
+
<li><b>ขอบเขต/id:</b> ID สำหรับขอบเขต</li>
|
68
|
+
<li><b>parent/id:</b> ID ของ parent (สำหรับผลลัพธ์ที่เกี่ยวข้อง) ไม่บังคับ</li>
|
69
|
+
<li><b>title/en:</b> ชื่อเรื่องเป็นภาษาอังกฤษ ขึ้นอยู่กับการกำหนดค่าภาษาแพลตฟอร์มของคุณ</li>
|
70
|
+
<li><b>description/en:</b> คำอธิบายเป็นภาษาอังกฤษ ขึ้นอยู่กับการกำหนดค่าภาษาแพลตฟอร์มของคุณ</li>
|
71
|
+
<li><b>start_date:</b> วันที่ผลลัพธ์เริ่มดำเนินการ (รูปแบบ YYYY-MM-DD)</li>
|
72
|
+
<li><b>end_date:</b> วันที่ผลลัพธ์สิ้นสุดการดำเนินการ (รูปแบบ YYYY-MM-DD)</li>
|
73
|
+
<li><b>status/id:</b> ID ของสถานะของผลลัพธ์นี้</li>
|
74
|
+
<li><b>ความคืบหน้า:</b> เปอร์เซ็นต์ (ตั้งแต่ 0 ถึง 100) ของการดำเนินการ</li>
|
75
|
+
<li><b>proposals_ids:</b> ID ภายในของข้อเสนอที่เกี่ยวข้อง (คั่นด้วยเครื่องหมายจุลภาค) จะถูกแปลงเป็น <span class='attribute-name'>proposal_url</span></li> โดยอัตโนมัติ
|
76
|
+
</ul>
|
77
|
+
</li>
|
78
|
+
</ol>
|
79
|
+
title: นำเข้าผลลัพธ์จากไฟล์ CSV
|
80
|
+
imports:
|
81
|
+
create:
|
82
|
+
invalid: เกิดปัญหาในการนำเข้าผลลัพธ์
|
83
|
+
success: ไฟล์ได้เริ่มนำเข้าแล้ว คุณจะได้รับอีเมลแจ้งผลการนำเข้าในอีกไม่กี่นาทีข้างหน้า
|
84
|
+
models:
|
85
|
+
result:
|
86
|
+
name: ผลลัพธ์
|
87
|
+
status:
|
88
|
+
name: สถานะ
|
89
|
+
projects_import:
|
90
|
+
create:
|
91
|
+
invalid: เกิดปัญหาในการนำเข้าโปรเจ็กต์ไปยังผลลัพธ์ โปรดปฏิบัติตามคำแนะนำอย่างละเอียด และตรวจสอบให้แน่ใจว่าคุณได้เลือกโปรเจ็กต์สำหรับนำไปใช้งาน
|
92
|
+
new:
|
93
|
+
create: นำเข้า
|
94
|
+
import_all_selected_projects: นำเข้าโครงการทั้งหมดที่เลือกเพื่อนำไปใช้งาน
|
95
|
+
new_items:
|
96
|
+
other: "โครงการที่เลือกจะถูกนำเข้า"
|
97
|
+
no_components: ไม่มีองค์ประกอบด้านงบประมาณในพื้นที่แบบมีส่วนร่วมนี้เพื่อนำเข้าโครงการเข้าสู่ผลลัพธ์d
|
98
|
+
origin_component_id: ส่วนประกอบต้นกำเนิด
|
99
|
+
select_component: เลือกส่วนประกอบ
|
100
|
+
success:
|
101
|
+
other: "มี 1 โปรเจ็กต์อยู่ในคิวที่จะนำเข้า คุณจะได้รับแจ้งทางอีเมลเมื่อดำเนินการเสร็จสิ้น"
|
102
|
+
title: นำเข้าโครงการจากส่วนประกอบอื่น
|
103
|
+
results:
|
104
|
+
create:
|
105
|
+
invalid: เกิดปัญหาในการสร้างผลลัพธ์นี้
|
106
|
+
success: สร้างผลลัพธ์สำเร็จแล้ว
|
107
|
+
destroy:
|
108
|
+
success: ลบผลลัพธ์เรียบร้อยแล้ว
|
109
|
+
edit:
|
110
|
+
title: แก้ไขผลลัพธ์
|
111
|
+
update: อัพเดทผลครับ
|
112
|
+
index:
|
113
|
+
title: ผลลัพธ์
|
114
|
+
new:
|
115
|
+
create: สร้างผลลัพธ์
|
116
|
+
title: ผลลัพธ์ใหม่
|
117
|
+
update:
|
118
|
+
invalid: เกิดปัญหาในการอัปเดตผลลัพธ์นี้
|
119
|
+
success: อัปเดตผลลัพธ์เรียบร้อยแล้ว
|
120
|
+
shared:
|
121
|
+
subnav:
|
122
|
+
statuses: สถานะ
|
123
|
+
statuses:
|
124
|
+
create:
|
125
|
+
invalid: เกิดปัญหาในการสร้างสถานะนี้
|
126
|
+
success: สร้างสถานะเรียบร้อยแล้ว
|
127
|
+
destroy:
|
128
|
+
success: ลบสถานะเรียบร้อยแล้ว
|
129
|
+
edit:
|
130
|
+
title: แก้ไขสถานะ
|
131
|
+
update: อัพเดตสถานะ
|
132
|
+
index:
|
133
|
+
title: สถานะ
|
134
|
+
new:
|
135
|
+
create: Create status
|
136
|
+
title: สถานะใหม่
|
137
|
+
update:
|
138
|
+
invalid: เกิดปัญหาในการอัปเดตสถานะนี้
|
139
|
+
success: อัปเดตสถานะสำเร็จแล้ว
|
140
|
+
timeline_entries:
|
141
|
+
create:
|
142
|
+
invalid: เกิดปัญหาในการสร้างรายการนี้
|
143
|
+
success: สร้างรายการสําเร็จแล้ว
|
144
|
+
destroy:
|
145
|
+
success: ลบรายการเรียบร้อยแล้ว
|
146
|
+
results:
|
147
|
+
home:
|
148
|
+
categories_label: หมวดหมู่
|
149
|
+
empty: ยังไม่มีผลลัพธ์
|
150
|
+
empty_filters: ไม่มีผลลัพธ์ตามเกณฑ์นี้
|
151
|
+
subcategories_label: หมวดหมู่ย่อย
|
152
|
+
home_header:
|
153
|
+
global_status: สถานะการดำเนินการทั่วโลก
|
154
|
+
nav_breadcrumb:
|
155
|
+
global: การดำเนินการระดับโลก
|
156
|
+
no_results: ไม่มีโครงการ
|
157
|
+
search:
|
158
|
+
search: ค้นหาการกระทำ
|
159
|
+
show:
|
160
|
+
stats:
|
161
|
+
back_to_resource: กลับไปหาผลลัพธ์
|
162
|
+
comments: ความคิดเห็น
|
163
|
+
timeline:
|
164
|
+
title: วิวัฒนาการของโครงการ
|
165
|
+
admin:
|
166
|
+
filters:
|
167
|
+
results:
|
168
|
+
category_id_eq:
|
169
|
+
label: หมวดหมู่
|
170
|
+
scope_id_eq:
|
171
|
+
label: ขอบเขต
|
172
|
+
status_id_eq:
|
173
|
+
label: สถานะ
|
174
|
+
components:
|
175
|
+
accountability:
|
176
|
+
actions:
|
177
|
+
comment: ความคิดเห็น
|
178
|
+
name: ความรับผิดชอบ
|
179
|
+
settings:
|
180
|
+
global:
|
181
|
+
comments_enabled: เปิดใช้งานความคิดเห็นแล้ว
|
182
|
+
comments_max_length: ความคิดเห็นความยาวสูงสุด (ปล่อยให้ 0 เป็นค่าเริ่มต้น)
|
183
|
+
display_progress_enabled: แสดงความคืบหน้า
|
184
|
+
intro: คำแนะนำ
|
185
|
+
scope_id: ขอบเขต
|
186
|
+
scopes_enabled: เปิดใช้งานขอบเขตแล้ว
|
187
|
+
step:
|
188
|
+
comments_blocked: ความคิดเห็นถูกบล็อก
|
189
|
+
events:
|
190
|
+
accountability:
|
191
|
+
proposal_linked:
|
192
|
+
email_intro: 'ข้อเสนอ "%{proposal_title}" ถูกรวมไว้ในผลลัพธ์แล้ว คุณสามารถดูได้จากหน้านี้:'
|
193
|
+
email_outro: คุณได้รับการแจ้งเตือนนี้เนื่องจากคุณกำลังติดตาม "%{proposal_title}" คุณสามารถหยุดรับการแจ้งเตือนได้ตามลิงก์ก่อนหน้า
|
194
|
+
email_subject: การอัปเดตเป็น %{proposal_title}
|
195
|
+
notification_title: ข้อเสนอ <a href="%{proposal_path}">%{proposal_title}</a> ถูกรวมไว้ในผลลัพธ์ <a href="%{resource_path}">%{resource_title}</a> แล้ว
|
196
|
+
result_progress_updated:
|
197
|
+
email_intro: 'ผลลัพธ์ "%{resource_title}" ซึ่งรวมถึงข้อเสนอ "%{proposal_title}" ขณะนี้เสร็จสมบูรณ์แล้ว %{progress}% คุณสามารถดูได้จากหน้านี้:'
|
198
|
+
email_outro: คุณได้รับการแจ้งเตือนนี้เนื่องจากคุณกำลังติดตาม "%{proposal_title}" และข้อเสนอนี้รวมอยู่ในผลลัพธ์ "%{resource_title}" คุณสามารถหยุดรับการแจ้งเตือนได้ตามลิงก์ก่อนหน้า
|
199
|
+
email_subject: การอัปเดตความคืบหน้าของ %{resource_title}
|
200
|
+
notification_title: ผลลัพธ์ <a href="%{resource_path}">%{resource_title}</a> ซึ่งรวมถึงข้อเสนอ <a href="%{proposal_path}">%{proposal_title}</a> อยู่ในขณะนี้ %{ ความคืบหน้า}% เสร็จสมบูรณ์
|
201
|
+
metrics:
|
202
|
+
results:
|
203
|
+
description: จำนวนผลลัพธ์ที่สร้างขึ้น
|
204
|
+
object: ผลลัพธ์
|
205
|
+
title: ผลลัพธ์
|
206
|
+
participatory_spaces:
|
207
|
+
highlighted_results:
|
208
|
+
see_all: ดูผลทั้งหมด
|
209
|
+
resource_links:
|
210
|
+
included_projects:
|
211
|
+
result_project: โครงการที่รวมอยู่ในผลลัพธ์นี้
|
212
|
+
included_proposals:
|
213
|
+
result_proposal: โครงการที่รวมอยู่ในผลลัพธ์นี้
|
214
|
+
statistics:
|
215
|
+
results_count: ผลลัพธ์
|
metadata
CHANGED
@@ -1,16 +1,16 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: decidim-accountability
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.28.
|
4
|
+
version: 0.28.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Josep Jaume Rey Peroy
|
8
8
|
- Marc Riera Casals
|
9
9
|
- Oriol Gual Oliva
|
10
|
-
autorequire:
|
10
|
+
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2024-
|
13
|
+
date: 2024-09-10 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: decidim-comments
|
@@ -18,126 +18,126 @@ dependencies:
|
|
18
18
|
requirements:
|
19
19
|
- - '='
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 0.28.
|
21
|
+
version: 0.28.3
|
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.28.
|
28
|
+
version: 0.28.3
|
29
29
|
- !ruby/object:Gem::Dependency
|
30
30
|
name: decidim-core
|
31
31
|
requirement: !ruby/object:Gem::Requirement
|
32
32
|
requirements:
|
33
33
|
- - '='
|
34
34
|
- !ruby/object:Gem::Version
|
35
|
-
version: 0.28.
|
35
|
+
version: 0.28.3
|
36
36
|
type: :runtime
|
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.28.
|
42
|
+
version: 0.28.3
|
43
43
|
- !ruby/object:Gem::Dependency
|
44
44
|
name: decidim-admin
|
45
45
|
requirement: !ruby/object:Gem::Requirement
|
46
46
|
requirements:
|
47
47
|
- - '='
|
48
48
|
- !ruby/object:Gem::Version
|
49
|
-
version: 0.28.
|
49
|
+
version: 0.28.3
|
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.28.
|
56
|
+
version: 0.28.3
|
57
57
|
- !ruby/object:Gem::Dependency
|
58
58
|
name: decidim-assemblies
|
59
59
|
requirement: !ruby/object:Gem::Requirement
|
60
60
|
requirements:
|
61
61
|
- - '='
|
62
62
|
- !ruby/object:Gem::Version
|
63
|
-
version: 0.28.
|
63
|
+
version: 0.28.3
|
64
64
|
type: :development
|
65
65
|
prerelease: false
|
66
66
|
version_requirements: !ruby/object:Gem::Requirement
|
67
67
|
requirements:
|
68
68
|
- - '='
|
69
69
|
- !ruby/object:Gem::Version
|
70
|
-
version: 0.28.
|
70
|
+
version: 0.28.3
|
71
71
|
- !ruby/object:Gem::Dependency
|
72
72
|
name: decidim-comments
|
73
73
|
requirement: !ruby/object:Gem::Requirement
|
74
74
|
requirements:
|
75
75
|
- - '='
|
76
76
|
- !ruby/object:Gem::Version
|
77
|
-
version: 0.28.
|
77
|
+
version: 0.28.3
|
78
78
|
type: :development
|
79
79
|
prerelease: false
|
80
80
|
version_requirements: !ruby/object:Gem::Requirement
|
81
81
|
requirements:
|
82
82
|
- - '='
|
83
83
|
- !ruby/object:Gem::Version
|
84
|
-
version: 0.28.
|
84
|
+
version: 0.28.3
|
85
85
|
- !ruby/object:Gem::Dependency
|
86
86
|
name: decidim-dev
|
87
87
|
requirement: !ruby/object:Gem::Requirement
|
88
88
|
requirements:
|
89
89
|
- - '='
|
90
90
|
- !ruby/object:Gem::Version
|
91
|
-
version: 0.28.
|
91
|
+
version: 0.28.3
|
92
92
|
type: :development
|
93
93
|
prerelease: false
|
94
94
|
version_requirements: !ruby/object:Gem::Requirement
|
95
95
|
requirements:
|
96
96
|
- - '='
|
97
97
|
- !ruby/object:Gem::Version
|
98
|
-
version: 0.28.
|
98
|
+
version: 0.28.3
|
99
99
|
- !ruby/object:Gem::Dependency
|
100
100
|
name: decidim-meetings
|
101
101
|
requirement: !ruby/object:Gem::Requirement
|
102
102
|
requirements:
|
103
103
|
- - '='
|
104
104
|
- !ruby/object:Gem::Version
|
105
|
-
version: 0.28.
|
105
|
+
version: 0.28.3
|
106
106
|
type: :development
|
107
107
|
prerelease: false
|
108
108
|
version_requirements: !ruby/object:Gem::Requirement
|
109
109
|
requirements:
|
110
110
|
- - '='
|
111
111
|
- !ruby/object:Gem::Version
|
112
|
-
version: 0.28.
|
112
|
+
version: 0.28.3
|
113
113
|
- !ruby/object:Gem::Dependency
|
114
114
|
name: decidim-participatory_processes
|
115
115
|
requirement: !ruby/object:Gem::Requirement
|
116
116
|
requirements:
|
117
117
|
- - '='
|
118
118
|
- !ruby/object:Gem::Version
|
119
|
-
version: 0.28.
|
119
|
+
version: 0.28.3
|
120
120
|
type: :development
|
121
121
|
prerelease: false
|
122
122
|
version_requirements: !ruby/object:Gem::Requirement
|
123
123
|
requirements:
|
124
124
|
- - '='
|
125
125
|
- !ruby/object:Gem::Version
|
126
|
-
version: 0.28.
|
126
|
+
version: 0.28.3
|
127
127
|
- !ruby/object:Gem::Dependency
|
128
128
|
name: decidim-proposals
|
129
129
|
requirement: !ruby/object:Gem::Requirement
|
130
130
|
requirements:
|
131
131
|
- - '='
|
132
132
|
- !ruby/object:Gem::Version
|
133
|
-
version: 0.28.
|
133
|
+
version: 0.28.3
|
134
134
|
type: :development
|
135
135
|
prerelease: false
|
136
136
|
version_requirements: !ruby/object:Gem::Requirement
|
137
137
|
requirements:
|
138
138
|
- - '='
|
139
139
|
- !ruby/object:Gem::Version
|
140
|
-
version: 0.28.
|
140
|
+
version: 0.28.3
|
141
141
|
description: An accountability component for decidim's participatory spaces.
|
142
142
|
email:
|
143
143
|
- josepjaume@gmail.com
|
@@ -385,7 +385,7 @@ metadata:
|
|
385
385
|
funding_uri: https://opencollective.com/decidim
|
386
386
|
homepage_uri: https://decidim.org
|
387
387
|
source_code_uri: https://github.com/decidim/decidim
|
388
|
-
post_install_message:
|
388
|
+
post_install_message:
|
389
389
|
rdoc_options: []
|
390
390
|
require_paths:
|
391
391
|
- lib
|
@@ -400,8 +400,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
400
400
|
- !ruby/object:Gem::Version
|
401
401
|
version: '0'
|
402
402
|
requirements: []
|
403
|
-
rubygems_version: 3.
|
404
|
-
signing_key:
|
403
|
+
rubygems_version: 3.3.7
|
404
|
+
signing_key:
|
405
405
|
specification_version: 4
|
406
406
|
summary: Decidim accountability module
|
407
407
|
test_files: []
|