decidim-debates 0.23.0 → 0.23.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/cells/decidim/debates/debate_activity_cell.rb +13 -5
- data/app/models/decidim/debates/debate.rb +7 -4
- data/app/views/decidim/debates/debates/edit.html.erb +6 -4
- data/app/views/decidim/debates/debates/new.html.erb +6 -4
- data/app/views/decidim/debates/debates/show.html.erb +6 -4
- data/config/locales/ca.yml +1 -0
- data/config/locales/cs.yml +1 -0
- data/config/locales/de.yml +46 -23
- data/config/locales/en.yml +1 -0
- data/config/locales/fi-plain.yml +1 -0
- data/config/locales/fi.yml +1 -0
- data/config/locales/fr-CA.yml +1 -0
- data/config/locales/fr.yml +2 -1
- data/config/locales/gl.yml +5 -0
- data/config/locales/nl.yml +2 -1
- data/config/locales/no.yml +2 -0
- data/config/locales/pl.yml +19 -2
- data/config/locales/ro-RO.yml +8 -0
- data/config/locales/si-LK.yml +1 -0
- data/config/locales/sv.yml +6 -0
- data/config/locales/sw-KE.yml +1 -0
- data/config/locales/tr-TR.yml +101 -30
- data/lib/decidim/debates/version.rb +1 -1
- metadata +15 -13
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 28e624e0bd93729732db937e3561882df8731ff87b4001eaf6e1e6865734fcf1
|
4
|
+
data.tar.gz: e9d550dbe9301d7e4fcde220c66d7ab61308c16cc81ad4cdad64c9c04d9af60a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8a1fc2a432a7eb38ea6640e92592a3c2aac3951bcaf187b0ecb9d506aa9802cbcc69ab4ede4c698ce4e501cb570ad1ac4067a27017314682b07f5d961282f6fc
|
7
|
+
data.tar.gz: cec94162b385990257c112d5e8b159c72e5e2abbd9a54901b9341704c1301bcd5ad08de8c0a405047b2814510845527fc259d5e150c200022c757cf17eab3e2a
|
@@ -2,13 +2,21 @@
|
|
2
2
|
|
3
3
|
module Decidim
|
4
4
|
module Debates
|
5
|
-
# A cell to display when
|
5
|
+
# A cell to display when actions happen on a debate.
|
6
6
|
class DebateActivityCell < ActivityCell
|
7
7
|
def title
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
8
|
+
case action
|
9
|
+
when "update"
|
10
|
+
I18n.t(
|
11
|
+
"decidim.debates.last_activity.debate_updated_at_html",
|
12
|
+
link: participatory_space_link
|
13
|
+
)
|
14
|
+
else
|
15
|
+
I18n.t(
|
16
|
+
"decidim.debates.last_activity.new_debate_at_html",
|
17
|
+
link: participatory_space_link
|
18
|
+
)
|
19
|
+
end
|
12
20
|
end
|
13
21
|
|
14
22
|
def resource_link_text
|
@@ -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)
|
135
|
-
|
136
|
-
|
137
|
-
|
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
|
-
|
3
|
-
<%=
|
4
|
-
|
5
|
-
|
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
|
-
|
3
|
-
<%=
|
4
|
-
|
5
|
-
|
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
|
-
|
18
|
-
<%=
|
19
|
-
|
20
|
-
|
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) %>
|
data/config/locales/ca.yml
CHANGED
data/config/locales/cs.yml
CHANGED
data/config/locales/de.yml
CHANGED
@@ -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:
|
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
|
-
|
82
|
-
|
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:
|
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:
|
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.
|
@@ -147,6 +164,7 @@ de:
|
|
147
164
|
versions_list:
|
148
165
|
back_to_resource: Zurück zur Debatte
|
149
166
|
last_activity:
|
167
|
+
debate_updated_at_html: "<span>Debatte aktualisiert unter %{link}</span>"
|
150
168
|
new_debate_at_html: "<span>Neue Debatte bei %{link}</span>"
|
151
169
|
models:
|
152
170
|
debate:
|
@@ -161,27 +179,32 @@ de:
|
|
161
179
|
space_followers:
|
162
180
|
email_intro: |-
|
163
181
|
Hallo,
|
164
|
-
Eine neue Debatte "%{resource_title}" wurde
|
165
|
-
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie
|
166
|
-
email_subject: Neue Debatte "%{resource_title}"
|
167
|
-
notification_title: Die <a href="%{resource_path}">%{resource_title}</a>
|
182
|
+
Eine neue Debatte "%{resource_title}" wurde in %{space_title} erstellt, sehen Sie es sich an und reden Sie mit:
|
183
|
+
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.
|
184
|
+
email_subject: Neue Debatte "%{resource_title}" in %{space_title}
|
185
|
+
notification_title: Die Debatte <a href="%{resource_path}">%{resource_title}</a> wurde in <a href="%{space_path}">%{space_title}</a> erstellt.
|
168
186
|
user_followers:
|
169
187
|
email_intro: |-
|
170
188
|
Hallo,
|
171
|
-
%{author_name} %{author_nickname}, dem Sie folgen, hat eine neue Debatte "%{resource_title}" erstellt.
|
172
|
-
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{author_nickname}. Sie
|
189
|
+
%{author_name} %{author_nickname}, dem Sie folgen, hat eine neue Debatte "%{resource_title}" erstellt. Sehen Sie es sich an und reden Sie mit:
|
190
|
+
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
191
|
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>
|
192
|
+
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> hat die Debatte <a href="%{resource_path}">%{resource_title}</a> erstellt.
|
175
193
|
creation_disabled:
|
176
|
-
email_intro: 'Die Erstellung von Debatten ist in %{participatory_space_title}nicht mehr
|
177
|
-
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{participatory_space_title}. Sie
|
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
|
194
|
+
email_intro: 'Die Erstellung von Debatten ist in %{participatory_space_title} nicht mehr aktiviert. Sie können weiterhin an offenen Debatten teilnehmen:'
|
195
|
+
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.
|
196
|
+
email_subject: Die Erstellung von Debatten wurde in %{participatory_space_title} deaktiviert
|
197
|
+
notification_title: Die Erstellung von Debatten ist jetzt in <a href="%{participatory_space_url}">%{participatory_space_title}</a> deaktiviert
|
180
198
|
creation_enabled:
|
181
|
-
email_intro: 'Sie können jetzt neue Debatten in %{participatory_space_title}!
|
182
|
-
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{participatory_space_title}. Sie
|
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
|
199
|
+
email_intro: 'Sie können jetzt neue Debatten in %{participatory_space_title} eröffnen! Beteiligen Sie sich auf dieser Seite:'
|
200
|
+
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.
|
201
|
+
email_subject: Debatten jetzt in %{participatory_space_title} verfügbar
|
202
|
+
notification_title: Sie können jetzt <a href="%{resource_path}">neue Debatten</a> in <a href="%{participatory_space_url}">%{participatory_space_title}</a> starten
|
203
|
+
debate_closed:
|
204
|
+
email_intro: 'Die Debatte "%{resource_title}" wurde beendet. Sie können die Resultate auf dieser Seite lesen:'
|
205
|
+
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.
|
206
|
+
email_subject: Die "%{resource_title}" Debatte wurde beendet
|
207
|
+
notification_title: Die Debatte <a href="%{resource_path}">%{resource_title}</a> wurde beendet.
|
185
208
|
gamification:
|
186
209
|
badges:
|
187
210
|
commented_debates:
|
@@ -191,9 +214,9 @@ de:
|
|
191
214
|
description_another: Dieser Benutzer hat an %{score} Debatten teilgenommen.
|
192
215
|
description_own: Sie haben an %{score} Debatten teilgenommen.
|
193
216
|
name: Debatten
|
194
|
-
next_level_in:
|
217
|
+
next_level_in: Nehmen Sie an %{score} weiteren Debatten teil, um das nächste Level zu erreichen!
|
195
218
|
unearned_another: Dieser Benutzer hat noch keine Diskussionen geführt.
|
196
|
-
unearned_own: Sie haben
|
219
|
+
unearned_own: Sie haben bisher an keiner Debatte teilgenommen.
|
197
220
|
metrics:
|
198
221
|
debates:
|
199
222
|
description: Anzahl der erstellten Debatten
|
data/config/locales/en.yml
CHANGED
data/config/locales/fi-plain.yml
CHANGED
@@ -164,6 +164,7 @@ fi-pl:
|
|
164
164
|
versions_list:
|
165
165
|
back_to_resource: Takaisin keskusteluun
|
166
166
|
last_activity:
|
167
|
+
debate_updated_at_html: "<span>Keskustelu päivitetty osoitteessa %{link}</span>"
|
167
168
|
new_debate_at_html: "<span>Uusi keskustelu osoitteessa %{link}</span>"
|
168
169
|
models:
|
169
170
|
debate:
|
data/config/locales/fi.yml
CHANGED
@@ -164,6 +164,7 @@ fi:
|
|
164
164
|
versions_list:
|
165
165
|
back_to_resource: Takaisin keskusteluun
|
166
166
|
last_activity:
|
167
|
+
debate_updated_at_html: "<span>Keskustelu päivitetty osoitteessa %{link}</span>"
|
167
168
|
new_debate_at_html: "<span>Uusi keskustelu osoitteessa %{link}</span>"
|
168
169
|
models:
|
169
170
|
debate:
|
data/config/locales/fr-CA.yml
CHANGED
data/config/locales/fr.yml
CHANGED
@@ -115,7 +115,7 @@ fr:
|
|
115
115
|
my_debates: Mes débats
|
116
116
|
official: Officielle
|
117
117
|
origin: Origine
|
118
|
-
scope:
|
118
|
+
scope: Secteur
|
119
119
|
search: Rechercher
|
120
120
|
state: Statut
|
121
121
|
state_values:
|
@@ -164,6 +164,7 @@ fr:
|
|
164
164
|
versions_list:
|
165
165
|
back_to_resource: Revenir au débat
|
166
166
|
last_activity:
|
167
|
+
debate_updated_at_html: "<span>Débat mis à jour à %{link}</span>"
|
167
168
|
new_debate_at_html: "<span>Nouveau débat à %{link}</span>"
|
168
169
|
models:
|
169
170
|
debate:
|
data/config/locales/gl.yml
CHANGED
@@ -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:
|
data/config/locales/nl.yml
CHANGED
@@ -140,6 +140,7 @@ nl:
|
|
140
140
|
versions_list:
|
141
141
|
back_to_resource: Ga terug naar het debat
|
142
142
|
last_activity:
|
143
|
+
debate_updated_at_html: "<span>Debat bijgewerkt op %{link}</span>"
|
143
144
|
new_debate_at_html: "<span>Nieuw debat op %{link}</span>"
|
144
145
|
models:
|
145
146
|
debate:
|
@@ -185,7 +186,7 @@ nl:
|
|
185
186
|
commented_debates:
|
186
187
|
conditions:
|
187
188
|
- Kies een open debat om deel te nemen
|
188
|
-
description: Deze badge wordt toegekend wanneer u actief deelneemt aan de verschillende debatten door uw
|
189
|
+
description: Deze badge wordt toegekend wanneer u actief deelneemt aan de verschillende debatten door uw reacties achter te laten.
|
189
190
|
description_another: Deze gebruiker heeft deelgenomen aan %{score} debatten.
|
190
191
|
description_own: Je hebt deelgenomen aan %{score} debatten.
|
191
192
|
name: debatten
|
data/config/locales/no.yml
CHANGED
@@ -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
|
data/config/locales/pl.yml
CHANGED
@@ -83,6 +83,8 @@ pl:
|
|
83
83
|
close: "%{user_name} zamknął/zamknęła debatę %{resource_name} w przestrzeni %{space_name}"
|
84
84
|
create: "%{user_name} utworzył(a) debatę %{resource_name} w przestrzeni %{space_name}"
|
85
85
|
update: "%{user_name} zaktualizował(a) debatę %{resource_name} w przestrzeni %{space_name}"
|
86
|
+
debate_m:
|
87
|
+
commented_time_ago: Skomentowano %{time} temu
|
86
88
|
debates:
|
87
89
|
close:
|
88
90
|
invalid: Podczas zamykania debaty wystąpił błąd.
|
@@ -104,19 +106,28 @@ pl:
|
|
104
106
|
debate:
|
105
107
|
participate: Dołącz
|
106
108
|
edit:
|
107
|
-
back:
|
109
|
+
back: Wróć
|
108
110
|
save: Zapisz zmiany
|
109
111
|
title: Edytuj debatę
|
110
112
|
filters:
|
113
|
+
activity: Moja aktywność
|
111
114
|
all: Wszystkie
|
112
115
|
category: Kategoria
|
113
116
|
category_prompt: Wybierz kategorię
|
114
117
|
citizens: Obywatele
|
118
|
+
commented: Skomentowano
|
119
|
+
my_debates: Moje debaty
|
115
120
|
official: Urzędnik
|
116
121
|
origin: Źródło
|
122
|
+
scope: Zakres
|
117
123
|
search: Szukaj
|
124
|
+
state: Status
|
125
|
+
state_values:
|
126
|
+
closed: Zakończone
|
127
|
+
open: Otwarte
|
128
|
+
user_groups: Grupy użytkowników
|
118
129
|
filters_small_view:
|
119
|
-
close_modal: Zamknij
|
130
|
+
close_modal: Zamknij okno
|
120
131
|
filter: Filtr
|
121
132
|
filter_by: Filtruj według
|
122
133
|
unfold: Rozwiń
|
@@ -128,6 +139,12 @@ pl:
|
|
128
139
|
back: Wróć
|
129
140
|
create: Utwórz
|
130
141
|
title: Nowa debata
|
142
|
+
orders:
|
143
|
+
commented: Najczęściej komentowane
|
144
|
+
label: Sortuj debaty według
|
145
|
+
random: Kolejność losowa
|
146
|
+
recent: Najnowsze
|
147
|
+
updated: Ostatnio aktualizowane
|
131
148
|
show:
|
132
149
|
back: Powrót do listy
|
133
150
|
close_debate: Zamknij debatę
|
data/config/locales/ro-RO.yml
CHANGED
@@ -3,6 +3,8 @@ ro:
|
|
3
3
|
attributes:
|
4
4
|
debate:
|
5
5
|
category_id: Categorie
|
6
|
+
closed_at: Închisă la
|
7
|
+
conclusions: Concluzii
|
6
8
|
decidim_category_id: Categorie
|
7
9
|
description: Descriere
|
8
10
|
end_time: Se termină la
|
@@ -12,6 +14,7 @@ ro:
|
|
12
14
|
title: Titlu
|
13
15
|
user_group_id: Creează o dezbatere ca
|
14
16
|
models:
|
17
|
+
decidim/debates/close_debate_event: Dezbatere închisă
|
15
18
|
decidim/debates/create_debate_event: Dezbatere
|
16
19
|
decidim/debates/creation_disabled_event: Dezbateri dezactivate
|
17
20
|
decidim/debates/creation_enabled_event: Dezbateri activate
|
@@ -38,6 +41,7 @@ ro:
|
|
38
41
|
creation_enabled: Crearea de dezbateri de către participanți este activată
|
39
42
|
debates:
|
40
43
|
actions:
|
44
|
+
close: Închide
|
41
45
|
confirm_destroy: Ești sigur?
|
42
46
|
destroy: Ștergere
|
43
47
|
edit: Editare
|
@@ -154,6 +158,10 @@ ro:
|
|
154
158
|
email_outro: Ați primit această notificare deoarece urmăriți %{participatory_space_title}. Puteți înceta să primiți notificări urmând linkul anterior.
|
155
159
|
email_subject: Dezbaterile sunt acum disponibile în %{participatory_space_title}
|
156
160
|
notification_title: Acum poți începe <a href="%{resource_path}">noi dezbateri</a> în <a href="%{participatory_space_url}">%{participatory_space_title}</a>
|
161
|
+
debate_closed:
|
162
|
+
email_intro: 'Dezbaterea pentru "%{resource_title}” a fost închisă. Puteți citi concluziile pe pagina sa:'
|
163
|
+
email_subject: Dezbaterea pentru "%{resource_title}” a fost închisă
|
164
|
+
notification_title: Dezbaterea pentru <a href="%{resource_path}">%{resource_title}</a> a fost închisă.
|
157
165
|
gamification:
|
158
166
|
badges:
|
159
167
|
commented_debates:
|
@@ -0,0 +1 @@
|
|
1
|
+
si:
|
data/config/locales/sv.yml
CHANGED
@@ -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:
|
data/config/locales/tr-TR.yml
CHANGED
@@ -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:
|
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:
|
78
|
+
name: Tartışma
|
65
79
|
admin_log:
|
66
80
|
debate:
|
67
|
-
|
68
|
-
|
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}
|
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
|
-
|
109
|
+
activity: Aktivitelerim
|
110
|
+
all: Tümü
|
81
111
|
category: Kategori
|
82
|
-
category_prompt:
|
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:
|
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:
|
89
|
-
filter:
|
90
|
-
filter_by:
|
91
|
-
unfold:
|
126
|
+
close_modal: Pencereyi kapat
|
127
|
+
filter: Filtrele
|
128
|
+
filter_by: Şuna göre filtrele
|
129
|
+
unfold: Aç
|
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:
|
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},
|
123
|
-
email_outro:
|
124
|
-
email_subject:
|
125
|
-
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a
|
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}
|
128
|
-
email_outro:
|
129
|
-
email_subject:
|
130
|
-
notification_title: Tartışma oluşturma
|
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
|
133
|
-
email_outro:
|
134
|
-
email_subject:
|
135
|
-
notification_title:
|
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ı.
|
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.
|
4
|
+
version: 0.23.4
|
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:
|
14
|
+
date: 2021-03-10 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.
|
22
|
+
version: 0.23.4
|
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.
|
29
|
+
version: 0.23.4
|
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.
|
36
|
+
version: 0.23.4
|
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.
|
43
|
+
version: 0.23.4
|
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.
|
84
|
+
version: 0.23.4
|
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.
|
91
|
+
version: 0.23.4
|
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.
|
98
|
+
version: 0.23.4
|
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.
|
105
|
+
version: 0.23.4
|
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: []
|