decidim-debates 0.27.6 → 0.28.0.rc4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (99) 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 -8
  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 -4
  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 +2 -2
  27. data/app/views/decidim/debates/admin/debate_closes/edit.html.erb +26 -14
  28. data/app/views/decidim/debates/admin/debates/_form.html.erb +40 -39
  29. data/app/views/decidim/debates/admin/debates/edit.html.erb +16 -6
  30. data/app/views/decidim/debates/admin/debates/index.html.erb +60 -58
  31. data/app/views/decidim/debates/admin/debates/new.html.erb +16 -6
  32. data/app/views/decidim/debates/debates/_close_debate_modal.html.erb +22 -11
  33. data/app/views/decidim/debates/debates/_debates.html.erb +5 -6
  34. data/app/views/decidim/debates/debates/_form.html.erb +10 -19
  35. data/app/views/decidim/debates/debates/edit.html.erb +16 -20
  36. data/app/views/decidim/debates/debates/index.html.erb +19 -23
  37. data/app/views/decidim/debates/debates/index.js.erb +3 -4
  38. data/app/views/decidim/debates/debates/new.html.erb +16 -20
  39. data/app/views/decidim/debates/debates/show.html.erb +106 -109
  40. data/app/views/decidim/debates/versions/show.html.erb +14 -5
  41. data/config/locales/ar.yml +7 -17
  42. data/config/locales/bg.yml +0 -33
  43. data/config/locales/ca.yml +14 -35
  44. data/config/locales/cs.yml +13 -34
  45. data/config/locales/de.yml +14 -35
  46. data/config/locales/el.yml +10 -28
  47. data/config/locales/en.yml +13 -34
  48. data/config/locales/es-MX.yml +12 -33
  49. data/config/locales/es-PY.yml +13 -34
  50. data/config/locales/es.yml +15 -36
  51. data/config/locales/eu.yml +16 -37
  52. data/config/locales/fi-plain.yml +12 -33
  53. data/config/locales/fi.yml +12 -33
  54. data/config/locales/fr-CA.yml +14 -35
  55. data/config/locales/fr.yml +14 -35
  56. data/config/locales/ga-IE.yml +0 -15
  57. data/config/locales/gl.yml +7 -16
  58. data/config/locales/hu.yml +13 -32
  59. data/config/locales/id-ID.yml +7 -15
  60. data/config/locales/is-IS.yml +3 -9
  61. data/config/locales/it.yml +7 -31
  62. data/config/locales/ja.yml +13 -37
  63. data/config/locales/lb.yml +7 -25
  64. data/config/locales/lt.yml +14 -29
  65. data/config/locales/lv.yml +6 -17
  66. data/config/locales/nl.yml +7 -28
  67. data/config/locales/no.yml +7 -31
  68. data/config/locales/pl.yml +14 -33
  69. data/config/locales/pt-BR.yml +7 -39
  70. data/config/locales/pt.yml +7 -31
  71. data/config/locales/ro-RO.yml +10 -29
  72. data/config/locales/ru.yml +3 -12
  73. data/config/locales/sk.yml +6 -17
  74. data/config/locales/sl.yml +0 -3
  75. data/config/locales/sr-CS.yml +0 -6
  76. data/config/locales/sv.yml +11 -31
  77. data/config/locales/tr-TR.yml +6 -35
  78. data/config/locales/uk.yml +3 -12
  79. data/config/locales/zh-CN.yml +7 -29
  80. data/config/locales/zh-TW.yml +9 -28
  81. data/lib/decidim/debates/component.rb +4 -88
  82. data/lib/decidim/debates/engine.rb +29 -7
  83. data/lib/decidim/debates/seeds.rb +104 -0
  84. data/lib/decidim/debates/test/factories.rb +19 -14
  85. data/lib/decidim/debates/version.rb +1 -1
  86. metadata +31 -33
  87. data/app/cells/decidim/debates/debate_m/data.erb +0 -10
  88. data/app/cells/decidim/debates/debate_m/footer.erb +0 -10
  89. data/app/cells/decidim/debates/debate_m/multiple_dates.erb +0 -17
  90. data/app/cells/decidim/debates/debate_m/open_date.erb +0 -7
  91. data/app/cells/decidim/debates/debate_m/single_date.erb +0 -9
  92. data/app/cells/decidim/debates/debate_m/tags.erb +0 -1
  93. data/app/cells/decidim/debates/debate_m_cell.rb +0 -86
  94. data/app/controllers/decidim/debates/widgets_controller.rb +0 -29
  95. data/app/views/decidim/debates/debates/_count.html.erb +0 -1
  96. data/app/views/decidim/debates/debates/_filters.html.erb +0 -34
  97. data/app/views/decidim/debates/debates/_filters_small_view.html.erb +0 -18
  98. data/config/locales/he-IL.yml +0 -1
  99. data/decidim-debates.gemspec +0 -32
@@ -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:'
@@ -52,7 +52,7 @@ eu:
52
52
  confirm_destroy: Ziur zaude?
53
53
  destroy: Ezabatu
54
54
  edit: Editatu
55
- new: '%{name} berria'
55
+ new: Beste eztabaida bat
56
56
  title: Ekintzak
57
57
  admin:
58
58
  debate_closes:
@@ -73,7 +73,7 @@ eu:
73
73
  finite: Amaiera (hasiera- eta amaiera-ordua)
74
74
  open: Zabalik (ez dago hasiera- edo amaiera-ordurik)
75
75
  index:
76
- title: Eztabaidak
76
+ title: eztabaidak
77
77
  new:
78
78
  create: Sortu eztabaida
79
79
  title: Beste eztabaida bat
@@ -82,9 +82,6 @@ eu:
82
82
  success: Debate arrakastaz eguneratu da.
83
83
  exports:
84
84
  comments: Iruzkinak
85
- models:
86
- debate:
87
- name: Eztabaida
88
85
  admin_log:
89
86
  debate:
90
87
  close: "%{user_name} erabiltzaileak %{resource_name} eztabaida sortu du %{space_name} esparruan"
@@ -97,10 +94,9 @@ eu:
97
94
  invalid: Arazo bat egon da eztabaida ixtean.
98
95
  success: Eztabaida zuzen itxi da.
99
96
  close_debate_modal:
100
- close: Itxi
97
+ cancel: Ezeztatu
101
98
  description: Zein da eztabaida honen laburpena edo ondorioa?
102
99
  send: Itxi eztabaida
103
- closed: Itxita
104
100
  count:
105
101
  debates_count:
106
102
  one: "%{count} eztabaida"
@@ -108,8 +104,6 @@ eu:
108
104
  create:
109
105
  invalid: Arazo bat egon da eztabaida sortzean.
110
106
  success: Debate sortu da behar bezala.
111
- debate:
112
- participate: Parte hartu
113
107
  debates:
114
108
  empty: Oraindik ez dago eztabaidarik.
115
109
  empty_filters: Ez dago irizpide hau duen eztabaidarik.
@@ -127,18 +121,12 @@ eu:
127
121
  official: Ofiziala
128
122
  origin: Origin
129
123
  participants: Parte-hartzaileak
130
- scope: Esparrua
131
124
  search: Bilatu
132
125
  state: Egoera
133
126
  state_values:
134
127
  closed: Itxita
135
128
  open: Ireki
136
- user_groups: Taldeak
137
- filters_small_view:
138
- close_modal: Itxi modal
139
- filter: Filter
140
- filter_by: Iragazi arabera
141
- unfold: Zabaldu
129
+ user_group: Taldeak
142
130
  form:
143
131
  select_a_category: Hautatu kategoria bat
144
132
  index:
@@ -154,36 +142,27 @@ eu:
154
142
  recent: Azkenak
155
143
  updated: Orain dela gutxi eguneratuak
156
144
  show:
157
- back: Itzuli zerrendara
158
145
  close_debate: Itxi eztabaida
159
- date: Data
160
146
  debate_closed: Itxita
161
147
  debate_conclusions_are: 'Eztabaida %{date} egunean itxi zen ondorio hauekin:'
162
148
  edit_conclusions: Editatu ondorioak
163
149
  edit_debate: Editatu eztabaida
164
150
  groups_count: Taldeak
165
- last_comment_by: Honen azken iruzkina
166
- no_comments_yet: Oraindik ez dago iruzkinik
167
151
  open: Eztabaida irekita
168
152
  participants_count: Parte-hartzaileak
169
153
  update:
170
154
  invalid: Arazo bat egon da eztabaida eguneratzean.
171
155
  success: Eztabaida zuzen eguneratu da.
172
- versions:
173
- debates:
174
- back_to_resource: Itzuli eztabaidara
175
- index:
176
- title: Bertsioak
177
- versions_list:
178
- back_to_resource: Itzuli eztabaidara
179
156
  last_activity:
180
- debate_updated_at_html: "<span>eztabaida ordu honetan %{link}</span> eguneratuta"
181
- new_debate_at_html: "beste eztabaida bat hemen: <span> %{link}</span>"
157
+ debate_updated: 'Eztabaida eguneratu da:'
158
+ new_debate: 'Beste eztabaida bat:'
182
159
  models:
183
160
  debate:
184
161
  fields:
162
+ end: Amaiera
185
163
  end_time: Amaiera data
186
164
  official_debate: Ofizial eztabaida
165
+ start: Hasi
187
166
  start_time: Hasiera data
188
167
  title: Izenburua
189
168
  events:
@@ -191,11 +170,11 @@ eu:
191
170
  create_debate_event:
192
171
  space_followers:
193
172
  email_intro: |-
194
- Kaixo:
195
- "%{resources ce_title}" eztabaida berria sortu da %{participatory_space_title}} partaidetza-espazioan, egiaztatu eta egin ekarpenak:
196
- email_outro: Jakinarazpen hau jaso duzu %{participatory_space_title} parte hartzeko espazioa jarraitzen ari zarelako. Aurreko estekan jakinarazpenak jasotzeari utzi ahal diozu.
197
- email_subject: '"%{resource_title}" eztabaida berria hemen %{participatory_space_title}'
198
- notification_title: '<a href="%{resource_path}">%{resource_title}</a> eztabaida sortu da hemen: <a href="%{participatory_space_url}">%{participatory_space_title}</a>.'
173
+ Kaixo,
174
+ "%{resource_title}" beste eztabaida bat sortu da %{space_title} parte hartzeko espazioan, begiratu eta lagundu:
175
+ email_outro: Jakinarazpen hori jaso duzu %{space_title} partaidetzazko espazioa jarraitzen ari zarelako. Aurreko estekan jakinarazpenak jasotzeari utzi ahal diozu.
176
+ email_subject: Beste eztabaida bat "%{resource_title}" hemen %{space_title}
177
+ notification_title: <a href="%{resource_path}">%{resource_title}</a> eztabaida sortu zen <a href="%{space_path}">%{space_title}</a>.
199
178
  user_followers:
200
179
  email_intro: |-
201
180
  Kaixo,
@@ -204,7 +183,7 @@ eu:
204
183
  email_subject: '%{author_nickname} k "%{resource_title}" beste eztabaida bat sortu du'
205
184
  notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> k sortu du <a href="%{resource_path}">%{resource_title}</a> eztabaida.
206
185
  creation_disabled:
207
- email_intro: 'Eztabaida sortzea dagoeneko ez dago aktibo %{participatory_space_title}. Oraindik irekita dauden eztabaidetan parte har dezakezu orri honetatik:'
186
+ email_intro: 'Debate sortzea ez dago aktibo %{participatory_space_title}. Oraindik eztabaidak ireki ditzakezu orri honetatik:'
208
187
  email_outro: Jakinarazpena jaso duzu %{participatory_space_title} jarraitzen ari zarelako. Aurreko estekan jakinarazpenak jasotzeari utzi ahal diozu.
209
188
  email_subject: Debate sortzea desgaituta %{participatory_space_title}
210
189
  notification_title: Eztabaiden sorrera orain desaktibatuta dago <a href="%{participatory_space_url}">%{participatory_space_title}</a>
@@ -212,7 +191,7 @@ eu:
212
191
  email_intro: 'Oraineztabaida berriak hasi ditzakezu hemen: %{participatory_space_title}! Hasi parte-hartzea orri honetan:'
213
192
  email_outro: Jakinarazpena jaso duzu %{participatory_space_title} jarraitzen ari zarelako. Aurreko estekan jakinarazpenak jasotzeari utzi ahal diozu.
214
193
  email_subject: 'Eztabaidak orain eskuragarri hemen: %{participatory_space_title}'
215
- notification_title: Orain <a href="%{resource_path}">eztabaida berriak hasi ditzakezu</a> <a href="%{participatory_space_url}">%{participatory_space_title}</a>
194
+ notification_title: 'Orain <a href="%{resource_path}">eztabaida berriak hasi ditzakezu hemen: </a> <a href="%{participatory_space_url}">%{participatory_space_title}</a>.'
216
195
  debate_closed:
217
196
  affected_user:
218
197
  email_intro: '"%{resource_title}" eztabaida itxi egin da. Ondorioak bere orrialdean irakur ditzakezu:'
@@ -240,6 +219,6 @@ eu:
240
219
  debates:
241
220
  description: Sortutako eztabaida kopurua
242
221
  object: eztabaidak
243
- title: Eztabaidak
222
+ title: eztabaidak
244
223
  statistics:
245
224
  debates_count: Eztabaidak
@@ -52,7 +52,7 @@ fi-pl:
52
52
  confirm_destroy: Oletko varma?
53
53
  destroy: Poista
54
54
  edit: Muokkaa
55
- new: Uusi %{name}
55
+ new: Uusi keskustelu
56
56
  title: Toiminnot
57
57
  admin:
58
58
  debate_closes:
@@ -82,9 +82,6 @@ fi-pl:
82
82
  success: Keskustelu päivitetty onnistuneesti.
83
83
  exports:
84
84
  comments: Kommentit
85
- models:
86
- debate:
87
- name: Keskustelu
88
85
  admin_log:
89
86
  debate:
90
87
  close: "%{user_name} sulki keskustelun %{resource_name} osallistumistilassa %{space_name}"
@@ -97,10 +94,9 @@ fi-pl:
97
94
  invalid: Keskustelun sulkeminen epäonnistui.
98
95
  success: Keskustelun sulkeminen onnistui.
99
96
  close_debate_modal:
100
- close: Sulje
97
+ cancel: Peruuta
101
98
  description: Mitkä olivat keskustelussa syntyneet johtopäätökset lyhyesti kerrottuna?
102
99
  send: Sulje keskustelu
103
- closed: Suljettu
104
100
  count:
105
101
  debates_count:
106
102
  one: "%{count} keskustelu"
@@ -108,8 +104,6 @@ fi-pl:
108
104
  create:
109
105
  invalid: Luotaessa keskustelua tapahtui virhe.
110
106
  success: Keskustelu luotu onnistuneesti.
111
- debate:
112
- participate: Osallistu
113
107
  debates:
114
108
  empty: Ei yhtään keskustelua.
115
109
  empty_filters: Keskusteluja ei löytynyt annetuilla hakuehdoilla.
@@ -127,18 +121,12 @@ fi-pl:
127
121
  official: Virallinen
128
122
  origin: Alkuperä
129
123
  participants: Osallistujat
130
- scope: Teema
131
124
  search: Hae
132
125
  state: Tila
133
126
  state_values:
134
127
  closed: Suljetut
135
128
  open: Avoimet
136
- user_groups: Ryhmiä
137
- filters_small_view:
138
- close_modal: Sulje ikkuna
139
- filter: Suodata
140
- filter_by: Suodata
141
- unfold: Avaa
129
+ user_group: Ryhmät
142
130
  form:
143
131
  select_a_category: Valitse aihepiiri
144
132
  index:
@@ -154,36 +142,27 @@ fi-pl:
154
142
  recent: Viimeisimmät
155
143
  updated: Viimeksi päivitetyt
156
144
  show:
157
- back: Takaisin listaan
158
145
  close_debate: Sulje keskustelu
159
- date: Päivämäärä
160
146
  debate_closed: Suljettu
161
147
  debate_conclusions_are: 'Keskustelu on suljettu %{date} seuraavin johtopäätöksin:'
162
148
  edit_conclusions: Muokkaa johtopäätöksiä
163
149
  edit_debate: Muokkaa keskustelua
164
150
  groups_count: Ryhmiä
165
- last_comment_by: Viimeisin kommentti käyttäjältä
166
- no_comments_yet: Ei vielä kommentteja
167
151
  open: Avoin keskustelu
168
152
  participants_count: Osallistujia
169
153
  update:
170
154
  invalid: Keskustelun päivittäminen epäonnistui.
171
155
  success: Keskustelun päivittäminen onnistui.
172
- versions:
173
- debates:
174
- back_to_resource: Takaisin keskusteluun
175
- index:
176
- title: Versiot
177
- versions_list:
178
- back_to_resource: Takaisin keskusteluun
179
156
  last_activity:
180
- debate_updated_at_html: "<span>Keskustelu päivitetty osoitteessa %{link}</span>"
181
- new_debate_at_html: "<span>Uusi keskustelu osoitteessa %{link}</span>"
157
+ debate_updated: 'Keskustelu päivitetty:'
158
+ new_debate: 'Uusi keskustelu:'
182
159
  models:
183
160
  debate:
184
161
  fields:
162
+ end: Päättymisaika
185
163
  end_time: Päättymispäivä
186
164
  official_debate: Virallinen keskustelu
165
+ start: Alkamisaika
187
166
  start_time: Alkamispäivä
188
167
  title: Otsikko
189
168
  events:
@@ -192,10 +171,10 @@ fi-pl:
192
171
  space_followers:
193
172
  email_intro: |-
194
173
  Hei,
195
- osallistumistilaan %{participatory_space_title} on luotu uusi keskustelu "%{resource_title}", tutustu siihen ja osallistu:
196
- email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat kohdetta %{participatory_space_title}. Voit lopettaa ilmoitusten vastaanottamisen edellä esitetyn linkin kautta.
197
- email_subject: Uusi keskustelu "%{resource_title}" osallistumistilassa %{participatory_space_title}
198
- notification_title: Keskustelu nimeltä <a href="%{resource_path}">%{resource_title}</a> luotiin osallistumistilaan <a href="%{participatory_space_url}">%{participatory_space_title}</a>.
174
+ osallisuustilaan %{space_title} on luotu uusi keskustelu "%{resource_title}", tutustu siihen ja osallistu:
175
+ email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat kohdetta %{space_title}. Voit lopettaa ilmoitusten vastaanottamisen edellä esitetyn linkin kautta.
176
+ email_subject: Uusi keskustelu "%{resource_title}" tilassa %{space_title}
177
+ notification_title: Keskustelu aiheesta <a href="%{resource_path}">%{resource_title}</a> luotiin kohtaan <a href="%{space_path}">%{space_title}</a>.
199
178
  user_followers:
200
179
  email_intro: |-
201
180
  Hei,
@@ -212,7 +191,7 @@ fi-pl:
212
191
  email_intro: 'Nyt voit aloittaa uusia keskusteluja kohteessa %{participatory_space_title}! Aloita osallistuminen tällä sivulla:'
213
192
  email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat %{participatory_space_title}. Voit lopettaa ilmoitusten vastaanottamisen edellä esitetyn linkin kautta.
214
193
  email_subject: Keskusteluja nyt käyettävissä kohdassa %{participatory_space_title}
215
- notification_title: Voit nyt aloittaa <a href="%{resource_path}">uusia keskusteluja</a> kohteessa <a href="%{participatory_space_url}">%{participatory_space_title}</a>
194
+ notification_title: Nyt voit aloittaa <a href="%{resource_path}">uusia keskusteluja</a> osallistumistilassa <a href="%{participatory_space_url}">%{participatory_space_title}</a>.
216
195
  debate_closed:
217
196
  affected_user:
218
197
  email_intro: 'Keskustelu "%{resource_title}" suljettiin. Voit lukea johtopäätökset täältä:'
@@ -52,7 +52,7 @@ fi:
52
52
  confirm_destroy: Oletko varma?
53
53
  destroy: Poista
54
54
  edit: Muokkaa
55
- new: Uusi %{name}
55
+ new: Uusi keskustelu
56
56
  title: Toiminnot
57
57
  admin:
58
58
  debate_closes:
@@ -82,9 +82,6 @@ fi:
82
82
  success: Keskustelun päivitys onnistui.
83
83
  exports:
84
84
  comments: Kommentit
85
- models:
86
- debate:
87
- name: Keskustelu
88
85
  admin_log:
89
86
  debate:
90
87
  close: "%{user_name} sulki keskustelun %{resource_name} osallistumistilassa %{space_name}"
@@ -97,10 +94,9 @@ fi:
97
94
  invalid: Keskustelun sulkeminen epäonnistui.
98
95
  success: Keskustelun sulkeminen onnistui.
99
96
  close_debate_modal:
100
- close: Sulje
97
+ cancel: Peruuta
101
98
  description: Mitkä olivat keskustelussa syntyneet johtopäätökset lyhyesti kerrottuna?
102
99
  send: Sulje keskustelu
103
- closed: Suljettu
104
100
  count:
105
101
  debates_count:
106
102
  one: "%{count} keskustelu"
@@ -108,8 +104,6 @@ fi:
108
104
  create:
109
105
  invalid: Keskustelun luonti epäonnistui.
110
106
  success: Keskustelun luonti onnistui.
111
- debate:
112
- participate: Osallistu
113
107
  debates:
114
108
  empty: Ei yhtään keskustelua.
115
109
  empty_filters: Keskusteluja ei löytynyt annetuilla hakuehdoilla.
@@ -127,18 +121,12 @@ fi:
127
121
  official: Virallinen
128
122
  origin: Alkuperä
129
123
  participants: Osallistujat
130
- scope: Teema
131
124
  search: Hae
132
125
  state: Tila
133
126
  state_values:
134
127
  closed: Suljetut
135
128
  open: Avoimet
136
- user_groups: Ryhmiä
137
- filters_small_view:
138
- close_modal: Sulje ikkuna
139
- filter: Suodata
140
- filter_by: Suodata
141
- unfold: Avaa
129
+ user_group: Ryhmät
142
130
  form:
143
131
  select_a_category: Valitse aihepiiri
144
132
  index:
@@ -154,36 +142,27 @@ fi:
154
142
  recent: Viimeisimmät
155
143
  updated: Viimeksi päivitetyt
156
144
  show:
157
- back: Takaisin listaan
158
145
  close_debate: Sulje keskustelu
159
- date: Päivämäärä
160
146
  debate_closed: Suljettu
161
147
  debate_conclusions_are: 'Keskustelu on suljettu %{date} seuraavin johtopäätöksin:'
162
148
  edit_conclusions: Muokkaa johtopäätöksiä
163
149
  edit_debate: Muokkaa keskustelua
164
150
  groups_count: Ryhmiä
165
- last_comment_by: Viimeisin kommentti käyttäjältä
166
- no_comments_yet: Ei vielä kommentteja
167
151
  open: Avoin keskustelu
168
152
  participants_count: Osallistujia
169
153
  update:
170
154
  invalid: Keskustelun päivittäminen epäonnistui.
171
155
  success: Keskustelun päivittäminen onnistui.
172
- versions:
173
- debates:
174
- back_to_resource: Takaisin keskusteluun
175
- index:
176
- title: Versiot
177
- versions_list:
178
- back_to_resource: Takaisin keskusteluun
179
156
  last_activity:
180
- debate_updated_at_html: "<span>Keskustelu päivitetty osoitteessa %{link}</span>"
181
- new_debate_at_html: "<span>Uusi keskustelu osoitteessa %{link}</span>"
157
+ debate_updated: 'Keskustelu päivitetty:'
158
+ new_debate: 'Uusi keskustelu:'
182
159
  models:
183
160
  debate:
184
161
  fields:
162
+ end: Päättymisaika
185
163
  end_time: Päättymispäivä
186
164
  official_debate: Virallinen keskustelu
165
+ start: Alkamisaika
187
166
  start_time: Alkamispäivä
188
167
  title: Otsikko
189
168
  events:
@@ -192,10 +171,10 @@ fi:
192
171
  space_followers:
193
172
  email_intro: |-
194
173
  Hei,
195
- osallistumistilaan %{participatory_space_title} on luotu uusi keskustelu "%{resource_title}", tutustu siihen ja osallistu:
196
- email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat kohdetta %{participatory_space_title}. Voit lopettaa ilmoitusten vastaanottamisen edellä esitetyn linkin kautta.
197
- email_subject: Uusi keskustelu "%{resource_title}" osallistumistilassa %{participatory_space_title}
198
- notification_title: Keskustelu nimeltä <a href="%{resource_path}">%{resource_title}</a> luotiin osallistumistilaan <a href="%{participatory_space_url}">%{participatory_space_title}</a>.
174
+ osallistumistilaan %{space_title} on luotu uusi keskustelu "%{resource_title}", tutustu siihen ja osallistu:
175
+ email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat kohdetta %{space_title}. Voit lopettaa ilmoitusten vastaanottamisen edellä esitetyn linkin kautta.
176
+ email_subject: Uusi keskustelu "%{resource_title}" osallistumistilassa %{space_title}
177
+ notification_title: Keskustelu aiheesta <a href="%{resource_path}">%{resource_title}</a> luotiin kohtaan <a href="%{space_path}">%{space_title}</a>.
199
178
  user_followers:
200
179
  email_intro: |-
201
180
  Hei,
@@ -212,7 +191,7 @@ fi:
212
191
  email_intro: 'Nyt voit aloittaa uusia keskusteluja kohteessa %{participatory_space_title}! Aloita osallistuminen tällä sivulla:'
213
192
  email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat %{participatory_space_title}. Voit lopettaa ilmoitusten vastaanottamisen edellä esitetyn linkin kautta.
214
193
  email_subject: Keskusteluja nyt käyettävissä kohdassa %{participatory_space_title}
215
- notification_title: Voit nyt aloittaa <a href="%{resource_path}">uusia keskusteluja</a> kohteessa <a href="%{participatory_space_url}">%{participatory_space_title}</a>
194
+ notification_title: Nyt voit aloittaa <a href="%{resource_path}">uusia keskusteluja</a> osallistumistilassa <a href="%{participatory_space_url}">%{participatory_space_title}</a>.
216
195
  debate_closed:
217
196
  affected_user:
218
197
  email_intro: 'Keskustelu "%{resource_title}" suljettiin. Voit lukea johtopäätökset täältä:'