decidim-blogs 0.30.1 → 0.31.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/app/cells/decidim/blogs/post_metadata_cell.rb +1 -1
- data/app/commands/decidim/blogs/admin/create_post.rb +1 -1
- data/app/commands/decidim/blogs/admin/update_post.rb +1 -1
- data/app/commands/decidim/blogs/create_post.rb +26 -3
- data/app/commands/decidim/blogs/update_post.rb +26 -1
- data/app/controllers/decidim/blogs/admin/posts_controller.rb +2 -3
- data/app/controllers/decidim/blogs/posts_controller.rb +2 -3
- data/app/forms/decidim/blogs/admin/post_form.rb +5 -3
- data/app/forms/decidim/blogs/post_form.rb +10 -3
- data/app/helpers/decidim/blogs/admin/posts_helper.rb +2 -4
- data/app/helpers/decidim/blogs/application_helper.rb +1 -1
- data/app/helpers/decidim/blogs/posts_select_helper.rb +0 -9
- data/app/models/decidim/blogs/post.rb +9 -6
- data/app/packs/stylesheets/blogs.scss +1 -1
- data/app/permissions/decidim/blog/permissions.rb +1 -3
- data/app/presenters/decidim/blogs/post_presenter.rb +10 -6
- data/app/views/decidim/blogs/admin/posts/_actions.html.erb +84 -21
- data/app/views/decidim/blogs/admin/posts/_form.html.erb +7 -0
- data/app/views/decidim/blogs/admin/posts/_post-tr.html.erb +11 -8
- data/app/views/decidim/blogs/admin/posts/_posts-thead.html.erb +1 -0
- data/app/views/decidim/blogs/admin/posts/index.html.erb +2 -2
- data/app/views/decidim/blogs/admin/posts/manage_trash.html.erb +2 -1
- data/app/views/decidim/blogs/posts/_actions.html.erb +2 -2
- data/app/views/decidim/blogs/posts/_form.html.erb +23 -2
- data/app/views/decidim/blogs/posts/_menu_actions.html.erb +4 -4
- data/config/assets.rb +2 -2
- data/config/locales/ar.yml +0 -3
- data/config/locales/bg.yml +0 -3
- data/config/locales/bs-BA.yml +0 -8
- data/config/locales/ca-IT.yml +16 -5
- data/config/locales/ca.yml +16 -5
- data/config/locales/cs.yml +16 -5
- data/config/locales/de.yml +16 -5
- data/config/locales/el.yml +0 -3
- data/config/locales/en.yml +16 -5
- data/config/locales/es-MX.yml +16 -5
- data/config/locales/es-PY.yml +16 -5
- data/config/locales/es.yml +16 -5
- data/config/locales/eu.yml +17 -6
- data/config/locales/fi-plain.yml +16 -5
- data/config/locales/fi.yml +16 -5
- data/config/locales/fr-CA.yml +12 -4
- data/config/locales/fr.yml +12 -4
- data/config/locales/ga-IE.yml +0 -5
- data/config/locales/gl.yml +0 -2
- data/config/locales/hu.yml +0 -3
- data/config/locales/it.yml +0 -3
- data/config/locales/ja.yml +16 -5
- data/config/locales/lb.yml +0 -3
- data/config/locales/lt.yml +0 -3
- data/config/locales/lv.yml +0 -2
- data/config/locales/nl.yml +0 -2
- data/config/locales/no.yml +0 -2
- data/config/locales/pl.yml +0 -3
- data/config/locales/pt-BR.yml +0 -3
- data/config/locales/pt.yml +0 -4
- data/config/locales/ro-RO.yml +10 -5
- data/config/locales/ru.yml +0 -3
- data/config/locales/sk.yml +0 -2
- data/config/locales/sq-AL.yml +0 -3
- data/config/locales/sr-CS.yml +0 -8
- data/config/locales/sv.yml +16 -5
- data/config/locales/tr-TR.yml +0 -2
- data/config/locales/zh-CN.yml +0 -2
- data/config/locales/zh-TW.yml +0 -3
- data/db/migrate/20250515133229_rename_blog_posts_endorsements_count_to_likes.rb +7 -0
- data/lib/decidim/api/post_input_sort.rb +1 -1
- data/lib/decidim/api/post_type.rb +7 -1
- data/lib/decidim/blogs/component.rb +19 -5
- data/lib/decidim/blogs/engine.rb +1 -1
- data/lib/decidim/blogs/post_serializer.rb +2 -2
- data/lib/decidim/blogs/schema_org_blog_posting_post_serializer.rb +0 -10
- data/lib/decidim/blogs/seeds.rb +2 -4
- data/lib/decidim/blogs/test/factories.rb +15 -6
- data/lib/decidim/blogs/version.rb +1 -1
- metadata +17 -16
@@ -3,9 +3,30 @@
|
|
3
3
|
</div>
|
4
4
|
|
5
5
|
<div>
|
6
|
-
<%= form.text_field :title, label: t(".title"), autofocus: true
|
6
|
+
<%= form.text_field :title, label: t(".title"), autofocus: true %>
|
7
7
|
</div>
|
8
8
|
|
9
9
|
<div>
|
10
|
-
<%= text_editor_for(form, :body, label: t(".body"),
|
10
|
+
<%= text_editor_for(form, :body, label: t(".body"), value: translated_attribute(form.object.body)) %>
|
11
11
|
</div>
|
12
|
+
|
13
|
+
<% if component_settings.attachments_allowed? %>
|
14
|
+
<div>
|
15
|
+
<%= form.attachment :documents,
|
16
|
+
multiple: true,
|
17
|
+
label: t("decidim.blogs.posts.edit.add_attachments"),
|
18
|
+
button_label: t("decidim.blogs.posts.edit.add_attachments"),
|
19
|
+
button_edit_label: t("decidim.blogs.posts.edit.edit_attachments"),
|
20
|
+
button_class: "button button__lg button__transparent-secondary w-full",
|
21
|
+
help_i18n_scope: "decidim.forms.file_help.file",
|
22
|
+
help_text: t("attachment_legend", scope: "decidim.blogs.posts.edit") %>
|
23
|
+
</div>
|
24
|
+
<% end %>
|
25
|
+
|
26
|
+
<% if @form.taxonomy_filters&.any? %>
|
27
|
+
<% @form.taxonomy_filters.each do |filter| %>
|
28
|
+
<div class="row column">
|
29
|
+
<%= filter_taxonomy_items_select_field form, :taxonomies, filter %>
|
30
|
+
</div>
|
31
|
+
<% end %>
|
32
|
+
<% end %>
|
@@ -1,7 +1,7 @@
|
|
1
1
|
|
2
2
|
<% if allowed_to?(:update, :blogpost, blogpost: post) %>
|
3
|
-
<li role="menuitem">
|
4
|
-
<%= link_to edit_post_path(post), class: "
|
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,10 +9,10 @@
|
|
9
9
|
<% end %>
|
10
10
|
|
11
11
|
<% if allowed_to?(:destroy, :blogpost, blogpost: post) %>
|
12
|
-
<li role="menuitem">
|
12
|
+
<li role="menuitem" class="dropdown__item">
|
13
13
|
<%= link_to post_path(post),
|
14
14
|
method: :delete,
|
15
|
-
class: "
|
15
|
+
class: "dropdown__button",
|
16
16
|
data: { confirm: t("button_destroy_confirm", scope: "decidim.blogs.posts.menu_actions") } do %>
|
17
17
|
<span><%= t("button_destroy", scope: "decidim.blogs.posts.menu_actions") %></span>
|
18
18
|
<%= icon "delete-bin-line" %>
|
data/config/assets.rb
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
base_path = File.expand_path("..", __dir__)
|
4
4
|
|
5
|
-
Decidim::
|
6
|
-
Decidim::
|
5
|
+
Decidim::Shakapacker.register_path("#{base_path}/app/packs")
|
6
|
+
Decidim::Shakapacker.register_entrypoints(
|
7
7
|
decidim_blogs: "#{base_path}/app/packs/entrypoints/decidim_blogs.js"
|
8
8
|
)
|
data/config/locales/ar.yml
CHANGED
@@ -61,7 +61,6 @@ ar:
|
|
61
61
|
comment: التعليق
|
62
62
|
create: إنشاء
|
63
63
|
destroy: حذف
|
64
|
-
endorse: تأييد
|
65
64
|
update: تحديث
|
66
65
|
name: مدونة
|
67
66
|
settings:
|
@@ -72,8 +71,6 @@ ar:
|
|
72
71
|
step:
|
73
72
|
announcement: إعلان
|
74
73
|
comments_blocked: تم حظر التعليقات
|
75
|
-
endorsements_blocked: التأييدات مغلقةٌ
|
76
|
-
endorsements_enabled: التأييدات مُتاحه
|
77
74
|
events:
|
78
75
|
blogs:
|
79
76
|
post_created:
|
data/config/locales/bg.yml
CHANGED
@@ -70,7 +70,6 @@ bg:
|
|
70
70
|
comment: Коментар
|
71
71
|
create: Създаване
|
72
72
|
destroy: Изтрий
|
73
|
-
endorse: Подкрепете
|
74
73
|
update: Актуализация
|
75
74
|
name: Блог
|
76
75
|
settings:
|
@@ -81,8 +80,6 @@ bg:
|
|
81
80
|
step:
|
82
81
|
announcement: Обявление
|
83
82
|
comments_blocked: Коментарите са блокирани
|
84
|
-
endorsements_blocked: Подкрепата е блокирана
|
85
|
-
endorsements_enabled: Подкрепата е активирана
|
86
83
|
events:
|
87
84
|
blogs:
|
88
85
|
post_created:
|
data/config/locales/bs-BA.yml
CHANGED
data/config/locales/ca-IT.yml
CHANGED
@@ -19,6 +19,8 @@ ca-IT:
|
|
19
19
|
admin_log:
|
20
20
|
changeset:
|
21
21
|
posts: Entrades al blog
|
22
|
+
tooltips:
|
23
|
+
deleted_posts_info: No es pot esborrar aquesta entrada al blog
|
22
24
|
blogs:
|
23
25
|
actions:
|
24
26
|
author_id: Crear publicació com
|
@@ -70,11 +72,15 @@ ca-IT:
|
|
70
72
|
body: Cos
|
71
73
|
official_blog_post: Post oficial
|
72
74
|
published_at: Hora de publicació
|
75
|
+
taxonomies: Taxonomies
|
73
76
|
title: Títol
|
74
77
|
posts:
|
75
78
|
edit:
|
79
|
+
add_attachments: Afegir fitxer(s) adjunt(s)
|
80
|
+
attachment_legend: Afegir un document o una imatge
|
76
81
|
back: Tornar a la publicació
|
77
82
|
button: Actualitzar
|
83
|
+
edit_attachments: Edita els fitxers adjunts
|
78
84
|
title: Editar la publicació
|
79
85
|
form:
|
80
86
|
author_id: Autoria
|
@@ -100,20 +106,25 @@ ca-IT:
|
|
100
106
|
comment: Comentar
|
101
107
|
create: Crear
|
102
108
|
destroy: Esborrar
|
103
|
-
|
109
|
+
like: '"M''agrada"'
|
104
110
|
update: Actualitzar
|
105
111
|
name: Blog
|
106
112
|
settings:
|
107
113
|
global:
|
108
114
|
announcement: Avís
|
115
|
+
attachments_allowed: Permetre fitxers adjunts
|
109
116
|
comments_enabled: Comentaris habilitats
|
110
117
|
comments_max_length: Longitud màxima dels comentaris (deixa 0 si vols mantenir la configuració per defecte)
|
111
118
|
creation_enabled_for_participants: Les participants poden crear noves entrades en el blog
|
119
|
+
define_taxonomy_filters: Si us plau, defineix alguns filtres per aquest espai de participació abans de fer servir aquesta configuració.
|
120
|
+
no_taxonomy_filters_found: No s'han trobat filtres de taxonomia.
|
121
|
+
taxonomy_filters: Seleccionar filtres pel component
|
122
|
+
taxonomy_filters_add: Afegir un filtre
|
112
123
|
step:
|
113
124
|
announcement: Avís
|
114
125
|
comments_blocked: Comentaris bloquejats
|
115
|
-
|
116
|
-
|
126
|
+
likes_blocked: '"M''agrada" desactivats'
|
127
|
+
likes_enabled: '"M''agrada" activats'
|
117
128
|
events:
|
118
129
|
blogs:
|
119
130
|
post_created:
|
@@ -134,16 +145,15 @@ ca-IT:
|
|
134
145
|
id: L'identificador id d'aquest comentari
|
135
146
|
locale: La configuració regional (idioma) que la participant tenia en deixar aquest comentari
|
136
147
|
root_commentable_url: L'URL (adreça web) del recurs que enllaça amb aquest comentari
|
137
|
-
user_group: El nom del grup d'usuàries que va fer aquest comentari (si n'hi ha)
|
138
148
|
posts:
|
139
149
|
author: La informació de l'autoria
|
140
150
|
body: El contingut de la publicació
|
141
151
|
comments_count: El número de comentaris que té aquesta publicació
|
142
152
|
component: El component al qual pertany aquesta publicació
|
143
153
|
created_at: La data en què es va crear aquesta publicació
|
144
|
-
endorsements_count: El número d'adhesions que té aquesta publicació
|
145
154
|
follows_count: El número de seguidores que té aquesta publicació
|
146
155
|
id: L'identificador únic de la publicació
|
156
|
+
likes_count: El número de "M'agrada" que té aquesta publicació
|
147
157
|
participatory_space: A quin espai pertany aquesta publicació (procés participatiu, assemblea, etc.)
|
148
158
|
published_at: La data en què es va publicar aquesta entrada al blog
|
149
159
|
title: El títol de la publicació
|
@@ -151,3 +161,4 @@ ca-IT:
|
|
151
161
|
url: L'URL d'aquesta publicació
|
152
162
|
statistics:
|
153
163
|
posts_count: Publicacions
|
164
|
+
posts_count_tooltip: El número d'actualitzacions publicades o entrades al blog.
|
data/config/locales/ca.yml
CHANGED
@@ -19,6 +19,8 @@ ca:
|
|
19
19
|
admin_log:
|
20
20
|
changeset:
|
21
21
|
posts: Entrades al blog
|
22
|
+
tooltips:
|
23
|
+
deleted_posts_info: No es pot esborrar aquesta entrada al blog
|
22
24
|
blogs:
|
23
25
|
actions:
|
24
26
|
author_id: Crear publicació com
|
@@ -70,11 +72,15 @@ ca:
|
|
70
72
|
body: Cos
|
71
73
|
official_blog_post: Post oficial
|
72
74
|
published_at: Hora de publicació
|
75
|
+
taxonomies: Taxonomies
|
73
76
|
title: Títol
|
74
77
|
posts:
|
75
78
|
edit:
|
79
|
+
add_attachments: Afegir fitxer(s) adjunt(s)
|
80
|
+
attachment_legend: Afegir un document o una imatge
|
76
81
|
back: Tornar a la publicació
|
77
82
|
button: Actualitzar
|
83
|
+
edit_attachments: Edita els fitxers adjunts
|
78
84
|
title: Editar la publicació
|
79
85
|
form:
|
80
86
|
author_id: Autoria
|
@@ -100,20 +106,25 @@ ca:
|
|
100
106
|
comment: Comentar
|
101
107
|
create: Crear
|
102
108
|
destroy: Esborrar
|
103
|
-
|
109
|
+
like: '"M''agrada"'
|
104
110
|
update: Actualitzar
|
105
111
|
name: Blog
|
106
112
|
settings:
|
107
113
|
global:
|
108
114
|
announcement: Avís
|
115
|
+
attachments_allowed: Permetre fitxers adjunts
|
109
116
|
comments_enabled: Comentaris habilitats
|
110
117
|
comments_max_length: Longitud màxima dels comentaris (deixa 0 si vols mantenir la configuració per defecte)
|
111
118
|
creation_enabled_for_participants: Les participants poden crear noves entrades en el blog
|
119
|
+
define_taxonomy_filters: Si us plau, defineix alguns filtres per aquest espai de participació abans de fer servir aquesta configuració.
|
120
|
+
no_taxonomy_filters_found: No s'han trobat filtres de taxonomia.
|
121
|
+
taxonomy_filters: Seleccionar filtres pel component
|
122
|
+
taxonomy_filters_add: Afegir un filtre
|
112
123
|
step:
|
113
124
|
announcement: Avís
|
114
125
|
comments_blocked: Comentaris bloquejats
|
115
|
-
|
116
|
-
|
126
|
+
likes_blocked: '"M''agrada" desactivats'
|
127
|
+
likes_enabled: '"M''agrada" activats'
|
117
128
|
events:
|
118
129
|
blogs:
|
119
130
|
post_created:
|
@@ -134,16 +145,15 @@ ca:
|
|
134
145
|
id: L'identificador id d'aquest comentari
|
135
146
|
locale: La configuració regional (idioma) que la participant tenia en deixar aquest comentari
|
136
147
|
root_commentable_url: L'URL (adreça web) del recurs que enllaça amb aquest comentari
|
137
|
-
user_group: El nom del grup d'usuàries que va fer aquest comentari (si n'hi ha)
|
138
148
|
posts:
|
139
149
|
author: La informació de l'autoria
|
140
150
|
body: El contingut de la publicació
|
141
151
|
comments_count: El número de comentaris que té aquesta publicació
|
142
152
|
component: El component al qual pertany aquesta publicació
|
143
153
|
created_at: La data en què es va crear aquesta publicació
|
144
|
-
endorsements_count: El número d'adhesions que té aquesta publicació
|
145
154
|
follows_count: El número de seguidores que té aquesta publicació
|
146
155
|
id: L'identificador únic de la publicació
|
156
|
+
likes_count: El número de "M'agrada" que té aquesta publicació
|
147
157
|
participatory_space: A quin espai pertany aquesta publicació (procés participatiu, assemblea, etc.)
|
148
158
|
published_at: La data en què es va publicar aquesta entrada al blog
|
149
159
|
title: El títol de la publicació
|
@@ -151,3 +161,4 @@ ca:
|
|
151
161
|
url: L'URL d'aquesta publicació
|
152
162
|
statistics:
|
153
163
|
posts_count: Publicacions
|
164
|
+
posts_count_tooltip: El número d'actualitzacions publicades o entrades al blog.
|
data/config/locales/cs.yml
CHANGED
@@ -21,6 +21,8 @@ cs:
|
|
21
21
|
admin_log:
|
22
22
|
changeset:
|
23
23
|
posts: Příspěvky
|
24
|
+
tooltips:
|
25
|
+
deleted_posts_info: Tento příspěvek nelze odstranit
|
24
26
|
blogs:
|
25
27
|
actions:
|
26
28
|
author_id: Vytvořit příspěvek jako
|
@@ -72,11 +74,15 @@ cs:
|
|
72
74
|
body: Tělo
|
73
75
|
official_blog_post: Oficiální příspěvek
|
74
76
|
published_at: Čas zveřejnění
|
77
|
+
taxonomies: Taxonomie
|
75
78
|
title: Název
|
76
79
|
posts:
|
77
80
|
edit:
|
81
|
+
add_attachments: Přidat přílohy
|
82
|
+
attachment_legend: Přidat dokument nebo obrázek
|
78
83
|
back: Zpět na příspěvek
|
79
84
|
button: Aktualizovat
|
85
|
+
edit_attachments: Upravit přílohy
|
80
86
|
title: Upravit příspěvek
|
81
87
|
form:
|
82
88
|
author_id: Autor
|
@@ -104,20 +110,25 @@ cs:
|
|
104
110
|
comment: Komentář
|
105
111
|
create: Vytvořit
|
106
112
|
destroy: Smazat
|
107
|
-
|
113
|
+
like: Líbí se mi
|
108
114
|
update: Aktualizovat
|
109
115
|
name: Blog
|
110
116
|
settings:
|
111
117
|
global:
|
112
118
|
announcement: Oznámení
|
119
|
+
attachments_allowed: Povolit přílohy
|
113
120
|
comments_enabled: Komentáře povoleny
|
114
121
|
comments_max_length: Maximální délka komentáře (ponechte 0 pro výchozí hodnotu)
|
115
122
|
creation_enabled_for_participants: Účastníci mohou vytvářet příspěvky
|
123
|
+
define_taxonomy_filters: Před použitím tohoto nastavení prosím definujte některé filtry pro tento participační prostor.
|
124
|
+
no_taxonomy_filters_found: Nebyly nalezeny žádné filtry taxonomie.
|
125
|
+
taxonomy_filters: Vyberte filtry pro komponentu
|
126
|
+
taxonomy_filters_add: Přidat filtr
|
116
127
|
step:
|
117
128
|
announcement: Oznámení
|
118
129
|
comments_blocked: Komentáře byly blokovány
|
119
|
-
|
120
|
-
|
130
|
+
likes_blocked: Líbí se mi zablokováno
|
131
|
+
likes_enabled: Líbí se mi povoleno
|
121
132
|
events:
|
122
133
|
blogs:
|
123
134
|
post_created:
|
@@ -138,16 +149,15 @@ cs:
|
|
138
149
|
id: ID pro tento komentář
|
139
150
|
locale: Lokalizace (jazyk), kterou měl účastník při opuštění tohoto komentáře
|
140
151
|
root_commentable_url: Adresa URL zdroje, který má vazbu na tento komentář
|
141
|
-
user_group: Název skupiny uživatelů, která přidala tento komentář (pokud existuje)
|
142
152
|
posts:
|
143
153
|
author: Informace autora
|
144
154
|
body: Tělo příspěvku
|
145
155
|
comments_count: Počet komentářů, které má tento příspěvek
|
146
156
|
component: Komponenta, do které příspěvek patří,
|
147
157
|
created_at: Datum, kdy byl příspěvek vytvořen
|
148
|
-
endorsements_count: Počet podpor, které má tento příspěvek
|
149
158
|
follows_count: Počet sledujících tohoto příspěvku
|
150
159
|
id: Jedinečný identifikátor tohoto příspěvku
|
160
|
+
likes_count: Počet líbí se mi pro tento příspevek
|
151
161
|
participatory_space: Do kterého prostoru (např. účastnický proces nebo Shromáždění) patří tento příspěvek
|
152
162
|
published_at: Datum zveřejnění tohoto příspěvku
|
153
163
|
title: Název příspěvku
|
@@ -155,3 +165,4 @@ cs:
|
|
155
165
|
url: URL pro tento příspěvek
|
156
166
|
statistics:
|
157
167
|
posts_count: Příspěvky
|
168
|
+
posts_count_tooltip: Počet publikovaných aktualizací nebo blogových příspěvků.
|
data/config/locales/de.yml
CHANGED
@@ -19,6 +19,8 @@ de:
|
|
19
19
|
admin_log:
|
20
20
|
changeset:
|
21
21
|
posts: Beiträge
|
22
|
+
tooltips:
|
23
|
+
deleted_posts_info: Dieser Beitrag kann nicht gelöscht werden
|
22
24
|
blogs:
|
23
25
|
actions:
|
24
26
|
author_id: Beitrag erstellen als
|
@@ -70,11 +72,15 @@ de:
|
|
70
72
|
body: Haupttext
|
71
73
|
official_blog_post: Offizieller Post
|
72
74
|
published_at: Veröffentlicht am
|
75
|
+
taxonomies: Klassifizierungen
|
73
76
|
title: Titel
|
74
77
|
posts:
|
75
78
|
edit:
|
79
|
+
add_attachments: Anhänge hinzufügen
|
80
|
+
attachment_legend: Dokument oder Bild hinzufügen
|
76
81
|
back: Zurück zum Beitrag
|
77
82
|
button: Aktualisieren
|
83
|
+
edit_attachments: Anhänge bearbeiten
|
78
84
|
title: Beitrag bearbeiten
|
79
85
|
form:
|
80
86
|
author_id: Autor*in
|
@@ -100,20 +106,25 @@ de:
|
|
100
106
|
comment: Kommentieren
|
101
107
|
create: Erstellen
|
102
108
|
destroy: Löschen
|
103
|
-
|
109
|
+
like: Like
|
104
110
|
update: Aktualisieren
|
105
111
|
name: Blog
|
106
112
|
settings:
|
107
113
|
global:
|
108
114
|
announcement: Ankündigung
|
115
|
+
attachments_allowed: Anhänge zulassen
|
109
116
|
comments_enabled: Kommentare aktiviert
|
110
117
|
comments_max_length: Maximale Länge der Kommentare (0 für Standardwert)
|
111
118
|
creation_enabled_for_participants: Teilnehmende können Beiträge erstellen
|
119
|
+
define_taxonomy_filters: Bitte definieren Sie einige Filter für diesen partizipativen Bereich, bevor Sie diese Einstellung verwenden.
|
120
|
+
no_taxonomy_filters_found: Keine Klassifizierungsfilter gefunden.
|
121
|
+
taxonomy_filters: Filter für die Komponente auswählen
|
122
|
+
taxonomy_filters_add: Filter hinzufügen
|
112
123
|
step:
|
113
124
|
announcement: Ankündigung
|
114
125
|
comments_blocked: Kommentare blockiert
|
115
|
-
|
116
|
-
|
126
|
+
likes_blocked: Likes blockiert
|
127
|
+
likes_enabled: Likes aktiviert
|
117
128
|
events:
|
118
129
|
blogs:
|
119
130
|
post_created:
|
@@ -134,16 +145,15 @@ de:
|
|
134
145
|
id: Die ID dieses Kommentars
|
135
146
|
locale: Die eingestellte Plattformsprache der kommentierenden Person
|
136
147
|
root_commentable_url: Die URL der mit dem Kommentar verbundenen Ressource
|
137
|
-
user_group: Der Name der Gruppe, die diesen Kommentar erstellt hat (falls vorhanden)
|
138
148
|
posts:
|
139
149
|
author: Die Informationen des Autors
|
140
150
|
body: Der Inhalt des Beitrags
|
141
151
|
comments_count: Die Anzahl Kommentare zu diesem Beitrag
|
142
152
|
component: Komponente, zu der dieses Beitrag gehört
|
143
153
|
created_at: Erstellungsdatum dieses Beitrags
|
144
|
-
endorsements_count: Die Anzahl Unterstützungen dieses Beitrags
|
145
154
|
follows_count: Die Anzahl Folgende dieses Beitrags
|
146
155
|
id: Die eindeutige Bezeichnung des Beitrags
|
156
|
+
likes_count: Die Anzahl Likes dieses Beitrags
|
147
157
|
participatory_space: Zu welchem Bereich dieser Beitrag gehört (z.B. Partizipationsprozesse oder Gremien)
|
148
158
|
published_at: Veröffentlichungsdatum des Beitrags
|
149
159
|
title: Der Titel des Beitrags
|
@@ -151,3 +161,4 @@ de:
|
|
151
161
|
url: Die URL für diesen Beitrag
|
152
162
|
statistics:
|
153
163
|
posts_count: Beiträge
|
164
|
+
posts_count_tooltip: Die Anzahl der veröffentlichten Updates oder Blog-Beiträge.
|
data/config/locales/el.yml
CHANGED
@@ -59,7 +59,6 @@ el:
|
|
59
59
|
comment: Σχόλιο
|
60
60
|
create: Δημιουργία
|
61
61
|
destroy: Διαγραφή
|
62
|
-
endorse: Επιδοκιμασία
|
63
62
|
update: Ενημέρωση
|
64
63
|
name: Ιστολόγιο
|
65
64
|
settings:
|
@@ -70,8 +69,6 @@ el:
|
|
70
69
|
step:
|
71
70
|
announcement: Ανακοίνωση
|
72
71
|
comments_blocked: Τα σχόλια αποκλείστηκαν
|
73
|
-
endorsements_blocked: Επιδοκιμασίες αποκλεισμένες
|
74
|
-
endorsements_enabled: Επιδοκιμασίες ενεργοποιημένες
|
75
72
|
events:
|
76
73
|
blogs:
|
77
74
|
post_created:
|
data/config/locales/en.yml
CHANGED
@@ -19,6 +19,8 @@ en:
|
|
19
19
|
admin_log:
|
20
20
|
changeset:
|
21
21
|
posts: Posts
|
22
|
+
tooltips:
|
23
|
+
deleted_posts_info: Cannot delete this post
|
22
24
|
blogs:
|
23
25
|
actions:
|
24
26
|
author_id: Create post as
|
@@ -70,11 +72,15 @@ en:
|
|
70
72
|
body: Body
|
71
73
|
official_blog_post: Official post
|
72
74
|
published_at: Publish time
|
75
|
+
taxonomies: Taxonomies
|
73
76
|
title: Title
|
74
77
|
posts:
|
75
78
|
edit:
|
79
|
+
add_attachments: Add attachments
|
80
|
+
attachment_legend: Add a document or an image
|
76
81
|
back: Back to post
|
77
82
|
button: Update
|
83
|
+
edit_attachments: Edit attachments
|
78
84
|
title: Edit post
|
79
85
|
form:
|
80
86
|
author_id: Author
|
@@ -100,20 +106,25 @@ en:
|
|
100
106
|
comment: Comment
|
101
107
|
create: Create
|
102
108
|
destroy: Delete
|
103
|
-
|
109
|
+
like: Like
|
104
110
|
update: Update
|
105
111
|
name: Blog
|
106
112
|
settings:
|
107
113
|
global:
|
108
114
|
announcement: Announcement
|
115
|
+
attachments_allowed: Allow attachments
|
109
116
|
comments_enabled: Comments enabled
|
110
117
|
comments_max_length: Comments max length (Leave 0 for default value)
|
111
118
|
creation_enabled_for_participants: Participants can create posts
|
119
|
+
define_taxonomy_filters: Please define some filters for this participatory space before using this setting.
|
120
|
+
no_taxonomy_filters_found: No taxonomy filters found.
|
121
|
+
taxonomy_filters: Select filters for the component
|
122
|
+
taxonomy_filters_add: Add filter
|
112
123
|
step:
|
113
124
|
announcement: Announcement
|
114
125
|
comments_blocked: Comments blocked
|
115
|
-
|
116
|
-
|
126
|
+
likes_blocked: Likes blocked
|
127
|
+
likes_enabled: Likes enabled
|
117
128
|
events:
|
118
129
|
blogs:
|
119
130
|
post_created:
|
@@ -134,16 +145,15 @@ en:
|
|
134
145
|
id: The id for this comment
|
135
146
|
locale: The locale (language) that the participant had when leaving this comment
|
136
147
|
root_commentable_url: The URL of the resource that ties to this comment
|
137
|
-
user_group: The name of the user group that made this comment (if any)
|
138
148
|
posts:
|
139
149
|
author: The information of the author
|
140
150
|
body: The body of the post
|
141
151
|
comments_count: The number of comments this post has
|
142
152
|
component: The component that the post belongs to
|
143
153
|
created_at: The date this post was created
|
144
|
-
endorsements_count: The number of endorsements this post has
|
145
154
|
follows_count: The number of follows this post has
|
146
155
|
id: The unique identifier of this post
|
156
|
+
likes_count: The number of likes this post has
|
147
157
|
participatory_space: To which space (e.g. Participatory Process, or Assembly) this post belongs to
|
148
158
|
published_at: The date this post was published
|
149
159
|
title: The title of the post
|
@@ -151,3 +161,4 @@ en:
|
|
151
161
|
url: The URL for this post
|
152
162
|
statistics:
|
153
163
|
posts_count: Posts
|
164
|
+
posts_count_tooltip: The number of published updates or blog posts.
|
data/config/locales/es-MX.yml
CHANGED
@@ -19,6 +19,8 @@ es-MX:
|
|
19
19
|
admin_log:
|
20
20
|
changeset:
|
21
21
|
posts: Entradas en el blog
|
22
|
+
tooltips:
|
23
|
+
deleted_posts_info: No se puede eliminar esta entrada en el blog
|
22
24
|
blogs:
|
23
25
|
actions:
|
24
26
|
author_id: Crear publicación como
|
@@ -70,11 +72,15 @@ es-MX:
|
|
70
72
|
body: Cuerpo
|
71
73
|
official_blog_post: Post oficial
|
72
74
|
published_at: Hora de publicación
|
75
|
+
taxonomies: Taxonomías
|
73
76
|
title: Título
|
74
77
|
posts:
|
75
78
|
edit:
|
79
|
+
add_attachments: Agregar archivo(s) adjunto(s)
|
80
|
+
attachment_legend: Añadir un documento o una imagen
|
76
81
|
back: Volver a la publicación
|
77
82
|
button: Actualizar
|
83
|
+
edit_attachments: Editar los archivos adjuntos
|
78
84
|
title: Editar la publicación
|
79
85
|
form:
|
80
86
|
author_id: Autoría
|
@@ -100,20 +106,25 @@ es-MX:
|
|
100
106
|
comment: Comentar
|
101
107
|
create: Crear
|
102
108
|
destroy: Borrar
|
103
|
-
|
109
|
+
like: '"Me gusta"'
|
104
110
|
update: Actualizar
|
105
111
|
name: Blog
|
106
112
|
settings:
|
107
113
|
global:
|
108
114
|
announcement: Anuncio
|
115
|
+
attachments_allowed: Permitir archivos adjuntos
|
109
116
|
comments_enabled: Comentarios habilitados
|
110
117
|
comments_max_length: Longitud máxima de los comentarios (deja 0 si quieres mantener la configuración por defecto)
|
111
118
|
creation_enabled_for_participants: Las participantes pueden crear nuevas entradas en el blog
|
119
|
+
define_taxonomy_filters: Por favor, define algunos filtros para este espacio de participación antes de utilizar esta configuración.
|
120
|
+
no_taxonomy_filters_found: No se han encontrado filtros de taxonomía.
|
121
|
+
taxonomy_filters: Seleccionar filtros para el componente
|
122
|
+
taxonomy_filters_add: Añadir un filtro
|
112
123
|
step:
|
113
124
|
announcement: Anuncio
|
114
125
|
comments_blocked: Comentarios bloqueados
|
115
|
-
|
116
|
-
|
126
|
+
likes_blocked: '"Me gusta" desactivados'
|
127
|
+
likes_enabled: '"Me gusta" activados'
|
117
128
|
events:
|
118
129
|
blogs:
|
119
130
|
post_created:
|
@@ -134,16 +145,15 @@ es-MX:
|
|
134
145
|
id: El identificador de este comentario
|
135
146
|
locale: La configuración regional (idioma) que la participante tenía al dejar este comentario
|
136
147
|
root_commentable_url: La URL (dirección web) del recurso que enlaza con este comentario
|
137
|
-
user_group: El nombre del grupo de usuarias que hizo este comentario (si lo hay)
|
138
148
|
posts:
|
139
149
|
author: La información de la autoría
|
140
150
|
body: El contenido de la publicación
|
141
151
|
comments_count: El número de comentarios que tiene esta publicación
|
142
152
|
component: El componente al que pertenece la publicación
|
143
153
|
created_at: La fecha en la que se creó esta publicación
|
144
|
-
endorsements_count: El número de adhesiones que tiene esta publicación
|
145
154
|
follows_count: El número de seguidoras que tiene esta publicación
|
146
155
|
id: El identificador único de la publicación
|
156
|
+
likes_count: El número de "Me gusta" que tiene esta publicación
|
147
157
|
participatory_space: A qué espacio pertenece esta publicación (proceso participativo, asamblea, etc.)
|
148
158
|
published_at: La fecha en la que se publicó esta entrada en el blog
|
149
159
|
title: El título de la publicación
|
@@ -151,3 +161,4 @@ es-MX:
|
|
151
161
|
url: La URL para esta publicación
|
152
162
|
statistics:
|
153
163
|
posts_count: Publicaciones
|
164
|
+
posts_count_tooltip: El número de actualizaciones publicadas o entradas del blog.
|
data/config/locales/es-PY.yml
CHANGED
@@ -19,6 +19,8 @@ es-PY:
|
|
19
19
|
admin_log:
|
20
20
|
changeset:
|
21
21
|
posts: Entradas en el blog
|
22
|
+
tooltips:
|
23
|
+
deleted_posts_info: No se puede eliminar esta entrada en el blog
|
22
24
|
blogs:
|
23
25
|
actions:
|
24
26
|
author_id: Crear publicación como
|
@@ -70,11 +72,15 @@ es-PY:
|
|
70
72
|
body: Cuerpo
|
71
73
|
official_blog_post: Post oficial
|
72
74
|
published_at: Hora de publicación
|
75
|
+
taxonomies: Taxonomías
|
73
76
|
title: Título
|
74
77
|
posts:
|
75
78
|
edit:
|
79
|
+
add_attachments: Agregar archivo(s) adjunto(s)
|
80
|
+
attachment_legend: Añadir un documento o una imagen
|
76
81
|
back: Volver a la publicación
|
77
82
|
button: Actualizar
|
83
|
+
edit_attachments: Editar los archivos adjuntos
|
78
84
|
title: Editar la publicación
|
79
85
|
form:
|
80
86
|
author_id: Autoría
|
@@ -100,20 +106,25 @@ es-PY:
|
|
100
106
|
comment: Comentar
|
101
107
|
create: Crear
|
102
108
|
destroy: Borrar
|
103
|
-
|
109
|
+
like: '"Me gusta"'
|
104
110
|
update: Actualizar
|
105
111
|
name: Blog
|
106
112
|
settings:
|
107
113
|
global:
|
108
114
|
announcement: Anuncio
|
115
|
+
attachments_allowed: Permitir archivos adjuntos
|
109
116
|
comments_enabled: Comentarios habilitados
|
110
117
|
comments_max_length: Longitud máxima de los comentarios (deja 0 si quieres mantener la configuración por defecto)
|
111
118
|
creation_enabled_for_participants: Las participantes pueden crear nuevas entradas en el blog
|
119
|
+
define_taxonomy_filters: Por favor, define algunos filtros para este espacio de participación antes de utilizar esta configuración.
|
120
|
+
no_taxonomy_filters_found: No se han encontrado filtros de taxonomía.
|
121
|
+
taxonomy_filters: Seleccionar filtros para el componente
|
122
|
+
taxonomy_filters_add: Añadir un filtro
|
112
123
|
step:
|
113
124
|
announcement: Anuncio
|
114
125
|
comments_blocked: Comentarios bloqueados
|
115
|
-
|
116
|
-
|
126
|
+
likes_blocked: '"Me gusta" desactivados'
|
127
|
+
likes_enabled: '"Me gusta" activados'
|
117
128
|
events:
|
118
129
|
blogs:
|
119
130
|
post_created:
|
@@ -134,16 +145,15 @@ es-PY:
|
|
134
145
|
id: El identificador de este comentario
|
135
146
|
locale: La configuración regional (idioma) que la participante tenía al dejar este comentario
|
136
147
|
root_commentable_url: La URL (dirección web) del recurso que enlaza con este comentario
|
137
|
-
user_group: El nombre del grupo de usuarias que hizo este comentario (si lo hay)
|
138
148
|
posts:
|
139
149
|
author: La información de la autoría
|
140
150
|
body: El contenido de la publicación
|
141
151
|
comments_count: El número de comentarios que tiene esta publicación
|
142
152
|
component: El componente al que pertenece la publicación
|
143
153
|
created_at: La fecha en la que se creó esta publicación
|
144
|
-
endorsements_count: El número de adhesiones que tiene esta publicación
|
145
154
|
follows_count: El número de seguidoras que tiene esta publicación
|
146
155
|
id: El identificador único de la publicación
|
156
|
+
likes_count: El número de "Me gusta" que tiene esta publicación
|
147
157
|
participatory_space: A qué espacio pertenece esta publicación (proceso participativo, asamblea, etc.)
|
148
158
|
published_at: La fecha en la que se publicó esta entrada en el blog
|
149
159
|
title: El título de la publicación
|
@@ -151,3 +161,4 @@ es-PY:
|
|
151
161
|
url: La URL para esta publicación
|
152
162
|
statistics:
|
153
163
|
posts_count: Publicaciones
|
164
|
+
posts_count_tooltip: El número de actualizaciones publicadas o entradas del blog.
|