decidim-admin 0.26.3 → 0.26.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/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/controllers/decidim/admin/organization_controller.rb +1 -0
- 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/stylesheets/decidim/admin/modules/_modules.scss +0 -1
- data/app/permissions/decidim/admin/permissions.rb +32 -2
- data/app/views/decidim/admin/dashboard/show.html.erb +1 -1
- data/app/views/decidim/admin/imports/new.html.erb +1 -1
- data/app/views/decidim/admin/moderated_users/index.html.erb +1 -1
- data/app/views/decidim/admin/moderations/index.html.erb +8 -4
- data/app/views/decidim/admin/moderations/reports/index.html.erb +5 -1
- data/config/locales/ar.yml +17 -13
- data/config/locales/ca.yml +17 -5
- data/config/locales/cs.yml +15 -3
- data/config/locales/de.yml +14 -4
- data/config/locales/el.yml +0 -1
- data/config/locales/en.yml +13 -1
- data/config/locales/es-MX.yml +15 -3
- data/config/locales/es-PY.yml +15 -3
- data/config/locales/es.yml +17 -5
- data/config/locales/eu.yml +32 -13
- data/config/locales/fi-plain.yml +16 -4
- data/config/locales/fi.yml +18 -6
- data/config/locales/fr-CA.yml +15 -3
- data/config/locales/fr.yml +15 -3
- data/config/locales/gl.yml +0 -1
- data/config/locales/gn-PY.yml +1 -0
- data/config/locales/hu.yml +2 -2
- data/config/locales/id-ID.yml +4 -1
- data/config/locales/is-IS.yml +4 -1
- data/config/locales/it.yml +1 -2
- data/config/locales/ja.yml +14 -2
- data/config/locales/ka-GE.yml +1 -0
- data/config/locales/lb.yml +0 -1
- data/config/locales/lo-LA.yml +1 -0
- data/config/locales/lt.yml +1 -2
- data/config/locales/lv.yml +1 -1
- data/config/locales/nl.yml +1 -2
- data/config/locales/no.yml +0 -1
- data/config/locales/pl.yml +1 -1
- data/config/locales/pt-BR.yml +1 -2
- data/config/locales/pt.yml +0 -1
- data/config/locales/ro-RO.yml +22 -5
- data/config/locales/ru.yml +4 -1
- data/config/locales/sk.yml +1 -1
- data/config/locales/sr-CS.yml +8 -0
- data/config/locales/sv.yml +15 -3
- data/config/locales/tr-TR.yml +2 -1
- data/config/locales/uk.yml +4 -1
- data/config/locales/zh-CN.yml +1 -1
- data/lib/decidim/admin/engine.rb +11 -1
- data/lib/decidim/admin/test/manage_moderations_examples.rb +79 -1
- data/lib/decidim/admin/version.rb +1 -1
- metadata +11 -9
- data/app/packs/stylesheets/decidim/admin/modules/_import_result.scss +0 -10
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b25e792cc39b3d34099ecaa597e1276fb57edd45ebb88029542789ea2bfe9169
|
|
4
|
+
data.tar.gz: 52c6be2188c53dbca507274c50a89ecc47a376a5cc49ac827fe17bc37df0c1b3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 90617f1562b04639329aa21eb88a54cdb0e29e258754ea6385f648604f90682b4ad8f9d69dea344e98321dd7272da8fe90f444e86275568b0cc35a778186e48a
|
|
7
|
+
data.tar.gz: 6212034bacccfa62cacff1f1c326076f54a5a1bfb5a1127786cc0cad83b9a5bd96a4507535a1fe65365c0eeae0f94f1d20fc0f983aed822a7563f11b69134efd
|
|
@@ -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
|
|
@@ -15,6 +15,7 @@ module Decidim
|
|
|
15
15
|
def update
|
|
16
16
|
enforce_permission_to :update, :organization, organization: current_organization
|
|
17
17
|
@form = form(OrganizationForm).from_params(params)
|
|
18
|
+
@form.id = current_organization.id
|
|
18
19
|
|
|
19
20
|
UpdateOrganization.call(current_organization, @form) do
|
|
20
21
|
on(:ok) do
|
|
@@ -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,6 @@
|
|
|
29
29
|
@import "stylesheets/decidim/admin/modules/agenda";
|
|
30
30
|
@import "stylesheets/decidim/admin/modules/draggable-list";
|
|
31
31
|
@import "stylesheets/decidim/admin/modules/loading-spinner";
|
|
32
|
-
@import "stylesheets/decidim/admin/modules/import_result";
|
|
33
32
|
@import "stylesheets/decidim/admin/modules/reveal";
|
|
34
33
|
|
|
35
34
|
// mentions__container
|
|
@@ -29,12 +29,14 @@ 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?
|
|
36
|
+
allow! if read_user_statistics_action?
|
|
36
37
|
allow! if read_metrics_action?
|
|
37
38
|
allow! if static_page_action?
|
|
39
|
+
allow! if templates_action?
|
|
38
40
|
allow! if organization_action?
|
|
39
41
|
allow! if user_action?
|
|
40
42
|
|
|
@@ -76,6 +78,23 @@ module Decidim
|
|
|
76
78
|
toggle_allow(user.admin? || space_allows_admin_access_to_current_action?)
|
|
77
79
|
end
|
|
78
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
|
+
|
|
79
98
|
def apply_newsletter_permissions_for_admin!
|
|
80
99
|
return unless admin_terms_accepted?
|
|
81
100
|
return unless permission_action.subject == :newsletter
|
|
@@ -101,6 +120,11 @@ module Decidim
|
|
|
101
120
|
end
|
|
102
121
|
end
|
|
103
122
|
|
|
123
|
+
def read_user_statistics_action?
|
|
124
|
+
permission_action.subject == :users_statistics &&
|
|
125
|
+
permission_action.action == :read
|
|
126
|
+
end
|
|
127
|
+
|
|
104
128
|
def read_metrics_action?
|
|
105
129
|
permission_action.subject == :metrics &&
|
|
106
130
|
permission_action.action == :read
|
|
@@ -128,6 +152,11 @@ module Decidim
|
|
|
128
152
|
end
|
|
129
153
|
end
|
|
130
154
|
|
|
155
|
+
def templates_action?
|
|
156
|
+
permission_action.subject == :templates &&
|
|
157
|
+
permission_action.action == :read
|
|
158
|
+
end
|
|
159
|
+
|
|
131
160
|
def organization_action?
|
|
132
161
|
return unless permission_action.subject == :organization
|
|
133
162
|
return unless permission_action.action == :update
|
|
@@ -139,6 +168,7 @@ module Decidim
|
|
|
139
168
|
return unless permission_action.subject == :managed_user
|
|
140
169
|
return user_manager_permissions if user_manager?
|
|
141
170
|
return unless user&.admin?
|
|
171
|
+
return unless user&.admin_terms_accepted?
|
|
142
172
|
|
|
143
173
|
case permission_action.action
|
|
144
174
|
when :create
|
|
@@ -183,7 +213,7 @@ module Decidim
|
|
|
183
213
|
|
|
184
214
|
def space_allows_admin_access_to_current_action?(require_admin_terms_accepted: false)
|
|
185
215
|
Decidim.participatory_space_manifests.any? do |manifest|
|
|
186
|
-
next if
|
|
216
|
+
next if require_admin_terms_accepted && !admin_terms_accepted?
|
|
187
217
|
|
|
188
218
|
new_permission_action = Decidim::PermissionAction.new(
|
|
189
219
|
action: permission_action.action,
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
<% end %>
|
|
13
13
|
|
|
14
14
|
<div class="grid-x grid-margin-x">
|
|
15
|
-
<% if
|
|
15
|
+
<% if allowed_to? :read, :users_statistics %>
|
|
16
16
|
<div class="cell small-12 medium-6 large-4">
|
|
17
17
|
<%= render(
|
|
18
18
|
partial: "decidim/admin/users_statistics/users_count",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
<legend>
|
|
35
35
|
<%= t(".file_legend", valid_mime_types: mime_types.values.join(", ")).html_safe %>
|
|
36
36
|
<div class="guidance">
|
|
37
|
-
<%= import_manifest.message(:help, self) %>
|
|
37
|
+
<%= import_manifest.message(:help, self).html_safe %>
|
|
38
38
|
</div>
|
|
39
39
|
</legend>
|
|
40
40
|
<div class="row column">
|
|
@@ -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) %>
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
<tr data-id="<%= moderation.id %>">
|
|
38
38
|
<td><%= moderation.reportable.id %></td>
|
|
39
39
|
<td>
|
|
40
|
-
<%= moderation.reportable.class.
|
|
40
|
+
<%= moderation.reportable.class.model_name.human %>
|
|
41
41
|
</td>
|
|
42
42
|
<% if !respond_to?(:current_participatory_space) %>
|
|
43
43
|
<td>
|
|
@@ -48,9 +48,13 @@
|
|
|
48
48
|
<%= moderation.report_count %>
|
|
49
49
|
</td>
|
|
50
50
|
<td>
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
51
|
+
<% if (reportable_url = moderation.reportable.reported_content_url) %>
|
|
52
|
+
<%=
|
|
53
|
+
link_to t("models.moderation.fields.visit_url", scope: "decidim.moderations"), reportable_url, data: { tooltip: true }, title: strip_tags(reported_content_excerpt_for(moderation.reportable, limit: 250))
|
|
54
|
+
%>
|
|
55
|
+
<% else %>
|
|
56
|
+
<%= t("models.moderation.fields.deleted_resource", scope: "decidim.moderations") %>
|
|
57
|
+
<% end %>
|
|
54
58
|
</td>
|
|
55
59
|
<td>
|
|
56
60
|
<% reports = moderation.reports.map { |report| render "report", report: report } %>
|
|
@@ -12,7 +12,11 @@
|
|
|
12
12
|
</div>
|
|
13
13
|
<dl>
|
|
14
14
|
<dt><%= t("models.moderation.fields.reported_content_url", scope: "decidim.moderations") %></dt>
|
|
15
|
-
|
|
15
|
+
<% if (reportable_url = moderation.reportable.reported_content_url) %>
|
|
16
|
+
<dd><%= link_to moderation.reportable.reported_content_url, reportable_url, target: "_blank" %></dd>
|
|
17
|
+
<% else %>
|
|
18
|
+
<dd><%= t("models.moderation.fields.deleted_resource", scope: "decidim.moderations") %></dd>
|
|
19
|
+
<% end %>
|
|
16
20
|
|
|
17
21
|
<dt><%= t("models.moderation.fields.reportable_id", scope: "decidim.moderations") %></dt>
|
|
18
22
|
<dd><%= moderation.reportable.id %></dd>
|
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: اللغة الافتراضية
|
|
@@ -159,7 +166,6 @@ ar:
|
|
|
159
166
|
accept:
|
|
160
167
|
success: رائع! لقد قمت بالموافقة على شروط الإستخدام للمدير.
|
|
161
168
|
actions:
|
|
162
|
-
accept: أوافق على شروط الإستخدام التالية
|
|
163
169
|
refuse: ارفض شروط المدير
|
|
164
170
|
title: وافق على شروط وأحكام الإستخدام
|
|
165
171
|
required_review:
|
|
@@ -742,7 +748,7 @@ ar:
|
|
|
742
748
|
title: مشارك جديد الفضاء الخاص المشارك.
|
|
743
749
|
participatory_space_private_users_csv_imports:
|
|
744
750
|
create:
|
|
745
|
-
invalid: حدثت مشكلة
|
|
751
|
+
invalid: حدثت مشكلة في قراءة ملف CSV.
|
|
746
752
|
new:
|
|
747
753
|
title: حمّل ملف CSV الخاص بك
|
|
748
754
|
upload: حمّل
|
|
@@ -929,7 +935,7 @@ ar:
|
|
|
929
935
|
report_count: عد
|
|
930
936
|
reportable_type: النوع
|
|
931
937
|
reported_content_url: تم الإبلاغ عن عنوان URL للمحتوى
|
|
932
|
-
reports:
|
|
938
|
+
reports: التقارير
|
|
933
939
|
visit_url: زيارة العنوان الشبكي
|
|
934
940
|
report:
|
|
935
941
|
fields:
|
|
@@ -942,8 +948,6 @@ ar:
|
|
|
942
948
|
layouts:
|
|
943
949
|
decidim:
|
|
944
950
|
admin:
|
|
945
|
-
global_moderations:
|
|
946
|
-
title: مُشرف عام
|
|
947
951
|
newsletters:
|
|
948
952
|
title: النشرات الإخبارية
|
|
949
953
|
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
|
|
@@ -77,7 +84,7 @@ ca:
|
|
|
77
84
|
organization_admin_name: Nom de l'administradora de l'organització
|
|
78
85
|
organization_locales: Idiomes de l'organització
|
|
79
86
|
primary_color: Primària
|
|
80
|
-
reference_prefix:
|
|
87
|
+
reference_prefix: Prefix de referència
|
|
81
88
|
rich_text_editor_in_public_views: Habilitar l'editor de text enriquit
|
|
82
89
|
secondary_color: Secundari
|
|
83
90
|
secondary_hosts: Hosts secundaris
|
|
@@ -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,7 +195,7 @@ 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 els termes
|
|
198
|
+
accept: Estic d'acord amb els termes
|
|
188
199
|
are_you_sure: Segur que vols rebutjar els termes i condicions del panell d'administració?
|
|
189
200
|
refuse: Rebutjar els termes
|
|
190
201
|
title: Accepto els Termes i Condicions d'Administració
|
|
@@ -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ó.
|
|
@@ -1039,13 +1050,14 @@ ca:
|
|
|
1039
1050
|
moderation:
|
|
1040
1051
|
fields:
|
|
1041
1052
|
created_at: Data de creació
|
|
1053
|
+
deleted_resource: Recurs eliminat
|
|
1042
1054
|
hidden_at: Data d'ocultació
|
|
1043
1055
|
participatory_space: Espai de participació
|
|
1044
1056
|
report_count: Recompte
|
|
1045
1057
|
reportable_id: ID
|
|
1046
1058
|
reportable_type: Tipus
|
|
1047
1059
|
reported_content_url: URL contingut del contingut reportat
|
|
1048
|
-
reports:
|
|
1060
|
+
reports: Informes
|
|
1049
1061
|
visit_url: Visiteu l'URL
|
|
1050
1062
|
report:
|
|
1051
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,7 +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:
|
|
187
|
-
accept: Souhlasím s
|
|
198
|
+
accept: Souhlasím s podmínkami
|
|
188
199
|
are_you_sure: Opravdu chcete odmítnout Podmínky použití pro správce?
|
|
189
200
|
refuse: Odmítnout administrátorské podmínky
|
|
190
201
|
title: Souhlasit s podmínkami používání
|
|
@@ -1046,14 +1057,15 @@ cs:
|
|
|
1046
1057
|
models:
|
|
1047
1058
|
moderation:
|
|
1048
1059
|
fields:
|
|
1049
|
-
created_at: Datum
|
|
1060
|
+
created_at: Datum vzniku
|
|
1061
|
+
deleted_resource: Smazaný dokument
|
|
1050
1062
|
hidden_at: Skryté u
|
|
1051
1063
|
participatory_space: Participativní prostor
|
|
1052
1064
|
report_count: Spočítat
|
|
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:
|
data/config/locales/de.yml
CHANGED
|
@@ -14,17 +14,24 @@ de:
|
|
|
14
14
|
description: Beschreibung
|
|
15
15
|
file: Datei
|
|
16
16
|
title: Anhang oder Bildname
|
|
17
|
+
weight: Reihenfolge
|
|
17
18
|
attachment_collection:
|
|
18
19
|
description: Beschreibung
|
|
19
20
|
name: Name
|
|
21
|
+
weight: Reihenfolge
|
|
20
22
|
category:
|
|
21
23
|
description: Beschreibung
|
|
22
24
|
name: Name
|
|
23
25
|
parent_id: Übergeordnete Kategorie
|
|
26
|
+
weight: Reihenfolge
|
|
24
27
|
component:
|
|
25
28
|
name: Name
|
|
26
29
|
published_at: Veröffentlicht unter
|
|
27
|
-
weight:
|
|
30
|
+
weight: Reihenfolge
|
|
31
|
+
external_domain:
|
|
32
|
+
value: Wert
|
|
33
|
+
help_section:
|
|
34
|
+
content: Inhalt
|
|
28
35
|
id: ID
|
|
29
36
|
import:
|
|
30
37
|
user_group_id: Importierte Inhalte erstellen als
|
|
@@ -92,6 +99,9 @@ de:
|
|
|
92
99
|
welcome_notification_body: Text der Willkommens-Benachrichtigung
|
|
93
100
|
welcome_notification_subject: Betreff der Willkommens-Benachrichtigung
|
|
94
101
|
youtube_handler: YouTube-Handler
|
|
102
|
+
participatory_space_private_user:
|
|
103
|
+
email: E-Mail
|
|
104
|
+
name: Name
|
|
95
105
|
scope:
|
|
96
106
|
code: Code
|
|
97
107
|
name: Name
|
|
@@ -113,12 +123,13 @@ de:
|
|
|
113
123
|
show_in_footer: In der Fußzeile anzeigen
|
|
114
124
|
slug: URL-Block
|
|
115
125
|
title: Titel
|
|
116
|
-
|
|
126
|
+
topic_id: Thema
|
|
127
|
+
weight: Reihenfolge
|
|
117
128
|
static_page_topic:
|
|
118
129
|
description: Beschreibung
|
|
119
130
|
show_in_footer: In der Fußzeile anzeigen
|
|
120
131
|
title: Titel
|
|
121
|
-
weight:
|
|
132
|
+
weight: Reihenfolge
|
|
122
133
|
user_group_csv_verification:
|
|
123
134
|
file: Datei
|
|
124
135
|
errors:
|
|
@@ -184,7 +195,6 @@ de:
|
|
|
184
195
|
error: Beim Akzeptieren der Nutzungsbedingungen ist ein Fehler aufgetreten.
|
|
185
196
|
success: Super! Sie haben die Admin-Nutzungsbedingungen akzeptiert.
|
|
186
197
|
actions:
|
|
187
|
-
accept: Ich stimme den folgenden Bedingungen zu
|
|
188
198
|
are_you_sure: Sind Sie sicher, dass Sie die Admin-Nutzungsbedingungen ablehnen möchten?
|
|
189
199
|
refuse: Die Admin-Nutzungsbedingungen ablehnen
|
|
190
200
|
title: Den Admin-Nutzungsbedingungen zustimmen
|
data/config/locales/el.yml
CHANGED
|
@@ -179,7 +179,6 @@ el:
|
|
|
179
179
|
error: Υπήρξε ένα σφάλμα κατά την αποδοχή των όρων χρήσης διαχειριστή.
|
|
180
180
|
success: Εξαιρετικά! Αποδεχτήκατε τους όρους χρήσης διαχειριστή.
|
|
181
181
|
actions:
|
|
182
|
-
accept: Συμφωνώ με τους ακόλουθους όρους
|
|
183
182
|
are_you_sure: Είστε σίγουρος ότι θέλετε να αρνηθείτε τους όρους χρήσης του διαχειριστή;
|
|
184
183
|
refuse: Απόρριψη των όρων διαχειριστή
|
|
185
184
|
title: Αποδοχή των όρων και των προϋποθέσεων χρήσης
|