decidim-conferences 0.26.8 → 0.27.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (166) hide show
  1. checksums.yaml +4 -4
  2. data/app/cells/decidim/conferences/content_blocks/highlighted_conferences/show.erb +2 -2
  3. data/app/cells/decidim/conferences/content_blocks/highlighted_conferences_cell.rb +4 -5
  4. data/app/commands/decidim/conferences/admin/confirm_conference_registration.rb +3 -3
  5. data/app/commands/decidim/conferences/admin/copy_conference.rb +1 -1
  6. data/app/commands/decidim/conferences/admin/create_conference.rb +1 -1
  7. data/app/commands/decidim/conferences/admin/create_conference_speaker.rb +8 -8
  8. data/app/commands/decidim/conferences/admin/create_media_link.rb +6 -6
  9. data/app/commands/decidim/conferences/admin/create_partner.rb +8 -8
  10. data/app/commands/decidim/conferences/admin/create_registration_type.rb +6 -6
  11. data/app/commands/decidim/conferences/admin/destroy_conference_admin.rb +1 -6
  12. data/app/commands/decidim/conferences/admin/destroy_conference_speaker.rb +1 -1
  13. data/app/commands/decidim/conferences/admin/destroy_media_link.rb +1 -1
  14. data/app/commands/decidim/conferences/admin/destroy_partner.rb +1 -1
  15. data/app/commands/decidim/conferences/admin/destroy_registration_type.rb +1 -1
  16. data/app/commands/decidim/conferences/admin/export_conference_registrations.rb +1 -1
  17. data/app/commands/decidim/conferences/admin/invite_user_to_join_conference.rb +10 -12
  18. data/app/commands/decidim/conferences/admin/notify_role_assigned_to_conference.rb +1 -1
  19. data/app/commands/decidim/conferences/admin/publish_conference.rb +1 -1
  20. data/app/commands/decidim/conferences/admin/publish_registration_type.rb +1 -1
  21. data/app/commands/decidim/conferences/admin/send_conference_diplomas.rb +1 -1
  22. data/app/commands/decidim/conferences/admin/unpublish_conference.rb +1 -1
  23. data/app/commands/decidim/conferences/admin/unpublish_registration_type.rb +1 -1
  24. data/app/commands/decidim/conferences/admin/update_conference.rb +1 -1
  25. data/app/commands/decidim/conferences/admin/update_conference_speaker.rb +8 -8
  26. data/app/commands/decidim/conferences/admin/update_diploma.rb +3 -3
  27. data/app/commands/decidim/conferences/admin/update_media_link.rb +6 -6
  28. data/app/commands/decidim/conferences/admin/update_partner.rb +6 -6
  29. data/app/commands/decidim/conferences/admin/update_registration_type.rb +6 -6
  30. data/app/commands/decidim/conferences/decline_invitation.rb +1 -1
  31. data/app/commands/decidim/conferences/join_conference.rb +1 -8
  32. data/app/commands/decidim/conferences/leave_conference.rb +4 -4
  33. data/app/controllers/decidim/conferences/admin/conference_invites_controller.rb +12 -8
  34. data/app/controllers/decidim/conferences/admin/conference_registrations_controller.rb +10 -8
  35. data/app/controllers/decidim/conferences/admin/conference_speakers_controller.rb +11 -17
  36. data/app/controllers/decidim/conferences/admin/media_links_controller.rb +1 -1
  37. data/app/controllers/decidim/conferences/admin/partners_controller.rb +1 -1
  38. data/app/controllers/decidim/conferences/admin/registration_type_publications_controller.rb +1 -1
  39. data/app/controllers/decidim/conferences/admin/registration_types_controller.rb +1 -1
  40. data/app/controllers/decidim/conferences/admin/reminders_controller.rb +14 -0
  41. data/app/controllers/decidim/conferences/conference_program_controller.rb +2 -2
  42. data/app/controllers/decidim/conferences/conference_registrations_controller.rb +1 -18
  43. data/app/events/decidim/conferences/conference_registration_notification_event.rb +1 -1
  44. data/app/events/decidim/conferences/conference_role_assigned_event.rb +1 -1
  45. data/app/forms/decidim/conferences/admin/conference_registration_invite_form.rb +1 -1
  46. data/app/helpers/decidim/conferences/admin/conference_speakers_helper.rb +14 -0
  47. data/app/mailers/decidim/conferences/admin/send_conference_diploma_mailer.rb +2 -2
  48. data/app/models/decidim/conference.rb +2 -3
  49. data/app/models/decidim/conferences/conference_invite.rb +2 -2
  50. data/app/models/decidim/conferences/conference_registration.rb +2 -2
  51. data/app/permissions/decidim/conferences/permissions.rb +0 -1
  52. data/app/presenters/decidim/conference_speaker_presenter.rb +3 -5
  53. data/app/presenters/decidim/conferences/conference_stats_presenter.rb +4 -1
  54. data/app/queries/decidim/conferences/admin/admin_users.rb +1 -1
  55. data/app/queries/decidim/conferences/admin/conference_invites.rb +1 -1
  56. data/app/queries/decidim/conferences/admin/conference_speakers.rb +1 -1
  57. data/app/queries/decidim/conferences/conference_program_meetings.rb +2 -2
  58. data/app/queries/decidim/conferences/conference_program_meetings_by_day.rb +3 -3
  59. data/app/queries/decidim/conferences/conferences_with_user_role.rb +1 -1
  60. data/app/queries/decidim/conferences/organization_conferences.rb +1 -1
  61. data/app/queries/decidim/conferences/organization_prioritized_conferences.rb +3 -3
  62. data/app/queries/decidim/conferences/organization_published_conferences.rb +3 -3
  63. data/app/queries/decidim/conferences/prioritized_conferences.rb +1 -1
  64. data/app/queries/decidim/conferences/promoted_conferences.rb +1 -1
  65. data/app/queries/decidim/conferences/published_conferences.rb +1 -1
  66. data/app/queries/decidim/conferences/visible_conferences.rb +1 -1
  67. data/app/serializers/decidim/conferences/{data_portability_conference_invite_serializer.rb → download_your_data_conference_invite_serializer.rb} +2 -2
  68. data/app/serializers/decidim/conferences/{data_portability_conference_registration_serializer.rb → download_your_data_conference_registration_serializer.rb} +2 -2
  69. data/app/views/decidim/conferences/admin/conference_copies/new.html.erb +0 -1
  70. data/app/views/decidim/conferences/admin/conference_invites/index.html.erb +0 -1
  71. data/app/views/decidim/conferences/admin/conference_invites/new.html.erb +0 -1
  72. data/app/views/decidim/conferences/admin/conference_registrations/index.html.erb +0 -1
  73. data/app/views/decidim/conferences/admin/conference_speakers/edit.html.erb +1 -2
  74. data/app/views/decidim/conferences/admin/conference_speakers/index.html.erb +0 -1
  75. data/app/views/decidim/conferences/admin/conference_speakers/new.html.erb +0 -1
  76. data/app/views/decidim/conferences/admin/conference_user_roles/edit.html.erb +0 -1
  77. data/app/views/decidim/conferences/admin/conference_user_roles/index.html.erb +0 -1
  78. data/app/views/decidim/conferences/admin/conference_user_roles/new.html.erb +0 -1
  79. data/app/views/decidim/conferences/admin/conferences/_form.html.erb +3 -3
  80. data/app/views/decidim/conferences/admin/conferences/edit.html.erb +0 -1
  81. data/app/views/decidim/conferences/admin/conferences/index.html.erb +0 -1
  82. data/app/views/decidim/conferences/admin/conferences/new.html.erb +0 -1
  83. data/app/views/decidim/conferences/admin/diplomas/edit.html.erb +0 -1
  84. data/app/views/decidim/conferences/admin/invite_join_conference_mailer/invite.html.erb +3 -3
  85. data/app/views/decidim/conferences/admin/media_links/edit.html.erb +0 -1
  86. data/app/views/decidim/conferences/admin/media_links/index.html.erb +0 -1
  87. data/app/views/decidim/conferences/admin/media_links/new.html.erb +0 -1
  88. data/app/views/decidim/conferences/admin/partners/_form.html.erb +2 -1
  89. data/app/views/decidim/conferences/admin/partners/edit.html.erb +0 -1
  90. data/app/views/decidim/conferences/admin/partners/index.html.erb +3 -2
  91. data/app/views/decidim/conferences/admin/partners/new.html.erb +0 -1
  92. data/app/views/decidim/conferences/admin/registration_types/edit.html.erb +0 -1
  93. data/app/views/decidim/conferences/admin/registration_types/index.html.erb +0 -1
  94. data/app/views/decidim/conferences/admin/registration_types/new.html.erb +0 -1
  95. data/app/views/decidim/conferences/conferences/_promoted_conference.html.erb +1 -1
  96. data/app/views/decidim/conferences/conferences/show.html.erb +2 -2
  97. data/app/views/devise/mailer/join_conference.html.erb +2 -2
  98. data/app/views/devise/mailer/join_conference.text.erb +2 -2
  99. data/app/views/layouts/decidim/_conference_hero.html.erb +1 -1
  100. data/app/views/layouts/decidim/_conferences_nav.html.erb +1 -1
  101. data/config/locales/am-ET.yml +1 -0
  102. data/config/locales/ar.yml +9 -2
  103. data/config/locales/bg.yml +1 -0
  104. data/config/locales/ca.yml +8 -11
  105. data/config/locales/cs.yml +18 -21
  106. data/config/locales/da.yml +1 -0
  107. data/config/locales/de.yml +7 -10
  108. data/config/locales/el.yml +8 -13
  109. data/config/locales/en.yml +7 -11
  110. data/config/locales/eo.yml +1 -0
  111. data/config/locales/es-MX.yml +9 -12
  112. data/config/locales/es-PY.yml +10 -13
  113. data/config/locales/es.yml +9 -12
  114. data/config/locales/et.yml +1 -0
  115. data/config/locales/eu.yml +40 -39
  116. data/config/locales/fi-plain.yml +8 -11
  117. data/config/locales/fi.yml +10 -13
  118. data/config/locales/fr-CA.yml +4 -7
  119. data/config/locales/fr.yml +6 -9
  120. data/config/locales/ga-IE.yml +4 -0
  121. data/config/locales/gl.yml +9 -1
  122. data/config/locales/hr.yml +1 -0
  123. data/config/locales/hu.yml +9 -65
  124. data/config/locales/id-ID.yml +12 -1
  125. data/config/locales/is-IS.yml +2 -1
  126. data/config/locales/it.yml +11 -3
  127. data/config/locales/ja.yml +5 -8
  128. data/config/locales/ko.yml +1 -0
  129. data/config/locales/lb.yml +7 -2
  130. data/config/locales/lt.yml +1 -616
  131. data/config/locales/lv.yml +12 -1
  132. data/config/locales/mt.yml +1 -0
  133. data/config/locales/nl.yml +13 -5
  134. data/config/locales/no.yml +10 -2
  135. data/config/locales/om-ET.yml +1 -0
  136. data/config/locales/pl.yml +9 -2
  137. data/config/locales/pt-BR.yml +11 -3
  138. data/config/locales/pt.yml +9 -1
  139. data/config/locales/ro-RO.yml +10 -14
  140. data/config/locales/ru.yml +1 -0
  141. data/config/locales/si-LK.yml +1 -0
  142. data/config/locales/sk.yml +12 -1
  143. data/config/locales/sl.yml +1 -0
  144. data/config/locales/so-SO.yml +1 -0
  145. data/config/locales/sr-CS.yml +1 -0
  146. data/config/locales/sv.yml +9 -7
  147. data/config/locales/sw-KE.yml +1 -0
  148. data/config/locales/ti-ER.yml +1 -0
  149. data/config/locales/tr-TR.yml +14 -4
  150. data/config/locales/uk.yml +1 -0
  151. data/config/locales/val-ES.yml +1 -0
  152. data/config/locales/vi.yml +1 -0
  153. data/config/locales/zh-CN.yml +12 -1
  154. data/config/locales/zh-TW.yml +1 -611
  155. data/lib/decidim/conferences/admin_engine.rb +1 -0
  156. data/lib/decidim/conferences/participatory_space.rb +8 -8
  157. data/lib/decidim/conferences/test/factories.rb +1 -5
  158. data/lib/decidim/conferences/version.rb +1 -1
  159. metadata +18 -23
  160. data/config/environment.rb +0 -0
  161. data/config/locales/fa-IR.yml +0 -1
  162. data/config/locales/gn-PY.yml +0 -1
  163. data/config/locales/ka-GE.yml +0 -1
  164. data/config/locales/kaa.yml +0 -20
  165. data/config/locales/lo-LA.yml +0 -1
  166. data/config/locales/oc-FR.yml +0 -1
@@ -1 +1,2 @@
1
+ ---
1
2
  vi:
@@ -1,3 +1,4 @@
1
+ ---
1
2
  zh-CN:
2
3
  activemodel:
3
4
  attributes:
@@ -22,6 +23,12 @@ zh-CN:
22
23
  slogan: 斯洛根文
23
24
  slug: URL 名称
24
25
  title: 标题
26
+ conference_media_link:
27
+ weight: 权重
28
+ conference_partner:
29
+ weight: 权重
30
+ conference_registration_type:
31
+ weight: 权重
25
32
  conference_speaker:
26
33
  full_name: 全名
27
34
  conference_user_role:
@@ -90,6 +97,8 @@ zh-CN:
90
97
  edit:
91
98
  title: 更新会议管理员。
92
99
  update: 更新
100
+ index:
101
+ conference_admins_title: 会议管理员
93
102
  new:
94
103
  create: 创建
95
104
  title: 新的会议管理员。
@@ -328,7 +337,7 @@ zh-CN:
328
337
  invite_join_conference_mailer:
329
338
  invite:
330
339
  decline: 拒绝邀请 '%{conference_title}'
331
- invited_existing_user_to_join_a_conference: "%{invited_by} 邀请您在 %{application}加入会议。您可以拒绝或接受以下链接。"
340
+ invited_you_to_join_a_conference: "%{invited_by} 邀请您在 %{application}加入会议。您可以拒绝或接受以下链接。"
332
341
  registration: 注册%{conference_title}'
333
342
  partners:
334
343
  index:
@@ -360,6 +369,7 @@ zh-CN:
360
369
  conference_program:
361
370
  program_meeting:
362
371
  content: 内容
372
+ location: 地点
363
373
  speakers: 发言者:
364
374
  streaming: 流流
365
375
  show:
@@ -448,6 +458,7 @@ zh-CN:
448
458
  home:
449
459
  highlighted_conferences:
450
460
  active_conferences: 活跃的会议
461
+ see_all_conferences: 查看所有会议
451
462
  photo:
452
463
  image:
453
464
  attributes:
@@ -1,612 +1,2 @@
1
+ ---
1
2
  zh-TW:
2
- activemodel:
3
- attributes:
4
- conference:
5
- assemblies_ids: 相關大會
6
- available_slots: 可用時段
7
- banner_image: 橫幅圖片
8
- consultations_ids: 相關咨詢
9
- copy_categories: 複製類別
10
- copy_components: 複製組件
11
- copy_features: 複製功能
12
- decidim_scope_id: 範圍
13
- description: 說明
14
- end_date: 結束日期
15
- hashtag: 主題標籤
16
- hero_image: 首頁圖片
17
- location: 位置
18
- main_logo: 主要標誌
19
- objectives: 目標
20
- participatory_processes_ids: 相關參與過程
21
- promoted: 重點顯示
22
- published_at: 發佈於
23
- registration_terms: 註冊條款
24
- registrations_enabled: 啟用註冊
25
- scope_id: 範圍
26
- scopes_enabled: 啟用範圍
27
- short_description: 簡短說明
28
- show_statistics: 顯示統計資料
29
- sign_date: 簽到日期
30
- signature: 簽名
31
- signature_name: 簽名檔名稱
32
- slogan: 標語
33
- slug: URL名稱
34
- start_date: 開始日期
35
- title: 標題
36
- conference_media_link:
37
- date: 日期
38
- link: 連結
39
- title: 標題
40
- weight: 排序位置
41
- conference_partner:
42
- link: 連結
43
- logo: 標誌
44
- name: 姓名
45
- partner_type: 夥伴類型
46
- weight: 排序位置
47
- conference_registration_invite:
48
- email: 電子郵件
49
- name: 名稱
50
- registration_type_id: 註冊類型
51
- user_id: 使用者
52
- conference_registration_type:
53
- description: 說明
54
- price: 價格
55
- title: 標題
56
- weight: 排序位置
57
- conference_speaker:
58
- affiliation: 合作關係
59
- avatar: 頭像
60
- conference_meeting_ids: 相關會議
61
- full_name: 全名
62
- personal_url: 個人 URL
63
- position: 職位
64
- short_bio: 簡介
65
- twitter_handle: Twitter 處理
66
- user_id: 使用者
67
- conference_user_role:
68
- email: 電子郵件
69
- name: 名稱
70
- role: 角色
71
- errors:
72
- models:
73
- conference_registration_invite:
74
- attributes:
75
- email:
76
- already_invited: 已發出邀請到此電子郵件
77
- activerecord:
78
- models:
79
- decidim/conference:
80
- other: 研討會
81
- decidim/conference_speaker:
82
- other: 會議講者
83
- decidim/conference_user_role:
84
- other: 會議使用者角色
85
- decidim:
86
- admin:
87
- actions:
88
- confirm: 確認
89
- new_conference: 新的會議
90
- send_diplomas: 發送出席證明書
91
- conference_copies:
92
- new:
93
- copy: 複製
94
- select: 請選擇您想要複製的資料
95
- title: 複製研討會
96
- conference_publications:
97
- create:
98
- error: 發布此研討會時出現問題。
99
- success: 會議成功發佈。
100
- destroy:
101
- error: 取消發佈此會議出現問題。
102
- success: 會議已成功取消發布。
103
- conference_registration:
104
- confirm:
105
- error: 確認此會議註冊時出現問題。
106
- success: 會議註冊已成功確認
107
- conference_speakers:
108
- create:
109
- error: 新增會議講者時發生問題。
110
- success: 會議講者已成功建立。
111
- destroy:
112
- success: 會議講者已成功刪除。
113
- edit:
114
- title: 更新會議講者。
115
- update: 更新
116
- index:
117
- conference_speakers_title: 會議講者
118
- new:
119
- create: 建立
120
- title: 新的會議講者。
121
- update:
122
- error: 更新會議講者時發生問題。
123
- success: 會議講者成功更新。
124
- conference_user_roles:
125
- create:
126
- error: 添加講者至此會議時發生問題。
127
- success: 會議管理員已成功添加。
128
- destroy:
129
- success: 會議管理員已成功刪除。
130
- edit:
131
- title: 更新會議管理員。
132
- update: 更新
133
- index:
134
- conference_admins_title: 會議管理員
135
- new:
136
- create: 創建
137
- title: 新增會議管理員。
138
- update:
139
- error: 更新此會議管理員時發生問題。
140
- success: 已成功更新會議管理員。
141
- conferences:
142
- create:
143
- error: 建立此會議時發生問題。
144
- success: 會議已成功建立。
145
- edit:
146
- update: 更新
147
- exports:
148
- registrations: 註冊
149
- form:
150
- title: 基本資訊
151
- index:
152
- not_published: 未發佈
153
- published: 已發佈
154
- new:
155
- create: 建立
156
- title: 研討會
157
- update:
158
- error: 更新此研討會時發生問題。
159
- success: 研討會更新成功。
160
- conferences_copies:
161
- create:
162
- error: 複製此研討會時發生問題。
163
- success: 研討會複製成功。
164
- media_links:
165
- create:
166
- error: 創建新的媒體連結時出現問題。
167
- success: 媒體連結創建成功。
168
- destroy:
169
- success: 媒體連結成功刪除。
170
- edit:
171
- title: 更新媒體連結。
172
- update: 更新
173
- index:
174
- media_links_title: 媒體連結
175
- new:
176
- create: 創建
177
- title: 媒體連結
178
- update:
179
- error: 更新此媒體連結時出現問題
180
- success: 媒體連結已成功更新。
181
- menu:
182
- conferences: 研討會
183
- conferences_submenu:
184
- attachment_collections: 資料夾
185
- attachment_files: 檔案
186
- attachments: 附件
187
- categories: 類別
188
- components: 组件
189
- conference_admins: 會議管理員
190
- conference_invites: 邀請
191
- conference_speakers: 講者
192
- diploma: 出席證明書
193
- info: 資訊
194
- media_links: 媒體連結
195
- moderations: 版主
196
- partners: 夥伴
197
- registration_types: 註冊類型
198
- registrations: 註冊
199
- user_registrations: 使用者註冊
200
- models:
201
- conference:
202
- fields:
203
- created_at: 建立於
204
- promoted: 重點顯示
205
- published: 已發佈
206
- title: 標題
207
- conference_speaker:
208
- fields:
209
- affiliation: 合作關係
210
- full_name: 全名
211
- position: 職位
212
- name: 會議講者
213
- conference_user_role:
214
- fields:
215
- email: 電子郵件
216
- name: 名稱
217
- role: 角色
218
- name: 會議管理員
219
- roles:
220
- admin: 管理員
221
- collaborator: 合作者
222
- moderator: 版主
223
- valuator: 評價者
224
- media_link:
225
- fields:
226
- date: 日期
227
- link: 連結
228
- title: 標題
229
- name: 媒體連結
230
- partner:
231
- fields:
232
- link: 連結
233
- logo: 標誌
234
- name: 名稱
235
- partner_type: 類別
236
- name: 夥伴
237
- types:
238
- collaborator: 合作者
239
- main_promotor: 主要推動者
240
- registration_type:
241
- fields:
242
- conference_meetings: 會議議程
243
- price: 價格
244
- registrations_count: 註冊人數
245
- title: 標題
246
- weight: 訂單位置
247
- name: 註冊類型
248
- partners:
249
- create:
250
- error: 在新增會議夥伴時出現問題。
251
- success: 成功新增會議夥伴。
252
- destroy:
253
- success: 成功移除會議夥伴。
254
- edit:
255
- title: 更新合作夥伴。
256
- update: 更新
257
- new:
258
- create: 創建
259
- title: 新合夥人
260
- update:
261
- error: 在此會議中更新合作夥伴時出現問題。
262
- success: 成功更新會議夥伴。
263
- registration_type_publications:
264
- create:
265
- error: 發佈此註冊類型時出現問題。
266
- success: 註冊類型已成功發布。
267
- destroy:
268
- error: 取消發佈此註冊類型出現問題。
269
- success: 報名類型已成功取消發佈。
270
- registration_types:
271
- create:
272
- error: 新增此會議的註冊類型時出現問題。
273
- success: 成功新增會議註冊類型
274
- destroy:
275
- success: 此會議的註冊類型成功移除。
276
- edit:
277
- title: 更新註冊類型。
278
- update: 更新
279
- new:
280
- create: 創建
281
- title: 新的註冊類型
282
- update:
283
- error: 更新會議註冊類型時發生問題。
284
- success: 會議註冊類型已成功更新。
285
- titles:
286
- conferences: 研討會
287
- admin_log:
288
- conference:
289
- create: "%{user_name} 建立了 %{resource_name} 會議。"
290
- publish: "%{user_name} 發布了 %{resource_name} 會議。"
291
- send_conference_diplomas: "%{user_name} 傳送了出席 %{resource_name} 會議的出席證明"
292
- unpublish: "%{user_name} 取消發布 %{resource_name} 會議"
293
- update: "%{user_name} 更新了 %{resource_name} 會議"
294
- update_diploma: "%{user_name} 更新了 %{resource_name} 會議的出席證明設定"
295
- conference_speaker:
296
- create: "%{user_name} 在 %{space_name} 會議中建立了 %{resource_name} 演講者"
297
- delete: "%{user_name} 從 %{space_name} 會議中移除了 %{resource_name} 演講者"
298
- update: "%{user_name} 更新了 %{space_name} 會議中的 %{resource_name} 演講者"
299
- conference_user_role:
300
- create: "%{user_name} 邀請 %{resource_name} 參加 %{space_name} 會議"
301
- delete: "%{user_name} 從 %{space_name} 會議中移除了管理員 %{resource_name}"
302
- update: "%{user_name} 在 %{space_name} 會議中更改了 %{resource_name} 的角色"
303
- conferences:
304
- conference_registration:
305
- confirm: "%{user_name} 確認了 %{resource_name} 會議的註冊"
306
- partner:
307
- create: "%{user_name} 在 %{space_name} 會議中創建了夥伴 %{resource_name}"
308
- delete: "%{user_name} 移除了合作夥伴%{resource_name} 於%{space_name} 會議中"
309
- update: "%{user_name} 在%{space_name} 會議中更新了合作夥伴%{resource_name}"
310
- registration_type:
311
- create: "%{user_name} 在%{space_name} 會議中建立了%{resource_name} 的註冊類型"
312
- delete: "%{user_name} 從%{space_name} 會議中刪除了%{resource_name} 的註冊類型"
313
- publish: "%{user_name} 在 %{space_name} 會議中發佈了 %{resource_name} 註冊類型"
314
- unpublish: "%{user_name} 在 %{space_name} 會議中取消發佈了 %{resource_name} 註冊類型"
315
- update: "%{user_name} 在 %{space_name} 會議中更新了 %{resource_name} 註冊類型"
316
- media_link:
317
- create: "%{user_name} 在 %{space_name} 會議中創建了 %{resource_name} 媒體連結"
318
- delete: "%{user_name} 在 %{space_name} 會議中刪除了 %{resource_name} 媒體連結"
319
- update: "%{user_name} 在 %{space_name} 會議中更新了 %{resource_name} 的媒體連結"
320
- conference_program:
321
- index:
322
- title: 節目表
323
- conference_speakers:
324
- index:
325
- title: 講者
326
- conferences:
327
- admin:
328
- conference_copies:
329
- form:
330
- slug_help: 'URL 標識符用於生成指向此會議的 URL。僅接受字母、數字和破折號,並且必須以字母開頭。例如:%{url}'
331
- conference_invites:
332
- create:
333
- error: 邀請參與者加入會議時發生問題。
334
- success: 已成功邀請參與者加入會議。
335
- form:
336
- attendee_type: 參與者類型
337
- existing_user: 現有參與者
338
- invite_explanation: 參與者將被邀請加入會議和組織。
339
- non_user: 不存在的參與者。
340
- select_user: 選擇參與者
341
- index:
342
- filter:
343
- accepted: 已接受
344
- all: 全部
345
- rejected: 已拒絕
346
- sent: 傳送
347
- filter_by: 篩選條件
348
- invite_attendee: 邀請參與者
349
- invites: 邀請
350
- search: 搜尋
351
- new:
352
- explanation: 參與者將會被邀請參加一個會議。如果她的電子郵件未被註冊,她也會被邀請加入該組織。
353
- invite: 邀請
354
- new_invite: 邀請參與者
355
- conference_registrations:
356
- index:
357
- registrations: 註冊
358
- conference_speakers:
359
- form:
360
- existing_user: 現有參與者
361
- non_user: 非參與者
362
- select_user: 選擇參與者
363
- user_type: 參與者類型
364
- index:
365
- search: 搜尋
366
- conferences:
367
- form:
368
- available_slots_help: 如果您有無限的可用名額,請將其設置為0。
369
- registrations_count:
370
- other: 已有 %{count} 個註冊。
371
- slug_help: 'URL 標識符用於生成指向此會議的 URL。僅接受字母、數字和破折號,並且必須以字母開頭。例如:%{url}'
372
- diplomas:
373
- edit:
374
- save: 儲存
375
- title: 出席證明書
376
- invite_join_conference_mailer:
377
- invite:
378
- decline: 拒絕邀請 '%{conference_title}'
379
- invited_existing_user_to_join_a_conference: "%{invited_by} 邀請您加入 %{application} 的會議。您可以通過以下鏈接拒絕或接受邀請。"
380
- invited_user_to_join_a_conference: "%{invited_by} 邀請您加入 %{application} 的會議。您可以通過以下鏈接接受邀請。"
381
- registration: 註冊 '%{conference_title}'
382
- partners:
383
- index:
384
- title: 夥伴
385
- registration_types:
386
- form:
387
- select_conference_meetings: 選擇研討會會議
388
- index:
389
- title: 註冊類型
390
- send_conference_diploma_mailer:
391
- diploma:
392
- diploma_html: 您將在附件中找到會議<a href="%{url}">%{title}</a>的出席證明書。
393
- diploma_user:
394
- attendance_verified_by: 出席驗證
395
- certificate_of_attendance: 出席證明書
396
- certificate_of_attendance_description: 此證明憑證明 <strong>%{user}</strong> 於<strong>%{location}</strong>於<strong>%{start} - %{end}</strong>參加了<strong>%{title}</strong>活動
397
- send_diploma:
398
- error: 發送會議出席證明時發生問題。
399
- success: 成功發送會議出席證明
400
- conference:
401
- registration_confirm:
402
- cancel: 取消
403
- confirm: 確認
404
- show:
405
- free: 免費
406
- going: 正在出席
407
- no_slots_available: 無法預約
408
- registration: 註冊
409
- conference_program:
410
- program_meeting:
411
- content: 內容
412
- location: 位置
413
- speakers: 講者
414
- streaming: 串流直播
415
- show:
416
- day: 日
417
- program: 節目表
418
- conference_registration_mailer:
419
- confirmation:
420
- confirmed_html: 您的 <a href="%{url}">%{title}</a> 會議註冊已確認。
421
- details_1: '您已註冊參加本次 %{registration_type} 報名類型的會議,費用為 %{price},您可以參加以下活動:'
422
- details_2: 有關會議的詳細信息,請參閱附件。
423
- pending_validation:
424
- confirmation_pending: 您將很快收到確認信件
425
- details: '您已註冊 %{registration_type} 方案,費用為 %{price},並可以參加以下活動:'
426
- pending_html: 您註冊了會議 <a href="%{url}">%{title}</a>,目前正在等待確認。
427
- conference_registrations:
428
- create:
429
- invalid: 加入此會議時發生問題。
430
- success: 您已成功加入此會議。
431
- unauthorized: 在註冊會議前,您需要先登錄。
432
- decline_invitation:
433
- invalid: 拒絕邀請出現問題。
434
- success: 您已成功拒絕邀請。
435
- unauthorized: 在拒絕邀請前,您需要先登錄。
436
- destroy:
437
- invalid: 離開此會議時發生問題。
438
- success: 您已成功離開此會議。
439
- conference_speaker:
440
- go_to_twitter: 轉到Twitter
441
- more_info: 更多資訊
442
- personal_website: 個人網址
443
- show:
444
- more_info: 更多資訊
445
- speaking_at: 演講於
446
- conference_speaker_cell:
447
- personal_url:
448
- personal_website: 個人網址
449
- twitter_handle:
450
- go_to_twitter: 轉到Twitter
451
- conference_speakers:
452
- index:
453
- speakers: 講者
454
- conferences:
455
- partners:
456
- collaborators: 夥伴
457
- main_promotors: 組織者
458
- show:
459
- login_as: 您已登入為 %{name} <%{email}>
460
- make_conference_registration: '請在此會議中完成註冊:'
461
- register: 註冊
462
- content_blocks:
463
- highlighted_conferences:
464
- name: 重點會議
465
- index:
466
- title: 研討會
467
- mailer:
468
- conference_registration_mailer:
469
- confirmation:
470
- subject: 您的會議註冊已確認。
471
- pending_validation:
472
- subject: 您的會議註冊正在等待確認。
473
- invite_join_conference_mailer:
474
- invite:
475
- subject: 邀請加入會議
476
- send_conference_diploma_mailer:
477
- diploma:
478
- subject: 您的會議出席證書已經寄送
479
- models:
480
- conference_invite:
481
- fields:
482
- email: 電子郵件
483
- name: 名稱
484
- registration_type: 註冊類型
485
- sent_at: 寄送時間
486
- status: 狀態
487
- status:
488
- accepted: 已接受 (%{at})
489
- rejected: 已拒絕 (%{at})
490
- sent: 傳送
491
- conference_registration:
492
- fields:
493
- email: 電子郵件
494
- name: 名稱
495
- registration_type: 註冊類型
496
- state: 狀態
497
- states:
498
- confirmed: 已確認:
499
- pending: 等待中
500
- pages:
501
- home:
502
- highlighted_conferences:
503
- active_conferences: 正在進行的會議
504
- conferences_button_title: 顯示所有會議的會議頁面連結
505
- photo:
506
- image:
507
- attributes:
508
- alt: 媒體圖片
509
- show:
510
- close_modal: 關閉視窗
511
- photo: 圖片
512
- photos_list:
513
- show:
514
- related_photos: 圖片
515
- registration_types:
516
- index:
517
- choose_an_option: '選擇您的註冊選項:'
518
- login_as: 您已登入為 %{name} <%{email}>
519
- no_registrations: 沒有註冊
520
- register: 登錄
521
- title: 註冊類型
522
- shared:
523
- conference_user_login:
524
- already_account: 你已經在 Decidim 中擁有帳戶了嗎?
525
- new_user: 新用戶?
526
- sign_in: 登入以註冊參加會議
527
- sign_up: 在 Decidim 建立一個帳號以註冊會議。
528
- show:
529
- details: 詳細資料
530
- introduction: 簡介
531
- objectives: 目標
532
- related_assemblies: 相關大會
533
- related_consultations: 相關咨詢
534
- related_participatory_processes: 相關參與過程
535
- events:
536
- conferences:
537
- conference_registration_confirmed:
538
- notification_title: 您的 <a href="%{resource_url}">%{resource_title}</a> 會議註冊已確認。
539
- conference_registration_validation_pending:
540
- notification_title: 您的 <a href="%{resource_url}">%{resource_title}</a> 會議註冊等待確認。
541
- conference_registrations_over_percentage:
542
- email_intro: '%{resource_title}”會議的佔用席位已滿 %{percentage}%'
543
- email_outro: 您收到此通知是因為您是該會議的參與空間的管理員。
544
- email_subject: '%{resource_title}”會議的佔用席位已滿 %{percentage}%'
545
- notification_title: <a href="%{resource_path}">%{resource_title}</a>」會議的佔用名額已達到 %{percentage}%。
546
- conference_updated:
547
- email_intro: '%{resource_title} 會議已更新。您可以在該會議頁面上閱讀新版本:'
548
- email_outro: 您收到此通知是因為您正在追蹤「%{resource_title}」會議。 您可以從上面的連結取消追蹤。
549
- email_subject: '%{resource_title}" 會議已更新。'
550
- notification_title: <a href="%{resource_path}">%{resource_title}</a> 會議已更新。
551
- registrations_enabled:
552
- email_intro: '"%{resource_title}" 會議已開啟註冊。您可以在其頁面上註冊:'
553
- email_outro: 您收到此通知是因為您正在追蹤「%{resource_title}」會議。 您可以從上面的連結取消追蹤。
554
- email_subject: '"%{resource_title}"會議已開放註冊。'
555
- notification_title: <a href="%{resource_path}">%{resource_title}</a>會議已開放註冊。
556
- role_assigned:
557
- email_intro: 你已被指派為"%{resource_title}"會議的%{role}。
558
- email_outro: 你收到了此通知,是因為你是"%{resource_title}"會議的%{role}。
559
- email_subject: 您已被分配為“%{resource_title}”的 %{role}。
560
- notification_title: 你已被指定為<a href="%{resource_url}">%{resource_title}</a>會議的%{role}。
561
- upcoming_conference:
562
- email_intro: '%{resource_title}」會議將於2天後舉行。您可以從其頁面閱讀會議描述:'
563
- email_outro: 您收到此通知是因為您正在追蹤「%{resource_title}」會議。 您可以從上面的連結取消追蹤。
564
- email_subject: '%{resource_title}」會議即將開始!'
565
- notification_title: <a href="%{resource_path}">%{resource_title}</a>」會議將在2天後舉行。
566
- help:
567
- participatory_spaces:
568
- conferences:
569
- contextual: "<p><strong>會議</strong>是一系列按照程序安排的會議集合,邀請了多位演講者和其他典型大型會議或社交活動的信息領域(註冊、支持或贊助該事件的組織列表等)。</p><p>例子:會議可以是一個組織和其成員的重要事件,也可以作為參與過程的一部分或遵循諮詢而發生。</p>\n"
570
- page: "<p><strong>會議</strong>是一系列按照程序安排的會議集合,邀請了多位演講者和其他典型大型會議或社交活動的信息領域(註冊、支持或贊助該事件的組織列表等)。</p><p>例子:會議可以是一個組織和其成員的重要事件,也可以作為參與過程的一部分或遵循諮詢而發生。</p>\n"
571
- title: 什麼是會議
572
- log:
573
- value_types:
574
- conference_presenter:
575
- not_found: '會議在資料庫中找不到(ID: %{id})。'
576
- media:
577
- index:
578
- description: 本會議的連結
579
- title: 媒體與連結
580
- menu:
581
- conferences: 研討會
582
- statistics:
583
- conferences_count: 研討會
584
- devise:
585
- mailer:
586
- join_conference:
587
- subject: 邀請加入會議
588
- layouts:
589
- decidim:
590
- conference_hero:
591
- register: 註冊
592
- conference_widgets:
593
- show:
594
- take_part: 參與
595
- conferences:
596
- conference:
597
- more_info: 更多資訊
598
- take_part: 參與
599
- index:
600
- promoted_conferences: 精選會議
601
- order_by_conferences:
602
- conferences:
603
- other: "%{count} 個會議"
604
- promoted_conference:
605
- more_info: 更多資訊
606
- take_part: 參與
607
- conferences_nav:
608
- conference_menu_item: 訊息
609
- conference_partners_menu_item: 夥伴
610
- conference_speaker_menu_item: 講者
611
- media: 媒體
612
- venues: 場地
@@ -64,6 +64,7 @@ module Decidim
64
64
  resources :imports, only: [:new, :create] do
65
65
  get :example, on: :collection
66
66
  end
67
+ resources :reminders, only: [:new, :create]
67
68
  end
68
69
 
69
70
  resources :moderations do