decidim-admin 0.30.4 → 0.30.5
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/admin/destroy_participatory_space_private_user.rb +10 -0
- data/app/commands/decidim/admin/publish_component.rb +1 -0
- data/app/commands/decidim/admin/unpublish_component.rb +1 -0
- data/app/helpers/decidim/admin/moderations/reports_helper.rb +1 -1
- data/app/jobs/decidim/admin/destroy_private_users_follows_job.rb +37 -0
- data/app/packs/src/decidim/admin/draggable-table.js +36 -18
- data/app/packs/src/decidim/admin/sort_list.component.js +3 -2
- data/config/locales/ar.yml +4 -12
- data/config/locales/bg.yml +5 -23
- data/config/locales/bs-BA.yml +14 -1
- data/config/locales/ca-IT.yml +15 -12
- data/config/locales/ca.yml +15 -12
- data/config/locales/cs.yml +7 -11
- data/config/locales/de.yml +12 -9
- data/config/locales/el.yml +4 -16
- data/config/locales/en.yml +8 -5
- data/config/locales/eo.yml +4 -0
- data/config/locales/es-MX.yml +15 -12
- data/config/locales/es-PY.yml +15 -12
- data/config/locales/es.yml +16 -13
- data/config/locales/eu.yml +17 -14
- data/config/locales/fi-plain.yml +9 -6
- data/config/locales/fi.yml +8 -5
- data/config/locales/fr-CA.yml +17 -14
- data/config/locales/fr.yml +17 -14
- data/config/locales/ga-IE.yml +7 -13
- data/config/locales/gl.yml +7 -11
- data/config/locales/he-IL.yml +7 -1
- data/config/locales/hu.yml +6 -25
- data/config/locales/id-ID.yml +7 -0
- data/config/locales/is-IS.yml +7 -0
- data/config/locales/it.yml +1 -26
- data/config/locales/ja.yml +15 -12
- data/config/locales/kaa.yml +5 -6
- data/config/locales/ko.yml +6 -6
- data/config/locales/lb.yml +8 -12
- data/config/locales/lt.yml +5 -22
- data/config/locales/lv.yml +11 -3
- data/config/locales/nl.yml +7 -11
- data/config/locales/no.yml +7 -11
- data/config/locales/pl.yml +9 -22
- data/config/locales/pt-BR.yml +176 -13
- data/config/locales/pt.yml +8 -13
- data/config/locales/ro-RO.yml +11 -28
- data/config/locales/ru.yml +12 -2
- data/config/locales/sk.yml +11 -3
- data/config/locales/sl.yml +4 -0
- data/config/locales/sq-AL.yml +8 -9
- data/config/locales/sr-CS.yml +14 -1
- data/config/locales/sv.yml +10 -21
- data/config/locales/th-TH.yml +5 -1
- data/config/locales/tr-TR.yml +95 -21
- data/config/locales/uk.yml +7 -0
- data/config/locales/zh-CN.yml +11 -2
- data/config/locales/zh-TW.yml +4 -21
- data/lib/decidim/admin/test/admin_participatory_space_access_examples.rb +20 -0
- data/lib/decidim/admin/test/filters_participatory_space_users_examples.rb +1 -1
- data/lib/decidim/admin/version.rb +1 -1
- metadata +9 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8c7f119345553a42277ecd759abce84846286be069279f1aa4cf930602eec53d
|
|
4
|
+
data.tar.gz: ab8fb1409504c435bd928db173f8ce71df1c99897a6fbef28fe29f37b49ceda9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 36d37ce0ffe689df346ca52ebf7fd5d0ad6ff76821fd473bebc0bdfb5e28ea82f85697eaa26f61b5d793b300bd28f5ed65ce5e51fc2620cc514a861b421eba23
|
|
7
|
+
data.tar.gz: 523d00c19429cb6cadde02af6391e819f2dd8863c84cbd59ea5d2f5945b11a170619c5dd96180a4a10653dae671619c619e4d080d7ba7854e64bdccc85a7aabf
|
|
@@ -13,6 +13,16 @@ module Decidim
|
|
|
13
13
|
}
|
|
14
14
|
}
|
|
15
15
|
end
|
|
16
|
+
|
|
17
|
+
def run_after_hooks
|
|
18
|
+
return unless resource.privatable_to.respond_to?(:private_space?)
|
|
19
|
+
return unless resource.privatable_to.private_space?
|
|
20
|
+
return if resource.privatable_to.respond_to?(:is_transparent) && resource.privatable_to.is_transparent?
|
|
21
|
+
|
|
22
|
+
# When private user is destroyed, a hook to destroy the follows of user on private non-transparent assembly
|
|
23
|
+
# or private participatory process and the follows of their children
|
|
24
|
+
DestroyPrivateUsersFollowsJob.perform_later(resource.decidim_user_id, resource.privatable_to)
|
|
25
|
+
end
|
|
16
26
|
end
|
|
17
27
|
end
|
|
18
28
|
end
|
|
@@ -19,7 +19,7 @@ module Decidim
|
|
|
19
19
|
when User
|
|
20
20
|
content_tag :li do
|
|
21
21
|
link_to current_or_new_conversation_path_with(author), target: "_blank", rel: "noopener" do
|
|
22
|
-
"#{author.name} #{icon "mail-send-line"}".html_safe
|
|
22
|
+
"#{author.presenter.name} #{icon "mail-send-line"}".html_safe
|
|
23
23
|
end
|
|
24
24
|
end
|
|
25
25
|
when Decidim::Meetings::Meeting
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module Decidim
|
|
4
|
+
module Admin
|
|
5
|
+
class DestroyPrivateUsersFollowsJob < ApplicationJob
|
|
6
|
+
queue_as :default
|
|
7
|
+
|
|
8
|
+
def perform(decidim_user_id, space)
|
|
9
|
+
return unless space.respond_to?(:private_space?)
|
|
10
|
+
|
|
11
|
+
return unless space.private_space?
|
|
12
|
+
|
|
13
|
+
return if space.respond_to?(:is_transparent) && space.is_transparent?
|
|
14
|
+
|
|
15
|
+
user = Decidim::User.find_by(id: decidim_user_id)
|
|
16
|
+
|
|
17
|
+
return if user.blank?
|
|
18
|
+
|
|
19
|
+
return if space.respond_to?(:can_participate?) && space.can_participate?(user)
|
|
20
|
+
|
|
21
|
+
follows = Decidim::Follow.where(user: user)
|
|
22
|
+
follows.where(followable: space).destroy_all
|
|
23
|
+
|
|
24
|
+
destroy_children_follows(follows, space)
|
|
25
|
+
end
|
|
26
|
+
|
|
27
|
+
def destroy_children_follows(follows, space)
|
|
28
|
+
follows.map do |follow|
|
|
29
|
+
object = follow.followable.presence
|
|
30
|
+
next unless object.respond_to?(:decidim_component_id)
|
|
31
|
+
|
|
32
|
+
follow.destroy if space.component_ids.include?(object.decidim_component_id)
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
end
|
|
36
|
+
end
|
|
37
|
+
end
|
|
@@ -4,30 +4,48 @@ import createSortList from "src/decidim/admin/sort_list.component"
|
|
|
4
4
|
* Draggable table
|
|
5
5
|
*
|
|
6
6
|
* This script is used to make a table draggable.
|
|
7
|
-
* It works with
|
|
7
|
+
* It works with the following data attributes:
|
|
8
8
|
*
|
|
9
9
|
* - data-draggable-table: The table that will be draggable.
|
|
10
10
|
* - data-sort-url: The URL where the order will be sent.
|
|
11
|
+
* - data-draggable-handle: (optional) CSS selector for the drag handle element.
|
|
12
|
+
* When specified, dragging can only be initiated from this element.
|
|
13
|
+
* - data-draggable-placeholder: (optional) HTML for the placeholder element.
|
|
11
14
|
*/
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
15
|
+
document.addEventListener("DOMContentLoaded", () => {
|
|
16
|
+
document.querySelectorAll("[data-draggable-table]").forEach((container) => {
|
|
17
|
+
const options = {
|
|
18
|
+
forcePlaceholderSize: true,
|
|
19
|
+
onSortUpdate: ($children) => {
|
|
20
|
+
const children = $children.toArray();
|
|
16
21
|
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
22
|
+
if (children.length === 0) {
|
|
23
|
+
return;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
const parent = children[0].parentNode;
|
|
27
|
+
const sortUrl = parent.dataset.sortUrl;
|
|
28
|
+
const order = children.map((child) => child.dataset.recordId);
|
|
20
29
|
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
30
|
+
if (sortUrl && sortUrl !== "#") {
|
|
31
|
+
$.ajax({
|
|
32
|
+
method: "PUT",
|
|
33
|
+
url: sortUrl,
|
|
34
|
+
contentType: "application/json",
|
|
35
|
+
data: JSON.stringify({ order_ids: order }) // eslint-disable-line camelcase
|
|
36
|
+
});
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
};
|
|
24
40
|
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
contentType: "application/json",
|
|
29
|
-
data: JSON.stringify({ order_ids: order }) // eslint-disable-line camelcase
|
|
30
|
-
});
|
|
41
|
+
// Read optional configuration from data attributes
|
|
42
|
+
if (container.dataset.draggableHandle) {
|
|
43
|
+
options.handle = container.dataset.draggableHandle;
|
|
31
44
|
}
|
|
45
|
+
if (container.dataset.draggablePlaceholder) {
|
|
46
|
+
options.placeholder = container.dataset.draggablePlaceholder;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
createSortList(container, options);
|
|
32
50
|
});
|
|
33
|
-
})
|
|
51
|
+
});
|
|
@@ -6,7 +6,7 @@ class SortListComponent {
|
|
|
6
6
|
/**
|
|
7
7
|
* Creates a sortable list using hmtl5sortable function.
|
|
8
8
|
*
|
|
9
|
-
* @param {String} sortListSelector The list selector that has to be sortable.
|
|
9
|
+
* @param {String|HTMLElement} sortListSelector The list selector or element that has to be sortable.
|
|
10
10
|
* @param {Object} options An object containing the same options as html5sortable. It also includes
|
|
11
11
|
* an extra option `onSortUpdate`, a callback which returns the children collection
|
|
12
12
|
* whenever the list order has been changed.
|
|
@@ -14,7 +14,8 @@ class SortListComponent {
|
|
|
14
14
|
* @returns {void} Nothing.
|
|
15
15
|
*/
|
|
16
16
|
constructor(sortListSelector, options) {
|
|
17
|
-
|
|
17
|
+
const $element = $(sortListSelector);
|
|
18
|
+
if ($element.length > 0) {
|
|
18
19
|
sortable(sortListSelector, options)[0].addEventListener("sortupdate", (event) => {
|
|
19
20
|
const $children = $(event.target).children();
|
|
20
21
|
|
data/config/locales/ar.yml
CHANGED
|
@@ -38,7 +38,6 @@ ar:
|
|
|
38
38
|
user_group_id: إنشاء الاستيرادات ك
|
|
39
39
|
newsletter:
|
|
40
40
|
body: النص
|
|
41
|
-
send_to_all_users: إرسال إلى كافة المستخدمين
|
|
42
41
|
send_to_followers: إرسال إلى المتابِعين
|
|
43
42
|
send_to_participants: إرسال إلى المشتركين
|
|
44
43
|
subject: الموضوع
|
|
@@ -105,7 +104,7 @@ ar:
|
|
|
105
104
|
youtube_handler: مُعرّف حساب يوتيوب
|
|
106
105
|
participatory_space_private_user:
|
|
107
106
|
email: البريد الإلكتروني
|
|
108
|
-
name:
|
|
107
|
+
name: الاسم
|
|
109
108
|
participatory_space_private_user_csv_import:
|
|
110
109
|
file: ملف
|
|
111
110
|
scope:
|
|
@@ -362,16 +361,9 @@ ar:
|
|
|
362
361
|
'false': Officialized
|
|
363
362
|
'true': غير رسمي
|
|
364
363
|
participatory_space_private_users:
|
|
365
|
-
user_invitation_accepted_at_not_null:
|
|
366
|
-
label: تم قبول الدعوة
|
|
367
|
-
values:
|
|
368
|
-
'false': لم يتم القبول
|
|
369
|
-
'true': تم قبوله
|
|
370
364
|
user_invitation_sent_at_not_null:
|
|
371
|
-
label: تم إرسال الدعوة
|
|
372
365
|
values:
|
|
373
|
-
'false':
|
|
374
|
-
'true': تم الإرسال
|
|
366
|
+
'false': غير مرسَلة
|
|
375
367
|
private_space_eq:
|
|
376
368
|
label: خاص
|
|
377
369
|
values:
|
|
@@ -718,6 +710,8 @@ ar:
|
|
|
718
710
|
destroy:
|
|
719
711
|
error: حدثت مشكلة في حذف مشارك خاص لهذه المساحة التشاركية.
|
|
720
712
|
success: المشاركة الفضاء الفضاء وصول المشاركين دمرت بنجاح.
|
|
713
|
+
edit:
|
|
714
|
+
update: تحديث
|
|
721
715
|
index:
|
|
722
716
|
title: المشاركة الفضاء المشارك الخاص
|
|
723
717
|
new:
|
|
@@ -732,7 +726,6 @@ ar:
|
|
|
732
726
|
empty: ليس لديك أي مشاركين خاصين.
|
|
733
727
|
explanation: لديك %{count} مشاركين خاصين.
|
|
734
728
|
title: حذف جميع المشاركين الخاصين
|
|
735
|
-
upload: حمّل
|
|
736
729
|
reminders:
|
|
737
730
|
new:
|
|
738
731
|
submit: إرسال
|
|
@@ -870,7 +863,6 @@ ar:
|
|
|
870
863
|
new:
|
|
871
864
|
explanation: قم بتحميل ملف CSV الخاص بك. يجب أن يحتوي على رسائل البريد الإلكتروني الرسمية للمجموعات في مؤسستك في العمود الأول من الملف ، بدون رؤوس. سيتم التحقق من صحة المجموعات التي أكدت بريدها الإلكتروني والتي تحتوي على بريد إلكتروني ظاهر في ملف CSV.
|
|
872
865
|
title: قم بتحميل ملف CSV الخاص بك
|
|
873
|
-
upload: حمّل
|
|
874
866
|
users:
|
|
875
867
|
create:
|
|
876
868
|
error: كانت هناك مشكلة في دعوة هذا المشرف.
|
data/config/locales/bg.yml
CHANGED
|
@@ -38,7 +38,6 @@ bg:
|
|
|
38
38
|
user_group_id: Създаване на импорта като
|
|
39
39
|
newsletter:
|
|
40
40
|
body: Тяло
|
|
41
|
-
send_to_all_users: Изпращане до всички потребители
|
|
42
41
|
send_to_followers: Изпращане до последователите
|
|
43
42
|
send_to_participants: Изпращане до участниците
|
|
44
43
|
subject: Тема
|
|
@@ -106,6 +105,8 @@ bg:
|
|
|
106
105
|
participatory_space_private_user:
|
|
107
106
|
email: Имейл
|
|
108
107
|
name: Име
|
|
108
|
+
participatory_space_private_user_csv_import:
|
|
109
|
+
file: Файл
|
|
109
110
|
scope:
|
|
110
111
|
code: Код
|
|
111
112
|
name: Име
|
|
@@ -287,7 +288,6 @@ bg:
|
|
|
287
288
|
block_user:
|
|
288
289
|
new:
|
|
289
290
|
action: Блокирайте акаунта и изпратете обосновка
|
|
290
|
-
already_reported_html: Продължавайки с това действие, вие също ще скриете съдържанието за всички участници.
|
|
291
291
|
description: Блокирането на потребител ще направи акаунта му неизползваем. Можете да предоставите във вашата обосновка всякакви насоки относно начините, по които бихте обмислили деблокирането на потребителя.
|
|
292
292
|
justification: Обосновка
|
|
293
293
|
title: Блокиране на потребител %{name}
|
|
@@ -379,7 +379,6 @@ bg:
|
|
|
379
379
|
form:
|
|
380
380
|
domain_too_short: Домейнът е твърде кратък
|
|
381
381
|
update:
|
|
382
|
-
error: Неуспешно актуализиране на списъка с разрешени външни домейни
|
|
383
382
|
success: Списъкът с разрешени външни домейни е актуализиран успешно.
|
|
384
383
|
exports:
|
|
385
384
|
export_as: "%{name} като %{export_format}"
|
|
@@ -417,16 +416,9 @@ bg:
|
|
|
417
416
|
'false': Официализирано
|
|
418
417
|
'true': Неофициализирано
|
|
419
418
|
participatory_space_private_users:
|
|
420
|
-
user_invitation_accepted_at_not_null:
|
|
421
|
-
label: Поканата е приета
|
|
422
|
-
values:
|
|
423
|
-
'false': Не се приема
|
|
424
|
-
'true': Прието
|
|
425
419
|
user_invitation_sent_at_not_null:
|
|
426
|
-
label: Поканата е изпратена
|
|
427
420
|
values:
|
|
428
421
|
'false': Не е изпратено
|
|
429
|
-
'true': Изпратено
|
|
430
422
|
private_space_eq:
|
|
431
423
|
label: Частни
|
|
432
424
|
values:
|
|
@@ -756,6 +748,7 @@ bg:
|
|
|
756
748
|
participants_help: Изпраща бюлетина до всички потвърдени потребители, които са участвали в някое от избраните пространства за участие в списъка.
|
|
757
749
|
recipients_count: Този бюлетин ще бъде изпратен на <strong id='recipients_count'>%{count}</strong> потребители.
|
|
758
750
|
select_spaces: Изберете пространства, за да сегментирате бюлетина
|
|
751
|
+
send_to_all_users: Изпращане до всички потребители
|
|
759
752
|
title: Изберете получатели, на които да бъде изпратено
|
|
760
753
|
warning: "<strong>Внимание:</strong> Този бюлетин ще бъде изпратен само на потребители, които са включили <em>Искам да получавам бюлетини</em> в настройките си за известия."
|
|
761
754
|
send:
|
|
@@ -856,16 +849,14 @@ bg:
|
|
|
856
849
|
destroy:
|
|
857
850
|
error: Възникна проблем при изтриването на частен участник за това пространство за участие.
|
|
858
851
|
success: Достъпът на частния участник до пространството за участие беше премахнат успешно.
|
|
852
|
+
edit:
|
|
853
|
+
update: Актуализация
|
|
859
854
|
index:
|
|
860
|
-
import_via_csv: Импортиране чрез CSV
|
|
861
855
|
title: Пространство за участие на частен участник
|
|
862
856
|
new:
|
|
863
857
|
create: Създаване
|
|
864
858
|
title: Ново пространство за участие на частен участник.
|
|
865
859
|
participatory_space_private_users_csv_imports:
|
|
866
|
-
create:
|
|
867
|
-
invalid: Възникна проблем при четенето на CSV файла. Моля, уверете се, че сте следвали инструкциите.
|
|
868
|
-
success: Файлът във формат CSV беше качен успешно; изпращаме имейл с покана на участниците. Това може да отнеме известно време.
|
|
869
860
|
new:
|
|
870
861
|
csv_upload:
|
|
871
862
|
title: Качете своя CSV файл
|
|
@@ -875,13 +866,7 @@ bg:
|
|
|
875
866
|
empty: Нямате частни участници.
|
|
876
867
|
explanation: Имате %{count} частни участници.
|
|
877
868
|
title: Изтрийте частни участници
|
|
878
|
-
example_file: 'Примерен файл:'
|
|
879
|
-
explanation: Качете своя файл във формат CSV. Трябва да съдържа две колони — електронната поща в първата колона и името в последната колона от файла (електронна поща, име) — за потребителите, които искате да добавите в пространството за участие, без заглавки.
|
|
880
|
-
explanation_example: |
|
|
881
|
-
john.doe@example.org%{csv_col_sep}John Doe
|
|
882
|
-
jane.doe@example.org%{csv_col_sep}Jane Doe
|
|
883
869
|
title: Импортирайте частни участници чрез CSV
|
|
884
|
-
upload: Качване
|
|
885
870
|
reminders:
|
|
886
871
|
create:
|
|
887
872
|
error: Възникна проблем при създаването на напомняния.
|
|
@@ -1056,13 +1041,11 @@ bg:
|
|
|
1056
1041
|
verify_via_csv: Проверка чрез CSV
|
|
1057
1042
|
user_groups_csv_verifications:
|
|
1058
1043
|
new:
|
|
1059
|
-
example_file: 'Примерен файл:'
|
|
1060
1044
|
explanation: Качете своя файл във формат CSV. Трябва да съдържа официалните електронни пощи на групите в организацията Ви в първата колона от файла, без заглавки. Ще бъдат валидирани само групите с потвърдена електронна поща и с адрес на електронната поща във файла във формат CSV.
|
|
1061
1045
|
explanation_example: |
|
|
1062
1046
|
acme@example.org
|
|
1063
1047
|
bubba.gump@example.org
|
|
1064
1048
|
title: Качете своя CSV файл
|
|
1065
|
-
upload: Качване
|
|
1066
1049
|
users:
|
|
1067
1050
|
create:
|
|
1068
1051
|
error: Възникна проблем с поканата на този администратор.
|
|
@@ -1083,7 +1066,6 @@ bg:
|
|
|
1083
1066
|
last_day: Предният ден
|
|
1084
1067
|
last_month: Миналия месец
|
|
1085
1068
|
last_week: Последната седмица
|
|
1086
|
-
no_users_count_statistics_yet: Все още няма статистика за броя на потребителите.
|
|
1087
1069
|
participants: Участници
|
|
1088
1070
|
forms:
|
|
1089
1071
|
errors:
|
data/config/locales/bs-BA.yml
CHANGED
|
@@ -69,6 +69,11 @@ bs:
|
|
|
69
69
|
welcome_notification_body: Glavni tekst obaveštenja dobrodošlice
|
|
70
70
|
welcome_notification_subject: Naslov obaveštenja dobrodošlice
|
|
71
71
|
youtube_handler: Administrator YouTube-a
|
|
72
|
+
participatory_space_private_user:
|
|
73
|
+
email: E-pošta
|
|
74
|
+
name: Ime
|
|
75
|
+
participatory_space_private_user_csv_import:
|
|
76
|
+
file: Fajl
|
|
72
77
|
scope:
|
|
73
78
|
code: Kod
|
|
74
79
|
name: Ime
|
|
@@ -231,6 +236,10 @@ bs:
|
|
|
231
236
|
values:
|
|
232
237
|
'false': Službeno
|
|
233
238
|
'true': Neslužbeno
|
|
239
|
+
participatory_space_private_users:
|
|
240
|
+
user_invitation_sent_at_not_null:
|
|
241
|
+
values:
|
|
242
|
+
'false': Nije poslato
|
|
234
243
|
private_space_eq:
|
|
235
244
|
label: Privatno
|
|
236
245
|
values:
|
|
@@ -431,7 +440,6 @@ bs:
|
|
|
431
440
|
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.
|
|
432
441
|
recipients_count: Ovaj bilten biće dostavljen %{count} korisnicima.
|
|
433
442
|
select_spaces: Izaberite prostore da podelite bilten
|
|
434
|
-
send_to_all_users: Pošalji svim korisnicima
|
|
435
443
|
title: Izaberi primaoce za dostavu
|
|
436
444
|
warning: "Pažnja: Ovaj bilten će biti poslan samo korisnicima koji su aktivirali Želim da dobijam biltene u svojim podešavanjima obaveštenja."
|
|
437
445
|
show:
|
|
@@ -486,6 +494,11 @@ bs:
|
|
|
486
494
|
images:
|
|
487
495
|
preview: Pregled
|
|
488
496
|
omnipresent_banner_appearance_title: Izmeni sveprisutni baner
|
|
497
|
+
participatory_space_private_users:
|
|
498
|
+
edit:
|
|
499
|
+
update: Ažuriraj
|
|
500
|
+
new:
|
|
501
|
+
create: Stvori
|
|
489
502
|
shared:
|
|
490
503
|
gallery:
|
|
491
504
|
add_images: Dodaj slike
|
data/config/locales/ca-IT.yml
CHANGED
|
@@ -38,7 +38,7 @@ ca-IT:
|
|
|
38
38
|
user_group_id: Importar com
|
|
39
39
|
newsletter:
|
|
40
40
|
body: Cos
|
|
41
|
-
send_to_all_users: Envia a totes les
|
|
41
|
+
send_to_all_users: Envia a totes les participants
|
|
42
42
|
send_to_followers: Envia a totes les seguidores
|
|
43
43
|
send_to_participants: Envia a les participants
|
|
44
44
|
subject: Assumpte
|
|
@@ -138,6 +138,9 @@ ca-IT:
|
|
|
138
138
|
show_in_footer: Mostra al peu de pàgina
|
|
139
139
|
title: Títol
|
|
140
140
|
weight: Ordre de posició
|
|
141
|
+
taxonomy:
|
|
142
|
+
item_name: Nom de l'element
|
|
143
|
+
parent_id: Taxonomia mare
|
|
141
144
|
user_group_csv_verification:
|
|
142
145
|
file: Fitxer
|
|
143
146
|
errors:
|
|
@@ -308,7 +311,7 @@ ca-IT:
|
|
|
308
311
|
title: Bloquejar usuàries
|
|
309
312
|
new:
|
|
310
313
|
action: Bloquejar compte i enviar justificació
|
|
311
|
-
already_reported_html: Si segueixes amb aquesta acció, amagaràs tots els continguts de
|
|
314
|
+
already_reported_html: Si segueixes amb aquesta acció, amagaràs tots els continguts de les participants.
|
|
312
315
|
description: El bloqueig d'una usuària deixarà el seu compte inutilitzable. Pots proporcionar en la teva justificació els criteris sota els quals consideraries desbloquejar-la.
|
|
313
316
|
justification: Justificació
|
|
314
317
|
title: Bloquejar a la usuària %{name}
|
|
@@ -325,7 +328,7 @@ ca-IT:
|
|
|
325
328
|
success: El component s'ha creat correctament.
|
|
326
329
|
success_landing_page: Component creat amb èxit. Pots afegir un bloc de contingut per aquest component a la pàgina d'inici de l'espai de participació. <a href="%{landing_page_path}">Vés a la pàgina d'inici</a> per a configurar-la.
|
|
327
330
|
edit:
|
|
328
|
-
title:
|
|
331
|
+
title: Configura el component
|
|
329
332
|
update: Actualitzar
|
|
330
333
|
form:
|
|
331
334
|
default_step_settings: Configuració per defecte
|
|
@@ -402,7 +405,7 @@ ca-IT:
|
|
|
402
405
|
form:
|
|
403
406
|
domain_too_short: El domini és massa curt
|
|
404
407
|
update:
|
|
405
|
-
error: S'ha produït un error en actualitzar el llistat de
|
|
408
|
+
error: S'ha produït un error en actualitzar el llistat de dominis externs permesos.
|
|
406
409
|
success: El llistat de dominis externs permesos s'ha actualitzat correctament.
|
|
407
410
|
exports:
|
|
408
411
|
export_as: "%{name} com a %{export_format}"
|
|
@@ -446,9 +449,9 @@ ca-IT:
|
|
|
446
449
|
'false': No acceptada
|
|
447
450
|
'true': Acceptada
|
|
448
451
|
user_invitation_sent_at_not_null:
|
|
449
|
-
label:
|
|
452
|
+
label: Invitació enviada
|
|
450
453
|
values:
|
|
451
|
-
'false': No
|
|
454
|
+
'false': No enviat
|
|
452
455
|
'true': Enviada
|
|
453
456
|
private_space_eq:
|
|
454
457
|
label: Privat
|
|
@@ -826,7 +829,7 @@ ca-IT:
|
|
|
826
829
|
select_users_for_participatory_space: Enviar el butlletí informatiu a un o més espais de participació
|
|
827
830
|
select_users_general: Enviar un butlletí general
|
|
828
831
|
select_verification_types: Seleccionar mètodes de verificació
|
|
829
|
-
send_to_all_users: Envia a totes les
|
|
832
|
+
send_to_all_users: Envia a totes les usuàries
|
|
830
833
|
send_to_verified_users: Enviar a usuàries verificades
|
|
831
834
|
title: Selecciona les destinatàries a lliurar
|
|
832
835
|
verified_users_help: Envia un butlletí informatiu a tots els usuaris confirmats i verificats amb qualsevol dels mètodes de verificació seleccionats.
|
|
@@ -951,9 +954,9 @@ ca-IT:
|
|
|
951
954
|
update: Actualitzar
|
|
952
955
|
index:
|
|
953
956
|
import_via_csv: Importar des de CSV
|
|
954
|
-
publish_all: Publicar
|
|
957
|
+
publish_all: Publicar totes
|
|
955
958
|
title: Participant de l'espai participatiu privat
|
|
956
|
-
unpublish_all: Despublicar
|
|
959
|
+
unpublish_all: Despublicar totes
|
|
957
960
|
new:
|
|
958
961
|
create: Crear
|
|
959
962
|
title: Nova participant de l'espai privat.
|
|
@@ -985,7 +988,7 @@ ca-IT:
|
|
|
985
988
|
john.doe@example.org%{csv_col_sep}John Doe
|
|
986
989
|
jane.doe@example.org%{csv_col_sep}Jane Doe
|
|
987
990
|
title: Importar participant privades via CSV
|
|
988
|
-
upload:
|
|
991
|
+
upload: Carregar
|
|
989
992
|
reminders:
|
|
990
993
|
create:
|
|
991
994
|
error: Hi ha hagut un problema en crear els recordatoris.
|
|
@@ -1300,7 +1303,7 @@ ca-IT:
|
|
|
1300
1303
|
acme@example.org
|
|
1301
1304
|
bubba.gump@example.org
|
|
1302
1305
|
title: Puja el fitxer CSV
|
|
1303
|
-
upload:
|
|
1306
|
+
upload: Carregar
|
|
1304
1307
|
users:
|
|
1305
1308
|
create:
|
|
1306
1309
|
error: S'ha produït un error en convidar aquesta participant.
|
|
@@ -1321,7 +1324,7 @@ ca-IT:
|
|
|
1321
1324
|
last_day: El darrer dia
|
|
1322
1325
|
last_month: El darrer mes
|
|
1323
1326
|
last_week: La darrera setmana
|
|
1324
|
-
no_users_count_statistics_yet: Encara no hi ha estadístiques de recompte
|
|
1327
|
+
no_users_count_statistics_yet: Encara no hi ha estadístiques de recompte de participants.
|
|
1325
1328
|
participants: Participants
|
|
1326
1329
|
forms:
|
|
1327
1330
|
errors:
|
data/config/locales/ca.yml
CHANGED
|
@@ -38,7 +38,7 @@ ca:
|
|
|
38
38
|
user_group_id: Importar com
|
|
39
39
|
newsletter:
|
|
40
40
|
body: Cos
|
|
41
|
-
send_to_all_users: Envia a totes les
|
|
41
|
+
send_to_all_users: Envia a totes les participants
|
|
42
42
|
send_to_followers: Envia a totes les seguidores
|
|
43
43
|
send_to_participants: Envia a les participants
|
|
44
44
|
subject: Assumpte
|
|
@@ -138,6 +138,9 @@ ca:
|
|
|
138
138
|
show_in_footer: Mostra al peu de pàgina
|
|
139
139
|
title: Títol
|
|
140
140
|
weight: Ordre de posició
|
|
141
|
+
taxonomy:
|
|
142
|
+
item_name: Nom de l'element
|
|
143
|
+
parent_id: Taxonomia mare
|
|
141
144
|
user_group_csv_verification:
|
|
142
145
|
file: Fitxer
|
|
143
146
|
errors:
|
|
@@ -308,7 +311,7 @@ ca:
|
|
|
308
311
|
title: Bloquejar usuàries
|
|
309
312
|
new:
|
|
310
313
|
action: Bloquejar compte i enviar justificació
|
|
311
|
-
already_reported_html: Si segueixes amb aquesta acció, amagaràs tots els continguts de
|
|
314
|
+
already_reported_html: Si segueixes amb aquesta acció, amagaràs tots els continguts de les participants.
|
|
312
315
|
description: El bloqueig d'una usuària deixarà el seu compte inutilitzable. Pots proporcionar en la teva justificació els criteris sota els quals consideraries desbloquejar-la.
|
|
313
316
|
justification: Justificació
|
|
314
317
|
title: Bloquejar a la usuària %{name}
|
|
@@ -325,7 +328,7 @@ ca:
|
|
|
325
328
|
success: El component s'ha creat correctament.
|
|
326
329
|
success_landing_page: Component creat amb èxit. Pots afegir un bloc de contingut per aquest component a la pàgina d'inici de l'espai de participació. <a href="%{landing_page_path}">Vés a la pàgina d'inici</a> per a configurar-la.
|
|
327
330
|
edit:
|
|
328
|
-
title:
|
|
331
|
+
title: Configura el component
|
|
329
332
|
update: Actualitzar
|
|
330
333
|
form:
|
|
331
334
|
default_step_settings: Configuració per defecte
|
|
@@ -402,7 +405,7 @@ ca:
|
|
|
402
405
|
form:
|
|
403
406
|
domain_too_short: El domini és massa curt
|
|
404
407
|
update:
|
|
405
|
-
error: S'ha produït un error en actualitzar el llistat de
|
|
408
|
+
error: S'ha produït un error en actualitzar el llistat de dominis externs permesos.
|
|
406
409
|
success: El llistat de dominis externs permesos s'ha actualitzat correctament.
|
|
407
410
|
exports:
|
|
408
411
|
export_as: "%{name} com a %{export_format}"
|
|
@@ -446,9 +449,9 @@ ca:
|
|
|
446
449
|
'false': No acceptada
|
|
447
450
|
'true': Acceptada
|
|
448
451
|
user_invitation_sent_at_not_null:
|
|
449
|
-
label:
|
|
452
|
+
label: Invitació enviada
|
|
450
453
|
values:
|
|
451
|
-
'false': No
|
|
454
|
+
'false': No enviat
|
|
452
455
|
'true': Enviada
|
|
453
456
|
private_space_eq:
|
|
454
457
|
label: Privat
|
|
@@ -826,7 +829,7 @@ ca:
|
|
|
826
829
|
select_users_for_participatory_space: Enviar el butlletí informatiu a un o més espais de participació
|
|
827
830
|
select_users_general: Enviar un butlletí general
|
|
828
831
|
select_verification_types: Seleccionar mètodes de verificació
|
|
829
|
-
send_to_all_users: Envia a totes les
|
|
832
|
+
send_to_all_users: Envia a totes les usuàries
|
|
830
833
|
send_to_verified_users: Enviar a usuàries verificades
|
|
831
834
|
title: Selecciona les destinatàries a lliurar
|
|
832
835
|
verified_users_help: Envia un butlletí informatiu a tots els usuaris confirmats i verificats amb qualsevol dels mètodes de verificació seleccionats.
|
|
@@ -951,9 +954,9 @@ ca:
|
|
|
951
954
|
update: Actualitzar
|
|
952
955
|
index:
|
|
953
956
|
import_via_csv: Importar des de CSV
|
|
954
|
-
publish_all: Publicar
|
|
957
|
+
publish_all: Publicar totes
|
|
955
958
|
title: Participant de l'espai participatiu privat
|
|
956
|
-
unpublish_all: Despublicar
|
|
959
|
+
unpublish_all: Despublicar totes
|
|
957
960
|
new:
|
|
958
961
|
create: Crear
|
|
959
962
|
title: Nova participant de l'espai privat.
|
|
@@ -985,7 +988,7 @@ ca:
|
|
|
985
988
|
john.doe@example.org%{csv_col_sep}John Doe
|
|
986
989
|
jane.doe@example.org%{csv_col_sep}Jane Doe
|
|
987
990
|
title: Importar participant privades via CSV
|
|
988
|
-
upload:
|
|
991
|
+
upload: Carregar
|
|
989
992
|
reminders:
|
|
990
993
|
create:
|
|
991
994
|
error: Hi ha hagut un problema en crear els recordatoris.
|
|
@@ -1300,7 +1303,7 @@ ca:
|
|
|
1300
1303
|
acme@example.org
|
|
1301
1304
|
bubba.gump@example.org
|
|
1302
1305
|
title: Puja el fitxer CSV
|
|
1303
|
-
upload:
|
|
1306
|
+
upload: Carregar
|
|
1304
1307
|
users:
|
|
1305
1308
|
create:
|
|
1306
1309
|
error: S'ha produït un error en convidar aquesta participant.
|
|
@@ -1321,7 +1324,7 @@ ca:
|
|
|
1321
1324
|
last_day: El darrer dia
|
|
1322
1325
|
last_month: El darrer mes
|
|
1323
1326
|
last_week: La darrera setmana
|
|
1324
|
-
no_users_count_statistics_yet: Encara no hi ha estadístiques de recompte
|
|
1327
|
+
no_users_count_statistics_yet: Encara no hi ha estadístiques de recompte de participants.
|
|
1325
1328
|
participants: Participants
|
|
1326
1329
|
forms:
|
|
1327
1330
|
errors:
|