decidim-blogs 0.31.6 → 0.32.0.rc1
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/README.md +4 -14
- data/app/commands/decidim/blogs/update_post.rb +1 -1
- data/app/controllers/decidim/blogs/admin/posts_controller.rb +2 -2
- data/app/controllers/decidim/blogs/posts_controller.rb +16 -10
- data/app/forms/decidim/blogs/post_form.rb +3 -3
- 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 +3 -4
- data/app/views/decidim/blogs/posts/index.html.erb +1 -1
- data/app/views/decidim/blogs/posts/show.html.erb +1 -1
- data/config/locales/ar.yml +1 -1
- data/config/locales/bg.yml +1 -1
- data/config/locales/ca-IT.yml +2 -2
- data/config/locales/ca.yml +2 -2
- data/config/locales/cs.yml +2 -1
- data/config/locales/de.yml +2 -1
- data/config/locales/el.yml +1 -1
- data/config/locales/en.yml +2 -1
- data/config/locales/es-MX.yml +2 -2
- data/config/locales/es-PY.yml +2 -2
- data/config/locales/es.yml +2 -2
- data/config/locales/eu.yml +7 -7
- data/config/locales/fi-plain.yml +1 -1
- data/config/locales/fi.yml +1 -1
- data/config/locales/fr-CA.yml +2 -13
- data/config/locales/fr.yml +2 -13
- data/config/locales/ga-IE.yml +0 -1
- data/config/locales/gl.yml +1 -1
- data/config/locales/hu.yml +1 -1
- data/config/locales/id-ID.yml +0 -1
- data/config/locales/is-IS.yml +1 -2
- data/config/locales/it.yml +1 -1
- data/config/locales/ja.yml +2 -2
- data/config/locales/kaa.yml +0 -1
- data/config/locales/ko.yml +1 -1
- data/config/locales/lb.yml +1 -1
- data/config/locales/lt.yml +1 -1
- data/config/locales/lv.yml +0 -1
- data/config/locales/nl.yml +1 -1
- data/config/locales/no.yml +1 -1
- data/config/locales/pl.yml +1 -1
- data/config/locales/pt-BR.yml +2 -1
- data/config/locales/pt.yml +1 -1
- data/config/locales/ro-RO.yml +2 -1
- data/config/locales/ru.yml +1 -1
- data/config/locales/sk.yml +0 -117
- data/config/locales/sq-AL.yml +1 -1
- data/config/locales/sv.yml +2 -1
- data/config/locales/tr-TR.yml +2 -2
- data/config/locales/uk.yml +0 -1
- data/config/locales/zh-CN.yml +1 -1
- data/config/locales/zh-TW.yml +1 -1
- data/db/migrate/20260208201400_remove_user_group_blogs.rb +13 -0
- data/decidim-blogs.gemspec +10 -13
- data/lib/decidim/api/post_type.rb +0 -2
- data/lib/decidim/blogs/component.rb +2 -6
- data/lib/decidim/blogs/version.rb +1 -1
- metadata +19 -21
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f3c96f0c988e6ae20067891b3f91669de5cc4336eb23c2319b618a857e08831a
|
|
4
|
+
data.tar.gz: ea98eef313286de5bd4c28f6cf6af6716bc1a5278f0a20b8a6eefdd2a5e1ed77
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 833699c0cf242ee0b27c9c629975c6e995d6ea65f6054df0be88574d8d858d5118664cd62a92a851eb790fcd62a1ca7c2bbcc319ee8ee4dc0c651d59dbfdc314
|
|
7
|
+
data.tar.gz: a4842d3aa2c43236d47c544c30bee78dbf76ed09afe119588c89f3927659daada7da355fc8c2e485e3bef9851c0ffdc504ddb951077114d185a278b9eac52b76
|
data/README.md
CHANGED
|
@@ -1,25 +1,15 @@
|
|
|
1
1
|
# decidim-blogs
|
|
2
2
|
|
|
3
|
-
The
|
|
4
|
-
to the admin and public view scoped inside the participatory
|
|
3
|
+
The Blogs module adds posts to any participatory space. It adds a CRUD engine
|
|
4
|
+
to the admin and public view scoped inside the participatory space.
|
|
5
5
|
|
|
6
6
|
## Usage
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
Blogs will be available as a Component for a Participatory Space.
|
|
9
9
|
|
|
10
10
|
## Installation
|
|
11
11
|
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
```ruby
|
|
15
|
-
gem 'decidim-blogs'
|
|
16
|
-
```
|
|
17
|
-
|
|
18
|
-
And then execute:
|
|
19
|
-
|
|
20
|
-
```bash
|
|
21
|
-
bundle
|
|
22
|
-
```
|
|
12
|
+
This is on the default Decidim installation so you should not change anything to use this component.
|
|
23
13
|
|
|
24
14
|
## Contributing
|
|
25
15
|
|
|
@@ -26,7 +26,7 @@ module Decidim
|
|
|
26
26
|
|
|
27
27
|
on(:invalid) do
|
|
28
28
|
flash.now[:alert] = I18n.t("posts.create.invalid", scope: "decidim.blogs.admin")
|
|
29
|
-
render action: "new", status: :
|
|
29
|
+
render action: "new", status: :unprocessable_content
|
|
30
30
|
end
|
|
31
31
|
end
|
|
32
32
|
end
|
|
@@ -48,7 +48,7 @@ module Decidim
|
|
|
48
48
|
|
|
49
49
|
on(:invalid) do
|
|
50
50
|
flash.now[:alert] = I18n.t("posts.update.invalid", scope: "decidim.blogs.admin")
|
|
51
|
-
render action: "edit", status: :
|
|
51
|
+
render action: "edit", status: :unprocessable_content
|
|
52
52
|
end
|
|
53
53
|
end
|
|
54
54
|
end
|
|
@@ -12,7 +12,6 @@ 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]
|
|
16
15
|
|
|
17
16
|
def index; end
|
|
18
17
|
|
|
@@ -27,7 +26,7 @@ module Decidim
|
|
|
27
26
|
|
|
28
27
|
def create
|
|
29
28
|
enforce_permission_to :create, :blogpost
|
|
30
|
-
@form = form(Decidim::Blogs::PostForm).from_params(params, current_component:
|
|
29
|
+
@form = form(Decidim::Blogs::PostForm).from_params(params, current_component:)
|
|
31
30
|
|
|
32
31
|
CreatePost.call(@form) do
|
|
33
32
|
on(:ok) do |new_post|
|
|
@@ -37,7 +36,7 @@ module Decidim
|
|
|
37
36
|
|
|
38
37
|
on(:invalid) do
|
|
39
38
|
flash.now[:alert] = I18n.t("posts.create.invalid", scope: "decidim.blogs.admin")
|
|
40
|
-
render action: "new", status: :
|
|
39
|
+
render action: "new", status: :unprocessable_content
|
|
41
40
|
end
|
|
42
41
|
end
|
|
43
42
|
end
|
|
@@ -49,7 +48,7 @@ module Decidim
|
|
|
49
48
|
|
|
50
49
|
def update
|
|
51
50
|
enforce_permission_to :update, :blogpost, blogpost: post
|
|
52
|
-
@form = form(PostForm).from_params(params, current_component:
|
|
51
|
+
@form = form(PostForm).from_params(params, current_component:)
|
|
53
52
|
|
|
54
53
|
UpdatePost.call(@form, post) do
|
|
55
54
|
on(:ok) do |post|
|
|
@@ -59,7 +58,7 @@ module Decidim
|
|
|
59
58
|
|
|
60
59
|
on(:invalid) do
|
|
61
60
|
flash.now[:alert] = I18n.t("posts.update.invalid", scope: "decidim.blogs.admin")
|
|
62
|
-
render action: "edit", status: :
|
|
61
|
+
render action: "edit", status: :unprocessable_content
|
|
63
62
|
end
|
|
64
63
|
end
|
|
65
64
|
end
|
|
@@ -83,7 +82,7 @@ module Decidim
|
|
|
83
82
|
end
|
|
84
83
|
|
|
85
84
|
def post
|
|
86
|
-
@post ||= posts.
|
|
85
|
+
@post ||= posts.find_by(id: params[:id])
|
|
87
86
|
end
|
|
88
87
|
|
|
89
88
|
def post_presenter
|
|
@@ -98,11 +97,18 @@ module Decidim
|
|
|
98
97
|
end
|
|
99
98
|
end
|
|
100
99
|
|
|
101
|
-
# PROVISIONAL if we implement counter cache
|
|
102
100
|
def posts_most_commented
|
|
103
|
-
@posts_most_commented ||= posts.
|
|
104
|
-
|
|
105
|
-
|
|
101
|
+
@posts_most_commented ||= posts.order(comments_count: :desc).published_at_desc.limit(7)
|
|
102
|
+
end
|
|
103
|
+
|
|
104
|
+
def add_breadcrumb_item
|
|
105
|
+
return {} if post.blank?
|
|
106
|
+
|
|
107
|
+
{
|
|
108
|
+
label: translated_attribute(post.title),
|
|
109
|
+
url: Decidim::EngineRouter.main_proxy(current_component).post_path(post),
|
|
110
|
+
active: false
|
|
111
|
+
}
|
|
106
112
|
end
|
|
107
113
|
end
|
|
108
114
|
end
|
|
@@ -14,7 +14,7 @@ module Decidim
|
|
|
14
14
|
|
|
15
15
|
attribute :decidim_author_id, Integer
|
|
16
16
|
|
|
17
|
-
attachments_attribute :
|
|
17
|
+
attachments_attribute :documents
|
|
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.documents = model.attachments
|
|
32
32
|
end
|
|
33
33
|
|
|
34
34
|
def author
|
|
@@ -48,7 +48,7 @@ module Decidim
|
|
|
48
48
|
end
|
|
49
49
|
|
|
50
50
|
def post
|
|
51
|
-
@post ||= Post.find_by(id:
|
|
51
|
+
@post ||= Post.find_by(id:)
|
|
52
52
|
end
|
|
53
53
|
|
|
54
54
|
def participatory_space_manifest
|
|
@@ -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")
|
|
73
|
+
<%= with_tooltip t("tooltips.deleted_posts_info", scope: "decidim.admin") 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 :documents,
|
|
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"
|
|
3
|
+
<li role="menuitem" class="dropdown__item">
|
|
4
|
+
<%= link_to edit_post_path(post), class: "dropdown__button" do %>
|
|
5
5
|
<span><%= t("button_edit", scope: "decidim.blogs.posts.menu_actions") %></span>
|
|
6
6
|
<%= icon "pencil-line" %>
|
|
7
7
|
<% end %>
|
|
@@ -9,11 +9,10 @@
|
|
|
9
9
|
<% end %>
|
|
10
10
|
|
|
11
11
|
<% if allowed_to?(:destroy, :blogpost, blogpost: post) %>
|
|
12
|
-
<li role="
|
|
12
|
+
<li role="menuitem" class="dropdown__item">
|
|
13
13
|
<%= link_to post_path(post),
|
|
14
14
|
method: :delete,
|
|
15
15
|
class: "dropdown__button",
|
|
16
|
-
role: "menuitem",
|
|
17
16
|
data: { confirm: t("button_destroy_confirm", scope: "decidim.blogs.posts.menu_actions") } do %>
|
|
18
17
|
<span><%= t("button_destroy", scope: "decidim.blogs.posts.menu_actions") %></span>
|
|
19
18
|
<%= icon "delete-bin-line" %>
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<% add_decidim_meta_tags(
|
|
2
2
|
description: translated_attribute(current_component.participatory_space.try(:description)),
|
|
3
3
|
title: t("decidim.components.pagination.page_title",
|
|
4
|
-
component_name
|
|
4
|
+
component_name:,
|
|
5
5
|
current_page: paginate_posts.current_page,
|
|
6
6
|
total_pages: paginate_posts.total_pages ),
|
|
7
7
|
url: posts_url,
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
<%= cell "decidim/author", post_presenter.author, from: post, context_actions: [:date], layout: :compact %>
|
|
40
40
|
</div>
|
|
41
41
|
<%= render "decidim/shared/resource_actions", resource: post do %>
|
|
42
|
-
<%= render "decidim/blogs/posts/menu_actions", post:
|
|
42
|
+
<%= render "decidim/blogs/posts/menu_actions", post: %>
|
|
43
43
|
<% end %>
|
|
44
44
|
</div>
|
|
45
45
|
</div>
|
data/config/locales/ar.yml
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
---
|
|
2
1
|
ar:
|
|
3
2
|
activemodel:
|
|
4
3
|
attributes:
|
|
@@ -67,6 +66,7 @@ ar:
|
|
|
67
66
|
global:
|
|
68
67
|
announcement: إعلان
|
|
69
68
|
comments_enabled: تم تمكين التعليقات
|
|
69
|
+
comments_max_length: الحد الأقصى لطول التعليقات (اترك 0 للقيمة الافتراضية)
|
|
70
70
|
step:
|
|
71
71
|
announcement: إعلان
|
|
72
72
|
comments_blocked: تم حظر التعليقات
|
data/config/locales/bg.yml
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
---
|
|
2
1
|
bg:
|
|
3
2
|
activemodel:
|
|
4
3
|
attributes:
|
|
@@ -76,6 +75,7 @@ bg:
|
|
|
76
75
|
global:
|
|
77
76
|
announcement: Обявление
|
|
78
77
|
comments_enabled: Коментарите са разрешени
|
|
78
|
+
comments_max_length: Максимална дължина на коментарите (Оставете 0 за стойност по подразбиране)
|
|
79
79
|
step:
|
|
80
80
|
announcement: Обявление
|
|
81
81
|
comments_blocked: Коментарите са блокирани
|
data/config/locales/ca-IT.yml
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
---
|
|
2
1
|
ca-IT:
|
|
3
2
|
activemodel:
|
|
4
3
|
attributes:
|
|
@@ -108,13 +107,14 @@ ca-IT:
|
|
|
108
107
|
destroy: Esborrar
|
|
109
108
|
like: '"M''agrada"'
|
|
110
109
|
update: Actualitzar
|
|
110
|
+
vote_comment: Votar el comentari
|
|
111
111
|
name: Blog
|
|
112
112
|
settings:
|
|
113
113
|
global:
|
|
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: Longitud màxima dels comentaris (deixa 0 si vols mantenir la configuració per defecte)
|
|
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
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
---
|
|
2
1
|
ca:
|
|
3
2
|
activemodel:
|
|
4
3
|
attributes:
|
|
@@ -108,13 +107,14 @@ ca:
|
|
|
108
107
|
destroy: Esborrar
|
|
109
108
|
like: '"M''agrada"'
|
|
110
109
|
update: Actualitzar
|
|
110
|
+
vote_comment: Votar el comentari
|
|
111
111
|
name: Blog
|
|
112
112
|
settings:
|
|
113
113
|
global:
|
|
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: Longitud màxima dels comentaris (deixa 0 si vols mantenir la configuració per defecte)
|
|
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
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
---
|
|
2
1
|
cs:
|
|
3
2
|
activemodel:
|
|
4
3
|
attributes:
|
|
@@ -112,12 +111,14 @@ cs:
|
|
|
112
111
|
destroy: Smazat
|
|
113
112
|
like: Líbí se mi
|
|
114
113
|
update: Aktualizovat
|
|
114
|
+
vote_comment: Komentář hlasování
|
|
115
115
|
name: Blog
|
|
116
116
|
settings:
|
|
117
117
|
global:
|
|
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)
|
|
121
122
|
creation_enabled_for_participants: Účastníci mohou vytvářet příspěvky
|
|
122
123
|
define_taxonomy_filters: Před použitím tohoto nastavení prosím definujte některé filtry pro tento participační prostor.
|
|
123
124
|
no_taxonomy_filters_found: Nebyly nalezeny žádné filtry taxonomie.
|
data/config/locales/de.yml
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
---
|
|
2
1
|
de:
|
|
3
2
|
activemodel:
|
|
4
3
|
attributes:
|
|
@@ -108,12 +107,14 @@ de:
|
|
|
108
107
|
destroy: Löschen
|
|
109
108
|
like: Like
|
|
110
109
|
update: Aktualisieren
|
|
110
|
+
vote_comment: Kommentar bewerten
|
|
111
111
|
name: Blog
|
|
112
112
|
settings:
|
|
113
113
|
global:
|
|
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)
|
|
117
118
|
creation_enabled_for_participants: Teilnehmende können Beiträge erstellen
|
|
118
119
|
define_taxonomy_filters: Bitte definieren Sie einige Filter für diesen partizipativen Bereich, bevor Sie diese Einstellung verwenden.
|
|
119
120
|
no_taxonomy_filters_found: Keine Klassifizierungsfilter gefunden.
|
data/config/locales/el.yml
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
---
|
|
2
1
|
el:
|
|
3
2
|
activemodel:
|
|
4
3
|
attributes:
|
|
@@ -65,6 +64,7 @@ el:
|
|
|
65
64
|
global:
|
|
66
65
|
announcement: Ανακοίνωση
|
|
67
66
|
comments_enabled: Τα σχόλια ενεργοποιήθηκαν
|
|
67
|
+
comments_max_length: Μέγιστο μέγεθος σχολίων (Αφήστε το 0 για το προκαθορισμένο μέγεθος)
|
|
68
68
|
step:
|
|
69
69
|
announcement: Ανακοίνωση
|
|
70
70
|
comments_blocked: Τα σχόλια αποκλείστηκαν
|
data/config/locales/en.yml
CHANGED
|
@@ -108,13 +108,14 @@ en:
|
|
|
108
108
|
destroy: Delete
|
|
109
109
|
like: Like
|
|
110
110
|
update: Update
|
|
111
|
+
vote_comment: Vote comment
|
|
111
112
|
name: Blog
|
|
112
113
|
settings:
|
|
113
114
|
global:
|
|
114
115
|
announcement: Announcement
|
|
115
116
|
attachments_allowed: Allow attachments
|
|
116
117
|
comments_enabled: Comments enabled
|
|
117
|
-
comments_max_length:
|
|
118
|
+
comments_max_length: Comments max length (Leave 0 for default value)
|
|
118
119
|
creation_enabled_for_participants: Participants can create posts
|
|
119
120
|
define_taxonomy_filters: Please define some filters for this participatory space before using this setting.
|
|
120
121
|
no_taxonomy_filters_found: No taxonomy filters found.
|
data/config/locales/es-MX.yml
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
---
|
|
2
1
|
es-MX:
|
|
3
2
|
activemodel:
|
|
4
3
|
attributes:
|
|
@@ -108,13 +107,14 @@ es-MX:
|
|
|
108
107
|
destroy: Borrar
|
|
109
108
|
like: '"Me gusta"'
|
|
110
109
|
update: Actualizar
|
|
110
|
+
vote_comment: Votar el comentario
|
|
111
111
|
name: Blog
|
|
112
112
|
settings:
|
|
113
113
|
global:
|
|
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: Longitud máxima de los comentarios (deja 0 si quieres mantener la configuración por defecto)
|
|
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
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
---
|
|
2
1
|
es-PY:
|
|
3
2
|
activemodel:
|
|
4
3
|
attributes:
|
|
@@ -108,13 +107,14 @@ es-PY:
|
|
|
108
107
|
destroy: Borrar
|
|
109
108
|
like: '"Me gusta"'
|
|
110
109
|
update: Actualizar
|
|
110
|
+
vote_comment: Votar el comentario
|
|
111
111
|
name: Blog
|
|
112
112
|
settings:
|
|
113
113
|
global:
|
|
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: Longitud máxima de los comentarios (deja 0 si quieres mantener la configuración por defecto)
|
|
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
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
---
|
|
2
1
|
es:
|
|
3
2
|
activemodel:
|
|
4
3
|
attributes:
|
|
@@ -108,13 +107,14 @@ es:
|
|
|
108
107
|
destroy: Borrar
|
|
109
108
|
like: '"Me gusta"'
|
|
110
109
|
update: Actualizar
|
|
110
|
+
vote_comment: Votar el comentario
|
|
111
111
|
name: Blog
|
|
112
112
|
settings:
|
|
113
113
|
global:
|
|
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: Longitud máxima de los comentarios (deja 0 si quieres mantener la configuración por defecto)
|
|
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
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
---
|
|
2
1
|
eu:
|
|
3
2
|
activemodel:
|
|
4
3
|
attributes:
|
|
5
4
|
post:
|
|
6
|
-
body:
|
|
5
|
+
body: Testua
|
|
7
6
|
decidim_author_id: Egilea
|
|
8
7
|
published_at: Argitaratze-data
|
|
9
8
|
title: Izenburua
|
|
@@ -60,7 +59,7 @@ eu:
|
|
|
60
59
|
update: "%{user_name} parte-hartzailekak %{resource_name} blogeko argitalpena eguneratu egin da %{space_name} espazioan"
|
|
61
60
|
content_blocks:
|
|
62
61
|
highlighted_posts:
|
|
63
|
-
last_published: Azken
|
|
62
|
+
last_published: Azken argitarapena
|
|
64
63
|
name: Argitalpenak
|
|
65
64
|
see_all: Ikusi argitalpen guztiak
|
|
66
65
|
last_activity:
|
|
@@ -69,7 +68,7 @@ eu:
|
|
|
69
68
|
post:
|
|
70
69
|
fields:
|
|
71
70
|
author: Egilea
|
|
72
|
-
body:
|
|
71
|
+
body: Testua
|
|
73
72
|
official_blog_post: Argitalpen ofiziala
|
|
74
73
|
published_at: Argitaratze-data
|
|
75
74
|
taxonomies: Taxonomiak
|
|
@@ -88,7 +87,7 @@ eu:
|
|
|
88
87
|
title: Izenburua
|
|
89
88
|
index:
|
|
90
89
|
count:
|
|
91
|
-
one: "Argitalpen
|
|
90
|
+
one: "Argitalpen %{count}"
|
|
92
91
|
other: "%{count} argitalpen"
|
|
93
92
|
empty: Oraindik ez dago argitalpenik.
|
|
94
93
|
new_post: Beste sarrera bat
|
|
@@ -108,13 +107,14 @@ eu:
|
|
|
108
107
|
destroy: Ezabatu
|
|
109
108
|
like: Atsegin dut
|
|
110
109
|
update: Eguneratu
|
|
110
|
+
vote_comment: Bozkatu iruzkina
|
|
111
111
|
name: Bloga
|
|
112
112
|
settings:
|
|
113
113
|
global:
|
|
114
114
|
announcement: Iragarpena
|
|
115
115
|
attachments_allowed: Baimendu eranskinak
|
|
116
116
|
comments_enabled: Iruzkinak gaituta
|
|
117
|
-
comments_max_length:
|
|
117
|
+
comments_max_length: Iruzkinen gehieneko luzera (utzi 0 lehenetsitako konfigurazioari eutsi nahi badiozu)
|
|
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.
|
|
@@ -130,7 +130,7 @@ eu:
|
|
|
130
130
|
post_created:
|
|
131
131
|
email_intro: '"%{resource_title}" argitalpena jarraitzen ari zaren "%{participatory_space_title}" espazioan argitaratu da.'
|
|
132
132
|
email_outro: Jakinarazpen hau jaso duzu "%{participatory_space_title}" jarraitzen ari zarelako. Aurreko estekan sartu jarraitzeari uzteko.
|
|
133
|
-
email_subject:
|
|
133
|
+
email_subject: Argitalpen berria %{participatory_space_title} espazioan
|
|
134
134
|
notification_title: <a href="%{resource_path}">%{resource_title}</a> sarrera %{participatory_space_title} argitaratu da
|
|
135
135
|
open_data:
|
|
136
136
|
help:
|
data/config/locales/fi-plain.yml
CHANGED
data/config/locales/fi.yml
CHANGED
data/config/locales/fr-CA.yml
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
---
|
|
2
1
|
fr-CA:
|
|
3
2
|
activemodel:
|
|
4
3
|
attributes:
|
|
@@ -106,15 +105,15 @@ fr-CA:
|
|
|
106
105
|
comment: Commenter
|
|
107
106
|
create: Créer
|
|
108
107
|
destroy: Supprimer
|
|
109
|
-
like: Soutenir
|
|
110
108
|
update: Mettre à jour
|
|
109
|
+
vote_comment: Vote sur le commentaire
|
|
111
110
|
name: Actualités
|
|
112
111
|
settings:
|
|
113
112
|
global:
|
|
114
113
|
announcement: Annonce
|
|
115
114
|
attachments_allowed: Autoriser les pièces jointes
|
|
116
115
|
comments_enabled: Activer le module de commentaire
|
|
117
|
-
comments_max_length:
|
|
116
|
+
comments_max_length: Longueur max des commentaires (laisser 0 pour la valeur par défaut)
|
|
118
117
|
creation_enabled_for_participants: Les participants peuvent créer des articles
|
|
119
118
|
define_taxonomy_filters: Veuillez définir des filtres pour cet espace participatif avant d'utiliser ce paramètre.
|
|
120
119
|
no_taxonomy_filters_found: Aucun filtre de taxonomie trouvé.
|
|
@@ -123,8 +122,6 @@ fr-CA:
|
|
|
123
122
|
step:
|
|
124
123
|
announcement: Annonce
|
|
125
124
|
comments_blocked: Commentaires désactivés
|
|
126
|
-
likes_blocked: Soutiens bloqués
|
|
127
|
-
likes_enabled: Soutiens activés
|
|
128
125
|
events:
|
|
129
126
|
blogs:
|
|
130
127
|
post_created:
|
|
@@ -139,22 +136,14 @@ fr-CA:
|
|
|
139
136
|
author: Le nom du participant qui a fait ce commentaire
|
|
140
137
|
body: Le commentaire lui-même
|
|
141
138
|
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.)
|
|
143
139
|
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)
|
|
145
140
|
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
|
|
148
141
|
posts:
|
|
149
|
-
author: Les informations de l'auteur
|
|
150
142
|
body: Le corps de l'article
|
|
151
143
|
comments_count: Le nombre de commentaires sur cet article
|
|
152
144
|
component: Le composant auquel appartient l'article
|
|
153
145
|
created_at: La date de création de cet article
|
|
154
|
-
follows_count: Le nombre de personnes qui suivent cet article
|
|
155
146
|
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'
|
|
158
147
|
published_at: La date à laquelle cet article a été publié
|
|
159
148
|
title: Le titre de l'article
|
|
160
149
|
updated_at: La dernière date de mise à jour de cet article
|
data/config/locales/fr.yml
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
---
|
|
2
1
|
fr:
|
|
3
2
|
activemodel:
|
|
4
3
|
attributes:
|
|
@@ -106,15 +105,15 @@ fr:
|
|
|
106
105
|
comment: Commenter
|
|
107
106
|
create: Créer
|
|
108
107
|
destroy: Supprimer
|
|
109
|
-
like: Soutenir
|
|
110
108
|
update: Mettre à jour
|
|
109
|
+
vote_comment: Vote sur le commentaire
|
|
111
110
|
name: Actualités
|
|
112
111
|
settings:
|
|
113
112
|
global:
|
|
114
113
|
announcement: Annonce
|
|
115
114
|
attachments_allowed: Autoriser les pièces jointes
|
|
116
115
|
comments_enabled: Activer le module de commentaire
|
|
117
|
-
comments_max_length:
|
|
116
|
+
comments_max_length: Longueur max des commentaires (laisser 0 pour la valeur par défaut)
|
|
118
117
|
creation_enabled_for_participants: Les participants peuvent créer des articles
|
|
119
118
|
define_taxonomy_filters: Veuillez définir des filtres pour cet espace participatif avant d'utiliser ce paramètre.
|
|
120
119
|
no_taxonomy_filters_found: Aucun filtre de taxonomie trouvé.
|
|
@@ -123,8 +122,6 @@ fr:
|
|
|
123
122
|
step:
|
|
124
123
|
announcement: Annonce
|
|
125
124
|
comments_blocked: Commentaires désactivés
|
|
126
|
-
likes_blocked: Soutiens bloqués
|
|
127
|
-
likes_enabled: Soutiens activés
|
|
128
125
|
events:
|
|
129
126
|
blogs:
|
|
130
127
|
post_created:
|
|
@@ -139,22 +136,14 @@ fr:
|
|
|
139
136
|
author: Le nom du participant qui a fait ce commentaire
|
|
140
137
|
body: Le commentaire lui-même
|
|
141
138
|
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.)
|
|
143
139
|
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)
|
|
145
140
|
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
|
|
148
141
|
posts:
|
|
149
|
-
author: Les informations de l'auteur
|
|
150
142
|
body: Le corps de l'article
|
|
151
143
|
comments_count: Le nombre de commentaires sur cet article
|
|
152
144
|
component: Le composant auquel appartient l'article
|
|
153
145
|
created_at: La date de création de cet article
|
|
154
|
-
follows_count: Le nombre de personnes qui suivent cet article
|
|
155
146
|
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'
|
|
158
147
|
published_at: La date à laquelle cet article a été publié
|
|
159
148
|
title: Le titre de l'article
|
|
160
149
|
updated_at: La dernière date de mise à jour de cet article
|
data/config/locales/ga-IE.yml
CHANGED