decidim-accountability 0.28.1 → 0.28.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: 0f038d00f69235d4f8043b7d6d8ba45845dea666b9212c9609d5cfc17c7337d7
4
- data.tar.gz: fa99865a267c8fdce223c1bbb86234548c3189ad45cdf6624db8534f25ca1a2e
3
+ metadata.gz: ce10e6fa54bd6b83357be2d515ee441397757309e9d8a2e9ab038c7315488650
4
+ data.tar.gz: a16768d26ef1444000da351bd940506b99d540ac3e331cb4f25587e0f38932ee
5
5
  SHA512:
6
- metadata.gz: fcf45e9a7cb9e20827540563af00ec4e492618ff080dae0a074f27c664dae3dabb01b53a4d9ac7d14b54c0a3f99af0d627048a7cad3082b22be13de4dcf9be13
7
- data.tar.gz: 30a4dadb2ec7c6e839ab1e81f26694564fad720a983f835e533c92e98823b1b6109e14899bf0991cfe58d62e71fb2f36083dfa655eb4905fe58201c224162396
6
+ metadata.gz: 5c625ff0064c939e7f1b794467958232964b3f841319d0a9c1ef9c39941c73ffd2c66dc382aa05fc3ea9a546b0bc45a888f955bde9947b3e00a03901d505e26d
7
+ data.tar.gz: 9dc2c614406d132403a80047cb87f98d4078097d575aae73b8798a78e95e19b96451e4c8337a755e830b1a78e7f46951ff6b0be46b9b66abfa3997f07fc23559
@@ -6,14 +6,14 @@
6
6
  </div>
7
7
  <div class="accountability__project-timeline-entry-attributes">
8
8
  <h3>
9
- <%= translated_attribute timeline_entry.title %>
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
- <%= translated_attribute(timeline_entry.description).html_safe %>
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: children.any?,
41
- id: "list",
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 %>
@@ -11,6 +11,7 @@ module Decidim
11
11
  include Decidim::SanitizeHelper
12
12
  include Decidim::TranslationsHelper
13
13
  include ActiveSupport::NumberHelper
14
+ include ActionView::Helpers::NumberHelper
14
15
 
15
16
  delegate :current_component, :component_settings, to: :controller
16
17
 
@@ -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
@@ -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" data-disabled-md="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 %>
@@ -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:
@@ -13,6 +13,7 @@ ca:
13
13
  project_ids: Projectes inclosos
14
14
  proposals: Propostes incloses
15
15
  start_date: Data d'inici
16
+ subresults: Subresultats
16
17
  title: Títol
17
18
  updated_at: Actualitzat el
18
19
  status:
@@ -13,6 +13,7 @@ de:
13
13
  project_ids: Enthaltene Projekte
14
14
  proposals: Enthaltene Vorschläge
15
15
  start_date: Startdatum
16
+ subresults: Teilergebnisse
16
17
  title: Titel
17
18
  updated_at: Aktualisiert am
18
19
  status:
@@ -13,6 +13,7 @@ en:
13
13
  project_ids: Included projects
14
14
  proposals: Included proposals
15
15
  start_date: Start date
16
+ subresults: Subresults
16
17
  title: Title
17
18
  updated_at: Updated at
18
19
  status:
@@ -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: Añadir resultado
46
- new_status: Añadir estado
47
- new_timeline_entry: Añadir entrada de la cronología
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 ningún resultado con este criterio.
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
@@ -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: Añadir resultado
46
- new_status: Añadir estado
47
- new_timeline_entry: Añadir entrada de la cronología
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 ningún resultado con este criterio.
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
@@ -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: Añadir resultado
46
- new_status: Añadir estado
47
- new_timeline_entry: Añadir entrada de la cronología
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 un proyecto para ser importado. Se notificará por correo electrónico, cuando se complete la importación.
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 actualixadada correctamente.
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 ningún resultado con este criterio.
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
@@ -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: Arazo bat egon da egoera hau eguneratzean.
142
- success: Egoera zuzen eguneratua.
142
+ invalid: Arazoren bat gertatu da egoera hau sortzean.
143
+ success: Egoera ondo eguneratu da.
143
144
  timeline_entries:
144
145
  create:
145
- invalid: Arazo bat egon da sarrera hau sortzean.
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.
@@ -13,6 +13,7 @@ fi-pl:
13
13
  project_ids: Liitetyt suunnitelmat
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:
@@ -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:
@@ -13,6 +13,7 @@ ja:
13
13
  project_ids: 含まれるプロジェクト
14
14
  proposals: 含まれる提案
15
15
  start_date: 開始日
16
+ subresults: 結果(サブ)
16
17
  title: タイトル
17
18
  updated_at: 更新日時
18
19
  status:
@@ -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:
@@ -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: ผลลัพธ์
@@ -4,7 +4,7 @@ module Decidim
4
4
  # This holds decidim-accountability version.
5
5
  module Accountability
6
6
  def self.version
7
- "0.28.1"
7
+ "0.28.2"
8
8
  end
9
9
  end
10
10
  end
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.1
4
+ version: 0.28.2
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-04-30 00:00:00.000000000 Z
13
+ date: 2024-07-16 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.1
21
+ version: 0.28.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.28.1
28
+ version: 0.28.2
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.1
35
+ version: 0.28.2
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.1
42
+ version: 0.28.2
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.1
49
+ version: 0.28.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.28.1
56
+ version: 0.28.2
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.1
63
+ version: 0.28.2
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.1
70
+ version: 0.28.2
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.1
77
+ version: 0.28.2
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.1
84
+ version: 0.28.2
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.1
91
+ version: 0.28.2
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.1
98
+ version: 0.28.2
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.1
105
+ version: 0.28.2
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.1
112
+ version: 0.28.2
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.1
119
+ version: 0.28.2
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.1
126
+ version: 0.28.2
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.1
133
+ version: 0.28.2
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.1
140
+ version: 0.28.2
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.5.9
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: []