decidim-participatory_processes 0.26.5 → 0.26.7

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: cb60e8c997fe24c9d28ebbc3e083111ff4aedea388f4c9a4f1365bf4c596be12
4
- data.tar.gz: b17052e379cef23b7d246b6e554cf38266c2e5b9ca5e5969eb3796a65c9b9a97
3
+ metadata.gz: 20ac7a0180cb4996ba6b4c1c2757cf24654602e6cc46570b5c86bbc03a34cb90
4
+ data.tar.gz: 2c9c0bc5ee106f0327c5c888c112dee7fc9e4590973456e6b4a59709b9aa99e8
5
5
  SHA512:
6
- metadata.gz: 494e51598d701452bc27050f270dbb5b629c46f507bd8e5c731d30206bbc18a9887f736db65e95745d88dce65d8fa247497c059e86a69aafcd0512ba027493ff
7
- data.tar.gz: a41dd0af155174f2d6a143ff0c9a665c4fa469b0bf18ea33720678a1ca00625c9c7bab79120dd1341d0d6deab5440a6e9a4993e5f34919786998293f521e5ef0
6
+ metadata.gz: f54689b8061edd1e819c7bfb3a3484078380268469fc38d6180c48225d2b153a4488c8950e7c40615fa2811ad4d37993e7b86478138cd326b222cc19341f8580
7
+ data.tar.gz: 472a7d3ed9430babfa8d436290117fb9aebe98066ba6c15c6c36d423b9b5f39885a698cde49b1d3fa9999e9aba6e80fd28e1c546fe0627645464e5acc46cfca1
@@ -2,7 +2,7 @@
2
2
  <h2 class="heading2"><%= translated_attribute(participatory_process_group.title) %></h2>
3
3
  <div class="row">
4
4
  <div class="columns medium-9">
5
- <%= decidim_sanitize_editor translated_attribute(participatory_process_group.description) %>
5
+ <%= decidim_sanitize_editor_admin translated_attribute(participatory_process_group.description) %>
6
6
  <div class="row">
7
7
  <div class="column medium-6 text-muted">
8
8
  <%= icon "grid-three-up", role: "img", "aria-hidden": true, class: "mr-xs" %>
@@ -19,7 +19,13 @@ module Decidim
19
19
  end
20
20
 
21
21
  def current_filter
22
- get_filter(:date, model[:default_filter])
22
+ date_filter = get_filter(:date)
23
+ return model[:default_filter] unless date_filter
24
+ return date_filter if ALL_FILTERS.include?(date_filter)
25
+
26
+ # Default to "all" in case the filter is unknown, as the search also
27
+ # defaults to this.
28
+ "all"
23
29
  end
24
30
 
25
31
  def get_filter(filter_name, default = nil)
@@ -53,6 +53,11 @@ module Decidim
53
53
  end
54
54
 
55
55
  def import_process_group(attributes)
56
+ title = compact_translation(attributes["title"] || attributes["name"])
57
+ description = compact_translation(attributes["description"])
58
+
59
+ return if title.blank? && description.blank?
60
+
56
61
  Decidim.traceability.perform_action!("create", ParticipatoryProcessGroup, @user) do
57
62
  group = ParticipatoryProcessGroup.find_or_initialize_by(
58
63
  title: attributes["title"] || attributes["name"],
@@ -152,6 +157,11 @@ module Decidim
152
157
 
153
158
  private
154
159
 
160
+ def compact_translation(translation)
161
+ translation["machine_translations"] = translation["machine_translations"].reject { |_k, v| v.blank? } if translation["machine_translations"].present?
162
+ translation.reject { |_k, v| v.blank? }
163
+ end
164
+
155
165
  def create_attachment_collection(attributes)
156
166
  return unless attributes.compact.any?
157
167
 
@@ -10,7 +10,7 @@
10
10
  <h3 class="timeline__title heading4"><%= translated_attribute(participatory_process_step.title) %></h3>
11
11
  </div>
12
12
  <div class="timeline__content">
13
- <%= translated_attribute(participatory_process_step.description).html_safe %>
13
+ <%= decidim_sanitize_editor_admin translated_attribute(participatory_process_step.description) %>
14
14
  </div>
15
15
  </div>
16
16
  </li>
@@ -8,7 +8,7 @@
8
8
  </div>
9
9
 
10
10
  <div class="row column">
11
- <%= form.translated :editor, :description, toolbar: :full, lines: 25 %>
11
+ <%= form.translated :editor, :description %>
12
12
  </div>
13
13
 
14
14
  <div class="row column">
@@ -9,7 +9,7 @@
9
9
  </div>
10
10
 
11
11
  <div class="row column">
12
- <%= form.translated :editor, :description, toolbar: :full, lines: 25 %>
12
+ <%= form.translated :editor, :description %>
13
13
  </div>
14
14
 
15
15
  <div class="row">
@@ -34,7 +34,7 @@
34
34
  </div>
35
35
 
36
36
  <div class="row column">
37
- <%= form.translated :editor, :description, toolbar: :full, lines: 25 %>
37
+ <%= form.translated :editor, :description %>
38
38
  </div>
39
39
 
40
40
  <div class="row column">
@@ -32,9 +32,9 @@
32
32
  <%= render partial: "participatory_process_group" %>
33
33
  <% end %>
34
34
  <div class="lead">
35
- <%= decidim_sanitize_editor translated_attribute(current_participatory_space.short_description) %>
35
+ <%= decidim_sanitize_editor_admin translated_attribute(current_participatory_space.short_description) %>
36
36
  </div>
37
- <%= decidim_sanitize_editor translated_attribute(current_participatory_space.description) %>
37
+ <%= decidim_sanitize_editor_admin translated_attribute(current_participatory_space.description) %>
38
38
  </div>
39
39
  <%= attachments_for current_participatory_space %>
40
40
  <%= render_hook(:participatory_space_highlighted_elements) %>
@@ -285,6 +285,8 @@ ar:
285
285
  title: العمليات التشاركية
286
286
  participatory_process_groups:
287
287
  content_blocks:
288
+ metadata:
289
+ name: البيانات الوصفية
288
290
  stats:
289
291
  name: نشاط
290
292
  show:
@@ -0,0 +1 @@
1
+ fa:
@@ -151,7 +151,7 @@ fi:
151
151
  role: Rooli
152
152
  name: Osallistumisprosessin käyttäjä
153
153
  roles:
154
- admin: Hallinnointikäyttäjä
154
+ admin: Hallintakäyttäjä
155
155
  collaborator: Osallistuva käyttäjä
156
156
  moderator: Moderoija
157
157
  valuator: Arvon arvioija
@@ -0,0 +1 @@
1
+ kaa:
@@ -11,15 +11,22 @@ ro:
11
11
  decidim_area_id: Zonă
12
12
  description: Descriere
13
13
  developer_group: Grup promotor
14
+ document: Document
14
15
  domain: Domeniu
15
16
  end_date: Data de încheiere
16
17
  hashtag: Hashtag
17
18
  hero_image: Imagine pentru pagina principală
19
+ import_attachments: Importă atașamente
20
+ import_categories: Importă categorii
21
+ import_components: Importă componente
22
+ import_steps: Importă etapele
18
23
  local_area: Zona organizației
19
24
  meta_scope: Metadate privind domeniul de interes
20
25
  participatory_process_group_id: Grupul proceselor
26
+ participatory_process_type_id: Tip proces
21
27
  participatory_scope: Ce se decide
22
28
  participatory_structure: Cum se decide
29
+ private_space: Proces privat
23
30
  promoted: Promovat
24
31
  published_at: Publicat la
25
32
  related_process_ids: Procese asociate
@@ -443,6 +450,8 @@ ro:
443
450
  see: Vezi
444
451
  index:
445
452
  loading: Se încarcă rezultatele...
453
+ show:
454
+ title: Despre acest proces
446
455
  show:
447
456
  area: Zonă
448
457
  belongs_to_group: Acest proces aparține de
@@ -1 +1,488 @@
1
1
  zh-TW:
2
+ activemodel:
3
+ attributes:
4
+ participatory_process:
5
+ announcement: 公告
6
+ area_id: 區域
7
+ banner_image: 橫幅圖片
8
+ copy_categories: 複製類別
9
+ copy_components: 複製組件
10
+ copy_steps: 複製步驟
11
+ decidim_area_id: 區域
12
+ description: 說明
13
+ developer_group: 促銷團隊
14
+ document: 文件
15
+ domain: 網域
16
+ end_date: 結束日期
17
+ hashtag: 主題標籤
18
+ hero_image: 首頁圖片
19
+ import_attachments: 匯入附件
20
+ import_categories: 匯入類別
21
+ import_components: 匯入組件
22
+ import_steps: 匯入步驟
23
+ local_area: 組織區域
24
+ meta_scope: 元數據範圍
25
+ participatory_process_group_id: 程序群組
26
+ participatory_process_type_id: 處理類型
27
+ participatory_scope: 決定了什麼
28
+ participatory_structure: 如何決定
29
+ private_space: 私有程序
30
+ promoted: 推廣
31
+ published_at: 發佈於
32
+ related_process_ids: 相關程序
33
+ scope_id: 範圍
34
+ scope_type_max_depth_id: 範圍篩選深度
35
+ scopes_enabled: 啟用範圍
36
+ short_description: 簡短說明
37
+ show_metrics: 顯示度量
38
+ show_statistics: 顯示統計資料
39
+ slug: URL網址
40
+ start_date: 開始日期
41
+ subtitle: 子標題
42
+ target: 誰參加
43
+ title: 標題
44
+ weight: 排序位置
45
+ participatory_process_group:
46
+ description: 說明
47
+ developer_group: 促銷團隊
48
+ group_url: 網站
49
+ hashtag: 主題標籤
50
+ hero_image: 圖片
51
+ local_area: 組織區域
52
+ meta_scope: 元數據範圍
53
+ participatory_process_ids: 相關程序
54
+ participatory_scope: 決定了什麼
55
+ participatory_structure: 如何決定
56
+ target: 誰參加
57
+ title: 標題
58
+ participatory_process_step:
59
+ cta_path: 呼籲操作路徑
60
+ cta_text: 呼籲操作文字
61
+ description: 說明
62
+ end_date: 結束日期
63
+ short_description: 簡短說明
64
+ start_date: 開始日期
65
+ title: 標題
66
+ participatory_process_user_role:
67
+ email: 電子郵件
68
+ name: 名稱
69
+ role: 角色
70
+ errors:
71
+ models:
72
+ participatory_process:
73
+ attributes:
74
+ document:
75
+ invalid_document_type: '文件類型無效。接受的格式為: %{valid_mime_types}'
76
+ models:
77
+ decidim/participatory_process_step_activated_event: 啟用階段
78
+ decidim/participatory_process_step_changed_event: 階段已更改
79
+ activerecord:
80
+ models:
81
+ decidim/participatory_process:
82
+ other: "One\n參與式流程\n\nOther\n參與式流程"
83
+ decidim/participatory_process_group:
84
+ other: "One\n參與式流程群組\n\nOther\n參與式流程群組"
85
+ decidim/participatory_process_step:
86
+ other: "One\n階段\n\nOther\n階段"
87
+ decidim:
88
+ admin:
89
+ actions:
90
+ activate: 啟動
91
+ configure: 配置
92
+ confirm_destroy: 確認刪除
93
+ destroy: 刪除
94
+ duplicate: 重複
95
+ edit: 編輯
96
+ filter:
97
+ all_processes: 顯示所有流程
98
+ process_groups: 程序群組
99
+ import_process: 匯入
100
+ new_process: 新的程序
101
+ new_process_group: 新的程序群組
102
+ new_process_step: 新階段
103
+ new_process_user_role: 新程序管理員
104
+ preview: 預覽
105
+ publish: 發布
106
+ resend_invitation: 重新發送邀請
107
+ unpublish: 取消發佈
108
+ menu:
109
+ participatory_process_groups: 程序群組
110
+ participatory_process_groups_submenu:
111
+ info: 資訊
112
+ landing_page: 登陸頁面
113
+ participatory_processes: 程序
114
+ participatory_processes_submenu:
115
+ attachment_collections: 資料夾
116
+ attachment_files: 檔案
117
+ attachments: 附件
118
+ categories: 類別
119
+ components: 组件
120
+ info: 資訊
121
+ moderations: 版主
122
+ private_users: 私人參與者
123
+ process_admins: 程序管理員
124
+ steps: 分類
125
+ models:
126
+ participatory_process:
127
+ fields:
128
+ created_at: 建立於
129
+ private: 隱私模式
130
+ promoted: 重點顯示
131
+ published: 已發佈
132
+ title: 標題
133
+ name: 參與程序
134
+ participatory_process_group:
135
+ fields:
136
+ title: 標題
137
+ name: 程序群組
138
+ participatory_process_step:
139
+ fields:
140
+ end_date: 結束日期
141
+ start_date: 開始日期
142
+ title: 標題
143
+ name: 參與式過程階段
144
+ participatory_process_user_role:
145
+ fields:
146
+ email: 電子郵件
147
+ name: 名稱
148
+ role: 角色
149
+ name: 參與程序管理員
150
+ roles:
151
+ admin: 管理員
152
+ collaborator: 合作者
153
+ moderator: 版主
154
+ valuator: 評估者
155
+ user:
156
+ fields:
157
+ invitation_accepted_at: 邀請已接受時間
158
+ invitation_sent_at: 邀請已發送時間
159
+ participatory_process_copies:
160
+ new:
161
+ copy: 複製
162
+ select: 請選擇您想要複製的資料
163
+ title: 重複的參與性流程
164
+ participatory_process_group_landing_page:
165
+ edit:
166
+ active_content_blocks: 啟用的內容區塊
167
+ inactive_content_blocks: 停用的內容區塊
168
+ participatory_process_group_landing_page_content_blocks:
169
+ edit:
170
+ update: 更新
171
+ participatory_process_groups:
172
+ destroy:
173
+ error: 刪除參與性流程群組時發生錯誤。
174
+ success: 參與式流程組成功刪除。
175
+ edit:
176
+ title: 編輯程序群組
177
+ update: 更新
178
+ new:
179
+ create: 建立
180
+ title: 新的程序群組
181
+ update:
182
+ error: 更新參與程序群組時出現問題。
183
+ success: 參與程序群組已成功更新。
184
+ participatory_process_imports:
185
+ create:
186
+ error: 匯入參與性流程時發生問題。
187
+ success: 參與性流程已成功匯入。
188
+ new:
189
+ import: 匯入
190
+ select: 請選擇您想匯入的資料
191
+ title: 匯入參與流程
192
+ participatory_process_publications:
193
+ create:
194
+ error: 發佈參與流程時出現問題。
195
+ success: 成功發佈參與流程。
196
+ destroy:
197
+ error: 解除發布參與程序時發生問題。
198
+ success: 成功解除發布參與程序。
199
+ participatory_process_step_activations:
200
+ create:
201
+ error: 啟動參與過程階段時發生問題。
202
+ success: 成功啟用參與程序階段。
203
+ participatory_process_steps:
204
+ create:
205
+ error: 創建新參與程序階段時出現問題。
206
+ success: 成功創建參與程序階段。
207
+ default_title: 介紹
208
+ destroy:
209
+ error:
210
+ active_step: 無法刪除進行中的階段。
211
+ last_step: 無法刪除流程的最後一階段。
212
+ success: 參與程序階段成功刪除。
213
+ edit:
214
+ title: 編輯參與式過程階段
215
+ update: 更新
216
+ index:
217
+ steps_title: 階段
218
+ new:
219
+ create: 建立
220
+ title: 新的參與式過程階段
221
+ ordering:
222
+ error: 重新排列這個參與程序階段時出現問題。
223
+ update:
224
+ error: 更新參與程序階段時出現問題。
225
+ success: 參與式階段成功更新。
226
+ participatory_process_user_roles:
227
+ create:
228
+ error: 新增參與者至此參與式過程時發生問題。
229
+ success: 管理者已成功加入此參與式過程。
230
+ destroy:
231
+ success: 管理員已成功從此參與過程中移除。
232
+ edit:
233
+ title: 更新參與程序管理員
234
+ update: 更新
235
+ index:
236
+ process_admins_title: 參與程序管理員
237
+ new:
238
+ create: 建立
239
+ title: 新的參與程序管理員
240
+ update:
241
+ error: 更新參與程序管理員時出現問題。
242
+ success: 管理員已成功更新此參與過程。
243
+ participatory_processes:
244
+ create:
245
+ error: 創建新參與程序時出現問題。
246
+ success: 參與式流程已成功建立。現在請配置其各階段。
247
+ edit:
248
+ update: 更新
249
+ index:
250
+ not_published: 未發佈
251
+ private: 隱私模式
252
+ public: 公開
253
+ published: 已發佈
254
+ new:
255
+ create: 建立
256
+ title: 新的參與程序
257
+ update:
258
+ error: 更新此參與程序時出現問題。
259
+ success: 參與程序已成功更新。
260
+ participatory_processes_copies:
261
+ create:
262
+ error: 複製參與流程時發生問題。
263
+ success: 成功複製參與過程。
264
+ participatory_processes_group:
265
+ create:
266
+ error: 創建新參與程序群組時出現問題。
267
+ success: 成功創建參與過程群組。
268
+ titles:
269
+ participatory_process_groups: 參與式流程群組
270
+ participatory_processes: 參與程序
271
+ users:
272
+ resend_invitation:
273
+ error: 重新發送邀請時發生問題。
274
+ success: 邀請成功重新發送。
275
+ admin_log:
276
+ participatory_process:
277
+ create: "%{user_name} 建立了 %{resource_name} 參與式流程"
278
+ publish: "%{user_name} 發佈了 %{resource_name} 參與式流程"
279
+ unpublish: "%{user_name} 取消發佈了 %{resource_name} 參與式流程"
280
+ update: "%{user_name} 更新了%{resource_name} 的參與性流程"
281
+ participatory_process_group:
282
+ create: "%{user_name} 創建了%{resource_name} 的參與性流程群組"
283
+ update: "%{user_name} 更新了%{resource_name} 的參與性流程群組"
284
+ participatory_process_step:
285
+ activate: "%{user_name} 在 %{space_name} 參與式流程中啟用了 %{resource_name} 階段"
286
+ create: "%{user_name} 在 %{space_name} 參與式流程中創建了 %{resource_name} 階段"
287
+ delete: "%{user_name} 刪除了 %{space_name} 參與式流程中的 %{resource_name} 階段"
288
+ update: "%{user_name} 更新了 %{space_name} 參與式流程中的 %{resource_name} 階段"
289
+ participatory_process_user_role:
290
+ create: "%{user_name} 邀請了參與者 %{resource_name} 加入 %{space_name} 參與式流程"
291
+ delete: "%{user_name} 將參與者 %{resource_name} 從 %{space_name} 參與式流程中移除"
292
+ update: "使用者 %{user_name} 變更了 %{space_name} 參與流程中參與者 %{resource_name} 的角色"
293
+ events:
294
+ participatory_process:
295
+ role_assigned:
296
+ email_intro: 您已被指派為%{resource_title} 參與流程的 %{role}。
297
+ email_outro: 您收到此通知,因為您是 "%{resource_title}" 參與流程的 %{role}。
298
+ email_subject: 您已被分配為“%{resource_title}”的 %{role}。
299
+ notification_title: 您已被分配為參與式流程<a href="%{resource_url}">%{resource_title}</a>的%{role}。
300
+ step_activated:
301
+ email_intro: '現在,%{participatory_space_title} 的%{resource_title} 階段已啟動。您可以從此頁面查看:'
302
+ email_outro: 你收到此通知是因為你正在追蹤 %{participatory_space_title}。你可以透過前面的連結停止接收通知。
303
+ email_subject: '%{participatory_space_title} 的更新'
304
+ notification_title: 在 <a href="%{resource_path}">%{participatory_space_title}</a>,%{resource_title} 階段現在已啟動。
305
+ step_changed:
306
+ email_intro: '在 %{participatory_space_title},%{resource_title} 階段的日期已更新。您可以在此頁面上查看:'
307
+ email_outro: 你收到此通知是因為你正在追蹤 %{participatory_space_title}。你可以透過前面的連結停止接收通知。
308
+ email_subject: '%{participatory_space_title} 的更新'
309
+ notification_title: 在 <a href="%{participatory_space_url}">%{participatory_space_title}</a> 的 <a href="%{resource_path}">%{resource_title}</a> 階段日期已更新。
310
+ help:
311
+ participatory_spaces:
312
+ participatory_processes:
313
+ contextual: "<p>一個<strong>參與式過程</strong>是一系列參與性活動的序列(例如,先填寫調查問卷,然後提出建議,在面對面或虛擬會議中進行討論,最終進行優先排序),旨在定義和就特定主題做出決定。</p> <p>參與式過程的例子包括:選舉委員會成員的過程(候選人首先進行介紹,然後進行辯論,最後選擇一個候選人),參與式預算(提出建議,經濟評估,使用可用的資金進行投票),戰略規劃過程,共同起草法規或標準,城市空間設計或公共政策計畫的製定。</p>\n"
314
+ page: "<p>一個<strong>參與性流程是一系列的參與性活動,(例如先填寫調查,然後提出建議,在面對面或虛擬會議中討論這些建議,最後進行優先排序),以便針對特定主題進行定義和決策。</p> <p>參與性流程的例子包括:選舉委員會成員的程序(首先提出候選人,然後進行辯論,最後選出候選人),參與式預算(提出建議,經濟評估,用可用的資金進行投票),戰略規劃流程,協作制定規則或標準,城市空間的設計或公共政策計劃的制定。</p>\n"
315
+ title: 什麼是參與式過程?
316
+ menu:
317
+ processes: 程序
318
+ metrics:
319
+ participatory_processes:
320
+ description: 此組織中的參與式過程數量
321
+ object: 參與程序
322
+ title: 參與程序
323
+ participatory_process:
324
+ show:
325
+ related_assemblies: 相關大會
326
+ participatory_process_groups:
327
+ content_blocks:
328
+ html_1:
329
+ name: 第一個 HTML 區塊
330
+ html_2:
331
+ name: 第二個 HTML 區塊
332
+ html_3:
333
+ name: 第三個 HTML 區塊
334
+ metadata:
335
+ developer_group: 推廣者:
336
+ name: Metadata
337
+ participatory_scope: 決定了什麼
338
+ participatory_structure: 如何決定
339
+ target: 誰參加
340
+ participatory_processes:
341
+ name: 參與程序
342
+ stats:
343
+ name: 統計資料
344
+ title:
345
+ meta_scope: 範圍
346
+ name: 標題、描述和標籤
347
+ participatory_processes:
348
+ other: "One\n1 個程序\n\nOther\n%{count} 個程序"
349
+ show:
350
+ title: 參與程序群組
351
+ participatory_process_steps:
352
+ index:
353
+ process_steps: 程序階段
354
+ title: 參與式過程階段
355
+ participatory_processes:
356
+ admin:
357
+ content_blocks:
358
+ highlighted_processes:
359
+ max_results: 顯示的最大元素數量
360
+ new_import:
361
+ accepted_types:
362
+ json: JSON
363
+ participatory_process_copies:
364
+ form:
365
+ slug_help: 'URL slugs用於生成指向此程序的URL。僅接受字母、數字和破折號,必須以字母開頭。例如:%{url}'
366
+ participatory_process_groups:
367
+ form:
368
+ metadata: 元數據
369
+ title: 基本資訊
370
+ visibility: 可見度
371
+ participatory_process_imports:
372
+ form:
373
+ document_legend: 添加文檔
374
+ slug_help: 'URL slugs用於生成指向此程序的URL。僅接受字母、數字和破折號,必須以字母開頭。例如:%{url}'
375
+ participatory_process_steps:
376
+ form:
377
+ cta_path_help: '在這裡使用部分路徑,而不是完整的 URL。只接受字母、數字、破折號和斜線,並且必須以字母開頭。如果未設置,按鈕將不會顯示。例如:%{url}'
378
+ cta_text_help: 如果未設置,按鈕將不會顯示。
379
+ participatory_processes:
380
+ form:
381
+ announcement_help: 您在此處輸入的文字將顯示至使用者的正下方程序信息
382
+ duration: 持續時間
383
+ filters: 過濾器
384
+ images: 圖片
385
+ metadata: 元數據
386
+ other: 其他
387
+ related_processes: 相關程序
388
+ scope_type_max_depth_help: 限制範圍過濾器深度;過濾器將會從一般範圍到所選範圍層級進行顯示。
389
+ select_an_area: 選擇一個地區
390
+ select_process_group: 選擇一個程序群組
391
+ slug_help: 'URL slugs用於生成指向此程序的URL。僅接受字母、數字和破折號,必須以字母開頭。例如:%{url}'
392
+ title: 基本資訊
393
+ visbility: 可見度
394
+ content_blocks:
395
+ highlighted_processes:
396
+ name: 精選程序
397
+ index:
398
+ title: 參與程序
399
+ last_activity:
400
+ new_participatory_process: 新的參與程序
401
+ pages:
402
+ home:
403
+ highlighted_processes:
404
+ active_processes: 運行中的程序
405
+ active_step: 進行中的階段
406
+ more_information: 更多資訊
407
+ participate: 參與
408
+ participate_in: 參與程序 %{resource_name}
409
+ processes_button_title: 鏈接到顯示所有程序的程序頁面
410
+ see_all_processes: 檢視所有程序
411
+ participatory_process_steps:
412
+ index:
413
+ back_to_process: 返回程序頁
414
+ participatory_processes:
415
+ filters:
416
+ counters:
417
+ active:
418
+ other: "One\n1個進行中的流程\nOther\n%{count} 個進行中的流程"
419
+ all:
420
+ other: "One\n1 個程序\n\nOther\n%{count} 個程序"
421
+ past:
422
+ other: "One\n1 個過去的程序\nOther\n%{count} 個過去的程序"
423
+ upcoming:
424
+ other: "One\n1 個即將到來的程序\nOther\n%{count} 個即將到來的程序"
425
+ explanations:
426
+ no_active: '"沒有進行中的流程'
427
+ no_active_nor_upcoming: 沒有進行中或即將開始的流程
428
+ no_active_nor_upcoming_callout: 目前沒有進行中或即將開始的程序。以下是過去的程序清單
429
+ names:
430
+ active: 啟用中
431
+ all: 全部
432
+ past: 過去
433
+ upcoming: 即將舉行
434
+ see: 查看
435
+ index:
436
+ loading: 正在載入結果
437
+ show:
438
+ title: 關於此流程
439
+ show:
440
+ area: 區域
441
+ belongs_to_group: 此程序屬於
442
+ dates: 日期
443
+ developer_group: 促銷團隊
444
+ end_date: 結束日期
445
+ local_area: 組織區域
446
+ participatory_scope: 決定了什麼
447
+ participatory_structure: 如何決定
448
+ private_space: 這是不公開程序。
449
+ related_processes: 相關程序
450
+ scope: 範圍
451
+ start_date: 開始日期
452
+ target: 誰參加
453
+ unspecified: 未指定
454
+ statistics:
455
+ processes_count: 程序
456
+ layouts:
457
+ decidim:
458
+ participatory_process_groups:
459
+ participatory_process_group:
460
+ browse: 瀏覽
461
+ browse_resource: 瀏覽程序群組 %{resource_name}
462
+ processes_count: '程序:'
463
+ participatory_process_widgets:
464
+ show:
465
+ active_step: 進行中的階段
466
+ take_part: 參與
467
+ participatory_processes:
468
+ index:
469
+ promoted_processes: 精選程序
470
+ participatory_process:
471
+ active_step: '當前階段'
472
+ more_info: 更多資訊
473
+ more_info_about: 關於程序 %{resource_name} 的更多資訊
474
+ take_part: 參與
475
+ take_part_in: 參與程序 %{resource_name}
476
+ promoted_process:
477
+ active_step: '當前階段'
478
+ more_info: 更多資訊
479
+ more_info_about: 關於程序 %{resource_name} 的更多資訊
480
+ take_part: 參與
481
+ take_part_in: 參與程序 %{resource_name}
482
+ promoted_process_group:
483
+ more_info: 更多資訊
484
+ process_header_steps:
485
+ step: 第 %{current} 階段 / 共 %{total} 階段
486
+ view_steps: 程序階段
487
+ process_navigation:
488
+ process_menu_item: 該程序
@@ -4,7 +4,7 @@ module Decidim
4
4
  # This holds the decidim-participatory_processes version.
5
5
  module ParticipatoryProcesses
6
6
  def self.version
7
- "0.26.5"
7
+ "0.26.7"
8
8
  end
9
9
  end
10
10
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: decidim-participatory_processes
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.26.5
4
+ version: 0.26.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Josep Jaume Rey Peroy
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2023-02-13 00:00:00.000000000 Z
13
+ date: 2023-05-11 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: decidim-core
@@ -18,56 +18,56 @@ dependencies:
18
18
  requirements:
19
19
  - - '='
20
20
  - !ruby/object:Gem::Version
21
- version: 0.26.5
21
+ version: 0.26.7
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.26.5
28
+ version: 0.26.7
29
29
  - !ruby/object:Gem::Dependency
30
30
  name: decidim-admin
31
31
  requirement: !ruby/object:Gem::Requirement
32
32
  requirements:
33
33
  - - '='
34
34
  - !ruby/object:Gem::Version
35
- version: 0.26.5
35
+ version: 0.26.7
36
36
  type: :development
37
37
  prerelease: false
38
38
  version_requirements: !ruby/object:Gem::Requirement
39
39
  requirements:
40
40
  - - '='
41
41
  - !ruby/object:Gem::Version
42
- version: 0.26.5
42
+ version: 0.26.7
43
43
  - !ruby/object:Gem::Dependency
44
44
  name: decidim-dev
45
45
  requirement: !ruby/object:Gem::Requirement
46
46
  requirements:
47
47
  - - '='
48
48
  - !ruby/object:Gem::Version
49
- version: 0.26.5
49
+ version: 0.26.7
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.26.5
56
+ version: 0.26.7
57
57
  - !ruby/object:Gem::Dependency
58
58
  name: decidim-meetings
59
59
  requirement: !ruby/object:Gem::Requirement
60
60
  requirements:
61
61
  - - '='
62
62
  - !ruby/object:Gem::Version
63
- version: 0.26.5
63
+ version: 0.26.7
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.26.5
70
+ version: 0.26.7
71
71
  description: Participatory processes component for decidim.
72
72
  email:
73
73
  - josepjaume@gmail.com
@@ -302,6 +302,7 @@ files:
302
302
  - config/locales/et-EE.yml
303
303
  - config/locales/et.yml
304
304
  - config/locales/eu.yml
305
+ - config/locales/fa-IR.yml
305
306
  - config/locales/fi-pl.yml
306
307
  - config/locales/fi-plain.yml
307
308
  - config/locales/fi.yml
@@ -320,6 +321,7 @@ files:
320
321
  - config/locales/it.yml
321
322
  - config/locales/ja.yml
322
323
  - config/locales/ka-GE.yml
324
+ - config/locales/kaa.yml
323
325
  - config/locales/ko-KR.yml
324
326
  - config/locales/ko.yml
325
327
  - config/locales/lb-LU.yml