decidim-blogs 0.31.5 → 0.31.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/commands/decidim/blogs/update_post.rb +1 -1
- data/app/controllers/decidim/blogs/posts_controller.rb +1 -0
- data/app/forms/decidim/blogs/post_form.rb +2 -2
- data/app/views/decidim/blogs/admin/posts/_actions.html.erb +1 -1
- data/app/views/decidim/blogs/posts/_form.html.erb +1 -1
- data/app/views/decidim/blogs/posts/_menu_actions.html.erb +4 -3
- data/config/locales/ar.yml +0 -1
- data/config/locales/bg.yml +0 -1
- data/config/locales/ca-IT.yml +1 -1
- data/config/locales/ca.yml +1 -1
- data/config/locales/cs.yml +0 -1
- data/config/locales/de.yml +0 -1
- data/config/locales/el.yml +0 -1
- data/config/locales/en.yml +1 -1
- data/config/locales/es-MX.yml +1 -1
- data/config/locales/es-PY.yml +1 -1
- data/config/locales/es.yml +1 -1
- data/config/locales/eu.yml +2 -2
- data/config/locales/fr-CA.yml +12 -1
- data/config/locales/fr.yml +12 -1
- data/config/locales/gl.yml +0 -1
- data/config/locales/hu.yml +0 -1
- data/config/locales/it.yml +0 -1
- data/config/locales/ja.yml +1 -1
- data/config/locales/ko.yml +0 -1
- 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 -1
- data/config/locales/pt.yml +0 -1
- data/config/locales/ro-RO.yml +0 -1
- data/config/locales/ru.yml +0 -1
- data/config/locales/sk.yml +0 -1
- data/config/locales/sq-AL.yml +0 -1
- data/config/locales/sv.yml +0 -1
- data/config/locales/tr-TR.yml +1 -2
- data/config/locales/zh-CN.yml +0 -1
- data/config/locales/zh-TW.yml +0 -1
- data/lib/decidim/blogs/component.rb +1 -1
- data/lib/decidim/blogs/version.rb +1 -1
- metadata +16 -16
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: be25671bca141204d97dd6bbb55f08eedcaeafa6ed8f4cd9bad2f810caa8bb55
|
|
4
|
+
data.tar.gz: 5379e0a9f48713eb55fcb1af5479a9cbd8e249e74a40c58e6d9be405dbe8b358
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7b379cb7a419d367036b644956026fb8a1feb0e9ed4bef3295d7a6905ec65162e7e2352893fbf2dad1b7c59ef18b60109f5098abc8bedc7c9d20f31d1e53cd7b
|
|
7
|
+
data.tar.gz: a3f72652649c77b1e3784ab6732c565c6f1e5eb78e499b06860401a0322ab157e161ad60a03f1900e35189c3cfd229b6ab4257e76e54c7bbaae9d37d5d6762f5
|
|
@@ -12,6 +12,7 @@ module Decidim
|
|
|
12
12
|
include Decidim::FormFactory
|
|
13
13
|
|
|
14
14
|
helper_method :posts, :post, :post_presenter, :paginate_posts, :posts_most_commented, :tabs, :panels
|
|
15
|
+
before_action :authenticate_user!, only: [:new, :create, :edit, :update, :destroy]
|
|
15
16
|
|
|
16
17
|
def index; end
|
|
17
18
|
|
|
@@ -14,7 +14,7 @@ module Decidim
|
|
|
14
14
|
|
|
15
15
|
attribute :decidim_author_id, Integer
|
|
16
16
|
|
|
17
|
-
attachments_attribute :
|
|
17
|
+
attachments_attribute :attachments
|
|
18
18
|
|
|
19
19
|
validates :body, translatable_presence: true
|
|
20
20
|
validates :title, translatable_presence: true
|
|
@@ -28,7 +28,7 @@ module Decidim
|
|
|
28
28
|
|
|
29
29
|
self.title = presenter.title
|
|
30
30
|
self.body = presenter.body
|
|
31
|
-
self.
|
|
31
|
+
self.attachments = model.attachments
|
|
32
32
|
end
|
|
33
33
|
|
|
34
34
|
def author
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
|
|
71
71
|
<li class="dropdown__item">
|
|
72
72
|
<div class="dropdown__button-disabled">
|
|
73
|
-
<%= with_tooltip t("tooltips.deleted_posts_info", scope: "decidim.admin") do %>
|
|
73
|
+
<%= with_tooltip t("tooltips.deleted_posts_info", scope: "decidim.admin"), class: :left do %>
|
|
74
74
|
<%= icon "delete-bin-line", class: "text-gray" %>
|
|
75
75
|
<span>
|
|
76
76
|
<%= t("actions.soft_delete", scope: "decidim.admin") %>
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
|
|
13
13
|
<% if component_settings.attachments_allowed? %>
|
|
14
14
|
<div>
|
|
15
|
-
<%= form.attachment :
|
|
15
|
+
<%= form.attachment :attachments,
|
|
16
16
|
multiple: true,
|
|
17
17
|
label: t("decidim.blogs.posts.edit.add_attachments"),
|
|
18
18
|
button_label: t("decidim.blogs.posts.edit.add_attachments"),
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
|
|
2
2
|
<% if allowed_to?(:update, :blogpost, blogpost: post) %>
|
|
3
|
-
<li role="
|
|
4
|
-
<%= link_to edit_post_path(post), class: "dropdown__button" do %>
|
|
3
|
+
<li role="presentation" class="dropdown__item">
|
|
4
|
+
<%= link_to edit_post_path(post), class: "dropdown__button", role: "menuitem" do %>
|
|
5
5
|
<span><%= t("button_edit", scope: "decidim.blogs.posts.menu_actions") %></span>
|
|
6
6
|
<%= icon "pencil-line" %>
|
|
7
7
|
<% end %>
|
|
@@ -9,10 +9,11 @@
|
|
|
9
9
|
<% end %>
|
|
10
10
|
|
|
11
11
|
<% if allowed_to?(:destroy, :blogpost, blogpost: post) %>
|
|
12
|
-
<li role="
|
|
12
|
+
<li role="presentation" class="dropdown__item">
|
|
13
13
|
<%= link_to post_path(post),
|
|
14
14
|
method: :delete,
|
|
15
15
|
class: "dropdown__button",
|
|
16
|
+
role: "menuitem",
|
|
16
17
|
data: { confirm: t("button_destroy_confirm", scope: "decidim.blogs.posts.menu_actions") } do %>
|
|
17
18
|
<span><%= t("button_destroy", scope: "decidim.blogs.posts.menu_actions") %></span>
|
|
18
19
|
<%= icon "delete-bin-line" %>
|
data/config/locales/ar.yml
CHANGED
data/config/locales/bg.yml
CHANGED
|
@@ -76,7 +76,6 @@ bg:
|
|
|
76
76
|
global:
|
|
77
77
|
announcement: Обявление
|
|
78
78
|
comments_enabled: Коментарите са разрешени
|
|
79
|
-
comments_max_length: Максимална дължина на коментарите (Оставете 0 за стойност по подразбиране)
|
|
80
79
|
step:
|
|
81
80
|
announcement: Обявление
|
|
82
81
|
comments_blocked: Коментарите са блокирани
|
data/config/locales/ca-IT.yml
CHANGED
|
@@ -114,7 +114,7 @@ ca-IT:
|
|
|
114
114
|
announcement: Avís
|
|
115
115
|
attachments_allowed: Permetre fitxers adjunts
|
|
116
116
|
comments_enabled: Comentaris habilitats
|
|
117
|
-
comments_max_length:
|
|
117
|
+
comments_max_length: Caràcters màxims per comentari (deixar a 0 el valor predeterminat)
|
|
118
118
|
creation_enabled_for_participants: Les participants poden crear noves entrades en el blog
|
|
119
119
|
define_taxonomy_filters: Si us plau, defineix alguns filtres per aquest espai de participació abans de fer servir aquesta configuració.
|
|
120
120
|
no_taxonomy_filters_found: No s'han trobat filtres de taxonomia.
|
data/config/locales/ca.yml
CHANGED
|
@@ -114,7 +114,7 @@ ca:
|
|
|
114
114
|
announcement: Avís
|
|
115
115
|
attachments_allowed: Permetre fitxers adjunts
|
|
116
116
|
comments_enabled: Comentaris habilitats
|
|
117
|
-
comments_max_length:
|
|
117
|
+
comments_max_length: Caràcters màxims per comentari (deixar a 0 el valor predeterminat)
|
|
118
118
|
creation_enabled_for_participants: Les participants poden crear noves entrades en el blog
|
|
119
119
|
define_taxonomy_filters: Si us plau, defineix alguns filtres per aquest espai de participació abans de fer servir aquesta configuració.
|
|
120
120
|
no_taxonomy_filters_found: No s'han trobat filtres de taxonomia.
|
data/config/locales/cs.yml
CHANGED
|
@@ -118,7 +118,6 @@ cs:
|
|
|
118
118
|
announcement: Oznámení
|
|
119
119
|
attachments_allowed: Povolit přílohy
|
|
120
120
|
comments_enabled: Komentáře povoleny
|
|
121
|
-
comments_max_length: Maximální délka komentáře (ponechte 0 pro výchozí hodnotu)
|
|
122
121
|
creation_enabled_for_participants: Účastníci mohou vytvářet příspěvky
|
|
123
122
|
define_taxonomy_filters: Před použitím tohoto nastavení prosím definujte některé filtry pro tento participační prostor.
|
|
124
123
|
no_taxonomy_filters_found: Nebyly nalezeny žádné filtry taxonomie.
|
data/config/locales/de.yml
CHANGED
|
@@ -114,7 +114,6 @@ de:
|
|
|
114
114
|
announcement: Ankündigung
|
|
115
115
|
attachments_allowed: Anhänge zulassen
|
|
116
116
|
comments_enabled: Kommentare aktiviert
|
|
117
|
-
comments_max_length: Maximale Länge der Kommentare (0 für Standardwert)
|
|
118
117
|
creation_enabled_for_participants: Teilnehmende können Beiträge erstellen
|
|
119
118
|
define_taxonomy_filters: Bitte definieren Sie einige Filter für diesen partizipativen Bereich, bevor Sie diese Einstellung verwenden.
|
|
120
119
|
no_taxonomy_filters_found: Keine Klassifizierungsfilter gefunden.
|
data/config/locales/el.yml
CHANGED
|
@@ -65,7 +65,6 @@ el:
|
|
|
65
65
|
global:
|
|
66
66
|
announcement: Ανακοίνωση
|
|
67
67
|
comments_enabled: Τα σχόλια ενεργοποιήθηκαν
|
|
68
|
-
comments_max_length: Μέγιστο μέγεθος σχολίων (Αφήστε το 0 για το προκαθορισμένο μέγεθος)
|
|
69
68
|
step:
|
|
70
69
|
announcement: Ανακοίνωση
|
|
71
70
|
comments_blocked: Τα σχόλια αποκλείστηκαν
|
data/config/locales/en.yml
CHANGED
|
@@ -114,7 +114,7 @@ en:
|
|
|
114
114
|
announcement: Announcement
|
|
115
115
|
attachments_allowed: Allow attachments
|
|
116
116
|
comments_enabled: Comments enabled
|
|
117
|
-
comments_max_length:
|
|
117
|
+
comments_max_length: Max characters per comment (Leave 0 for default value)
|
|
118
118
|
creation_enabled_for_participants: Participants can create posts
|
|
119
119
|
define_taxonomy_filters: Please define some filters for this participatory space before using this setting.
|
|
120
120
|
no_taxonomy_filters_found: No taxonomy filters found.
|
data/config/locales/es-MX.yml
CHANGED
|
@@ -114,7 +114,7 @@ es-MX:
|
|
|
114
114
|
announcement: Anuncio
|
|
115
115
|
attachments_allowed: Permitir archivos adjuntos
|
|
116
116
|
comments_enabled: Comentarios habilitados
|
|
117
|
-
comments_max_length:
|
|
117
|
+
comments_max_length: Caracteres máximos por comentario (dejar 0 para el valor predeterminado)
|
|
118
118
|
creation_enabled_for_participants: Las participantes pueden crear nuevas entradas en el blog
|
|
119
119
|
define_taxonomy_filters: Por favor, define algunos filtros para este espacio de participación antes de utilizar esta configuración.
|
|
120
120
|
no_taxonomy_filters_found: No se han encontrado filtros de taxonomía.
|
data/config/locales/es-PY.yml
CHANGED
|
@@ -114,7 +114,7 @@ es-PY:
|
|
|
114
114
|
announcement: Anuncio
|
|
115
115
|
attachments_allowed: Permitir archivos adjuntos
|
|
116
116
|
comments_enabled: Comentarios habilitados
|
|
117
|
-
comments_max_length:
|
|
117
|
+
comments_max_length: Caracteres máximos por comentario (dejar 0 para el valor predeterminado)
|
|
118
118
|
creation_enabled_for_participants: Las participantes pueden crear nuevas entradas en el blog
|
|
119
119
|
define_taxonomy_filters: Por favor, define algunos filtros para este espacio de participación antes de utilizar esta configuración.
|
|
120
120
|
no_taxonomy_filters_found: No se han encontrado filtros de taxonomía.
|
data/config/locales/es.yml
CHANGED
|
@@ -114,7 +114,7 @@ es:
|
|
|
114
114
|
announcement: Aviso
|
|
115
115
|
attachments_allowed: Permitir archivos adjuntos
|
|
116
116
|
comments_enabled: Comentarios habilitados
|
|
117
|
-
comments_max_length:
|
|
117
|
+
comments_max_length: Caracteres máximos por comentario (dejar 0 para el valor predeterminado)
|
|
118
118
|
creation_enabled_for_participants: Las participantes pueden crear nuevas entradas en el blog
|
|
119
119
|
define_taxonomy_filters: Por favor, define algunos filtros para este espacio de participación antes de utilizar esta configuración.
|
|
120
120
|
no_taxonomy_filters_found: No se han encontrado filtros de taxonomía.
|
data/config/locales/eu.yml
CHANGED
|
@@ -88,7 +88,7 @@ eu:
|
|
|
88
88
|
title: Izenburua
|
|
89
89
|
index:
|
|
90
90
|
count:
|
|
91
|
-
one: "
|
|
91
|
+
one: "Argitalpen bat"
|
|
92
92
|
other: "%{count} argitalpen"
|
|
93
93
|
empty: Oraindik ez dago argitalpenik.
|
|
94
94
|
new_post: Beste sarrera bat
|
|
@@ -114,7 +114,7 @@ eu:
|
|
|
114
114
|
announcement: Iragarpena
|
|
115
115
|
attachments_allowed: Baimendu eranskinak
|
|
116
116
|
comments_enabled: Iruzkinak gaituta
|
|
117
|
-
comments_max_length:
|
|
117
|
+
comments_max_length: Iruzkin bakoitzeko gehieneko karaktereak (utzi 0 aurrez zehaztutako baliorako)
|
|
118
118
|
creation_enabled_for_participants: Parte-hartzaileek sarrerak sor ditzakete
|
|
119
119
|
define_taxonomy_filters: Mesedez, zehaztu iragazki batzuk partaidetza-espazio honetarako eszenatoki hau erabili aurretik.
|
|
120
120
|
no_taxonomy_filters_found: Ez da taxonomia-iragazkirik aurkitu.
|
data/config/locales/fr-CA.yml
CHANGED
|
@@ -106,6 +106,7 @@ fr-CA:
|
|
|
106
106
|
comment: Commenter
|
|
107
107
|
create: Créer
|
|
108
108
|
destroy: Supprimer
|
|
109
|
+
like: Soutenir
|
|
109
110
|
update: Mettre à jour
|
|
110
111
|
name: Actualités
|
|
111
112
|
settings:
|
|
@@ -113,7 +114,7 @@ fr-CA:
|
|
|
113
114
|
announcement: Annonce
|
|
114
115
|
attachments_allowed: Autoriser les pièces jointes
|
|
115
116
|
comments_enabled: Activer le module de commentaire
|
|
116
|
-
comments_max_length:
|
|
117
|
+
comments_max_length: Nombre maximum de caractères par commentaire (Laisser 0 pour la valeur par défaut)
|
|
117
118
|
creation_enabled_for_participants: Les participants peuvent créer des articles
|
|
118
119
|
define_taxonomy_filters: Veuillez définir des filtres pour cet espace participatif avant d'utiliser ce paramètre.
|
|
119
120
|
no_taxonomy_filters_found: Aucun filtre de taxonomie trouvé.
|
|
@@ -122,6 +123,8 @@ fr-CA:
|
|
|
122
123
|
step:
|
|
123
124
|
announcement: Annonce
|
|
124
125
|
comments_blocked: Commentaires désactivés
|
|
126
|
+
likes_blocked: Soutiens bloqués
|
|
127
|
+
likes_enabled: Soutiens activés
|
|
125
128
|
events:
|
|
126
129
|
blogs:
|
|
127
130
|
post_created:
|
|
@@ -136,14 +139,22 @@ fr-CA:
|
|
|
136
139
|
author: Le nom du participant qui a fait ce commentaire
|
|
137
140
|
body: Le commentaire lui-même
|
|
138
141
|
commentable_id: L'identifiant unique du commentaire
|
|
142
|
+
commentable_type: Le type de l'élément commenté (s'il s'agit d'un résultat, d'une proposition, etc.)
|
|
139
143
|
created_at: La date de création de ce commentaire
|
|
144
|
+
depth: L'endroit où ce commentaire se trouve dans l'arborescence des commentaires (si c'est une réponse ou une réponse à une réponse)
|
|
140
145
|
id: L'id de ce commentaire
|
|
146
|
+
locale: La langue que le participant a utilisé en créant ce commentaire
|
|
147
|
+
root_commentable_url: L'URL de la ressource liée à ce commentaire
|
|
141
148
|
posts:
|
|
149
|
+
author: Les informations de l'auteur
|
|
142
150
|
body: Le corps de l'article
|
|
143
151
|
comments_count: Le nombre de commentaires sur cet article
|
|
144
152
|
component: Le composant auquel appartient l'article
|
|
145
153
|
created_at: La date de création de cet article
|
|
154
|
+
follows_count: Le nombre de personnes qui suivent cet article
|
|
146
155
|
id: L'identifiant unique de cet article
|
|
156
|
+
likes_count: Le nombre de soutiens à cet article
|
|
157
|
+
participatory_space: 'À quel espace (ex : Concertation ou Assemblée) appartient cet article'
|
|
147
158
|
published_at: La date à laquelle cet article a été publié
|
|
148
159
|
title: Le titre de l'article
|
|
149
160
|
updated_at: La dernière date de mise à jour de cet article
|
data/config/locales/fr.yml
CHANGED
|
@@ -106,6 +106,7 @@ fr:
|
|
|
106
106
|
comment: Commenter
|
|
107
107
|
create: Créer
|
|
108
108
|
destroy: Supprimer
|
|
109
|
+
like: Soutenir
|
|
109
110
|
update: Mettre à jour
|
|
110
111
|
name: Actualités
|
|
111
112
|
settings:
|
|
@@ -113,7 +114,7 @@ fr:
|
|
|
113
114
|
announcement: Annonce
|
|
114
115
|
attachments_allowed: Autoriser les pièces jointes
|
|
115
116
|
comments_enabled: Activer le module de commentaire
|
|
116
|
-
comments_max_length:
|
|
117
|
+
comments_max_length: Nombre maximum de caractères par commentaire (Laisser 0 pour la valeur par défaut)
|
|
117
118
|
creation_enabled_for_participants: Les participants peuvent créer des articles
|
|
118
119
|
define_taxonomy_filters: Veuillez définir des filtres pour cet espace participatif avant d'utiliser ce paramètre.
|
|
119
120
|
no_taxonomy_filters_found: Aucun filtre de taxonomie trouvé.
|
|
@@ -122,6 +123,8 @@ fr:
|
|
|
122
123
|
step:
|
|
123
124
|
announcement: Annonce
|
|
124
125
|
comments_blocked: Commentaires désactivés
|
|
126
|
+
likes_blocked: Soutiens bloqués
|
|
127
|
+
likes_enabled: Soutiens activés
|
|
125
128
|
events:
|
|
126
129
|
blogs:
|
|
127
130
|
post_created:
|
|
@@ -136,14 +139,22 @@ fr:
|
|
|
136
139
|
author: Le nom du participant qui a fait ce commentaire
|
|
137
140
|
body: Le commentaire lui-même
|
|
138
141
|
commentable_id: L'identifiant unique du commentaire
|
|
142
|
+
commentable_type: Le type de l'élément commenté (s'il s'agit d'un résultat, d'une proposition, etc.)
|
|
139
143
|
created_at: La date de création de ce commentaire
|
|
144
|
+
depth: L'endroit où ce commentaire se trouve dans l'arborescence des commentaires (si c'est une réponse ou une réponse à une réponse)
|
|
140
145
|
id: L'id de ce commentaire
|
|
146
|
+
locale: La langue que le participant a utilisé en créant ce commentaire
|
|
147
|
+
root_commentable_url: L'URL de la ressource liée à ce commentaire
|
|
141
148
|
posts:
|
|
149
|
+
author: Les informations de l'auteur
|
|
142
150
|
body: Le corps de l'article
|
|
143
151
|
comments_count: Le nombre de commentaires sur cet article
|
|
144
152
|
component: Le composant auquel appartient l'article
|
|
145
153
|
created_at: La date de création de cet article
|
|
154
|
+
follows_count: Le nombre de personnes qui suivent cet article
|
|
146
155
|
id: L'identifiant unique de cet article
|
|
156
|
+
likes_count: Le nombre de soutiens à cet article
|
|
157
|
+
participatory_space: 'À quel espace (ex : Concertation ou Assemblée) appartient cet article'
|
|
147
158
|
published_at: La date à laquelle cet article a été publié
|
|
148
159
|
title: Le titre de l'article
|
|
149
160
|
updated_at: La dernière date de mise à jour de cet article
|
data/config/locales/gl.yml
CHANGED
data/config/locales/hu.yml
CHANGED
data/config/locales/it.yml
CHANGED
data/config/locales/ja.yml
CHANGED
|
@@ -112,7 +112,7 @@ ja:
|
|
|
112
112
|
announcement: お知らせ
|
|
113
113
|
attachments_allowed: 添付ファイルを許可
|
|
114
114
|
comments_enabled: コメントを有効にする
|
|
115
|
-
comments_max_length:
|
|
115
|
+
comments_max_length: 各コメントの最大文字数 (0はデフォルト値のまま)
|
|
116
116
|
creation_enabled_for_participants: 参加者は投稿を作成できます
|
|
117
117
|
define_taxonomy_filters: この設定を使用する前に、参加型スペースのフィルターをいくつか定義してください。
|
|
118
118
|
no_taxonomy_filters_found: タクソノミーフィルタが見つかりません。
|
data/config/locales/ko.yml
CHANGED
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
|
@@ -114,7 +114,6 @@ pt-BR:
|
|
|
114
114
|
announcement: Anúncio
|
|
115
115
|
attachments_allowed: Permitir anexos
|
|
116
116
|
comments_enabled: Comentários ativados
|
|
117
|
-
comments_max_length: Tamanho máximo de comentários (deixe 0 para o valor padrão)
|
|
118
117
|
creation_enabled_for_participants: Os usuários podem criar postagens
|
|
119
118
|
define_taxonomy_filters: Por favor, defina alguns filtros para este espaço participativo antes de usar esta configuração.
|
|
120
119
|
no_taxonomy_filters_found: Nenhum filtro de taxonomia encontrado.
|
data/config/locales/pt.yml
CHANGED
|
@@ -106,7 +106,6 @@ pt:
|
|
|
106
106
|
global:
|
|
107
107
|
announcement: Anúncio
|
|
108
108
|
comments_enabled: Comentários ativados
|
|
109
|
-
comments_max_length: Comprimento máximo dos comentários (Deixar 0 para o valor predefinido)
|
|
110
109
|
creation_enabled_for_participants: Os participantes podem criar publicações
|
|
111
110
|
step:
|
|
112
111
|
announcement: Anúncio
|
data/config/locales/ro-RO.yml
CHANGED
|
@@ -116,7 +116,6 @@ ro:
|
|
|
116
116
|
announcement: Anunț
|
|
117
117
|
attachments_allowed: Permiteți atașamente
|
|
118
118
|
comments_enabled: Comentarii activate
|
|
119
|
-
comments_max_length: Lungimea maximă a comentariilor (lăsați 0 pentru valoarea implicită)
|
|
120
119
|
creation_enabled_for_participants: Participanții pot crea postări
|
|
121
120
|
define_taxonomy_filters: Vă rugăm să definiți niște filtre pentru acest spațiu participativ înainte de a utiliza această setare.
|
|
122
121
|
no_taxonomy_filters_found: Nici un filtru de taxonomie găsit.
|
data/config/locales/ru.yml
CHANGED
data/config/locales/sk.yml
CHANGED
|
@@ -118,7 +118,6 @@ sk:
|
|
|
118
118
|
announcement: Oznámenie
|
|
119
119
|
attachments_allowed: Povoliť prílohy
|
|
120
120
|
comments_enabled: Komentáre povolené
|
|
121
|
-
comments_max_length: Maximálna dĺžka komentárov (Ponechajte 0 pre predvolenú hodnotu)
|
|
122
121
|
creation_enabled_for_participants: Účastníci môžu vytvárať príspevky
|
|
123
122
|
define_taxonomy_filters: Pred použitím tohto nastavenia definujte nejaké filtre pre tento participatívny priestor.
|
|
124
123
|
no_taxonomy_filters_found: Nenašli sa žiadne filtre taxonómie.
|
data/config/locales/sq-AL.yml
CHANGED
data/config/locales/sv.yml
CHANGED
|
@@ -114,7 +114,6 @@ sv:
|
|
|
114
114
|
announcement: Meddelande
|
|
115
115
|
attachments_allowed: Tillåt bilagor
|
|
116
116
|
comments_enabled: Aktivera kommentarer
|
|
117
|
-
comments_max_length: Maximal kommentarslängd (ange 0 för att använda standardvärdet)
|
|
118
117
|
creation_enabled_for_participants: Deltagarna kan skapa inlägg
|
|
119
118
|
define_taxonomy_filters: Ställ in filter innan du använder den här inställningen.
|
|
120
119
|
no_taxonomy_filters_found: Inga filter för kategorier hittades.
|
data/config/locales/tr-TR.yml
CHANGED
|
@@ -6,7 +6,7 @@ tr:
|
|
|
6
6
|
body: Vücut
|
|
7
7
|
decidim_author_id: Yazar
|
|
8
8
|
published_at: Yayın zamanı
|
|
9
|
-
title: Başlik / Unvani
|
|
9
|
+
title: Başlik / Unvani
|
|
10
10
|
models:
|
|
11
11
|
decidim/blogs/create_post_event: Yeni blog yazısı
|
|
12
12
|
activerecord:
|
|
@@ -44,7 +44,6 @@ tr:
|
|
|
44
44
|
global:
|
|
45
45
|
announcement: duyuru
|
|
46
46
|
comments_enabled: Yorumlar etkin
|
|
47
|
-
comments_max_length: Maksimum yorum uzunluğu (Varsayılan değer için 0 bırakın)
|
|
48
47
|
step:
|
|
49
48
|
announcement: duyuru
|
|
50
49
|
comments_blocked: Yorumlar engellendi
|
data/config/locales/zh-CN.yml
CHANGED
data/config/locales/zh-TW.yml
CHANGED
|
@@ -38,7 +38,7 @@ Decidim.register_component(:blogs) do |component|
|
|
|
38
38
|
icon_name: "chat-1-line",
|
|
39
39
|
tooltip_key: "comments_count",
|
|
40
40
|
tag: :comments do |components, _start_at, _end_at|
|
|
41
|
-
Decidim::Blogs::Post.where(component: components).
|
|
41
|
+
Decidim::Blogs::Post.where(component: components).sum(:comments_count)
|
|
42
42
|
end
|
|
43
43
|
|
|
44
44
|
component.actions = %w(create update destroy)
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: decidim-blogs
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.31.
|
|
4
|
+
version: 0.31.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Isaac Massot Gil
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-
|
|
11
|
+
date: 2026-07-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: decidim-admin
|
|
@@ -16,98 +16,98 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - '='
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 0.31.
|
|
19
|
+
version: 0.31.6
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - '='
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: 0.31.
|
|
26
|
+
version: 0.31.6
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: decidim-comments
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
30
30
|
requirements:
|
|
31
31
|
- - '='
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: 0.31.
|
|
33
|
+
version: 0.31.6
|
|
34
34
|
type: :runtime
|
|
35
35
|
prerelease: false
|
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
38
|
- - '='
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
|
-
version: 0.31.
|
|
40
|
+
version: 0.31.6
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
42
|
name: decidim-core
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
|
44
44
|
requirements:
|
|
45
45
|
- - '='
|
|
46
46
|
- !ruby/object:Gem::Version
|
|
47
|
-
version: 0.31.
|
|
47
|
+
version: 0.31.6
|
|
48
48
|
type: :runtime
|
|
49
49
|
prerelease: false
|
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
|
51
51
|
requirements:
|
|
52
52
|
- - '='
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
|
-
version: 0.31.
|
|
54
|
+
version: 0.31.6
|
|
55
55
|
- !ruby/object:Gem::Dependency
|
|
56
56
|
name: decidim-admin
|
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
|
58
58
|
requirements:
|
|
59
59
|
- - '='
|
|
60
60
|
- !ruby/object:Gem::Version
|
|
61
|
-
version: 0.31.
|
|
61
|
+
version: 0.31.6
|
|
62
62
|
type: :development
|
|
63
63
|
prerelease: false
|
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
|
65
65
|
requirements:
|
|
66
66
|
- - '='
|
|
67
67
|
- !ruby/object:Gem::Version
|
|
68
|
-
version: 0.31.
|
|
68
|
+
version: 0.31.6
|
|
69
69
|
- !ruby/object:Gem::Dependency
|
|
70
70
|
name: decidim-assemblies
|
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
|
72
72
|
requirements:
|
|
73
73
|
- - '='
|
|
74
74
|
- !ruby/object:Gem::Version
|
|
75
|
-
version: 0.31.
|
|
75
|
+
version: 0.31.6
|
|
76
76
|
type: :development
|
|
77
77
|
prerelease: false
|
|
78
78
|
version_requirements: !ruby/object:Gem::Requirement
|
|
79
79
|
requirements:
|
|
80
80
|
- - '='
|
|
81
81
|
- !ruby/object:Gem::Version
|
|
82
|
-
version: 0.31.
|
|
82
|
+
version: 0.31.6
|
|
83
83
|
- !ruby/object:Gem::Dependency
|
|
84
84
|
name: decidim-dev
|
|
85
85
|
requirement: !ruby/object:Gem::Requirement
|
|
86
86
|
requirements:
|
|
87
87
|
- - '='
|
|
88
88
|
- !ruby/object:Gem::Version
|
|
89
|
-
version: 0.31.
|
|
89
|
+
version: 0.31.6
|
|
90
90
|
type: :development
|
|
91
91
|
prerelease: false
|
|
92
92
|
version_requirements: !ruby/object:Gem::Requirement
|
|
93
93
|
requirements:
|
|
94
94
|
- - '='
|
|
95
95
|
- !ruby/object:Gem::Version
|
|
96
|
-
version: 0.31.
|
|
96
|
+
version: 0.31.6
|
|
97
97
|
- !ruby/object:Gem::Dependency
|
|
98
98
|
name: decidim-participatory_processes
|
|
99
99
|
requirement: !ruby/object:Gem::Requirement
|
|
100
100
|
requirements:
|
|
101
101
|
- - '='
|
|
102
102
|
- !ruby/object:Gem::Version
|
|
103
|
-
version: 0.31.
|
|
103
|
+
version: 0.31.6
|
|
104
104
|
type: :development
|
|
105
105
|
prerelease: false
|
|
106
106
|
version_requirements: !ruby/object:Gem::Requirement
|
|
107
107
|
requirements:
|
|
108
108
|
- - '='
|
|
109
109
|
- !ruby/object:Gem::Version
|
|
110
|
-
version: 0.31.
|
|
110
|
+
version: 0.31.6
|
|
111
111
|
description: A Blog component for decidim's participatory spaces.
|
|
112
112
|
email:
|
|
113
113
|
- isaac.mg@coditramuntana.com
|