decidim-admin 0.26.8 → 0.27.0.rc1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of decidim-admin might be problematic. Click here for more details.

Files changed (283) hide show
  1. checksums.yaml +4 -4
  2. data/app/cells/decidim/admin/attachments_privacy_warning/show.erb +3 -0
  3. data/app/cells/decidim/admin/attachments_privacy_warning_cell.rb +19 -0
  4. data/app/commands/decidim/admin/block_user.rb +3 -8
  5. data/app/commands/decidim/admin/close_session_managed_user.rb +1 -1
  6. data/app/commands/decidim/admin/create_area.rb +1 -1
  7. data/app/commands/decidim/admin/create_area_type.rb +6 -3
  8. data/app/commands/decidim/admin/create_attachment.rb +14 -6
  9. data/app/commands/decidim/admin/create_attachment_collection.rb +13 -4
  10. data/app/commands/decidim/admin/create_category.rb +6 -4
  11. data/app/commands/decidim/admin/create_component.rb +1 -1
  12. data/app/commands/decidim/admin/create_import.rb +4 -5
  13. data/app/commands/decidim/admin/create_import_example.rb +1 -1
  14. data/app/commands/decidim/admin/create_newsletter.rb +1 -1
  15. data/app/commands/decidim/admin/create_participatory_space_private_user.rb +1 -1
  16. data/app/commands/decidim/admin/create_scope.rb +1 -1
  17. data/app/commands/decidim/admin/create_scope_type.rb +6 -3
  18. data/app/commands/decidim/admin/create_static_page.rb +1 -1
  19. data/app/commands/decidim/admin/create_static_page_topic.rb +1 -1
  20. data/app/commands/decidim/admin/deliver_newsletter.rb +6 -6
  21. data/app/commands/decidim/admin/destroy_area.rb +1 -1
  22. data/app/commands/decidim/admin/destroy_category.rb +6 -3
  23. data/app/commands/decidim/admin/destroy_component.rb +1 -1
  24. data/app/commands/decidim/admin/destroy_newsletter.rb +1 -1
  25. data/app/commands/decidim/admin/destroy_participatory_space_private_user.rb +1 -1
  26. data/app/commands/decidim/admin/destroy_scope.rb +1 -1
  27. data/app/commands/decidim/admin/destroy_share_token.rb +1 -1
  28. data/app/commands/decidim/admin/destroy_static_page.rb +1 -1
  29. data/app/commands/decidim/admin/destroy_static_page_topic.rb +1 -1
  30. data/app/commands/decidim/admin/hide_resource.rb +2 -2
  31. data/app/commands/decidim/admin/impersonate_user.rb +1 -1
  32. data/app/commands/decidim/admin/invite_admin.rb +1 -1
  33. data/app/commands/decidim/admin/officialize_user.rb +1 -1
  34. data/app/commands/decidim/admin/process_participatory_space_private_user_import_csv.rb +7 -3
  35. data/app/commands/decidim/admin/process_user_group_verification_csv.rb +8 -4
  36. data/app/commands/decidim/admin/promote_managed_user.rb +1 -1
  37. data/app/commands/decidim/admin/publish_component.rb +2 -2
  38. data/app/commands/decidim/admin/reject_user_group.rb +1 -1
  39. data/app/commands/decidim/admin/remove_admin.rb +1 -1
  40. data/app/commands/decidim/admin/reorder_content_blocks.rb +1 -1
  41. data/app/commands/decidim/admin/transfer_user.rb +1 -1
  42. data/app/commands/decidim/admin/unblock_user.rb +2 -2
  43. data/app/commands/decidim/admin/unhide_resource.rb +1 -1
  44. data/app/commands/decidim/admin/unofficialize_user.rb +1 -1
  45. data/app/commands/decidim/admin/unpublish_component.rb +1 -1
  46. data/app/commands/decidim/admin/unreport_resource.rb +1 -1
  47. data/app/commands/decidim/admin/unreport_user.rb +1 -1
  48. data/app/commands/decidim/admin/update_area.rb +1 -1
  49. data/app/commands/decidim/admin/update_area_type.rb +8 -3
  50. data/app/commands/decidim/admin/update_attachment.rb +4 -3
  51. data/app/commands/decidim/admin/update_attachment_collection.rb +8 -3
  52. data/app/commands/decidim/admin/update_category.rb +9 -5
  53. data/app/commands/decidim/admin/update_component.rb +8 -5
  54. data/app/commands/decidim/admin/update_component_permissions.rb +9 -6
  55. data/app/commands/decidim/admin/update_content_block.rb +1 -1
  56. data/app/commands/decidim/admin/update_external_domain_whitelist.rb +6 -3
  57. data/app/commands/decidim/admin/update_help_sections.rb +17 -3
  58. data/app/commands/decidim/admin/update_newsletter.rb +1 -1
  59. data/app/commands/decidim/admin/update_organization.rb +1 -1
  60. data/app/commands/decidim/admin/update_organization_appearance.rb +1 -1
  61. data/app/commands/decidim/admin/update_organization_tos_version.rb +1 -1
  62. data/app/commands/decidim/admin/update_resource_permissions.rb +2 -2
  63. data/app/commands/decidim/admin/update_scope.rb +1 -1
  64. data/app/commands/decidim/admin/update_scope_type.rb +8 -3
  65. data/app/commands/decidim/admin/update_static_page.rb +1 -1
  66. data/app/commands/decidim/admin/update_static_page_topic.rb +1 -1
  67. data/app/commands/decidim/admin/update_user_groups.rb +1 -1
  68. data/app/commands/decidim/admin/verify_user_group.rb +1 -1
  69. data/app/controllers/concerns/decidim/admin/filterable.rb +1 -1
  70. data/app/controllers/concerns/decidim/admin/participatory_space_export.rb +3 -1
  71. data/app/controllers/decidim/admin/admin_terms_controller.rb +1 -1
  72. data/app/controllers/decidim/admin/application_controller.rb +1 -1
  73. data/app/controllers/decidim/admin/area_types_controller.rb +6 -3
  74. data/app/controllers/decidim/admin/block_user_controller.rb +3 -3
  75. data/app/controllers/decidim/admin/categories_controller.rb +3 -3
  76. data/app/controllers/decidim/admin/component_permissions_controller.rb +1 -1
  77. data/app/controllers/decidim/admin/components/base_controller.rb +1 -0
  78. data/app/controllers/decidim/admin/components_controller.rb +1 -1
  79. data/app/controllers/decidim/admin/concerns/has_attachment_collections.rb +6 -3
  80. data/app/controllers/decidim/admin/concerns/has_attachments.rb +6 -3
  81. data/app/controllers/decidim/admin/concerns/has_private_users_csv_import.rb +7 -0
  82. data/app/controllers/decidim/admin/dashboard_controller.rb +4 -3
  83. data/app/controllers/decidim/admin/exports_controller.rb +4 -1
  84. data/app/controllers/decidim/admin/help_sections_controller.rb +1 -1
  85. data/app/controllers/decidim/admin/metrics_controller.rb +2 -1
  86. data/app/controllers/decidim/admin/moderations_controller.rb +9 -7
  87. data/app/controllers/decidim/admin/newsletter_templates_controller.rb +1 -1
  88. data/app/controllers/decidim/admin/newsletters_controller.rb +1 -1
  89. data/app/controllers/decidim/admin/organization_controller.rb +3 -4
  90. data/app/controllers/decidim/admin/organization_external_domain_whitelist_controller.rb +1 -1
  91. data/app/controllers/decidim/admin/reminders_controller.rb +61 -0
  92. data/app/controllers/decidim/admin/resource_permissions_controller.rb +3 -3
  93. data/app/controllers/decidim/admin/scope_types_controller.rb +6 -3
  94. data/app/controllers/decidim/admin/static_page_topics_controller.rb +3 -1
  95. data/app/controllers/decidim/admin/static_pages_controller.rb +1 -7
  96. data/app/forms/decidim/admin/block_user_form.rb +2 -2
  97. data/app/forms/decidim/admin/category_form.rb +1 -2
  98. data/app/forms/decidim/admin/component_form.rb +16 -7
  99. data/app/forms/decidim/admin/import_example_form.rb +1 -5
  100. data/app/forms/decidim/admin/import_form.rb +7 -10
  101. data/app/forms/decidim/admin/managed_user_promotion_form.rb +1 -1
  102. data/app/forms/decidim/admin/participatory_space_private_user_csv_import_form.rb +7 -4
  103. data/app/forms/decidim/admin/permission_form.rb +9 -8
  104. data/app/forms/decidim/admin/permissions_form.rb +1 -10
  105. data/app/forms/decidim/admin/user_group_csv_verification_form.rb +2 -2
  106. data/app/helpers/decidim/admin/bulk_actions_helper.rb +6 -5
  107. data/app/helpers/decidim/admin/moderations/reports_helper.rb +11 -2
  108. data/app/helpers/decidim/admin/reminders_helper.rb +12 -0
  109. data/app/helpers/decidim/admin/settings_helper.rb +11 -57
  110. data/app/models/decidim/admin/fake_newsletter.rb +0 -20
  111. data/app/packs/entrypoints/decidim_admin.js +3 -6
  112. data/app/packs/src/decidim/admin/admin_autocomplete.js +82 -0
  113. data/app/packs/src/decidim/admin/application.js +0 -16
  114. data/app/packs/src/decidim/admin/choose_language.js +9 -11
  115. data/app/packs/src/decidim/admin/draggable-list.js +1 -1
  116. data/app/packs/src/decidim/admin/dynamic_fields.component.js +0 -1
  117. data/app/packs/stylesheets/decidim/admin/_decidim.scss +0 -1
  118. data/app/packs/stylesheets/decidim/admin/extra/_quill.scss +0 -7
  119. data/app/packs/stylesheets/decidim/admin/modules/_autocomplete.scss +5 -0
  120. data/app/packs/stylesheets/decidim/admin/modules/_forms.scss +0 -6
  121. data/app/packs/stylesheets/decidim/admin/modules/_import_result.scss +10 -0
  122. data/app/packs/stylesheets/decidim/admin/modules/_modules.scss +3 -0
  123. data/app/packs/stylesheets/decidim/admin/modules/_upload_modal.scss +42 -0
  124. data/app/permissions/decidim/admin/permissions.rb +4 -46
  125. data/app/presenters/decidim/admin/dashboard_metric_charts_presenter.rb +3 -1
  126. data/app/queries/decidim/admin/active_users_counter.rb +1 -1
  127. data/app/queries/decidim/admin/newsletter_recipients.rb +2 -2
  128. data/app/queries/decidim/admin/user_filter.rb +1 -1
  129. data/app/queries/decidim/admin/user_groups_evaluation.rb +1 -1
  130. data/app/views/decidim/admin/area_types/edit.html.erb +0 -1
  131. data/app/views/decidim/admin/area_types/index.html.erb +0 -1
  132. data/app/views/decidim/admin/area_types/new.html.erb +0 -1
  133. data/app/views/decidim/admin/areas/edit.html.erb +0 -1
  134. data/app/views/decidim/admin/areas/index.html.erb +0 -1
  135. data/app/views/decidim/admin/areas/new.html.erb +0 -1
  136. data/app/views/decidim/admin/attachment_collections/edit.html.erb +0 -1
  137. data/app/views/decidim/admin/attachment_collections/index.html.erb +0 -1
  138. data/app/views/decidim/admin/attachment_collections/new.html.erb +0 -1
  139. data/app/views/decidim/admin/attachments/edit.html.erb +0 -1
  140. data/app/views/decidim/admin/attachments/index.html.erb +1 -1
  141. data/app/views/decidim/admin/attachments/new.html.erb +0 -1
  142. data/app/views/decidim/admin/authorization_workflows/index.html.erb +0 -1
  143. data/app/views/decidim/admin/categories/_form.html.erb +0 -4
  144. data/app/views/decidim/admin/categories/edit.html.erb +0 -1
  145. data/app/views/decidim/admin/categories/index.html.erb +0 -1
  146. data/app/views/decidim/admin/categories/new.html.erb +0 -1
  147. data/app/views/decidim/admin/categories/show.html.erb +1 -2
  148. data/app/views/decidim/admin/components/edit.html.erb +0 -1
  149. data/app/views/decidim/admin/components/index.html.erb +0 -1
  150. data/app/views/decidim/admin/components/new.html.erb +1 -1
  151. data/app/views/decidim/admin/conflicts/index.html.erb +0 -1
  152. data/app/views/decidim/admin/dashboard/show.html.erb +1 -1
  153. data/app/views/decidim/admin/help_sections/show.erb +0 -1
  154. data/app/views/decidim/admin/impersonatable_users/index.html.erb +0 -1
  155. data/app/views/decidim/admin/impersonations/new.html.erb +0 -1
  156. data/app/views/decidim/admin/imports/new.html.erb +1 -1
  157. data/app/views/decidim/admin/logs/index.html.erb +0 -1
  158. data/app/views/decidim/admin/moderated_users/index.html.erb +1 -2
  159. data/app/views/decidim/admin/moderations/index.html.erb +4 -9
  160. data/app/views/decidim/admin/moderations/reports/index.html.erb +1 -5
  161. data/app/views/decidim/admin/newsletter_templates/index.html.erb +0 -1
  162. data/app/views/decidim/admin/newsletter_templates/show.html.erb +0 -1
  163. data/app/views/decidim/admin/newsletters/index.html.erb +0 -1
  164. data/app/views/decidim/admin/newsletters/new.html.erb +0 -1
  165. data/app/views/decidim/admin/newsletters/show.html.erb +0 -1
  166. data/app/views/decidim/admin/officializations/index.html.erb +10 -15
  167. data/app/views/decidim/admin/officializations/new.html.erb +0 -1
  168. data/app/views/decidim/admin/organization/edit.html.erb +0 -1
  169. data/app/views/decidim/admin/organization_appearance/edit.html.erb +0 -1
  170. data/app/views/decidim/admin/organization_appearance/form/_images.html.erb +5 -4
  171. data/app/views/decidim/admin/organization_external_domain_whitelist/edit.html.erb +0 -1
  172. data/app/views/decidim/admin/participatory_space_private_users/index.html.erb +1 -1
  173. data/app/views/decidim/admin/participatory_space_private_users_csv_imports/new.html.erb +20 -1
  174. data/app/views/decidim/admin/reminders/new.html.erb +21 -0
  175. data/app/views/decidim/admin/resource_permissions/edit.html.erb +1 -1
  176. data/app/views/decidim/admin/scope_types/edit.html.erb +0 -1
  177. data/app/views/decidim/admin/scope_types/index.html.erb +0 -1
  178. data/app/views/decidim/admin/scope_types/new.html.erb +0 -1
  179. data/app/views/decidim/admin/scopes/edit.html.erb +0 -1
  180. data/app/views/decidim/admin/scopes/index.html.erb +0 -1
  181. data/app/views/decidim/admin/scopes/new.html.erb +0 -1
  182. data/app/views/decidim/admin/shared/_gallery.html.erb +6 -1
  183. data/app/views/decidim/admin/shared/_js-callout.html.erb +6 -0
  184. data/app/views/decidim/admin/shared/landing_page_content_blocks/edit.html.erb +0 -1
  185. data/app/views/decidim/admin/static_page_topics/edit.html.erb +0 -1
  186. data/app/views/decidim/admin/static_page_topics/new.html.erb +0 -1
  187. data/app/views/decidim/admin/static_pages/_form.html.erb +1 -1
  188. data/app/views/decidim/admin/static_pages/edit.html.erb +0 -1
  189. data/app/views/decidim/admin/static_pages/index.html.erb +0 -1
  190. data/app/views/decidim/admin/static_pages/new.html.erb +0 -1
  191. data/app/views/decidim/admin/user_groups/index.html.erb +0 -1
  192. data/app/views/decidim/admin/user_groups_csv_verifications/new.html.erb +0 -1
  193. data/app/views/decidim/admin/users/index.html.erb +0 -1
  194. data/app/views/decidim/admin/users/new.html.erb +0 -1
  195. data/app/views/decidim/admin/users_statistics/_users_count.html.erb +2 -2
  196. data/app/views/layouts/decidim/admin/_application.html.erb +2 -0
  197. data/app/views/layouts/decidim/admin/global_moderations.html.erb +0 -1
  198. data/config/locales/am-ET.yml +1 -0
  199. data/config/locales/ar.yml +33 -31
  200. data/config/locales/bg.yml +1 -0
  201. data/config/locales/ca.yml +32 -29
  202. data/config/locales/cs.yml +43 -38
  203. data/config/locales/da.yml +1 -0
  204. data/config/locales/de.yml +28 -28
  205. data/config/locales/el.yml +4 -64
  206. data/config/locales/en.yml +25 -23
  207. data/config/locales/eo.yml +1 -0
  208. data/config/locales/es-MX.yml +29 -26
  209. data/config/locales/es-PY.yml +29 -26
  210. data/config/locales/es.yml +32 -29
  211. data/config/locales/et.yml +1 -0
  212. data/config/locales/eu.yml +22 -40
  213. data/config/locales/fi-plain.yml +28 -25
  214. data/config/locales/fi.yml +33 -30
  215. data/config/locales/fr-CA.yml +28 -25
  216. data/config/locales/fr.yml +43 -40
  217. data/config/locales/ga-IE.yml +1 -0
  218. data/config/locales/gl.yml +22 -4
  219. data/config/locales/hr.yml +1 -0
  220. data/config/locales/hu.yml +35 -222
  221. data/config/locales/id-ID.yml +4 -7
  222. data/config/locales/is-IS.yml +5 -8
  223. data/config/locales/it.yml +13 -6
  224. data/config/locales/ja.yml +32 -30
  225. data/config/locales/ko.yml +1 -0
  226. data/config/locales/lb.yml +7 -5
  227. data/config/locales/lt.yml +18 -141
  228. data/config/locales/lv.yml +6 -4
  229. data/config/locales/mt.yml +1 -0
  230. data/config/locales/nl.yml +8 -66
  231. data/config/locales/no.yml +18 -10
  232. data/config/locales/om-ET.yml +1 -0
  233. data/config/locales/pl.yml +26 -6
  234. data/config/locales/pt-BR.yml +7 -69
  235. data/config/locales/pt.yml +7 -5
  236. data/config/locales/ro-RO.yml +21 -36
  237. data/config/locales/ru.yml +4 -7
  238. data/config/locales/si-LK.yml +1 -0
  239. data/config/locales/sk.yml +6 -4
  240. data/config/locales/sl.yml +1 -0
  241. data/config/locales/so-SO.yml +1 -0
  242. data/config/locales/sr-CS.yml +5 -10
  243. data/config/locales/sv.yml +30 -18
  244. data/config/locales/sw-KE.yml +1 -0
  245. data/config/locales/ti-ER.yml +1 -0
  246. data/config/locales/tr-TR.yml +7 -8
  247. data/config/locales/uk.yml +4 -6
  248. data/config/locales/val-ES.yml +1 -0
  249. data/config/locales/vi.yml +1 -0
  250. data/config/locales/zh-CN.yml +6 -4
  251. data/config/locales/zh-TW.yml +1 -1075
  252. data/lib/decidim/admin/engine.rb +1 -12
  253. data/lib/decidim/admin/form_builder.rb +2 -1
  254. data/lib/decidim/admin/import/importer.rb +9 -7
  255. data/lib/decidim/admin/import/readers/json.rb +1 -1
  256. data/lib/decidim/admin/test/commands/create_attachment_collection_examples.rb +15 -2
  257. data/lib/decidim/admin/test/commands/create_category_examples.rb +16 -6
  258. data/lib/decidim/admin/test/commands/destroy_category_examples.rb +29 -1
  259. data/lib/decidim/admin/test/commands/update_attachment_collection_examples.rb +15 -2
  260. data/lib/decidim/admin/test/commands/update_category_examples.rb +16 -6
  261. data/lib/decidim/admin/test/filters_participatory_space_user_roles_examples.rb +4 -4
  262. data/lib/decidim/admin/test/filters_participatory_space_users_examples.rb +4 -4
  263. data/lib/decidim/admin/test/forms/category_form_examples.rb +1 -21
  264. data/lib/decidim/admin/test/manage_attachments_examples.rb +9 -2
  265. data/lib/decidim/admin/test/manage_categories_examples.rb +0 -10
  266. data/lib/decidim/admin/test/manage_component_permissions_examples.rb +0 -2
  267. data/lib/decidim/admin/test/manage_moderations_examples.rb +27 -79
  268. data/lib/decidim/admin/test.rb +0 -1
  269. data/lib/decidim/admin/version.rb +1 -1
  270. metadata +22 -25
  271. data/app/controllers/concerns/decidim/admin/needs_admin_tos_accepted.rb +0 -42
  272. data/app/controllers/decidim/admin/space_publications_controller.rb +0 -63
  273. data/app/packs/src/decidim/admin/autocomplete.component.js +0 -146
  274. data/app/packs/src/decidim/admin/autocomplete.component.test.js +0 -19
  275. data/app/packs/stylesheets/decidim/admin/components/_autocomplete_select.component.scss +0 -19
  276. data/config/environment.rb +0 -1
  277. data/config/locales/fa-IR.yml +0 -1
  278. data/config/locales/gn-PY.yml +0 -1
  279. data/config/locales/ka-GE.yml +0 -1
  280. data/config/locales/kaa.yml +0 -200
  281. data/config/locales/lo-LA.yml +0 -1
  282. data/config/locales/oc-FR.yml +0 -1
  283. data/lib/decidim/admin/test/needs_admin_tos_accepted_examples.rb +0 -9
@@ -1,1076 +1,2 @@
1
+ ---
1
2
  zh-TW:
2
- activemodel:
3
- attributes:
4
- area:
5
- area_type: 區域類型
6
- name: 名稱
7
- organization: 組織
8
- area_type:
9
- name: 名稱
10
- organization: 組織
11
- plural: 複數
12
- attachment:
13
- attachment_collection_id: 資料夾
14
- description: 說明
15
- file: 檔案
16
- title: 附加檔案或圖片名稱
17
- weight: 排序位置
18
- attachment_collection:
19
- description: 說明
20
- name: 名稱
21
- weight: 排序位置
22
- category:
23
- description: 說明
24
- name: 名稱
25
- parent_id: 上層目錄:
26
- weight: 排序位置
27
- component:
28
- name: 名稱
29
- published_at: 發表時間
30
- weight: 排序位置
31
- external_domain:
32
- value: 數值
33
- help_section:
34
- content: 內容
35
- id: 編號
36
- import:
37
- user_group_id: 建立匯入成
38
- newsletter:
39
- body: 內容
40
- subject: 主旨
41
- organization:
42
- admin_terms_of_use_body: 管理員使用條款正文
43
- alert_color: 警告
44
- available_authorizations: 可用認證方式
45
- badges_enabled: 啟用勳章
46
- comments_max_length: 留言字數上限 (0 表示使用預設)
47
- cta_button_path: 行動呼籲按鈕路徑
48
- cta_button_text: 行動呼籲按鈕文字
49
- customize_welcome_notification: 自訂歡迎通知
50
- default_locale: 預設語言
51
- description: 說明
52
- enable_omnipresent_banner: 顯示全域廣告
53
- enable_participatory_space_filters: 啟用參與空間過濾器
54
- facebook_handler: Facebook 處理器
55
- favicon: 圖示
56
- force_authentication: 強制認證
57
- force_users_to_authenticate_before_access_organization: 在使用者操作組織前強制要求認證
58
- from: 寄件者電子郵件地址
59
- github_handler: GitHub 處理器
60
- header_snippets: 頁首片段
61
- highlight_alternative_color: 高調、替代
62
- highlight_color: 高調
63
- highlighted_content_banner_action_subtitle: 行動按鈕子標題
64
- highlighted_content_banner_action_title: 行動按鈕標題
65
- highlighted_content_banner_action_url: 行動按鈕網址
66
- highlighted_content_banner_enabled: 顯示強調的內容廣告
67
- highlighted_content_banner_image: 圖片
68
- highlighted_content_banner_short_description: 簡介
69
- highlighted_content_banner_title: 標題
70
- host: 主機
71
- instagram_handler: Instagram 處理器
72
- logo: 標誌
73
- machine_translation_display_priority: 機器翻譯顯示順序
74
- machine_translation_display_priority_original: 原始文字優先
75
- machine_translation_display_priority_translation: 翻譯文字優先
76
- name: 名稱
77
- official_img_footer: 官方標誌頁尾
78
- official_img_header: 官方標誌頁首
79
- official_url: 官方組織網址
80
- omnipresent_banner_short_description: 簡介
81
- omnipresent_banner_title: 標題
82
- omnipresent_banner_url: 網址
83
- organization_admin_email: 組織管理員信箱
84
- organization_admin_name: 組織管理員名稱
85
- organization_locales: 組織語言
86
- primary_color: 主要
87
- reference_prefix: 參考前置字元
88
- rich_text_editor_in_public_views: 為參與者啟用多功能編輯器
89
- secondary_color: 次要
90
- secondary_hosts: 次要主機
91
- send_welcome_notification: 發送歡迎通知
92
- success_color: 成功
93
- time_zone: 時區
94
- tos_version: 服務條款版本
95
- twitter_handler: Twitter 處理器
96
- user_groups_enabled: 啟用群組功能
97
- users_registration_mode: 使用者註冊模式
98
- warning_color: 警告
99
- welcome_notification_body: 歡迎通知內容
100
- welcome_notification_subject: 歡迎通知主旨
101
- youtube_handler: YouTube 處理器
102
- participatory_space_private_user:
103
- email: 電子郵件
104
- name: 名稱
105
- scope:
106
- code: 代碼
107
- name: 名稱
108
- organization: 組織
109
- parent_id: 上層
110
- scope_type: 範圍類型
111
- scope_type_id: 範圍類型
112
- scope_type:
113
- name: 名稱
114
- organization: 組織
115
- plural: 複數
116
- settings:
117
- scope_id: 範圍
118
- static_page:
119
- allow_public_access: 允許未登入使用者操作
120
- changed_notably: 已經有很多異動
121
- content: 內容
122
- organization: 組織
123
- show_in_footer: 在頁尾顯示
124
- slug: URL 固定連結
125
- title: 標題
126
- topic_id: 主題
127
- weight: 排序位置
128
- static_page_topic:
129
- description: 說明
130
- show_in_footer: 在頁尾顯示
131
- title: 標題
132
- weight: 排序位置
133
- user_group_csv_verification:
134
- file: 檔案
135
- errors:
136
- models:
137
- newsletter:
138
- attributes:
139
- base:
140
- at_least_one_space: 至少選擇一個參與空間
141
- organization:
142
- attributes:
143
- official_img_footer:
144
- allowed_file_content_types: 圖片有誤
145
- official_img_header:
146
- allowed_file_content_types: 圖片有誤
147
- new_import:
148
- attributes:
149
- file:
150
- invalid_file: 提供檔案有誤,請檢查檔案格式是否正確
151
- invalid_mime_type: 無效的 mime 類型
152
- activerecord:
153
- attributes:
154
- decidim/static_page:
155
- content: 內容
156
- slug: URL 固定連結
157
- title: 標題
158
- doorkeeper/application:
159
- authorize_url: 授權網址
160
- client_id: 用戶 ID
161
- client_secret: 客戶端金鑰
162
- organization_name: 組織名稱
163
- organization_url: 組織網址
164
- redirect_uri: 重新導向 URI
165
- site: 網站
166
- decidim:
167
- admin:
168
- actions:
169
- add: 新增
170
- attachment:
171
- new: 新增附件
172
- attachment_collection:
173
- new: 新的附件集合
174
- browse: 瀏覽
175
- category:
176
- new: 新分類
177
- export: 全部匯出
178
- export-selection: 匯出選擇
179
- import: 匯入
180
- manage: 管理
181
- new: 新增 %{name}
182
- newsletter:
183
- new: 新電子報
184
- participatory_space_private_user:
185
- new: 新參與空間私有使用者
186
- per_page: 每頁
187
- permissions: 權限
188
- reject: 拒絕
189
- share: 分享
190
- user:
191
- new: 新使用者
192
- verify: 驗證
193
- admin_terms_of_use:
194
- accept:
195
- error: 接受管理者使用條款時發生錯誤。
196
- success: 太好了!您已接受管理員使用條款。
197
- actions:
198
- accept: 我同意這些條款
199
- are_you_sure: 您確定要拒絕管理員使用條款嗎?
200
- refuse: 拒絕管理員條款
201
- title: 同意使用條款和條件
202
- required_review:
203
- alert: '必填:請查閱我們的管理使用條款'
204
- callout: 請花些時間審閱管理員使用條款。否則,您將無法管理該平台。
205
- cta: 現在審閱
206
- title: 管理者使用條款
207
- area_types:
208
- create:
209
- error: 新增區域類型時發生錯誤
210
- success: 區域類型建立成功
211
- destroy:
212
- success: 區域類型成功刪除
213
- edit:
214
- title: 編輯區域類型
215
- update: 更新
216
- new:
217
- create: 建立區域類型
218
- title: 新增區域類型
219
- update:
220
- error: 更新這個區域類型時發生錯誤
221
- success: 區域類型已更新成功
222
- areas:
223
- create:
224
- error: 新增區域時發生錯誤
225
- success: 區域建立成功
226
- destroy:
227
- has_spaces: 這個區域有相依空間,刪除之前請確認沒有參與空間使用這個區域
228
- success: 區域已成功刪除
229
- edit:
230
- title: 編輯區域
231
- update: 更新
232
- new:
233
- create: 建立區域
234
- title: 新增區域
235
- no_areas: 沒有區域
236
- update:
237
- error: 更新這個區域時發生錯誤
238
- success: 區域更新成功
239
- attachment_collections:
240
- create:
241
- error: 新增資料夾時發生錯誤
242
- success: 資料夾建立成功
243
- destroy:
244
- success: 資料夾刪除成功
245
- edit:
246
- title: 編輯資料夾
247
- update: 更新
248
- index:
249
- attachment_collection_used: 這個資料夾使用中無法刪除
250
- attachment_collections_title: 附件資料夾
251
- new:
252
- create: 建立
253
- title: 新資料夾
254
- update:
255
- error: 更新這個資料夾時發生錯誤
256
- success: 資料夾更新成功
257
- attachments:
258
- create:
259
- error: 建立新附件時發生錯誤
260
- success: 附件建立成功
261
- destroy:
262
- success: 附件刪除成功
263
- edit:
264
- title: 編輯附件
265
- update: 更新
266
- index:
267
- attachments_title: 附件
268
- new:
269
- create: 建立附件
270
- title: 新增附件
271
- update:
272
- error: 更新這個附件時發生錯誤.
273
- success: 已成功更新附件
274
- autocomplete:
275
- no_results: 找不到結果
276
- search_prompt: 請輸入至少三個字元以進行搜尋
277
- block_user:
278
- new:
279
- action: 封鎖帳號並且發送理由
280
- description: 封鎖一個使用者會讓他的帳號無法使用,可以在此提供建議說明如何取消封鎖
281
- justification: 理由
282
- title: 封鎖使用者 %{name}
283
- categories:
284
- create:
285
- error: 建立這個分類時發生錯誤
286
- success: 分類建立成功
287
- destroy:
288
- error: 刪除這個分類時發生錯誤,請先將子類別刪除,確認這個分類沒有其他關聯後重試
289
- success: 分類刪除成功
290
- edit:
291
- title: 編輯分類
292
- update: 更新
293
- index:
294
- categories_title: 分類
295
- category_used: 這個分類使用中無法刪除
296
- new:
297
- create: 建立類別
298
- title: 新分類
299
- update:
300
- error: 更新這個分類時發生錯誤
301
- success: 更新類別成功。
302
- component_permissions:
303
- update:
304
- error: 更新這個元件的權限時發生錯誤
305
- success: 權限更新成功
306
- components:
307
- create:
308
- error: 這個元件創建時出了問題
309
- success: 新增元件成功。
310
- destroy:
311
- error: 刪除這個元件時發生錯誤
312
- success: 成功刪除元件
313
- edit:
314
- title: 編輯組件
315
- update: 更新
316
- form:
317
- default_step_settings: 預設步驟設定
318
- global_settings: 全域設定
319
- step_settings: 步驟設定
320
- index:
321
- add: 新增元件
322
- headers:
323
- actions: 操作
324
- name: 組件名稱
325
- scope: 組件作用域
326
- type: 組件類型
327
- new:
328
- add: 新增元件
329
- title: '新增元件: %{name}'
330
- publish:
331
- success: 這個元件已經成功發佈
332
- title: 元件
333
- unpublish:
334
- success: 這個元件已經成功取消發佈
335
- update:
336
- error: 更新這個元件發生錯誤
337
- success: 元件更新成功
338
- conflicts:
339
- attempts: 嘗試
340
- 'false': '否'
341
- managed_user_name: 管理的使用者
342
- solved: 已解決
343
- title: 驗證衝突
344
- transfer:
345
- email: 電子郵件
346
- error: 轉移現在參與者到管理參與者時發生錯誤
347
- name: 名稱
348
- reason: 理由
349
- success: 目前的轉換完成
350
- title: 轉換
351
- 'true': '是'
352
- user_name: 使用者
353
- dashboard:
354
- show:
355
- view_more_logs: 檢視更多記錄
356
- welcome: 歡迎來到 Decidim 管理面板。
357
- domain_whitelist:
358
- form:
359
- domain_too_short: 網址太短
360
- update:
361
- error: 更新域名白名單失敗
362
- success: 域名白名單更新成功
363
- exports:
364
- export_as: "%{name} 成為 %{export_format}"
365
- formats:
366
- CSV: CSV
367
- Excel: Excel
368
- FormPDF: PDF
369
- JSON: JSON
370
- notice: 您的匯出正在進行中。完成後您將收到一封電子郵件通知。
371
- filters:
372
- category_id_eq:
373
- label: 類別
374
- filter_label: 篩選
375
- invitation_accepted_at_present:
376
- label: 邀請已接受
377
- values:
378
- 'false': '否'
379
- 'true': '是'
380
- last_sign_in_at_present:
381
- label: 曾經登入
382
- values:
383
- 'false': '否'
384
- 'true': '是'
385
- moderated_users:
386
- reports_reason_eq:
387
- label: 回報原因
388
- values:
389
- does_not_belong: 不屬於
390
- offensive: 攻擊行為
391
- spam: 垃圾訊息
392
- moderations:
393
- reportable_type_string_eq:
394
- label: 類別
395
- officialized_at_null:
396
- label: 狀態
397
- values:
398
- 'false': 官方化
399
- 'true': 非官方化
400
- participatory_space_private_users:
401
- user_invitation_accepted_at_not_null:
402
- label: 邀請已接受
403
- values:
404
- 'false': 未接受
405
- 'true': 已接受
406
- user_invitation_sent_at_not_null:
407
- label: 已發送邀請
408
- values:
409
- 'false': 未發送
410
- 'true': 已送出
411
- private_space_eq:
412
- label: 私人的
413
- values:
414
- 'false': 公開的
415
- 'true': 不公開
416
- published_at_null:
417
- label: 已發佈
418
- values:
419
- 'false': 已發佈
420
- 'true': 取消發佈
421
- scope_id_eq:
422
- label: 範圍
423
- search_label: 搜尋
424
- search_placeholder:
425
- name_or_nickname_or_email_cont: 按電子郵件、姓名或暱稱搜索%{collection}。
426
- report_count_eq: 報告數量等於
427
- reported_id_string_or_reported_content_cont: 按報告 Id 或內容搜索%{collection}。
428
- title_cont: 按標題搜索%{collection}。
429
- user_name_or_user_email_cont: 按名稱或電子郵件搜索%{collection}。
430
- user_name_or_user_nickname_or_user_email_cont: 按電子郵件、姓名或暱稱搜索%{collection}。
431
- state_eq:
432
- label: 狀態
433
- values:
434
- all: 全部
435
- pending: 等待中
436
- rejected: 已拒絕
437
- verified: 已驗證
438
- forms:
439
- file_help:
440
- import:
441
- explanation: '檔案指南:'
442
- message_1: 支援 CSV、JSON 和 Excel (.xlsx) 檔案格式。
443
- message_2: 對於 CSV 檔案,列之間的分隔符號必須是分號 (";")
444
- help_sections:
445
- error: 更新協助章節時發生問題。
446
- form:
447
- save: 儲存
448
- success: 協助章節已成功更新
449
- impersonatable_users:
450
- index:
451
- filter:
452
- all: 全部
453
- managed: 已管理
454
- not_managed: 未管理
455
- filter_by: 篩選條件
456
- impersonate: 模擬
457
- impersonate_new_managed_user: 管理新參與者
458
- managed: 已管理
459
- name: 名稱
460
- needs_authorization_warning: 此組織需要至少啟用一個授權
461
- not_managed: 未管理
462
- promote: 推廣
463
- search: 搜尋
464
- status: 狀態
465
- view_logs: 查看日誌
466
- impersonations:
467
- close_session:
468
- error: 關閉目前的參與者管理工作階段時發生問題。
469
- success: 目前的模擬登入工作階段已成功結束。
470
- create:
471
- error: 管理參與者時出現問題。
472
- success: 已成功建立管理的參與者。
473
- form:
474
- authorization_method: 授權方式
475
- name: 名稱
476
- reason: 理由
477
- new:
478
- impersonate: 模擬
479
- impersonate_existing_managed_user: 管理參與者 "%{name}"
480
- impersonate_existing_user: 管理參與者 "%{name}"
481
- impersonate_new_managed_user: 管理新參與者
482
- imports:
483
- and: 和
484
- data_errors:
485
- duplicate_headers:
486
- detail: 請確認檔案包含所需的欄位或標題,且每個欄位或標題只出現一次。
487
- message:
488
- other: "One\n重複的欄位 %{columns}。\n\nOther\n重複的欄位 %{columns}。"
489
- invalid_indexes:
490
- lines:
491
- detail: 請檢查這些行是否格式正確並包含有效的記錄。
492
- message:
493
- other: "One\n找到了一個錯誤,位於匯入檔案的第 %{indexes} 行。\n\nOther\n找到了多個錯誤,位於匯入檔案的第 %{indexes} 行。"
494
- records:
495
- detail: 請檢查這些記錄是否格式正確且包含有效的資料。
496
- message:
497
- other: "One\n訂單編號為 %{indexes} 的記錄在導入文件中發現錯誤。\n\nOther\n多個訂單編號為 %{indexes} 的記錄在導入文件中發現錯誤。"
498
- missing_headers:
499
- detail: 請確認文件包含所需的欄位。
500
- message:
501
- other: "One\n缺少欄位 %{columns}。\n\nOther\n缺少欄位 %{columns}。"
502
- error: 匯入過程中發生問題
503
- example_error: 無法建立給定類型的範例。
504
- new:
505
- accepted_mime_types:
506
- csv: CSV
507
- json: JSON
508
- xlsx: Excel (.xlsx)
509
- actions:
510
- back: 返回
511
- download_example: 下載示例
512
- download_example_format: 範例:%{name}
513
- file_legend: 新增一個將被解析的導入檔案。
514
- import: 匯入
515
- notice: "成功匯入%{count} 個%{resource_name}"
516
- logs:
517
- logs_list:
518
- no_logs_yet: 尚未有任何日誌記錄
519
- managed_users:
520
- promotion:
521
- error: 提升被管理參與者時出現問題。
522
- success: 已成功提升受管理的參與者。
523
- promotions:
524
- new:
525
- explanation: 受管理的參與者可以晉升為標準參與者。這意味著他們將受邀加入應用程式,您將無法再對其進行管理。被邀請的參與者將收到一封電子郵件,以接受您的邀請。
526
- new_managed_user_promotion: 晉升新的受管理參與者
527
- promote: 推廣
528
- menu:
529
- admin_log: 管理員活動日誌
530
- admins: 管理員
531
- appearance: 外觀
532
- area_types: 區域類型
533
- areas: 區域
534
- configuration: 配置
535
- dashboard: 儀表板
536
- external_domain_whitelist: 允許的外部域名
537
- help_sections: 幫助部分
538
- homepage: 首頁
539
- impersonations: 模擬登錄
540
- moderation: 全局審查
541
- newsletters: 電子報
542
- participants: 參與者
543
- reported_users: 被舉報的使用者
544
- scope_types: 範圍類型
545
- scopes: 範圍
546
- settings: 設定
547
- static_pages: 頁
548
- user_groups: 群組
549
- users: 參與者
550
- metrics:
551
- metrics:
552
- see_more_metrics: 查看更多指標
553
- models:
554
- area:
555
- fields:
556
- area_type: 區域類型
557
- name: 名稱
558
- area_type:
559
- fields:
560
- name: 姓名
561
- plural: 複數
562
- attachment:
563
- fields:
564
- collection: 資料夾
565
- content_type: 類別
566
- file_size: 大小
567
- title: 標題
568
- name: 附件
569
- attachment_collection:
570
- name: 資料夾
571
- category:
572
- name: 類別
573
- impersonation_log:
574
- fields:
575
- admin: 管理員
576
- ended_at: 結束在
577
- expired_at: 到期時間
578
- reason: 理由
579
- started_at: 開始於
580
- user: 參與者
581
- newsletter:
582
- fields:
583
- created_at: 建立於
584
- progress: 進度
585
- sent_at: 寄送時間
586
- sent_to: 發送至
587
- subject: 主旨
588
- name: 電子報
589
- participatory_space_private_user:
590
- name: 參與空間私有參與者
591
- scope:
592
- fields:
593
- name: 名稱
594
- scope_type: 範圍類型
595
- scope_type:
596
- fields:
597
- name: 名稱
598
- plural: 複數
599
- share_token:
600
- fields:
601
- created_at: 建立於
602
- expires_at: 到期日
603
- last_used_at: 上次使用時間
604
- times_used: 使用次數
605
- token: 代幣
606
- user: 創建者
607
- static_page:
608
- fields:
609
- created_at: 建立於
610
- title: 標題
611
- user:
612
- fields:
613
- created_at: 創建日期
614
- email: 電子郵件
615
- last_sign_in_at: 上次登入日期
616
- name: 姓名
617
- role: 角色
618
- roles:
619
- admin: 管理員
620
- user_manager: 參與者管理者
621
- name: 參與者
622
- user_group:
623
- fields:
624
- actions: 操作
625
- created_at: 建立於
626
- document_number: 文件編號
627
- name: 名稱
628
- phone: 電話號碼
629
- state: 狀態
630
- users_count: 參與者數目
631
- moderated_users:
632
- index:
633
- actions:
634
- block: 封鎖使用者
635
- title: 操作
636
- unblock: 取消封鎖使用者
637
- unreport: 取消報告
638
- name: 名稱
639
- nickname: 暱稱
640
- reason: 理由
641
- reports: 報告數量
642
- title: 已報告的參與者
643
- report:
644
- reasons:
645
- does_not_belong: 不屬於
646
- offensive: 冒犯性
647
- spam: 垃圾郵件
648
- tabs:
649
- blocked: 已封鎖
650
- unblocked: 未封鎖的
651
- moderations:
652
- index:
653
- title: 已檢舉內容
654
- report:
655
- reasons:
656
- does_not_belong: 不屬於
657
- offensive: 冒犯性
658
- spam: 垃圾郵件
659
- reports:
660
- index:
661
- author: 作者
662
- callout_html: 當使用者(可以是任何已註冊帳戶的使用者)點擊項目旁邊的 %{icon} 旗幟來標記內容時,該內容會出現在審核面板中。
663
- content_original_language: 原始語言
664
- participatory_space: 參與空間
665
- reported_content: 已檢舉內容
666
- see_current: 查看當前語言
667
- see_original: 查看原始語言
668
- title: 審核報告
669
- show:
670
- report_details: 原因詳情
671
- report_language: 報告的語言
672
- report_reason: 理由
673
- title: 報告理由
674
- newsletter_templates:
675
- index:
676
- preview_template: 預覽
677
- title: 通訊範本
678
- use_template: 使用這個範本
679
- show:
680
- preview: '預覽範本: %{template_name}'
681
- use_template: 使用這個範本
682
- newsletters:
683
- create:
684
- error: 建立此通訊時出現問題。
685
- success: 通訊成功建立。請在發送前先檢查一下。
686
- deliver:
687
- error: 發送這封通訊時出現問題。
688
- success: 通訊已成功發送。
689
- destroy:
690
- error_already_sent: '無法刪除通訊:已經發送。'
691
- success: 通訊已成功刪除。
692
- edit:
693
- save_and_preview: 儲存並預覽
694
- title: 編輯通訊。
695
- index:
696
- all: 全部
697
- all_users: '所有用戶 '
698
- and: '和 '
699
- confirm_delete: 您確定要刪除這份通訊嗎?
700
- followers: '追隨者'
701
- has_been_sent_to: '已發送至: '
702
- no_scopes: 無範圍
703
- not_sent: 未發送
704
- participants: '參與者 '
705
- segmented_to: '分段至 %{subject}: '
706
- subscribed_count: '訂閱:'
707
- title: 電子報
708
- new:
709
- save: 儲存
710
- title: 新電子報
711
- select_recipients_to_deliver:
712
- all_spaces: 全部
713
- all_users_help: 發送通訊給所有已確認的使用者。
714
- confirm_deliver: 您確定要發送這封通訊嗎?此操作無法撤銷。
715
- deliver: 發送通訊
716
- followers_help: 將通訊發送給清單中所有已確認且關注任何選定參與空間的使用者。
717
- none: 無
718
- participants_help: 發送通訊給所有在列表中任何選定的參與空間中參與過的已確認使用者。
719
- recipients_count: 此通訊將發送給<strong id='recipients_count'>%{count}</strong>位使用者。
720
- scopes_help: 向在其帳戶的「我的興趣」設置中啟用任何選定範圍的使用者發送通訊。
721
- select_scopes: 篩選條件為在其帳戶的「我的興趣」設置中啟用任何選定範圍的使用者。
722
- select_spaces: 選擇要將通訊進行分割的空間
723
- select_users: 選擇您想要發送通訊的使用者
724
- send_to_all_users: 傳送給所有使用者
725
- send_to_followers: 傳送給追蹤者
726
- send_to_participants: 傳送給參與者
727
- title: 選擇要傳送的收件人
728
- warning: "<strong>注意:</strong>此通訊將僅傳送給已在其通知設定中啟用<em>我想收到通訊</em>的使用者。"
729
- send:
730
- no_recipients: 沒有選擇收件人
731
- show:
732
- preview: 預覽
733
- select_recipients_to_deliver: 選擇要傳送的收件人
734
- subject: 主旨
735
- update:
736
- error: 更新這份通訊時出現了問題。
737
- success: 通訊更新成功。請在發送前檢查一下。
738
- officializations:
739
- block:
740
- error: 封鎖參與者時發生錯誤
741
- success: 參與者已成功封鎖
742
- create:
743
- success: 參與者已成功成為正式成員
744
- destroy:
745
- success: 參與者已成功設為非正式成員
746
- index:
747
- actions: 操作
748
- badge: 徽章
749
- block: 封鎖使用者
750
- created_at: 建立於
751
- name: 姓名
752
- nickname: 暱稱
753
- not_officialized: 非官方化
754
- officialize: 官方化
755
- officialized: 已官方化
756
- reofficialize: 重新官方化
757
- reports: 報告
758
- show_email: 顯示電子郵件地址
759
- status: 狀態
760
- unblock: 取消封鎖使用者
761
- unofficialize: 取消官方化
762
- new:
763
- badge: 官方化徽章
764
- officialize: 官方化
765
- title: 正式認證參與者 "%{name}"
766
- show_email_modal:
767
- close_modal: 關閉視窗
768
- description: 如果您需要直接聯繫參與者,您可以點擊「顯示」按鈕以查看他們的電子郵件地址。此操作將被記錄。
769
- email_address: 電子郵件地址
770
- full_name: 全名
771
- hidden: 隱藏
772
- show: 顯示
773
- title: 顯示參與者的電子郵件地址
774
- unblock:
775
- error: 解除參與者封鎖時出現錯誤
776
- success: 參與者已成功解除封鎖
777
- organization:
778
- edit:
779
- title: 編輯組織
780
- update: 更新
781
- form:
782
- facebook: 臉書
783
- github: GitHub
784
- instagram: Instagram
785
- rich_text_editor_in_public_views_help: 在某些文字區域中,參與者可以使用所提供的富文本編輯器插入一些 HTML 標籤。
786
- social_handlers: 社群
787
- twitter: Twitter
788
- url: 網址
789
- youtube: YouTube
790
- update:
791
- error: 更新此組織時發生問題。
792
- success: 組織更新成功
793
- organization_appearance:
794
- edit:
795
- update: 更新
796
- form:
797
- colors:
798
- colors_title: 組織顏色
799
- colors_warning_html: 警告!更改這些顏色可能會破壞可達性對比度。您可以使用<a href="%{link}">WebAIM對比度檢查器</a>或其他類似工具檢查您選擇的對比度。
800
- header_snippets_help: 使用此字段將內容添加到HTML的head部分。最常見的用途是整合需要額外JavaScript或CSS的第三方服務。此外,您還可以使用它來添加額外的HTML meta標籤。請注意,此內容僅在公開頁面中呈現,而不在管理部分中呈現。
801
- cta_button_path_help: '您可以覆蓋主頁上的"呼籲行動"按鈕的鏈接目標。在此處使用部分路徑,而不是完整的URL。它接受字母、數字、破折號和斜杠,並且必須以字母開頭。"呼籲行動"按鈕顯示在主頁的歡迎文本和描述之間。範例: %{url}'
802
- cta_button_text_help: 您可以覆蓋主頁上每種語言對應的"呼籲行動"按鈕文本。如果未設置,將使用默認值。"呼籲行動"按鈕顯示在主頁的歡迎文本和描述之間。
803
- homepage_appearance_title: 編輯主頁外觀
804
- homepage_highlighted_content_banner_title: 重點顯示的內容橫幅
805
- images:
806
- layout_appearance_title: 編輯版面外觀
807
- preview: 預覽
808
- omnipresent_banner_appearance_title: 編輯無處不在的橫幅
809
- organization_external_domain_whitelist:
810
- edit:
811
- update: 更新
812
- external_domain:
813
- down: 向下
814
- external_domain: 外部網域
815
- remove: 移除
816
- up: 往上
817
- form:
818
- add: 新增到白名單
819
- title: 外部域名白名單
820
- organization_homepage:
821
- edit:
822
- active_content_blocks: 啟用的內容區塊
823
- inactive_content_blocks: 停用的內容區塊
824
- organization_homepage_content_blocks:
825
- edit:
826
- update: 更新
827
- participatory_space_private_users:
828
- create:
829
- error: 在此參與空間中添加私人參與者時出現問題。
830
- success: 成功建立參與空間的私人參與者訪問權限。
831
- destroy:
832
- error: 刪除參與空間的私人參與者時發生問題。
833
- success: 成功刪除參與空間的私人參與者訪問權限。
834
- index:
835
- import_via_csv: 透過 CSV 匯入
836
- title: 參與空間私有參與者
837
- new:
838
- create: 建立
839
- title: 新的參與空間私人參與者。
840
- participatory_space_private_users_csv_imports:
841
- create:
842
- invalid: 讀取 CSV 檔案時發生問題。
843
- success: CSV檔案上傳成功,我們正在發送邀請電子郵件給參與者。這可能需要一些時間。
844
- new:
845
- explanation: '上傳您的 CSV 檔案。該檔案必須具有兩列,第一列為電子郵件,最後一列為名字,格式為 (電子郵件,名字),這些使用者將被添加到參與空間中,不包括標題列。在使用者名稱中避免使用無效的字符,如 <>?%&^*#@()[]=+:;"{}\|。'
846
- title: 請上傳您的 CSV 檔案。
847
- upload: 上傳
848
- resource_permissions:
849
- edit:
850
- submit: 提交
851
- title: 編輯權限
852
- update:
853
- success: 權限更新成功
854
- resources:
855
- index:
856
- headers:
857
- scope: 範圍
858
- scope_types:
859
- create:
860
- error: 建立新範圍類型時發生問題。
861
- success: 成功建立範圍類型。
862
- destroy:
863
- success: 成功刪除範圍類型。
864
- edit:
865
- title: 編輯範圍類型。
866
- update: 更新
867
- new:
868
- create: 建立範圍類型。
869
- title: 新範圍
870
- update:
871
- error: 更新此範圍類型時出現問題。
872
- success: 範圍類型已成功更新。
873
- scopes:
874
- create:
875
- error: 建立新範圍時發生問題。
876
- success: 範圍成功建立。
877
- destroy:
878
- success: 範圍已成功刪除
879
- edit:
880
- title: 修改範圍
881
- update: 更新
882
- new:
883
- create: 建立範圍
884
- title: 新範圍
885
- no_scopes: 該層級下沒有範圍。
886
- update:
887
- error: 更新此範圍時出現問題。
888
- success: 範圍更新成功。
889
- share_tokens:
890
- actions:
891
- confirm_destroy: 您確定要刪除此標記嗎?
892
- destroy: 刪除
893
- share: 分享
894
- destroy:
895
- error: 刪除代幣時出現問題。
896
- success: 代幣成功刪除。
897
- share_tokens:
898
- empty: 沒有有效的代幣
899
- help: 這些代幣用於向任何使用者公開分享此未發佈的資源。當資源被發佈時,它們將被隱藏。點擊代幣的分享圖標,以訪問可分享的URL。
900
- title: 分享代幣
901
- shared:
902
- gallery:
903
- add_images: 添加圖案
904
- delete_image: 刪除圖片
905
- gallery_legend: 新增圖片庫(可選)
906
- static_page_topics:
907
- create:
908
- error: 建立新主題時發生問題。
909
- success: 主題已成功建立。
910
- destroy:
911
- success: 主題已成功刪除
912
- edit:
913
- title: 編輯主題
914
- update: 更新主題
915
- new:
916
- create: 建立主題
917
- title: 新增主題
918
- update:
919
- error: 更新主題時發生問題。
920
- success: 主題已成功更新。
921
- static_pages:
922
- actions:
923
- view: 查看公開頁面。
924
- create:
925
- error: 創建新頁面時出現問題。
926
- success: 頁面建立成功.
927
- destroy:
928
- success: 頁面已成功刪除
929
- edit:
930
- changed_notably_help: 如果勾選,參與者將被通知接受新的條款和條件。
931
- title: 編輯頁面
932
- update: 更新
933
- form:
934
- none: 無
935
- slug_help: '在此處使用部分路徑,而不是完整的URL。只接受字母、數字、破折號和斜線,且必須以字母開頭。例如: %{url}'
936
- index:
937
- last_notable_change: 最後重要更改
938
- new:
939
- create: 建立頁面
940
- title: 新頁面
941
- topic:
942
- destroy: 刪除主題
943
- edit: 編輯主題
944
- empty: 這個主題下沒有頁面
945
- without_topic: 沒有主題的頁面
946
- update:
947
- error: 更新此頁面時出現問題。
948
- success: 頁面已更新成功
949
- titles:
950
- admin_log: 管理日誌
951
- area_types: 區域類型
952
- areas: 區域
953
- authorization_workflows: 驗證方式
954
- dashboard: 儀表板
955
- impersonatable_users: 可管理的參與者
956
- impersonations: 參與者管理
957
- metrics: 指標
958
- panel: 管理員
959
- participants: 參與者
960
- scope_types: 範圍類型
961
- scopes: 範圍
962
- static_pages: 頁
963
- statistics: 啟動
964
- user_groups: 群組
965
- users: 參與者
966
- user_group:
967
- csv_verify:
968
- invalid: 讀取 CSV 檔案時發生問題。
969
- success: CSV檔案上傳成功,我們正在驗證符合條件的群組。這可能需要一些時間。
970
- reject:
971
- invalid: 拒絕此群組時發生問題。
972
- success: 群組已成功拒絕
973
- verify:
974
- invalid: 驗證此群組時發生問題。
975
- success: 群組驗證成功
976
- user_groups:
977
- index:
978
- state:
979
- pending: 等待中
980
- rejected: 已拒絕
981
- verified: 已驗證
982
- verify_via_csv: 通過 CSV 驗證
983
- user_groups_csv_verifications:
984
- new:
985
- explanation: 請上傳您的 CSV 檔案。檔案的第一欄應包含您組織中的群組官方電子郵件,不包含標頭。只有已確認其電子郵件並且在 CSV 檔案中出現的群組將被驗證。
986
- title: 請上傳您的 CSV 檔案。
987
- upload: 上傳
988
- users:
989
- create:
990
- error: 邀請此管理員時出現問題。
991
- success: 成功邀請參與者.
992
- destroy:
993
- error: 刪除此管理員時出現問題。
994
- success: 參與者不再是管理員。
995
- form:
996
- email: 電子郵件
997
- name: 名稱
998
- role: 角色
999
- new:
1000
- create: 邀請
1001
- title: 邀請參與者成為管理員
1002
- users_statistics:
1003
- users_count:
1004
- admins: 管理員
1005
- last_day: 過去 1 天
1006
- last_month: 上個月
1007
- last_week: 上週
1008
- no_users_count_statistics_yet: 目前還沒有使用者統計數據。
1009
- participants: 參與者
1010
- view_public_page: 查看公開頁面。
1011
- forms:
1012
- errors:
1013
- impersonate_user:
1014
- reason: 你需要在管理非管理的參與者時提供一個原因
1015
- metrics:
1016
- blocked_users:
1017
- object: 已封鎖的使用者
1018
- title: 已封鎖的使用者
1019
- reported_users:
1020
- object: 被舉報的使用者
1021
- title: 被舉報的使用者
1022
- user_reports:
1023
- object: 使用者報告
1024
- title: 使用者報告
1025
- moderations:
1026
- actions:
1027
- expand: 展開
1028
- hidden: 隱藏
1029
- hide: 隱藏
1030
- not_hidden: 不隱藏
1031
- title: 操作
1032
- unhide: 解除隱藏
1033
- unreport: 取消報告
1034
- admin:
1035
- reportable:
1036
- hide:
1037
- invalid: 隱藏資源時發生問題。
1038
- success: 資源已成功隱藏。
1039
- unhide:
1040
- invalid: 解除隱藏資源時出現問題。
1041
- success: 成功取消隱藏資源。
1042
- unreport:
1043
- invalid: 解除報告資源時發生問題。
1044
- success: 成功取消報告資源。
1045
- models:
1046
- moderation:
1047
- fields:
1048
- created_at: 創建日期
1049
- deleted_resource: 已刪除的資源
1050
- hidden_at: 隱藏於
1051
- participatory_space: 參與空間
1052
- report_count: 計數
1053
- reportable_id: ID
1054
- reportable_type: 類別
1055
- reported_content_url: 被舉報的內容URL網址
1056
- reports: 報告
1057
- visit_url: 訪問網址
1058
- report:
1059
- fields:
1060
- details: 原因詳情
1061
- locale: 語言
1062
- reason: 理由
1063
- errors:
1064
- messages:
1065
- invalid_json: 不正確 JSON
1066
- layouts:
1067
- decidim:
1068
- admin:
1069
- global_moderations:
1070
- title: 全局審查
1071
- newsletters:
1072
- title: 電子報
1073
- settings:
1074
- title: 設定
1075
- users:
1076
- title: 參與者