decidim-debates 0.23.0 → 0.24.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (61) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/config/admin/decidim_debates_manifest.js +1 -0
  3. data/app/assets/javascripts/decidim/debates/admin/debates.js.es6 +25 -0
  4. data/app/cells/decidim/debates/debate_m/open_date.erb +7 -0
  5. data/app/cells/decidim/debates/debate_m_cell.rb +1 -1
  6. data/app/cells/decidim/debates/reported_content/show.erb +4 -0
  7. data/app/cells/decidim/debates/reported_content_cell.rb +13 -0
  8. data/app/commands/decidim/debates/admin/create_debate.rb +3 -2
  9. data/app/commands/decidim/debates/admin/update_debate.rb +2 -1
  10. data/app/commands/decidim/debates/create_debate.rb +1 -0
  11. data/app/commands/decidim/debates/update_debate.rb +2 -1
  12. data/app/controllers/decidim/debates/debates_controller.rb +1 -5
  13. data/app/forms/decidim/debates/admin/close_debate_form.rb +1 -1
  14. data/app/forms/decidim/debates/admin/debate_form.rb +30 -2
  15. data/app/forms/decidim/debates/close_debate_form.rb +1 -1
  16. data/app/forms/decidim/debates/debate_form.rb +17 -0
  17. data/app/models/decidim/debates/debate.rb +18 -5
  18. data/app/permissions/decidim/debates/admin/permissions.rb +8 -1
  19. data/app/views/decidim/debates/admin/debates/_form.html.erb +15 -2
  20. data/app/views/decidim/debates/admin/debates/index.html.erb +10 -2
  21. data/app/views/decidim/debates/debates/_filters.html.erb +1 -1
  22. data/app/views/decidim/debates/debates/_form.html.erb +6 -0
  23. data/app/views/decidim/debates/debates/edit.html.erb +6 -4
  24. data/app/views/decidim/debates/debates/new.html.erb +6 -4
  25. data/app/views/decidim/debates/debates/show.html.erb +11 -25
  26. data/config/locales/ca.yml +17 -4
  27. data/config/locales/cs.yml +17 -4
  28. data/config/locales/de.yml +58 -23
  29. data/config/locales/en.yml +17 -4
  30. data/config/locales/es-MX.yml +10 -4
  31. data/config/locales/es-PY.yml +10 -4
  32. data/config/locales/es.yml +10 -4
  33. data/config/locales/fi-plain.yml +17 -4
  34. data/config/locales/fi.yml +17 -4
  35. data/config/locales/fr-CA.yml +17 -4
  36. data/config/locales/fr.yml +18 -5
  37. data/config/locales/gl.yml +11 -0
  38. data/config/locales/ja.yml +10 -4
  39. data/config/locales/nl.yml +18 -5
  40. data/config/locales/no.yml +12 -4
  41. data/config/locales/pl.yml +36 -6
  42. data/config/locales/ro-RO.yml +13 -0
  43. data/config/locales/si-LK.yml +1 -0
  44. data/config/locales/sv.yml +16 -4
  45. data/config/locales/sw-KE.yml +1 -0
  46. data/config/locales/tr-TR.yml +114 -30
  47. data/config/locales/zh-CN.yml +10 -4
  48. data/db/migrate/20200930145546_add_scope_to_debates_debate.rb +7 -0
  49. data/db/migrate/20201126112752_archive_debates.rb +8 -0
  50. data/db/migrate/20210125101735_revert_archive_debates.rb +8 -0
  51. data/lib/decidim/api/debate_type.rb +26 -0
  52. data/lib/decidim/api/debates_type.rb +26 -0
  53. data/lib/decidim/debates.rb +1 -0
  54. data/lib/decidim/debates/admin_engine.rb +4 -0
  55. data/lib/decidim/debates/api.rb +8 -0
  56. data/lib/decidim/debates/component.rb +22 -10
  57. data/lib/decidim/debates/test/factories.rb +1 -1
  58. data/lib/decidim/debates/version.rb +1 -1
  59. metadata +30 -19
  60. data/app/types/decidim/debates/debate_type.rb +0 -28
  61. data/app/types/decidim/debates/debates_type.rb +0 -32
@@ -14,10 +14,12 @@ edit_link(
14
14
  %>
15
15
 
16
16
  <div class="row column view-header">
17
- <%= link_to debates_path(filter_link_params), class: "small hollow" do %>
18
- <%= icon "chevron-left", class: "icon--small", role: "img", "aria-hidden": true %>
19
- <%= t(".back") %>
20
- <% end %>
17
+ <div class="m-bottom">
18
+ <%= link_to debates_path(filter_link_params), class: "small hollow" do %>
19
+ <%= icon "chevron-left", class: "icon--small", role: "img", "aria-hidden": true %>
20
+ <%= t(".back") %>
21
+ <% end %>
22
+ </div>
21
23
 
22
24
  <h2 class="heading3">
23
25
  <%== present(debate).title(links: true) %>
@@ -43,14 +45,7 @@ edit_link(
43
45
  <% end %>
44
46
  <div class="card extra">
45
47
  <div class="card__content">
46
- <% if debate.start_time.present? && debate.end_time.present? %>
47
- <div class="extra__date">
48
- <%= l debate.start_time, format: "%d" %> <span class="extra__month"><%= l debate.start_time, format: "%B" %></span>
49
- </div>
50
- <div class="extra__time">
51
- <%= l debate.start_time, format: "%H:%M" %> - <%= l debate.end_time, format: "%H:%M" %>
52
- </div>
53
- <% end %>
48
+ <%= cell("decidim/date", { start: debate.start_time, end: debate.end_time }) %>
54
49
 
55
50
  <% if endorsements_enabled? && allowed_to?(:endorse, :debate, debate: debate) %>
56
51
  <div class="row collapse buttons__row">
@@ -108,7 +103,7 @@ edit_link(
108
103
  <%= render_debate_description(debate) %>
109
104
 
110
105
  <% if debate.closed? %>
111
- <%= cell("decidim/announcement", { announcement: { title: t(".debate_conclusions_are", date: l(debate.closed_at, format: :decidim_short)), body: simple_format(translated_attribute(debate.conclusions)) }, callout_class: "success" }) %>
106
+ <%= cell("decidim/announcement", { title: t(".debate_conclusions_are", date: l(debate.closed_at, format: :decidim_short)), body: simple_format(translated_attribute(debate.conclusions)) }, callout_class: "success") %>
112
107
  <% end %>
113
108
 
114
109
  <% if translated_attribute(debate.instructions).present? %>
@@ -121,11 +116,8 @@ edit_link(
121
116
  <%= decidim_sanitize(simple_format(translated_attribute(debate.information_updates), {}, sanitize: false)) %>
122
117
  </div>
123
118
  <% end %>
124
- <% if debate.category %>
125
- <ul class="tags tags--debate">
126
- <li><%= link_to translated_attribute(debate.category.name), debates_path(filter: { category_id: debate.category.id }) %></li>
127
- </ul>
128
- <% end %>
119
+
120
+ <%= render partial: "decidim/shared/tags", locals: { resource: debate, tags_class_extra: "tags--debate" } %>
129
121
 
130
122
  <%= cell "decidim/endorsers_list", debate %>
131
123
  </div>
@@ -134,13 +126,7 @@ edit_link(
134
126
 
135
127
  <%= comments_for debate %>
136
128
 
137
- <%=
138
- render partial: "decidim/shared/flag_modal", locals: {
139
- reportable: debate,
140
- form: report_form,
141
- url: decidim.report_path(sgid: debate.to_sgid.to_s)
142
- }
143
- %>
129
+ <%= cell("decidim/flag_modal", debate) %>
144
130
  <%=
145
131
  render partial: "close_debate_modal", locals: {
146
132
  debate: debate,
@@ -65,6 +65,10 @@ ca:
65
65
  edit:
66
66
  title: Editar debat
67
67
  update: Actualitzar debat
68
+ form:
69
+ debate_type: Tipus de debat
70
+ finite: Finit (amb moments d'inici i de fi)
71
+ open: Obert (sense moments d'inici ni de fi)
68
72
  index:
69
73
  title: Debats
70
74
  new:
@@ -73,6 +77,8 @@ ca:
73
77
  update:
74
78
  invalid: S'ha produït un error en actualitzar aquest debat.
75
79
  success: Debate actualizado correctament.
80
+ exports:
81
+ comments: Comentaris
76
82
  models:
77
83
  debate:
78
84
  name: Debat
@@ -152,6 +158,7 @@ ca:
152
158
  groups_count: Grups
153
159
  last_comment_by: Darrer comentari de
154
160
  no_comments_yet: Encara no hi ha comentaris
161
+ open: Debat obert
155
162
  participants_count: Participants
156
163
  update:
157
164
  invalid: S'ha produït un error en actualitzar aquest debat.
@@ -200,10 +207,16 @@ ca:
200
207
  email_subject: Els debats ja estan disponibles a %{participatory_space_title}
201
208
  notification_title: Ja pots començar <a href="%{resource_path}">nous debats</a> a <a href="%{participatory_space_url}">%{participatory_space_title}</a>
202
209
  debate_closed:
203
- email_intro: 'El debat "%{resource_title}" s''ha tancat. Podeu llegir-ne les conclusions a la seva pàgina:'
204
- email_outro: Has rebut aquesta notificació perquè estàs seguint el debat "%{resource_title}". Pots deixar-la de seguir des de l'enllaç anterior.
205
- email_subject: El debat "%{resource_title}" s'ha tancat
206
- notification_title: El debat <a href="%{resource_path}">%{resource_title}</a> s'ha tancat.
210
+ affected_user:
211
+ email_intro: 'El debat "%{resource_title}" s''ha tancat. Podeu llegir-ne les conclusions a la seva pàgina:'
212
+ email_outro: Has rebut aquesta notificació perquè estàs seguint el debat "%{resource_title}". Pots deixar-la de seguir des de l'enllaç anterior.
213
+ email_subject: El debat "%{resource_title}" s'ha tancat
214
+ notification_title: El debat <a href="%{resource_path}">%{resource_title}</a> s'ha tancat.
215
+ follower:
216
+ email_intro: 'El debat "%{resource_title}" s''ha tancat. Podeu llegir-ne les conclusions a la seva pàgina:'
217
+ email_outro: Has rebut aquesta notificació perquè estàs seguint el debat "%{resource_title}". Pots deixar-la de seguir des de l'enllaç anterior.
218
+ email_subject: El debat "%{resource_title}" s'ha tancat
219
+ notification_title: El debat <a href="%{resource_path}">%{resource_title}</a> s'ha tancat.
207
220
  gamification:
208
221
  badges:
209
222
  commented_debates:
@@ -67,6 +67,10 @@ cs:
67
67
  edit:
68
68
  title: Upravit debatu
69
69
  update: Aktualizovat debatu
70
+ form:
71
+ debate_type: Typ debaty
72
+ finite: Konečný (s počátečním a koncovým obdobím)
73
+ open: Otevřený (žádné počáteční nebo koncové období)
70
74
  index:
71
75
  title: Debaty
72
76
  new:
@@ -75,6 +79,8 @@ cs:
75
79
  update:
76
80
  invalid: Při aktualizaci této debaty došlo k problému.
77
81
  success: Debata byla úspěšně aktualizována.
82
+ exports:
83
+ comments: Komentáře
78
84
  models:
79
85
  debate:
80
86
  name: Debata
@@ -156,6 +162,7 @@ cs:
156
162
  groups_count: Skupiny
157
163
  last_comment_by: Poslední komentář od
158
164
  no_comments_yet: Zatím žádné komentáře
165
+ open: Otevřít diskusi
159
166
  participants_count: Účastníci
160
167
  update:
161
168
  invalid: Při aktualizaci rozpravy došlo k chybě.
@@ -204,10 +211,16 @@ cs:
204
211
  email_subject: Debaty jsou nyní k dispozici v %{participatory_space_title}
205
212
  notification_title: Nyní můžete začít <a href="%{resource_path}">novou debatu</a> v <a href="%{participatory_space_url}">%{participatory_space_title}</a>
206
213
  debate_closed:
207
- email_intro: 'Debata "%{resource_title}" byla ukončena. Závěry si můžete přečíst z její stránky:'
208
- email_outro: Obdrželi jste toto oznámení, protože sledujete debatu "%{resource_title}". Můžete ji zrušit z předchozího odkazu.
209
- email_subject: Debata "%{resource_title}" byla ukončena
210
- notification_title: Debata <a href="%{resource_path}">%{resource_title}</a> byla ukončena.
214
+ affected_user:
215
+ email_intro: 'Debata "%{resource_title}" byla ukončena. Závěry si můžete přečíst z její stránky:'
216
+ email_outro: Obdrželi jste toto oznámení, protože sledujete debatu "%{resource_title}". Můžete ji zrušit z předchozího odkazu.
217
+ email_subject: Debata "%{resource_title}" byla ukončena
218
+ notification_title: Debata <a href="%{resource_path}">%{resource_title}</a> byla ukončena.
219
+ follower:
220
+ email_intro: 'Debata "%{resource_title}" byla ukončena. Závěry si můžete přečíst z její stránky:'
221
+ email_outro: Obdrželi jste toto oznámení, protože sledujete debatu "%{resource_title}". Můžete ji zrušit z předchozího odkazu.
222
+ email_subject: Debata "%{resource_title}" byla ukončena
223
+ notification_title: Debata <a href="%{resource_path}">%{resource_title}</a> byla ukončena.
211
224
  gamification:
212
225
  badges:
213
226
  commented_debates:
@@ -12,7 +12,7 @@ de:
12
12
  instructions: Anweisungen zur Teilnahme
13
13
  start_time: Startet um
14
14
  title: Titel
15
- user_group_id: Erstellen Sie eine Debatte als
15
+ user_group_id: Debatte erstellen als
16
16
  models:
17
17
  decidim/debates/close_debate_event: Debatte beendet
18
18
  decidim/debates/create_debate_event: Debatte
@@ -65,6 +65,10 @@ de:
65
65
  edit:
66
66
  title: Debatte bearbeiten
67
67
  update: Debatte aktualisieren
68
+ form:
69
+ debate_type: Debatten-Typ
70
+ finite: Zeitlich begrenzt (mit Start- und Endzeit)
71
+ open: Offen (keine Start- und Endzeit)
68
72
  index:
69
73
  title: Debatten
70
74
  new:
@@ -73,16 +77,27 @@ de:
73
77
  update:
74
78
  invalid: Bei der Aktualisierung dieser Debatte ist ein Problem aufgetreten.
75
79
  success: Die Diskussion wurde erfolgreich aktualisiert.
80
+ exports:
81
+ comments: Kommentare
76
82
  models:
77
83
  debate:
78
84
  name: Debatte
79
85
  admin_log:
80
86
  debate:
81
- create: "%{user_name} erstellt die %{resource_name} Debatte über die %{space_name} Räume"
82
- update: "%{user_name} aktualisierte die %{resource_name} Debatte über die %{space_name} Räume"
87
+ close: "%{user_name} hat die Debatte %{resource_name} in %{space_name} geschlossen"
88
+ create: "%{user_name} hat die Debatte %{resource_name} in %{space_name} erstellt"
89
+ update: "%{user_name} hat die Debatte %{resource_name} in %{space_name} aktualisiert"
83
90
  debate_m:
84
91
  commented_time_ago: Vor %{time} kommentiert
85
92
  debates:
93
+ close:
94
+ invalid: Beim Beenden der Debatte ist ein Problem aufgetreten.
95
+ success: Debatte erfolgreich beendet.
96
+ close_debate_modal:
97
+ close: Schließen
98
+ description: Wie lautet die Zusammenfassung oder Schlussfolgerung dieser Debatte?
99
+ send: Debatte schließen
100
+ closed: Geschlossen
86
101
  count:
87
102
  debates_count:
88
103
  one: "%{count} Debatte"
@@ -91,7 +106,7 @@ de:
91
106
  invalid: Es gab ein Problem beim Erstellen der Debatte.
92
107
  success: Diskussion erfolgreich erstellt
93
108
  debate:
94
- participate: Sich beteiligen
109
+ participate: Mitmachen
95
110
  edit:
96
111
  back: Zurück
97
112
  save: Änderungen speichern
@@ -101,7 +116,7 @@ de:
101
116
  all: Alle
102
117
  category: Kategorie
103
118
  category_prompt: Wählen Sie eine Kategorie
104
- citizens: Bürger
119
+ citizens: Einzelpersonen
105
120
  commented: Kommentiert
106
121
  my_debates: Meine Debatten
107
122
  official: Offiziell
@@ -130,12 +145,21 @@ de:
130
145
  commented: Am meisten kommentiert
131
146
  label: Debatten sortieren nach
132
147
  random: Zufällige Reihenfolge
133
- recent: Neueste
148
+ recent: Neueste zuerst
134
149
  updated: Kürzlich aktualisiert
135
150
  show:
136
151
  back: Zurück zur Liste
152
+ close_debate: Debatte schließen
137
153
  date: Datum
154
+ debate_closed: Geschlossen
155
+ debate_conclusions_are: 'Die Debatte wurde am %{date} mit diesen Ergebnissen geschlossen:'
156
+ edit_conclusions: Schlussfolgerungen bearbeiten
138
157
  edit_debate: Debatte bearbeiten
158
+ groups_count: Gruppen
159
+ last_comment_by: Letzter Kommentar von
160
+ no_comments_yet: Noch keine Kommentare
161
+ open: Offene Debatte
162
+ participants_count: Teilnehmer
139
163
  update:
140
164
  invalid: Es gab ein Problem bei der Aktualisierung der Aussprache.
141
165
  success: Debatte erfolgreich aktualisiert.
@@ -161,27 +185,38 @@ de:
161
185
  space_followers:
162
186
  email_intro: |-
163
187
  Hallo,
164
- Eine neue Debatte "%{resource_title}" wurde auf den %{space_title} Partizipationsräumen erstellt, check it out und trage mit:
165
- email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie dem %{space_title} Teilnahmebereich folgen. Sie können nach dem vorherigen Link keine Benachrichtigungen mehr erhalten.
166
- email_subject: Neue Debatte "%{resource_title}" am %{space_title}
167
- notification_title: Die <a href="%{resource_path}">%{resource_title}</a> Debatte wurde am <a href="%{space_path}">%{space_title}</a>.
188
+ Eine neue Debatte "%{resource_title}" wurde in %{space_title} erstellt, sehen Sie es sich an und reden Sie mit:
189
+ email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{space_title} folgen. Falls Sie keine solchen Benachrichtigungen mehr erhalten möchten, besuchen Sie den obigen Link.
190
+ email_subject: Neue Debatte "%{resource_title}" in %{space_title}
191
+ notification_title: Die Debatte <a href="%{resource_path}">%{resource_title}</a> wurde in <a href="%{space_path}">%{space_title}</a> erstellt.
168
192
  user_followers:
169
193
  email_intro: |-
170
194
  Hallo,
171
- %{author_name} %{author_nickname}, dem Sie folgen, hat eine neue Debatte "%{resource_title}" erstellt. Überprüfen Sie es und tragen Sie bei:
172
- email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{author_nickname}. Sie können nach dem vorherigen Link keine Benachrichtigungen mehr erhalten.
195
+ %{author_name} %{author_nickname}, dem Sie folgen, hat eine neue Debatte "%{resource_title}" erstellt. Sehen Sie es sich an und reden Sie mit:
196
+ email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{author_nickname} folgen. Falls Sie keine solchen Benachrichtigungen mehr erhalten möchten, besuchen Sie den obigen Link.
173
197
  email_subject: Neue Debatte "%{resource_title}" von %{author_nickname}
174
- notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> hat die <a href="%{resource_path}">%{resource_title}</a> Debatte geschaffen.
198
+ notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> hat die Debatte <a href="%{resource_path}">%{resource_title}</a> erstellt.
175
199
  creation_disabled:
176
- email_intro: 'Die Erstellung von Debatten ist in %{participatory_space_title}nicht mehr aktiv. Sie können weiterhin an offenen Debatten von dieser Seite teilnehmen:'
177
- email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{participatory_space_title}. Sie können nach dem vorherigen Link keine Benachrichtigungen mehr erhalten.
178
- email_subject: Die Erstellung von Debatten wurde in %{participatory_space_title}deaktiviert
179
- notification_title: Die Erstellung von Debatten ist jetzt in <a href="%{participatory_space_url}">%{participatory_space_title}</a>deaktiviert
200
+ email_intro: 'Die Erstellung von Debatten ist in %{participatory_space_title} nicht mehr aktiviert. Sie können weiterhin an offenen Debatten teilnehmen:'
201
+ email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{participatory_space_title} folgen. Falls Sie keine solchen Benachrichtigungen mehr erhalten möchten, besuchen Sie den obigen Link.
202
+ email_subject: Die Erstellung von Debatten wurde in %{participatory_space_title} deaktiviert
203
+ notification_title: Die Erstellung von Debatten ist jetzt in <a href="%{participatory_space_url}">%{participatory_space_title}</a> deaktiviert
180
204
  creation_enabled:
181
- email_intro: 'Sie können jetzt neue Debatten in %{participatory_space_title}! Starten Sie die Teilnahme an dieser Seite:'
182
- email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{participatory_space_title}. Sie können nach dem vorherigen Link keine Benachrichtigungen mehr erhalten.
183
- email_subject: Debatten jetzt in %{participatory_space_title}verfügbar
184
- notification_title: Sie können jetzt <a href="%{resource_path}">neue Debatten</a> in <a href="%{participatory_space_url}">%{participatory_space_title}</a>starten
205
+ email_intro: 'Sie können jetzt neue Debatten in %{participatory_space_title} eröffnen! Beteiligen Sie sich auf dieser Seite:'
206
+ email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{participatory_space_title} folgen. Falls Sie keine solchen Benachrichtigungen mehr erhalten möchten, besuchen Sie den obigen Link.
207
+ email_subject: Debatten jetzt in %{participatory_space_title} verfügbar
208
+ notification_title: Sie können jetzt <a href="%{resource_path}">neue Debatten</a> in <a href="%{participatory_space_url}">%{participatory_space_title}</a> starten
209
+ debate_closed:
210
+ affected_user:
211
+ email_intro: 'Die Debatte "%{resource_title}" wurde beendet. Sie können die Resultate auf dieser Seite lesen:'
212
+ email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie der Debatte "%{resource_title}" folgen. Falls Sie keine solchen Benachrichtigungen mehr erhalten möchten, besuchen Sie den obigen Link.
213
+ email_subject: Die "%{resource_title}" Debatte wurde beendet
214
+ notification_title: Die Debatte <a href="%{resource_path}">%{resource_title}</a> wurde beendet.
215
+ follower:
216
+ email_intro: 'Die Debatte "%{resource_title}" wurde beendet. Sie können die Resultate auf dieser Seite lesen:'
217
+ email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie der Debatte "%{resource_title}" folgen. Falls Sie keine solchen Benachrichtigungen mehr erhalten möchten, besuchen Sie den obigen Link.
218
+ email_subject: Die "%{resource_title}" Debatte wurde beendet
219
+ notification_title: Die Debatte <a href="%{resource_path}">%{resource_title}</a> wurde beendet.
185
220
  gamification:
186
221
  badges:
187
222
  commented_debates:
@@ -191,9 +226,9 @@ de:
191
226
  description_another: Dieser Benutzer hat an %{score} Debatten teilgenommen.
192
227
  description_own: Sie haben an %{score} Debatten teilgenommen.
193
228
  name: Debatten
194
- next_level_in: Nimm an %{score} weiteren Debatten teil, um das nächste Level zu erreichen!
229
+ next_level_in: Nehmen Sie an %{score} weiteren Debatten teil, um das nächste Level zu erreichen!
195
230
  unearned_another: Dieser Benutzer hat noch keine Diskussionen geführt.
196
- unearned_own: Sie haben bereits an Debatten teilgenommen.
231
+ unearned_own: Sie haben bisher an keiner Debatte teilgenommen.
197
232
  metrics:
198
233
  debates:
199
234
  description: Anzahl der erstellten Debatten
@@ -66,6 +66,10 @@ en:
66
66
  edit:
67
67
  title: Edit debate
68
68
  update: Update debate
69
+ form:
70
+ debate_type: Debate type
71
+ finite: Finite (With start and end times)
72
+ open: Open (No start or end times)
69
73
  index:
70
74
  title: Debates
71
75
  new:
@@ -74,6 +78,8 @@ en:
74
78
  update:
75
79
  invalid: There was a problem updating this debate.
76
80
  success: Debate successfully updated.
81
+ exports:
82
+ comments: Comments
77
83
  models:
78
84
  debate:
79
85
  name: Debate
@@ -153,6 +159,7 @@ en:
153
159
  groups_count: Groups
154
160
  last_comment_by: Last comment by
155
161
  no_comments_yet: No comments yet
162
+ open: Open debate
156
163
  participants_count: Participants
157
164
  update:
158
165
  invalid: There was a problem updating the debate.
@@ -201,10 +208,16 @@ en:
201
208
  email_subject: Debates now available in %{participatory_space_title}
202
209
  notification_title: You can now start <a href="%{resource_path}">new debates</a> in <a href="%{participatory_space_url}">%{participatory_space_title}</a>
203
210
  debate_closed:
204
- email_intro: 'The "%{resource_title}" debate was closed. You can read the conclusions from its page:'
205
- email_outro: You have received this notification because you are following the "%{resource_title}" debate. You can unfollow it from the previous link.
206
- email_subject: The "%{resource_title}" debate was closed
207
- notification_title: The <a href="%{resource_path}">%{resource_title}</a> debate was closed.
211
+ affected_user:
212
+ email_intro: 'The "%{resource_title}" debate was closed. You can read the conclusions from its page:'
213
+ email_outro: You have received this notification because you are following the "%{resource_title}" debate. You can unfollow it from the previous link.
214
+ email_subject: The "%{resource_title}" debate was closed
215
+ notification_title: The <a href="%{resource_path}">%{resource_title}</a> debate was closed.
216
+ follower:
217
+ email_intro: 'The "%{resource_title}" debate was closed. You can read the conclusions from its page:'
218
+ email_outro: You have received this notification because you are following the "%{resource_title}" debate. You can unfollow it from the previous link.
219
+ email_subject: The "%{resource_title}" debate was closed
220
+ notification_title: The <a href="%{resource_path}">%{resource_title}</a> debate was closed.
208
221
  gamification:
209
222
  badges:
210
223
  commented_debates:
@@ -200,10 +200,16 @@ es-MX:
200
200
  email_subject: Debates ahora disponibles en %{participatory_space_title}
201
201
  notification_title: Ahora puedes crear <a href="%{resource_path}">nuevos debates</a> en <a href="%{participatory_space_url}">%{participatory_space_title}</a>
202
202
  debate_closed:
203
- email_intro: 'Se ha cerrado el debate "%{resource_title}". Puedes leer las conclusiones en su página:'
204
- email_outro: Ha recibido esta notificación porque usted sigue el debate "%{resource_title}". Puedes dejar de seguirlo en el enlace anterior.
205
- email_subject: Se ha cerrado el debate "%{resource_title}"
206
- notification_title: El debate <a href="%{resource_path}">%{resource_title}</a> ha sido cerrado.
203
+ affected_user:
204
+ email_intro: 'Se ha cerrado el debate "%{resource_title}". Puedes leer las conclusiones en su página:'
205
+ email_outro: Ha recibido esta notificación porque usted sigue el debate "%{resource_title}". Puedes dejar de seguirlo en el enlace anterior.
206
+ email_subject: Se ha cerrado el debate "%{resource_title}"
207
+ notification_title: El debate <a href="%{resource_path}">%{resource_title}</a> ha sido cerrado.
208
+ follower:
209
+ email_intro: 'Se ha cerrado el debate "%{resource_title}". Puedes leer las conclusiones en su página:'
210
+ email_outro: Ha recibido esta notificación porque usted sigue el debate "%{resource_title}". Puedes dejar de seguirlo en el enlace anterior.
211
+ email_subject: Se ha cerrado el debate "%{resource_title}"
212
+ notification_title: El debate <a href="%{resource_path}">%{resource_title}</a> ha sido cerrado.
207
213
  gamification:
208
214
  badges:
209
215
  commented_debates:
@@ -200,10 +200,16 @@ es-PY:
200
200
  email_subject: Debates ahora disponibles en %{participatory_space_title}
201
201
  notification_title: Ahora puedes crear <a href="%{resource_path}">nuevos debates</a> en <a href="%{participatory_space_url}">%{participatory_space_title}</a>
202
202
  debate_closed:
203
- email_intro: 'Se ha cerrado el debate "%{resource_title}". Puedes leer las conclusiones en su página:'
204
- email_outro: Ha recibido esta notificación porque usted sigue el debate "%{resource_title}". Puedes dejar de seguirlo en el enlace anterior.
205
- email_subject: Se ha cerrado el debate "%{resource_title}"
206
- notification_title: El debate <a href="%{resource_path}">%{resource_title}</a> ha sido cerrado.
203
+ affected_user:
204
+ email_intro: 'Se ha cerrado el debate "%{resource_title}". Puedes leer las conclusiones en su página:'
205
+ email_outro: Ha recibido esta notificación porque usted sigue el debate "%{resource_title}". Puedes dejar de seguirlo en el enlace anterior.
206
+ email_subject: Se ha cerrado el debate "%{resource_title}"
207
+ notification_title: El debate <a href="%{resource_path}">%{resource_title}</a> ha sido cerrado.
208
+ follower:
209
+ email_intro: 'Se ha cerrado el debate "%{resource_title}". Puedes leer las conclusiones en su página:'
210
+ email_outro: Ha recibido esta notificación porque usted sigue el debate "%{resource_title}". Puedes dejar de seguirlo en el enlace anterior.
211
+ email_subject: Se ha cerrado el debate "%{resource_title}"
212
+ notification_title: El debate <a href="%{resource_path}">%{resource_title}</a> ha sido cerrado.
207
213
  gamification:
208
214
  badges:
209
215
  commented_debates:
@@ -200,10 +200,16 @@ es:
200
200
  email_subject: Los debates ya estan disponibles en %{participatory_space_title}
201
201
  notification_title: Ya puedes empezar <a href="%{resource_path}">nuevos debates</a> en <a href="%{participatory_space_url}">%{participatory_space_title}</a>
202
202
  debate_closed:
203
- email_intro: 'Se ha cerrado el debate "%{resource_title}". Puedes leer las conclusiones en su página:'
204
- email_outro: Has recibido esta notificación porque estás siguiendo el debate "%{resource_title}". Puedes dejar de seguirlo en el enlace anterior.
205
- email_subject: Se ha cerrado el debate "%{resource_title}"
206
- notification_title: El debate <a href="%{resource_path}">%{resource_title}</a> se ha cerrado.
203
+ affected_user:
204
+ email_intro: 'Se ha cerrado el debate "%{resource_title}". Puedes leer las conclusiones en su página:'
205
+ email_outro: Has recibido esta notificación porque estás siguiendo el debate "%{resource_title}". Puedes dejar de seguirlo en el enlace anterior.
206
+ email_subject: Se ha cerrado el debate "%{resource_title}"
207
+ notification_title: El debate <a href="%{resource_path}">%{resource_title}</a> se ha cerrado.
208
+ follower:
209
+ email_intro: 'Se ha cerrado el debate "%{resource_title}". Puedes leer las conclusiones en su página:'
210
+ email_outro: Has recibido esta notificación porque estás siguiendo el debate "%{resource_title}". Puedes dejar de seguirlo en el enlace anterior.
211
+ email_subject: Se ha cerrado el debate "%{resource_title}"
212
+ notification_title: El debate <a href="%{resource_path}">%{resource_title}</a> se ha cerrado.
207
213
  gamification:
208
214
  badges:
209
215
  commented_debates:
@@ -65,6 +65,10 @@ fi-pl:
65
65
  edit:
66
66
  title: Muokkaa keskustelua
67
67
  update: Päivitä keskustelu
68
+ form:
69
+ debate_type: Keskustelun tyyppi
70
+ finite: Määräaikainen (keskustelulla on alku- ja loppuaika)
71
+ open: Avoin (keskustelulla ei ole alku- ja loppuaikaa)
68
72
  index:
69
73
  title: Keskustelut
70
74
  new:
@@ -73,6 +77,8 @@ fi-pl:
73
77
  update:
74
78
  invalid: Keskustelun päivittämisessä tapahtui virhe.
75
79
  success: Keskustelu päivitetty onnistuneesti.
80
+ exports:
81
+ comments: Kommentit
76
82
  models:
77
83
  debate:
78
84
  name: Keskustelu
@@ -152,6 +158,7 @@ fi-pl:
152
158
  groups_count: Ryhmiä
153
159
  last_comment_by: Viimeisin kommentti käyttäjältä
154
160
  no_comments_yet: Ei vielä kommentteja
161
+ open: Avoin keskustelu
155
162
  participants_count: Osallistujia
156
163
  update:
157
164
  invalid: Keskustelun päivittäminen epäonnistui.
@@ -200,10 +207,16 @@ fi-pl:
200
207
  email_subject: Keskusteluja nyt käyettävissä kohdassa %{participatory_space_title}
201
208
  notification_title: Voit nyt aloittaa <a href="%{resource_path}">uusia keskusteluja</a> kohteessa <a href="%{participatory_space_url}">%{participatory_space_title}</a>
202
209
  debate_closed:
203
- email_intro: 'Keskustelu "%{resource_title}" suljettiin. Voit lukea johtopäätökset täältä:'
204
- email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat keskustelua "%{resource_title}". Voit lopettaa seuraamisen edellä esitetyn linkin kautta.
205
- email_subject: Keskustelu "%{resource_title}" suljettiin
206
- notification_title: Keskustelu <a href="%{resource_path}">%{resource_title}</a> suljettiin.
210
+ affected_user:
211
+ email_intro: 'Keskustelu "%{resource_title}" suljettiin. Voit lukea johtopäätökset täältä:'
212
+ email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat keskustelua "%{resource_title}". Voit lopettaa seuraamisen edellä esitetyn linkin kautta.
213
+ email_subject: Keskustelu "%{resource_title}" suljettiin
214
+ notification_title: Keskustelu <a href="%{resource_path}">%{resource_title}</a> suljettiin.
215
+ follower:
216
+ email_intro: 'Keskustelu "%{resource_title}" suljettiin. Voit lukea johtopäätökset täältä:'
217
+ email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat keskustelua "%{resource_title}". Voit lopettaa seuraamisen edellä esitetyn linkin kautta.
218
+ email_subject: Keskustelu "%{resource_title}" suljettiin
219
+ notification_title: Keskustelu <a href="%{resource_path}">%{resource_title}</a> suljettiin.
207
220
  gamification:
208
221
  badges:
209
222
  commented_debates: