decidim-debates 0.22.0 → 0.23.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (111) hide show
  1. checksums.yaml +4 -4
  2. data/app/cells/decidim/debates/debate_activity_cell.rb +4 -0
  3. data/app/cells/decidim/debates/debate_m/data.erb +10 -8
  4. data/app/cells/decidim/debates/debate_m/footer.erb +5 -0
  5. data/app/cells/decidim/debates/debate_m_cell.rb +24 -2
  6. data/app/commands/decidim/debates/admin/close_debate.rb +54 -0
  7. data/app/commands/decidim/debates/admin/create_debate.rb +4 -2
  8. data/app/commands/decidim/debates/admin/update_debate.rb +5 -2
  9. data/app/commands/decidim/debates/close_debate.rb +58 -0
  10. data/app/commands/decidim/debates/create_debate.rb +17 -12
  11. data/app/commands/decidim/debates/update_debate.rb +56 -0
  12. data/app/controllers/decidim/debates/admin/debate_closes_controller.rb +43 -0
  13. data/app/controllers/decidim/debates/admin/debates_controller.rb +4 -2
  14. data/app/controllers/decidim/debates/debates_controller.rb +70 -9
  15. data/app/controllers/decidim/debates/orderable.rb +41 -0
  16. data/app/controllers/decidim/debates/versions_controller.rb +16 -0
  17. data/app/controllers/decidim/debates/widgets_controller.rb +19 -0
  18. data/app/events/decidim/debates/close_debate_event.rb +15 -0
  19. data/app/forms/decidim/debates/admin/close_debate_form.rb +34 -0
  20. data/app/forms/decidim/debates/admin/debate_form.rb +5 -1
  21. data/app/forms/decidim/debates/close_debate_form.rb +39 -0
  22. data/app/forms/decidim/debates/debate_form.rb +27 -1
  23. data/app/helpers/decidim/debates/admin/application_helper.rb +13 -0
  24. data/app/helpers/decidim/debates/application_helper.rb +37 -1
  25. data/app/models/decidim/debates/debate.rb +67 -12
  26. data/app/permissions/decidim/debates/admin/permissions.rb +3 -1
  27. data/app/permissions/decidim/debates/permissions.rb +28 -0
  28. data/app/presenters/decidim/debates/admin_log/debate_presenter.rb +6 -2
  29. data/app/presenters/decidim/debates/admin_log/value_types/debate_title_description_presenter.rb +20 -0
  30. data/app/presenters/decidim/debates/debate_presenter.rb +62 -7
  31. data/app/presenters/decidim/debates/log/resource_presenter.rb +18 -0
  32. data/app/presenters/decidim/debates/official_author_presenter.rb +1 -29
  33. data/app/services/decidim/debates/debate_search.rb +13 -23
  34. data/app/services/decidim/debates/diff_renderer.rb +27 -0
  35. data/app/views/decidim/debates/admin/debate_closes/edit.html.erb +17 -0
  36. data/app/views/decidim/debates/admin/debates/_form.html.erb +4 -4
  37. data/app/views/decidim/debates/admin/debates/index.html.erb +7 -1
  38. data/app/views/decidim/debates/debates/_close_debate_modal.html.erb +13 -0
  39. data/app/views/decidim/debates/debates/_debates.html.erb +7 -0
  40. data/app/views/decidim/debates/debates/_filters.html.erb +15 -13
  41. data/app/views/decidim/debates/debates/_form.html.erb +19 -0
  42. data/app/views/decidim/debates/debates/edit.html.erb +24 -0
  43. data/app/views/decidim/debates/debates/new.html.erb +7 -26
  44. data/app/views/decidim/debates/debates/show.html.erb +86 -14
  45. data/app/views/decidim/debates/versions/index.html.erb +8 -0
  46. data/app/views/decidim/debates/versions/show.html.erb +10 -0
  47. data/config/locales/am-ET.yml +1 -0
  48. data/config/locales/ar.yml +2 -1
  49. data/config/locales/bg.yml +15 -0
  50. data/config/locales/ca.yml +70 -1
  51. data/config/locales/cs.yml +70 -1
  52. data/config/locales/da.yml +1 -0
  53. data/config/locales/de.yml +92 -23
  54. data/config/locales/el.yml +2 -1
  55. data/config/locales/en.yml +70 -1
  56. data/config/locales/eo.yml +1 -0
  57. data/config/locales/es-MX.yml +70 -1
  58. data/config/locales/es-PY.yml +70 -1
  59. data/config/locales/es.yml +70 -1
  60. data/config/locales/et.yml +1 -0
  61. data/config/locales/eu.yml +2 -1
  62. data/config/locales/fi-plain.yml +70 -1
  63. data/config/locales/fi.yml +70 -1
  64. data/config/locales/fr-CA.yml +70 -1
  65. data/config/locales/fr.yml +70 -1
  66. data/config/locales/gl.yml +7 -1
  67. data/config/locales/hr.yml +1 -0
  68. data/config/locales/hu.yml +24 -1
  69. data/config/locales/id-ID.yml +2 -1
  70. data/config/locales/is-IS.yml +2 -1
  71. data/config/locales/is.yml +102 -0
  72. data/config/locales/it.yml +33 -1
  73. data/config/locales/ja-JP.yml +63 -20
  74. data/config/locales/ja.yml +221 -0
  75. data/config/locales/ko-KR.yml +1 -0
  76. data/config/locales/ko.yml +1 -0
  77. data/config/locales/lt.yml +1 -0
  78. data/config/locales/{lv-LV.yml → lv.yml} +0 -0
  79. data/config/locales/mt.yml +1 -0
  80. data/config/locales/nl.yml +47 -2
  81. data/config/locales/no.yml +44 -1
  82. data/config/locales/om-ET.yml +1 -0
  83. data/config/locales/pl.yml +58 -6
  84. data/config/locales/pt-BR.yml +2 -1
  85. data/config/locales/pt.yml +18 -1
  86. data/config/locales/ro-RO.yml +18 -1
  87. data/config/locales/ru.yml +2 -1
  88. data/config/locales/si-LK.yml +1 -0
  89. data/config/locales/sk.yml +2 -1
  90. data/config/locales/sl.yml +13 -1
  91. data/config/locales/so-SO.yml +1 -0
  92. data/config/locales/sv.yml +57 -1
  93. data/config/locales/sw-KE.yml +1 -0
  94. data/config/locales/ti-ER.yml +1 -0
  95. data/config/locales/tr-TR.yml +103 -31
  96. data/config/locales/uk.yml +2 -1
  97. data/config/locales/vi-VN.yml +1 -0
  98. data/config/locales/vi.yml +1 -0
  99. data/config/locales/zh-CN.yml +218 -0
  100. data/config/locales/zh-TW.yml +1 -0
  101. data/db/migrate/20200703134657_close_debates.rb +9 -0
  102. data/db/migrate/20200708072042_fix_debates_i18n_fields.rb +48 -0
  103. data/db/migrate/20200716143929_add_endorsable_to_debates.rb +8 -0
  104. data/db/migrate/20200827154116_add_commentable_counter_cache_to_debates.rb +14 -0
  105. data/db/migrate/20200902133452_add_cached_comment_metadata_to_debates.rb +23 -0
  106. data/lib/decidim/debates/admin_engine.rb +3 -1
  107. data/lib/decidim/debates/component.rb +44 -1
  108. data/lib/decidim/debates/engine.rb +7 -1
  109. data/lib/decidim/debates/test/factories.rb +62 -6
  110. data/lib/decidim/debates/version.rb +1 -1
  111. metadata +62 -16
@@ -0,0 +1 @@
1
+ sw:
@@ -0,0 +1 @@
1
+ ti:
@@ -3,6 +3,8 @@ tr:
3
3
  attributes:
4
4
  debate:
5
5
  category_id: Kategori
6
+ closed_at: Kapandı
7
+ conclusions: Sonuçlar
6
8
  decidim_category_id: Kategori
7
9
  description: Açıklama
8
10
  end_time: Biter
@@ -12,6 +14,7 @@ tr:
12
14
  title: Başlık
13
15
  user_group_id: Olarak tartışma oluştur
14
16
  models:
17
+ decidim/debates/close_debate_event: Tartışma kapandı
15
18
  decidim/debates/create_debate_event: tartışma
16
19
  decidim/debates/creation_disabled_event: Tartışmalar devre dışı bırakıldı
17
20
  decidim/debates/creation_enabled_event: Tartışmalar etkin
@@ -25,23 +28,34 @@ tr:
25
28
  debates:
26
29
  actions:
27
30
  create: yaratmak
31
+ endorse: Onayla
28
32
  name: Tartışmalar
29
33
  settings:
30
34
  global:
31
35
  announcement: duyuru
32
36
  comments_enabled: Yorumlar etkin
37
+ comments_max_length: Maksimum yorum uzunluğu (Varsayılan değer için 0 bırakın)
38
+ scope_id: Kapsam
39
+ scopes_enabled: Kapsamlar etkinleştirildi
33
40
  step:
34
41
  announcement: duyuru
35
42
  comments_blocked: Yorumlar engellendi
36
43
  creation_enabled: Katılımcılar tarafından tartışma yaratıldı etkin
44
+ endorsements_blocked: Onaylar engellendi
45
+ endorsements_enabled: Onaylar etkinleştirildi
37
46
  debates:
38
47
  actions:
48
+ close: Kapat
39
49
  confirm_destroy: Emin misiniz?
40
- destroy: silmek
50
+ destroy: Sil
41
51
  edit: Düzenle
42
52
  new: Yeni %{name}
43
53
  title: Eylemler
44
54
  admin:
55
+ debate_closes:
56
+ edit:
57
+ close: Kapat
58
+ title: Tartışmayı kapat
45
59
  debates:
46
60
  create:
47
61
  invalid: Tartışmayı oluştururken bir sorun oluştu.
@@ -61,43 +75,96 @@ tr:
61
75
  success: Tartışma başarıyla güncellendi.
62
76
  models:
63
77
  debate:
64
- name: tartışma
78
+ name: Tartışma
65
79
  admin_log:
66
80
  debate:
67
- create: "%{user_name} , %{space_name} alanda %{resource_name} tartışmasını yarattı"
68
- update: "%{user_name} , %{space_name} uzayda %{resource_name} tartışmasını güncelledi"
81
+ close: "%{user_name}, %{space_name} alanındaki %{resource_name} tartışmasını kapattı"
82
+ create: "%{user_name}, %{space_name} alanındaki %{resource_name} tartışmasını yarattı"
83
+ update: "%{user_name}, %{space_name} alanındaki %{resource_name} tartışmasını güncelledi"
84
+ debate_m:
85
+ commented_time_ago: '%{time} önce yorumlandı'
69
86
  debates:
87
+ close:
88
+ invalid: Tartışmayı kapatırken bir sorun oluştu.
89
+ success: Tartışma başarıyla sonuçlandı.
90
+ close_debate_modal:
91
+ close: Kapat
92
+ description: Bu tartışmanın özeti veya sonucu nedir?
93
+ send: Tartışmayı kapat
94
+ closed: Kapat
70
95
  count:
71
96
  debates_count:
72
97
  one: "%{count} tartışma"
73
- other: "%{count} tartışmalar"
98
+ other: "%{count} tartışma"
74
99
  create:
75
100
  invalid: Tartışmayı oluştururken bir sorun oluştu.
76
101
  success: Tartışma başarıyla oluşturuldu.
77
102
  debate:
78
103
  participate: Katıl
104
+ edit:
105
+ back: Geri
106
+ save: Değişiklikleri kaydet
107
+ title: Tartışmayı düzenleyin
79
108
  filters:
80
- all: Herşey
109
+ activity: Aktivitelerim
110
+ all: Tümü
81
111
  category: Kategori
82
- category_prompt: bir kategori seç
112
+ category_prompt: Bir kategori seç
83
113
  citizens: Vatandaşlar
114
+ commented: Yorum yaptı
115
+ my_debates: Tartışmalarım
84
116
  official: Resmi
85
- origin: Menşei
117
+ origin: Orijin
118
+ scope: Kapsam
86
119
  search: Arama
120
+ state: Statü
121
+ state_values:
122
+ closed: Kapalı
123
+ open: Açık
124
+ user_groups: Gruplar
87
125
  filters_small_view:
88
- close_modal: Kalıcı modal
89
- filter: filtre
90
- filter_by: Tarafından filtre
91
- unfold: açılmak
126
+ close_modal: Pencereyi kapat
127
+ filter: Filtrele
128
+ filter_by: Şuna göre filtrele
129
+ unfold:
130
+ form:
131
+ select_a_category: Lütfen bir kategori seçin
92
132
  index:
93
133
  new_debate: Yeni tartışma
94
134
  new:
95
135
  back: Geri
96
- create: yaratmak
97
- select_a_category: Lütfen bir kategori seçin
136
+ create: Oluştur
98
137
  title: Yeni tartışma
138
+ orders:
139
+ commented: En çok yorum yapılan
140
+ label: Tartışmaların sıralama ölçütü
141
+ random: Rasgele sırala
142
+ recent: En yeni
143
+ updated: Yeni güncellenmiş
144
+ show:
145
+ back: Listeye geri dön
146
+ close_debate: Tartışmayı kapat
147
+ date: Tarih
148
+ debate_closed: Kapalı
149
+ debate_conclusions_are: 'Tartışma bu sonuçlarla %{date} tarihinde kapatıldı:'
150
+ edit_conclusions: Sonuçları düzenleyin
151
+ edit_debate: Tartışmayı düzenle
152
+ groups_count: Gruplar
153
+ last_comment_by: Son yorum
154
+ no_comments_yet: Henüz yorum yok
155
+ participants_count: Katılımcılar
156
+ update:
157
+ invalid: Bu tartışmayı güncellerken bir sorun oluştu.
158
+ success: Tartışma başarıyla güncellendi.
159
+ versions:
160
+ debates:
161
+ back_to_resource: Tartışmaya geri dön
162
+ index:
163
+ title: Sürümler
164
+ versions_list:
165
+ back_to_resource: Tartışmaya geri dön
99
166
  last_activity:
100
- new_debate_at_html: "<span> %{link}</span>yeni tartışma"
167
+ new_debate_at_html: "<span> %{link}</span> linkinde yeni tartışma"
101
168
  models:
102
169
  debate:
103
170
  fields:
@@ -113,33 +180,38 @@ tr:
113
180
  Merhaba,
114
181
  %{space_title} katılımcı alanda yeni bir "%{resource_title}" tartışması oluşturuldu, inceleyin ve katkıda bulunun:
115
182
  email_outro: '%{space_title} katılımcı alanı takip ettiğiniz için bu bildirimi aldınız. Önceki bağlantıyı takip ederek bildirim almayı durdurabilirsiniz.'
116
- email_subject: '%{space_title}yeni tartışma "%{resource_title}"'
117
- notification_title: <a href="%{resource_path}">%{resource_title}</a> tartışması <a href="%{space_path}">%{space_title}</a>oluşturuldu.
183
+ email_subject: '%{space_title} üzerinde yeni tartışma "%{resource_title}"'
184
+ notification_title: <a href="%{resource_path}">%{resource_title} </a> tartışması <a href="%{space_path}">%{space_title} </a> adresinde oluşturuldu.
118
185
  user_followers:
119
186
  email_intro: |-
120
187
  Merhaba,
121
- %{author_name} %{author_nickname}, takip ettiğiniz, yeni bir "%{resource_title}" tartışması yarattı. Şuna bir bakın ve katkıda bulunun:
122
- email_outro: '%{author_nickname}takip ettiğiniz için bu bildirimi aldınız. Önceki bağlantıyı takip ederek bildirim almayı durdurabilirsiniz.'
123
- email_subject: Yeni tartışma "%{resource_title}" ile %{author_nickname}
124
- notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> <a href="%{resource_path}">%{resource_title}</a> tartışmasını yarattı.
188
+ Takip ettiğiniz %{author_name} %{author_nickname}, "%{resource_title}" adlı yeni bir tartışma yarattı. Kontrol edin ve katkıda bulunun:
189
+ email_outro: Bu bildirimi %{author_nickname} adlı kişiyi takip ettiğiniz için aldınız. Önceki bağlantıyı izleyerek bildirim almayı durdurabilirsiniz.
190
+ email_subject: '%{author_nickname} tarafından "%{resource_title}" adlı yeni tartışma'
191
+ notification_title: <a href="%{author_path}">%{author_name} %{author_nickname} </a>, <a href="%{resource_path}">%{resource_title} </a> tartışmasını oluşturdu.
125
192
  creation_disabled:
126
- email_intro: 'Tartışma oluşturma artık %{participatory_space_title}etkin değil. Bu sayfadaki açık tartışmalara hala katılabilirsiniz:'
127
- email_outro: '%{participatory_space_title}takip ettiğiniz için bu bildirimi aldınız. Önceki bağlantıyı takip ederek bildirim almayı durdurabilirsiniz.'
128
- email_subject: Tartışma oluşturma %{participatory_space_title}devre dışı
129
- notification_title: Tartışma oluşturma şimdi <a href="%{participatory_space_url}">%{participatory_space_title}</a>devre dışı bırakıldı
193
+ email_intro: 'Tartışma oluşturma artık %{participatory_space_title} içinde aktif değil. Bu sayfadan hala açık tartışmalara katılabilirsiniz:'
194
+ email_outro: Bu bildirimi, %{participatory_space_title} adlı kişiyi takip ettiğiniz için aldınız. Önceki bağlantıyı izleyerek bildirim almayı durdurabilirsiniz.
195
+ email_subject: '%{participatory_space_title} içinde tartışma oluşturma devre dışı bırakıldı'
196
+ notification_title: Tartışma oluşturma artık <a href="%{participatory_space_url}">%{participatory_space_title} </a> içinde devre dışı bırakıldı
130
197
  creation_enabled:
131
- email_intro: 'Artık %{participatory_space_title}yeni tartışmalara başlayabilirsiniz! Bu sayfaya katılmaya başlayın:'
132
- email_outro: '%{participatory_space_title}takip ettiğiniz için bu bildirimi aldınız. Önceki bağlantıyı takip ederek bildirim almayı durdurabilirsiniz.'
133
- email_subject: Şimdi tartışmalar %{participatory_space_title}
134
- notification_title: Şimdi <a href="%{resource_path}">yeni tartışmaya başlayabilirsiniz.</a> <a href="%{participatory_space_url}">%{participatory_space_title}</a>
198
+ email_intro: 'Artık %{participatory_space_title} içinde yeni tartışmalar başlatabilirsiniz! Bu sayfaya katılmaya başlayın:'
199
+ email_outro: Bu bildirimi, %{participatory_space_title} adlı kişiyi takip ettiğiniz için aldınız. Önceki bağlantıyı izleyerek bildirim almayı durdurabilirsiniz.
200
+ email_subject: Tartışmalar artık %{participatory_space_title} içinde mevcut
201
+ notification_title: Artık <a href="%{participatory_space_url}">%{participatory_space_title} </a> ’de <a href="%{resource_path}"> yeni tartışmalar </a> başlatabilirsiniz
202
+ debate_closed:
203
+ email_intro: '"%{resource_title}" tartışması kapatıldı. Sonuçları sayfasından okuyabilirsiniz:'
204
+ email_outro: Bu bildirimi, "%{resource_title}" tartışmasını takip ettiğiniz için aldınız. Önceki bağlantıdan takibini bırakabilirsiniz.
205
+ email_subject: '"%{resource_title}" tartışması kapatıldı'
206
+ notification_title: <a href="%{resource_path}">%{resource_title} </a> tartışması kapatıldı.
135
207
  gamification:
136
208
  badges:
137
209
  commented_debates:
138
210
  conditions:
139
211
  - Katılmak için açık bir tartışma seçin
140
212
  description: Bu rozet, yorumlarınızı bırakarak farklı tartışmalara aktif olarak katıldığınızda verilir.
141
- description_another: Bu katılımcı %{score} tartışmada yer aldı.
142
- description_own: '%{score} tartışmaya katıldınız.'
213
+ description_another: Bu katılımcı %{score} kez tartışmada yer aldı.
214
+ description_own: '%{score} kez tartışmaya katıldınız.'
143
215
  name: Tartışmalar
144
216
  next_level_in: Bir sonraki seviyeye ulaşmak için %{score} tartışmaya katılın!
145
217
  unearned_another: Bu katılımcı henüz bir tartışmada yer almadı.
@@ -93,12 +93,13 @@ uk:
93
93
  filter: Відібрати
94
94
  filter_by: 'Відібрати за ознакою:'
95
95
  unfold: Розгорнути
96
+ form:
97
+ select_a_category: Будь ласка, виберіть категорію
96
98
  index:
97
99
  new_debate: Додати обговорення
98
100
  new:
99
101
  back: Повернутись
100
102
  create: Започаткувати
101
- select_a_category: Будь ласка, виберіть категорію
102
103
  title: Додати обговорення
103
104
  models:
104
105
  debate:
@@ -0,0 +1 @@
1
+ vi:
@@ -0,0 +1 @@
1
+ vi:
@@ -0,0 +1,218 @@
1
+ zh-CN:
2
+ activemodel:
3
+ attributes:
4
+ debate:
5
+ category_id: 类别
6
+ closed_at: 关闭于
7
+ conclusions: 四. 结论
8
+ decidim_category_id: 类别
9
+ description: 描述
10
+ end_time: 结束于
11
+ information_updates: 信息更新
12
+ instructions: 参与说明
13
+ start_time: 开始于
14
+ title: 标题
15
+ user_group_id: 创建辩论为
16
+ models:
17
+ decidim/debates/close_debate_event: 辩论结束
18
+ decidim/debates/create_debate_event: B. 辩论
19
+ decidim/debates/creation_disabled_event: 已禁用辩论
20
+ decidim/debates/creation_enabled_event: 辩论已启用
21
+ activerecord:
22
+ models:
23
+ decidim/debates/debate:
24
+ other: 辩论
25
+ decidim:
26
+ components:
27
+ debates:
28
+ actions:
29
+ create: 创建
30
+ endorse: 批准
31
+ name: 辩论
32
+ settings:
33
+ global:
34
+ announcement: 通 知
35
+ comments_enabled: 评论已启用
36
+ comments_max_length: 评论最大长度 (默认值留0)
37
+ scope_id: 范围
38
+ scopes_enabled: 范围已启用
39
+ step:
40
+ announcement: 通 知
41
+ comments_blocked: 评论已阻止
42
+ creation_enabled: 参与者创建辩论已启用
43
+ endorsements_blocked: 已阻止授权
44
+ endorsements_enabled: 授权已启用
45
+ debates:
46
+ actions:
47
+ close: 关闭
48
+ confirm_destroy: 您确定吗?
49
+ destroy: 删除
50
+ edit: 编辑
51
+ new: 新建 %{name}
52
+ title: 行动
53
+ admin:
54
+ debate_closes:
55
+ edit:
56
+ close: 关闭
57
+ title: 结束辩论
58
+ debates:
59
+ create:
60
+ invalid: 有一个问题是如何建立辩论。
61
+ success: 辩论成功创建。
62
+ destroy:
63
+ success: 辩论已成功删除。
64
+ edit:
65
+ title: 编辑辩论
66
+ update: 更新辩论
67
+ index:
68
+ title: 辩论
69
+ new:
70
+ create: 创建辩论
71
+ title: 新的辩论
72
+ update:
73
+ invalid: 在更新这次辩论时遇到了问题。
74
+ success: 辩论已成功更新。
75
+ models:
76
+ debate:
77
+ name: B. 辩论
78
+ admin_log:
79
+ debate:
80
+ close: "%{user_name} 关闭了 %{resource_name} 场内的 %{space_name} 个辩论"
81
+ create: "%{user_name} 在 %{space_name} 空间上创建了 %{resource_name} 辩论"
82
+ update: "%{user_name} 更新了 %{resource_name} 场关于 %{space_name} 空间的辩论"
83
+ debate_m:
84
+ commented_time_ago: '%{time} 前发表了评论'
85
+ debates:
86
+ close:
87
+ invalid: 辩论结束时遇到问题。
88
+ success: 辩论已成功结束。
89
+ close_debate_modal:
90
+ close: 关闭
91
+ description: 这次辩论的总结或结束是什么?
92
+ send: 结束辩论
93
+ closed: 已关闭
94
+ count:
95
+ debates_count:
96
+ other: "%{count} 次辩论"
97
+ create:
98
+ invalid: 有一个问题是如何建立辩论。
99
+ success: 辩论成功创建。
100
+ debate:
101
+ participate: 参与
102
+ edit:
103
+ back: 后退
104
+ save: 保存更改
105
+ title: 编辑辩论
106
+ filters:
107
+ activity: 我的活动
108
+ all: 所有的
109
+ category: 类别
110
+ category_prompt: 选择一个类别
111
+ citizens: Citizens
112
+ commented: 已评论
113
+ my_debates: 我的辩论
114
+ official: 官方的
115
+ origin: 始发地
116
+ scope: 范围
117
+ search: 搜索
118
+ state: 状态
119
+ state_values:
120
+ closed: 已关闭
121
+ open: 打开
122
+ user_groups: 群組
123
+ filters_small_view:
124
+ close_modal: 关闭模式
125
+ filter: 筛选器
126
+ filter_by: 筛选方式
127
+ unfold: 展开...
128
+ index:
129
+ new_debate: 新的辩论
130
+ new:
131
+ back: 后退
132
+ create: 创建
133
+ title: 新的辩论
134
+ orders:
135
+ commented: 最多评论
136
+ label: 排序由
137
+ random: 随机顺序
138
+ recent: 最新的
139
+ updated: 最近更新
140
+ show:
141
+ back: 返回列表
142
+ close_debate: 结束辩论
143
+ date: 日期
144
+ debate_closed: 已关闭
145
+ debate_conclusions_are: '辩论在 %{date} 结束后得出以下结论:'
146
+ edit_conclusions: 编辑结论
147
+ edit_debate: 编辑辩论
148
+ groups_count: 群組
149
+ last_comment_by: 最后评论者
150
+ no_comments_yet: 尚无评论
151
+ participants_count: 参加者
152
+ update:
153
+ invalid: 有人在更新辩论时遇到问题。
154
+ success: 辩论已成功更新。
155
+ versions:
156
+ debates:
157
+ back_to_resource: 回到辩论
158
+ index:
159
+ title: 版本
160
+ versions_list:
161
+ back_to_resource: 回到辩论
162
+ last_activity:
163
+ new_debate_at_html: "<span>在 %{link}进行新的辩论</span>"
164
+ models:
165
+ debate:
166
+ fields:
167
+ end_time: 结束日期
168
+ official_debate: 正式辩论
169
+ start_time: 开始日期
170
+ title: 标题
171
+ events:
172
+ debates:
173
+ create_debate_event:
174
+ space_followers:
175
+ email_intro: |-
176
+ 您好,
177
+ 在参与性的 %{space_title} 空间上创建了一个新的辩论"%{resource_title}"。查看它并做出贡献:
178
+ email_outro: 您收到此通知是因为您正在关注 %{space_title} 个参与性空间。您可以停止收到跟随上一个链接的通知。
179
+ email_subject: 在%{resource_title}上的新辩论 " %{space_title}
180
+ notification_title: <a href="%{resource_path}">%{resource_title}</a> 辩论是在 <a href="%{space_path}">%{space_title}</a> 创建的。
181
+ user_followers:
182
+ email_intro: |-
183
+ 你好,
184
+ %{author_name} %{author_nickname}, 你关注的人已经创建了一个新的辩论"%{resource_title}"。看看它并做出贡献:
185
+ email_outro: 您收到此通知是因为您正在关注 %{author_nickname}。您可以停止收到跟随上一个链接的通知。
186
+ email_subject: '%{resource_title}的 %{author_nickname} 新辩论'
187
+ notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> 创建了 <a href="%{resource_path}">%{resource_title}</a> 辩论。
188
+ creation_disabled:
189
+ email_intro: '辩论创建在 %{participatory_space_title}已不再活跃。您仍然可以从这个页面参与公开辩论:'
190
+ email_outro: 您收到此通知是因为您正在关注 %{participatory_space_title}。您可以停止收到跟随上一个链接的通知。
191
+ email_subject: 在 %{participatory_space_title} 中禁用了辩论创建
192
+ notification_title: 辩论创建已在 <a href="%{participatory_space_url}">%{participatory_space_title}禁用</a>
193
+ creation_enabled:
194
+ email_intro: '您现在可以在 %{participatory_space_title}开始新的辩论!开始参与这个页面:'
195
+ email_outro: 您收到此通知是因为您正在关注 %{participatory_space_title}。您可以停止收到跟随上一个链接的通知。
196
+ email_subject: 在 %{participatory_space_title} 中可以使用的辩论
197
+ debate_closed:
198
+ email_intro: '"%{resource_title}"辩论已经关闭。您可以从其页面阅读结论:'
199
+ email_outro: 您收到此通知是因为您正在关注"%{resource_title}"的辩论。您可以从上一个链接取消跟进。
200
+ email_subject: '"%{resource_title}"辩论已关闭'
201
+ notification_title: <a href="%{resource_path}">%{resource_title}</a> 辩论已经结束。
202
+ gamification:
203
+ badges:
204
+ commented_debates:
205
+ conditions:
206
+ - 选择要参与的公开辩论
207
+ description: 当你通过留下评论积极参与不同的辩论时,这个徽章将被授予。
208
+ description_another: 此参与者已经参加了 %{score} 场辩论。
209
+ description_own: 您已经参加了 %{score} 次辩论。
210
+ name: 辩论
211
+ next_level_in: 参加更多的 %{score} 次辩论,以达到下一级!
212
+ unearned_another: 这位与会者尚未参加任何辩论。
213
+ unearned_own: 你还没有参与任何辩论。
214
+ metrics:
215
+ debates:
216
+ description: 创建的辩论数
217
+ object: 辩论情况
218
+ title: 辩论