decidim-debates 0.32.0.rc2 → 0.32.0
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/commands/decidim/debates/admin/update_debate.rb +1 -1
- data/app/commands/decidim/debates/update_debate.rb +1 -1
- data/app/controllers/decidim/debates/admin/debates_controller.rb +1 -1
- data/app/forms/decidim/debates/admin/debate_form.rb +7 -3
- data/app/forms/decidim/debates/debate_form.rb +2 -2
- data/app/views/decidim/debates/admin/debates/_actions.html.erb +1 -1
- data/app/views/decidim/debates/admin/debates/_form.html.erb +7 -3
- data/app/views/decidim/debates/debates/_debate_actions.html.erb +8 -8
- data/app/views/decidim/debates/debates/_form.html.erb +1 -1
- data/config/locales/ar.yml +0 -8
- data/config/locales/bg.yml +0 -8
- data/config/locales/ca-IT.yml +7 -6
- data/config/locales/ca.yml +7 -6
- data/config/locales/cs.yml +1 -6
- data/config/locales/de.yml +0 -10
- data/config/locales/el.yml +0 -9
- data/config/locales/en.yml +7 -6
- data/config/locales/es-MX.yml +7 -6
- data/config/locales/es-PY.yml +7 -6
- data/config/locales/es.yml +7 -6
- data/config/locales/eu.yml +13 -12
- data/config/locales/fi-plain.yml +6 -5
- data/config/locales/fi.yml +6 -5
- data/config/locales/fr-CA.yml +4 -8
- data/config/locales/fr.yml +4 -8
- data/config/locales/gl.yml +0 -8
- data/config/locales/hu.yml +0 -9
- data/config/locales/id-ID.yml +0 -8
- data/config/locales/is-IS.yml +0 -3
- data/config/locales/it.yml +0 -9
- data/config/locales/ja.yml +5 -7
- data/config/locales/lb.yml +0 -11
- data/config/locales/lt.yml +0 -9
- data/config/locales/lv.yml +0 -7
- data/config/locales/nl.yml +0 -9
- data/config/locales/no.yml +0 -9
- data/config/locales/pl.yml +0 -8
- data/config/locales/pt-BR.yml +0 -10
- data/config/locales/pt.yml +0 -10
- data/config/locales/ro-RO.yml +0 -9
- data/config/locales/ru.yml +0 -3
- data/config/locales/sk.yml +1 -11
- data/config/locales/sv.yml +0 -10
- data/config/locales/tr-TR.yml +2 -10
- data/config/locales/uk.yml +0 -3
- data/config/locales/zh-CN.yml +0 -9
- data/config/locales/zh-TW.yml +0 -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: 95671c88984119f316a804be97bf63169fc3986433cf0278360e5a00a19363e2
|
|
4
|
+
data.tar.gz: c07eacf14458f35e16012a61885c491dc937a73d86e6498a590837cae9b173b7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 458604900cb690fffbb954bd0ce16dc3b85a780a8ccaa60a1a7245cbed3eb2ea5089d329989917a158ca2897c8e0877ea16a9cf6901d262684bfdbb84f923707
|
|
7
|
+
data.tar.gz: fd616613f4dfbefb709823066bbf9c9ace3bc15ab746ef2ab19fc6276cd0271178fd26e83300c8d2ca5bc698f8d54faef3ea3c3121b0f7b3ed3130089ec8eb21
|
|
@@ -23,7 +23,7 @@ module Decidim
|
|
|
23
23
|
attribute :comments_enabled, Boolean, default: true
|
|
24
24
|
attribute :attachment, AttachmentForm
|
|
25
25
|
|
|
26
|
-
attachments_attribute :
|
|
26
|
+
attachments_attribute :attachments
|
|
27
27
|
|
|
28
28
|
validates :title, :description, translatable_presence: true
|
|
29
29
|
validates :title, :description, translated_etiquette: true
|
|
@@ -42,7 +42,11 @@ module Decidim
|
|
|
42
42
|
self.title = presenter.title(all_locales: title.is_a?(Hash))
|
|
43
43
|
self.description = presenter.description(all_locales: description.is_a?(Hash))
|
|
44
44
|
self.comments_layout = model.comments_layout || "single_column"
|
|
45
|
-
self.
|
|
45
|
+
self.attachments = model.attachments
|
|
46
|
+
end
|
|
47
|
+
|
|
48
|
+
def comments_layout_locked?
|
|
49
|
+
debate&.comments_count&.positive?
|
|
46
50
|
end
|
|
47
51
|
|
|
48
52
|
def participatory_space_manifest
|
|
@@ -72,7 +76,7 @@ module Decidim
|
|
|
72
76
|
# an error, the attachment is lost, so we need a way to inform the user of
|
|
73
77
|
# this problem.
|
|
74
78
|
def notify_missing_attachment_if_errored
|
|
75
|
-
errors.add(:
|
|
79
|
+
errors.add(:add_attachments, :needs_to_be_reattached) if errors.any? && add_attachments.present?
|
|
76
80
|
end
|
|
77
81
|
end
|
|
78
82
|
end
|
|
@@ -13,7 +13,7 @@ module Decidim
|
|
|
13
13
|
attribute :description, String
|
|
14
14
|
attribute :attachment, AttachmentForm
|
|
15
15
|
|
|
16
|
-
attachments_attribute :
|
|
16
|
+
attachments_attribute :attachments
|
|
17
17
|
|
|
18
18
|
validates :title, :description, presence: true
|
|
19
19
|
validates :title, :description, etiquette: true
|
|
@@ -26,7 +26,7 @@ module Decidim
|
|
|
26
26
|
# user locale is taken as the text locale.
|
|
27
27
|
self.title = debate.title.values.first
|
|
28
28
|
self.description = debate.description.values.first
|
|
29
|
-
self.
|
|
29
|
+
self.attachments = debate.attachments
|
|
30
30
|
end
|
|
31
31
|
|
|
32
32
|
def participatory_space_manifest
|
|
@@ -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") %>
|
|
@@ -48,9 +48,13 @@
|
|
|
48
48
|
|
|
49
49
|
<div class="row column">
|
|
50
50
|
<%= label_tag :comments_layout, t(".comments_visualization") %>
|
|
51
|
-
|
|
51
|
+
<% if @form.comments_layout_locked? %>
|
|
52
|
+
<%= cell("decidim/announcement", t(".comments_layout_locked_warning"), callout_class: "warning") %>
|
|
53
|
+
<% else %>
|
|
54
|
+
<span class="help-text"><%= t(".comments_warning") %></span>
|
|
55
|
+
<% end %>
|
|
52
56
|
<div>
|
|
53
|
-
<%= form.collection_radio_buttons(:comments_layout, [[t(".single_column"), "single_column"], [t(".two_columns"), "two_columns"]], :last, :first) do |builder|
|
|
57
|
+
<%= form.collection_radio_buttons(:comments_layout, [[t(".single_column"), "single_column"], [t(".two_columns"), "two_columns"]], :last, :first, {}, { disabled: @form.comments_layout_locked? }) do |builder|
|
|
54
58
|
builder.label(class: "form__wrapper-checkbox-label") { builder.radio_button + builder.text }
|
|
55
59
|
end %>
|
|
56
60
|
</div>
|
|
@@ -58,7 +62,7 @@
|
|
|
58
62
|
|
|
59
63
|
<% if component_settings.attachments_allowed? %>
|
|
60
64
|
<div class="row column">
|
|
61
|
-
<%= form.attachment :
|
|
65
|
+
<%= form.attachment :attachments,
|
|
62
66
|
multiple: true,
|
|
63
67
|
label: t("decidim.debates.admin.debates.form.add_attachments"),
|
|
64
68
|
button_label: t("decidim.debates.admin.debates.form.add_attachments"),
|
|
@@ -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 %>
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
|
|
13
13
|
<% if component_settings.attachments_allowed? %>
|
|
14
14
|
<div class="row column">
|
|
15
|
-
<%= form.attachment :
|
|
15
|
+
<%= form.attachment :attachments,
|
|
16
16
|
multiple: true,
|
|
17
17
|
label: t("decidim.debates.admin.debates.form.add_attachments"),
|
|
18
18
|
button_label: t("decidim.debates.admin.debates.form.add_attachments"),
|
data/config/locales/ar.yml
CHANGED
|
@@ -103,14 +103,6 @@ ar:
|
|
|
103
103
|
title: عنوان
|
|
104
104
|
events:
|
|
105
105
|
debates:
|
|
106
|
-
create_debate_event:
|
|
107
|
-
user_followers:
|
|
108
|
-
email_intro: |-
|
|
109
|
-
مرحبًا ،
|
|
110
|
-
%{author_name} %{author_nickname}، الذي تتابعه ، أنشأ نقاشًا جديدًا "%{resource_title}". التحقق من ذلك والمساهمة:
|
|
111
|
-
email_outro: لقد تلقيت هذا الإشعار لأنك تتابع %{author_nickname}. يمكنك إيقاف تلقي الإخطارات باتباع الرابط السابق.
|
|
112
|
-
email_subject: نقاش جديد "%{resource_title}" بنسبة %{author_nickname}
|
|
113
|
-
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> أنشأ النقاش <a href="%{resource_path}">%{resource_title}</a>.
|
|
114
106
|
creation_disabled:
|
|
115
107
|
email_intro: 'إنشاء النقاش لم يعد نشطًا في %{participatory_space_title}. لا يزال بإمكانك المشاركة في المناقشات المفتوحة من هذه الصفحة:'
|
|
116
108
|
email_outro: لقد تلقيت هذا الإشعار لأنك تتابع %{participatory_space_title}. يمكنك إيقاف تلقي الإخطارات باتباع الرابط السابق.
|
data/config/locales/bg.yml
CHANGED
|
@@ -31,7 +31,6 @@ bg:
|
|
|
31
31
|
global:
|
|
32
32
|
announcement: Обявление
|
|
33
33
|
comments_enabled: Коментарите са активирани
|
|
34
|
-
comments_max_length: Максимална дължина на коментарите (Оставете 0 за стойност по подразбиране)
|
|
35
34
|
step:
|
|
36
35
|
announcement: Обявление
|
|
37
36
|
comments_blocked: Коментарите са блокирани
|
|
@@ -148,13 +147,6 @@ bg:
|
|
|
148
147
|
email_outro: Получихте това известие, защото следвате %{participatory_space_title} пространство за участие. Можете да спрете да получавате известия, като следвате предишната връзка.
|
|
149
148
|
email_subject: Нов дебат „%{resource_title}“ на %{participatory_space_title}
|
|
150
149
|
notification_title: Дебатът <a href="%{resource_path}">%{resource_title}</a> беше създаден на <a href="%{participatory_space_url}">%{participatory_space_title}</a>.
|
|
151
|
-
user_followers:
|
|
152
|
-
email_intro: |-
|
|
153
|
-
Здравейте,
|
|
154
|
-
участниът %{author_name} %{author_nickname}, когото следвате, създаде нов дебат „%{resource_title}“. Вижте го и допринесете:
|
|
155
|
-
email_outro: Получихте това известие, защото следвате %{author_nickname}. Можете да спрете да получавате известия, като последвате предходния линк.
|
|
156
|
-
email_subject: Нов дебат „%{resource_title}“ от %{author_nickname}
|
|
157
|
-
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> създаде дебата <a href="%{resource_path}">%{resource_title}</a>.
|
|
158
150
|
creation_disabled:
|
|
159
151
|
email_intro: 'Създаването на дебати вече не е активно в(ъв) %{participatory_space_title}. Все още можете да участвате в отворени дебати от следната страница:'
|
|
160
152
|
email_outro: Получавате това известие, защото следвате %{participatory_space_title}. Може да прекратите известията чрез предходния линк.
|
data/config/locales/ca-IT.yml
CHANGED
|
@@ -42,7 +42,7 @@ ca-IT:
|
|
|
42
42
|
attachments_allowed: Permetre fitxers adjunts
|
|
43
43
|
clear_all: Netejar-ho tot
|
|
44
44
|
comments_enabled: Comentaris habilitats
|
|
45
|
-
comments_max_length:
|
|
45
|
+
comments_max_length: Caràcters màxims per comentari (deixar a 0 el valor predeterminat)
|
|
46
46
|
define_taxonomy_filters: Si us plau, defineix algunes filtres per aquest espai de participació abans de fer servir aquesta configuració.
|
|
47
47
|
no_taxonomy_filters_found: No s'han trobat filtres de taxonomia.
|
|
48
48
|
taxonomy_filters: Seleccionar filtres pel component
|
|
@@ -77,12 +77,13 @@ ca-IT:
|
|
|
77
77
|
form:
|
|
78
78
|
add_attachments: Afegir fitxer(s) adjunt(s)
|
|
79
79
|
attachment_legend: Afegir un document o una imatge
|
|
80
|
+
comments_layout_locked_warning: No es pot canviar el disseny dels comentaris perquè ja s'han publicat comentaris.
|
|
80
81
|
comments_visualization: Visualització dels comentaris
|
|
81
82
|
comments_warning: Una vegada que es publica el primer comentari, l'opció de visualització seleccionada no es pot canviar.
|
|
82
83
|
debate_type: Tipus de debat
|
|
83
84
|
edit_attachments: Edita els fitxers adjunts
|
|
84
85
|
errors:
|
|
85
|
-
comments_layout_locked: No
|
|
86
|
+
comments_layout_locked: No es pot canviar el disseny dels comentaris perquè ja s'han publicat comentaris.
|
|
86
87
|
finite: Finit (amb moments d'inici i de fi)
|
|
87
88
|
open: Obert (sense moments d'inici ni de fi)
|
|
88
89
|
single_column: 'Columna única: Els comentaris es mostren per ordre cronològic i poden rebre respostes.'
|
|
@@ -205,10 +206,10 @@ ca-IT:
|
|
|
205
206
|
user_followers:
|
|
206
207
|
email_intro: |-
|
|
207
208
|
Hola,
|
|
208
|
-
%{author_name}
|
|
209
|
-
email_outro: Has rebut aquesta notificació perquè estàs seguint
|
|
210
|
-
email_subject: Nou debat "%{resource_title}"
|
|
211
|
-
notification_title: <a href="%{author_path}">%{author_name}
|
|
209
|
+
%{author_name}, a qui segueixes, ha creat un nou debat "%{resource_title}". Consulta i contribueix:
|
|
210
|
+
email_outro: Has rebut aquesta notificació perquè estàs seguint l'espai "%{author_name}". Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
|
211
|
+
email_subject: Nou debat "%{resource_title}" creat per %{author_name}
|
|
212
|
+
notification_title: <a href="%{author_path}">%{author_name}</a> ha creat el debat <a href="%{resource_path}">%{resource_title}</a>.
|
|
212
213
|
creation_disabled:
|
|
213
214
|
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:'
|
|
214
215
|
email_outro: Has rebut aquesta notificació perquè estàs seguint l'espai "%{participatory_space_title}". Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
data/config/locales/ca.yml
CHANGED
|
@@ -42,7 +42,7 @@ ca:
|
|
|
42
42
|
attachments_allowed: Permetre fitxers adjunts
|
|
43
43
|
clear_all: Netejar-ho tot
|
|
44
44
|
comments_enabled: Comentaris habilitats
|
|
45
|
-
comments_max_length:
|
|
45
|
+
comments_max_length: Caràcters màxims per comentari (deixar a 0 el valor predeterminat)
|
|
46
46
|
define_taxonomy_filters: Si us plau, defineix algunes filtres per aquest espai de participació abans de fer servir aquesta configuració.
|
|
47
47
|
no_taxonomy_filters_found: No s'han trobat filtres de taxonomia.
|
|
48
48
|
taxonomy_filters: Seleccionar filtres pel component
|
|
@@ -77,12 +77,13 @@ ca:
|
|
|
77
77
|
form:
|
|
78
78
|
add_attachments: Afegir fitxer(s) adjunt(s)
|
|
79
79
|
attachment_legend: Afegir un document o una imatge
|
|
80
|
+
comments_layout_locked_warning: No es pot canviar el disseny dels comentaris perquè ja s'han publicat comentaris.
|
|
80
81
|
comments_visualization: Visualització dels comentaris
|
|
81
82
|
comments_warning: Una vegada que es publica el primer comentari, l'opció de visualització seleccionada no es pot canviar.
|
|
82
83
|
debate_type: Tipus de debat
|
|
83
84
|
edit_attachments: Edita els fitxers adjunts
|
|
84
85
|
errors:
|
|
85
|
-
comments_layout_locked: No
|
|
86
|
+
comments_layout_locked: No es pot canviar el disseny dels comentaris perquè ja s'han publicat comentaris.
|
|
86
87
|
finite: Finit (amb moments d'inici i de fi)
|
|
87
88
|
open: Obert (sense moments d'inici ni de fi)
|
|
88
89
|
single_column: 'Columna única: Els comentaris es mostren per ordre cronològic i poden rebre respostes.'
|
|
@@ -205,10 +206,10 @@ ca:
|
|
|
205
206
|
user_followers:
|
|
206
207
|
email_intro: |-
|
|
207
208
|
Hola,
|
|
208
|
-
%{author_name}
|
|
209
|
-
email_outro: Has rebut aquesta notificació perquè estàs seguint
|
|
210
|
-
email_subject: Nou debat "%{resource_title}"
|
|
211
|
-
notification_title: <a href="%{author_path}">%{author_name}
|
|
209
|
+
%{author_name}, a qui segueixes, ha creat un nou debat "%{resource_title}". Consulta i contribueix:
|
|
210
|
+
email_outro: Has rebut aquesta notificació perquè estàs seguint l'espai "%{author_name}". Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
|
211
|
+
email_subject: Nou debat "%{resource_title}" creat per %{author_name}
|
|
212
|
+
notification_title: <a href="%{author_path}">%{author_name}</a> ha creat el debat <a href="%{resource_path}">%{resource_title}</a>.
|
|
212
213
|
creation_disabled:
|
|
213
214
|
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:'
|
|
214
215
|
email_outro: Has rebut aquesta notificació perquè estàs seguint l'espai "%{participatory_space_title}". Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
data/config/locales/cs.yml
CHANGED
|
@@ -43,7 +43,7 @@ cs:
|
|
|
43
43
|
attachments_allowed: Povolit přílohy
|
|
44
44
|
clear_all: Vymazat vše
|
|
45
45
|
comments_enabled: Komentáře povoleny
|
|
46
|
-
comments_max_length: Maximální
|
|
46
|
+
comments_max_length: Maximální počet znaků na komentář (ponechte 0 pro výchozí hodnotu)
|
|
47
47
|
define_taxonomy_filters: Před použitím tohoto nastavení prosím definujte některé filtry pro tento participační prostor.
|
|
48
48
|
no_taxonomy_filters_found: Nebyly nalezeny žádné filtry taxonomie.
|
|
49
49
|
taxonomy_filters: Vyberte filtry pro komponentu
|
|
@@ -82,8 +82,6 @@ cs:
|
|
|
82
82
|
comments_warning: Jakmile je vložen první komentář, zvolenou možnost zobrazení nelze změnit.
|
|
83
83
|
debate_type: Typ debaty
|
|
84
84
|
edit_attachments: Upravit přílohy
|
|
85
|
-
errors:
|
|
86
|
-
comments_layout_locked: Po odeslání komentářů nelze změnit rozložení komentáře.
|
|
87
85
|
finite: Konečný (s počátečním a koncovým obdobím)
|
|
88
86
|
open: Otevřený (žádné počáteční nebo koncové období)
|
|
89
87
|
single_column: 'Jeden sloupec: Komentáře jsou zobrazeny chronologicky a mohou mít odpovědi.'
|
|
@@ -209,9 +207,6 @@ cs:
|
|
|
209
207
|
email_intro: |-
|
|
210
208
|
Ahoj,
|
|
211
209
|
%{author_name} %{author_nickname}, kterého sledujete, vytvořil novou debatu "%{resource_title}". Omrkněte ji a přispějte:
|
|
212
|
-
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í.
|
|
213
|
-
email_subject: Nová debata "%{resource_title}" od %{author_nickname}
|
|
214
|
-
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> vytvořil <a href="%{resource_path}">%{resource_title}</a> debatu.
|
|
215
210
|
creation_disabled:
|
|
216
211
|
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:'
|
|
217
212
|
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í.
|
data/config/locales/de.yml
CHANGED
|
@@ -41,7 +41,6 @@ de:
|
|
|
41
41
|
attachments_allowed: Anhänge zulassen
|
|
42
42
|
clear_all: Alles löschen
|
|
43
43
|
comments_enabled: Kommentare aktiviert
|
|
44
|
-
comments_max_length: Maximale Länge der Kommentare (0 für Standardwert)
|
|
45
44
|
define_taxonomy_filters: Bitte definieren Sie einige Filter für diesen partizipativen Bereich, bevor Sie diese Einstellung verwenden.
|
|
46
45
|
no_taxonomy_filters_found: Keine Klassifizierungsfilter gefunden.
|
|
47
46
|
taxonomy_filters: Filter für die Komponente auswählen
|
|
@@ -80,8 +79,6 @@ de:
|
|
|
80
79
|
comments_warning: Sobald der erste Kommentar veröffentlicht wurde, kann die gewählte Anzeigeoption nicht geändert werden.
|
|
81
80
|
debate_type: Debatten-Typ
|
|
82
81
|
edit_attachments: Anhänge bearbeiten
|
|
83
|
-
errors:
|
|
84
|
-
comments_layout_locked: Sie können das Kommentaransicht nicht ändern, sobald Kommentare veröffentlicht wurden.
|
|
85
82
|
finite: Zeitlich begrenzt (mit Start- und Endzeit)
|
|
86
83
|
open: Offen (keine Start- und Endzeit)
|
|
87
84
|
single_column: 'Einzelne Spalte: Kommentare werden in chronologischer Reihenfolge angezeigt und können beantwortet werden.'
|
|
@@ -200,13 +197,6 @@ de:
|
|
|
200
197
|
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
198
|
email_subject: Neue Debatte "%{resource_title}" in %{participatory_space_title}
|
|
202
199
|
notification_title: Die Debatte <a href="%{resource_path}">%{resource_title}</a> wurde auf <a href="%{participatory_space_url}">%{participatory_space_title}</a> erstellt.
|
|
203
|
-
user_followers:
|
|
204
|
-
email_intro: |-
|
|
205
|
-
Hallo,
|
|
206
|
-
%{author_name} %{author_nickname}, dem Sie folgen, hat eine neue Debatte "%{resource_title}" erstellt. Sehen Sie es sich an und reden Sie mit:
|
|
207
|
-
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.
|
|
208
|
-
email_subject: Neue Debatte "%{resource_title}" von %{author_nickname}
|
|
209
|
-
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> hat die Debatte <a href="%{resource_path}">%{resource_title}</a> erstellt.
|
|
210
200
|
creation_disabled:
|
|
211
201
|
email_intro: 'Die Erstellung von Debatten ist in %{participatory_space_title} nicht mehr aktiviert. Sie können weiterhin an offenen Debatten teilnehmen:'
|
|
212
202
|
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.
|
data/config/locales/el.yml
CHANGED
|
@@ -31,7 +31,6 @@ el:
|
|
|
31
31
|
global:
|
|
32
32
|
announcement: Ανακοίνωση
|
|
33
33
|
comments_enabled: Τα σχόλια ενεργοποιήθηκαν
|
|
34
|
-
comments_max_length: Μέγιστο μέγεθος σχολίων (Αφήστε το 0 για την προκαθορισμένη τιμή)
|
|
35
34
|
step:
|
|
36
35
|
announcement: Ανακοίνωση
|
|
37
36
|
comments_blocked: Τα σχόλια αποκλείστηκαν
|
|
@@ -133,14 +132,6 @@ el:
|
|
|
133
132
|
title: Τίτλος
|
|
134
133
|
events:
|
|
135
134
|
debates:
|
|
136
|
-
create_debate_event:
|
|
137
|
-
user_followers:
|
|
138
|
-
email_intro: |-
|
|
139
|
-
Γεια σας,
|
|
140
|
-
Ο συντάκτης %{author_name} %{author_nickname}, τον οποίο ακολουθείτε, δημιούργησε μια νέα συζήτηση «%{resource_title}». Δείτε την και συνεισφέρετε:
|
|
141
|
-
email_outro: Λάβατε αυτήν την ειδοποίηση επειδή ακολουθείτε τον συντάκτη %{author_nickname}. Μπορείτε να διακόψετε τη λήψη ειδοποιήσεων ακολουθώντας τον προηγούμενο σύνδεσμο.
|
|
142
|
-
email_subject: Νέα συζήτηση «%{resource_title}» από τον συντάκτη %{author_nickname}
|
|
143
|
-
notification_title: Ο συντάκτης <a href="%{author_path}">%{author_name} %{author_nickname}</a> δημιούργησε τη συζήτηση <a href="%{resource_path}">%{resource_title}</a>.
|
|
144
135
|
creation_disabled:
|
|
145
136
|
email_intro: 'Η δημιουργία συζήτησης δεν είναι πλέον ενεργή στον χώρο συμμετοχής %{participatory_space_title}. Μπορείτε ακόμα να συμμετέχετε σε ανοιχτές συζητήσεις από αυτήν τη σελίδα:'
|
|
146
137
|
email_outro: Λάβατε αυτήν την ειδοποίηση επειδή ακολουθείτε τον χώρο συμμετοχής %{participatory_space_title}. Μπορείτε να διακόψετε τη λήψη ειδοποιήσεων ακολουθώντας τον προηγούμενο σύνδεσμο.
|
data/config/locales/en.yml
CHANGED
|
@@ -42,7 +42,7 @@ en:
|
|
|
42
42
|
attachments_allowed: Allow attachments
|
|
43
43
|
clear_all: Clear all
|
|
44
44
|
comments_enabled: Comments enabled
|
|
45
|
-
comments_max_length:
|
|
45
|
+
comments_max_length: Max characters per comment (Leave 0 for default value)
|
|
46
46
|
define_taxonomy_filters: Please define some filters for this participatory space before using this setting.
|
|
47
47
|
no_taxonomy_filters_found: No taxonomy filters found.
|
|
48
48
|
taxonomy_filters: Select filters for the component
|
|
@@ -77,12 +77,13 @@ en:
|
|
|
77
77
|
form:
|
|
78
78
|
add_attachments: Add attachments
|
|
79
79
|
attachment_legend: Add a document or an image
|
|
80
|
+
comments_layout_locked_warning: The comment layout cannot be changed because comments have already been posted.
|
|
80
81
|
comments_visualization: Comments visualization
|
|
81
82
|
comments_warning: Once the first comment is posted, the selected display option cannot be changed.
|
|
82
83
|
debate_type: Debate type
|
|
83
84
|
edit_attachments: Edit attachments
|
|
84
85
|
errors:
|
|
85
|
-
comments_layout_locked:
|
|
86
|
+
comments_layout_locked: The comment layout cannot be changed because comments have already been posted.
|
|
86
87
|
finite: Finite (With start and end times)
|
|
87
88
|
open: Open (No start or end times)
|
|
88
89
|
single_column: 'Single column: Comments are displayed in chronological order and can have replies.'
|
|
@@ -205,10 +206,10 @@ en:
|
|
|
205
206
|
user_followers:
|
|
206
207
|
email_intro: |-
|
|
207
208
|
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}
|
|
209
|
+
%{author_name}, who you are following, has created a new debate "%{resource_title}". Check it out and contribute:
|
|
210
|
+
email_outro: You have received this notification because you are following %{author_name}. You can stop receiving notifications following the previous link.
|
|
211
|
+
email_subject: New debate "%{resource_title}" by %{author_name}
|
|
212
|
+
notification_title: <a href="%{author_path}">%{author_name}</a> created the <a href="%{resource_path}">%{resource_title}</a> debate.
|
|
212
213
|
creation_disabled:
|
|
213
214
|
email_intro: 'Debate creation is no longer active in %{participatory_space_title}. You can still participate in open debates from this page:'
|
|
214
215
|
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
|
@@ -42,7 +42,7 @@ es-MX:
|
|
|
42
42
|
attachments_allowed: Permitir archivos adjuntos
|
|
43
43
|
clear_all: Limpiar todo
|
|
44
44
|
comments_enabled: Comentarios habilitados
|
|
45
|
-
comments_max_length:
|
|
45
|
+
comments_max_length: Caracteres máximos por comentario (dejar 0 para el valor predeterminado)
|
|
46
46
|
define_taxonomy_filters: Por favor, define algunos filtros para este espacio de participación antes de utilizar esta configuración.
|
|
47
47
|
no_taxonomy_filters_found: No se han encontrado filtros de taxonomía.
|
|
48
48
|
taxonomy_filters: Seleccionar filtros para el componente
|
|
@@ -77,12 +77,13 @@ es-MX:
|
|
|
77
77
|
form:
|
|
78
78
|
add_attachments: Agregar archivo(s) adjunto(s)
|
|
79
79
|
attachment_legend: Añadir un documento o una imagen
|
|
80
|
+
comments_layout_locked_warning: No se puede cambiar el formato de los comentarios porque ya se han publicado algunos.
|
|
80
81
|
comments_visualization: Visualización de los comentarios
|
|
81
82
|
comments_warning: Una vez que se publique el primer comentario, la opción de visualización seleccionada no se puede cambiar.
|
|
82
83
|
debate_type: Tipo de debate
|
|
83
84
|
edit_attachments: Editar los archivos adjuntos
|
|
84
85
|
errors:
|
|
85
|
-
comments_layout_locked: No
|
|
86
|
+
comments_layout_locked: No se puede cambiar el formato de los comentarios porque ya se han publicado algunos.
|
|
86
87
|
finite: Finito (con hora de inicio y final)
|
|
87
88
|
open: Abierto (no hay hora de inicio o final)
|
|
88
89
|
single_column: 'Columna única: Los comentarios se muestran en orden cronológico y pueden recibir respuestas.'
|
|
@@ -205,10 +206,10 @@ es-MX:
|
|
|
205
206
|
user_followers:
|
|
206
207
|
email_intro: |-
|
|
207
208
|
Hola,
|
|
208
|
-
%{author_name}
|
|
209
|
-
email_outro: Has recibido esta notificación porque estás siguiendo
|
|
210
|
-
email_subject: Nuevo debate "%{resource_title}"
|
|
211
|
-
notification_title: <a href="%{author_path}">%{author_name}
|
|
209
|
+
%{author_name}, a quien estás siguiendo, ha creado un nuevo debate "%{resource_title}". Échale un vistazo y contribuye:
|
|
210
|
+
email_outro: Has recibido esta notificación porque estás siguiendo la iniciativa "%{author_name}". Puedes dejar de recibir notificaciones siguiendo el enlace anterior.
|
|
211
|
+
email_subject: Nuevo debate "%{resource_title}" creado por %{author_name}
|
|
212
|
+
notification_title: <a href="%{author_path}">%{author_name}</a> creó el debate <a href="%{resource_path}">%{resource_title}</a>.
|
|
212
213
|
creation_disabled:
|
|
213
214
|
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:'
|
|
214
215
|
email_outro: Has recibido esta notificación porque estás siguiendo %{participatory_space_title}. Puedes dejar de recibir notificaciones siguiendo el enlace anterior.
|
data/config/locales/es-PY.yml
CHANGED
|
@@ -42,7 +42,7 @@ es-PY:
|
|
|
42
42
|
attachments_allowed: Permitir archivos adjuntos
|
|
43
43
|
clear_all: Limpiar todo
|
|
44
44
|
comments_enabled: Comentarios habilitados
|
|
45
|
-
comments_max_length:
|
|
45
|
+
comments_max_length: Caracteres máximos por comentario (dejar 0 para el valor predeterminado)
|
|
46
46
|
define_taxonomy_filters: Por favor, define algunos filtros para este espacio de participación antes de utilizar esta configuración.
|
|
47
47
|
no_taxonomy_filters_found: No se han encontrado filtros de taxonomía.
|
|
48
48
|
taxonomy_filters: Seleccionar filtros para el componente
|
|
@@ -77,12 +77,13 @@ es-PY:
|
|
|
77
77
|
form:
|
|
78
78
|
add_attachments: Agregar archivo(s) adjunto(s)
|
|
79
79
|
attachment_legend: Añadir un documento o una imagen
|
|
80
|
+
comments_layout_locked_warning: No se puede cambiar el formato de los comentarios porque ya se han publicado algunos.
|
|
80
81
|
comments_visualization: Visualización de los comentarios
|
|
81
82
|
comments_warning: Una vez que se publique el primer comentario, la opción de visualización seleccionada no se puede cambiar.
|
|
82
83
|
debate_type: Tipo de debate
|
|
83
84
|
edit_attachments: Editar los archivos adjuntos
|
|
84
85
|
errors:
|
|
85
|
-
comments_layout_locked: No
|
|
86
|
+
comments_layout_locked: No se puede cambiar el formato de los comentarios porque ya se han publicado algunos.
|
|
86
87
|
finite: Finito (con hora de inicio y final)
|
|
87
88
|
open: Abierto (no hay hora de inicio o final)
|
|
88
89
|
single_column: 'Columna única: Los comentarios se muestran en orden cronológico y pueden recibir respuestas.'
|
|
@@ -201,10 +202,10 @@ es-PY:
|
|
|
201
202
|
user_followers:
|
|
202
203
|
email_intro: |-
|
|
203
204
|
Hola,
|
|
204
|
-
%{author_name}
|
|
205
|
-
email_outro: Has recibido esta notificación porque estás siguiendo
|
|
206
|
-
email_subject: Nuevo debate "%{resource_title}" por %{
|
|
207
|
-
notification_title: <a href="%{author_path}">%{author_name}
|
|
205
|
+
%{author_name}, a quien estás siguiendo, ha creado un nuevo debate "%{resource_title}". Échale un vistazo y contribuye:
|
|
206
|
+
email_outro: Has recibido esta notificación porque estás siguiendo la iniciativa "%{author_name}". Puedes dejar de recibir notificaciones siguiendo el enlace anterior.
|
|
207
|
+
email_subject: Nuevo debate "%{resource_title}" creado por %{author_name}
|
|
208
|
+
notification_title: <a href="%{author_path}">%{author_name}</a> creó el debate <a href="%{resource_path}">%{resource_title}</a>.
|
|
208
209
|
creation_disabled:
|
|
209
210
|
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:'
|
|
210
211
|
email_outro: Has recibido esta notificación porque estás siguiendo %{participatory_space_title}. Puedes dejar de recibir notificaciones siguiendo el enlace anterior.
|
data/config/locales/es.yml
CHANGED
|
@@ -42,7 +42,7 @@ es:
|
|
|
42
42
|
attachments_allowed: Permitir archivos adjuntos
|
|
43
43
|
clear_all: Limpiar todo
|
|
44
44
|
comments_enabled: Comentarios habilitados
|
|
45
|
-
comments_max_length:
|
|
45
|
+
comments_max_length: Caracteres máximos por comentario (dejar 0 para el valor predeterminado)
|
|
46
46
|
define_taxonomy_filters: Por favor, define algunos filtros para este espacio de participación antes de utilizar esta configuración.
|
|
47
47
|
no_taxonomy_filters_found: No se han encontrado filtros de taxonomía.
|
|
48
48
|
taxonomy_filters: Seleccionar filtros para el componente
|
|
@@ -77,12 +77,13 @@ es:
|
|
|
77
77
|
form:
|
|
78
78
|
add_attachments: Agregar archivo(s) adjunto(s)
|
|
79
79
|
attachment_legend: Añadir un documento o una imagen
|
|
80
|
+
comments_layout_locked_warning: No se puede cambiar el formato de los comentarios porque ya se han publicado algunos.
|
|
80
81
|
comments_visualization: Visualización de los comentarios
|
|
81
82
|
comments_warning: Una vez que se publique el primer comentario, la opción de visualización seleccionada no se puede cambiar.
|
|
82
83
|
debate_type: Tipo de debate
|
|
83
84
|
edit_attachments: Editar los archivos adjuntos
|
|
84
85
|
errors:
|
|
85
|
-
comments_layout_locked: No
|
|
86
|
+
comments_layout_locked: No se puede cambiar el formato de los comentarios porque ya se han publicado algunos.
|
|
86
87
|
finite: Finito (con hora de inicio y final)
|
|
87
88
|
open: Abierto (no hay hora de inicio o final)
|
|
88
89
|
single_column: 'Columna única: Los comentarios se muestran en orden cronológico y pueden recibir respuestas.'
|
|
@@ -205,10 +206,10 @@ es:
|
|
|
205
206
|
user_followers:
|
|
206
207
|
email_intro: |-
|
|
207
208
|
Hola,
|
|
208
|
-
%{author_name}
|
|
209
|
-
email_outro: Has recibido esta notificación porque estás siguiendo
|
|
210
|
-
email_subject: Nuevo debate "%{resource_title}"
|
|
211
|
-
notification_title: <a href="%{author_path}">%{author_name}
|
|
209
|
+
%{author_name}, a quien estás siguiendo, ha creado un nuevo debate "%{resource_title}". Échale un vistazo y contribuye:
|
|
210
|
+
email_outro: Has recibido esta notificación porque estás siguiendo la iniciativa "%{author_name}". Puedes dejar de recibir notificaciones siguiendo el enlace anterior.
|
|
211
|
+
email_subject: Nuevo debate "%{resource_title}" creado por %{author_name}
|
|
212
|
+
notification_title: <a href="%{author_path}">%{author_name}</a> creó el debate <a href="%{resource_path}">%{resource_title}</a>.
|
|
212
213
|
creation_disabled:
|
|
213
214
|
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:'
|
|
214
215
|
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.
|