decidim-debates 0.23.1.rc1 → 0.23.5
Sign up to get free protection for your applications and to get access to all the features.
- 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 +2 -1
- data/config/locales/de.yml +46 -23
- data/config/locales/en.yml +1 -0
- data/config/locales/es-MX.yml +1 -0
- data/config/locales/es-PY.yml +1 -0
- data/config/locales/es.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 +6 -0
- data/config/locales/nl.yml +2 -1
- data/config/locales/no.yml +2 -0
- data/config/locales/pl.yml +20 -2
- data/config/locales/ro-RO.yml +52 -0
- data/config/locales/si-LK.yml +1 -0
- data/config/locales/sv.yml +17 -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 +17 -15
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5e1f8fed43bae6bedcf9366a325a99811238b5271f52d65c8e50d9141e15d27d
|
4
|
+
data.tar.gz: db32b9fc0213eb81825fa8660bca50cfded5b466277efb56d8a8c69330bed520
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2a3143b72f78758130cc60ccd8e5803e75d2127818cb12add63b75e3bc1f2df1fdcb3172c2750d9e36c356339e49c2cb9f434f42f4e3cd108b19868b7d105b6a
|
7
|
+
data.tar.gz: 6e59b34d2c4333908df3f5dd4f196a83bdf947c2f733e85f441d16ee01cd225c9b882980b45bd269ccefc2b3135b93011597dd277ba9b4e9ac9c72a4cbb3656d
|
@@ -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
@@ -168,6 +168,7 @@ cs:
|
|
168
168
|
versions_list:
|
169
169
|
back_to_resource: Přejít zpět k debatě
|
170
170
|
last_activity:
|
171
|
+
debate_updated_at_html: "<span>Debata byla aktualizována na %{link}</span>"
|
171
172
|
new_debate_at_html: "<span>Nová debata na %{link}</span>"
|
172
173
|
models:
|
173
174
|
debate:
|
@@ -190,7 +191,7 @@ cs:
|
|
190
191
|
email_intro: |-
|
191
192
|
Ahoj,
|
192
193
|
%{author_name} %{author_nickname}, kterého sledujete, vytvořil novou debatu "%{resource_title}". Omrkněte ji a přispějte:
|
193
|
-
email_outro: Toto oznámení jste obdrželi, protože
|
194
|
+
email_outro: Toto oznámení jste obdrželi, protože sledujete %{author_nickname}. Na předchozím odkazu můžete zrušit přijem oznámení.
|
194
195
|
email_subject: Nová debata "%{resource_title}" od %{author_nickname}
|
195
196
|
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> vytvořil <a href="%{resource_path}">%{resource_title}</a> debatu.
|
196
197
|
creation_disabled:
|
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/es-MX.yml
CHANGED
data/config/locales/es-PY.yml
CHANGED
data/config/locales/es.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
@@ -98,6 +98,7 @@ gl:
|
|
98
98
|
create: Crear
|
99
99
|
title: Novo debate
|
100
100
|
last_activity:
|
101
|
+
debate_updated_at_html: "<span>Debate actualizado en %{link}</span>"
|
101
102
|
new_debate_at_html: "<span>Novo debate en %{link}</span>"
|
102
103
|
models:
|
103
104
|
debate:
|
@@ -133,6 +134,11 @@ gl:
|
|
133
134
|
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
135
|
email_subject: Os debates agora están dispoñibles en %{participatory_space_title}
|
135
136
|
notification_title: Agora podes comezar <a href="%{resource_path}">novos debates</a> en <a href="%{participatory_space_url}">%{participatory_space_title}</a>
|
137
|
+
debate_closed:
|
138
|
+
email_intro: 'Pechouse o debate "%{resource_title}". Podes ler as súas conclusións na súa páxina:'
|
139
|
+
email_outro: Recibiches esta notificación porque segues o debate "%{resource_title}". Podes deixar de seguilo dende a ligazón anterior.
|
140
|
+
email_subject: Pechouse o debate "%{resource_title}"
|
141
|
+
notification_title: O debate <a href="%{resource_path}">%{resource_title}</a> foi pechado.
|
136
142
|
gamification:
|
137
143
|
badges:
|
138
144
|
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ę
|
@@ -151,6 +168,7 @@ pl:
|
|
151
168
|
versions_list:
|
152
169
|
back_to_resource: Wróć do debaty
|
153
170
|
last_activity:
|
171
|
+
debate_updated_at_html: "<span>Debata zaktualizowana o %{link}</span>"
|
154
172
|
new_debate_at_html: "<span>Nowa debata pod adresem %{link}</span>"
|
155
173
|
models:
|
156
174
|
debate:
|
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
|
@@ -26,24 +29,34 @@ ro:
|
|
26
29
|
debates:
|
27
30
|
actions:
|
28
31
|
create: Crează
|
32
|
+
endorse: Aprobare
|
29
33
|
name: Dezbateri
|
30
34
|
settings:
|
31
35
|
global:
|
32
36
|
announcement: Anunţ
|
33
37
|
comments_enabled: Comentarii activate
|
34
38
|
comments_max_length: Lungimea maximă a comentariilor (Leave 0 pentru valoarea implicită)
|
39
|
+
scope_id: Domeniu de interes
|
40
|
+
scopes_enabled: Domenii de interes activate
|
35
41
|
step:
|
36
42
|
announcement: Anunţ
|
37
43
|
comments_blocked: Comentarii blocate
|
38
44
|
creation_enabled: Crearea de dezbateri de către participanți este activată
|
45
|
+
endorsements_blocked: Aprobări blocate
|
46
|
+
endorsements_enabled: Aprobări activate
|
39
47
|
debates:
|
40
48
|
actions:
|
49
|
+
close: Închide
|
41
50
|
confirm_destroy: Ești sigur?
|
42
51
|
destroy: Ștergere
|
43
52
|
edit: Editare
|
44
53
|
new: '%{name} nou'
|
45
54
|
title: Acțiuni
|
46
55
|
admin:
|
56
|
+
debate_closes:
|
57
|
+
edit:
|
58
|
+
close: Inchide
|
59
|
+
title: Închide dezbaterea
|
47
60
|
debates:
|
48
61
|
create:
|
49
62
|
invalid: A existat o problemă la crearea dezbaterii.
|
@@ -66,9 +79,20 @@ ro:
|
|
66
79
|
name: Dezbatere
|
67
80
|
admin_log:
|
68
81
|
debate:
|
82
|
+
close: "%{user_name} a închis dezbaterea %{resource_name} cu privire la spațiul %{space_name}"
|
69
83
|
create: "%{user_name} a creat dezbaterea %{resource_name} pentru spațiul %{space_name}"
|
70
84
|
update: "%{user_name} a actualizat dezbaterea %{resource_name} cu privire la spațiul %{space_name}"
|
85
|
+
debate_m:
|
86
|
+
commented_time_ago: Comentat acum %{time}
|
71
87
|
debates:
|
88
|
+
close:
|
89
|
+
invalid: A existat o problemă la închiderea dezbaterii.
|
90
|
+
success: Dezbatere închisă.
|
91
|
+
close_debate_modal:
|
92
|
+
close: Închide
|
93
|
+
description: Care este rezumatul sau concluzia acestei dezbateri?
|
94
|
+
send: Închide dezbaterea
|
95
|
+
closed: Închis
|
72
96
|
count:
|
73
97
|
debates_count:
|
74
98
|
one: "%{count} dezbatere"
|
@@ -84,13 +108,22 @@ ro:
|
|
84
108
|
save: Salvează modificările
|
85
109
|
title: Editare dezbatere
|
86
110
|
filters:
|
111
|
+
activity: Activitatea mea
|
87
112
|
all: Toate
|
88
113
|
category: Categorie
|
89
114
|
category_prompt: Selectați o categorie
|
90
115
|
citizens: Cetățeni
|
116
|
+
commented: Comentat
|
117
|
+
my_debates: Dezbaterile mele
|
91
118
|
official: Oficial
|
92
119
|
origin: Origine
|
120
|
+
scope: Domeniu de interes
|
93
121
|
search: Caută
|
122
|
+
state: Stare
|
123
|
+
state_values:
|
124
|
+
closed: Inchide
|
125
|
+
open: Deschide
|
126
|
+
user_groups: Grupuri
|
94
127
|
filters_small_view:
|
95
128
|
close_modal: Închide fereastra
|
96
129
|
filter: Filtrare
|
@@ -104,10 +137,24 @@ ro:
|
|
104
137
|
back: Înapoi
|
105
138
|
create: Crează
|
106
139
|
title: Dezbatere nouă
|
140
|
+
orders:
|
141
|
+
commented: Cele mai comentate
|
142
|
+
label: Dezbateri de ordine
|
143
|
+
random: Ordine aleatorie
|
144
|
+
recent: Cele mai recente
|
145
|
+
updated: Actualizate recent
|
107
146
|
show:
|
108
147
|
back: Înapoi la listă
|
148
|
+
close_debate: Închide dezbaterea
|
109
149
|
date: Data
|
150
|
+
debate_closed: Inchide
|
151
|
+
debate_conclusions_are: 'Dezbaterea s-a încheiat la %{date} cu următoarele concluzii:'
|
152
|
+
edit_conclusions: Editați concluziile
|
110
153
|
edit_debate: Editare dezbatere
|
154
|
+
groups_count: Grupuri
|
155
|
+
last_comment_by: Ultimul comentariu din partea
|
156
|
+
no_comments_yet: Încă nu există comentarii
|
157
|
+
participants_count: Participanţi
|
111
158
|
update:
|
112
159
|
invalid: A apărut o problemă la actualizarea dezbaterii.
|
113
160
|
success: Dezbatere actualizata cu succes.
|
@@ -119,6 +166,7 @@ ro:
|
|
119
166
|
versions_list:
|
120
167
|
back_to_resource: Revenire la dezbatere
|
121
168
|
last_activity:
|
169
|
+
debate_updated_at_html: "<span>Dezbatere actualizată la %{link}</span>"
|
122
170
|
new_debate_at_html: "<span>Noua dezbatere la %{link}</span>"
|
123
171
|
models:
|
124
172
|
debate:
|
@@ -154,6 +202,10 @@ ro:
|
|
154
202
|
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
203
|
email_subject: Dezbaterile sunt acum disponibile în %{participatory_space_title}
|
156
204
|
notification_title: Acum poți începe <a href="%{resource_path}">noi dezbateri</a> în <a href="%{participatory_space_url}">%{participatory_space_title}</a>
|
205
|
+
debate_closed:
|
206
|
+
email_intro: 'Dezbaterea pentru "%{resource_title}” a fost închisă. Puteți citi concluziile pe pagina sa:'
|
207
|
+
email_subject: Dezbaterea pentru "%{resource_title}” a fost închisă
|
208
|
+
notification_title: Dezbaterea pentru <a href="%{resource_path}">%{resource_title}</a> a fost închisă.
|
157
209
|
gamification:
|
158
210
|
badges:
|
159
211
|
commented_debates:
|
@@ -0,0 +1 @@
|
|
1
|
+
si:
|
data/config/locales/sv.yml
CHANGED
@@ -35,6 +35,8 @@ sv:
|
|
35
35
|
announcement: Meddelande
|
36
36
|
comments_enabled: Kommentarer aktiverade
|
37
37
|
comments_max_length: Maximal längd för kommentarer (Lämna 0 för standardvärde)
|
38
|
+
scope_id: Omfång
|
39
|
+
scopes_enabled: Omfång aktiverade
|
38
40
|
step:
|
39
41
|
announcement: Meddelande
|
40
42
|
comments_blocked: Kommentarer blockerade
|
@@ -102,13 +104,22 @@ sv:
|
|
102
104
|
save: Spara ändringar
|
103
105
|
title: Redigera debatt
|
104
106
|
filters:
|
107
|
+
activity: Min aktivitet
|
105
108
|
all: Alla
|
106
109
|
category: Kategori
|
107
110
|
category_prompt: Välj en kategori
|
108
111
|
citizens: Medborgare
|
112
|
+
commented: Kommenterade
|
113
|
+
my_debates: Mina debatter
|
109
114
|
official: Officiell
|
110
115
|
origin: Ursprung
|
116
|
+
scope: Omfång
|
111
117
|
search: Sök
|
118
|
+
state: Status
|
119
|
+
state_values:
|
120
|
+
closed: Stängda
|
121
|
+
open: Öppna
|
122
|
+
user_groups: Grupper
|
112
123
|
filters_small_view:
|
113
124
|
close_modal: Stäng fönstret
|
114
125
|
filter: Filtrera
|
@@ -122,6 +133,12 @@ sv:
|
|
122
133
|
back: Tillbaka
|
123
134
|
create: Skapa
|
124
135
|
title: Ny debatt
|
136
|
+
orders:
|
137
|
+
commented: Mest kommenterade
|
138
|
+
label: Sortera debater efter
|
139
|
+
random: Slumpmässig ordning
|
140
|
+
recent: Senaste
|
141
|
+
updated: Senast uppdaterade
|
125
142
|
show:
|
126
143
|
back: Tillbaka till listan
|
127
144
|
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.5
|
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-04-08 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.5
|
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.5
|
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.5
|
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.5
|
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.5
|
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.5
|
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.5
|
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.5
|
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
|
@@ -291,12 +293,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
291
293
|
version: '2.6'
|
292
294
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
293
295
|
requirements:
|
294
|
-
- - "
|
296
|
+
- - ">="
|
295
297
|
- !ruby/object:Gem::Version
|
296
|
-
version:
|
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: []
|