decidim-debates 0.23.1 → 0.23.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b59d0b143b8d46e030fd720fabcf3e27fafea1c19f0e4ab7a417cbb062517e1c
4
- data.tar.gz: 53a27a398be17df48964b7871b53b461ad5ac05595362168c3872c5c96110632
3
+ metadata.gz: c47dbcc65279eb8e3624a1be71fc66ca2a744216fd06bb5c744662e5bc0ecaca
4
+ data.tar.gz: a9f04220070a77050aa9c92ec19b7a738098c75a62cb0d24ceaecec105739194
5
5
  SHA512:
6
- metadata.gz: c345162f0acde3789244ba3980c25132d5344f094dbee765806779dcb5af3017851a4dc0b36e071c8a5430f6025d4133c8e84304c7231099c10c0bb7202d4dfb
7
- data.tar.gz: 13a11f37931f0ccd6910cee0fd836270d375657ceebd2022c715aa1d1d4cd611ce4e80a12f57b0cb41d5284fe283f8ef5fcf94092279e7f8a0fdcda2d25fb676
6
+ metadata.gz: d80ca09bf4782d4eaf18e3aabd6cd5e790f9edd3de608b6e61be265fe71f0f712eb3192ed8cf00d453f77ed1719c0bc09ee81573936e59ae4fa00ef1df624ed7
7
+ data.tar.gz: f3301123e0b354c5797049e120b0fbe2ec99cbeec73e53d77cbe9f2e12b9e8d63cfabaa337278bd2511113e7de01bddd2788138cf131421f6bd46489719c21ed
@@ -131,10 +131,13 @@ module Decidim
131
131
  end
132
132
 
133
133
  def self.newsletter_participant_ids(component)
134
- Decidim::Debates::Debate.where(component: component).joins(:component)
135
- .where(decidim_author_type: Decidim::UserBaseEntity.name)
136
- .where.not(author: nil)
137
- .pluck(:decidim_author_id).flatten.compact.uniq
134
+ authors_ids = Decidim::Debates::Debate.where(component: component)
135
+ .where(decidim_author_type: Decidim::UserBaseEntity.name)
136
+ .where.not(author: nil)
137
+ .group(:decidim_author_id)
138
+ .pluck(:decidim_author_id).flatten.compact
139
+ commentators_ids = Decidim::Comments::Comment.user_commentators_ids_in(Decidim::Debates::Debate.where(component: component))
140
+ (authors_ids + commentators_ids).flatten.compact.uniq
138
141
  end
139
142
 
140
143
  # Checks whether the user can edit the debate.
@@ -1,8 +1,10 @@
1
1
  <div class="row columns">
2
- <%= link_to :back, class: "muted-link" do %>
3
- <%= icon "chevron-left", class: "icon--small", role: "img" %>
4
- <%= t(".back") %>
5
- <% end %>
2
+ <div class="m-bottom">
3
+ <%= link_to :back, class: "muted-link" do %>
4
+ <%= icon "chevron-left", class: "icon--small", role: "img" %>
5
+ <%= t(".back") %>
6
+ <% end %>
7
+ </div>
6
8
  <h2 class="section-heading"><%= t(".title") %></h2>
7
9
  </div>
8
10
 
@@ -1,8 +1,10 @@
1
1
  <div class="row columns">
2
- <%= link_to :back, class: "muted-link" do %>
3
- <%= icon "chevron-left", class: "icon--small", role: "img", "aria-hidden": true %>
4
- <%= t(".back") %>
5
- <% end %>
2
+ <div class="m-bottom">
3
+ <%= link_to :back, class: "muted-link" do %>
4
+ <%= icon "chevron-left", class: "icon--small", role: "img", "aria-hidden": true %>
5
+ <%= t(".back") %>
6
+ <% end %>
7
+ </div>
6
8
  <h2 class="section-heading"><%= t(".title") %></h2>
7
9
  </div>
8
10
 
@@ -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) %>
@@ -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
@@ -78,11 +78,20 @@ de:
78
78
  name: Debatte
79
79
  admin_log:
80
80
  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"
81
+ close: "%{user_name} hat die Debatte %{resource_name} in %{space_name} geschlossen"
82
+ create: "%{user_name} hat die Debatte %{resource_name} in %{space_name} erstellt"
83
+ update: "%{user_name} hat die Debatte %{resource_name} in %{space_name} aktualisiert"
83
84
  debate_m:
84
85
  commented_time_ago: Vor %{time} kommentiert
85
86
  debates:
87
+ close:
88
+ invalid: Beim Beenden der Debatte ist ein Problem aufgetreten.
89
+ success: Debatte erfolgreich beendet.
90
+ close_debate_modal:
91
+ close: Schließen
92
+ description: Wie lautet die Zusammenfassung oder Schlussfolgerung dieser Debatte?
93
+ send: Debatte schließen
94
+ closed: Geschlossen
86
95
  count:
87
96
  debates_count:
88
97
  one: "%{count} Debatte"
@@ -91,7 +100,7 @@ de:
91
100
  invalid: Es gab ein Problem beim Erstellen der Debatte.
92
101
  success: Diskussion erfolgreich erstellt
93
102
  debate:
94
- participate: Sich beteiligen
103
+ participate: Mitmachen
95
104
  edit:
96
105
  back: Zurück
97
106
  save: Änderungen speichern
@@ -101,7 +110,7 @@ de:
101
110
  all: Alle
102
111
  category: Kategorie
103
112
  category_prompt: Wählen Sie eine Kategorie
104
- citizens: Bürger
113
+ citizens: Einzelpersonen
105
114
  commented: Kommentiert
106
115
  my_debates: Meine Debatten
107
116
  official: Offiziell
@@ -130,12 +139,20 @@ de:
130
139
  commented: Am meisten kommentiert
131
140
  label: Debatten sortieren nach
132
141
  random: Zufällige Reihenfolge
133
- recent: Neueste
142
+ recent: Neueste zuerst
134
143
  updated: Kürzlich aktualisiert
135
144
  show:
136
145
  back: Zurück zur Liste
146
+ close_debate: Debatte schließen
137
147
  date: Datum
148
+ debate_closed: Geschlossen
149
+ debate_conclusions_are: 'Die Debatte wurde am %{date} mit diesen Ergebnissen geschlossen:'
150
+ edit_conclusions: Schlussfolgerungen bearbeiten
138
151
  edit_debate: Debatte bearbeiten
152
+ groups_count: Gruppen
153
+ last_comment_by: Letzter Kommentar von
154
+ no_comments_yet: Noch keine Kommentare
155
+ participants_count: Teilnehmer
139
156
  update:
140
157
  invalid: Es gab ein Problem bei der Aktualisierung der Aussprache.
141
158
  success: Debatte erfolgreich aktualisiert.
@@ -161,27 +178,32 @@ de:
161
178
  space_followers:
162
179
  email_intro: |-
163
180
  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>.
181
+ Eine neue Debatte "%{resource_title}" wurde in %{space_title} erstellt, sehen Sie es sich an und reden Sie mit:
182
+ 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.
183
+ email_subject: Neue Debatte "%{resource_title}" in %{space_title}
184
+ notification_title: Die Debatte <a href="%{resource_path}">%{resource_title}</a> wurde in <a href="%{space_path}">%{space_title}</a> erstellt.
168
185
  user_followers:
169
186
  email_intro: |-
170
187
  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.
188
+ %{author_name} %{author_nickname}, dem Sie folgen, hat eine neue Debatte "%{resource_title}" erstellt. Sehen Sie es sich an und reden Sie mit:
189
+ 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
190
  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.
191
+ notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> hat die Debatte <a href="%{resource_path}">%{resource_title}</a> erstellt.
175
192
  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
193
+ email_intro: 'Die Erstellung von Debatten ist in %{participatory_space_title} nicht mehr aktiviert. Sie können weiterhin an offenen Debatten teilnehmen:'
194
+ 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.
195
+ email_subject: Die Erstellung von Debatten wurde in %{participatory_space_title} deaktiviert
196
+ notification_title: Die Erstellung von Debatten ist jetzt in <a href="%{participatory_space_url}">%{participatory_space_title}</a> deaktiviert
180
197
  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
198
+ email_intro: 'Sie können jetzt neue Debatten in %{participatory_space_title} eröffnen! Beteiligen Sie sich auf dieser Seite:'
199
+ 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.
200
+ email_subject: Debatten jetzt in %{participatory_space_title} verfügbar
201
+ notification_title: Sie können jetzt <a href="%{resource_path}">neue Debatten</a> in <a href="%{participatory_space_url}">%{participatory_space_title}</a> starten
202
+ debate_closed:
203
+ email_intro: 'Die Debatte "%{resource_title}" wurde beendet. Sie können die Resultate auf dieser Seite lesen:'
204
+ 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.
205
+ email_subject: Die "%{resource_title}" Debatte wurde beendet
206
+ notification_title: Die Debatte <a href="%{resource_path}">%{resource_title}</a> wurde beendet.
185
207
  gamification:
186
208
  badges:
187
209
  commented_debates:
@@ -191,9 +213,9 @@ de:
191
213
  description_another: Dieser Benutzer hat an %{score} Debatten teilgenommen.
192
214
  description_own: Sie haben an %{score} Debatten teilgenommen.
193
215
  name: Debatten
194
- next_level_in: Nimm an %{score} weiteren Debatten teil, um das nächste Level zu erreichen!
216
+ next_level_in: Nehmen Sie an %{score} weiteren Debatten teil, um das nächste Level zu erreichen!
195
217
  unearned_another: Dieser Benutzer hat noch keine Diskussionen geführt.
196
- unearned_own: Sie haben bereits an Debatten teilgenommen.
218
+ unearned_own: Sie haben bisher an keiner Debatte teilgenommen.
197
219
  metrics:
198
220
  debates:
199
221
  description: Anzahl der erstellten Debatten
@@ -115,7 +115,7 @@ fr:
115
115
  my_debates: Mes débats
116
116
  official: Officielle
117
117
  origin: Origine
118
- scope: Périmètre d'application
118
+ scope: Secteur
119
119
  search: Rechercher
120
120
  state: Statut
121
121
  state_values:
@@ -133,6 +133,11 @@ gl:
133
133
  email_outro: Recibiches esta notificación porque estás seguindo %{participatory_space_title}. Podes deixar de recibir notificacións seguindo a ligazón anterior.
134
134
  email_subject: Os debates agora están dispoñibles en %{participatory_space_title}
135
135
  notification_title: Agora podes comezar <a href="%{resource_path}">novos debates</a> en <a href="%{participatory_space_url}">%{participatory_space_title}</a>
136
+ debate_closed:
137
+ email_intro: 'Pechouse o debate "%{resource_title}". Podes ler as súas conclusións na súa páxina:'
138
+ email_outro: Recibiches esta notificación porque segues o debate "%{resource_title}". Podes deixar de seguilo dende a ligazón anterior.
139
+ email_subject: Pechouse o debate "%{resource_title}"
140
+ notification_title: O debate <a href="%{resource_path}">%{resource_title}</a> foi pechado.
136
141
  gamification:
137
142
  badges:
138
143
  commented_debates:
@@ -185,7 +185,7 @@ nl:
185
185
  commented_debates:
186
186
  conditions:
187
187
  - Kies een open debat om deel te nemen
188
- description: Deze badge wordt toegekend wanneer u actief deelneemt aan de verschillende debatten door uw opmerkingen achter te laten.
188
+ description: Deze badge wordt toegekend wanneer u actief deelneemt aan de verschillende debatten door uw reacties achter te laten.
189
189
  description_another: Deze gebruiker heeft deelgenomen aan %{score} debatten.
190
190
  description_own: Je hebt deelgenomen aan %{score} debatten.
191
191
  name: debatten
@@ -32,6 +32,7 @@
32
32
  announcement: Kunngjøring
33
33
  comments_enabled: Kommentarer er aktivert
34
34
  comments_max_length: Maks kommentarlengde
35
+ scope_id: Tema
35
36
  step:
36
37
  announcement: Kunngjøring
37
38
  comments_blocked: Kommentarer er blokkert
@@ -103,6 +104,7 @@
103
104
  citizens: Innbyggere
104
105
  official: Offentlig
105
106
  origin: Opprinnelse
107
+ scope: Tema
106
108
  search: Søk
107
109
  filters_small_view:
108
110
  close_modal: Lukk vinduet
@@ -0,0 +1 @@
1
+ si:
@@ -122,6 +122,12 @@ sv:
122
122
  back: Tillbaka
123
123
  create: Skapa
124
124
  title: Ny debatt
125
+ orders:
126
+ commented: Mest kommenterade
127
+ label: Sortera debater efter
128
+ random: Slumpmässig ordning
129
+ recent: Senaste
130
+ updated: Senast uppdaterade
125
131
  show:
126
132
  back: Tillbaka till listan
127
133
  close_debate: Stäng debatt
@@ -0,0 +1 @@
1
+ sw:
@@ -3,6 +3,8 @@ tr:
3
3
  attributes:
4
4
  debate:
5
5
  category_id: Kategori
6
+ closed_at: Kapandı
7
+ conclusions: Sonuçlar
6
8
  decidim_category_id: Kategori
7
9
  description: Açıklama
8
10
  end_time: Biter
@@ -12,6 +14,7 @@ tr:
12
14
  title: Başlık
13
15
  user_group_id: Olarak tartışma oluştur
14
16
  models:
17
+ decidim/debates/close_debate_event: Tartışma kapandı
15
18
  decidim/debates/create_debate_event: tartışma
16
19
  decidim/debates/creation_disabled_event: Tartışmalar devre dışı bırakıldı
17
20
  decidim/debates/creation_enabled_event: Tartışmalar etkin
@@ -25,23 +28,34 @@ tr:
25
28
  debates:
26
29
  actions:
27
30
  create: yaratmak
31
+ endorse: Onayla
28
32
  name: Tartışmalar
29
33
  settings:
30
34
  global:
31
35
  announcement: duyuru
32
36
  comments_enabled: Yorumlar etkin
37
+ comments_max_length: Maksimum yorum uzunluğu (Varsayılan değer için 0 bırakın)
38
+ scope_id: Kapsam
39
+ scopes_enabled: Kapsamlar etkinleştirildi
33
40
  step:
34
41
  announcement: duyuru
35
42
  comments_blocked: Yorumlar engellendi
36
43
  creation_enabled: Katılımcılar tarafından tartışma yaratıldı etkin
44
+ endorsements_blocked: Onaylar engellendi
45
+ endorsements_enabled: Onaylar etkinleştirildi
37
46
  debates:
38
47
  actions:
48
+ close: Kapat
39
49
  confirm_destroy: Emin misiniz?
40
- destroy: silmek
50
+ destroy: Sil
41
51
  edit: Düzenle
42
52
  new: Yeni %{name}
43
53
  title: Eylemler
44
54
  admin:
55
+ debate_closes:
56
+ edit:
57
+ close: Kapat
58
+ title: Tartışmayı kapat
45
59
  debates:
46
60
  create:
47
61
  invalid: Tartışmayı oluştururken bir sorun oluştu.
@@ -61,44 +75,96 @@ tr:
61
75
  success: Tartışma başarıyla güncellendi.
62
76
  models:
63
77
  debate:
64
- name: tartışma
78
+ name: Tartışma
65
79
  admin_log:
66
80
  debate:
67
- create: "%{user_name} , %{space_name} alanda %{resource_name} tartışmasını yarattı"
68
- update: "%{user_name} , %{space_name} uzayda %{resource_name} tartışmasını güncelledi"
81
+ close: "%{user_name}, %{space_name} alanındaki %{resource_name} tartışmasını kapattı"
82
+ create: "%{user_name}, %{space_name} alanındaki %{resource_name} tartışmasını yarattı"
83
+ update: "%{user_name}, %{space_name} alanındaki %{resource_name} tartışmasını güncelledi"
84
+ debate_m:
85
+ commented_time_ago: '%{time} önce yorumlandı'
69
86
  debates:
87
+ close:
88
+ invalid: Tartışmayı kapatırken bir sorun oluştu.
89
+ success: Tartışma başarıyla sonuçlandı.
90
+ close_debate_modal:
91
+ close: Kapat
92
+ description: Bu tartışmanın özeti veya sonucu nedir?
93
+ send: Tartışmayı kapat
94
+ closed: Kapat
70
95
  count:
71
96
  debates_count:
72
97
  one: "%{count} tartışma"
73
- other: "%{count} tartışmalar"
98
+ other: "%{count} tartışma"
74
99
  create:
75
100
  invalid: Tartışmayı oluştururken bir sorun oluştu.
76
101
  success: Tartışma başarıyla oluşturuldu.
77
102
  debate:
78
103
  participate: Katıl
104
+ edit:
105
+ back: Geri
106
+ save: Değişiklikleri kaydet
107
+ title: Tartışmayı düzenleyin
79
108
  filters:
80
- all: Herşey
109
+ activity: Aktivitelerim
110
+ all: Tümü
81
111
  category: Kategori
82
- category_prompt: bir kategori seç
112
+ category_prompt: Bir kategori seç
83
113
  citizens: Vatandaşlar
114
+ commented: Yorum yaptı
115
+ my_debates: Tartışmalarım
84
116
  official: Resmi
85
- origin: Menşei
117
+ origin: Orijin
118
+ scope: Kapsam
86
119
  search: Arama
120
+ state: Statü
121
+ state_values:
122
+ closed: Kapalı
123
+ open: Açık
124
+ user_groups: Gruplar
87
125
  filters_small_view:
88
- close_modal: Kalıcı modal
89
- filter: filtre
90
- filter_by: Tarafından filtre
91
- unfold: açılmak
126
+ close_modal: Pencereyi kapat
127
+ filter: Filtrele
128
+ filter_by: Şuna göre filtrele
129
+ unfold:
92
130
  form:
93
131
  select_a_category: Lütfen bir kategori seçin
94
132
  index:
95
133
  new_debate: Yeni tartışma
96
134
  new:
97
135
  back: Geri
98
- create: yaratmak
136
+ create: Oluştur
99
137
  title: Yeni tartışma
138
+ orders:
139
+ commented: En çok yorum yapılan
140
+ label: Tartışmaların sıralama ölçütü
141
+ random: Rasgele sırala
142
+ recent: En yeni
143
+ updated: Yeni güncellenmiş
144
+ show:
145
+ back: Listeye geri dön
146
+ close_debate: Tartışmayı kapat
147
+ date: Tarih
148
+ debate_closed: Kapalı
149
+ debate_conclusions_are: 'Tartışma bu sonuçlarla %{date} tarihinde kapatıldı:'
150
+ edit_conclusions: Sonuçları düzenleyin
151
+ edit_debate: Tartışmayı düzenle
152
+ groups_count: Gruplar
153
+ last_comment_by: Son yorum
154
+ no_comments_yet: Henüz yorum yok
155
+ participants_count: Katılımcılar
156
+ update:
157
+ invalid: Bu tartışmayı güncellerken bir sorun oluştu.
158
+ success: Tartışma başarıyla güncellendi.
159
+ versions:
160
+ debates:
161
+ back_to_resource: Tartışmaya geri dön
162
+ index:
163
+ title: Sürümler
164
+ versions_list:
165
+ back_to_resource: Tartışmaya geri dön
100
166
  last_activity:
101
- new_debate_at_html: "<span> %{link}</span>yeni tartışma"
167
+ new_debate_at_html: "<span> %{link}</span> linkinde yeni tartışma"
102
168
  models:
103
169
  debate:
104
170
  fields:
@@ -114,33 +180,38 @@ tr:
114
180
  Merhaba,
115
181
  %{space_title} katılımcı alanda yeni bir "%{resource_title}" tartışması oluşturuldu, inceleyin ve katkıda bulunun:
116
182
  email_outro: '%{space_title} katılımcı alanı takip ettiğiniz için bu bildirimi aldınız. Önceki bağlantıyı takip ederek bildirim almayı durdurabilirsiniz.'
117
- email_subject: '%{space_title}yeni tartışma "%{resource_title}"'
118
- notification_title: <a href="%{resource_path}">%{resource_title}</a> tartışması <a href="%{space_path}">%{space_title}</a>oluşturuldu.
183
+ email_subject: '%{space_title} üzerinde yeni tartışma "%{resource_title}"'
184
+ notification_title: <a href="%{resource_path}">%{resource_title} </a> tartışması <a href="%{space_path}">%{space_title} </a> adresinde oluşturuldu.
119
185
  user_followers:
120
186
  email_intro: |-
121
187
  Merhaba,
122
- %{author_name} %{author_nickname}, takip ettiğiniz, yeni bir "%{resource_title}" tartışması yarattı. Şuna bir bakın ve katkıda bulunun:
123
- email_outro: '%{author_nickname}takip ettiğiniz için bu bildirimi aldınız. Önceki bağlantıyı takip ederek bildirim almayı durdurabilirsiniz.'
124
- email_subject: Yeni tartışma "%{resource_title}" ile %{author_nickname}
125
- notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> <a href="%{resource_path}">%{resource_title}</a> tartışmasını yarattı.
188
+ Takip ettiğiniz %{author_name} %{author_nickname}, "%{resource_title}" adlı yeni bir tartışma yarattı. Kontrol edin ve katkıda bulunun:
189
+ email_outro: Bu bildirimi %{author_nickname} adlı kişiyi takip ettiğiniz için aldınız. Önceki bağlantıyı izleyerek bildirim almayı durdurabilirsiniz.
190
+ email_subject: '%{author_nickname} tarafından "%{resource_title}" adlı yeni tartışma'
191
+ notification_title: <a href="%{author_path}">%{author_name} %{author_nickname} </a>, <a href="%{resource_path}">%{resource_title} </a> tartışmasını oluşturdu.
126
192
  creation_disabled:
127
- email_intro: 'Tartışma oluşturma artık %{participatory_space_title}etkin değil. Bu sayfadaki açık tartışmalara hala katılabilirsiniz:'
128
- email_outro: '%{participatory_space_title}takip ettiğiniz için bu bildirimi aldınız. Önceki bağlantıyı takip ederek bildirim almayı durdurabilirsiniz.'
129
- email_subject: Tartışma oluşturma %{participatory_space_title}devre dışı
130
- notification_title: Tartışma oluşturma şimdi <a href="%{participatory_space_url}">%{participatory_space_title}</a>devre dışı bırakıldı
193
+ email_intro: 'Tartışma oluşturma artık %{participatory_space_title} içinde aktif değil. Bu sayfadan hala açık tartışmalara katılabilirsiniz:'
194
+ email_outro: Bu bildirimi, %{participatory_space_title} adlı kişiyi takip ettiğiniz için aldınız. Önceki bağlantıyı izleyerek bildirim almayı durdurabilirsiniz.
195
+ email_subject: '%{participatory_space_title} içinde tartışma oluşturma devre dışı bırakıldı'
196
+ notification_title: Tartışma oluşturma artık <a href="%{participatory_space_url}">%{participatory_space_title} </a> içinde devre dışı bırakıldı
131
197
  creation_enabled:
132
- email_intro: 'Artık %{participatory_space_title}yeni tartışmalara başlayabilirsiniz! Bu sayfaya katılmaya başlayın:'
133
- email_outro: '%{participatory_space_title}takip ettiğiniz için bu bildirimi aldınız. Önceki bağlantıyı takip ederek bildirim almayı durdurabilirsiniz.'
134
- email_subject: Şimdi tartışmalar %{participatory_space_title}
135
- notification_title: Şimdi <a href="%{resource_path}">yeni tartışmaya başlayabilirsiniz.</a> <a href="%{participatory_space_url}">%{participatory_space_title}</a>
198
+ email_intro: 'Artık %{participatory_space_title} içinde yeni tartışmalar başlatabilirsiniz! Bu sayfaya katılmaya başlayın:'
199
+ email_outro: Bu bildirimi, %{participatory_space_title} adlı kişiyi takip ettiğiniz için aldınız. Önceki bağlantıyı izleyerek bildirim almayı durdurabilirsiniz.
200
+ email_subject: Tartışmalar artık %{participatory_space_title} içinde mevcut
201
+ notification_title: Artık <a href="%{participatory_space_url}">%{participatory_space_title} </a> ’de <a href="%{resource_path}"> yeni tartışmalar </a> başlatabilirsiniz
202
+ debate_closed:
203
+ email_intro: '"%{resource_title}" tartışması kapatıldı. Sonuçları sayfasından okuyabilirsiniz:'
204
+ email_outro: Bu bildirimi, "%{resource_title}" tartışmasını takip ettiğiniz için aldınız. Önceki bağlantıdan takibini bırakabilirsiniz.
205
+ email_subject: '"%{resource_title}" tartışması kapatıldı'
206
+ notification_title: <a href="%{resource_path}">%{resource_title} </a> tartışması kapatıldı.
136
207
  gamification:
137
208
  badges:
138
209
  commented_debates:
139
210
  conditions:
140
211
  - Katılmak için açık bir tartışma seçin
141
212
  description: Bu rozet, yorumlarınızı bırakarak farklı tartışmalara aktif olarak katıldığınızda verilir.
142
- description_another: Bu katılımcı %{score} tartışmada yer aldı.
143
- description_own: '%{score} tartışmaya katıldınız.'
213
+ description_another: Bu katılımcı %{score} kez tartışmada yer aldı.
214
+ description_own: '%{score} kez tartışmaya katıldınız.'
144
215
  name: Tartışmalar
145
216
  next_level_in: Bir sonraki seviyeye ulaşmak için %{score} tartışmaya katılın!
146
217
  unearned_another: Bu katılımcı henüz bir tartışmada yer almadı.
@@ -4,7 +4,7 @@ module Decidim
4
4
  # This holds the decidim-debates version.
5
5
  module Debates
6
6
  def self.version
7
- "0.23.1"
7
+ "0.23.2"
8
8
  end
9
9
  end
10
10
  end
metadata CHANGED
@@ -1,17 +1,17 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: decidim-debates
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.23.1
4
+ version: 0.23.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Josep Jaume Rey Peroy
8
8
  - Marc Riera Casals
9
9
  - Oriol Gual Oliva
10
10
  - Genis Matutes Pujol
11
- autorequire:
11
+ autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2020-11-12 00:00:00.000000000 Z
14
+ date: 2021-02-09 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: decidim-comments
@@ -19,28 +19,28 @@ dependencies:
19
19
  requirements:
20
20
  - - '='
21
21
  - !ruby/object:Gem::Version
22
- version: 0.23.1
22
+ version: 0.23.2
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
26
26
  requirements:
27
27
  - - '='
28
28
  - !ruby/object:Gem::Version
29
- version: 0.23.1
29
+ version: 0.23.2
30
30
  - !ruby/object:Gem::Dependency
31
31
  name: decidim-core
32
32
  requirement: !ruby/object:Gem::Requirement
33
33
  requirements:
34
34
  - - '='
35
35
  - !ruby/object:Gem::Version
36
- version: 0.23.1
36
+ version: 0.23.2
37
37
  type: :runtime
38
38
  prerelease: false
39
39
  version_requirements: !ruby/object:Gem::Requirement
40
40
  requirements:
41
41
  - - '='
42
42
  - !ruby/object:Gem::Version
43
- version: 0.23.1
43
+ version: 0.23.2
44
44
  - !ruby/object:Gem::Dependency
45
45
  name: kaminari
46
46
  requirement: !ruby/object:Gem::Requirement
@@ -81,28 +81,28 @@ dependencies:
81
81
  requirements:
82
82
  - - '='
83
83
  - !ruby/object:Gem::Version
84
- version: 0.23.1
84
+ version: 0.23.2
85
85
  type: :development
86
86
  prerelease: false
87
87
  version_requirements: !ruby/object:Gem::Requirement
88
88
  requirements:
89
89
  - - '='
90
90
  - !ruby/object:Gem::Version
91
- version: 0.23.1
91
+ version: 0.23.2
92
92
  - !ruby/object:Gem::Dependency
93
93
  name: decidim-dev
94
94
  requirement: !ruby/object:Gem::Requirement
95
95
  requirements:
96
96
  - - '='
97
97
  - !ruby/object:Gem::Version
98
- version: 0.23.1
98
+ version: 0.23.2
99
99
  type: :development
100
100
  prerelease: false
101
101
  version_requirements: !ruby/object:Gem::Requirement
102
102
  requirements:
103
103
  - - '='
104
104
  - !ruby/object:Gem::Version
105
- version: 0.23.1
105
+ version: 0.23.2
106
106
  description: A debates component for decidim's participatory spaces.
107
107
  email:
108
108
  - josepjaume@gmail.com
@@ -241,12 +241,14 @@ files:
241
241
  - config/locales/pt.yml
242
242
  - config/locales/ro-RO.yml
243
243
  - config/locales/ru.yml
244
+ - config/locales/si-LK.yml
244
245
  - config/locales/sk-SK.yml
245
246
  - config/locales/sk.yml
246
247
  - config/locales/sl.yml
247
248
  - config/locales/so-SO.yml
248
249
  - config/locales/sr-CS.yml
249
250
  - config/locales/sv.yml
251
+ - config/locales/sw-KE.yml
250
252
  - config/locales/ti-ER.yml
251
253
  - config/locales/tr-TR.yml
252
254
  - config/locales/uk.yml
@@ -280,7 +282,7 @@ homepage: https://github.com/decidim/decidim
280
282
  licenses:
281
283
  - AGPL-3.0
282
284
  metadata: {}
283
- post_install_message:
285
+ post_install_message:
284
286
  rdoc_options: []
285
287
  require_paths:
286
288
  - lib
@@ -296,7 +298,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
296
298
  version: '0'
297
299
  requirements: []
298
300
  rubygems_version: 3.0.3
299
- signing_key:
301
+ signing_key:
300
302
  specification_version: 4
301
303
  summary: Decidim debates module
302
304
  test_files: []