decidim-debates 0.32.0.rc3 → 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/_form.html.erb +7 -3
- data/app/views/decidim/debates/debates/_form.html.erb +1 -1
- data/config/locales/bg.yml +0 -1
- data/config/locales/ca-IT.yml +3 -2
- data/config/locales/ca.yml +3 -2
- data/config/locales/cs.yml +5 -3
- data/config/locales/de.yml +0 -3
- data/config/locales/el.yml +0 -1
- data/config/locales/en.yml +3 -2
- data/config/locales/es-MX.yml +3 -2
- data/config/locales/es-PY.yml +3 -2
- data/config/locales/es.yml +3 -2
- data/config/locales/eu.yml +10 -2
- data/config/locales/fi-plain.yml +2 -1
- data/config/locales/fi.yml +2 -1
- data/config/locales/fr-CA.yml +5 -2
- data/config/locales/fr.yml +5 -2
- data/config/locales/hu.yml +0 -1
- data/config/locales/it.yml +0 -1
- data/config/locales/ja.yml +8 -3
- data/config/locales/lb.yml +0 -1
- data/config/locales/lt.yml +0 -1
- data/config/locales/nl.yml +0 -1
- data/config/locales/no.yml +0 -1
- data/config/locales/pl.yml +0 -1
- data/config/locales/pt-BR.yml +0 -3
- data/config/locales/pt.yml +0 -3
- data/config/locales/ro-RO.yml +0 -1
- data/config/locales/sk.yml +1 -4
- data/config/locales/sv.yml +0 -3
- data/config/locales/tr-TR.yml +2 -3
- data/config/locales/zh-CN.yml +0 -1
- data/config/locales/zh-TW.yml +0 -1
- data/decidim-debates.gemspec +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
|
|
@@ -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"),
|
|
@@ -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/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: Коментарите са блокирани
|
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.'
|
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.'
|
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.'
|
|
@@ -205,6 +203,10 @@ cs:
|
|
|
205
203
|
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.
|
|
206
204
|
email_subject: Nová debata "%{resource_title}" na %{participatory_space_title}
|
|
207
205
|
notification_title: Debata <a href="%{resource_path}">%{resource_title}</a> byla vytvořena na <a href="%{participatory_space_url}">%{participatory_space_title}</a>.
|
|
206
|
+
user_followers:
|
|
207
|
+
email_intro: |-
|
|
208
|
+
Ahoj,
|
|
209
|
+
%{author_name} %{author_nickname}, kterého sledujete, vytvořil novou debatu "%{resource_title}". Omrkněte ji a přispějte:
|
|
208
210
|
creation_disabled:
|
|
209
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:'
|
|
210
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.'
|
data/config/locales/el.yml
CHANGED
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.'
|
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.'
|
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.'
|
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.'
|
data/config/locales/eu.yml
CHANGED
|
@@ -42,7 +42,7 @@ eu:
|
|
|
42
42
|
attachments_allowed: Baimendu eranskinak
|
|
43
43
|
clear_all: Garbitu dena
|
|
44
44
|
comments_enabled: Iruzkinak gaituta
|
|
45
|
-
comments_max_length:
|
|
45
|
+
comments_max_length: Iruzkin bakoitzeko gehieneko karaktereak (utzi 0 aurrez zehaztutako baliorako)
|
|
46
46
|
define_taxonomy_filters: Mesedez, eszenatoki hau erabili aurretik, zehaztu partaidetza-espazioa honetarako iragazki batzuk.
|
|
47
47
|
no_taxonomy_filters_found: Ez da taxonomia-iragazkirik aurkitu.
|
|
48
48
|
taxonomy_filters: Hautatu iragazkiak osagairako
|
|
@@ -77,12 +77,13 @@ eu:
|
|
|
77
77
|
form:
|
|
78
78
|
add_attachments: Gehitu eranskinak
|
|
79
79
|
attachment_legend: Gehitu dokumentu bat edo irudi bat
|
|
80
|
+
comments_layout_locked_warning: Iruzkinen formatoa ezin da aldatu iruzkinak argitaratu direlako.
|
|
80
81
|
comments_visualization: Iruzkinak bistaratzea
|
|
81
82
|
comments_warning: Lehen iruzkina argitaratu ondoren, ezin da aldatu aukeratutako bistaratze-aukera.
|
|
82
83
|
debate_type: Eztabaida mota
|
|
83
84
|
edit_attachments: Eranskinak editatu
|
|
84
85
|
errors:
|
|
85
|
-
comments_layout_locked: Iruzkinen
|
|
86
|
+
comments_layout_locked: Iruzkinen formatoa ezin da aldatu iruzkin batzuk argitaratu direlako.
|
|
86
87
|
finite: Amaiera (hasiera- eta amaiera-ordua)
|
|
87
88
|
open: Zabalik (ez dago hasiera- edo amaiera-ordurik)
|
|
88
89
|
single_column: 'Zutabe bakarra: iruzkinak hurrenkera kronologikoan agertzen dira eta erantzunak izan ditzakete.'
|
|
@@ -202,6 +203,13 @@ eu:
|
|
|
202
203
|
email_outro: Jakinarazpen hau jaso duzu %{participatory_space_title} parte hartzeko espazioa jarraitzen ari zarelako. Aurreko estekan jakinarazpenak jasotzeari utzi ahal diozu.
|
|
203
204
|
email_subject: '"%{resource_title}" eztabaida berria hemen %{participatory_space_title}'
|
|
204
205
|
notification_title: '<a href="%{resource_path}">%{resource_title}</a> eztabaida sortu da hemen: <a href="%{participatory_space_url}">%{participatory_space_title}</a>.'
|
|
206
|
+
user_followers:
|
|
207
|
+
email_intro: |-
|
|
208
|
+
Kaixo,
|
|
209
|
+
Jarraitzen ari zaren %{author_name} %{author_nickname} parte-hartzaileak "%{resource_title}" beste eztabaida bat sortu du. Sartu eztabaidan eta zure ekarpena egin:
|
|
210
|
+
email_outro: Jakinarazpen hau jaso duzu %{author_name} jarraitzen ari zarelako. Aurreko estekan jarraitzeari utzi ahal diozu.
|
|
211
|
+
email_subject: '%{author_name} parte-hartzaileak beste eztabaida bat sortu du hemen: "%{resource_title}"'
|
|
212
|
+
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> parte-hartzaileak <a href="%{resource_path}">%{resource_title}</a> eztabaida sortu du.
|
|
205
213
|
creation_disabled:
|
|
206
214
|
email_intro: 'Eztabaida sortzea dagoeneko ez dago aktibo %{participatory_space_title}. Oraindik irekita dauden eztabaidetan parte har dezakezu orri honetatik:'
|
|
207
215
|
email_outro: Jakinarazpena jaso duzu %{participatory_space_title} jarraitzen ari zarelako. Aurreko estekan jakinarazpenak jasotzeari utzi ahal diozu.
|
data/config/locales/fi-plain.yml
CHANGED
|
@@ -77,12 +77,13 @@ fi-pl:
|
|
|
77
77
|
form:
|
|
78
78
|
add_attachments: Lisää liitteitä
|
|
79
79
|
attachment_legend: Lisää asiakirja tai kuva
|
|
80
|
+
comments_layout_locked_warning: Kommenttien asettelua ei voi muuttaa, koska kommentteja on jo lähetetty.
|
|
80
81
|
comments_visualization: Kommenttien visualisointi
|
|
81
82
|
comments_warning: Ensimmäisen kommentin jälkeen kommenttien esitysmuotoasetusta ei voi muuttaa.
|
|
82
83
|
debate_type: Keskustelun tyyppi
|
|
83
84
|
edit_attachments: Muokkaa liitteitä
|
|
84
85
|
errors:
|
|
85
|
-
comments_layout_locked:
|
|
86
|
+
comments_layout_locked: Kommenttien asettelua ei voi muuttaa, koska kommentteja on jo lähetetty.
|
|
86
87
|
finite: Määräaikainen (keskustelulla on alku- ja loppuaika)
|
|
87
88
|
open: Avoin (keskustelulla ei ole alku- ja loppuaikaa)
|
|
88
89
|
single_column: 'Yksi sarake: kommentit näytetään yhdessä sarakkeessa kronologisessa järjestyksessä ja niihin voi vastata.'
|
data/config/locales/fi.yml
CHANGED
|
@@ -77,12 +77,13 @@ fi:
|
|
|
77
77
|
form:
|
|
78
78
|
add_attachments: Lisää liitteitä
|
|
79
79
|
attachment_legend: Lisää asiakirja tai kuva
|
|
80
|
+
comments_layout_locked_warning: Kommenttien asettelua ei voi muuttaa, koska kommentteja on jo lähetetty.
|
|
80
81
|
comments_visualization: Kommenttien visualisointi
|
|
81
82
|
comments_warning: Ensimmäisen kommentin jälkeen kommenttien esitysmuotoasetusta ei voi muuttaa.
|
|
82
83
|
debate_type: Keskustelun tyyppi
|
|
83
84
|
edit_attachments: Muokkaa liitteitä
|
|
84
85
|
errors:
|
|
85
|
-
comments_layout_locked:
|
|
86
|
+
comments_layout_locked: Kommenttien asettelua ei voi muuttaa, koska kommentteja on jo lähetetty.
|
|
86
87
|
finite: Määräaikainen (keskustelulla on alku- ja loppuaika)
|
|
87
88
|
open: Avoin (keskustelulla ei ole alku- ja loppuaikaa)
|
|
88
89
|
single_column: 'Yksi sarake: kommentit näytetään yhdessä sarakkeessa kronologisessa järjestyksessä ja niihin voi vastata.'
|
data/config/locales/fr-CA.yml
CHANGED
|
@@ -40,7 +40,7 @@ fr-CA:
|
|
|
40
40
|
announcement: Annonce
|
|
41
41
|
attachments_allowed: Autoriser les pièces jointes
|
|
42
42
|
comments_enabled: Commentaires activés
|
|
43
|
-
comments_max_length:
|
|
43
|
+
comments_max_length: Nombre maximum de caractères par commentaire (Laisser 0 pour la valeur par défaut)
|
|
44
44
|
taxonomy_filters_add: Ajouter un filtre
|
|
45
45
|
step:
|
|
46
46
|
announcement: Annonce
|
|
@@ -70,11 +70,12 @@ fr-CA:
|
|
|
70
70
|
form:
|
|
71
71
|
add_attachments: Ajouter des pièces jointes
|
|
72
72
|
attachment_legend: Ajouter un document ou une image
|
|
73
|
+
comments_layout_locked_warning: La mise en page du commentaire ne peut pas être modifiée car les commentaires ont déjà été publiés.
|
|
73
74
|
comments_warning: Une fois le premier commentaire publié, l'option d'affichage sélectionnée ne peut pas être modifiée.
|
|
74
75
|
debate_type: Type de débat
|
|
75
76
|
edit_attachments: Modifier les pièces jointes
|
|
76
77
|
errors:
|
|
77
|
-
comments_layout_locked:
|
|
78
|
+
comments_layout_locked: La mise en page du commentaire ne peut pas être modifiée car les commentaires ont déjà été publiés.
|
|
78
79
|
finite: Limité (Avec les heures de début et de fin)
|
|
79
80
|
open: Ouvert (pas de date de début et de fin)
|
|
80
81
|
index:
|
|
@@ -189,6 +190,8 @@ fr-CA:
|
|
|
189
190
|
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.
|
|
190
191
|
email_subject: Nouveau débat "%{resource_title}" sur %{participatory_space_title}
|
|
191
192
|
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>.
|
|
193
|
+
user_followers:
|
|
194
|
+
email_subject: Nouveau débat "%{resource_title}" par %{author_name}
|
|
192
195
|
creation_disabled:
|
|
193
196
|
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 :'
|
|
194
197
|
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.
|
data/config/locales/fr.yml
CHANGED
|
@@ -40,7 +40,7 @@ fr:
|
|
|
40
40
|
announcement: Annonce
|
|
41
41
|
attachments_allowed: Autoriser les pièces jointes
|
|
42
42
|
comments_enabled: Commentaires activés
|
|
43
|
-
comments_max_length:
|
|
43
|
+
comments_max_length: Nombre maximum de caractères par commentaire (Laisser 0 pour la valeur par défaut)
|
|
44
44
|
taxonomy_filters_add: Ajouter un filtre
|
|
45
45
|
step:
|
|
46
46
|
announcement: Annonce
|
|
@@ -70,11 +70,12 @@ fr:
|
|
|
70
70
|
form:
|
|
71
71
|
add_attachments: Ajouter des pièces jointes
|
|
72
72
|
attachment_legend: Ajouter un document ou une image
|
|
73
|
+
comments_layout_locked_warning: La mise en page du commentaire ne peut pas être modifiée car les commentaires ont déjà été publiés.
|
|
73
74
|
comments_warning: Une fois le premier commentaire publié, l'option d'affichage sélectionnée ne peut pas être modifiée.
|
|
74
75
|
debate_type: Type de débat
|
|
75
76
|
edit_attachments: Modifier les pièces jointes
|
|
76
77
|
errors:
|
|
77
|
-
comments_layout_locked:
|
|
78
|
+
comments_layout_locked: La mise en page du commentaire ne peut pas être modifiée car les commentaires ont déjà été publiés.
|
|
78
79
|
finite: Limité (Avec les heures de début et de fin)
|
|
79
80
|
open: Ouvert (pas de date de début et de fin)
|
|
80
81
|
index:
|
|
@@ -189,6 +190,8 @@ fr:
|
|
|
189
190
|
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.
|
|
190
191
|
email_subject: Nouveau débat "%{resource_title}" sur %{participatory_space_title}
|
|
191
192
|
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>.
|
|
193
|
+
user_followers:
|
|
194
|
+
email_subject: Nouveau débat "%{resource_title}" par %{author_name}
|
|
192
195
|
creation_disabled:
|
|
193
196
|
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 :'
|
|
194
197
|
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”.
|
data/config/locales/hu.yml
CHANGED
data/config/locales/it.yml
CHANGED
data/config/locales/ja.yml
CHANGED
|
@@ -41,7 +41,7 @@ ja:
|
|
|
41
41
|
attachments_allowed: 添付ファイルを許可
|
|
42
42
|
clear_all: すべてクリア
|
|
43
43
|
comments_enabled: コメントを有効にする
|
|
44
|
-
comments_max_length:
|
|
44
|
+
comments_max_length: 各コメントの最大文字数 (0はデフォルト値のまま)
|
|
45
45
|
define_taxonomy_filters: この設定を使用する前に、参加型スペースのフィルターをいくつか定義してください。
|
|
46
46
|
no_taxonomy_filters_found: タクソノミーフィルタが見つかりません。
|
|
47
47
|
taxonomy_filters: コンポーネントのフィルタを選択
|
|
@@ -80,8 +80,6 @@ ja:
|
|
|
80
80
|
comments_warning: 最初のコメントが投稿されると、選択した表示オプションは変更できません。
|
|
81
81
|
debate_type: ディベートタイプ
|
|
82
82
|
edit_attachments: 添付ファイルを編集
|
|
83
|
-
errors:
|
|
84
|
-
comments_layout_locked: コメントが投稿されると、コメントレイアウトを変更することはできません。
|
|
85
83
|
finite: 期間限定 (開始時刻と終了時刻あり)
|
|
86
84
|
open: 無期限 (開始時刻または終了時刻なし)
|
|
87
85
|
single_column: '1カラム: コメントは時系列で表示され、返信を持つことができます。'
|
|
@@ -200,6 +198,13 @@ ja:
|
|
|
200
198
|
email_outro: 参加型スペース %{participatory_space_title} をフォローしているため、この通知を受信しました。通知が不要な場合、上記リンクより停止できます。
|
|
201
199
|
email_subject: '"%{participatory_space_title}" での新しいディベート %{resource_title}'
|
|
202
200
|
notification_title: ディベート <a href="%{resource_path}">%{resource_title}</a> が、 <a href="%{participatory_space_url}">%{participatory_space_title}</a> に作成されました。
|
|
201
|
+
user_followers:
|
|
202
|
+
email_intro: |-
|
|
203
|
+
こんにちは、
|
|
204
|
+
あなたがフォローしている %{author_name} さんが新しいディベート「%{resource_title}」を作成しました。ぜひ内容を確認し、意見をお寄せください:
|
|
205
|
+
email_outro: '%{author_name} さんをフォローしているため、この通知が届きました。前のリンクからフォローを解除することで、通知の受信を停止できます。'
|
|
206
|
+
email_subject: '%{resource_title}による新しいディベート " %{author_name}"'
|
|
207
|
+
notification_title: <a href="%{author_path}">%{author_name}</a> さんが <a href="%{resource_path}">%{resource_title}</a> ディベートを作成しました。
|
|
203
208
|
creation_disabled:
|
|
204
209
|
email_intro: 'ディベートの作成は %{participatory_space_title}で行われなくなりました。このページからまだディベートに参加できます:'
|
|
205
210
|
email_outro: '%{participatory_space_title}をフォローしているため、この通知を受け取りました。前のリンクに続く通知の受信を停止することができます。'
|
data/config/locales/lb.yml
CHANGED
data/config/locales/lt.yml
CHANGED
data/config/locales/nl.yml
CHANGED
data/config/locales/no.yml
CHANGED
data/config/locales/pl.yml
CHANGED
data/config/locales/pt-BR.yml
CHANGED
|
@@ -42,7 +42,6 @@ pt-BR:
|
|
|
42
42
|
attachments_allowed: Permitir anexos
|
|
43
43
|
clear_all: Limpar tudo
|
|
44
44
|
comments_enabled: Comentários ativados
|
|
45
|
-
comments_max_length: Tamanho máximo de comentários (deixe 0 para o valor padrão)
|
|
46
45
|
define_taxonomy_filters: Por favor, defina alguns filtros para este espaço participativo antes de usar esta configuração.
|
|
47
46
|
no_taxonomy_filters_found: Nenhum filtro de taxonomia encontrado.
|
|
48
47
|
taxonomy_filters: Selecione filtros para o componente
|
|
@@ -81,8 +80,6 @@ pt-BR:
|
|
|
81
80
|
comments_warning: Uma vez que o primeiro comentário é publicado, a opção de exibição selecionada não pode ser alterada.
|
|
82
81
|
debate_type: Tipo de debate
|
|
83
82
|
edit_attachments: Editar anexos
|
|
84
|
-
errors:
|
|
85
|
-
comments_layout_locked: Você não pode alterar o layout dos comentários, uma vez que os comentários foram postados.
|
|
86
83
|
finite: Finito (com hora de início e fim)
|
|
87
84
|
open: Abra (Sem horas de início ou fim)
|
|
88
85
|
single_column: 'Coluna única: Os comentários são exibidos em ordem cronológica e podem ter respostas.'
|
data/config/locales/pt.yml
CHANGED
|
@@ -38,7 +38,6 @@ pt:
|
|
|
38
38
|
attachments_allowed: Permitir anexos
|
|
39
39
|
clear_all: Limpar tudo
|
|
40
40
|
comments_enabled: Comentários ativados
|
|
41
|
-
comments_max_length: Comprimento máximo dos comentários (Deixar 0 para o valor predefinido)
|
|
42
41
|
define_taxonomy_filters: Defina alguns filtros para este espaço de participação antes de usar esta configuração.
|
|
43
42
|
no_taxonomy_filters_found: Nenhum filtro de taxonomia encontrado.
|
|
44
43
|
taxonomy_filters: Selecionar filtros para o componente
|
|
@@ -75,8 +74,6 @@ pt:
|
|
|
75
74
|
comments_warning: Depois de o primeiro comentário ser publicado, a opção de exibição selecionada não poderá ser alterada.
|
|
76
75
|
debate_type: Tipo de debate
|
|
77
76
|
edit_attachments: Editar anexos
|
|
78
|
-
errors:
|
|
79
|
-
comments_layout_locked: Não pode alterar o layout dos comentários depois de eles serem publicados.
|
|
80
77
|
finite: Finito (com hora de abertura e de fecho)
|
|
81
78
|
open: Aberto (sem hora de abertura ou fecho)
|
|
82
79
|
single_column: 'Coluna única: Os comentários são exibidos por ordem cronológica e podem ter respostas.'
|
data/config/locales/ro-RO.yml
CHANGED
|
@@ -39,7 +39,6 @@ ro:
|
|
|
39
39
|
attachments_allowed: Permite atașamente
|
|
40
40
|
clear_all: Ștergeți toate
|
|
41
41
|
comments_enabled: Comentarii activate
|
|
42
|
-
comments_max_length: Lungimea maximă a comentariilor (Lasă 0 pentru valoarea implicită)
|
|
43
42
|
define_taxonomy_filters: Vă rugăm să definiți niște filtre pentru acest spațiu participativ înainte de a utiliza această setare.
|
|
44
43
|
no_taxonomy_filters_found: Nici un filtru de taxonomie găsit.
|
|
45
44
|
taxonomy_filters: Selectați filtrele pentru componentă
|
data/config/locales/sk.yml
CHANGED
|
@@ -44,7 +44,6 @@ sk:
|
|
|
44
44
|
attachments_allowed: Povoliť prílohy
|
|
45
45
|
clear_all: Vymazať všetko
|
|
46
46
|
comments_enabled: Komentáre povolené
|
|
47
|
-
comments_max_length: Maximálna dĺžka komentárov (Ponechajte 0 pre predvolenú hodnotu)
|
|
48
47
|
define_taxonomy_filters: Pred použitím tohto nastavenia definujte nejaké filtre pre tento participatívny priestor.
|
|
49
48
|
no_taxonomy_filters_found: Nenašli sa žiadne taxonomické filtre.
|
|
50
49
|
taxonomy_filters: Vyberte filtre pre komponent
|
|
@@ -83,8 +82,6 @@ sk:
|
|
|
83
82
|
comments_warning: Po zverejnení prvého komentára už nie je možné zmeniť vybranú možnosť zobrazenia.
|
|
84
83
|
debate_type: Typ debaty
|
|
85
84
|
edit_attachments: Upraviť prílohy
|
|
86
|
-
errors:
|
|
87
|
-
comments_layout_locked: Po zverejnení komentárov už nemôžete zmeniť rozloženie komentárov.
|
|
88
85
|
finite: Konečná (so začiatočným a koncovým časom)
|
|
89
86
|
open: Otvorená (bez začiatočného alebo koncového času)
|
|
90
87
|
single_column: 'Jeden stĺpec: Komentáre sa zobrazujú v chronologickom poradí a môžu mať odpovede.'
|
|
@@ -237,7 +234,7 @@ sk:
|
|
|
237
234
|
description_own: Zúčastnili ste sa na %{score} debatách.
|
|
238
235
|
name: Debaty
|
|
239
236
|
next_level_in: Podieľajte sa na ďalších %{score} debatách pre dosiahnutie ďalšej úrovne!
|
|
240
|
-
unearned_another: Tento účastník sa nezúčastnil na žiadnej debate.
|
|
237
|
+
unearned_another: Tento účastník sa nezúčastnil na žiadnej debate.
|
|
241
238
|
unearned_own: Zatiaľ ste sa nezúčastnili žiadnych debát.
|
|
242
239
|
open_data:
|
|
243
240
|
help:
|
data/config/locales/sv.yml
CHANGED
|
@@ -42,7 +42,6 @@ sv:
|
|
|
42
42
|
attachments_allowed: Tillåt bilagor
|
|
43
43
|
clear_all: Rensa
|
|
44
44
|
comments_enabled: Aktivera kommentarer
|
|
45
|
-
comments_max_length: Maximal kommentarslängd (ange 0 för att använda standardvärdet)
|
|
46
45
|
define_taxonomy_filters: Ställ in filter innan du använder den här inställningen.
|
|
47
46
|
no_taxonomy_filters_found: Inga filter för kategorier hittades.
|
|
48
47
|
taxonomy_filters: Välj filter för komponenten
|
|
@@ -81,8 +80,6 @@ sv:
|
|
|
81
80
|
comments_warning: Visningsalternativet inte längre ändras efter att den första kommentaren har postats.
|
|
82
81
|
debate_type: Typ av debatt
|
|
83
82
|
edit_attachments: Redigera bilagor
|
|
84
|
-
errors:
|
|
85
|
-
comments_layout_locked: Du kan inte ändra kommentarslayouten när kommentarer har postats.
|
|
86
83
|
finite: Tidsbegränsad (med start- och sluttid)
|
|
87
84
|
open: Öppen (utan start- eller sluttid)
|
|
88
85
|
single_column: 'En kolumn: Kommentarer visas i kronologisk ordning och kan ha svar.'
|
data/config/locales/tr-TR.yml
CHANGED
|
@@ -31,7 +31,6 @@ tr:
|
|
|
31
31
|
announcement: duyuru
|
|
32
32
|
attachments_allowed: Eklere İzin Ver
|
|
33
33
|
comments_enabled: Yorumlar etkin
|
|
34
|
-
comments_max_length: Maksimum yorum uzunluğu (Varsayılan değer için 0 bırakın)
|
|
35
34
|
step:
|
|
36
35
|
announcement: duyuru
|
|
37
36
|
comments_blocked: Yorumlar engellendi
|
|
@@ -138,8 +137,8 @@ tr:
|
|
|
138
137
|
create_debate_event:
|
|
139
138
|
space_followers:
|
|
140
139
|
email_intro: |-
|
|
141
|
-
Merhaba
|
|
142
|
-
%{participatory_space_title} katılımcı alanında yeni bir "%{resource_title}" tartışma başlığı oluşturuldu. İnceleyerek katkıda bulunabilirsiniz.
|
|
140
|
+
Merhaba
|
|
141
|
+
%{participatory_space_title} katılımcı alanında yeni bir "%{resource_title}" tartışma başlığı oluşturuldu. İnceleyerek katkıda bulunabilirsiniz.
|
|
143
142
|
email_outro: Bu bildirimi %{participatory_space_title} katılımcılık Başlıklı alanını takip ettiğiniz için aldınız. Bildirim almayı önceki bağlantı linkini izleyerek durdurabilirsiniz.
|
|
144
143
|
email_subject: '%{participatory_space_title} başlıpı ile ilgili yeni tartışma "%{resource_title}"'
|
|
145
144
|
notification_title: <a href="%{resource_path}">%{resource_title</a> tartışması <a href="%{participatory_space_url}">%{participatory_space_title</a> tarihinde oluşturuldu.
|
data/config/locales/zh-CN.yml
CHANGED
data/config/locales/zh-TW.yml
CHANGED
data/decidim-debates.gemspec
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
$LOAD_PATH.push File.expand_path("lib", __dir__)
|
|
4
4
|
|
|
5
5
|
Gem::Specification.new do |s|
|
|
6
|
-
version = "0.32.0
|
|
6
|
+
version = "0.32.0"
|
|
7
7
|
s.version = version
|
|
8
8
|
s.authors = ["Josep Jaume Rey Peroy", "Marc Riera Casals", "Oriol Gual Oliva", "Genis Matutes Pujol"]
|
|
9
9
|
s.email = ["josepjaume@gmail.com", "mrc2407@gmail.com", "oriolgual@gmail.com", "genis.matutes@gmail.com"]
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: decidim-debates
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.32.0
|
|
4
|
+
version: 0.32.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Josep Jaume Rey Peroy
|
|
@@ -18,70 +18,70 @@ dependencies:
|
|
|
18
18
|
requirements:
|
|
19
19
|
- - '='
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: 0.32.0
|
|
21
|
+
version: 0.32.0
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
25
25
|
requirements:
|
|
26
26
|
- - '='
|
|
27
27
|
- !ruby/object:Gem::Version
|
|
28
|
-
version: 0.32.0
|
|
28
|
+
version: 0.32.0
|
|
29
29
|
- !ruby/object:Gem::Dependency
|
|
30
30
|
name: decidim-core
|
|
31
31
|
requirement: !ruby/object:Gem::Requirement
|
|
32
32
|
requirements:
|
|
33
33
|
- - '='
|
|
34
34
|
- !ruby/object:Gem::Version
|
|
35
|
-
version: 0.32.0
|
|
35
|
+
version: 0.32.0
|
|
36
36
|
type: :runtime
|
|
37
37
|
prerelease: false
|
|
38
38
|
version_requirements: !ruby/object:Gem::Requirement
|
|
39
39
|
requirements:
|
|
40
40
|
- - '='
|
|
41
41
|
- !ruby/object:Gem::Version
|
|
42
|
-
version: 0.32.0
|
|
42
|
+
version: 0.32.0
|
|
43
43
|
- !ruby/object:Gem::Dependency
|
|
44
44
|
name: decidim-admin
|
|
45
45
|
requirement: !ruby/object:Gem::Requirement
|
|
46
46
|
requirements:
|
|
47
47
|
- - '='
|
|
48
48
|
- !ruby/object:Gem::Version
|
|
49
|
-
version: 0.32.0
|
|
49
|
+
version: 0.32.0
|
|
50
50
|
type: :development
|
|
51
51
|
prerelease: false
|
|
52
52
|
version_requirements: !ruby/object:Gem::Requirement
|
|
53
53
|
requirements:
|
|
54
54
|
- - '='
|
|
55
55
|
- !ruby/object:Gem::Version
|
|
56
|
-
version: 0.32.0
|
|
56
|
+
version: 0.32.0
|
|
57
57
|
- !ruby/object:Gem::Dependency
|
|
58
58
|
name: decidim-assemblies
|
|
59
59
|
requirement: !ruby/object:Gem::Requirement
|
|
60
60
|
requirements:
|
|
61
61
|
- - '='
|
|
62
62
|
- !ruby/object:Gem::Version
|
|
63
|
-
version: 0.32.0
|
|
63
|
+
version: 0.32.0
|
|
64
64
|
type: :development
|
|
65
65
|
prerelease: false
|
|
66
66
|
version_requirements: !ruby/object:Gem::Requirement
|
|
67
67
|
requirements:
|
|
68
68
|
- - '='
|
|
69
69
|
- !ruby/object:Gem::Version
|
|
70
|
-
version: 0.32.0
|
|
70
|
+
version: 0.32.0
|
|
71
71
|
- !ruby/object:Gem::Dependency
|
|
72
72
|
name: decidim-dev
|
|
73
73
|
requirement: !ruby/object:Gem::Requirement
|
|
74
74
|
requirements:
|
|
75
75
|
- - '='
|
|
76
76
|
- !ruby/object:Gem::Version
|
|
77
|
-
version: 0.32.0
|
|
77
|
+
version: 0.32.0
|
|
78
78
|
type: :development
|
|
79
79
|
prerelease: false
|
|
80
80
|
version_requirements: !ruby/object:Gem::Requirement
|
|
81
81
|
requirements:
|
|
82
82
|
- - '='
|
|
83
83
|
- !ruby/object:Gem::Version
|
|
84
|
-
version: 0.32.0
|
|
84
|
+
version: 0.32.0
|
|
85
85
|
description: A debates component for decidim's participatory spaces.
|
|
86
86
|
email:
|
|
87
87
|
- josepjaume@gmail.com
|