decidim-debates 0.32.0.rc1 → 0.32.0.rc3
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/views/decidim/debates/admin/debates/_actions.html.erb +1 -1
- data/app/views/decidim/debates/debates/_debate_actions.html.erb +8 -8
- data/config/locales/ar.yml +2 -9
- data/config/locales/bg.yml +2 -8
- data/config/locales/ca-IT.yml +6 -5
- data/config/locales/ca.yml +6 -5
- data/config/locales/cs.yml +2 -8
- data/config/locales/de.yml +2 -8
- data/config/locales/el.yml +2 -9
- data/config/locales/en.yml +4 -4
- data/config/locales/es-MX.yml +6 -5
- data/config/locales/es-PY.yml +6 -5
- data/config/locales/es.yml +6 -5
- data/config/locales/eu.yml +10 -16
- data/config/locales/fi-plain.yml +6 -5
- data/config/locales/fi.yml +6 -5
- data/config/locales/fr-CA.yml +2 -8
- data/config/locales/fr.yml +2 -8
- data/config/locales/ga-IE.yml +1 -0
- data/config/locales/gl.yml +2 -9
- data/config/locales/hu.yml +2 -9
- data/config/locales/id-ID.yml +2 -9
- data/config/locales/is-IS.yml +2 -4
- data/config/locales/it.yml +2 -9
- data/config/locales/ja.yml +2 -8
- data/config/locales/lb.yml +1 -10
- data/config/locales/lt.yml +2 -9
- data/config/locales/lv.yml +2 -8
- data/config/locales/nl.yml +2 -9
- data/config/locales/no.yml +2 -9
- data/config/locales/pl.yml +2 -8
- data/config/locales/pt-BR.yml +2 -8
- data/config/locales/pt.yml +2 -8
- data/config/locales/ro-RO.yml +2 -9
- data/config/locales/ru.yml +1 -3
- data/config/locales/sk.yml +173 -6
- data/config/locales/sl.yml +1 -0
- data/config/locales/sv.yml +2 -8
- data/config/locales/tr-TR.yml +2 -8
- data/config/locales/uk.yml +1 -3
- data/config/locales/zh-CN.yml +2 -9
- data/config/locales/zh-TW.yml +2 -9
- data/decidim-debates.gemspec +1 -1
- data/lib/decidim/debates/component.rb +1 -1
- data/lib/decidim/debates/version.rb +1 -1
- metadata +11 -11
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2afb5738b1e6ab14aa490449d2f92c2e01b2d36fba4a21a63ee83e85b2689b3b
|
|
4
|
+
data.tar.gz: fd184ede7fa2f5247db8260533b860ff36f1d4793821c75c2e3d827d1b954c0e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 337b34bd1f62868e4f46f0abbb75cee30ed450cbe8f1ea4ce3b5440abab1700a538d94770d017d98de13db247795f88b1fe78bce7d5f736ee29e058900dafe1b
|
|
7
|
+
data.tar.gz: 165f72bc0b01f8ef413a1513cff49558317398b651f5034651974bffe09bfdd01b6b09b943ff5029f88d9c849b0e450de7025f4e3dc90a6b089fede93c3bd4ac
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
<% end %>
|
|
58
58
|
<% else %>
|
|
59
59
|
<div class="dropdown__button-disabled">
|
|
60
|
-
<%= with_tooltip t("tooltips.deleted_debates_info", scope: "decidim.admin") do %>
|
|
60
|
+
<%= with_tooltip t("tooltips.deleted_debates_info", scope: "decidim.admin"), class: :left do %>
|
|
61
61
|
<%= icon "delete-bin-line", class: "text-gray" %>
|
|
62
62
|
<span>
|
|
63
63
|
<%= t("actions.soft_delete", scope: "decidim.admin") %>
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
|
|
2
2
|
<% if allowed_to?(:edit, :debate, debate: debate) %>
|
|
3
|
-
<li role="
|
|
4
|
-
<%= link_to edit_debate_path(debate), class: "dropdown__button" do %>
|
|
3
|
+
<li role="presentation" class="dropdown__item">
|
|
4
|
+
<%= link_to edit_debate_path(debate), class: "dropdown__button", role: "menuitem" do %>
|
|
5
5
|
<span><%= t("edit_debate", scope: "decidim.debates.debates.show") %></span>
|
|
6
6
|
<%= icon "pencil-line" %>
|
|
7
7
|
<% end %>
|
|
8
8
|
</li>
|
|
9
9
|
<% elsif admin_allowed_to?(:update, :debate, debate: debate) %>
|
|
10
|
-
<li role="
|
|
11
|
-
<%= link_to resource_locator(debate).edit, class: "dropdown__button" do %>
|
|
10
|
+
<li role="presentation" class="dropdown__item">
|
|
11
|
+
<%= link_to resource_locator(debate).edit, class: "dropdown__button", role: "menuitem" do %>
|
|
12
12
|
<span><%= t("edit_debate", scope: "decidim.debates.debates.show") %></span>
|
|
13
13
|
<%= icon "pencil-line" %>
|
|
14
14
|
<% end %>
|
|
@@ -17,15 +17,15 @@
|
|
|
17
17
|
|
|
18
18
|
<% close_debate_action_text = (debate.closed? ? "decidim.debates.debates.show.edit_conclusions" : "decidim.debates.debates.show.close_debate" ) %>
|
|
19
19
|
<% if allowed_to?(:close, :debate, debate: debate) %>
|
|
20
|
-
<li role="
|
|
21
|
-
<button type="button" data-dialog-open="close-debate" title="<%= t(close_debate_action_text) %>" aria-controls="closeDebateModal" aria-haspopup="dialog" tabindex="0" class="dropdown__button">
|
|
20
|
+
<li role="presentation" class="dropdown__item">
|
|
21
|
+
<button type="button" data-dialog-open="close-debate" title="<%= t(close_debate_action_text) %>" aria-controls="closeDebateModal" aria-haspopup="dialog" tabindex="0" class="dropdown__button" role="menuitem">
|
|
22
22
|
<span><%= t(close_debate_action_text) %></span>
|
|
23
23
|
<%= icon "lock-line" %>
|
|
24
24
|
</button>
|
|
25
25
|
</li>
|
|
26
26
|
<% elsif admin_allowed_to?(:close, :debate, debate: debate) %>
|
|
27
|
-
<li role="
|
|
28
|
-
<%= link_to Decidim::EngineRouter.admin_proxy(debate.component).edit_debate_debate_close_path(debate_id: debate.id, id: debate.id), class: "dropdown__button" do %>
|
|
27
|
+
<li role="presentation" class="dropdown__item">
|
|
28
|
+
<%= link_to Decidim::EngineRouter.admin_proxy(debate.component).edit_debate_debate_close_path(debate_id: debate.id, id: debate.id), class: "dropdown__button", role: "menuitem" do %>
|
|
29
29
|
<span><%= t(close_debate_action_text) %></span>
|
|
30
30
|
<%= icon "lock-line" %>
|
|
31
31
|
<% end %>
|
data/config/locales/ar.yml
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
---
|
|
1
2
|
ar:
|
|
2
3
|
activemodel:
|
|
3
4
|
attributes:
|
|
@@ -102,14 +103,6 @@ ar:
|
|
|
102
103
|
title: عنوان
|
|
103
104
|
events:
|
|
104
105
|
debates:
|
|
105
|
-
create_debate_event:
|
|
106
|
-
user_followers:
|
|
107
|
-
email_intro: |-
|
|
108
|
-
مرحبًا ،
|
|
109
|
-
%{author_name} %{author_nickname}، الذي تتابعه ، أنشأ نقاشًا جديدًا "%{resource_title}". التحقق من ذلك والمساهمة:
|
|
110
|
-
email_outro: لقد تلقيت هذا الإشعار لأنك تتابع %{author_nickname}. يمكنك إيقاف تلقي الإخطارات باتباع الرابط السابق.
|
|
111
|
-
email_subject: نقاش جديد "%{resource_title}" بنسبة %{author_nickname}
|
|
112
|
-
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> أنشأ النقاش <a href="%{resource_path}">%{resource_title}</a>.
|
|
113
106
|
creation_disabled:
|
|
114
107
|
email_intro: 'إنشاء النقاش لم يعد نشطًا في %{participatory_space_title}. لا يزال بإمكانك المشاركة في المناقشات المفتوحة من هذه الصفحة:'
|
|
115
108
|
email_outro: لقد تلقيت هذا الإشعار لأنك تتابع %{participatory_space_title}. يمكنك إيقاف تلقي الإخطارات باتباع الرابط السابق.
|
|
@@ -123,7 +116,7 @@ ar:
|
|
|
123
116
|
badges:
|
|
124
117
|
commented_debates:
|
|
125
118
|
conditions:
|
|
126
|
-
|
|
119
|
+
- اختر نقاشًا مفتوحًا للمشاركة فيه
|
|
127
120
|
description: تُمنح هذه الشارة عندما تشارك بنشاط في المناقشات المختلفة من خلال ترك تعليقاتك.
|
|
128
121
|
description_another: شارك هذا المشارك في %{score} مناقشات.
|
|
129
122
|
description_own: لقد شاركت في %{score} مناقشات.
|
data/config/locales/bg.yml
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
---
|
|
1
2
|
bg:
|
|
2
3
|
activemodel:
|
|
3
4
|
attributes:
|
|
@@ -147,13 +148,6 @@ bg:
|
|
|
147
148
|
email_outro: Получихте това известие, защото следвате %{participatory_space_title} пространство за участие. Можете да спрете да получавате известия, като следвате предишната връзка.
|
|
148
149
|
email_subject: Нов дебат „%{resource_title}“ на %{participatory_space_title}
|
|
149
150
|
notification_title: Дебатът <a href="%{resource_path}">%{resource_title}</a> беше създаден на <a href="%{participatory_space_url}">%{participatory_space_title}</a>.
|
|
150
|
-
user_followers:
|
|
151
|
-
email_intro: |-
|
|
152
|
-
Здравейте,
|
|
153
|
-
участниът %{author_name} %{author_nickname}, когото следвате, създаде нов дебат „%{resource_title}“. Вижте го и допринесете:
|
|
154
|
-
email_outro: Получихте това известие, защото следвате %{author_nickname}. Можете да спрете да получавате известия, като последвате предходния линк.
|
|
155
|
-
email_subject: Нов дебат „%{resource_title}“ от %{author_nickname}
|
|
156
|
-
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> създаде дебата <a href="%{resource_path}">%{resource_title}</a>.
|
|
157
151
|
creation_disabled:
|
|
158
152
|
email_intro: 'Създаването на дебати вече не е активно в(ъв) %{participatory_space_title}. Все още можете да участвате в отворени дебати от следната страница:'
|
|
159
153
|
email_outro: Получавате това известие, защото следвате %{participatory_space_title}. Може да прекратите известията чрез предходния линк.
|
|
@@ -179,7 +173,7 @@ bg:
|
|
|
179
173
|
badges:
|
|
180
174
|
commented_debates:
|
|
181
175
|
conditions:
|
|
182
|
-
|
|
176
|
+
- Изберете отворен дебат и участвайте в него
|
|
183
177
|
description: Тази значка се предоставя, когато участвате активно в различни дебати, като оставяте коментари.
|
|
184
178
|
description_another: Този участник се е включил в %{score} дебата.
|
|
185
179
|
description_own: Участвали сте в %{score} дебата.
|
data/config/locales/ca-IT.yml
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
---
|
|
1
2
|
ca-IT:
|
|
2
3
|
activemodel:
|
|
3
4
|
attributes:
|
|
@@ -204,10 +205,10 @@ ca-IT:
|
|
|
204
205
|
user_followers:
|
|
205
206
|
email_intro: |-
|
|
206
207
|
Hola,
|
|
207
|
-
%{author_name}
|
|
208
|
-
email_outro: Has rebut aquesta notificació perquè estàs seguint
|
|
209
|
-
email_subject: Nou debat "%{resource_title}"
|
|
210
|
-
notification_title: <a href="%{author_path}">%{author_name}
|
|
208
|
+
%{author_name}, a qui segueixes, ha creat un nou debat "%{resource_title}". Consulta i contribueix:
|
|
209
|
+
email_outro: Has rebut aquesta notificació perquè estàs seguint l'espai "%{author_name}". Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
|
210
|
+
email_subject: Nou debat "%{resource_title}" creat per %{author_name}
|
|
211
|
+
notification_title: <a href="%{author_path}">%{author_name}</a> ha creat el debat <a href="%{resource_path}">%{resource_title}</a>.
|
|
211
212
|
creation_disabled:
|
|
212
213
|
email_intro: 'La creació de debats ja no està activa a %{participatory_space_title}. Encara pots participar en debats oberts des d''aquesta pàgina:'
|
|
213
214
|
email_outro: Has rebut aquesta notificació perquè estàs seguint l'espai "%{participatory_space_title}". Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
|
@@ -233,7 +234,7 @@ ca-IT:
|
|
|
233
234
|
badges:
|
|
234
235
|
commented_debates:
|
|
235
236
|
conditions:
|
|
236
|
-
|
|
237
|
+
- Tria un debat obert per participar
|
|
237
238
|
description: Aquesta ensenya es desbloqueja quan participes activament en els diferents debats deixant els teus comentaris.
|
|
238
239
|
description_another: Aquesta participant ha pres part en %{score} debats.
|
|
239
240
|
description_own: Has participat en %{score} debats.
|
data/config/locales/ca.yml
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
---
|
|
1
2
|
ca:
|
|
2
3
|
activemodel:
|
|
3
4
|
attributes:
|
|
@@ -204,10 +205,10 @@ ca:
|
|
|
204
205
|
user_followers:
|
|
205
206
|
email_intro: |-
|
|
206
207
|
Hola,
|
|
207
|
-
%{author_name}
|
|
208
|
-
email_outro: Has rebut aquesta notificació perquè estàs seguint
|
|
209
|
-
email_subject: Nou debat "%{resource_title}"
|
|
210
|
-
notification_title: <a href="%{author_path}">%{author_name}
|
|
208
|
+
%{author_name}, a qui segueixes, ha creat un nou debat "%{resource_title}". Consulta i contribueix:
|
|
209
|
+
email_outro: Has rebut aquesta notificació perquè estàs seguint l'espai "%{author_name}". Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
|
210
|
+
email_subject: Nou debat "%{resource_title}" creat per %{author_name}
|
|
211
|
+
notification_title: <a href="%{author_path}">%{author_name}</a> ha creat el debat <a href="%{resource_path}">%{resource_title}</a>.
|
|
211
212
|
creation_disabled:
|
|
212
213
|
email_intro: 'La creació de debats ja no està activa a %{participatory_space_title}. Encara pots participar en debats oberts des d''aquesta pàgina:'
|
|
213
214
|
email_outro: Has rebut aquesta notificació perquè estàs seguint l'espai "%{participatory_space_title}". Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
|
@@ -233,7 +234,7 @@ ca:
|
|
|
233
234
|
badges:
|
|
234
235
|
commented_debates:
|
|
235
236
|
conditions:
|
|
236
|
-
|
|
237
|
+
- Tria un debat obert per participar
|
|
237
238
|
description: Aquesta ensenya es desbloqueja quan participes activament en els diferents debats deixant els teus comentaris.
|
|
238
239
|
description_another: Aquesta participant ha pres part en %{score} debats.
|
|
239
240
|
description_own: Has participat en %{score} debats.
|
data/config/locales/cs.yml
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
---
|
|
1
2
|
cs:
|
|
2
3
|
activemodel:
|
|
3
4
|
attributes:
|
|
@@ -204,13 +205,6 @@ cs:
|
|
|
204
205
|
email_outro: Toto oznámení jste obdrželi, protože sledujete participační prostor %{participatory_space_title}. Můžete zrušit příjem oznámení na předchozím odkazu.
|
|
205
206
|
email_subject: Nová debata "%{resource_title}" na %{participatory_space_title}
|
|
206
207
|
notification_title: Debata <a href="%{resource_path}">%{resource_title}</a> byla vytvořena na <a href="%{participatory_space_url}">%{participatory_space_title}</a>.
|
|
207
|
-
user_followers:
|
|
208
|
-
email_intro: |-
|
|
209
|
-
Ahoj,
|
|
210
|
-
%{author_name} %{author_nickname}, kterého sledujete, vytvořil novou debatu "%{resource_title}". Omrkněte ji a přispějte:
|
|
211
|
-
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í.
|
|
212
|
-
email_subject: Nová debata "%{resource_title}" od %{author_nickname}
|
|
213
|
-
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> vytvořil <a href="%{resource_path}">%{resource_title}</a> debatu.
|
|
214
208
|
creation_disabled:
|
|
215
209
|
email_intro: 'Tvorba debaty již není aktivní v %{participatory_space_title}. Na otevřených debatách se můžete stále účastnit z této stránky:'
|
|
216
210
|
email_outro: Toto oznámení jste obdrželi, protože jste sledovali %{participatory_space_title}. Na předchozím odkazu můžete přestat přijímat oznámení.
|
|
@@ -236,7 +230,7 @@ cs:
|
|
|
236
230
|
badges:
|
|
237
231
|
commented_debates:
|
|
238
232
|
conditions:
|
|
239
|
-
|
|
233
|
+
- Vyberte si otevřenou debatu, do které se můžete zapojit
|
|
240
234
|
description: Tento odznak se uděluje, když se aktivně účastníte různých debat tím, že tam zanecháte své komentáře.
|
|
241
235
|
description_another: Tento uživatel se zúčastnil %{score} debat.
|
|
242
236
|
description_own: Zúčastnili jste se %{score} debat.
|
data/config/locales/de.yml
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
---
|
|
1
2
|
de:
|
|
2
3
|
activemodel:
|
|
3
4
|
attributes:
|
|
@@ -199,13 +200,6 @@ de:
|
|
|
199
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.
|
|
200
201
|
email_subject: Neue Debatte "%{resource_title}" in %{participatory_space_title}
|
|
201
202
|
notification_title: Die Debatte <a href="%{resource_path}">%{resource_title}</a> wurde auf <a href="%{participatory_space_url}">%{participatory_space_title}</a> erstellt.
|
|
202
|
-
user_followers:
|
|
203
|
-
email_intro: |-
|
|
204
|
-
Hallo,
|
|
205
|
-
%{author_name} %{author_nickname}, dem Sie folgen, hat eine neue Debatte "%{resource_title}" erstellt. Sehen Sie es sich an und reden Sie mit:
|
|
206
|
-
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.
|
|
207
|
-
email_subject: Neue Debatte "%{resource_title}" von %{author_nickname}
|
|
208
|
-
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> hat die Debatte <a href="%{resource_path}">%{resource_title}</a> erstellt.
|
|
209
203
|
creation_disabled:
|
|
210
204
|
email_intro: 'Die Erstellung von Debatten ist in %{participatory_space_title} nicht mehr aktiviert. Sie können weiterhin an offenen Debatten teilnehmen:'
|
|
211
205
|
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.
|
|
@@ -231,7 +225,7 @@ de:
|
|
|
231
225
|
badges:
|
|
232
226
|
commented_debates:
|
|
233
227
|
conditions:
|
|
234
|
-
|
|
228
|
+
- Wählen Sie eine offene Debatte, an der Sie teilnehmen können
|
|
235
229
|
description: Dieses Abzeichen wird gewährt, wenn Sie aktiv an den verschiedenen Debatten teilnehmen, indem Sie Ihre Kommentare hinterlassen.
|
|
236
230
|
description_another: Dieser Benutzer hat an %{score} Debatten teilgenommen.
|
|
237
231
|
description_own: Sie haben an %{score} Debatten teilgenommen.
|
data/config/locales/el.yml
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
---
|
|
1
2
|
el:
|
|
2
3
|
activemodel:
|
|
3
4
|
attributes:
|
|
@@ -132,14 +133,6 @@ el:
|
|
|
132
133
|
title: Τίτλος
|
|
133
134
|
events:
|
|
134
135
|
debates:
|
|
135
|
-
create_debate_event:
|
|
136
|
-
user_followers:
|
|
137
|
-
email_intro: |-
|
|
138
|
-
Γεια σας,
|
|
139
|
-
Ο συντάκτης %{author_name} %{author_nickname}, τον οποίο ακολουθείτε, δημιούργησε μια νέα συζήτηση «%{resource_title}». Δείτε την και συνεισφέρετε:
|
|
140
|
-
email_outro: Λάβατε αυτήν την ειδοποίηση επειδή ακολουθείτε τον συντάκτη %{author_nickname}. Μπορείτε να διακόψετε τη λήψη ειδοποιήσεων ακολουθώντας τον προηγούμενο σύνδεσμο.
|
|
141
|
-
email_subject: Νέα συζήτηση «%{resource_title}» από τον συντάκτη %{author_nickname}
|
|
142
|
-
notification_title: Ο συντάκτης <a href="%{author_path}">%{author_name} %{author_nickname}</a> δημιούργησε τη συζήτηση <a href="%{resource_path}">%{resource_title}</a>.
|
|
143
136
|
creation_disabled:
|
|
144
137
|
email_intro: 'Η δημιουργία συζήτησης δεν είναι πλέον ενεργή στον χώρο συμμετοχής %{participatory_space_title}. Μπορείτε ακόμα να συμμετέχετε σε ανοιχτές συζητήσεις από αυτήν τη σελίδα:'
|
|
145
138
|
email_outro: Λάβατε αυτήν την ειδοποίηση επειδή ακολουθείτε τον χώρο συμμετοχής %{participatory_space_title}. Μπορείτε να διακόψετε τη λήψη ειδοποιήσεων ακολουθώντας τον προηγούμενο σύνδεσμο.
|
|
@@ -165,7 +158,7 @@ el:
|
|
|
165
158
|
badges:
|
|
166
159
|
commented_debates:
|
|
167
160
|
conditions:
|
|
168
|
-
|
|
161
|
+
- Επιλέξτε μια ανοιχτή συζήτηση για να λάβετε μέρος
|
|
169
162
|
description: Αυτό το έμβλημα χορηγείται όταν συμμετέχετε ενεργά στις διάφορες συζητήσεις αφήνοντας τα σχόλιά σας.
|
|
170
163
|
description_another: Αυτός ο συμμετέχων έλαβε μέρος σε %{score} συζητήσεις.
|
|
171
164
|
description_own: Έχετε συμμετάσχει σε %{score} συζητήσεις.
|
data/config/locales/en.yml
CHANGED
|
@@ -205,10 +205,10 @@ en:
|
|
|
205
205
|
user_followers:
|
|
206
206
|
email_intro: |-
|
|
207
207
|
Hi,
|
|
208
|
-
%{author_name}
|
|
209
|
-
email_outro: You have received this notification because you are following %{
|
|
210
|
-
email_subject: New debate "%{resource_title}" by %{
|
|
211
|
-
notification_title: <a href="%{author_path}">%{author_name}
|
|
208
|
+
%{author_name}, who you are following, has created a new debate "%{resource_title}". Check it out and contribute:
|
|
209
|
+
email_outro: You have received this notification because you are following %{author_name}. You can stop receiving notifications following the previous link.
|
|
210
|
+
email_subject: New debate "%{resource_title}" by %{author_name}
|
|
211
|
+
notification_title: <a href="%{author_path}">%{author_name}</a> created the <a href="%{resource_path}">%{resource_title}</a> debate.
|
|
212
212
|
creation_disabled:
|
|
213
213
|
email_intro: 'Debate creation is no longer active in %{participatory_space_title}. You can still participate in open debates from this page:'
|
|
214
214
|
email_outro: You have received this notification because you are following %{participatory_space_title}. You can stop receiving notifications following the previous link.
|
data/config/locales/es-MX.yml
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
---
|
|
1
2
|
es-MX:
|
|
2
3
|
activemodel:
|
|
3
4
|
attributes:
|
|
@@ -204,10 +205,10 @@ es-MX:
|
|
|
204
205
|
user_followers:
|
|
205
206
|
email_intro: |-
|
|
206
207
|
Hola,
|
|
207
|
-
%{author_name}
|
|
208
|
-
email_outro: Has recibido esta notificación porque estás siguiendo
|
|
209
|
-
email_subject: Nuevo debate "%{resource_title}"
|
|
210
|
-
notification_title: <a href="%{author_path}">%{author_name}
|
|
208
|
+
%{author_name}, a quien estás siguiendo, ha creado un nuevo debate "%{resource_title}". Échale un vistazo y contribuye:
|
|
209
|
+
email_outro: Has recibido esta notificación porque estás siguiendo la iniciativa "%{author_name}". Puedes dejar de recibir notificaciones siguiendo el enlace anterior.
|
|
210
|
+
email_subject: Nuevo debate "%{resource_title}" creado por %{author_name}
|
|
211
|
+
notification_title: <a href="%{author_path}">%{author_name}</a> creó el debate <a href="%{resource_path}">%{resource_title}</a>.
|
|
211
212
|
creation_disabled:
|
|
212
213
|
email_intro: 'La creación de debate ya no está activa en %{participatory_space_title}. Aún puede participar en debates abiertos desde esta página:'
|
|
213
214
|
email_outro: Has recibido esta notificación porque estás siguiendo %{participatory_space_title}. Puedes dejar de recibir notificaciones siguiendo el enlace anterior.
|
|
@@ -233,7 +234,7 @@ es-MX:
|
|
|
233
234
|
badges:
|
|
234
235
|
commented_debates:
|
|
235
236
|
conditions:
|
|
236
|
-
|
|
237
|
+
- Elige un debate abierto para participar
|
|
237
238
|
description: Este distintivo se otorga cuando participes activamente en los diferentes debates dejando tus comentarios.
|
|
238
239
|
description_another: Este usuario ha participado en %{score} debates.
|
|
239
240
|
description_own: Has participado en %{score} debates.
|
data/config/locales/es-PY.yml
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
---
|
|
1
2
|
es-PY:
|
|
2
3
|
activemodel:
|
|
3
4
|
attributes:
|
|
@@ -200,10 +201,10 @@ es-PY:
|
|
|
200
201
|
user_followers:
|
|
201
202
|
email_intro: |-
|
|
202
203
|
Hola,
|
|
203
|
-
%{author_name}
|
|
204
|
-
email_outro: Has recibido esta notificación porque estás siguiendo
|
|
205
|
-
email_subject: Nuevo debate "%{resource_title}" por %{
|
|
206
|
-
notification_title: <a href="%{author_path}">%{author_name}
|
|
204
|
+
%{author_name}, a quien estás siguiendo, ha creado un nuevo debate "%{resource_title}". Échale un vistazo y contribuye:
|
|
205
|
+
email_outro: Has recibido esta notificación porque estás siguiendo la iniciativa "%{author_name}". Puedes dejar de recibir notificaciones siguiendo el enlace anterior.
|
|
206
|
+
email_subject: Nuevo debate "%{resource_title}" creado por %{author_name}
|
|
207
|
+
notification_title: <a href="%{author_path}">%{author_name}</a> creó el debate <a href="%{resource_path}">%{resource_title}</a>.
|
|
207
208
|
creation_disabled:
|
|
208
209
|
email_intro: 'La creación de debate ya no está activa en %{participatory_space_title}. Aún puede participar en debates abiertos desde esta página:'
|
|
209
210
|
email_outro: Has recibido esta notificación porque estás siguiendo %{participatory_space_title}. Puedes dejar de recibir notificaciones siguiendo el enlace anterior.
|
|
@@ -229,7 +230,7 @@ es-PY:
|
|
|
229
230
|
badges:
|
|
230
231
|
commented_debates:
|
|
231
232
|
conditions:
|
|
232
|
-
|
|
233
|
+
- Elige un debate abierto para participar.
|
|
233
234
|
description: Este distintivo se otorga cuando usted participa activamente en los diferentes debates dejando sus comentarios.
|
|
234
235
|
description_another: Este usuario ha participado en %{score} debates.
|
|
235
236
|
description_own: Usted ha participado en %{score} debates.
|
data/config/locales/es.yml
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
---
|
|
1
2
|
es:
|
|
2
3
|
activemodel:
|
|
3
4
|
attributes:
|
|
@@ -204,10 +205,10 @@ es:
|
|
|
204
205
|
user_followers:
|
|
205
206
|
email_intro: |-
|
|
206
207
|
Hola,
|
|
207
|
-
%{author_name}
|
|
208
|
-
email_outro: Has recibido esta notificación porque estás siguiendo
|
|
209
|
-
email_subject: Nuevo debate "%{resource_title}"
|
|
210
|
-
notification_title: <a href="%{author_path}">%{author_name}
|
|
208
|
+
%{author_name}, a quien estás siguiendo, ha creado un nuevo debate "%{resource_title}". Échale un vistazo y contribuye:
|
|
209
|
+
email_outro: Has recibido esta notificación porque estás siguiendo la iniciativa "%{author_name}". Puedes dejar de recibir notificaciones siguiendo el enlace anterior.
|
|
210
|
+
email_subject: Nuevo debate "%{resource_title}" creado por %{author_name}
|
|
211
|
+
notification_title: <a href="%{author_path}">%{author_name}</a> creó el debate <a href="%{resource_path}">%{resource_title}</a>.
|
|
211
212
|
creation_disabled:
|
|
212
213
|
email_intro: 'La creación de debates ya no está activa en %{participatory_space_title}. Aún puedes participar en debates abiertos desde esta página:'
|
|
213
214
|
email_outro: Has recibido esta notificación porque estás siguiendo el espacio "%{participatory_space_title}". Puedes dejar de recibir notificaciones siguiendo el enlace anterior.
|
|
@@ -233,7 +234,7 @@ es:
|
|
|
233
234
|
badges:
|
|
234
235
|
commented_debates:
|
|
235
236
|
conditions:
|
|
236
|
-
|
|
237
|
+
- Elige un debate abierto para participar
|
|
237
238
|
description: Este distintivo se otorga cuando participes activamente en los diferentes debates dejando tus comentarios.
|
|
238
239
|
description_another: Esta participante ha tomado parte en %{score} debates.
|
|
239
240
|
description_own: Has participado en %{score} debates.
|
data/config/locales/eu.yml
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
---
|
|
1
2
|
eu:
|
|
2
3
|
activemodel:
|
|
3
4
|
attributes:
|
|
@@ -8,7 +9,7 @@ eu:
|
|
|
8
9
|
end_time: Bukaera-data
|
|
9
10
|
information_updates: Informazioaren eguneratzeak
|
|
10
11
|
instructions: Parte hartzeko argibideak
|
|
11
|
-
start_time:
|
|
12
|
+
start_time: Hasiera-data
|
|
12
13
|
title: Izenburua
|
|
13
14
|
models:
|
|
14
15
|
decidim/debates/close_debate_event: Eztabaida itxita
|
|
@@ -95,7 +96,7 @@ eu:
|
|
|
95
96
|
title: Beste eztabaida bat
|
|
96
97
|
update:
|
|
97
98
|
invalid: Arazo bat egon da eztabaida hau eguneratzean.
|
|
98
|
-
success:
|
|
99
|
+
success: Eztabaida zuzen eguneratu da.
|
|
99
100
|
exports:
|
|
100
101
|
debate_comments: Iruzkinak
|
|
101
102
|
debates: Eztabaidak
|
|
@@ -126,7 +127,7 @@ eu:
|
|
|
126
127
|
other: "%{count} eztabaida"
|
|
127
128
|
create:
|
|
128
129
|
invalid: Arazo bat egon da eztabaida sortzean.
|
|
129
|
-
success:
|
|
130
|
+
success: Eztabaida zuzen eguneratu da.
|
|
130
131
|
debates:
|
|
131
132
|
empty: Oraindik ez dago eztabaidarik.
|
|
132
133
|
empty_filters: Ez dago irizpide hau duen eztabaidarik.
|
|
@@ -138,7 +139,7 @@ eu:
|
|
|
138
139
|
activity: Nire jarduera
|
|
139
140
|
all: Guztiak
|
|
140
141
|
category: Kategoria
|
|
141
|
-
category_prompt:
|
|
142
|
+
category_prompt: Hautatu kategoria bat
|
|
142
143
|
commented: Iruzkina eginda
|
|
143
144
|
my_debates: Nire eztabaidak
|
|
144
145
|
official: Ofiziala
|
|
@@ -176,15 +177,15 @@ eu:
|
|
|
176
177
|
success: Eztabaida zuzen eguneratu da.
|
|
177
178
|
last_activity:
|
|
178
179
|
debate_updated: 'Eztabaida eguneratu da:'
|
|
179
|
-
new_debate: '
|
|
180
|
+
new_debate: 'Beste eztabaida bat:'
|
|
180
181
|
models:
|
|
181
182
|
debate:
|
|
182
183
|
fields:
|
|
183
184
|
end: Amaiera
|
|
184
|
-
end_time: Amaiera
|
|
185
|
-
official_debate:
|
|
185
|
+
end_time: Amaiera-data
|
|
186
|
+
official_debate: Eztabaida ofiziala
|
|
186
187
|
start: Hasi
|
|
187
|
-
start_time: Hasiera
|
|
188
|
+
start_time: Hasiera-data
|
|
188
189
|
taxonomies: Taxonomiak
|
|
189
190
|
title: Izenburua
|
|
190
191
|
download_your_data:
|
|
@@ -201,13 +202,6 @@ eu:
|
|
|
201
202
|
email_outro: Jakinarazpen hau jaso duzu %{participatory_space_title} parte hartzeko espazioa jarraitzen ari zarelako. Aurreko estekan jakinarazpenak jasotzeari utzi ahal diozu.
|
|
202
203
|
email_subject: '"%{resource_title}" eztabaida berria hemen %{participatory_space_title}'
|
|
203
204
|
notification_title: '<a href="%{resource_path}">%{resource_title}</a> eztabaida sortu da hemen: <a href="%{participatory_space_url}">%{participatory_space_title}</a>.'
|
|
204
|
-
user_followers:
|
|
205
|
-
email_intro: |-
|
|
206
|
-
Kaixo,
|
|
207
|
-
Jarraitzen ari zaren %{author_name} %{author_nickname} parte-hartzaileak "%{resource_title}" beste eztabaida bat sortu du. Sartu eztabaidan eta zure ekarpena egin:
|
|
208
|
-
email_outro: Jakinarazpena jaso duzu %{author_nickname} jarraitzen ari zarelako. Aurreko estekan jakinarazpenak jasotzeari utzi ahal diozu.
|
|
209
|
-
email_subject: '%{author_nickname} parte-hartzaileak beste eztabaida bat sortu du hemen: "%{resource_title}"'
|
|
210
|
-
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> parte-hartzaileak <a href="%{resource_path}">%{resource_title}</a> eztabaida sortu du.
|
|
211
205
|
creation_disabled:
|
|
212
206
|
email_intro: 'Eztabaida sortzea dagoeneko ez dago aktibo %{participatory_space_title}. Oraindik irekita dauden eztabaidetan parte har dezakezu orri honetatik:'
|
|
213
207
|
email_outro: Jakinarazpena jaso duzu %{participatory_space_title} jarraitzen ari zarelako. Aurreko estekan jakinarazpenak jasotzeari utzi ahal diozu.
|
|
@@ -233,7 +227,7 @@ eu:
|
|
|
233
227
|
badges:
|
|
234
228
|
commented_debates:
|
|
235
229
|
conditions:
|
|
236
|
-
|
|
230
|
+
- Aukeratu eztabaida irekia parte hartzeko
|
|
237
231
|
description: Garaikur hau eztabaidetan modu aktiboan, zure iruzkinak utziz, parte hartzen duzunean ematen da.
|
|
238
232
|
description_another: Parte-hartzaile honek %{score} eztabaidatan hartu du parte.
|
|
239
233
|
description_own: '%{score} eztabaidatan hartu duzu parte.'
|
data/config/locales/fi-plain.yml
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
---
|
|
1
2
|
fi-pl:
|
|
2
3
|
activemodel:
|
|
3
4
|
attributes:
|
|
@@ -204,10 +205,10 @@ fi-pl:
|
|
|
204
205
|
user_followers:
|
|
205
206
|
email_intro: |-
|
|
206
207
|
Hei,
|
|
207
|
-
%{author_name}
|
|
208
|
-
email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat käyttäjää %{
|
|
209
|
-
email_subject: Uusi keskustelu "%{resource_title}"
|
|
210
|
-
notification_title: <a href="%{author_path}">%{author_name}
|
|
208
|
+
Seuraamasi osallistuja %{author_name} on laatinut uuden keskustelun "%{resource_title}". Tutustu siihen ja osallistu:
|
|
209
|
+
email_outro: Tämä ilmoitus on lähetetty sinulle, koska olet seuraat käyttäjää %{author_name}. Voit lopettaa ilmoitusten vastaanottamisen edellä esitetyn linkin kautta.
|
|
210
|
+
email_subject: Uusi keskustelu "%{resource_title}" osallistujalta %{author_name}
|
|
211
|
+
notification_title: <a href="%{author_path}">%{author_name}</a> loi keskustelun <a href="%{resource_path}">%{resource_title}</a>.
|
|
211
212
|
creation_disabled:
|
|
212
213
|
email_intro: 'Keskustelujen luominen ei ole enää käytössä kohteessa %{participatory_space_title}. Voit silti osallistua avattuihin keskusteluihin tämän sivun kautta:'
|
|
213
214
|
email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat kohdetta %{participatory_space_title}. Voit lopettaa ilmoitusten vastaanottamisen edellä esitetyn linkin kautta.
|
|
@@ -233,7 +234,7 @@ fi-pl:
|
|
|
233
234
|
badges:
|
|
234
235
|
commented_debates:
|
|
235
236
|
conditions:
|
|
236
|
-
|
|
237
|
+
- Valitse avoin keskustelu ja osallistu siihen
|
|
237
238
|
description: Tämä kunniamerkki myönnetään, kun osallistut aktiivisesti eri keskusteluihin.
|
|
238
239
|
description_another: Tämä käyttäjä on osallistunut %{score} keskusteluun.
|
|
239
240
|
description_own: Olet osallistunut %{score} keskusteluun.
|
data/config/locales/fi.yml
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
---
|
|
1
2
|
fi:
|
|
2
3
|
activemodel:
|
|
3
4
|
attributes:
|
|
@@ -204,10 +205,10 @@ fi:
|
|
|
204
205
|
user_followers:
|
|
205
206
|
email_intro: |-
|
|
206
207
|
Hei,
|
|
207
|
-
%{author_name}
|
|
208
|
-
email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat käyttäjää %{
|
|
209
|
-
email_subject: Uusi keskustelu "%{resource_title}"
|
|
210
|
-
notification_title: <a href="%{author_path}">%{author_name}
|
|
208
|
+
Seuraamasi osallistuja %{author_name} on laatinut uuden keskustelun "%{resource_title}". Tutustu siihen ja osallistu:
|
|
209
|
+
email_outro: Tämä ilmoitus on lähetetty sinulle, koska olet seuraat käyttäjää %{author_name}. Voit lopettaa ilmoitusten vastaanottamisen edellä esitetyn linkin kautta.
|
|
210
|
+
email_subject: Uusi keskustelu "%{resource_title}" osallistujalta %{author_name}
|
|
211
|
+
notification_title: <a href="%{author_path}">%{author_name}</a> loi keskustelun <a href="%{resource_path}">%{resource_title}</a>.
|
|
211
212
|
creation_disabled:
|
|
212
213
|
email_intro: 'Keskustelujen luominen ei ole enää käytössä kohteessa %{participatory_space_title}. Voit silti osallistua avattuihin keskusteluihin sivulta:'
|
|
213
214
|
email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat kohdetta %{participatory_space_title}. Voit lopettaa ilmoitusten vastaanottamisen edellä esitetyn linkin kautta.
|
|
@@ -233,7 +234,7 @@ fi:
|
|
|
233
234
|
badges:
|
|
234
235
|
commented_debates:
|
|
235
236
|
conditions:
|
|
236
|
-
|
|
237
|
+
- Valitse avoin keskustelu ja osallistu siihen
|
|
237
238
|
description: Tämä kunniamerkki myönnetään, kun osallistut aktiivisesti eri keskusteluihin.
|
|
238
239
|
description_another: Tämä käyttäjä on osallistunut %{score} keskusteluun.
|
|
239
240
|
description_own: Olet osallistunut %{score} keskusteluun.
|
data/config/locales/fr-CA.yml
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
---
|
|
1
2
|
fr-CA:
|
|
2
3
|
activemodel:
|
|
3
4
|
attributes:
|
|
@@ -188,13 +189,6 @@ fr-CA:
|
|
|
188
189
|
email_outro: Vous avez reçu cette notification car vous suivez l'espace participatif %{participatory_space_title}. Vous pouvez arrêter de recevoir des notifications en cliquant sur le lien précédent.
|
|
189
190
|
email_subject: Nouveau débat "%{resource_title}" sur %{participatory_space_title}
|
|
190
191
|
notification_title: Le débat <a href="%{resource_path}">%{resource_title}</a> a été créé sur <a href="%{participatory_space_url}">%{participatory_space_title}</a>.
|
|
191
|
-
user_followers:
|
|
192
|
-
email_intro: |-
|
|
193
|
-
Bonjour,
|
|
194
|
-
%{author_name} %{author_nickname}, qui vous suivez, a créé un nouveau débat "%{resource_title}". Découvrez-le et contribuez:
|
|
195
|
-
email_outro: Vous avez reçu cette notification, car vous suivez %{author_nickname}. Vous pouvez cesser de recevoir des notifications à partir du lien précédent.
|
|
196
|
-
email_subject: Nouveau débat "%{resource_title}" par %{author_nickname}
|
|
197
|
-
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> créé le débat <a href="%{resource_path}">%{resource_title}</a>.
|
|
198
192
|
creation_disabled:
|
|
199
193
|
email_intro: 'La création de débat n''est plus possible dans %{participatory_space_title}. Vous pouvez toujours participer aux débats ouverts depuis cette page :'
|
|
200
194
|
email_outro: Vous avez reçu cette notification parce que vous suivez %{participatory_space_title}. Vous pouvez arrêter de recevoir des notifications à partir du lien précédent.
|
|
@@ -220,7 +214,7 @@ fr-CA:
|
|
|
220
214
|
badges:
|
|
221
215
|
commented_debates:
|
|
222
216
|
conditions:
|
|
223
|
-
|
|
217
|
+
- Choisissez un débat ouvert pour participer à
|
|
224
218
|
description: Ce badge est attribué lorsque vous participez activement aux différents débats en laissant vos commentaires.
|
|
225
219
|
description_another: Cet utilisateur a participé à %{score} débats.
|
|
226
220
|
description_own: Vous avez participé à %{score} débats.
|
data/config/locales/fr.yml
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
---
|
|
1
2
|
fr:
|
|
2
3
|
activemodel:
|
|
3
4
|
attributes:
|
|
@@ -188,13 +189,6 @@ fr:
|
|
|
188
189
|
email_outro: Vous avez reçu cette notification car vous suivez l'espace participatif %{participatory_space_title}. Vous pouvez arrêter de recevoir des notifications en cliquant sur le lien précédent.
|
|
189
190
|
email_subject: Nouveau débat "%{resource_title}" sur %{participatory_space_title}
|
|
190
191
|
notification_title: Le débat <a href="%{resource_path}">%{resource_title}</a> a été créé sur <a href="%{participatory_space_url}">%{participatory_space_title}</a>.
|
|
191
|
-
user_followers:
|
|
192
|
-
email_intro: |-
|
|
193
|
-
Bonjour,
|
|
194
|
-
%{author_name} %{author_nickname}, qui vous suivez, a créé un nouveau débat "%{resource_title}". Découvrez-le et contribuez:
|
|
195
|
-
email_outro: Vous avez reçu cette notification, car vous suivez %{author_nickname}. Si vous souhaitez vous désabonner des notifications, connectez-vous à la plateforme, puis rendez-vous dans l'onglet “Mon compte” > “Paramètres des notifications”.
|
|
196
|
-
email_subject: Nouveau débat "%{resource_title}" par %{author_nickname}
|
|
197
|
-
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> créé le débat <a href="%{resource_path}">%{resource_title}</a>.
|
|
198
192
|
creation_disabled:
|
|
199
193
|
email_intro: 'La création de débat n''est plus possible dans %{participatory_space_title}. Vous pouvez toujours participer aux débats ouverts depuis cette page :'
|
|
200
194
|
email_outro: Vous avez reçu cette notification parce que vous suivez %{participatory_space_title}. Si vous souhaitez vous désabonner des notifications, connectez-vous à la plateforme, puis rendez-vous dans l'onglet “Mon compte” > “Paramètres des notifications”.
|
|
@@ -220,7 +214,7 @@ fr:
|
|
|
220
214
|
badges:
|
|
221
215
|
commented_debates:
|
|
222
216
|
conditions:
|
|
223
|
-
|
|
217
|
+
- Choisissez un débat ouvert pour participer à
|
|
224
218
|
description: Ce badge est attribué lorsque vous participez activement aux différents débats en laissant vos commentaires.
|
|
225
219
|
description_another: Cet utilisateur a participé à %{score} débats.
|
|
226
220
|
description_own: Vous avez participé à %{score} débats.
|
data/config/locales/ga-IE.yml
CHANGED
data/config/locales/gl.yml
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
---
|
|
1
2
|
gl:
|
|
2
3
|
activemodel:
|
|
3
4
|
attributes:
|
|
@@ -83,14 +84,6 @@ gl:
|
|
|
83
84
|
title: Título
|
|
84
85
|
events:
|
|
85
86
|
debates:
|
|
86
|
-
create_debate_event:
|
|
87
|
-
user_followers:
|
|
88
|
-
email_intro: |-
|
|
89
|
-
Ola,
|
|
90
|
-
%{author_name} %{author_nickname}, a quen estás seguindo, creou un novo debate "%{resource_title}". Consulte e contribúa:
|
|
91
|
-
email_outro: Recibiches esta notificación porque estás seguindo %{author_nickname}. Podes deixar de recibir notificacións seguindo a ligazón anterior.
|
|
92
|
-
email_subject: Novo debate "%{resource_title}" por %{author_nickname}
|
|
93
|
-
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> creou o debate <a href="%{resource_path}">%{resource_title}</a>.
|
|
94
87
|
creation_disabled:
|
|
95
88
|
email_intro: 'A creación de debates xa non está activa en %{participatory_space_title}. Aínda podes participar nos debates abertos desta páxina:'
|
|
96
89
|
email_outro: Recibiches esta notificación porque estás seguindo %{participatory_space_title}. Podes deixar de recibir notificacións seguindo a ligazón anterior.
|
|
@@ -115,7 +108,7 @@ gl:
|
|
|
115
108
|
badges:
|
|
116
109
|
commented_debates:
|
|
117
110
|
conditions:
|
|
118
|
-
|
|
111
|
+
- Escolle un debate aberto para participar
|
|
119
112
|
description: Este distintivo é concedido cando participas activamente nos diferentes debates deixando os teus comentarios.
|
|
120
113
|
description_another: Este usuario participou en %{score} debates.
|
|
121
114
|
description_own: Participaches en %{score} debates.
|