decidim-admin 0.31.1 → 0.31.3
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/admin/content_block/show.erb +1 -1
- data/app/commands/decidim/admin/content_blocks/update_content_block.rb +12 -3
- data/app/commands/decidim/admin/unreport_user.rb +1 -1
- data/app/helpers/decidim/admin/settings_helper.rb +13 -1
- data/app/packs/entrypoints/decidim_admin.js +3 -3
- data/app/packs/stylesheets/decidim/admin/_forms.scss +0 -1
- data/app/packs/stylesheets/decidim/admin/_sidebar-menu.scss +6 -2
- data/app/packs/stylesheets/decidim/admin/_table-list.scss +1 -1
- data/app/packs/stylesheets/decidim/admin/_taxonomies.scss +1 -1
- data/app/views/decidim/admin/exports/_dropdown.html.erb +2 -2
- data/app/views/decidim/admin/taxonomies/_taxonomy_actions.html.erb +1 -1
- data/config/locales/ar.yml +4 -15
- data/config/locales/bg.yml +2 -15
- data/config/locales/bs-BA.yml +6 -7
- data/config/locales/ca-IT.yml +18 -13
- data/config/locales/ca.yml +18 -13
- data/config/locales/cs.yml +16 -9
- data/config/locales/de.yml +6 -19
- data/config/locales/el.yml +42 -14
- data/config/locales/en.yml +6 -1
- data/config/locales/eo.yml +0 -1
- data/config/locales/es-MX.yml +15 -10
- data/config/locales/es-PY.yml +15 -10
- data/config/locales/es.yml +26 -21
- data/config/locales/eu.yml +8 -3
- data/config/locales/fi-plain.yml +4 -17
- data/config/locales/fi.yml +3 -16
- data/config/locales/fr-CA.yml +54 -12
- data/config/locales/fr.yml +54 -12
- data/config/locales/ga-IE.yml +1 -3
- data/config/locales/gl.yml +4 -13
- data/config/locales/hu.yml +2 -17
- data/config/locales/id-ID.yml +2 -10
- data/config/locales/is-IS.yml +1 -5
- data/config/locales/it.yml +7 -15
- data/config/locales/ja.yml +15 -10
- data/config/locales/kaa.yml +5 -0
- data/config/locales/ko.yml +1 -12
- data/config/locales/lb.yml +4 -13
- data/config/locales/lt.yml +4 -15
- data/config/locales/lv.yml +2 -10
- data/config/locales/nl.yml +4 -14
- data/config/locales/no.yml +3 -13
- data/config/locales/pl.yml +2 -16
- data/config/locales/pt-BR.yml +14 -11
- data/config/locales/pt.yml +4 -13
- data/config/locales/ro-RO.yml +3 -15
- data/config/locales/ru.yml +3 -8
- data/config/locales/sk.yml +3 -11
- data/config/locales/sl.yml +2 -0
- data/config/locales/sq-AL.yml +3 -5
- data/config/locales/sr-CS.yml +13 -13
- data/config/locales/sv.yml +38 -31
- data/config/locales/tr-TR.yml +113 -17
- data/config/locales/uk.yml +1 -8
- data/config/locales/zh-CN.yml +1 -10
- data/config/locales/zh-TW.yml +4 -14
- data/lib/decidim/admin/test/manage_attachments_examples.rb +12 -0
- data/lib/decidim/admin/test/manage_hide_content_examples.rb +1 -0
- data/lib/decidim/admin/version.rb +1 -1
- metadata +8 -9
- data/app/packs/src/decidim/admin/choose_language.js +0 -16
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a496d564db404d845bf0c01d03777a3569c62edc12930b42f126931e83d5eac9
|
|
4
|
+
data.tar.gz: 4dc385ef84cbef63be1045e4a62120c25b8e71ac8580b54f7ada404bc988e9a8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 905379c99a3043d4a0782682b87e041f93305d0614f4e4ba3727839e3f8e35a05dc3db37b822dd8e8aa3c243e071752f56ae4cbb4f39b9360b126021a66335c4
|
|
7
|
+
data.tar.gz: 8fb9333dce766f2d4b07fd2ada389841b2a4c0c97d8cf7227d37418598b48bb6e14d0d2fe5cea82638a035ecc64f2cbdc40c8272f4da15afd82963b1f2c94ead
|
|
@@ -6,7 +6,7 @@ module Decidim
|
|
|
6
6
|
# This command gets called when a content block is updated from the admin
|
|
7
7
|
# panel.
|
|
8
8
|
class UpdateContentBlock < Decidim::Command
|
|
9
|
-
attr_reader :form, :content_block, :scope
|
|
9
|
+
attr_reader :form, :content_block, :scope, :attachments_to_purge
|
|
10
10
|
|
|
11
11
|
# Public: Initializes the command.
|
|
12
12
|
#
|
|
@@ -17,6 +17,7 @@ module Decidim
|
|
|
17
17
|
@form = form
|
|
18
18
|
@content_block = content_block
|
|
19
19
|
@scope = scope
|
|
20
|
+
@attachments_to_purge = []
|
|
20
21
|
end
|
|
21
22
|
|
|
22
23
|
# Public: Updates the content block settings and its attachments.
|
|
@@ -55,6 +56,8 @@ module Decidim
|
|
|
55
56
|
|
|
56
57
|
return broadcast(:invalid) unless images_valid
|
|
57
58
|
|
|
59
|
+
purge_attachment
|
|
60
|
+
|
|
58
61
|
broadcast(:ok, content_block)
|
|
59
62
|
end
|
|
60
63
|
|
|
@@ -67,14 +70,20 @@ module Decidim
|
|
|
67
70
|
def update_content_block_images
|
|
68
71
|
content_block.manifest.images.each do |image_config|
|
|
69
72
|
image_name = image_config[:name]
|
|
70
|
-
|
|
71
73
|
if form.images[image_name]
|
|
72
74
|
content_block.images_container.send("#{image_name}=", form.images[image_name])
|
|
73
|
-
elsif form.images[:"remove_#{image_name}"]
|
|
75
|
+
elsif form.images[:"remove_#{image_name}"]
|
|
76
|
+
@attachments_to_purge << content_block.images_container.send(image_name.to_s)
|
|
74
77
|
content_block.images_container.send("#{image_name}=", nil)
|
|
75
78
|
end
|
|
76
79
|
end
|
|
77
80
|
end
|
|
81
|
+
|
|
82
|
+
def purge_attachment
|
|
83
|
+
attachments_to_purge.each do |attachment_to_purge|
|
|
84
|
+
attachment_to_purge.purge if attachment_to_purge.respond_to?(:purge)
|
|
85
|
+
end
|
|
86
|
+
end
|
|
78
87
|
end
|
|
79
88
|
end
|
|
80
89
|
end
|
|
@@ -108,7 +108,8 @@ module Decidim
|
|
|
108
108
|
html = form.select(
|
|
109
109
|
name,
|
|
110
110
|
choices,
|
|
111
|
-
{ include_blank: attribute.include_blank, label: options[:label] }
|
|
111
|
+
{ include_blank: attribute.include_blank, label: options[:label] },
|
|
112
|
+
{ disabled: options[:readonly] || false }
|
|
112
113
|
)
|
|
113
114
|
html << content_tag(:p, options[:help_text], class: "help-text") if options[:help_text]
|
|
114
115
|
html
|
|
@@ -225,6 +226,8 @@ module Decidim
|
|
|
225
226
|
# @param name (see #settings_attribute_input)
|
|
226
227
|
# @param i18n_scope (see #settings_attribute_input)
|
|
227
228
|
def taxonomy_filters(form, name, i18n_scope)
|
|
229
|
+
return disabled_taxonomy_filters(name, i18n_scope) if @component&.new_record?
|
|
230
|
+
|
|
228
231
|
current_filters = content_tag(:div, class: "js-current-filters") do
|
|
229
232
|
render partial: "decidim/admin/taxonomy_filters_selector/component_table",
|
|
230
233
|
locals: { field_name: "#{form.object_name}[#{name}][]", component: @component }
|
|
@@ -248,6 +251,15 @@ module Decidim
|
|
|
248
251
|
|
|
249
252
|
label_tag(name, t(name, scope: i18n_scope)) + container + drawer
|
|
250
253
|
end
|
|
254
|
+
|
|
255
|
+
def disabled_taxonomy_filters(name, i18n_scope)
|
|
256
|
+
container = content_tag(:div) do
|
|
257
|
+
message = t("taxonomy_filters_unavailable", scope: "decidim.components.settings.global")
|
|
258
|
+
content_tag(:p, message, class: "help-text")
|
|
259
|
+
end
|
|
260
|
+
|
|
261
|
+
label_tag(name, t(name, scope: i18n_scope)) + container
|
|
262
|
+
end
|
|
251
263
|
end
|
|
252
264
|
end
|
|
253
265
|
end
|
|
@@ -2,7 +2,6 @@
|
|
|
2
2
|
/* eslint id-length: ["error", { "exceptions": ["$"] }] */
|
|
3
3
|
|
|
4
4
|
import "src/decidim/admin/tab_focus"
|
|
5
|
-
import initLanguageChangeSelect from "src/decidim/admin/choose_language"
|
|
6
5
|
import "src/decidim/admin/application"
|
|
7
6
|
import "src/decidim/admin/resources_permissions"
|
|
8
7
|
import "src/decidim/admin/newsletters"
|
|
@@ -27,6 +26,7 @@ import "src/decidim/admin/taxonomy_filters"
|
|
|
27
26
|
import "entrypoints/decidim_admin.scss";
|
|
28
27
|
|
|
29
28
|
document.addEventListener("turbo:load", () => {
|
|
30
|
-
|
|
29
|
+
document.querySelectorAll("select.language-change").forEach((container) => {
|
|
30
|
+
window.deprecate(container, "language-change", "select.language-change")
|
|
31
|
+
})
|
|
31
32
|
});
|
|
32
|
-
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
&__item {
|
|
5
5
|
a,
|
|
6
6
|
&-disabled {
|
|
7
|
-
@apply gap-x-2 p-2 flex items-center text-sm
|
|
7
|
+
@apply gap-x-2 p-2 flex items-center text-sm border border-gray-5 rounded;
|
|
8
8
|
|
|
9
9
|
> svg {
|
|
10
10
|
@apply w-4 h-4 flex-none text-gray fill-current;
|
|
@@ -25,7 +25,11 @@
|
|
|
25
25
|
}
|
|
26
26
|
|
|
27
27
|
& .component-counter {
|
|
28
|
-
@apply ml-auto inline-flex items-center justify-center w-5 h-5 text-xs font-semibold rounded-full bg-background-4 border-secondary;
|
|
28
|
+
@apply flex-shrink-0 ml-auto inline-flex items-center justify-center w-5 h-5 text-xs font-semibold rounded-full bg-background-4 border-secondary;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
a > span:first-child {
|
|
32
|
+
@apply min-w-0 whitespace-normal break-words;
|
|
29
33
|
}
|
|
30
34
|
|
|
31
35
|
ul {
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
<div class="relative">
|
|
2
2
|
<button class="button button__sm button__transparent-secondary" data-controller="dropdown" data-target="<%= dropdown_id(filters) %>">
|
|
3
3
|
<% if filters.present? %>
|
|
4
|
-
<%= t("actions.
|
|
4
|
+
<%= t("actions.export_selection", scope: "decidim.admin") %>
|
|
5
5
|
<% else %>
|
|
6
|
-
<%= t("actions.
|
|
6
|
+
<%= t("actions.export_all", scope: "decidim.admin") %>
|
|
7
7
|
<% end %>
|
|
8
8
|
<%= icon "arrow-down-s-line" %>
|
|
9
9
|
<%= icon "arrow-down-s-line" %>
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<button type="button" data-controller="dropdown" data-target="actions-taxonomy-<%= taxonomy.id %>" aria-label="<%= t("decidim.admin.actions.actions_label", resource: taxonomy.name) %>">
|
|
1
|
+
<button type="button" data-controller="dropdown" data-target="actions-taxonomy-<%= taxonomy.id %>" aria-label="<%= t("decidim.admin.actions.actions_label", resource: translated_attribute(taxonomy.name)) %>">
|
|
2
2
|
<%= icon "more-fill", class: "text-secondary" %>
|
|
3
3
|
</button>
|
|
4
4
|
|
data/config/locales/ar.yml
CHANGED
|
@@ -179,7 +179,7 @@ ar:
|
|
|
179
179
|
<li class="font-bold">%{resources_count} مصادر</li>
|
|
180
180
|
</ul>
|
|
181
181
|
يمكنك استعادة العنصر إذا غيرت رأيك لاحقاً.
|
|
182
|
-
|
|
182
|
+
export_all: تصدير الكل
|
|
183
183
|
import: استيراد
|
|
184
184
|
newsletter:
|
|
185
185
|
new: رسالة إخبارية جديدة
|
|
@@ -224,8 +224,6 @@ ar:
|
|
|
224
224
|
edit:
|
|
225
225
|
title: تحرير المجلد
|
|
226
226
|
update: تحديث
|
|
227
|
-
index:
|
|
228
|
-
attachment_collections_title: مجلدات المرفقات
|
|
229
227
|
new:
|
|
230
228
|
create: إنشاء
|
|
231
229
|
title: مجلد جديد
|
|
@@ -241,8 +239,6 @@ ar:
|
|
|
241
239
|
edit:
|
|
242
240
|
title: تحرير المرفق
|
|
243
241
|
update: تحديث
|
|
244
|
-
index:
|
|
245
|
-
attachments_title: المرفقات
|
|
246
242
|
new:
|
|
247
243
|
create: إنشاء مرفق
|
|
248
244
|
title: مرفق جديد
|
|
@@ -283,7 +279,6 @@ ar:
|
|
|
283
279
|
title: 'إضافة مكون: %{name}'
|
|
284
280
|
publish:
|
|
285
281
|
success: تم نشر المكون بنجاح.
|
|
286
|
-
title: المكونات
|
|
287
282
|
unpublish:
|
|
288
283
|
success: تم إلغاء نشر المكون بنجاح.
|
|
289
284
|
update:
|
|
@@ -294,7 +289,6 @@ ar:
|
|
|
294
289
|
'false': 'لا'
|
|
295
290
|
managed_user_name: المستخدم المُدار
|
|
296
291
|
solved: تم حلها
|
|
297
|
-
title: تضارب التحقق
|
|
298
292
|
transfer:
|
|
299
293
|
email: البريد الإلكتروني
|
|
300
294
|
name: الإسم
|
|
@@ -436,7 +430,6 @@ ar:
|
|
|
436
430
|
promotions:
|
|
437
431
|
new:
|
|
438
432
|
explanation: يمكن ترقية المشاركين المدارين إلى مشاركين عاديين. يعني ذلك أنه سيتم دعوتهم إلى التطبيق ولن تتمكن من إدارته مرة أخرى. سيتلقى المشارك المدعو رسالة بريد إلكتروني لقبول دعوتك.
|
|
439
|
-
new_managed_user_promotion: ترويج مشارك جديد مُدار
|
|
440
433
|
promote: تروج \ يشجع \ يعزز \ ينمى \ يطور
|
|
441
434
|
menu:
|
|
442
435
|
admin_log: سجل نشاط المسؤول
|
|
@@ -770,21 +763,17 @@ ar:
|
|
|
770
763
|
new:
|
|
771
764
|
save: حفظ
|
|
772
765
|
titles:
|
|
773
|
-
admin_log: سجل المسؤول
|
|
774
766
|
area_types: أنواع المناطق
|
|
775
767
|
areas: المناطق
|
|
776
768
|
authorization_workflows: طرق التحقق
|
|
777
|
-
dashboard: لوحة القيادة
|
|
778
|
-
impersonatable_users: المشاركون في الإدارة
|
|
779
769
|
impersonations: إدارة المشاركين
|
|
780
770
|
menu: القائمة الرئيسية
|
|
781
771
|
page_topics: المواضيع
|
|
782
|
-
pages:
|
|
772
|
+
pages: صفحات
|
|
783
773
|
panel: مدير
|
|
784
|
-
participants:
|
|
785
|
-
scope_types: أنواع
|
|
774
|
+
participants: المشاركون
|
|
775
|
+
scope_types: أنواع المجال
|
|
786
776
|
scopes: مجالات
|
|
787
|
-
users: المدراء
|
|
788
777
|
users:
|
|
789
778
|
create:
|
|
790
779
|
error: كانت هناك مشكلة في دعوة هذا المشرف.
|
data/config/locales/bg.yml
CHANGED
|
@@ -173,7 +173,7 @@ bg:
|
|
|
173
173
|
new: Нова прикачена папка
|
|
174
174
|
browse: Разглеждане
|
|
175
175
|
configure: Конфигуриране
|
|
176
|
-
|
|
176
|
+
export_all: Експорт на всички
|
|
177
177
|
import: Импортиране
|
|
178
178
|
newsletter:
|
|
179
179
|
new: Нов бюлетин
|
|
@@ -197,7 +197,6 @@ bg:
|
|
|
197
197
|
alert: 'Задължително: Прегледайте нашите административни условия за ползване'
|
|
198
198
|
callout: Моля, отделете малко време, за да прегледате административните условия за ползване. В противен случай, няма да можете да администрирате платформата.
|
|
199
199
|
cta: Прегледайте ги сега.
|
|
200
|
-
title: Административни условия на услугата
|
|
201
200
|
area_types:
|
|
202
201
|
create:
|
|
203
202
|
error: Възникна проблем при създаването на нов тип област.
|
|
@@ -239,8 +238,6 @@ bg:
|
|
|
239
238
|
edit:
|
|
240
239
|
title: Редактиране на папка
|
|
241
240
|
update: Актуализация
|
|
242
|
-
index:
|
|
243
|
-
attachment_collections_title: Папки с прикачени файлове
|
|
244
241
|
new:
|
|
245
242
|
create: Създаване
|
|
246
243
|
title: Нова папка
|
|
@@ -256,8 +253,6 @@ bg:
|
|
|
256
253
|
edit:
|
|
257
254
|
title: Редактиране на прикачения файл
|
|
258
255
|
update: Актуализация
|
|
259
|
-
index:
|
|
260
|
-
attachments_title: Прикачени файлове
|
|
261
256
|
new:
|
|
262
257
|
create: Създаване на прикачен файл
|
|
263
258
|
title: Нов прикачен файл
|
|
@@ -323,7 +318,6 @@ bg:
|
|
|
323
318
|
'false': 'Не'
|
|
324
319
|
managed_user_name: Управляван потребител
|
|
325
320
|
solved: Разрешен случай
|
|
326
|
-
title: Проверка на конфликти
|
|
327
321
|
transfer:
|
|
328
322
|
email: Имейл
|
|
329
323
|
error: Възникна проблем при прехвърлянето на текущия участник към управляван участник.
|
|
@@ -520,7 +514,6 @@ bg:
|
|
|
520
514
|
promotions:
|
|
521
515
|
new:
|
|
522
516
|
explanation: Управляваните участници могат да бъдат повишавани до стандартни участници. Това означава, че ще бъдат поканени в приложението и повече няма да можете да ги управлявате. Поканеният участник ще получи имейл, за да приеме поканата Ви.
|
|
523
|
-
new_managed_user_promotion: Ново повишение на управляван участник
|
|
524
517
|
promote: Повишаване
|
|
525
518
|
menu:
|
|
526
519
|
admin_log: Регистър на дейността на администраторите
|
|
@@ -665,7 +658,6 @@ bg:
|
|
|
665
658
|
title: Шаблони за бюлетин
|
|
666
659
|
use_template: Използване на този шаблон
|
|
667
660
|
show:
|
|
668
|
-
preview: 'Визуализация на шаблона: %{template_name}'
|
|
669
661
|
use_template: Използване на този шаблон
|
|
670
662
|
newsletters:
|
|
671
663
|
create:
|
|
@@ -779,7 +771,6 @@ bg:
|
|
|
779
771
|
up: Горе
|
|
780
772
|
form:
|
|
781
773
|
add: Добави в листа с позволени
|
|
782
|
-
title: Лист с позволени външни домейни
|
|
783
774
|
participatory_space_private_users:
|
|
784
775
|
create:
|
|
785
776
|
error: Възникна проблем при добавянето на частен участник за това пространство за участие.
|
|
@@ -935,13 +926,9 @@ bg:
|
|
|
935
926
|
actions:
|
|
936
927
|
new_taxonomy_filter: Нов класификационен филтър
|
|
937
928
|
titles:
|
|
938
|
-
admin_log: Администраторски регистри
|
|
939
929
|
area_types: Типове области
|
|
940
930
|
areas: Области
|
|
941
931
|
authorization_workflows: Методи за проверка
|
|
942
|
-
dashboard: Контролен панел
|
|
943
|
-
edit_external_domains: Лист с позволени външни домейни
|
|
944
|
-
impersonatable_users: Управляеми участници
|
|
945
932
|
impersonations: Управление на участниците
|
|
946
933
|
menu: Меню
|
|
947
934
|
page_topics: Tеми
|
|
@@ -950,7 +937,7 @@ bg:
|
|
|
950
937
|
participants: Участници
|
|
951
938
|
scope_types: Типове на обхвата
|
|
952
939
|
scopes: Обхвати
|
|
953
|
-
|
|
940
|
+
taxonomies: Категоризации
|
|
954
941
|
users:
|
|
955
942
|
create:
|
|
956
943
|
error: Възникна проблем с поканата на този администратор.
|
data/config/locales/bs-BA.yml
CHANGED
|
@@ -148,8 +148,6 @@ bs:
|
|
|
148
148
|
edit:
|
|
149
149
|
title: Izmeni fasciklu
|
|
150
150
|
update: Ažuriraj
|
|
151
|
-
index:
|
|
152
|
-
attachment_collections_title: Fascikle priloga
|
|
153
151
|
new:
|
|
154
152
|
create: Stvori
|
|
155
153
|
title: Nova fascikla
|
|
@@ -165,8 +163,6 @@ bs:
|
|
|
165
163
|
edit:
|
|
166
164
|
title: Izmeni prilog
|
|
167
165
|
update: Ažuriraj
|
|
168
|
-
index:
|
|
169
|
-
attachments_title: Prilozi
|
|
170
166
|
new:
|
|
171
167
|
create: Stvori prilog
|
|
172
168
|
title: Novi prilog
|
|
@@ -204,7 +200,6 @@ bs:
|
|
|
204
200
|
title: 'Dodaj komponentu: %{name}'
|
|
205
201
|
publish:
|
|
206
202
|
success: Komponenta je uspešno objavljena.
|
|
207
|
-
title: Komponente
|
|
208
203
|
unpublish:
|
|
209
204
|
success: Objava komponente je uspešno povučena.
|
|
210
205
|
update:
|
|
@@ -279,7 +274,6 @@ bs:
|
|
|
279
274
|
promotions:
|
|
280
275
|
new:
|
|
281
276
|
explanation: Upravljani učesnici mogu biti unapređeni u regularne učesnike. To znači da će biti pozvani da se prijave, nakon čega nećete više biti u mogućnosti da upravljate njihovim nalozima. Pozvani učesnici će primiti e-mail i potrebno je da prihvate poziv.
|
|
282
|
-
new_managed_user_promotion: Unapređenje novog upravljanog učesnika
|
|
283
277
|
promote: Unapredi
|
|
284
278
|
menu:
|
|
285
279
|
admin_log: Zapisnik aktivnosti administratora
|
|
@@ -370,7 +364,6 @@ bs:
|
|
|
370
364
|
title: Šabloni biltena
|
|
371
365
|
use_template: Koristite ovaj šablon
|
|
372
366
|
show:
|
|
373
|
-
preview: 'Pregledajte šablon %{template_name}'
|
|
374
367
|
use_template: Koristite ovaj šablon
|
|
375
368
|
newsletters:
|
|
376
369
|
create:
|
|
@@ -408,6 +401,7 @@ bs:
|
|
|
408
401
|
participants_help: Pošalji bilten svim potvrđenim učesnicima koji su učestvovali u bilo kojem od odabranih prostora za učešće sa liste.
|
|
409
402
|
recipients_count: Ovaj bilten biće dostavljen %{count} korisnicima.
|
|
410
403
|
select_spaces: Izaberite prostore da podelite bilten
|
|
404
|
+
send_to_all_users: Pošalji svim korisnicima
|
|
411
405
|
title: Izaberi primaoce za dostavu
|
|
412
406
|
warning: "Pažnja: Ovaj bilten će biti poslan samo korisnicima koji su aktivirali Želim da dobijam biltene u svojim podešavanjima obaveštenja."
|
|
413
407
|
show:
|
|
@@ -462,6 +456,11 @@ bs:
|
|
|
462
456
|
gallery:
|
|
463
457
|
add_images: Dodaj slike
|
|
464
458
|
gallery_legend: Dodaj galeriju slika (opciono)
|
|
459
|
+
titles:
|
|
460
|
+
area_types: Tipovi oblasti
|
|
461
|
+
pages: Stranice
|
|
462
|
+
participants: Učesnici
|
|
463
|
+
scope_types: Vrste oblasti
|
|
465
464
|
users_statistics:
|
|
466
465
|
users_count:
|
|
467
466
|
last_day: Poslednji dan
|
data/config/locales/ca-IT.yml
CHANGED
|
@@ -190,14 +190,15 @@ ca-IT:
|
|
|
190
190
|
</ul>
|
|
191
191
|
Si canvies d'opinió, el pots restaurar més endavant.
|
|
192
192
|
export: Exporta
|
|
193
|
-
|
|
193
|
+
export_all: Exportar tot
|
|
194
|
+
export_selection: Exportar selecció
|
|
194
195
|
import: Importar
|
|
195
196
|
menu_hidden: Amaga del menú
|
|
196
197
|
moderate: Gestionar les moderacions
|
|
197
198
|
newsletter:
|
|
198
199
|
new: Nou butlletí
|
|
199
200
|
participatory_space_private_user:
|
|
200
|
-
new:
|
|
201
|
+
new: Nova participant privada de l'espai de participació
|
|
201
202
|
per_page: Per pàgina
|
|
202
203
|
permissions: Gestionar els permisos
|
|
203
204
|
restore: Restaurar
|
|
@@ -221,7 +222,7 @@ ca-IT:
|
|
|
221
222
|
alert: 'Necessari: revisa les nostres condicions del servei d''administració'
|
|
222
223
|
callout: Si us plau, dedica un moment a revisar les condicions del servei d'administració. En cas contrari, no podràs administrar la plataforma.
|
|
223
224
|
cta: Revisar-les ara.
|
|
224
|
-
title: Termes i condicions
|
|
225
|
+
title: Termes i condicions d'ús para administradores
|
|
225
226
|
area_types:
|
|
226
227
|
create:
|
|
227
228
|
error: S'ha produït un error en crear un tipus d'àrea nova.
|
|
@@ -282,7 +283,7 @@ ca-IT:
|
|
|
282
283
|
title: Edita adjunt
|
|
283
284
|
update: Actualitza
|
|
284
285
|
index:
|
|
285
|
-
attachments_title:
|
|
286
|
+
attachments_title: Fitxers adjunts
|
|
286
287
|
new:
|
|
287
288
|
create: Crea adjunt
|
|
288
289
|
title: Nou adjunt
|
|
@@ -519,7 +520,7 @@ ca-IT:
|
|
|
519
520
|
impersonate: Impersonar
|
|
520
521
|
impersonate_existing_managed_user: Gestionar la participant "%{name}"
|
|
521
522
|
impersonate_existing_user: Gestionar la participant "%{name}"
|
|
522
|
-
impersonate_new_managed_user:
|
|
523
|
+
impersonate_new_managed_user: Gestiona una nova participant
|
|
523
524
|
imports:
|
|
524
525
|
and: i
|
|
525
526
|
data_errors:
|
|
@@ -575,7 +576,7 @@ ca-IT:
|
|
|
575
576
|
promotions:
|
|
576
577
|
new:
|
|
577
578
|
explanation: Les participants gestionades es poden promocionar a participants estàndard. Significa que seran convidades al sistema i no podràs tornar a administrar-les. La participant convidada rebrà un correu electrònic per acceptar la vostra invitació.
|
|
578
|
-
new_managed_user_promotion: Nova promoció de participant
|
|
579
|
+
new_managed_user_promotion: Nova promoció de participant gestionada
|
|
579
580
|
promote: Promocionar
|
|
580
581
|
menu:
|
|
581
582
|
admin_log: Registre d'activitat d'administració
|
|
@@ -688,7 +689,7 @@ ca-IT:
|
|
|
688
689
|
title: Desbloquejar
|
|
689
690
|
update_moderated_user_button: Desbloquejar usuàries
|
|
690
691
|
unreport:
|
|
691
|
-
title: Desfer denúncia
|
|
692
|
+
title: Desfer la denúncia
|
|
692
693
|
ignore:
|
|
693
694
|
update_moderated_user_button: Desfer la denúncia a les usuàries
|
|
694
695
|
title: Accions
|
|
@@ -813,7 +814,7 @@ ca-IT:
|
|
|
813
814
|
select_users_for_participatory_space: Enviar el butlletí informatiu a un o més espais de participació
|
|
814
815
|
select_users_general: Enviar un butlletí general
|
|
815
816
|
select_verification_types: Seleccionar mètodes de verificació
|
|
816
|
-
send_to_all_users: Envia a totes les
|
|
817
|
+
send_to_all_users: Envia a totes les participants
|
|
817
818
|
send_to_verified_users: Enviar a usuàries verificades
|
|
818
819
|
title: Selecciona les destinatàries a lliurar
|
|
819
820
|
verified_users_help: Envia un butlletí informatiu a tots els usuaris confirmats i verificats amb qualsevol dels mètodes de verificació seleccionats.
|
|
@@ -924,7 +925,7 @@ ca-IT:
|
|
|
924
925
|
error: S'ha produït un error en afegir una participant privada a aquest espai de participació.
|
|
925
926
|
success: L'accés de la participant a l'espai de participació privat s'ha creat correctament.
|
|
926
927
|
destroy:
|
|
927
|
-
error: S'ha produït un error en eliminar una participant participada d'aquest espai
|
|
928
|
+
error: S'ha produït un error en eliminar una participant participada d'aquest espai de participació.
|
|
928
929
|
success: L'accés de la participant a l'espai de participació privat s'ha eliminat correctament.
|
|
929
930
|
edit:
|
|
930
931
|
title: Editar participant privada de l'espai de participació.
|
|
@@ -932,7 +933,7 @@ ca-IT:
|
|
|
932
933
|
index:
|
|
933
934
|
import_via_csv: Importar des de CSV
|
|
934
935
|
publish_all: Publicar totes
|
|
935
|
-
title: Participant de l'espai
|
|
936
|
+
title: Participant de l'espai de participació privat
|
|
936
937
|
unpublish_all: Despublicar totes
|
|
937
938
|
new:
|
|
938
939
|
create: Crear
|
|
@@ -1223,11 +1224,11 @@ ca-IT:
|
|
|
1223
1224
|
none: Cap
|
|
1224
1225
|
title: Editar element a "%{taxonomy}"
|
|
1225
1226
|
titles:
|
|
1226
|
-
admin_log: Registre d'administració
|
|
1227
|
+
admin_log: Registre d'activitat d'administració
|
|
1227
1228
|
area_types: Tipus d'àrees
|
|
1228
1229
|
areas: Àrees
|
|
1229
1230
|
authorization_workflows: Mètodes de verificació
|
|
1230
|
-
dashboard: Tauler
|
|
1231
|
+
dashboard: Tauler d'administració
|
|
1231
1232
|
edit_external_domains: Llistat de dominis externs permesos
|
|
1232
1233
|
impersonatable_users: Participants que es poden gestionar
|
|
1233
1234
|
impersonations: Gestió de participants
|
|
@@ -1240,7 +1241,7 @@ ca-IT:
|
|
|
1240
1241
|
scopes: Àmbits
|
|
1241
1242
|
statistics: Estadístiques
|
|
1242
1243
|
taxonomies: Taxonomies
|
|
1243
|
-
taxonomy_filters:
|
|
1244
|
+
taxonomy_filters: Filtres de taxonomia per a "%{taxonomy}"
|
|
1244
1245
|
users: Administradores
|
|
1245
1246
|
tooltips:
|
|
1246
1247
|
cannot_destroy_taxonomy_filter: No es pot eliminar aquest filtre de taxonomia
|
|
@@ -1276,6 +1277,10 @@ ca-IT:
|
|
|
1276
1277
|
last_week: La darrera setmana
|
|
1277
1278
|
no_users_count_statistics_yet: Encara no hi ha estadístiques de recompte de participants.
|
|
1278
1279
|
participants: Participants
|
|
1280
|
+
components:
|
|
1281
|
+
settings:
|
|
1282
|
+
global:
|
|
1283
|
+
taxonomy_filters_unavailable: Podràs seleccionar filtres de taxonomia un cop creat el component.
|
|
1279
1284
|
forms:
|
|
1280
1285
|
errors:
|
|
1281
1286
|
impersonate_user:
|