decidim-debates 0.27.4 → 0.27.6
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/controllers/decidim/debates/widgets_controller.rb +11 -1
- data/app/events/decidim/debates/create_debate_event.rb +0 -14
- data/app/permissions/decidim/debates/permissions.rb +6 -0
- data/app/views/decidim/debates/debates/_debates.html.erb +12 -9
- data/config/locales/ar.yml +1 -7
- data/config/locales/bg.yml +30 -1
- data/config/locales/ca.yml +9 -6
- data/config/locales/cs.yml +8 -5
- data/config/locales/de.yml +10 -7
- data/config/locales/el.yml +0 -7
- data/config/locales/en.yml +7 -4
- data/config/locales/es-MX.yml +7 -4
- data/config/locales/es-PY.yml +7 -4
- data/config/locales/es.yml +10 -7
- data/config/locales/eu.yml +42 -39
- data/config/locales/fi-plain.yml +7 -4
- data/config/locales/fi.yml +7 -4
- data/config/locales/fr-CA.yml +8 -5
- data/config/locales/fr.yml +8 -5
- data/config/locales/gl.yml +0 -7
- data/config/locales/he-IL.yml +1 -0
- data/config/locales/hu.yml +3 -10
- data/config/locales/id-ID.yml +0 -7
- data/config/locales/is-IS.yml +0 -6
- data/config/locales/it.yml +1 -8
- data/config/locales/ja.yml +8 -5
- data/config/locales/lb.yml +4 -7
- data/config/locales/lt.yml +1 -7
- data/config/locales/lv.yml +0 -6
- data/config/locales/nl.yml +0 -7
- data/config/locales/no.yml +1 -8
- data/config/locales/pl.yml +7 -6
- data/config/locales/pt-BR.yml +8 -7
- data/config/locales/pt.yml +1 -8
- data/config/locales/ro-RO.yml +0 -7
- data/config/locales/ru.yml +0 -3
- data/config/locales/sk.yml +0 -6
- data/config/locales/sq-AL.yml +1 -0
- data/config/locales/sv.yml +0 -7
- data/config/locales/th-TH.yml +1 -0
- data/config/locales/tr-TR.yml +7 -7
- data/config/locales/uk.yml +0 -3
- data/config/locales/zh-CN.yml +0 -7
- data/config/locales/zh-TW.yml +0 -7
- data/decidim-debates.gemspec +32 -0
- data/lib/decidim/debates/component.rb +1 -1
- data/lib/decidim/debates/test/factories.rb +16 -18
- data/lib/decidim/debates/version.rb +1 -1
- metadata +19 -16
- data/config/environment.rb +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0d324959892f8f61929da154f1ddb51fedee60365b68b4f5c492123b598ca9b3
|
|
4
|
+
data.tar.gz: 040c91987101384521f5c543d3a682affffd48e7c1458011fe927b7a6e571159
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3d8099cb8ed0aaf6a0b5fd704fc16bec57e87d7cbb56660df6d765eab2b6690bf6574750ebb7521edc59635f1b87e640894a2889b3f4ed779448a94a1e681b00
|
|
7
|
+
data.tar.gz: f6f74beef5215430fddcef7a044f51e47815ac822fb31f310d956e03b0e8a5d5590353aaa3a500aa5aabdfa65e505f468b3ef1ecbdb50a06e40ede647065b95f
|
|
@@ -5,15 +5,25 @@ module Decidim
|
|
|
5
5
|
class WidgetsController < Decidim::WidgetsController
|
|
6
6
|
helper Debates::ApplicationHelper
|
|
7
7
|
|
|
8
|
+
def show
|
|
9
|
+
enforce_permission_to :embed, :debate, debate: model if model
|
|
10
|
+
|
|
11
|
+
super
|
|
12
|
+
end
|
|
13
|
+
|
|
8
14
|
private
|
|
9
15
|
|
|
10
16
|
def model
|
|
11
|
-
@model ||= Debate.where(component:
|
|
17
|
+
@model ||= Debate.not_hidden.where(component: current_component).find(params[:debate_id])
|
|
12
18
|
end
|
|
13
19
|
|
|
14
20
|
def iframe_url
|
|
15
21
|
@iframe_url ||= debate_widget_url(model)
|
|
16
22
|
end
|
|
23
|
+
|
|
24
|
+
def permission_class_chain
|
|
25
|
+
[Decidim::Debates::Permissions]
|
|
26
|
+
end
|
|
17
27
|
end
|
|
18
28
|
end
|
|
19
29
|
end
|
|
@@ -12,26 +12,12 @@ module Decidim
|
|
|
12
12
|
class CreateDebateEvent < Decidim::Events::SimpleEvent
|
|
13
13
|
include Decidim::Events::AuthorEvent
|
|
14
14
|
|
|
15
|
-
i18n_attributes :space_title, :space_path
|
|
16
|
-
|
|
17
15
|
def resource_text
|
|
18
16
|
translated_attribute(resource.description)
|
|
19
17
|
end
|
|
20
18
|
|
|
21
19
|
private
|
|
22
20
|
|
|
23
|
-
def space
|
|
24
|
-
@space ||= resource.participatory_space
|
|
25
|
-
end
|
|
26
|
-
|
|
27
|
-
def space_path
|
|
28
|
-
Decidim::ResourceLocatorPresenter.new(space).path
|
|
29
|
-
end
|
|
30
|
-
|
|
31
|
-
def space_title
|
|
32
|
-
space.title.is_a?(Hash) ? space.title[I18n.locale.to_s] : space.title
|
|
33
|
-
end
|
|
34
|
-
|
|
35
21
|
def i18n_scope
|
|
36
22
|
@i18n_scope ||= if extra[:type].to_s == "user"
|
|
37
23
|
"decidim.events.debates.create_debate_event.user_followers"
|
|
@@ -21,6 +21,8 @@ module Decidim
|
|
|
21
21
|
can_endorse_debate?
|
|
22
22
|
when :close
|
|
23
23
|
can_close_debate?
|
|
24
|
+
when :embed
|
|
25
|
+
can_embed_debate?
|
|
24
26
|
end
|
|
25
27
|
|
|
26
28
|
permission_action
|
|
@@ -45,6 +47,10 @@ module Decidim
|
|
|
45
47
|
disallow!
|
|
46
48
|
end
|
|
47
49
|
|
|
50
|
+
def can_embed_debate?
|
|
51
|
+
allow!
|
|
52
|
+
end
|
|
53
|
+
|
|
48
54
|
def can_endorse_debate?
|
|
49
55
|
return disallow! if debate.closed?
|
|
50
56
|
|
|
@@ -1,11 +1,14 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
<% if debates.empty? %>
|
|
2
|
+
<%= cell("decidim/announcement", params[:filter].present? ? t(".empty_filters") : t(".empty")) %>
|
|
3
|
+
<% else %>
|
|
4
|
+
<div class="collection-sort-controls row small-up-1 medium-up-3 card-grid">
|
|
5
|
+
<div class="column">
|
|
6
|
+
<%= order_selector available_orders, i18n_scope: "decidim.debates.debates.orders" %>
|
|
7
|
+
</div>
|
|
8
|
+
</div>
|
|
9
|
+
<div class="row small-up-1 medium-up-2 card-grid">
|
|
10
|
+
<%= render paginated_debates %>
|
|
4
11
|
</div>
|
|
5
|
-
</div>
|
|
6
|
-
|
|
7
|
-
<div class="row small-up-1 medium-up-2 card-grid">
|
|
8
|
-
<%= render paginated_debates %>
|
|
9
|
-
</div>
|
|
10
12
|
|
|
11
|
-
<%= decidim_paginate paginated_debates %>
|
|
13
|
+
<%= decidim_paginate paginated_debates %>
|
|
14
|
+
<% end %>
|
data/config/locales/ar.yml
CHANGED
|
@@ -85,6 +85,7 @@ ar:
|
|
|
85
85
|
debate:
|
|
86
86
|
participate: مشاركة
|
|
87
87
|
filters:
|
|
88
|
+
activity: نشاطي
|
|
88
89
|
all: الكل
|
|
89
90
|
category: الفئة
|
|
90
91
|
category_prompt: اختر تصنيف
|
|
@@ -123,13 +124,6 @@ ar:
|
|
|
123
124
|
events:
|
|
124
125
|
debates:
|
|
125
126
|
create_debate_event:
|
|
126
|
-
space_followers:
|
|
127
|
-
email_intro: |-
|
|
128
|
-
مرحبا،
|
|
129
|
-
نقاش الجديدة "%{resource_title}" تم إنشاؤها على %{space_title} مساحة المشاركة، والتحقق من ذلك والمساهمة:
|
|
130
|
-
email_outro: لقد تلقيت هذا الإشعار لأنك تتابع مساحة المشاركة %{space_title} . يمكنك إيقاف تلقي الإخطارات باتباع الرابط السابق.
|
|
131
|
-
email_subject: مناقشة جديدة "%{resource_title}" في %{space_title}
|
|
132
|
-
notification_title: تم إنشاء المناقشة <a href="%{resource_path}">%{resource_title}</a> في <a href="%{space_path}">%{space_title}</a>.
|
|
133
127
|
user_followers:
|
|
134
128
|
email_intro: |-
|
|
135
129
|
مرحبًا ،
|
data/config/locales/bg.yml
CHANGED
|
@@ -8,11 +8,40 @@ bg:
|
|
|
8
8
|
description: Описание
|
|
9
9
|
decidim:
|
|
10
10
|
debates:
|
|
11
|
+
actions:
|
|
12
|
+
new: Ново %{name}
|
|
11
13
|
debates:
|
|
14
|
+
debate:
|
|
15
|
+
participate: Участвайте
|
|
12
16
|
filters:
|
|
13
17
|
user_groups: Групи
|
|
18
|
+
filters_small_view:
|
|
19
|
+
close_modal: Затвори прозореца
|
|
20
|
+
filter: Филтър
|
|
21
|
+
filter_by: Филтрирай по
|
|
22
|
+
unfold: Разгъване
|
|
14
23
|
show:
|
|
24
|
+
back: Назад към списъка
|
|
25
|
+
date: Дата
|
|
15
26
|
groups_count: Групи
|
|
16
|
-
last_comment_by:
|
|
27
|
+
last_comment_by: Последен коментар от
|
|
17
28
|
no_comments_yet: Все още няма коментари
|
|
18
29
|
participants_count: Участници
|
|
30
|
+
versions:
|
|
31
|
+
debates:
|
|
32
|
+
back_to_resource: Назад към дебата
|
|
33
|
+
index:
|
|
34
|
+
title: Версии
|
|
35
|
+
versions_list:
|
|
36
|
+
back_to_resource: Назад към дебата
|
|
37
|
+
last_activity:
|
|
38
|
+
debate_updated_at_html: "<span>Дебатът беше актуализиран на: %{link}</span>"
|
|
39
|
+
new_debate_at_html: "<span>Нов дебат на адрес: %{link}</span>"
|
|
40
|
+
events:
|
|
41
|
+
debates:
|
|
42
|
+
creation_enabled:
|
|
43
|
+
notification_title: Вече можете да създавате <a href="%{resource_path}">нови дебати</a> в(ъв) <a href="%{participatory_space_url}">%{participatory_space_title}</a>
|
|
44
|
+
gamification:
|
|
45
|
+
badges:
|
|
46
|
+
commented_debates:
|
|
47
|
+
unearned_own: Все още не сте участвали в нито един дебат.
|
data/config/locales/ca.yml
CHANGED
|
@@ -110,6 +110,9 @@ ca:
|
|
|
110
110
|
success: Debat creat correctament.
|
|
111
111
|
debate:
|
|
112
112
|
participate: Participa
|
|
113
|
+
debates:
|
|
114
|
+
empty: Encara no hi ha cap debat.
|
|
115
|
+
empty_filters: No hi ha cap debat amb aquest criteri.
|
|
113
116
|
edit:
|
|
114
117
|
back: Enrere
|
|
115
118
|
save: Guardar canvis
|
|
@@ -189,10 +192,10 @@ ca:
|
|
|
189
192
|
space_followers:
|
|
190
193
|
email_intro: |-
|
|
191
194
|
Hola,
|
|
192
|
-
S'ha creat un nou debat "%{resource_title}" a l'espai participatiu %{
|
|
193
|
-
email_outro: Has rebut aquesta notificació perquè estàs seguint %{
|
|
194
|
-
email_subject: Nou debat "%{resource_title}"
|
|
195
|
-
notification_title:
|
|
195
|
+
S'ha creat un nou debat "%{resource_title}" a l'espai participatiu %{participatory_space_title}, dona-hi una ullada i contribueix-hi:
|
|
196
|
+
email_outro: Has rebut aquesta notificació perquè estàs seguint l'espai "%{participatory_space_title}". Pots deixar de rebre notificacions des de l'enllaç anterior.
|
|
197
|
+
email_subject: Nou debat "%{resource_title}" a %{participatory_space_title}
|
|
198
|
+
notification_title: S'ha creat el debat <a href="%{resource_path}">%{resource_title}</a> a <a href="%{participatory_space_url}">%{participatory_space_title}</a>.
|
|
196
199
|
user_followers:
|
|
197
200
|
email_intro: |-
|
|
198
201
|
Hola,
|
|
@@ -202,12 +205,12 @@ ca:
|
|
|
202
205
|
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> ha creat el debat <a href="%{resource_path}">%{resource_title}</a>.
|
|
203
206
|
creation_disabled:
|
|
204
207
|
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:'
|
|
205
|
-
email_outro: Has rebut aquesta notificació perquè estàs seguint l'espai %{participatory_space_title}. Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
|
208
|
+
email_outro: Has rebut aquesta notificació perquè estàs seguint l'espai "%{participatory_space_title}". Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
|
206
209
|
email_subject: S'ha desactivat la creació de debats a %{participatory_space_title}
|
|
207
210
|
notification_title: La creació de debats està deshabilitada a l'espai <a href="%{participatory_space_url}">%{participatory_space_title}</a>
|
|
208
211
|
creation_enabled:
|
|
209
212
|
email_intro: 'Ja pots crear nous debats a %{participatory_space_title}! Comença a participar en aquesta pàgina:'
|
|
210
|
-
email_outro: Has rebut aquesta notificació perquè estàs seguint %{participatory_space_title}. Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
|
213
|
+
email_outro: Has rebut aquesta notificació perquè estàs seguint l'espai "%{participatory_space_title}". Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
|
211
214
|
email_subject: Els debats ja estan disponibles a %{participatory_space_title}
|
|
212
215
|
notification_title: Ja pots començar <a href="%{resource_path}">nous debats</a> a <a href="%{participatory_space_url}">%{participatory_space_title}</a>
|
|
213
216
|
debate_closed:
|
data/config/locales/cs.yml
CHANGED
|
@@ -114,6 +114,9 @@ cs:
|
|
|
114
114
|
success: Debata byla úspěšně vytvořena.
|
|
115
115
|
debate:
|
|
116
116
|
participate: Účastnit se
|
|
117
|
+
debates:
|
|
118
|
+
empty: Zatím nejsou žádné diskuse.
|
|
119
|
+
empty_filters: S těmito kritérii nejsou žádné diskuse.
|
|
117
120
|
edit:
|
|
118
121
|
back: Zpět
|
|
119
122
|
save: Uložit změny
|
|
@@ -192,11 +195,11 @@ cs:
|
|
|
192
195
|
create_debate_event:
|
|
193
196
|
space_followers:
|
|
194
197
|
email_intro: |-
|
|
195
|
-
|
|
196
|
-
Byla vytvořena nová debata "%{resource_title}" ve skupině %{
|
|
197
|
-
email_outro: Toto oznámení jste obdrželi, protože sledujete participační prostor %{
|
|
198
|
-
email_subject: Nová debata "%{resource_title}" na %{
|
|
199
|
-
notification_title: Debata <a href="%{resource_path}">%{resource_title}</a> byla vytvořena na <a href="%{
|
|
198
|
+
Dobrý den,
|
|
199
|
+
Byla vytvořena nová debata "%{resource_title}" ve skupině %{participatory_space_title}, omrkněte a přispějte:
|
|
200
|
+
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.
|
|
201
|
+
email_subject: Nová debata "%{resource_title}" na %{participatory_space_title}
|
|
202
|
+
notification_title: Debata <a href="%{resource_path}">%{resource_title}</a> byla vytvořena na <a href="%{participatory_space_url}">%{participatory_space_title}</a>.
|
|
200
203
|
user_followers:
|
|
201
204
|
email_intro: |-
|
|
202
205
|
Ahoj,
|
data/config/locales/de.yml
CHANGED
|
@@ -49,7 +49,7 @@ de:
|
|
|
49
49
|
debates:
|
|
50
50
|
actions:
|
|
51
51
|
close: Schließen
|
|
52
|
-
confirm_destroy:
|
|
52
|
+
confirm_destroy: Sind Sie sich sicher?
|
|
53
53
|
destroy: Löschen
|
|
54
54
|
edit: Bearbeiten
|
|
55
55
|
new: Neu %{name}
|
|
@@ -110,6 +110,9 @@ de:
|
|
|
110
110
|
success: Diskussion erfolgreich erstellt
|
|
111
111
|
debate:
|
|
112
112
|
participate: Mitmachen
|
|
113
|
+
debates:
|
|
114
|
+
empty: Es gibt noch keine Debatten.
|
|
115
|
+
empty_filters: Es liegen noch keine Debatten mit diesen Kriterien vor.
|
|
113
116
|
edit:
|
|
114
117
|
back: Zurück
|
|
115
118
|
save: Änderungen speichern
|
|
@@ -175,7 +178,7 @@ de:
|
|
|
175
178
|
back_to_resource: Zurück zur Debatte
|
|
176
179
|
last_activity:
|
|
177
180
|
debate_updated_at_html: "<span>Debatte aktualisiert unter %{link}</span>"
|
|
178
|
-
new_debate_at_html: "<span>Neue Debatte
|
|
181
|
+
new_debate_at_html: "<span>Neue Debatte auf %{link}</span>"
|
|
179
182
|
models:
|
|
180
183
|
debate:
|
|
181
184
|
fields:
|
|
@@ -188,11 +191,11 @@ de:
|
|
|
188
191
|
create_debate_event:
|
|
189
192
|
space_followers:
|
|
190
193
|
email_intro: |-
|
|
191
|
-
|
|
192
|
-
Eine neue Debatte "%{resource_title}" wurde
|
|
193
|
-
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{
|
|
194
|
-
email_subject: Neue Debatte "%{resource_title}" in %{
|
|
195
|
-
notification_title: Die Debatte <a href="%{resource_path}">%{resource_title}</a> wurde
|
|
194
|
+
Guten Tag,
|
|
195
|
+
Eine neue Debatte "%{resource_title}" wurde auf %{participatory_space_title} eröffnet. Jetzt anschauen und mitdiskutieren unter:
|
|
196
|
+
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.
|
|
197
|
+
email_subject: Neue Debatte "%{resource_title}" in %{participatory_space_title}
|
|
198
|
+
notification_title: Die Debatte <a href="%{resource_path}">%{resource_title}</a> wurde auf <a href="%{participatory_space_url}">%{participatory_space_title}</a> erstellt.
|
|
196
199
|
user_followers:
|
|
197
200
|
email_intro: |-
|
|
198
201
|
Hallo,
|
data/config/locales/el.yml
CHANGED
|
@@ -185,13 +185,6 @@ el:
|
|
|
185
185
|
events:
|
|
186
186
|
debates:
|
|
187
187
|
create_debate_event:
|
|
188
|
-
space_followers:
|
|
189
|
-
email_intro: |-
|
|
190
|
-
Γεια σας,
|
|
191
|
-
Μια νέα συζήτηση «%{resource_title}» δημιουργήθηκε στον χώρο συμμετοχής %{space_title}, δείτε την και συνεισφέρετε:
|
|
192
|
-
email_outro: Λάβατε αυτήν την ειδοποίηση επειδή ακολουθείτε τον χώρο συμμετοχής %{space_title}. Μπορείτε να διακόψετε τη λήψη ειδοποιήσεων ακολουθώντας τον προηγούμενο σύνδεσμο.
|
|
193
|
-
email_subject: Νέα συζήτηση «%{resource_title}» στον χώρο %{space_title}
|
|
194
|
-
notification_title: Η <a href="%{resource_path}">%{resource_title}</a> συζήτηση δημιουργήθηκε στον χώρο <a href="%{space_path}">%{space_title}</a>.
|
|
195
188
|
user_followers:
|
|
196
189
|
email_intro: |-
|
|
197
190
|
Γεια σας,
|
data/config/locales/en.yml
CHANGED
|
@@ -110,6 +110,9 @@ en:
|
|
|
110
110
|
success: Debate successfully created.
|
|
111
111
|
debate:
|
|
112
112
|
participate: Participate
|
|
113
|
+
debates:
|
|
114
|
+
empty: There are no debates yet.
|
|
115
|
+
empty_filters: There are no debates with this criteria.
|
|
113
116
|
edit:
|
|
114
117
|
back: Back
|
|
115
118
|
save: Save changes
|
|
@@ -189,10 +192,10 @@ en:
|
|
|
189
192
|
space_followers:
|
|
190
193
|
email_intro: |-
|
|
191
194
|
Hi,
|
|
192
|
-
A new debate "%{resource_title}" has been created on the %{
|
|
193
|
-
email_outro: You have received this notification because you are following the %{
|
|
194
|
-
email_subject: New debate "%{resource_title}" on %{
|
|
195
|
-
notification_title: The <a href="%{resource_path}">%{resource_title}</a> debate was created on <a href="%{
|
|
195
|
+
A new debate "%{resource_title}" has been created on the %{participatory_space_title} participatory space, check it out and contribute:
|
|
196
|
+
email_outro: You have received this notification because you are following the %{participatory_space_title} participatory space. You can stop receiving notifications following the previous link.
|
|
197
|
+
email_subject: New debate "%{resource_title}" on %{participatory_space_title}
|
|
198
|
+
notification_title: The <a href="%{resource_path}">%{resource_title}</a> debate was created on <a href="%{participatory_space_url}">%{participatory_space_title}</a>.
|
|
196
199
|
user_followers:
|
|
197
200
|
email_intro: |-
|
|
198
201
|
Hi,
|
data/config/locales/es-MX.yml
CHANGED
|
@@ -110,6 +110,9 @@ es-MX:
|
|
|
110
110
|
success: Debate creado con éxito.
|
|
111
111
|
debate:
|
|
112
112
|
participate: Participar
|
|
113
|
+
debates:
|
|
114
|
+
empty: Aún no hay ningún debate.
|
|
115
|
+
empty_filters: No hay ningún debate con este criterio.
|
|
113
116
|
edit:
|
|
114
117
|
back: Atrás
|
|
115
118
|
save: Guardar cambios
|
|
@@ -189,10 +192,10 @@ es-MX:
|
|
|
189
192
|
space_followers:
|
|
190
193
|
email_intro: |-
|
|
191
194
|
Hola,
|
|
192
|
-
Se ha creado un nuevo debate "%{resource_title}" en el espacio participativo %{
|
|
193
|
-
email_outro: Has recibido esta notificación porque estás siguiendo
|
|
194
|
-
email_subject: Nuevo debate "%{resource_title}" en %{
|
|
195
|
-
notification_title:
|
|
195
|
+
Se ha creado un nuevo debate "%{resource_title}" en el espacio participativo %{participatory_space_title}, échale un vistazo y contribuye:
|
|
196
|
+
email_outro: Has recibido esta notificación porque estás siguiendo el espacio "%{participatory_space_title}". Puedes dejar de recibir notificaciones desde el enlace anterior.
|
|
197
|
+
email_subject: Nuevo debate "%{resource_title}" en %{participatory_space_title}
|
|
198
|
+
notification_title: Se ha creado el debate <a href="%{resource_path}">%{resource_title}</a> en <a href="%{participatory_space_url}">%{participatory_space_title}</a>.
|
|
196
199
|
user_followers:
|
|
197
200
|
email_intro: |-
|
|
198
201
|
Hola,
|
data/config/locales/es-PY.yml
CHANGED
|
@@ -106,6 +106,9 @@ es-PY:
|
|
|
106
106
|
success: Debate creado con éxito.
|
|
107
107
|
debate:
|
|
108
108
|
participate: Participar
|
|
109
|
+
debates:
|
|
110
|
+
empty: Aún no hay ningún debate.
|
|
111
|
+
empty_filters: No hay ningún debate con este criterio.
|
|
109
112
|
edit:
|
|
110
113
|
back: Atrás
|
|
111
114
|
save: Guardar cambios
|
|
@@ -185,10 +188,10 @@ es-PY:
|
|
|
185
188
|
space_followers:
|
|
186
189
|
email_intro: |-
|
|
187
190
|
Hola,
|
|
188
|
-
Se ha creado un nuevo debate "%{resource_title}" en el espacio participativo %{
|
|
189
|
-
email_outro: Has recibido esta notificación porque estás siguiendo
|
|
190
|
-
email_subject: Nuevo debate "%{resource_title}" en %{
|
|
191
|
-
notification_title:
|
|
191
|
+
Se ha creado un nuevo debate "%{resource_title}" en el espacio participativo %{participatory_space_title}, échale un vistazo y contribuye:
|
|
192
|
+
email_outro: Has recibido esta notificación porque estás siguiendo el espacio "%{participatory_space_title}". Puedes dejar de recibir notificaciones desde el enlace anterior.
|
|
193
|
+
email_subject: Nuevo debate "%{resource_title}" en %{participatory_space_title}
|
|
194
|
+
notification_title: Se ha creado el debate <a href="%{resource_path}">%{resource_title}</a> en <a href="%{participatory_space_url}">%{participatory_space_title}</a>.
|
|
192
195
|
user_followers:
|
|
193
196
|
email_intro: |-
|
|
194
197
|
Hola,
|
data/config/locales/es.yml
CHANGED
|
@@ -110,6 +110,9 @@ es:
|
|
|
110
110
|
success: Debate creado correctamente.
|
|
111
111
|
debate:
|
|
112
112
|
participate: Participa
|
|
113
|
+
debates:
|
|
114
|
+
empty: Aún no hay ningún debate.
|
|
115
|
+
empty_filters: No hay ningún debate con este criterio.
|
|
113
116
|
edit:
|
|
114
117
|
back: Atrás
|
|
115
118
|
save: Guardar cambios
|
|
@@ -189,25 +192,25 @@ es:
|
|
|
189
192
|
space_followers:
|
|
190
193
|
email_intro: |-
|
|
191
194
|
Hola,
|
|
192
|
-
Se ha creado un nuevo debate "%{resource_title}" en el espacio participativo %{
|
|
193
|
-
email_outro: Has recibido esta notificación porque estás siguiendo
|
|
194
|
-
email_subject: Nuevo debate "%{resource_title}" en %{
|
|
195
|
-
notification_title:
|
|
195
|
+
Se ha creado un nuevo debate "%{resource_title}" en el espacio participativo %{participatory_space_title}, échale un vistazo y contribuye:
|
|
196
|
+
email_outro: Has recibido esta notificación porque estás siguiendo el espacio "%{participatory_space_title}". Puedes dejar de recibir notificaciones desde el enlace anterior.
|
|
197
|
+
email_subject: Nuevo debate "%{resource_title}" en %{participatory_space_title}
|
|
198
|
+
notification_title: Se ha creado el debate <a href="%{resource_path}">%{resource_title}</a> en <a href="%{participatory_space_url}">%{participatory_space_title}</a>.
|
|
196
199
|
user_followers:
|
|
197
200
|
email_intro: |-
|
|
198
201
|
Hola,
|
|
199
202
|
%{author_name} %{author_nickname}, a quien estás siguiendo, ha creado un nuevo debate "%{resource_title}". Échale un vistazo y contribuye:
|
|
200
|
-
email_outro: Has recibido esta notificación porque estás siguiendo a %{author_nickname}. Puedes dejar de recibir notificaciones siguiendo el enlace anterior.
|
|
203
|
+
email_outro: Has recibido esta notificación porque estás siguiendo a "%{author_nickname}". Puedes dejar de recibir notificaciones siguiendo el enlace anterior.
|
|
201
204
|
email_subject: Nuevo debate "%{resource_title}" de %{author_nickname}
|
|
202
205
|
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> creó el debate <a href="%{resource_path}">%{resource_title}</a>.
|
|
203
206
|
creation_disabled:
|
|
204
207
|
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:'
|
|
205
|
-
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.
|
|
208
|
+
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.
|
|
206
209
|
email_subject: Se ha desactivado la creación de debates en %{participatory_space_title}
|
|
207
210
|
notification_title: La creación de debates ahora está deshabilitada en el espacio <a href="%{participatory_space_url}">%{participatory_space_title}</a>
|
|
208
211
|
creation_enabled:
|
|
209
212
|
email_intro: '¡Ya puedes crear nuevos debates en %{participatory_space_title}! Comienza a participar en esta página:'
|
|
210
|
-
email_outro: Has recibido esta notificación porque estás siguiendo %{participatory_space_title}. Puedes dejar de recibir notificaciones siguiendo el enlace anterior.
|
|
213
|
+
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.
|
|
211
214
|
email_subject: Los debates ya estan disponibles en %{participatory_space_title}
|
|
212
215
|
notification_title: Ya puedes empezar <a href="%{resource_path}">nuevos debates</a> en <a href="%{participatory_space_url}">%{participatory_space_title}</a>
|
|
213
216
|
debate_closed:
|
data/config/locales/eu.yml
CHANGED
|
@@ -11,10 +11,10 @@ eu:
|
|
|
11
11
|
end_time: Bukaera-data
|
|
12
12
|
information_updates: Informazioaren eguneratzeak
|
|
13
13
|
instructions: Parte hartzeko argibideak
|
|
14
|
-
scope_id:
|
|
14
|
+
scope_id: Esparrua
|
|
15
15
|
start_time: Hasi da
|
|
16
16
|
title: Izenburua
|
|
17
|
-
user_group_id: Sortu eztabaida
|
|
17
|
+
user_group_id: Sortu eztabaida honela
|
|
18
18
|
models:
|
|
19
19
|
decidim/debates/close_debate_event: Eztabaida itxita
|
|
20
20
|
decidim/debates/create_debate_event: Eztabaida
|
|
@@ -38,7 +38,7 @@ eu:
|
|
|
38
38
|
announcement: Iragarpena
|
|
39
39
|
comments_enabled: Iruzkinak gaituta
|
|
40
40
|
comments_max_length: Iruzkinen gehieneko luzera (utzi 0 lehenetsitako konfigurazioari eutsi nahi badiozu)
|
|
41
|
-
scope_id:
|
|
41
|
+
scope_id: Esparrua
|
|
42
42
|
scopes_enabled: Esparruak gaituta
|
|
43
43
|
step:
|
|
44
44
|
announcement: Iragarpena
|
|
@@ -73,28 +73,28 @@ eu:
|
|
|
73
73
|
finite: Amaiera (hasiera- eta amaiera-ordua)
|
|
74
74
|
open: Zabalik (ez dago hasiera- edo amaiera-ordurik)
|
|
75
75
|
index:
|
|
76
|
-
title:
|
|
76
|
+
title: Eztabaidak
|
|
77
77
|
new:
|
|
78
78
|
create: Sortu eztabaida
|
|
79
|
-
title:
|
|
79
|
+
title: Beste eztabaida bat
|
|
80
80
|
update:
|
|
81
|
-
invalid: Arazo bat
|
|
81
|
+
invalid: Arazo bat egon da eztabaida hau eguneratzean.
|
|
82
82
|
success: Debate arrakastaz eguneratu da.
|
|
83
83
|
exports:
|
|
84
84
|
comments: Iruzkinak
|
|
85
85
|
models:
|
|
86
86
|
debate:
|
|
87
|
-
name:
|
|
87
|
+
name: Eztabaida
|
|
88
88
|
admin_log:
|
|
89
89
|
debate:
|
|
90
90
|
close: "%{user_name} erabiltzaileak %{resource_name} eztabaida sortu du %{space_name} esparruan"
|
|
91
|
-
create: "%{user_name} %{resource_name} eztabaida sortu
|
|
92
|
-
update: "%{user_name} %{resource_name} eztabaida eguneratu
|
|
91
|
+
create: "%{user_name} k %{resource_name} eztabaida sortu du %{space_name} espazioan"
|
|
92
|
+
update: "%{user_name} k %{resource_name} eztabaida eguneratu du %{space_name} espazioan"
|
|
93
93
|
debate_m:
|
|
94
94
|
commented_time_ago: Iruzkina eginda orain dela %{time}
|
|
95
95
|
debates:
|
|
96
96
|
close:
|
|
97
|
-
invalid: Arazo bat
|
|
97
|
+
invalid: Arazo bat egon da eztabaida ixtean.
|
|
98
98
|
success: Eztabaida zuzen itxi da.
|
|
99
99
|
close_debate_modal:
|
|
100
100
|
close: Itxi
|
|
@@ -106,10 +106,13 @@ eu:
|
|
|
106
106
|
one: "%{count} eztabaida"
|
|
107
107
|
other: "%{count} eztabaidak"
|
|
108
108
|
create:
|
|
109
|
-
invalid: Arazo bat
|
|
109
|
+
invalid: Arazo bat egon da eztabaida sortzean.
|
|
110
110
|
success: Debate sortu da behar bezala.
|
|
111
111
|
debate:
|
|
112
112
|
participate: Parte hartu
|
|
113
|
+
debates:
|
|
114
|
+
empty: Oraindik ez dago eztabaidarik.
|
|
115
|
+
empty_filters: Ez dago irizpide hau duen eztabaidarik.
|
|
113
116
|
edit:
|
|
114
117
|
back: Atzera
|
|
115
118
|
save: Gorde aldaketak
|
|
@@ -124,7 +127,7 @@ eu:
|
|
|
124
127
|
official: Ofiziala
|
|
125
128
|
origin: Origin
|
|
126
129
|
participants: Parte-hartzaileak
|
|
127
|
-
scope:
|
|
130
|
+
scope: Esparrua
|
|
128
131
|
search: Bilatu
|
|
129
132
|
state: Egoera
|
|
130
133
|
state_values:
|
|
@@ -139,11 +142,11 @@ eu:
|
|
|
139
142
|
form:
|
|
140
143
|
select_a_category: Hautatu kategoria bat
|
|
141
144
|
index:
|
|
142
|
-
new_debate:
|
|
145
|
+
new_debate: Beste eztabaida bat
|
|
143
146
|
new:
|
|
144
|
-
back:
|
|
147
|
+
back: Atzera
|
|
145
148
|
create: Sortu
|
|
146
|
-
title:
|
|
149
|
+
title: Beste eztabaida bat
|
|
147
150
|
orders:
|
|
148
151
|
commented: Iruzkin gehien dituztenak
|
|
149
152
|
label: Ordenatu eztabaidak honen arabera
|
|
@@ -164,7 +167,7 @@ eu:
|
|
|
164
167
|
open: Eztabaida irekita
|
|
165
168
|
participants_count: Parte-hartzaileak
|
|
166
169
|
update:
|
|
167
|
-
invalid: Arazo bat
|
|
170
|
+
invalid: Arazo bat egon da eztabaida eguneratzean.
|
|
168
171
|
success: Eztabaida zuzen eguneratu da.
|
|
169
172
|
versions:
|
|
170
173
|
debates:
|
|
@@ -175,7 +178,7 @@ eu:
|
|
|
175
178
|
back_to_resource: Itzuli eztabaidara
|
|
176
179
|
last_activity:
|
|
177
180
|
debate_updated_at_html: "<span>eztabaida ordu honetan %{link}</span> eguneratuta"
|
|
178
|
-
new_debate_at_html: "<span> %{link}</span>
|
|
181
|
+
new_debate_at_html: "beste eztabaida bat hemen: <span> %{link}</span>"
|
|
179
182
|
models:
|
|
180
183
|
debate:
|
|
181
184
|
fields:
|
|
@@ -188,32 +191,32 @@ eu:
|
|
|
188
191
|
create_debate_event:
|
|
189
192
|
space_followers:
|
|
190
193
|
email_intro: |-
|
|
191
|
-
Kaixo
|
|
192
|
-
"%{
|
|
193
|
-
email_outro: Jakinarazpen
|
|
194
|
-
email_subject:
|
|
195
|
-
notification_title: <a href="%{resource_path}">%{resource_title}</a> eztabaida sortu
|
|
194
|
+
Kaixo:
|
|
195
|
+
"%{resources ce_title}" eztabaida berria sortu da %{participatory_space_title}} partaidetza-espazioan, egiaztatu eta egin ekarpenak:
|
|
196
|
+
email_outro: Jakinarazpen hau jaso duzu %{participatory_space_title} parte hartzeko espazioa jarraitzen ari zarelako. Aurreko estekan jakinarazpenak jasotzeari utzi ahal diozu.
|
|
197
|
+
email_subject: '"%{resource_title}" eztabaida berria hemen %{participatory_space_title}'
|
|
198
|
+
notification_title: '<a href="%{resource_path}">%{resource_title}</a> eztabaida sortu da hemen: <a href="%{participatory_space_url}">%{participatory_space_title}</a>.'
|
|
196
199
|
user_followers:
|
|
197
200
|
email_intro: |-
|
|
198
201
|
Kaixo,
|
|
199
|
-
%{author_name} %{author_nickname}, jarraitzen ari zarenak, "%{resource_title}" eztabaida berri bat sortu du. Begiratu eta lagundu:
|
|
200
|
-
email_outro: Jakinarazpena jaso duzu %{author_nickname}
|
|
201
|
-
email_subject: '"%{resource_title}" eztabaida
|
|
202
|
-
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a>
|
|
202
|
+
%{author_name} %{author_nickname} k, jarraitzen ari zarenak, "%{resource_title}" eztabaida berri bat sortu du. Begiratu eta lagundu:
|
|
203
|
+
email_outro: Jakinarazpena jaso duzu %{author_nickname} jarraitzen ari zarelako. Aurreko estekan jakinarazpenak jasotzeari utzi ahal diozu.
|
|
204
|
+
email_subject: '%{author_nickname} k "%{resource_title}" beste eztabaida bat sortu du'
|
|
205
|
+
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> k sortu du <a href="%{resource_path}">%{resource_title}</a> eztabaida.
|
|
203
206
|
creation_disabled:
|
|
204
|
-
email_intro: '
|
|
205
|
-
email_outro: Jakinarazpena jaso duzu %{participatory_space_title}
|
|
207
|
+
email_intro: 'Eztabaida sortzea dagoeneko ez dago aktibo %{participatory_space_title}. Oraindik irekita dauden eztabaidetan parte har dezakezu orri honetatik:'
|
|
208
|
+
email_outro: Jakinarazpena jaso duzu %{participatory_space_title} jarraitzen ari zarelako. Aurreko estekan jakinarazpenak jasotzeari utzi ahal diozu.
|
|
206
209
|
email_subject: Debate sortzea desgaituta %{participatory_space_title}
|
|
207
|
-
notification_title:
|
|
210
|
+
notification_title: Eztabaiden sorrera orain desaktibatuta dago <a href="%{participatory_space_url}">%{participatory_space_title}</a>
|
|
208
211
|
creation_enabled:
|
|
209
|
-
email_intro: '
|
|
210
|
-
email_outro: Jakinarazpena jaso duzu %{participatory_space_title}
|
|
211
|
-
email_subject:
|
|
212
|
+
email_intro: 'Oraineztabaida berriak hasi ditzakezu hemen: %{participatory_space_title}! Hasi parte-hartzea orri honetan:'
|
|
213
|
+
email_outro: Jakinarazpena jaso duzu %{participatory_space_title} jarraitzen ari zarelako. Aurreko estekan jakinarazpenak jasotzeari utzi ahal diozu.
|
|
214
|
+
email_subject: 'Eztabaidak orain eskuragarri hemen: %{participatory_space_title}'
|
|
212
215
|
notification_title: Orain <a href="%{resource_path}">eztabaida berriak hasi ditzakezu</a> <a href="%{participatory_space_url}">%{participatory_space_title}</a>
|
|
213
216
|
debate_closed:
|
|
214
217
|
affected_user:
|
|
215
218
|
email_intro: '"%{resource_title}" eztabaida itxi egin da. Ondorioak bere orrialdean irakur ditzakezu:'
|
|
216
|
-
email_outro: Jakinarazpen hau jaso duzu "%{resource_title}" eztabaida jarraitzen ari zarelako. Aurreko loturan utzi ahal diozu jarraitzeari
|
|
219
|
+
email_outro: Jakinarazpen hau jaso duzu "%{resource_title}" eztabaida jarraitzen ari zarelako. Aurreko loturan utzi ahal diozu jarraitzeari.
|
|
217
220
|
email_subject: '"%{resource_title}" eztabaida itxi egin da'
|
|
218
221
|
notification_title: <a href="%{resource_path}">%{resource_title}</a> eztabaida itxi egin da.
|
|
219
222
|
follower:
|
|
@@ -226,17 +229,17 @@ eu:
|
|
|
226
229
|
commented_debates:
|
|
227
230
|
conditions:
|
|
228
231
|
- Aukeratu eztabaida irekia parte hartzeko
|
|
229
|
-
description:
|
|
230
|
-
description_another:
|
|
231
|
-
description_own: '%{score}
|
|
232
|
-
name:
|
|
232
|
+
description: Garaikur hau eztabaidetan modu aktiboan, zure iruzkinak utziz, parte hartzen duzunean ematen da.
|
|
233
|
+
description_another: Parte-hartzaile honek %{score} eztabaidatan hartu du parte.
|
|
234
|
+
description_own: '%{score} eztabaidatan hartu duzu parte.'
|
|
235
|
+
name: Eztabaidak
|
|
233
236
|
next_level_in: Parte hartu %{score} eztabaidagai gehiago hurrengo mailara iristeko!
|
|
234
237
|
unearned_another: Erabiltzaile honek eztabaida batean parte hartu du oraindik.
|
|
235
|
-
unearned_own: Oraindik
|
|
238
|
+
unearned_own: Oraindik ez duzu parte hartu eztabaida batean ere.
|
|
236
239
|
metrics:
|
|
237
240
|
debates:
|
|
238
241
|
description: Sortutako eztabaida kopurua
|
|
239
242
|
object: eztabaidak
|
|
240
|
-
title:
|
|
243
|
+
title: Eztabaidak
|
|
241
244
|
statistics:
|
|
242
245
|
debates_count: Eztabaidak
|