decidim-debates 0.27.10 → 0.28.0.rc4

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 (101) hide show
  1. checksums.yaml +4 -4
  2. data/app/cells/decidim/debates/debate_activity_cell.rb +1 -12
  3. data/app/cells/decidim/debates/debate_card_metadata_cell.rb +43 -0
  4. data/app/cells/decidim/debates/debate_cell.rb +6 -1
  5. data/app/cells/decidim/debates/debate_l_cell.rb +49 -0
  6. data/app/cells/decidim/debates/debate_s_cell.rb +21 -0
  7. data/app/commands/decidim/debates/admin/close_debate.rb +1 -1
  8. data/app/commands/decidim/debates/close_debate.rb +1 -1
  9. data/app/commands/decidim/debates/create_debate.rb +13 -4
  10. data/app/commands/decidim/debates/update_debate.rb +15 -2
  11. data/app/controllers/decidim/debates/admin/debate_closes_controller.rb +2 -2
  12. data/app/controllers/decidim/debates/admin/debates_controller.rb +5 -5
  13. data/app/controllers/decidim/debates/debates_controller.rb +7 -9
  14. data/app/events/decidim/debates/close_debate_event.rb +1 -1
  15. data/app/events/decidim/debates/create_debate_event.rb +15 -1
  16. data/app/forms/decidim/debates/admin/close_debate_form.rb +1 -1
  17. data/app/forms/decidim/debates/close_debate_form.rb +2 -2
  18. data/app/forms/decidim/debates/debate_form.rb +2 -2
  19. data/app/helpers/decidim/debates/application_helper.rb +42 -17
  20. data/app/jobs/decidim/debates/hide_all_created_by_author_job.rb +13 -0
  21. data/app/jobs/decidim/debates/settings_change_job.rb +2 -2
  22. data/app/models/decidim/debates/debate.rb +4 -10
  23. data/app/packs/entrypoints/decidim_debates.js +2 -0
  24. data/app/packs/images/decidim/gamification/badges/decidim_gamification_badges_commented_debates.svg +42 -1
  25. data/app/permissions/decidim/debates/permissions.rb +0 -6
  26. data/app/presenters/decidim/debates/admin_log/debate_presenter.rb +6 -2
  27. data/app/presenters/decidim/debates/admin_log/value_types/debate_title_description_presenter.rb +1 -1
  28. data/app/presenters/decidim/debates/log/resource_presenter.rb +18 -0
  29. data/app/views/decidim/debates/admin/debate_closes/edit.html.erb +26 -14
  30. data/app/views/decidim/debates/admin/debates/_form.html.erb +40 -39
  31. data/app/views/decidim/debates/admin/debates/edit.html.erb +16 -6
  32. data/app/views/decidim/debates/admin/debates/index.html.erb +60 -58
  33. data/app/views/decidim/debates/admin/debates/new.html.erb +16 -6
  34. data/app/views/decidim/debates/debates/_close_debate_modal.html.erb +22 -11
  35. data/app/views/decidim/debates/debates/_debates.html.erb +5 -6
  36. data/app/views/decidim/debates/debates/_form.html.erb +10 -19
  37. data/app/views/decidim/debates/debates/edit.html.erb +16 -20
  38. data/app/views/decidim/debates/debates/index.html.erb +19 -23
  39. data/app/views/decidim/debates/debates/index.js.erb +3 -4
  40. data/app/views/decidim/debates/debates/new.html.erb +16 -20
  41. data/app/views/decidim/debates/debates/show.html.erb +106 -109
  42. data/app/views/decidim/debates/versions/show.html.erb +15 -6
  43. data/config/locales/ar.yml +7 -17
  44. data/config/locales/bg.yml +0 -231
  45. data/config/locales/ca.yml +14 -35
  46. data/config/locales/cs.yml +13 -34
  47. data/config/locales/de.yml +14 -35
  48. data/config/locales/el.yml +10 -28
  49. data/config/locales/en.yml +13 -34
  50. data/config/locales/es-MX.yml +12 -33
  51. data/config/locales/es-PY.yml +13 -34
  52. data/config/locales/es.yml +15 -36
  53. data/config/locales/eu.yml +16 -37
  54. data/config/locales/fi-plain.yml +12 -33
  55. data/config/locales/fi.yml +14 -35
  56. data/config/locales/fr-CA.yml +14 -35
  57. data/config/locales/fr.yml +14 -35
  58. data/config/locales/ga-IE.yml +0 -15
  59. data/config/locales/gl.yml +7 -16
  60. data/config/locales/hu.yml +13 -32
  61. data/config/locales/id-ID.yml +7 -15
  62. data/config/locales/is-IS.yml +3 -9
  63. data/config/locales/it.yml +7 -31
  64. data/config/locales/ja.yml +13 -37
  65. data/config/locales/lb.yml +7 -25
  66. data/config/locales/lt.yml +14 -29
  67. data/config/locales/lv.yml +6 -17
  68. data/config/locales/nl.yml +7 -28
  69. data/config/locales/no.yml +7 -31
  70. data/config/locales/pl.yml +12 -38
  71. data/config/locales/pt-BR.yml +7 -39
  72. data/config/locales/pt.yml +7 -31
  73. data/config/locales/ro-RO.yml +10 -29
  74. data/config/locales/ru.yml +3 -12
  75. data/config/locales/sk.yml +6 -17
  76. data/config/locales/sl.yml +0 -3
  77. data/config/locales/sr-CS.yml +0 -6
  78. data/config/locales/sv.yml +34 -54
  79. data/config/locales/tr-TR.yml +6 -38
  80. data/config/locales/uk.yml +3 -12
  81. data/config/locales/zh-CN.yml +7 -29
  82. data/config/locales/zh-TW.yml +9 -28
  83. data/lib/decidim/debates/component.rb +4 -88
  84. data/lib/decidim/debates/engine.rb +29 -7
  85. data/lib/decidim/debates/seeds.rb +104 -0
  86. data/lib/decidim/debates/test/factories.rb +19 -14
  87. data/lib/decidim/debates/version.rb +1 -1
  88. metadata +29 -30
  89. data/app/cells/decidim/debates/debate_m/data.erb +0 -10
  90. data/app/cells/decidim/debates/debate_m/footer.erb +0 -10
  91. data/app/cells/decidim/debates/debate_m/multiple_dates.erb +0 -17
  92. data/app/cells/decidim/debates/debate_m/open_date.erb +0 -7
  93. data/app/cells/decidim/debates/debate_m/single_date.erb +0 -9
  94. data/app/cells/decidim/debates/debate_m/tags.erb +0 -1
  95. data/app/cells/decidim/debates/debate_m_cell.rb +0 -86
  96. data/app/controllers/decidim/debates/widgets_controller.rb +0 -29
  97. data/app/views/decidim/debates/debates/_count.html.erb +0 -1
  98. data/app/views/decidim/debates/debates/_filters.html.erb +0 -34
  99. data/app/views/decidim/debates/debates/_filters_small_view.html.erb +0 -18
  100. data/config/locales/he-IL.yml +0 -1
  101. data/decidim-debates.gemspec +0 -32
@@ -52,7 +52,6 @@ el:
52
52
  confirm_destroy: Είστε βέβαιοι;
53
53
  destroy: Διαγραφή
54
54
  edit: Επεξεργασία
55
- new: Νέο όνομα %{name}
56
55
  title: Ενέργειες
57
56
  admin:
58
57
  debate_closes:
@@ -82,9 +81,6 @@ el:
82
81
  success: Η συζήτηση ενημερώθηκε με επιτυχία.
83
82
  exports:
84
83
  comments: Σχόλια
85
- models:
86
- debate:
87
- name: Συζήτηση
88
84
  admin_log:
89
85
  debate:
90
86
  close: "Ο/Η %{user_name} έκλεισε τον διάλογο %{resource_name} στον χώρο %{space_name}"
@@ -97,10 +93,8 @@ el:
97
93
  invalid: Υπήρξε ένα πρόβλημα κατά το κλείσιμο της συζήτησης.
98
94
  success: Η συζήτηση έκλεισε επιτυχώς.
99
95
  close_debate_modal:
100
- close: Κλείσιμο
101
96
  description: Ποια είναι η περίληψη ή το συμπέρασμα αυτής της συζήτησης;
102
97
  send: Κλείσιμο συζήτησης
103
- closed: Κλειστό
104
98
  count:
105
99
  debates_count:
106
100
  one: "%{count} συζήτηση"
@@ -108,8 +102,6 @@ el:
108
102
  create:
109
103
  invalid: Υπήρξε ένα πρόβλημα κατά τη δημιουργία της συζήτησης.
110
104
  success: Η συζήτηση δημιουργήθηκε με επιτυχία.
111
- debate:
112
- participate: Συμμετοχή
113
105
  edit:
114
106
  back: Πίσω
115
107
  save: Αποθήκευση αλλαγών
@@ -124,18 +116,11 @@ el:
124
116
  official: Επίσημη
125
117
  origin: Προέλευση
126
118
  participants: Συμμετέχοντες
127
- scope: Πεδίο εφαρμογής
128
119
  search: Αναζήτηση
129
120
  state: Κατάσταση
130
121
  state_values:
131
122
  closed: Κλειστό
132
123
  open: Άνοιγμα
133
- user_groups: Ομάδες
134
- filters_small_view:
135
- close_modal: Κλείσιμο βοηθητικού στοιχείου
136
- filter: Φίλτρο
137
- filter_by: Φιλτράρισμα κατά
138
- unfold: Αποκάλυψη
139
124
  form:
140
125
  select_a_category: Please select a category
141
126
  index:
@@ -151,30 +136,20 @@ el:
151
136
  recent: Πιο πρόσφατες
152
137
  updated: Πρόσφατα ενημερωμένες
153
138
  show:
154
- back: Επιστροφή στη λίστα
155
139
  close_debate: Κλείσιμο συζήτησης
156
- date: Ημερομηνία
157
140
  debate_closed: Κλειστό
158
141
  debate_conclusions_are: 'Η συζήτηση έκλεισε στις %{date} με αυτά τα συμπεράσματα:'
159
142
  edit_conclusions: Επεξεργασία συμπερασμάτων
160
143
  edit_debate: Επεξεργασία συζήτησης
161
144
  groups_count: Ομάδες
162
- last_comment_by: Τελευταίο σχόλιο από
163
- no_comments_yet: Κανένα σχόλιο ακόμα
164
145
  open: Άνοιγμα συζήτησης
165
146
  participants_count: Συμμετέχοντες
166
147
  update:
167
148
  invalid: Υπήρξε ένα πρόβλημα κατά την ενημέρωση της συζήτησης.
168
149
  success: Η συζήτηση ενημερώθηκε επιτυχώς.
169
- versions:
170
- debates:
171
- back_to_resource: Επιστροφή στη συζήτηση
172
- index:
173
- title: Εκδόσεις
174
- versions_list:
175
- back_to_resource: Επιστροφή στη συζήτηση
176
150
  last_activity:
177
- new_debate_at_html: "<span>Νέα συζήτηση στο %{link}</span>"
151
+ debate_updated: 'Ενημέρωση συζήτησης:'
152
+ new_debate: 'Νέα συζήτηση:'
178
153
  models:
179
154
  debate:
180
155
  fields:
@@ -185,6 +160,13 @@ el:
185
160
  events:
186
161
  debates:
187
162
  create_debate_event:
163
+ space_followers:
164
+ email_intro: |-
165
+ Γεια σας,
166
+ Μια νέα συζήτηση «%{resource_title}» δημιουργήθηκε στον χώρο συμμετοχής %{space_title}, δείτε την και συνεισφέρετε:
167
+ email_outro: Λάβατε αυτήν την ειδοποίηση επειδή ακολουθείτε τον χώρο συμμετοχής %{space_title}. Μπορείτε να διακόψετε τη λήψη ειδοποιήσεων ακολουθώντας τον προηγούμενο σύνδεσμο.
168
+ email_subject: Νέα συζήτηση «%{resource_title}» στον χώρο %{space_title}
169
+ notification_title: Η <a href="%{resource_path}">%{resource_title}</a> συζήτηση δημιουργήθηκε στον χώρο <a href="%{space_path}">%{space_title}</a>.
188
170
  user_followers:
189
171
  email_intro: |-
190
172
  Γεια σας,
@@ -201,7 +183,7 @@ el:
201
183
  email_intro: 'Τώρα μπορείτε να ξεκινήσετε νέες συζητήσεις στον χώρο συμμετοχής %{participatory_space_title}! Ξεκινήστε να συμμετέχετε σε αυτήν τη σελίδα:'
202
184
  email_outro: Λάβατε αυτήν την ειδοποίηση επειδή ακολουθείτε τον χώρο συμμετοχής %{participatory_space_title}. Μπορείτε να διακόψετε τη λήψη ειδοποιήσεων ακολουθώντας τον προηγούμενο σύνδεσμο.
203
185
  email_subject: Οι συζητήσεις είναι πλέον διαθέσιμες στον χώρο συμμετοχής %{participatory_space_title}
204
- notification_title: Μπορείτε τώρα να ξεκινήσετε <a href="%{resource_path}">νέες συζητήσεις</a> στον χώρο συμμετοχής <a href="%{participatory_space_url}">%{participatory_space_title}</a>
186
+ notification_title: Μπορείτε τώρα να ξεκινήσετε <a href="%{resource_path}">νέες συζητήσεις</a> στον χώρο συμμετοχής <a href="%{participatory_space_url}">%{participatory_space_title}</a>.
205
187
  debate_closed:
206
188
  affected_user:
207
189
  email_intro: 'Η συζήτηση "%{resource_title}" έκλεισε. Μπορείτε να διαβάσετε τα συμπεράσματα από την σελίδα:'
@@ -52,7 +52,7 @@ en:
52
52
  confirm_destroy: Are you sure?
53
53
  destroy: Delete
54
54
  edit: Edit
55
- new: New %{name}
55
+ new: New debate
56
56
  title: Actions
57
57
  admin:
58
58
  debate_closes:
@@ -82,9 +82,6 @@ en:
82
82
  success: Debate successfully updated.
83
83
  exports:
84
84
  comments: Comments
85
- models:
86
- debate:
87
- name: Debate
88
85
  admin_log:
89
86
  debate:
90
87
  close: "%{user_name} closed the %{resource_name} debate on the %{space_name} space"
@@ -97,10 +94,9 @@ en:
97
94
  invalid: There was a problem closing the debate.
98
95
  success: Debate successfully closed.
99
96
  close_debate_modal:
100
- close: Close
97
+ cancel: Cancel
101
98
  description: What is the summary or conclusion of this debate?
102
99
  send: Close debate
103
- closed: Closed
104
100
  count:
105
101
  debates_count:
106
102
  one: "%{count} debate"
@@ -108,8 +104,6 @@ en:
108
104
  create:
109
105
  invalid: There was a problem creating the debate.
110
106
  success: Debate successfully created.
111
- debate:
112
- participate: Participate
113
107
  debates:
114
108
  empty: There are no debates yet.
115
109
  empty_filters: There are no debates with this criteria.
@@ -127,18 +121,12 @@ en:
127
121
  official: Official
128
122
  origin: Origin
129
123
  participants: Participants
130
- scope: Scope
131
124
  search: Search
132
125
  state: Status
133
126
  state_values:
134
127
  closed: Closed
135
128
  open: Open
136
- user_groups: Groups
137
- filters_small_view:
138
- close_modal: Close modal
139
- filter: Filter
140
- filter_by: Filter by
141
- unfold: Unfold
129
+ user_group: Groups
142
130
  form:
143
131
  select_a_category: Please select a category
144
132
  index:
@@ -154,36 +142,27 @@ en:
154
142
  recent: Most recent
155
143
  updated: Recently updated
156
144
  show:
157
- back: Back to list
158
145
  close_debate: Close debate
159
- date: Date
160
146
  debate_closed: Closed
161
147
  debate_conclusions_are: 'The debate was closed on %{date} with these conclusions:'
162
148
  edit_conclusions: Edit conclusions
163
149
  edit_debate: Edit debate
164
150
  groups_count: Groups
165
- last_comment_by: Last comment by
166
- no_comments_yet: No comments yet
167
151
  open: Open debate
168
152
  participants_count: Participants
169
153
  update:
170
154
  invalid: There was a problem updating the debate.
171
155
  success: Debate successfully updated.
172
- versions:
173
- debates:
174
- back_to_resource: Go back to debate
175
- index:
176
- title: Versions
177
- versions_list:
178
- back_to_resource: Go back to debate
179
156
  last_activity:
180
- debate_updated_at_html: "<span>Debate updated at %{link}</span>"
181
- new_debate_at_html: "<span>New debate at %{link}</span>"
157
+ debate_updated: 'Debate updated:'
158
+ new_debate: 'New debate:'
182
159
  models:
183
160
  debate:
184
161
  fields:
162
+ end: End
185
163
  end_time: End date
186
164
  official_debate: Official debate
165
+ start: Start
187
166
  start_time: Start date
188
167
  title: Title
189
168
  events:
@@ -192,10 +171,10 @@ en:
192
171
  space_followers:
193
172
  email_intro: |-
194
173
  Hi,
195
- A new debate "%{resource_title}" has been created on the %{participatory_space_title} participatory space, check it out and contribute:
196
- email_outro: You have received this notification because you are following the %{participatory_space_title} participatory space. You can stop receiving notifications following the previous link.
197
- email_subject: New debate "%{resource_title}" on %{participatory_space_title}
198
- notification_title: The <a href="%{resource_path}">%{resource_title}</a> debate was created on <a href="%{participatory_space_url}">%{participatory_space_title}</a>.
174
+ A new debate "%{resource_title}" has been created on the %{space_title} participatory space, check it out and contribute:
175
+ email_outro: You have received this notification because you are following the %{space_title} participatory space. You can stop receiving notifications following the previous link.
176
+ email_subject: New debate "%{resource_title}" on %{space_title}
177
+ notification_title: The <a href="%{resource_path}">%{resource_title}</a> debate was created on <a href="%{space_path}">%{space_title}</a>.
199
178
  user_followers:
200
179
  email_intro: |-
201
180
  Hi,
@@ -212,7 +191,7 @@ en:
212
191
  email_intro: 'You can now start new debates in %{participatory_space_title}! Start participating in this page:'
213
192
  email_outro: You have received this notification because you are following %{participatory_space_title}. You can stop receiving notifications following the previous link.
214
193
  email_subject: Debates now available in %{participatory_space_title}
215
- notification_title: You can now start <a href="%{resource_path}">new debates</a> in <a href="%{participatory_space_url}">%{participatory_space_title}</a>
194
+ notification_title: You can now start <a href="%{resource_path}">new debates</a> in <a href="%{participatory_space_url}">%{participatory_space_title}</a>.
216
195
  debate_closed:
217
196
  affected_user:
218
197
  email_intro: 'The "%{resource_title}" debate was closed. You can read the conclusions from its page:'
@@ -235,7 +214,7 @@ en:
235
214
  name: Debates
236
215
  next_level_in: Participate in %{score} more debates to reach the next level!
237
216
  unearned_another: This participant has not yet taken part in any debate.
238
- unearned_own: You haven't participated in any debates yet.
217
+ unearned_own: You have not participated in any debates yet.
239
218
  metrics:
240
219
  debates:
241
220
  description: Number of debates created
@@ -52,7 +52,7 @@ es-MX:
52
52
  confirm_destroy: '¿Seguro que quieres borrar el debate?'
53
53
  destroy: Borrar
54
54
  edit: Editar
55
- new: Nuevo %{name}
55
+ new: Añadir debate
56
56
  title: Acciones
57
57
  admin:
58
58
  debate_closes:
@@ -82,9 +82,6 @@ es-MX:
82
82
  success: Debate actualizado con éxito.
83
83
  exports:
84
84
  comments: Comentarios
85
- models:
86
- debate:
87
- name: Debate
88
85
  admin_log:
89
86
  debate:
90
87
  close: "La participante %{user_name} ha creado el debate %{resource_name} en el espacio %{space_name}"
@@ -97,10 +94,9 @@ es-MX:
97
94
  invalid: Se ha producido un error al cerrar el debate.
98
95
  success: Debate cerrado correctamente.
99
96
  close_debate_modal:
100
- close: Cerrar
97
+ cancel: Cancelar
101
98
  description: '¿Cuál es el resumen o la conclusión de este debate?'
102
99
  send: Cerrar debate
103
- closed: Cerrado
104
100
  count:
105
101
  debates_count:
106
102
  one: "%{count} debate"
@@ -108,8 +104,6 @@ es-MX:
108
104
  create:
109
105
  invalid: Ha habido un problema al crear el debate.
110
106
  success: Debate creado con éxito.
111
- debate:
112
- participate: Participar
113
107
  debates:
114
108
  empty: Aún no hay ningún debate.
115
109
  empty_filters: No hay ningún debate con este criterio.
@@ -127,18 +121,12 @@ es-MX:
127
121
  official: Oficial
128
122
  origin: Origen
129
123
  participants: Participantes
130
- scope: Ámbito
131
124
  search: Buscar
132
125
  state: Estado
133
126
  state_values:
134
127
  closed: Cerrado
135
128
  open: Abierto
136
- user_groups: Grupos
137
- filters_small_view:
138
- close_modal: Cerrar ventana
139
- filter: Filtrar
140
- filter_by: Filtrar por
141
- unfold: Desplegar
129
+ user_group: Grupos
142
130
  form:
143
131
  select_a_category: Por favor, selecciona una categoría
144
132
  index:
@@ -154,36 +142,27 @@ es-MX:
154
142
  recent: Más recientes
155
143
  updated: Actualizados recientemente
156
144
  show:
157
- back: Volver al listado
158
145
  close_debate: Cerrar debate
159
- date: Fecha
160
146
  debate_closed: Cerrado
161
147
  debate_conclusions_are: 'El debate se cerró el %{date} con estas conclusiones:'
162
148
  edit_conclusions: Editar conclusiones
163
149
  edit_debate: Editar debate
164
150
  groups_count: Grupos
165
- last_comment_by: Último comentario de
166
- no_comments_yet: No hay comentarios todavía
167
151
  open: Debate abierto
168
152
  participants_count: Participantes
169
153
  update:
170
154
  invalid: Se ha producido un error al actualizar este debate.
171
155
  success: Debate actualizado correctamente.
172
- versions:
173
- debates:
174
- back_to_resource: Volver al debate
175
- index:
176
- title: Versiones
177
- versions_list:
178
- back_to_resource: Volver al debate
179
156
  last_activity:
180
- debate_updated_at_html: "<span>Debate actualizado a las %{link}</span>"
181
- new_debate_at_html: "<span>Nuevo debate en %{link}</span>"
157
+ debate_updated: 'Debate actualizado:'
158
+ new_debate: 'Nuevo debate:'
182
159
  models:
183
160
  debate:
184
161
  fields:
162
+ end: Finaliza
185
163
  end_time: Fecha de finalización
186
164
  official_debate: Debate oficial
165
+ start: Empieza
187
166
  start_time: Fecha de inicio
188
167
  title: Título
189
168
  events:
@@ -192,10 +171,10 @@ es-MX:
192
171
  space_followers:
193
172
  email_intro: |-
194
173
  Hola,
195
- Se ha creado un nuevo debate "%{resource_title}" en el espacio participativo %{participatory_space_title}, échale un vistazo y contribuye:
196
- email_outro: Has recibido esta notificación porque estás siguiendo el espacio "%{participatory_space_title}". Puedes dejar de recibir notificaciones desde el enlace anterior.
197
- email_subject: Nuevo debate "%{resource_title}" en %{participatory_space_title}
198
- notification_title: Se ha creado el debate <a href="%{resource_path}">%{resource_title}</a> en <a href="%{participatory_space_url}">%{participatory_space_title}</a>.
174
+ Se ha creado un nuevo debate "%{resource_title}" en el espacio participativo %{space_title} , échale un vistazo y contribuye:
175
+ email_outro: Has recibido esta notificación porque estás siguiendo a %{space_title}. Puedes dejar de recibir notificaciones siguiendo el enlace anterior.
176
+ email_subject: Nuevo debate "%{resource_title}" en %{space_title}
177
+ notification_title: El debate <a href="%{resource_path}">%{resource_title}</a> fue creado el <a href="%{space_path}">%{space_title}</a>.
199
178
  user_followers:
200
179
  email_intro: |-
201
180
  Hola,
@@ -212,7 +191,7 @@ es-MX:
212
191
  email_intro: '¡Ahora puedes crear nuevos debates en %{participatory_space_title}! Comienza a participar en esta página:'
213
192
  email_outro: Has recibido esta notificación porque estás siguiendo %{participatory_space_title}. Puedes dejar de recibir notificaciones siguiendo el enlace anterior.
214
193
  email_subject: Debates ahora disponibles en %{participatory_space_title}
215
- notification_title: Ahora puedes crear <a href="%{resource_path}">nuevos debates</a> en <a href="%{participatory_space_url}">%{participatory_space_title}</a>
194
+ notification_title: Ahora puedes empezar <a href="%{resource_path}">nuevos debates</a> en <a href="%{participatory_space_url}">%{participatory_space_title}</a>.
216
195
  debate_closed:
217
196
  affected_user:
218
197
  email_intro: 'Se ha cerrado el debate "%{resource_title}". Puedes leer las conclusiones en su página:'
@@ -52,7 +52,7 @@ es-PY:
52
52
  confirm_destroy: '¿Seguro que quieres borrar el debate?'
53
53
  destroy: Borrar
54
54
  edit: Editar
55
- new: Nuevo %{name}
55
+ new: Añadir debate
56
56
  title: Acciones
57
57
  admin:
58
58
  debate_closes:
@@ -82,9 +82,6 @@ es-PY:
82
82
  success: Debate actualizado con éxito.
83
83
  exports:
84
84
  comments: Comentarios
85
- models:
86
- debate:
87
- name: Debate
88
85
  admin_log:
89
86
  debate:
90
87
  close: "La participante %{user_name} ha creado el debate %{resource_name} en el espacio %{space_name}"
@@ -97,15 +94,12 @@ es-PY:
97
94
  invalid: Se ha producido un error al cerrar el debate.
98
95
  success: Debate cerrado correctamente.
99
96
  close_debate_modal:
100
- close: Cerrar
97
+ cancel: Cancelar
101
98
  description: '¿Cuál es el resumen o la conclusión de este debate?'
102
99
  send: Cerrar debate
103
- closed: Cerrado
104
100
  create:
105
101
  invalid: Ha habido un problema al crear el debate.
106
102
  success: Debate creado con éxito.
107
- debate:
108
- participate: Participar
109
103
  debates:
110
104
  empty: Aún no hay ningún debate.
111
105
  empty_filters: No hay ningún debate con este criterio.
@@ -123,18 +117,12 @@ es-PY:
123
117
  official: Oficial
124
118
  origin: Origen
125
119
  participants: Participantes
126
- scope: Ámbito
127
120
  search: Buscar
128
121
  state: Estado
129
122
  state_values:
130
123
  closed: Cerrado
131
124
  open: Abierto
132
- user_groups: Grupos
133
- filters_small_view:
134
- close_modal: Cerrar ventana
135
- filter: Filtrar
136
- filter_by: Filtrar por
137
- unfold: Desplegar
125
+ user_group: Grupos
138
126
  form:
139
127
  select_a_category: Por favor, selecciona una categoría
140
128
  index:
@@ -150,36 +138,27 @@ es-PY:
150
138
  recent: Más recientes
151
139
  updated: Actualizados recientemente
152
140
  show:
153
- back: Volver al listado
154
141
  close_debate: Cerrar debate
155
- date: Fecha
156
142
  debate_closed: Cerrado
157
143
  debate_conclusions_are: 'El debate se cerró el %{date} con estas conclusiones:'
158
144
  edit_conclusions: Editar conclusiones
159
145
  edit_debate: Editar debate
160
146
  groups_count: Grupos
161
- last_comment_by: Último comentario de
162
- no_comments_yet: No hay comentarios todavía
163
147
  open: Debate abierto
164
148
  participants_count: Participantes
165
149
  update:
166
150
  invalid: Se ha producido un error al actualizar este debate.
167
151
  success: Debate actualizado correctamente.
168
- versions:
169
- debates:
170
- back_to_resource: Volver al debate
171
- index:
172
- title: Versiones
173
- versions_list:
174
- back_to_resource: Volver al debate
175
152
  last_activity:
176
- debate_updated_at_html: "<span>Debate actualizado a las %{link}</span>"
177
- new_debate_at_html: "<span>Nuevo debate en %{link}</span>"
153
+ debate_updated: 'Debate actualizado:'
154
+ new_debate: 'Nuevo debate:'
178
155
  models:
179
156
  debate:
180
157
  fields:
158
+ end: Finaliza
181
159
  end_time: Fecha de finalización
182
160
  official_debate: Debate oficial
161
+ start: Empieza
183
162
  start_time: Fecha de inicio
184
163
  title: Título
185
164
  events:
@@ -188,10 +167,10 @@ es-PY:
188
167
  space_followers:
189
168
  email_intro: |-
190
169
  Hola,
191
- Se ha creado un nuevo debate "%{resource_title}" en el espacio participativo %{participatory_space_title}, échale un vistazo y contribuye:
192
- email_outro: Has recibido esta notificación porque estás siguiendo el espacio "%{participatory_space_title}". Puedes dejar de recibir notificaciones desde el enlace anterior.
193
- email_subject: Nuevo debate "%{resource_title}" en %{participatory_space_title}
194
- notification_title: Se ha creado el debate <a href="%{resource_path}">%{resource_title}</a> en <a href="%{participatory_space_url}">%{participatory_space_title}</a>.
170
+ Se ha creado un nuevo debate "%{resource_title}" en el espacio participativo %{space_title} , échale un vistazo y contribuye:
171
+ email_outro: Has recibido esta notificación porque estás siguiendo a %{space_title}. Puedes dejar de recibir notificaciones siguiendo el enlace anterior.
172
+ email_subject: Nuevo debate "%{resource_title}" en %{space_title}
173
+ notification_title: El debate <a href="%{resource_path}">%{resource_title}</a> fue creado el <a href="%{space_path}">%{space_title}</a>.
195
174
  user_followers:
196
175
  email_intro: |-
197
176
  Hola,
@@ -208,7 +187,7 @@ es-PY:
208
187
  email_intro: '¡Ahora puedes crear nuevos debates en %{participatory_space_title}! Comienza a participar en esta página:'
209
188
  email_outro: Has recibido esta notificación porque estás siguiendo %{participatory_space_title}. Puedes dejar de recibir notificaciones siguiendo el enlace anterior.
210
189
  email_subject: Debates ahora disponibles en %{participatory_space_title}
211
- notification_title: Ahora puedes crear <a href="%{resource_path}">nuevos debates</a> en <a href="%{participatory_space_url}">%{participatory_space_title}</a>
190
+ notification_title: Ahora puedes empezar <a href="%{resource_path}">nuevos debates</a> en <a href="%{participatory_space_url}">%{participatory_space_title}</a>.
212
191
  debate_closed:
213
192
  affected_user:
214
193
  email_intro: 'Se ha cerrado el debate "%{resource_title}". Puedes leer las conclusiones en su página:'
@@ -231,7 +210,7 @@ es-PY:
231
210
  name: Debates
232
211
  next_level_in: '¡Participe en %{score} debates más para alcanzar el siguiente nivel!'
233
212
  unearned_another: Este usuario aún no ha participado en ningún debate.
234
- unearned_own: Has participado en cualquier debate aún.
213
+ unearned_own: Aún no has participado en ningún debate.
235
214
  metrics:
236
215
  debates:
237
216
  description: Número de debates creados.
@@ -52,7 +52,7 @@ es:
52
52
  confirm_destroy: '¿Estás segura?'
53
53
  destroy: Elimina
54
54
  edit: Editar
55
- new: Nuevo %{name}
55
+ new: Añadir debate
56
56
  title: Acciones
57
57
  admin:
58
58
  debate_closes:
@@ -82,9 +82,6 @@ es:
82
82
  success: Debate actualizado correctamente.
83
83
  exports:
84
84
  comments: Comentarios
85
- models:
86
- debate:
87
- name: Debate
88
85
  admin_log:
89
86
  debate:
90
87
  close: "La participante %{user_name} ha creado el debate %{resource_name} en el espacio %{space_name}"
@@ -97,10 +94,9 @@ es:
97
94
  invalid: Se ha producido un error al cerrar el debate.
98
95
  success: Debate cerrado correctamente.
99
96
  close_debate_modal:
100
- close: Cerrar
97
+ cancel: Cancelar
101
98
  description: '¿Cuál es el resumen o la conclusión de este debate?'
102
99
  send: Cerrar debate
103
- closed: Cerrado
104
100
  count:
105
101
  debates_count:
106
102
  one: "%{count} debate"
@@ -108,8 +104,6 @@ es:
108
104
  create:
109
105
  invalid: Se ha producido un error al crear el debate.
110
106
  success: Debate creado correctamente.
111
- debate:
112
- participate: Participa
113
107
  debates:
114
108
  empty: Aún no hay ningún debate.
115
109
  empty_filters: No hay ningún debate con este criterio.
@@ -127,18 +121,12 @@ es:
127
121
  official: Oficial
128
122
  origin: Origen
129
123
  participants: Participantes
130
- scope: Ámbito
131
124
  search: Buscar
132
125
  state: Estado
133
126
  state_values:
134
127
  closed: Cerrado
135
128
  open: Abierto
136
- user_groups: Grupos
137
- filters_small_view:
138
- close_modal: Cerrar ventana
139
- filter: Filtrar
140
- filter_by: Filtrar por
141
- unfold: Despliega
129
+ user_group: Grupos
142
130
  form:
143
131
  select_a_category: Por favor, selecciona una categoría
144
132
  index:
@@ -154,36 +142,27 @@ es:
154
142
  recent: Más recientes
155
143
  updated: Actualizados recientemente
156
144
  show:
157
- back: Volver al listado
158
145
  close_debate: Cerrar debate
159
- date: Fecha
160
146
  debate_closed: Cerrado
161
147
  debate_conclusions_are: 'El debate se cerró el %{date} con estas conclusiones:'
162
148
  edit_conclusions: Editar conclusiones
163
149
  edit_debate: Editar debate
164
150
  groups_count: Grupos
165
- last_comment_by: Último comentario de
166
- no_comments_yet: No hay comentarios todavía
167
151
  open: Debate abierto
168
152
  participants_count: Participantes
169
153
  update:
170
154
  invalid: Se ha producido un error al actualizar este debate.
171
155
  success: Debate actualizado correctamente.
172
- versions:
173
- debates:
174
- back_to_resource: Volver al debate
175
- index:
176
- title: Versiones
177
- versions_list:
178
- back_to_resource: Volver al debate
179
156
  last_activity:
180
- debate_updated_at_html: "<span>Debate actualizado a las %{link}</span>"
181
- new_debate_at_html: "<span>Nuevo debate en %{link}</span>"
157
+ debate_updated: 'Debate actualizado:'
158
+ new_debate: 'Nuevo debate:'
182
159
  models:
183
160
  debate:
184
161
  fields:
162
+ end: Finaliza
185
163
  end_time: Fecha de finalización
186
164
  official_debate: Debate oficial
165
+ start: Empieza
187
166
  start_time: Fecha de inicio
188
167
  title: Título
189
168
  events:
@@ -192,27 +171,27 @@ es:
192
171
  space_followers:
193
172
  email_intro: |-
194
173
  Hola,
195
- Se ha creado un nuevo debate "%{resource_title}" en el espacio participativo %{participatory_space_title}, échale un vistazo y contribuye:
196
- email_outro: Has recibido esta notificación porque estás siguiendo el espacio "%{participatory_space_title}". Puedes dejar de recibir notificaciones desde el enlace anterior.
197
- email_subject: Nuevo debate "%{resource_title}" en %{participatory_space_title}
198
- notification_title: Se ha creado el debate <a href="%{resource_path}">%{resource_title}</a> en <a href="%{participatory_space_url}">%{participatory_space_title}</a>.
174
+ Se ha creado un nuevo debate "%{resource_title}" en el espacio participativo %{space_title} , échale un vistazo y contribuye:
175
+ email_outro: Has recibido esta notificación porque estás siguiendo a %{space_title}. Puedes dejar de recibir notificaciones siguiendo el enlace anterior.
176
+ email_subject: Nuevo debate "%{resource_title}" en %{space_title}
177
+ notification_title: El debate <a href="%{resource_path}">%{resource_title}</a> fue creado el <a href="%{space_path}">%{space_title}</a>.
199
178
  user_followers:
200
179
  email_intro: |-
201
180
  Hola,
202
181
  %{author_name} %{author_nickname}, a quien estás siguiendo, ha creado un nuevo debate "%{resource_title}". Échale un vistazo y contribuye:
203
- email_outro: Has recibido esta notificación porque estás siguiendo a "%{author_nickname}". Puedes dejar de recibir notificaciones siguiendo el enlace anterior.
182
+ email_outro: Has recibido esta notificación porque estás siguiendo a %{author_nickname}. Puedes dejar de recibir notificaciones siguiendo el enlace anterior.
204
183
  email_subject: Nuevo debate "%{resource_title}" de %{author_nickname}
205
184
  notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> creó el debate <a href="%{resource_path}">%{resource_title}</a>.
206
185
  creation_disabled:
207
186
  email_intro: 'La creación de debates ya no está activa en %{participatory_space_title}. Aún puedes participar en debates abiertos desde esta página:'
208
- email_outro: Has recibido esta notificación porque estás siguiendo el espacio "%{participatory_space_title}". Puedes dejar de recibir notificaciones siguiendo el enlace anterior.
187
+ email_outro: Has recibido esta notificación porque estás siguiendo el espacio %{participatory_space_title}. Puedes dejar de recibir notificaciones siguiendo el enlace anterior.
209
188
  email_subject: Se ha desactivado la creación de debates en %{participatory_space_title}
210
189
  notification_title: La creación de debates ahora está deshabilitada en el espacio <a href="%{participatory_space_url}">%{participatory_space_title}</a>
211
190
  creation_enabled:
212
191
  email_intro: '¡Ya puedes crear nuevos debates en %{participatory_space_title}! Comienza a participar en esta página:'
213
- email_outro: Has recibido esta notificación porque estás siguiendo el espacio "%{participatory_space_title}". Puedes dejar de recibir notificaciones siguiendo el enlace anterior.
192
+ email_outro: Has recibido esta notificación porque estás siguiendo %{participatory_space_title}. Puedes dejar de recibir notificaciones siguiendo el enlace anterior.
214
193
  email_subject: Los debates ya estan disponibles en %{participatory_space_title}
215
- notification_title: Ya puedes empezar <a href="%{resource_path}">nuevos debates</a> en <a href="%{participatory_space_url}">%{participatory_space_title}</a>
194
+ notification_title: Ahora puedes empezar <a href="%{resource_path}">nuevos debates</a> en <a href="%{participatory_space_url}">%{participatory_space_title}</a>.
216
195
  debate_closed:
217
196
  affected_user:
218
197
  email_intro: 'Se ha cerrado el debate "%{resource_title}". Puedes leer las conclusiones en su página:'