decidim-debates 0.28.4 → 0.28.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (57) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/decidim/debates/versions_controller.rb +1 -1
  3. data/app/forms/decidim/debates/admin/close_debate_form.rb +1 -1
  4. data/app/forms/decidim/debates/admin/debate_form.rb +3 -3
  5. data/app/models/decidim/debates/debate.rb +0 -5
  6. data/app/permissions/decidim/debates/permissions.rb +2 -0
  7. data/app/views/decidim/debates/debates/_debates.html.erb +1 -1
  8. data/app/views/decidim/debates/debates/index.html.erb +9 -0
  9. data/app/views/decidim/debates/debates/new.html.erb +1 -0
  10. data/config/locales/ar.yml +2 -1
  11. data/config/locales/bg.yml +0 -3
  12. data/config/locales/bn-BD.yml +1 -0
  13. data/config/locales/bs-BA.yml +1 -0
  14. data/config/locales/ca-IT.yml +224 -0
  15. data/config/locales/ca.yml +1 -1
  16. data/config/locales/cs.yml +7 -7
  17. data/config/locales/de.yml +2 -2
  18. data/config/locales/el.yml +1 -3
  19. data/config/locales/en.yml +1 -1
  20. data/config/locales/es-MX.yml +1 -1
  21. data/config/locales/es-PY.yml +1 -1
  22. data/config/locales/es.yml +1 -1
  23. data/config/locales/eu.yml +26 -26
  24. data/config/locales/fi-plain.yml +2 -2
  25. data/config/locales/fi.yml +3 -3
  26. data/config/locales/fr-CA.yml +1 -1
  27. data/config/locales/fr.yml +1 -1
  28. data/config/locales/ga-IE.yml +2 -2
  29. data/config/locales/gl.yml +2 -1
  30. data/config/locales/hu.yml +1 -3
  31. data/config/locales/id-ID.yml +2 -1
  32. data/config/locales/is-IS.yml +5 -1
  33. data/config/locales/it.yml +4 -5
  34. data/config/locales/ja.yml +2 -2
  35. data/config/locales/lb.yml +2 -5
  36. data/config/locales/lt.yml +1 -4
  37. data/config/locales/lv.yml +2 -1
  38. data/config/locales/nl.yml +2 -4
  39. data/config/locales/no.yml +3 -4
  40. data/config/locales/pl.yml +1 -4
  41. data/config/locales/pt-BR.yml +0 -3
  42. data/config/locales/pt.yml +24 -1
  43. data/config/locales/ro-RO.yml +37 -37
  44. data/config/locales/ru.yml +6 -2
  45. data/config/locales/sk.yml +2 -1
  46. data/config/locales/sl.yml +0 -1
  47. data/config/locales/sv.yml +0 -3
  48. data/config/locales/tr-TR.yml +3 -4
  49. data/config/locales/uk.yml +5 -1
  50. data/config/locales/zh-CN.yml +2 -1
  51. data/config/locales/zh-TW.yml +1 -3
  52. data/decidim-debates.gemspec +2 -1
  53. data/lib/decidim/api/debate_type.rb +6 -0
  54. data/lib/decidim/api/debates_type.rb +1 -3
  55. data/lib/decidim/debates/test/factories.rb +6 -0
  56. data/lib/decidim/debates/version.rb +1 -1
  57. metadata +28 -11
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1014bf47f7c5fb46be72dc303423ed78b71269a90b1becd446480add824ea898
4
- data.tar.gz: 4f9a0e04546f6cee8832d9f537bb5322702702a9d9fbb2f87ce57db35d0f1565
3
+ metadata.gz: 21a060d6fd145a276a8b0919dfb15c745a107a76aab46d53a0c5a052445bc9be
4
+ data.tar.gz: 8840a4c0f79d976a41b3bae420faeb42de0b074daec28061777dcb0f96a7a34d
5
5
  SHA512:
6
- metadata.gz: a6a7bb68aaf5b9d718c8d9751d52c8b3eae3c9c0f2667aa75d503e7b6ce6e01f50be2148de11b6d66e3a19d12bf84f61bd4c7503fde30f9a1667ed8d0e131db8
7
- data.tar.gz: 69e51cd50365233ba60704567fa2cf4597b2fc229cc74a01623c0b9bc583ecaafc694fd90d5fee79bb83d8bef8fe2b84e5e90f32925925932e0d8636c95da859
6
+ metadata.gz: 5a5dab0df77082191fe4e3a98d094c0f254f83077326fece1cafdf6775049ff510024004c62f57d9e5ff72f3d4a3e1ec8bc6df2978388e33fb465f79aebe6e06
7
+ data.tar.gz: 4292bd8f946a02d7467ee269bb2c55bd15347e7353a0c322e3c00a22df80ace2da734d861800bf3fdb89ae1dec789525549f360ba772dca71eddacfc522da096
@@ -9,7 +9,7 @@ module Decidim
9
9
  include Decidim::ResourceVersionsConcern
10
10
 
11
11
  def versioned_resource
12
- @versioned_resource ||= present(Debate.where(component: current_component).find(params[:debate_id]))
12
+ @versioned_resource ||= present(Debate.where(component: current_component).not_hidden.find(params[:debate_id]))
13
13
  end
14
14
  end
15
15
  end
@@ -9,7 +9,7 @@ module Decidim
9
9
 
10
10
  mimic :debate
11
11
 
12
- translatable_attribute :conclusions, Decidim::Attributes::CleanString do |translated_attribute, locale|
12
+ translatable_attribute :conclusions, Decidim::Attributes::RichText do |translated_attribute, locale|
13
13
  validates translated_attribute, presence: true, if: ->(record) { record.default_locale?(locale) }
14
14
  validates translated_attribute, length: { minimum: 10, maximum: 10_000 }, if: ->(record) { record.default_locale?(locale) }
15
15
  end
@@ -8,9 +8,9 @@ module Decidim
8
8
  include TranslatableAttributes
9
9
 
10
10
  translatable_attribute :title, String
11
- translatable_attribute :description, String
12
- translatable_attribute :instructions, String
13
- translatable_attribute :information_updates, String
11
+ translatable_attribute :description, Decidim::Attributes::RichText
12
+ translatable_attribute :instructions, Decidim::Attributes::RichText
13
+ translatable_attribute :information_updates, Decidim::Attributes::RichText
14
14
  attribute :start_time, Decidim::Attributes::TimeWithZone
15
15
  attribute :end_time, Decidim::Attributes::TimeWithZone
16
16
  attribute :decidim_category_id, Integer
@@ -74,11 +74,6 @@ module Decidim
74
74
  end_time
75
75
  end
76
76
 
77
- # Public: Overrides the `reported_content_url` Reportable concern method.
78
- def reported_content_url
79
- ResourceLocatorPresenter.new(self).url
80
- end
81
-
82
77
  # Public: Overrides the `reported_attributes` Reportable concern method.
83
78
  def reported_attributes
84
79
  [:title, :description]
@@ -13,6 +13,8 @@ module Decidim
13
13
  case permission_action.action
14
14
  when :create
15
15
  toggle_allow(can_create_debate?)
16
+ when :read
17
+ toggle_allow(!debate.hidden?)
16
18
  when :report
17
19
  allow!
18
20
  when :edit
@@ -1,7 +1,7 @@
1
1
  <% if debates.empty? %>
2
2
  <%= cell("decidim/announcement", params[:filter].present? ? t(".empty_filters") : t(".empty")) %>
3
3
  <% else %>
4
- <h2 class="h5 md:h3 decorator"><%= t("debates_count", scope: "decidim.debates.debates.count", count: paginated_debates.total_count) %></h2>
4
+ <h2 class="h5 md:h3 decorator" aria-live="polite" aria-atomic="true"><%= t("debates_count", scope: "decidim.debates.debates.count", count: paginated_debates.total_count) %></h2>
5
5
 
6
6
  <%= order_selector available_orders, i18n_scope: "decidim.debates.debates.orders" %>
7
7
 
@@ -1,3 +1,12 @@
1
+ <% add_decidim_meta_tags(
2
+ description: translated_attribute(current_participatory_space.short_description),
3
+ title: t("decidim.components.pagination.page_title",
4
+ component_name:,
5
+ current_page: paginated_debates.current_page,
6
+ total_pages: paginated_debates.total_pages ),
7
+ url: debates_url,
8
+ resource: current_component) %>
9
+
1
10
  <% content_for :aside do %>
2
11
  <h1 class="title-decorator"><%= component_name %></h1>
3
12
 
@@ -1,3 +1,4 @@
1
+ <% add_decidim_page_title(t("title", scope: "decidim.debates.debates.new")) %>
1
2
  <%= render layout: "layouts/decidim/shared/layout_center" do %>
2
3
  <div class="text-center py-10">
3
4
  <h1 class="title-decorator inline-block text-left">
@@ -88,6 +88,7 @@ ar:
88
88
  origin: الأصل
89
89
  participants: المشاركون
90
90
  search: بحث
91
+ user_group: الفِرَق
91
92
  form:
92
93
  select_a_category: الرجاء تحديد الفئة
93
94
  index:
@@ -95,8 +96,8 @@ ar:
95
96
  new:
96
97
  back: الى الخلف
97
98
  create: إنشاء
98
- title: نقاش جديد
99
99
  show:
100
+ edit_debate: تحرير النقاش
100
101
  groups_count: الفِرَق
101
102
  participants_count: المشاركون
102
103
  models:
@@ -80,8 +80,6 @@ bg:
80
80
  update:
81
81
  invalid: Възникна проблем при актуализирането на този дебат.
82
82
  success: Дебатът беше актуализиран успешно.
83
- exports:
84
- comments: Коментари
85
83
  admin_log:
86
84
  debate:
87
85
  close: "%{user_name} затвори дебата %{resource_name} в пространството %{space_name}"
@@ -134,7 +132,6 @@ bg:
134
132
  new:
135
133
  back: Назад
136
134
  create: Създаване
137
- title: Нов дебат
138
135
  orders:
139
136
  commented: Най-коментирани
140
137
  label: Подреждане на дебатите по
@@ -0,0 +1 @@
1
+ bn:
@@ -0,0 +1 @@
1
+ bs:
@@ -0,0 +1,224 @@
1
+ ---
2
+ ca-IT:
3
+ activemodel:
4
+ attributes:
5
+ debate:
6
+ category_id: Categoria
7
+ closed_at: Tancat el
8
+ conclusions: Conclusions
9
+ decidim_category_id: Categoria
10
+ description: Descripció
11
+ end_time: Data de finalització
12
+ information_updates: Actualitzacions d'informació
13
+ instructions: Instruccions per participar
14
+ scope_id: Àmbit
15
+ start_time: Data d'inici
16
+ title: Títol
17
+ user_group_id: Crea un debat com
18
+ models:
19
+ decidim/debates/close_debate_event: Debat tancat
20
+ decidim/debates/create_debate_event: Debat
21
+ decidim/debates/creation_disabled_event: Debats deshabilitats
22
+ decidim/debates/creation_enabled_event: Creació de debats activada
23
+ activerecord:
24
+ models:
25
+ decidim/debates/debate:
26
+ one: Debat
27
+ other: Debats
28
+ decidim:
29
+ components:
30
+ debates:
31
+ actions:
32
+ comment: Comentar
33
+ create: Crear
34
+ endorse: Adherir-se
35
+ name: Debats
36
+ settings:
37
+ global:
38
+ announcement: Avís
39
+ comments_enabled: Comentaris habilitats
40
+ comments_max_length: Longitud màxima dels comentaris (deixa 0 si vols mantenir la configuració per defecte)
41
+ scope_id: Àmbit
42
+ scopes_enabled: Àmbits habilitats
43
+ step:
44
+ announcement: Avís
45
+ comments_blocked: Comentaris bloquejats
46
+ creation_enabled: Les participants poden crear debats
47
+ endorsements_blocked: Adhesions bloquejades
48
+ endorsements_enabled: Adhesions habilitades
49
+ debates:
50
+ actions:
51
+ close: Tanca
52
+ confirm_destroy: Segur?
53
+ destroy: Suprimeix
54
+ edit: Edita
55
+ new: Afegir debat
56
+ title: Accions
57
+ admin:
58
+ debate_closes:
59
+ edit:
60
+ close: Tanca
61
+ title: Tancar el debat
62
+ debates:
63
+ create:
64
+ invalid: S'ha produït un error en crear el debat.
65
+ success: Debat creat correctament.
66
+ destroy:
67
+ success: Debat eliminat correctament.
68
+ edit:
69
+ title: Editar debat
70
+ update: Actualitzar debat
71
+ form:
72
+ debate_type: Tipus de debat
73
+ finite: Finit (amb moments d'inici i de fi)
74
+ open: Obert (sense moments d'inici ni de fi)
75
+ index:
76
+ title: Debats
77
+ new:
78
+ create: Crea un debat
79
+ title: Nou debat
80
+ update:
81
+ invalid: S'ha produït un error en actualitzar aquest debat.
82
+ success: Debate actualizado correctament.
83
+ exports:
84
+ comments: Comentaris
85
+ admin_log:
86
+ debate:
87
+ close: "La participant %{user_name} ha tancat el debat %{resource_name} a l'espai %{space_name}"
88
+ create: "La participant %{user_name} ha creat el debat %{resource_name} a l'espai %{space_name}"
89
+ update: "La participant %{user_name} ha actualitzat el debat %{resource_name} a l'espai %{space_name}"
90
+ debate_m:
91
+ commented_time_ago: Comentat fa %{time}
92
+ debates:
93
+ close:
94
+ invalid: S'ha produït un error en tancar el debat.
95
+ success: Debat tancat correctament.
96
+ close_debate_modal:
97
+ cancel: Cancel·lar
98
+ description: Quin és el resum o conclusions d'aquest debat?
99
+ send: Tancar el debat
100
+ count:
101
+ debates_count:
102
+ one: "%{count} debat"
103
+ other: "%{count} debats"
104
+ create:
105
+ invalid: S'ha produït un error en crear el debat.
106
+ success: Debat creat correctament.
107
+ debates:
108
+ empty: Encara no hi ha cap debat.
109
+ empty_filters: No hi ha cap debat amb aquest criteri.
110
+ edit:
111
+ back: Enrere
112
+ save: Guardar canvis
113
+ title: Editar debat
114
+ filters:
115
+ activity: La meva activitat
116
+ all: Tots
117
+ category: Categoria
118
+ category_prompt: Selecciona una categoria
119
+ commented: Comentat
120
+ my_debates: Els meus debats
121
+ official: Oficial
122
+ origin: Origen
123
+ participants: Participants
124
+ search: Cerca
125
+ state: Estat
126
+ state_values:
127
+ closed: Tancat
128
+ open: Obert
129
+ user_group: Grups
130
+ form:
131
+ select_a_category: Si us plau, selecciona una categoria
132
+ index:
133
+ new_debate: Nou debat
134
+ new:
135
+ back: Torna
136
+ create: Crear
137
+ title: Crear un debat
138
+ orders:
139
+ commented: Més comentats
140
+ label: Ordenar debats per
141
+ random: Ordre aleatori
142
+ recent: Més recents
143
+ updated: Recentment actualitzats
144
+ show:
145
+ close_debate: Tancar el debat
146
+ debate_closed: Tancat
147
+ debate_conclusions_are: 'El debat es va tancar el %{date} amb aquestes conclusions:'
148
+ edit_conclusions: Editar conclusions
149
+ edit_debate: Editar debat
150
+ groups_count: Grups
151
+ open: Debat obert
152
+ participants_count: Participants
153
+ update:
154
+ invalid: S'ha produït un error en actualitzar aquest debat.
155
+ success: Debat actualitzat correctament.
156
+ last_activity:
157
+ debate_updated: 'Debat actualitzat:'
158
+ new_debate: 'Nou debat:'
159
+ models:
160
+ debate:
161
+ fields:
162
+ end: Finalitza
163
+ end_time: Data de finalització
164
+ official_debate: Debat oficial
165
+ start: Comença
166
+ start_time: Data d'inici
167
+ title: Títol
168
+ events:
169
+ debates:
170
+ create_debate_event:
171
+ space_followers:
172
+ email_intro: |-
173
+ Hola,
174
+ S'ha creat un nou debat "%{resource_title}" a l'espai participatiu %{participatory_space_title}, dona-hi una ullada i contribueix-hi:
175
+ email_outro: Has rebut aquesta notificació perquè estàs seguint l'espai "%{participatory_space_title}". Pots deixar de rebre notificacions des de l'enllaç anterior.
176
+ email_subject: Nou debat "%{resource_title}" a %{participatory_space_title}
177
+ notification_title: S'ha creat el debat <a href="%{resource_path}">%{resource_title}</a> a <a href="%{participatory_space_url}">%{participatory_space_title}</a>.
178
+ user_followers:
179
+ email_intro: |-
180
+ Hola,
181
+ %{author_name} %{author_nickname}, a qui segueixes, ha creat un nou debat "%{resource_title}". Consulta i contribueix:
182
+ email_outro: Has rebut aquesta notificació perquè estàs seguint %{author_nickname}. Pots deixar de rebre notificacions seguint l'enllaç anterior.
183
+ email_subject: Nou debat "%{resource_title}" de %{author_nickname}
184
+ notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> ha creat el debat <a href="%{resource_path}">%{resource_title}</a>.
185
+ creation_disabled:
186
+ email_intro: 'La creació de debats ja no està activa a %{participatory_space_title}. Encara pots participar en debats oberts des d''aquesta pàgina:'
187
+ email_outro: Has rebut aquesta notificació perquè estàs seguint l'espai "%{participatory_space_title}". Pots deixar de rebre notificacions seguint l'enllaç anterior.
188
+ email_subject: S'ha desactivat la creació de debats a %{participatory_space_title}
189
+ notification_title: La creació de debats està deshabilitada a l'espai <a href="%{participatory_space_url}">%{participatory_space_title}</a>
190
+ creation_enabled:
191
+ email_intro: 'Ja pots crear nous debats a %{participatory_space_title}! Comença a participar en aquesta pàgina:'
192
+ email_outro: Has rebut aquesta notificació perquè estàs seguint l'espai "%{participatory_space_title}". Pots deixar de rebre notificacions seguint l'enllaç anterior.
193
+ email_subject: Els debats ja estan disponibles a %{participatory_space_title}
194
+ notification_title: Ara pots començar <a href="%{resource_path}">nous debats</a> a <a href="%{participatory_space_url}">%{participatory_space_title}</a>.
195
+ debate_closed:
196
+ affected_user:
197
+ email_intro: 'El debat "%{resource_title}" s''ha tancat. Podeu llegir-ne les conclusions a la seva pàgina:'
198
+ email_outro: Has rebut aquesta notificació perquè estàs seguint el debat "%{resource_title}". Pots deixar-la de seguir des de l'enllaç anterior.
199
+ email_subject: El debat "%{resource_title}" s'ha tancat
200
+ notification_title: El debat <a href="%{resource_path}">%{resource_title}</a> s'ha tancat.
201
+ follower:
202
+ email_intro: 'El debat "%{resource_title}" s''ha tancat. Podeu llegir-ne les conclusions a la seva pàgina:'
203
+ email_outro: Has rebut aquesta notificació perquè estàs seguint el debat "%{resource_title}". Pots deixar-la de seguir des de l'enllaç anterior.
204
+ email_subject: El debat "%{resource_title}" s'ha tancat
205
+ notification_title: El debat <a href="%{resource_path}">%{resource_title}</a> s'ha tancat.
206
+ gamification:
207
+ badges:
208
+ commented_debates:
209
+ conditions:
210
+ - Tria un debat obert per participar
211
+ description: Aquest distintiu es desbloqueja quan participes activament en els diferents debats deixant els teus comentaris.
212
+ description_another: Aquesta participant ha pres part en %{score} debats.
213
+ description_own: Has participat en %{score} debats.
214
+ name: Debats
215
+ next_level_in: Participa en %{score} debats més per arribar al següent nivell!
216
+ unearned_another: Aquesta participant encara no ha participat en cap debat.
217
+ unearned_own: Encara no has participat a cap debat.
218
+ metrics:
219
+ debates:
220
+ description: Nombre de debats creats
221
+ object: debats
222
+ title: Debats
223
+ statistics:
224
+ debates_count: Debats
@@ -134,7 +134,7 @@ ca:
134
134
  new:
135
135
  back: Torna
136
136
  create: Crear
137
- title: Nou debat
137
+ title: Crear un debat
138
138
  orders:
139
139
  commented: Més comentats
140
140
  label: Ordenar debats per
@@ -23,10 +23,10 @@ cs:
23
23
  activerecord:
24
24
  models:
25
25
  decidim/debates/debate:
26
- one: Rozprava
26
+ one: Debata
27
27
  few: Debaty
28
- many: Debaty
29
- other: Debaty
28
+ many: Debat
29
+ other: Debat
30
30
  decidim:
31
31
  components:
32
32
  debates:
@@ -121,7 +121,7 @@ cs:
121
121
  category: Kategorie
122
122
  category_prompt: Vyberte kategorii
123
123
  commented: Okomentováno
124
- my_debates: Moje rozpravy
124
+ my_debates: Moje debaty
125
125
  official: Oficiální
126
126
  origin: Původ
127
127
  participants: Účastníci
@@ -138,10 +138,10 @@ cs:
138
138
  new:
139
139
  back: Zpět
140
140
  create: Vytvořit
141
- title: Nová debata
141
+ title: Vytvořit novou debatu
142
142
  orders:
143
143
  commented: Nejvíce komentované
144
- label: Řazení rozprav podle
144
+ label: Řazení debat podle
145
145
  random: Náhodné pořadí
146
146
  recent: Nejnovější
147
147
  updated: Naposledy aktualizované
@@ -155,7 +155,7 @@ cs:
155
155
  open: Otevřená diskuse
156
156
  participants_count: Účastníci
157
157
  update:
158
- invalid: Při aktualizaci rozpravy došlo k chybě.
158
+ invalid: Při aktualizaci debaty došlo k chybě.
159
159
  success: Debata byla úspěšně aktualizována.
160
160
  last_activity:
161
161
  debate_updated: 'Debata aktualizována:'
@@ -11,7 +11,7 @@ de:
11
11
  end_time: Endet am
12
12
  information_updates: Informationsaktualisierungen
13
13
  instructions: Anweisungen zur Teilnahme
14
- scope_id: Themenbereich
14
+ scope_id: Bereich
15
15
  start_time: Startet um
16
16
  title: Titel
17
17
  user_group_id: Debatte erstellen als
@@ -134,7 +134,7 @@ de:
134
134
  new:
135
135
  back: Zurück
136
136
  create: Erstellen
137
- title: Neue Debatte
137
+ title: Debatte erstellen
138
138
  orders:
139
139
  commented: Am meisten kommentiert
140
140
  label: Debatten sortieren nach
@@ -79,8 +79,6 @@ el:
79
79
  update:
80
80
  invalid: Υπήρξε ένα πρόβλημα κατά την ενημέρωση αυτής της συζήτησης.
81
81
  success: Η συζήτηση ενημερώθηκε με επιτυχία.
82
- exports:
83
- comments: Σχόλια
84
82
  admin_log:
85
83
  debate:
86
84
  close: "Ο/Η %{user_name} έκλεισε τον διάλογο %{resource_name} στον χώρο %{space_name}"
@@ -121,6 +119,7 @@ el:
121
119
  state_values:
122
120
  closed: Κλειστό
123
121
  open: Άνοιγμα
122
+ user_group: Ομάδες
124
123
  form:
125
124
  select_a_category: Please select a category
126
125
  index:
@@ -128,7 +127,6 @@ el:
128
127
  new:
129
128
  back: Πίσω
130
129
  create: Δημιουργία
131
- title: Νέα συζήτηση
132
130
  orders:
133
131
  commented: Πιο σχολιασμένα
134
132
  label: Ταξινόμηση συζητήσεων κατά
@@ -134,7 +134,7 @@ en:
134
134
  new:
135
135
  back: Back
136
136
  create: Create
137
- title: New debate
137
+ title: Create new debate
138
138
  orders:
139
139
  commented: Most commented
140
140
  label: Order debates by
@@ -134,7 +134,7 @@ es-MX:
134
134
  new:
135
135
  back: Volver
136
136
  create: Crear
137
- title: Nuevo debate
137
+ title: Crear un debate
138
138
  orders:
139
139
  commented: Más comentados
140
140
  label: Ordenar debates por
@@ -130,7 +130,7 @@ es-PY:
130
130
  new:
131
131
  back: Volver
132
132
  create: Crear
133
- title: Nuevo debate
133
+ title: Crear un debate
134
134
  orders:
135
135
  commented: Más comentados
136
136
  label: Ordenar debates por
@@ -134,7 +134,7 @@ es:
134
134
  new:
135
135
  back: Volver
136
136
  create: Crear
137
- title: Nuevo debate
137
+ title: Crear un debate
138
138
  orders:
139
139
  commented: Más comentados
140
140
  label: Ordenar debates por