decidim-admin 0.26.4 → 0.26.7
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/publish_component.rb +1 -1
- data/app/commands/decidim/admin/unblock_user.rb +1 -1
- data/app/controllers/decidim/admin/block_user_controller.rb +3 -3
- data/app/controllers/decidim/admin/newsletter_templates_controller.rb +1 -1
- data/app/controllers/decidim/admin/newsletters_controller.rb +1 -1
- data/app/forms/decidim/admin/block_user_form.rb +2 -2
- data/app/helpers/decidim/admin/bulk_actions_helper.rb +1 -6
- data/app/models/decidim/admin/fake_newsletter.rb +20 -0
- data/app/packs/src/decidim/admin/draggable-list.js +1 -1
- data/app/packs/stylesheets/decidim/admin/extra/_quill.scss +7 -0
- data/app/permissions/decidim/admin/permissions.rb +32 -2
- data/app/views/decidim/admin/moderated_users/index.html.erb +1 -1
- data/app/views/decidim/admin/officializations/index.html.erb +14 -10
- data/app/views/decidim/admin/static_pages/_form.html.erb +1 -1
- data/config/locales/ar.yml +26 -16
- data/config/locales/ca.yml +21 -10
- data/config/locales/cs.yml +16 -4
- data/config/locales/de.yml +17 -8
- data/config/locales/el.yml +0 -5
- data/config/locales/en.yml +13 -2
- data/config/locales/es-MX.yml +17 -6
- data/config/locales/es-PY.yml +17 -6
- data/config/locales/es.yml +20 -9
- data/config/locales/eu.yml +32 -19
- data/config/locales/fa-IR.yml +1 -0
- data/config/locales/fi-plain.yml +15 -4
- data/config/locales/fi.yml +19 -8
- data/config/locales/fr-CA.yml +15 -4
- data/config/locales/fr.yml +15 -4
- data/config/locales/gl.yml +0 -5
- data/config/locales/hu.yml +36 -22
- data/config/locales/id-ID.yml +1 -3
- data/config/locales/is-IS.yml +4 -3
- data/config/locales/it.yml +1 -6
- data/config/locales/ja.yml +21 -9
- data/config/locales/ka-GE.yml +1 -0
- data/config/locales/kaa.yml +1 -0
- data/config/locales/lb.yml +0 -5
- data/config/locales/lt.yml +0 -5
- data/config/locales/lv.yml +1 -5
- data/config/locales/nl.yml +1 -6
- data/config/locales/no.yml +0 -5
- data/config/locales/pl.yml +0 -5
- data/config/locales/pt-BR.yml +1 -6
- data/config/locales/pt.yml +0 -5
- data/config/locales/ro-RO.yml +26 -14
- data/config/locales/ru.yml +4 -3
- data/config/locales/sk.yml +1 -5
- data/config/locales/sr-CS.yml +8 -4
- data/config/locales/sv.yml +15 -8
- data/config/locales/tr-TR.yml +2 -5
- data/config/locales/uk.yml +4 -3
- data/config/locales/zh-CN.yml +1 -5
- data/config/locales/zh-TW.yml +1075 -0
- data/lib/decidim/admin/test/manage_moderations_examples.rb +7 -1
- data/lib/decidim/admin/version.rb +1 -1
- metadata +11 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9d10899e9c95c132fe275efe626ba406c9ff091236048fb5f41d0286a32fdab0
|
|
4
|
+
data.tar.gz: b8ca0d051c4cd3860b4d44a9a47c6d1025ddb4cbc86aa0629826e4b10c91b256
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 327d80ce55828c1869071bde249b40eaaa079ecd4df8a89e9032e821338956150bca5de3a84b22a3b986132e3f972a9bdd1f82ae6b3f64c46a89a6cdd1b902b4
|
|
7
|
+
data.tar.gz: 45e8569f02f96450c6cafb872d83e5a44c2824c0ddc3b0cf777d2f06fe8b7d1b3470b4c9dc1b5e61dcdf092fec9aa28e93d055ac29e4fd22c0a7768eefd64e3e
|
|
@@ -39,7 +39,7 @@ module Decidim
|
|
|
39
39
|
@blocked_user.blocked = false
|
|
40
40
|
@blocked_user.blocked_at = nil
|
|
41
41
|
@blocked_user.block_id = nil
|
|
42
|
-
@blocked_user.name = @blocked_user.user_name
|
|
42
|
+
@blocked_user.name = @blocked_user.extended_data["user_name"]
|
|
43
43
|
@blocked_user.save!
|
|
44
44
|
end
|
|
45
45
|
end
|
|
@@ -21,7 +21,7 @@ module Decidim
|
|
|
21
21
|
BlockUser.call(@form) do
|
|
22
22
|
on(:ok) do
|
|
23
23
|
flash[:notice] = I18n.t("officializations.block.success", scope: "decidim.admin")
|
|
24
|
-
redirect_to
|
|
24
|
+
redirect_to moderated_users_path(blocked: true), notice: notice
|
|
25
25
|
end
|
|
26
26
|
|
|
27
27
|
on(:invalid) do
|
|
@@ -44,13 +44,13 @@ module Decidim
|
|
|
44
44
|
end
|
|
45
45
|
end
|
|
46
46
|
|
|
47
|
-
redirect_to
|
|
47
|
+
redirect_to moderated_users_path(blocked: false), notice: notice
|
|
48
48
|
end
|
|
49
49
|
|
|
50
50
|
private
|
|
51
51
|
|
|
52
52
|
def user
|
|
53
|
-
@user ||= Decidim::
|
|
53
|
+
@user ||= Decidim::UserBaseEntity.find_by(
|
|
54
54
|
id: params[:user_id],
|
|
55
55
|
organization: current_organization
|
|
56
56
|
)
|
|
@@ -15,7 +15,7 @@ module Decidim
|
|
|
15
15
|
def show; end
|
|
16
16
|
|
|
17
17
|
def preview
|
|
18
|
-
email = NewsletterMailer.newsletter(current_user, fake_newsletter)
|
|
18
|
+
email = NewsletterMailer.newsletter(current_user, fake_newsletter, preview: true)
|
|
19
19
|
Premailer::Rails::Hook.perform(email)
|
|
20
20
|
render html: email.html_part.body.decoded.html_safe
|
|
21
21
|
end
|
|
@@ -28,7 +28,7 @@ module Decidim
|
|
|
28
28
|
def preview
|
|
29
29
|
enforce_permission_to :read, :newsletter, newsletter: newsletter
|
|
30
30
|
|
|
31
|
-
email = NewsletterMailer.newsletter(current_user, newsletter)
|
|
31
|
+
email = NewsletterMailer.newsletter(current_user, newsletter, preview: true)
|
|
32
32
|
Premailer::Rails::Hook.perform(email)
|
|
33
33
|
render html: email.html_part.body.decoded.html_safe
|
|
34
34
|
end
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
module Decidim
|
|
4
4
|
module Admin
|
|
5
|
-
# A form object used to
|
|
5
|
+
# A form object used to block users or user groups on the admin dashboard.
|
|
6
6
|
class BlockUserForm < Form
|
|
7
7
|
attribute :user_id, Integer
|
|
8
8
|
attribute :justification, String
|
|
@@ -15,7 +15,7 @@ module Decidim
|
|
|
15
15
|
end
|
|
16
16
|
|
|
17
17
|
def user
|
|
18
|
-
@user ||= Decidim::
|
|
18
|
+
@user ||= Decidim::UserBaseEntity.find_by(
|
|
19
19
|
id: user_id,
|
|
20
20
|
organization: current_organization
|
|
21
21
|
)
|
|
@@ -14,9 +14,8 @@ module Decidim
|
|
|
14
14
|
# Returns a String.
|
|
15
15
|
def bulk_categories_select(collection)
|
|
16
16
|
categories = bulk_categories_for_select collection
|
|
17
|
-
disabled = bulk_disabled_categories_for collection
|
|
18
17
|
prompt = t("decidim.proposals.admin.proposals.index.change_category")
|
|
19
|
-
select(:category, :id, options_for_select(categories, selected: []
|
|
18
|
+
select(:category, :id, options_for_select(categories, selected: []), prompt: prompt)
|
|
20
19
|
end
|
|
21
20
|
|
|
22
21
|
def bulk_categories_for_select(scope)
|
|
@@ -39,10 +38,6 @@ module Decidim
|
|
|
39
38
|
end
|
|
40
39
|
end
|
|
41
40
|
|
|
42
|
-
def bulk_disabled_categories_for(scope)
|
|
43
|
-
scope.first_class.joins(:subcategories).pluck(:id)
|
|
44
|
-
end
|
|
45
|
-
|
|
46
41
|
# Public: Generates a select field with the components.
|
|
47
42
|
#
|
|
48
43
|
# siblings - A collection of components.
|
|
@@ -41,6 +41,26 @@ module Decidim
|
|
|
41
41
|
nil
|
|
42
42
|
end
|
|
43
43
|
|
|
44
|
+
def draft?
|
|
45
|
+
true
|
|
46
|
+
end
|
|
47
|
+
|
|
48
|
+
def url(**_)
|
|
49
|
+
"#"
|
|
50
|
+
end
|
|
51
|
+
|
|
52
|
+
def notifications_settings_url(**_)
|
|
53
|
+
"#"
|
|
54
|
+
end
|
|
55
|
+
|
|
56
|
+
def unsubscribe_newsletters_url(**_)
|
|
57
|
+
"#"
|
|
58
|
+
end
|
|
59
|
+
|
|
60
|
+
def organization_official_url
|
|
61
|
+
"#"
|
|
62
|
+
end
|
|
63
|
+
|
|
44
64
|
private
|
|
45
65
|
|
|
46
66
|
attr_reader :organization, :manifest
|
|
@@ -29,7 +29,7 @@ module Decidim
|
|
|
29
29
|
read_admin_dashboard_action?
|
|
30
30
|
apply_newsletter_permissions_for_admin!
|
|
31
31
|
|
|
32
|
-
|
|
32
|
+
apply_global_moderations_permission_for_admin!
|
|
33
33
|
|
|
34
34
|
if user.admin? && admin_terms_accepted?
|
|
35
35
|
allow! if read_admin_log_action?
|
|
@@ -39,10 +39,10 @@ module Decidim
|
|
|
39
39
|
allow! if templates_action?
|
|
40
40
|
allow! if organization_action?
|
|
41
41
|
allow! if user_action?
|
|
42
|
+
allow! if admin_user_action?
|
|
42
43
|
|
|
43
44
|
allow! if permission_action.subject == :category
|
|
44
45
|
allow! if permission_action.subject == :component
|
|
45
|
-
allow! if permission_action.subject == :admin_user
|
|
46
46
|
allow! if permission_action.subject == :attachment
|
|
47
47
|
allow! if permission_action.subject == :editor_image
|
|
48
48
|
allow! if permission_action.subject == :attachment_collection
|
|
@@ -78,6 +78,23 @@ module Decidim
|
|
|
78
78
|
toggle_allow(user.admin? || space_allows_admin_access_to_current_action?)
|
|
79
79
|
end
|
|
80
80
|
|
|
81
|
+
def apply_global_moderations_permission_for_admin!
|
|
82
|
+
return unless admin_terms_accepted?
|
|
83
|
+
return unless permission_action.subject == :global_moderation
|
|
84
|
+
return allow! if user.admin?
|
|
85
|
+
|
|
86
|
+
return allow! if Decidim.participatory_space_manifests.flat_map.any? do |manifest|
|
|
87
|
+
Decidim
|
|
88
|
+
.find_participatory_space_manifest(manifest.name)
|
|
89
|
+
.participatory_spaces
|
|
90
|
+
.call(user.organization)&.any? do |space|
|
|
91
|
+
space.respond_to?(:user_roles) && space.user_roles(:admin).where(user: user).or(space.user_roles(:moderator).where(user: user)).any?
|
|
92
|
+
end
|
|
93
|
+
end
|
|
94
|
+
|
|
95
|
+
disallow!
|
|
96
|
+
end
|
|
97
|
+
|
|
81
98
|
def apply_newsletter_permissions_for_admin!
|
|
82
99
|
return unless admin_terms_accepted?
|
|
83
100
|
return unless permission_action.subject == :newsletter
|
|
@@ -183,6 +200,19 @@ module Decidim
|
|
|
183
200
|
end
|
|
184
201
|
end
|
|
185
202
|
|
|
203
|
+
def admin_user_action?
|
|
204
|
+
return unless permission_action.subject == :admin_user
|
|
205
|
+
|
|
206
|
+
target_user = context.fetch(:user, nil)
|
|
207
|
+
|
|
208
|
+
case permission_action.action
|
|
209
|
+
when :destroy, :block
|
|
210
|
+
target_user != user
|
|
211
|
+
else
|
|
212
|
+
true
|
|
213
|
+
end
|
|
214
|
+
end
|
|
215
|
+
|
|
186
216
|
def organization
|
|
187
217
|
@organization ||= context.fetch(:organization, nil) || context.fetch(:current_organization, nil)
|
|
188
218
|
end
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
</td>
|
|
61
61
|
|
|
62
62
|
<td class="actions">
|
|
63
|
-
<% if allowed_to?(:unreport, :moderate_users) %>
|
|
63
|
+
<% if !moderation.user.blocked? && allowed_to?(:unreport, :moderate_users) %>
|
|
64
64
|
<%= icon_link_to "action-undo", ignore_moderated_user_path(id: moderation), t(".actions.unreport"), class: "action-icon--unreport", method: :put %>
|
|
65
65
|
<% end %>
|
|
66
66
|
<% if allowed_to?(:block, :moderate_users) %>
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
<td><%= user.report_count %></td>
|
|
34
34
|
|
|
35
35
|
<td class="table-list__actions">
|
|
36
|
-
<% if allowed_to?(:block, :admin_user) %>
|
|
36
|
+
<% if allowed_to?(:block, :admin_user, user: user) %>
|
|
37
37
|
<% if user.blocked? %>
|
|
38
38
|
<%= icon_link_to "ban", user_block_path(user_id: user.id), t(".unblock"), class: "action-icon action-icon--disabled", method: :delete %>
|
|
39
39
|
<% else %>
|
|
@@ -43,15 +43,19 @@
|
|
|
43
43
|
<% if allowed_to? :show_email, :user, user: user %>
|
|
44
44
|
<%= icon_link_to "envelope-open", show_email_officialization_path(user_id: user.id), t(".show_email"), class: "action-icon action-icon--show-email", data: { full_name: user.name, toggle: "show-email-modal" } %>
|
|
45
45
|
<% end %>
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
46
|
+
<% unless user.blocked? %>
|
|
47
|
+
<% unless current_user == user %>
|
|
48
|
+
<%= icon_link_to "envelope-closed", current_or_new_conversation_path_with(user), t("decidim.contact"), class:"action-icon--new" %>
|
|
49
|
+
<% end %>
|
|
50
|
+
<% if user.officialized? %>
|
|
51
|
+
<%= icon "circle-check", class: "action-icon action-icon--disabled", role: "img", aria_label: t(".officialize") %>
|
|
52
|
+
<%= icon_link_to "pencil", new_officialization_path(user_id: user.id), t(".reofficialize"), class: "action-icon--new" %>
|
|
53
|
+
<%= icon_link_to "circle-x", officialization_path(user.id), t(".unofficialize"), method: :delete, class: "action-icon--reject" %>
|
|
54
|
+
<% else %>
|
|
55
|
+
<%= icon_link_to "circle-check", new_officialization_path(user_id: user.id), t(".officialize"), class: "action-icon--verify" %>
|
|
56
|
+
<%= icon "pencil", class: "action-icon action-icon--disabled", role: "img", aria_label: t(".reofficialize") %>
|
|
57
|
+
<%= icon "circle-x", class: "action-icon action-icon--disabled", role: "img", aria_label: t(".unofficialize") %>
|
|
58
|
+
<% end %>
|
|
55
59
|
<% end %>
|
|
56
60
|
</td>
|
|
57
61
|
</tr>
|
data/config/locales/ar.yml
CHANGED
|
@@ -10,34 +10,41 @@ ar:
|
|
|
10
10
|
organization: المنظمة
|
|
11
11
|
plural: صيغة الجمع
|
|
12
12
|
attachment:
|
|
13
|
-
attachment_collection_id:
|
|
13
|
+
attachment_collection_id: الحافظة
|
|
14
14
|
description: الوصف
|
|
15
15
|
file: ملف
|
|
16
16
|
title: المُرفق أو اسم الصورة
|
|
17
|
+
weight: موضع الطلب
|
|
17
18
|
attachment_collection:
|
|
18
19
|
description: الوصف
|
|
19
20
|
name: اسم
|
|
21
|
+
weight: موضع الطلب
|
|
20
22
|
category:
|
|
21
23
|
description: الوصف
|
|
22
24
|
name: اسم
|
|
23
|
-
parent_id:
|
|
25
|
+
parent_id: الأصل
|
|
26
|
+
weight: موضع الطلب
|
|
24
27
|
component:
|
|
25
28
|
name: اسم
|
|
26
|
-
published_at:
|
|
29
|
+
published_at: نشر في
|
|
27
30
|
weight: موضع الطلب
|
|
28
|
-
|
|
31
|
+
external_domain:
|
|
32
|
+
value: القيمة
|
|
33
|
+
help_section:
|
|
34
|
+
content: المحتوى
|
|
35
|
+
id: المعرف ID
|
|
29
36
|
import:
|
|
30
|
-
user_group_id: إنشاء
|
|
37
|
+
user_group_id: إنشاء الاستيرادات ك
|
|
31
38
|
newsletter:
|
|
32
|
-
body:
|
|
39
|
+
body: النص
|
|
33
40
|
subject: الموضوع
|
|
34
41
|
organization:
|
|
35
42
|
admin_terms_of_use_body: نص شروط الاستخدام للمدير
|
|
36
43
|
alert_color: تنبيه
|
|
37
44
|
available_authorizations: التراخيص المتاحة
|
|
38
45
|
badges_enabled: تمكين الشارات
|
|
39
|
-
comments_max_length: الحد الأقصى لطول التعليقات (اترك 0 لاستعمال
|
|
40
|
-
cta_button_path: دعوة إلى العمل
|
|
46
|
+
comments_max_length: الحد الأقصى لطول التعليقات (اترك 0 لاستعمال القيمة الافتراضية)
|
|
47
|
+
cta_button_path: مسار زر دعوة إلى العمل call to action
|
|
41
48
|
cta_button_text: نص زر Call To Action
|
|
42
49
|
customize_welcome_notification: تخصيص إشعار الترحيب
|
|
43
50
|
default_locale: اللغة الافتراضية
|
|
@@ -87,6 +94,9 @@ ar:
|
|
|
87
94
|
welcome_notification_body: محتوى إشعار الترحيب
|
|
88
95
|
welcome_notification_subject: موضوع إشعار الترحيب
|
|
89
96
|
youtube_handler: مُعرّف حساب يوتيوب
|
|
97
|
+
participatory_space_private_user:
|
|
98
|
+
email: البريد الإلكتروني
|
|
99
|
+
name: الإسم
|
|
90
100
|
scope:
|
|
91
101
|
code: الشفرة
|
|
92
102
|
name: الاسم
|
|
@@ -159,10 +169,8 @@ ar:
|
|
|
159
169
|
accept:
|
|
160
170
|
success: رائع! لقد قمت بالموافقة على شروط الإستخدام للمدير.
|
|
161
171
|
actions:
|
|
162
|
-
|
|
172
|
+
accept: أوافق على هذه الشروط
|
|
163
173
|
title: وافق على شروط وأحكام الإستخدام
|
|
164
|
-
required_review:
|
|
165
|
-
cta: راجِعها الآن.
|
|
166
174
|
title: شروط الاستخدام الخاصة بالمدير
|
|
167
175
|
area_types:
|
|
168
176
|
create:
|
|
@@ -578,8 +586,6 @@ ar:
|
|
|
578
586
|
tabs:
|
|
579
587
|
blocked: محظور
|
|
580
588
|
moderations:
|
|
581
|
-
index:
|
|
582
|
-
title: الإشراف
|
|
583
589
|
report:
|
|
584
590
|
reasons:
|
|
585
591
|
does_not_belong: لا ينتمي
|
|
@@ -595,6 +601,7 @@ ar:
|
|
|
595
601
|
newsletter_templates:
|
|
596
602
|
index:
|
|
597
603
|
preview_template: معاينة
|
|
604
|
+
title: نماذج النشرة الإخبارية
|
|
598
605
|
newsletters:
|
|
599
606
|
create:
|
|
600
607
|
error: كانت هناك مشكلة في إنشاء هذه الرسالة الإخبارية.
|
|
@@ -786,8 +793,13 @@ ar:
|
|
|
786
793
|
update:
|
|
787
794
|
error: حدثت مشكلة أثناء تحديث هذا النطاق.
|
|
788
795
|
success: تم تحديث المجال بنجاح
|
|
796
|
+
share_tokens:
|
|
797
|
+
actions:
|
|
798
|
+
destroy: حذف
|
|
799
|
+
share: مشاركة
|
|
789
800
|
shared:
|
|
790
801
|
gallery:
|
|
802
|
+
add_images: إضافة صور
|
|
791
803
|
delete_image: احذف الصورة
|
|
792
804
|
static_page_topics:
|
|
793
805
|
create:
|
|
@@ -928,7 +940,7 @@ ar:
|
|
|
928
940
|
report_count: عد
|
|
929
941
|
reportable_type: النوع
|
|
930
942
|
reported_content_url: تم الإبلاغ عن عنوان URL للمحتوى
|
|
931
|
-
reports:
|
|
943
|
+
reports: التقارير
|
|
932
944
|
visit_url: زيارة العنوان الشبكي
|
|
933
945
|
report:
|
|
934
946
|
fields:
|
|
@@ -941,8 +953,6 @@ ar:
|
|
|
941
953
|
layouts:
|
|
942
954
|
decidim:
|
|
943
955
|
admin:
|
|
944
|
-
global_moderations:
|
|
945
|
-
title: مُشرف عام
|
|
946
956
|
newsletters:
|
|
947
957
|
title: النشرات الإخبارية
|
|
948
958
|
settings:
|
data/config/locales/ca.yml
CHANGED
|
@@ -14,17 +14,24 @@ ca:
|
|
|
14
14
|
description: Descripció
|
|
15
15
|
file: Arxiu
|
|
16
16
|
title: Nom de l'adjunt o imatge
|
|
17
|
+
weight: Ordre de posició
|
|
17
18
|
attachment_collection:
|
|
18
19
|
description: Descripció
|
|
19
20
|
name: Nom
|
|
21
|
+
weight: Ordre de posició
|
|
20
22
|
category:
|
|
21
23
|
description: Descripció
|
|
22
24
|
name: Nom
|
|
23
25
|
parent_id: Pare
|
|
26
|
+
weight: Ordre de posició
|
|
24
27
|
component:
|
|
25
28
|
name: Nom
|
|
26
29
|
published_at: Publicat el
|
|
27
30
|
weight: Ordre de posició
|
|
31
|
+
external_domain:
|
|
32
|
+
value: Valor
|
|
33
|
+
help_section:
|
|
34
|
+
content: Contingut
|
|
28
35
|
id: ID
|
|
29
36
|
import:
|
|
30
37
|
user_group_id: Importar com
|
|
@@ -92,6 +99,9 @@ ca:
|
|
|
92
99
|
welcome_notification_body: Cos de la notificació de benvinguda
|
|
93
100
|
welcome_notification_subject: Assumpte de la notificació de benvinguda
|
|
94
101
|
youtube_handler: Nom d'usuària de YouTube
|
|
102
|
+
participatory_space_private_user:
|
|
103
|
+
email: Correu electrònic
|
|
104
|
+
name: Nom
|
|
95
105
|
scope:
|
|
96
106
|
code: Codi
|
|
97
107
|
name: Nom
|
|
@@ -113,6 +123,7 @@ ca:
|
|
|
113
123
|
show_in_footer: Mostra al peu de pàgina
|
|
114
124
|
slug: Nom curt d'URL
|
|
115
125
|
title: Títol
|
|
126
|
+
topic_id: Assumpte
|
|
116
127
|
weight: Ordre de posició
|
|
117
128
|
static_page_topic:
|
|
118
129
|
description: Descripció
|
|
@@ -184,14 +195,14 @@ ca:
|
|
|
184
195
|
error: S'ha produït un error en acceptar els Termes i Condicions dell panell d'administració.
|
|
185
196
|
success: Genial! Has acceptat els Termes i Condicions del panell d'administració.
|
|
186
197
|
actions:
|
|
187
|
-
accept: Estic d'acord amb
|
|
198
|
+
accept: Estic d'acord amb les condicions
|
|
188
199
|
are_you_sure: Segur que vols rebutjar els termes i condicions del panell d'administració?
|
|
189
|
-
refuse: Rebutjar
|
|
200
|
+
refuse: Rebutjar les condicions del servei d'administració
|
|
190
201
|
title: Accepto els Termes i Condicions d'Administració
|
|
191
202
|
required_review:
|
|
192
203
|
alert: 'Requerit: Revisa els nostres Termes i Condicions del panell d''administració'
|
|
193
204
|
callout: Si us plau dedica un moment a revisar l'actualització dels nostres termes i condicions del panell d'administració. En cas contrari, no podràs utilitzar la plataforma.
|
|
194
|
-
cta:
|
|
205
|
+
cta: Revisar-les ara.
|
|
195
206
|
title: Termes i Condicions del panell d'administració
|
|
196
207
|
area_types:
|
|
197
208
|
create:
|
|
@@ -632,7 +643,7 @@ ca:
|
|
|
632
643
|
nickname: Àlies
|
|
633
644
|
reason: Raó
|
|
634
645
|
reports: Número de denúncies
|
|
635
|
-
title:
|
|
646
|
+
title: Participants reportades
|
|
636
647
|
report:
|
|
637
648
|
reasons:
|
|
638
649
|
does_not_belong: No pertany
|
|
@@ -643,7 +654,7 @@ ca:
|
|
|
643
654
|
unblocked: No bloquejat
|
|
644
655
|
moderations:
|
|
645
656
|
index:
|
|
646
|
-
title:
|
|
657
|
+
title: Contingut reportat
|
|
647
658
|
report:
|
|
648
659
|
reasons:
|
|
649
660
|
does_not_belong: No pertany
|
|
@@ -704,7 +715,7 @@ ca:
|
|
|
704
715
|
select_recipients_to_deliver:
|
|
705
716
|
all_spaces: Totes
|
|
706
717
|
all_users_help: Envia el butlletí a tots els usuaris confimats.
|
|
707
|
-
confirm_deliver:
|
|
718
|
+
confirm_deliver: Segur que vols enviar aquest butlletí? Aquesta acció no es pot desfer.
|
|
708
719
|
deliver: Enviar butlletí
|
|
709
720
|
followers_help: Envia el butlletí a tots els usuaris confirmats que segueixin qualsevol dels espais participatius seleccionats a la llista.
|
|
710
721
|
none: Cap
|
|
@@ -816,7 +827,7 @@ ca:
|
|
|
816
827
|
inactive_content_blocks: Blocs de contingut inactiu
|
|
817
828
|
organization_homepage_content_blocks:
|
|
818
829
|
edit:
|
|
819
|
-
update:
|
|
830
|
+
update: Actualitzar
|
|
820
831
|
participatory_space_private_users:
|
|
821
832
|
create:
|
|
822
833
|
error: S'ha produït un error en afegir una participant privada a aquest espai de participació.
|
|
@@ -829,7 +840,7 @@ ca:
|
|
|
829
840
|
title: Participant de l'espai participatiu privat
|
|
830
841
|
new:
|
|
831
842
|
create: Crear
|
|
832
|
-
title: Nova participant de l'espai
|
|
843
|
+
title: Nova participant de l'espai privat.
|
|
833
844
|
participatory_space_private_users_csv_imports:
|
|
834
845
|
create:
|
|
835
846
|
invalid: S'ha produït un error en llegir el fitxer CSV.
|
|
@@ -1039,14 +1050,14 @@ ca:
|
|
|
1039
1050
|
moderation:
|
|
1040
1051
|
fields:
|
|
1041
1052
|
created_at: Data de creació
|
|
1042
|
-
deleted_resource:
|
|
1053
|
+
deleted_resource: Recurs eliminat
|
|
1043
1054
|
hidden_at: Data d'ocultació
|
|
1044
1055
|
participatory_space: Espai de participació
|
|
1045
1056
|
report_count: Recompte
|
|
1046
1057
|
reportable_id: ID
|
|
1047
1058
|
reportable_type: Tipus
|
|
1048
1059
|
reported_content_url: URL contingut del contingut reportat
|
|
1049
|
-
reports:
|
|
1060
|
+
reports: Informes
|
|
1050
1061
|
visit_url: Visiteu l'URL
|
|
1051
1062
|
report:
|
|
1052
1063
|
fields:
|
data/config/locales/cs.yml
CHANGED
|
@@ -14,17 +14,24 @@ cs:
|
|
|
14
14
|
description: Popis
|
|
15
15
|
file: Soubor
|
|
16
16
|
title: Název přílohy nebo obrázku
|
|
17
|
+
weight: Pozice v řazení
|
|
17
18
|
attachment_collection:
|
|
18
19
|
description: Popis
|
|
19
20
|
name: Název
|
|
21
|
+
weight: Pozice v řazení
|
|
20
22
|
category:
|
|
21
23
|
description: Popis
|
|
22
24
|
name: Název
|
|
23
25
|
parent_id: Nadřazená
|
|
26
|
+
weight: Pozice v řazení
|
|
24
27
|
component:
|
|
25
28
|
name: Název
|
|
26
29
|
published_at: Publikováno v
|
|
27
30
|
weight: Pozice v řazení
|
|
31
|
+
external_domain:
|
|
32
|
+
value: Hodnota
|
|
33
|
+
help_section:
|
|
34
|
+
content: Obsah
|
|
28
35
|
id: ID
|
|
29
36
|
import:
|
|
30
37
|
user_group_id: Vytvořit importy jako
|
|
@@ -92,6 +99,9 @@ cs:
|
|
|
92
99
|
welcome_notification_body: Tělo uvítacího oznámení
|
|
93
100
|
welcome_notification_subject: Předmět uvítacího oznámení
|
|
94
101
|
youtube_handler: YouTube handler
|
|
102
|
+
participatory_space_private_user:
|
|
103
|
+
email: E-mail
|
|
104
|
+
name: Název
|
|
95
105
|
scope:
|
|
96
106
|
code: Kód
|
|
97
107
|
name: Název
|
|
@@ -113,6 +123,7 @@ cs:
|
|
|
113
123
|
show_in_footer: Zobrazit v zápatí
|
|
114
124
|
slug: URL slug
|
|
115
125
|
title: Titul
|
|
126
|
+
topic_id: Téma
|
|
116
127
|
weight: Pozice v řazení
|
|
117
128
|
static_page_topic:
|
|
118
129
|
description: Popis
|
|
@@ -184,6 +195,7 @@ cs:
|
|
|
184
195
|
error: Při přijímání správcovských podmínek použití došlo k chybě.
|
|
185
196
|
success: Skvělé! Přijali jste administrátorské podmínky použití.
|
|
186
197
|
actions:
|
|
198
|
+
accept: Souhlasím s podmínkami
|
|
187
199
|
are_you_sure: Opravdu chcete odmítnout Podmínky použití pro správce?
|
|
188
200
|
refuse: Odmítnout administrátorské podmínky
|
|
189
201
|
title: Souhlasit s podmínkami používání
|
|
@@ -639,7 +651,7 @@ cs:
|
|
|
639
651
|
nickname: Přezdívka
|
|
640
652
|
reason: Důvod
|
|
641
653
|
reports: Počet zpráv
|
|
642
|
-
title:
|
|
654
|
+
title: Nahlášení účastníci
|
|
643
655
|
report:
|
|
644
656
|
reasons:
|
|
645
657
|
does_not_belong: Nepatří
|
|
@@ -650,7 +662,7 @@ cs:
|
|
|
650
662
|
unblocked: Neblokováno
|
|
651
663
|
moderations:
|
|
652
664
|
index:
|
|
653
|
-
title:
|
|
665
|
+
title: Nahlášený obsah
|
|
654
666
|
report:
|
|
655
667
|
reasons:
|
|
656
668
|
does_not_belong: Nepatří
|
|
@@ -1045,7 +1057,7 @@ cs:
|
|
|
1045
1057
|
models:
|
|
1046
1058
|
moderation:
|
|
1047
1059
|
fields:
|
|
1048
|
-
created_at: Datum
|
|
1060
|
+
created_at: Datum vzniku
|
|
1049
1061
|
deleted_resource: Smazaný dokument
|
|
1050
1062
|
hidden_at: Skryté u
|
|
1051
1063
|
participatory_space: Participativní prostor
|
|
@@ -1053,7 +1065,7 @@ cs:
|
|
|
1053
1065
|
reportable_id: ID
|
|
1054
1066
|
reportable_type: Typ
|
|
1055
1067
|
reported_content_url: Oznámená adresa URL obsahu
|
|
1056
|
-
reports:
|
|
1068
|
+
reports: Hlášení
|
|
1057
1069
|
visit_url: Navštívit URL
|
|
1058
1070
|
report:
|
|
1059
1071
|
fields:
|