decidim-admin 0.27.4 → 0.27.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/controllers/concerns/decidim/admin/needs_admin_tos_accepted.rb +36 -0
- data/app/controllers/concerns/decidim/moderations/admin/filterable.rb +4 -0
- data/app/forms/decidim/admin/organization_form.rb +2 -2
- data/app/packs/stylesheets/decidim/admin/_variables.scss +1 -1
- data/app/views/decidim/admin/components/_actions.html.erb +43 -0
- data/app/views/decidim/admin/components/_component.html.erb +3 -41
- data/config/environment.rb +2 -0
- data/config/locales/ar.yml +8 -13
- data/config/locales/bg.yml +0 -1
- data/config/locales/ca.yml +9 -9
- data/config/locales/cs.yml +6 -6
- data/config/locales/de.yml +26 -26
- data/config/locales/el.yml +1 -12
- data/config/locales/en.yml +2 -2
- data/config/locales/es-MX.yml +9 -9
- data/config/locales/es-PY.yml +9 -9
- data/config/locales/es.yml +9 -9
- data/config/locales/eu.yml +309 -282
- data/config/locales/fi-plain.yml +5 -5
- data/config/locales/fi.yml +5 -5
- data/config/locales/fr-CA.yml +9 -9
- data/config/locales/fr.yml +11 -11
- data/config/locales/ga-IE.yml +0 -1
- data/config/locales/gl.yml +2 -13
- data/config/locales/hu.yml +1 -12
- data/config/locales/id-ID.yml +3 -8
- data/config/locales/is-IS.yml +1 -3
- data/config/locales/it.yml +0 -11
- data/config/locales/ja.yml +9 -9
- data/config/locales/kaa.yml +15 -1
- data/config/locales/lb.yml +2 -13
- data/config/locales/lt.yml +31 -13
- data/config/locales/lv.yml +0 -10
- data/config/locales/nl.yml +2 -13
- data/config/locales/no.yml +0 -11
- data/config/locales/pl.yml +31 -6
- data/config/locales/pt-BR.yml +20 -13
- data/config/locales/pt.yml +3 -14
- data/config/locales/ro-RO.yml +2 -13
- data/config/locales/ru.yml +3 -9
- data/config/locales/sk.yml +0 -11
- data/config/locales/sl.yml +0 -1
- data/config/locales/sq-AL.yml +66 -0
- data/config/locales/sr-CS.yml +10 -6
- data/config/locales/sv.yml +1 -11
- data/config/locales/th-TH.yml +1 -0
- data/config/locales/tr-TR.yml +5 -14
- data/config/locales/uk.yml +1 -9
- data/config/locales/zh-CN.yml +0 -11
- data/config/locales/zh-TW.yml +0 -11
- data/config/routes.rb +2 -0
- data/lib/decidim/admin/test/admin_participatory_space_access_examples.rb +49 -0
- data/lib/decidim/admin/version.rb +1 -1
- metadata +19 -10
- data/app/controllers/decidim/admin/space_publications_controller.rb +0 -63
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ff93ac8455dc2e0c83ea885cffd0167c733c99ef4aa4ecf87c804865274a2fb1
|
|
4
|
+
data.tar.gz: effea866bfcf0e7eeb60917547ae95fb4f880f4e7c6afd877b18a66f28c5a9d8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e907b4a9858aaa67f5815458c995f85546643d29c79ea9b92ee17bac1d5f621da646c7c23a887cba48114907dee74f5712abe80f207b7ec96e50a6c9f09d7334
|
|
7
|
+
data.tar.gz: 8aab3aa06c560cc2f7b958f188a2f89e7809f66e9e648517b3c54b6df70c84aae10e52305d6e22c9e8f7966b38512a0bedfc7520c4093126cb0e049b4f455597
|
|
@@ -15,6 +15,7 @@ module Decidim
|
|
|
15
15
|
def tos_accepted_by_admin
|
|
16
16
|
return unless request.format.html?
|
|
17
17
|
return unless current_user
|
|
18
|
+
return unless user_has_any_role?
|
|
18
19
|
return if current_user.admin_terms_accepted?
|
|
19
20
|
return if permitted_paths?
|
|
20
21
|
|
|
@@ -37,6 +38,41 @@ module Decidim
|
|
|
37
38
|
def admin_tos_path
|
|
38
39
|
decidim_admin.admin_terms_show_path
|
|
39
40
|
end
|
|
41
|
+
|
|
42
|
+
def user_has_any_role?
|
|
43
|
+
return true if current_user.admin
|
|
44
|
+
return true if current_user.roles.any?
|
|
45
|
+
return true if participatory_process_user_role?
|
|
46
|
+
return true if assembly_user_role?
|
|
47
|
+
return true if conference_user_role?
|
|
48
|
+
return true if voting_monitoring_commitee_member?
|
|
49
|
+
|
|
50
|
+
false
|
|
51
|
+
end
|
|
52
|
+
|
|
53
|
+
def participatory_process_user_role?
|
|
54
|
+
return false unless Decidim.module_installed?(:participatory_processes)
|
|
55
|
+
|
|
56
|
+
true if Decidim::ParticipatoryProcessUserRole.exists?(user: current_user)
|
|
57
|
+
end
|
|
58
|
+
|
|
59
|
+
def assembly_user_role?
|
|
60
|
+
return false unless Decidim.module_installed?(:assemblies)
|
|
61
|
+
|
|
62
|
+
true if Decidim::AssemblyUserRole.exists?(user: current_user)
|
|
63
|
+
end
|
|
64
|
+
|
|
65
|
+
def conference_user_role?
|
|
66
|
+
return false unless Decidim.module_installed?(:conferences)
|
|
67
|
+
|
|
68
|
+
true if Decidim::ConferenceUserRole.exists?(user: current_user)
|
|
69
|
+
end
|
|
70
|
+
|
|
71
|
+
def voting_monitoring_commitee_member?
|
|
72
|
+
return false unless Decidim.module_installed?(:elections)
|
|
73
|
+
|
|
74
|
+
true if Decidim::Votings::MonitoringCommitteeMember.exists?(user: current_user)
|
|
75
|
+
end
|
|
40
76
|
end
|
|
41
77
|
end
|
|
42
78
|
end
|
|
@@ -21,7 +21,7 @@ module Decidim
|
|
|
21
21
|
attribute :default_locale, String
|
|
22
22
|
attribute :badges_enabled, Boolean
|
|
23
23
|
attribute :user_groups_enabled, Boolean
|
|
24
|
-
attribute :comments_max_length, Integer
|
|
24
|
+
attribute :comments_max_length, Integer, default: 0
|
|
25
25
|
attribute :rich_text_editor_in_public_views, Boolean
|
|
26
26
|
attribute :enable_machine_translations, Boolean
|
|
27
27
|
attribute :machine_translation_display_priority, String
|
|
@@ -43,7 +43,7 @@ module Decidim
|
|
|
43
43
|
validates :default_locale, :reference_prefix, presence: true
|
|
44
44
|
validates :default_locale, inclusion: { in: :available_locales }
|
|
45
45
|
validates :admin_terms_of_use_body, translatable_presence: true
|
|
46
|
-
validates :comments_max_length, numericality: {
|
|
46
|
+
validates :comments_max_length, presence: true, numericality: { greater_than_or_equal_to: 0 }
|
|
47
47
|
validates :machine_translation_display_priority,
|
|
48
48
|
inclusion: { in: Decidim::Organization::AVAILABLE_MACHINE_TRANSLATION_DISPLAY_PRIORITIES },
|
|
49
49
|
if: :machine_translation_enabled?
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
<% if component.manifest.admin_engine %>
|
|
2
|
+
<%= icon_link_to "pencil", manage_component_path(component), t("actions.manage", scope: "decidim.admin"), class: "action-icon--manage" %>
|
|
3
|
+
<% else %>
|
|
4
|
+
<span class="action-space icon"></span>
|
|
5
|
+
<% end %>
|
|
6
|
+
|
|
7
|
+
<% if allowed_to?(:update, :component, component: component) %>
|
|
8
|
+
<% if component.published? %>
|
|
9
|
+
<%= icon_link_to "x", url_for(action: :unpublish, id: component, controller: "components"), t("actions.unpublish", scope: "decidim.admin"), class: "action-icon--unpublish", method: :put %>
|
|
10
|
+
<% else %>
|
|
11
|
+
<%= icon_link_to "check", url_for(action: :publish, id: component, controller: "components"), t("actions.publish", scope: "decidim.admin"), class: "action-icon--publish", method: :put %>
|
|
12
|
+
<% end %>
|
|
13
|
+
<% else %>
|
|
14
|
+
<span class="action-space icon"></span>
|
|
15
|
+
<% end %>
|
|
16
|
+
|
|
17
|
+
<% if allowed_to? :update, :component, component: component %>
|
|
18
|
+
<%= icon_link_to "cog", url_for(action: :edit, id: component, controller: "components"), t("actions.configure", scope: "decidim.admin"), class: "action-icon--configure" %>
|
|
19
|
+
<% else %>
|
|
20
|
+
<span class="action-space icon"></span>
|
|
21
|
+
<% end %>
|
|
22
|
+
|
|
23
|
+
<% if allowed_to? :update, :component, component: component %>
|
|
24
|
+
<% if component.manifest.actions.empty? %>
|
|
25
|
+
<%= icon "key", class: "action-icon action-icon--disabled" %>
|
|
26
|
+
<% else %>
|
|
27
|
+
<%= icon_link_to "key", url_for(action: :edit, component_id: component, controller: "component_permissions"), t("actions.permissions", scope: "decidim.admin"), class: "action-icon--permissions" %>
|
|
28
|
+
<% end %>
|
|
29
|
+
<% else %>
|
|
30
|
+
<span class="action-space icon"></span>
|
|
31
|
+
<% end %>
|
|
32
|
+
|
|
33
|
+
<% if allowed_to? :share, :component, component: component %>
|
|
34
|
+
<%= icon_link_to "share", url_for(action: :share, id: component, controller: "components"), t("actions.share", scope: "decidim.admin"), class: "action-icon--share", target: "_blank" %>
|
|
35
|
+
<% else %>
|
|
36
|
+
<span class="action-space icon"></span>
|
|
37
|
+
<% end %>
|
|
38
|
+
|
|
39
|
+
<% if allowed_to? :destroy, :component, component: component %>
|
|
40
|
+
<%= icon_link_to "circle-x", url_for(action: :destroy, id: component, controller: "components"), t("actions.destroy", scope: "decidim.admin"), class: "action-icon--remove", method: :delete %>
|
|
41
|
+
<% else %>
|
|
42
|
+
<span class="action-space icon"></span>
|
|
43
|
+
<% end %>
|
|
@@ -10,48 +10,10 @@
|
|
|
10
10
|
</td>
|
|
11
11
|
<%= td_resource_scope_for(component.scope) %>
|
|
12
12
|
<td class="table-list__actions">
|
|
13
|
-
<% if component.
|
|
14
|
-
<%=
|
|
13
|
+
<% if lookup_context.find_all("decidim/#{component.manifest_name}/admin/component/_actions").any? %>
|
|
14
|
+
<%= render partial: "decidim/#{component.manifest_name}/admin/component/actions", locals: { component: component } %>
|
|
15
15
|
<% else %>
|
|
16
|
-
|
|
17
|
-
<% end %>
|
|
18
|
-
|
|
19
|
-
<% if allowed_to?(:update, :component, component: component) %>
|
|
20
|
-
<% if component.published? %>
|
|
21
|
-
<%= icon_link_to "x", url_for(action: :unpublish, id: component, controller: "components"), t("actions.unpublish", scope: "decidim.admin"), class: "action-icon--unpublish", method: :put %>
|
|
22
|
-
<% else %>
|
|
23
|
-
<%= icon_link_to "check", url_for(action: :publish, id: component, controller: "components"), t("actions.publish", scope: "decidim.admin"), class: "action-icon--publish", method: :put %>
|
|
24
|
-
<% end %>
|
|
25
|
-
<% else %>
|
|
26
|
-
<span class="action-space icon"></span>
|
|
27
|
-
<% end %>
|
|
28
|
-
|
|
29
|
-
<% if allowed_to? :update, :component, component: component %>
|
|
30
|
-
<%= icon_link_to "cog", url_for(action: :edit, id: component, controller: "components"), t("actions.configure", scope: "decidim.admin"), class: "action-icon--configure" %>
|
|
31
|
-
<% else %>
|
|
32
|
-
<span class="action-space icon"></span>
|
|
33
|
-
<% end %>
|
|
34
|
-
|
|
35
|
-
<% if allowed_to? :update, :component, component: component %>
|
|
36
|
-
<% if component.manifest.actions.empty? %>
|
|
37
|
-
<%= icon "key", class: "action-icon action-icon--disabled" %>
|
|
38
|
-
<% else %>
|
|
39
|
-
<%= icon_link_to "key", url_for(action: :edit, component_id: component, controller: "component_permissions"), t("actions.permissions", scope: "decidim.admin"), class: "action-icon--permissions" %>
|
|
40
|
-
<% end %>
|
|
41
|
-
<% else %>
|
|
42
|
-
<span class="action-space icon"></span>
|
|
43
|
-
<% end %>
|
|
44
|
-
|
|
45
|
-
<% if allowed_to? :share, :component, component: component %>
|
|
46
|
-
<%= icon_link_to "share", url_for(action: :share, id: component, controller: "components"), t("actions.share", scope: "decidim.admin"), class: "action-icon--share", target: "_blank" %>
|
|
47
|
-
<% else %>
|
|
48
|
-
<span class="action-space icon"></span>
|
|
49
|
-
<% end %>
|
|
50
|
-
|
|
51
|
-
<% if allowed_to? :destroy, :component, component: component %>
|
|
52
|
-
<%= icon_link_to "circle-x", url_for(action: :destroy, id: component, controller: "components"), t("actions.destroy", scope: "decidim.admin"), class: "action-icon--remove", method: :delete %>
|
|
53
|
-
<% else %>
|
|
54
|
-
<span class="action-space icon"></span>
|
|
16
|
+
<%= render partial: "actions", locals: { component: component } %>
|
|
55
17
|
<% end %>
|
|
56
18
|
</td>
|
|
57
19
|
</tr>
|
data/config/environment.rb
CHANGED
data/config/locales/ar.yml
CHANGED
|
@@ -89,7 +89,6 @@ ar:
|
|
|
89
89
|
success_color: نجاح
|
|
90
90
|
time_zone: المنطقة الزمنية
|
|
91
91
|
tos_version: شروط وأحكام الخدمة
|
|
92
|
-
twitter_handler: مُعرّف حساب تويتر
|
|
93
92
|
user_groups_enabled: تمكين المجموعات
|
|
94
93
|
warning_color: تحذير
|
|
95
94
|
welcome_notification_body: محتوى إشعار الترحيب
|
|
@@ -638,9 +637,6 @@ ar:
|
|
|
638
637
|
none: لا شَيْء
|
|
639
638
|
scopes_help: إرسال النشرة الإخبارية للمستخدمين الذين لديهم أي من المجالات المحددة تم تفعيله في إعدادات "اهتماماتي" لحسابهم.
|
|
640
639
|
select_scopes: أختر للمستخدمين الذين فعلوا أي مجال محدد في إعدادات أهتماماتي لحساباتهم.
|
|
641
|
-
send_to_all_users: إرسال إلى كافة المستخدمين
|
|
642
|
-
send_to_followers: إرسال إلى المتابِعين
|
|
643
|
-
send_to_participants: إرسال إلى المشاركين
|
|
644
640
|
title: حدد المستلمين للإرسال اليهم
|
|
645
641
|
warning: "<strong>تنبيه:</strong> سيتم إرسال هذه النشرة الإخبارية فقط للمستخدمين الذين فعلوا <em>أريد تلقي النشرات الإخبارية</em> في إعدادات الإشعارات الخاصة بهم."
|
|
646
642
|
send:
|
|
@@ -700,7 +696,7 @@ ar:
|
|
|
700
696
|
github: غِت هَب
|
|
701
697
|
instagram: إينستاجرام
|
|
702
698
|
social_handlers: التواصل الاجتماعي
|
|
703
|
-
twitter:
|
|
699
|
+
twitter: X
|
|
704
700
|
url: عنوان الرابط
|
|
705
701
|
youtube: يوتيوب
|
|
706
702
|
update:
|
|
@@ -713,7 +709,6 @@ ar:
|
|
|
713
709
|
colors:
|
|
714
710
|
colors_title: ألوان المنظمة
|
|
715
711
|
header_snippets_help: استخدم هذا الحقل لإضافة أشياء إلى رأس HTML. الاستخدام الأكثر شيوعًا هو دمج خدمات الجهات الخارجية التي تتطلب بعض JavaScript أو CSS إضافية. أيضًا ، يمكنك استخدامه لإضافة علامات وصفية إضافية إلى HTML. لاحظ أنه سيتم عرض هذا فقط في الصفحات العامة ، وليس في قسم المسؤول.
|
|
716
|
-
cta_button_path_help: 'يمكنك الكتابة فوق المكان الذي يرتبط به زر Call To Action في الصفحة الرئيسية. استخدم المسارات الجزئية ، وليس عناوين URL الكاملة هنا. يقبل الحروف والأرقام والشرطات والمائلة ، ويجب أن يبدأ بحرف. يظهر زر Call To Action في الصفحة الرئيسية بين نص الترحيب والوصف. مثال: %{url}'
|
|
717
712
|
cta_button_text_help: يمكنك الكتابة فوق نص زر Call To Action في الصفحة الرئيسية لكل لغة متاحة في مؤسستك. إذا لم يتم تعيينها ، سيتم استخدام القيمة الافتراضية. يظهر زر Call To Action في الصفحة الرئيسية بين نص الترحيب والوصف.
|
|
718
713
|
homepage_appearance_title: تحرير مظهر الصفحة الرئيسية
|
|
719
714
|
homepage_highlighted_content_banner_title: لافتة المحتوى الراقي
|
|
@@ -726,12 +721,11 @@ ar:
|
|
|
726
721
|
update: تحديث
|
|
727
722
|
external_domain:
|
|
728
723
|
down: أسفل
|
|
724
|
+
external_domain: نطاق خارجي
|
|
729
725
|
remove: إزالة
|
|
730
726
|
up: أعلى
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
active_content_blocks: كتل المحتوى النشط
|
|
734
|
-
inactive_content_blocks: كتل المحتوى غير النشطة
|
|
727
|
+
form:
|
|
728
|
+
add: إضافة إلى القائمة البيضاء
|
|
735
729
|
organization_homepage_content_blocks:
|
|
736
730
|
edit:
|
|
737
731
|
update: تحديث
|
|
@@ -757,7 +751,7 @@ ar:
|
|
|
757
751
|
empty: ليس لديك أي مشاركين خاصين.
|
|
758
752
|
explanation: لديك %{count} مشاركين خاصين.
|
|
759
753
|
title: حذف جميع المشاركين الخاصين
|
|
760
|
-
title:
|
|
754
|
+
title: قم بتحميل ملف CSV الخاص بك
|
|
761
755
|
upload: حمّل
|
|
762
756
|
reminders:
|
|
763
757
|
new:
|
|
@@ -862,6 +856,7 @@ ar:
|
|
|
862
856
|
dashboard: لوحة القيادة
|
|
863
857
|
impersonatable_users: المشاركون في الإدارة
|
|
864
858
|
impersonations: إدارة المشاركين
|
|
859
|
+
pages: الصفحات
|
|
865
860
|
panel: مدير
|
|
866
861
|
participants: المشاركين
|
|
867
862
|
scope_types: أنواع النطاق
|
|
@@ -965,8 +960,8 @@ ar:
|
|
|
965
960
|
decidim:
|
|
966
961
|
admin:
|
|
967
962
|
newsletters:
|
|
968
|
-
title:
|
|
963
|
+
title: الرسائل الإخبارية
|
|
969
964
|
settings:
|
|
970
965
|
title: الإعدادات
|
|
971
966
|
users:
|
|
972
|
-
title:
|
|
967
|
+
title: المشاركون
|
data/config/locales/bg.yml
CHANGED
|
@@ -72,7 +72,6 @@ bg:
|
|
|
72
72
|
success_color: Успешно
|
|
73
73
|
time_zone: Часова зона
|
|
74
74
|
tos_version: Версия на условия за ползване
|
|
75
|
-
twitter_handler: Манипулатор на Twitter
|
|
76
75
|
user_groups_enabled: Разреши групи
|
|
77
76
|
warning_color: Предупреждение
|
|
78
77
|
welcome_notification_body: Тяло на приветствието
|
data/config/locales/ca.yml
CHANGED
|
@@ -93,7 +93,7 @@ ca:
|
|
|
93
93
|
success_color: Èxit
|
|
94
94
|
time_zone: Zona horària
|
|
95
95
|
tos_version: Versió dels Termes de Servei
|
|
96
|
-
twitter_handler: Nom d'usuària
|
|
96
|
+
twitter_handler: Nom d'usuària a X
|
|
97
97
|
user_groups_enabled: Habilitar grups
|
|
98
98
|
users_registration_mode: Mode registre d'usuàries
|
|
99
99
|
warning_color: Avís
|
|
@@ -736,9 +736,9 @@ ca:
|
|
|
736
736
|
select_scopes: Filtra per als usuaris que hagin activat qualsevol àmbit seleccionat a la configuració "Els meus interessos" del seu compte.
|
|
737
737
|
select_spaces: Selecciona espais per segmentar el butlletí
|
|
738
738
|
select_users: Selecciona a quines participants vols enviar el butlletí de notícies
|
|
739
|
-
send_to_all_users: Envia a totes les
|
|
739
|
+
send_to_all_users: Envia a totes les usuàries
|
|
740
740
|
send_to_followers: Envia a totes les seguidores
|
|
741
|
-
send_to_participants: Envia a
|
|
741
|
+
send_to_participants: Envia a les participants
|
|
742
742
|
title: Selecciona les destinatàries a lliurar
|
|
743
743
|
warning: "<strong>Atenció:</strong> Aquest butlletí només s'enviarà a les participants que hagin activat <em>Vull rebre butlletins</em> a la configuració de les notificacions."
|
|
744
744
|
send:
|
|
@@ -799,7 +799,7 @@ ca:
|
|
|
799
799
|
instagram: Instagram
|
|
800
800
|
rich_text_editor_in_public_views_help: En algunes àrees de text, les participants podran inserir algunes etiquetes HTML amb l'editor de text enriquit.
|
|
801
801
|
social_handlers: Social
|
|
802
|
-
twitter:
|
|
802
|
+
twitter: X
|
|
803
803
|
url: URL
|
|
804
804
|
youtube: YouTube
|
|
805
805
|
update:
|
|
@@ -813,7 +813,7 @@ ca:
|
|
|
813
813
|
colors_title: Colors de l'organització
|
|
814
814
|
colors_warning_html: Advertència! Canviant aquests colors pot trencar l'accessibilitat dels contrasts. Pots comprovar el contrast de la teva selecció a <a href="%{link}">WebAIM Contrast Checker</a> o amb altres eines similars.
|
|
815
815
|
header_snippets_help: Utilitza aquest camp per afegir coses al head d'HTML. L'ús més habitual és integrar serveis de tercers que requereixen codi JavaScript o CSS addicional. A més, pots utilitzar-lo per afegir etiquetes meta addicionals a l'HTML. Tingues en compte que això només es mostrarà a les pàgines públiques, no a la secció d'administració.
|
|
816
|
-
cta_button_path_help: 'Pots redirigir la direcció on enllaça el
|
|
816
|
+
cta_button_path_help: 'Pots redirigir la direcció on enllaça el Botó d''Acció principal de la pàgina d''inici on desitgis. Utilitza rutes parcials, no URLs completes aquí. Accepta lletres, números, guions i barres, i ha de començar amb una lletra. El Botó d''Acció es mostra a la pàgina d''inici entre el text de benvinguda i la descripció. Exemple: %{url}'
|
|
817
817
|
cta_button_text_help: Pots sobreescriure el text del botó d'acció principal a la pàgina d'inici per cada idioma disponible a la teva organització. Si no s'omple, s'utilitzarà el valor predeterminat. El botó d'acció principal es mostra a la pàgina d'inici entre el text de benvinguda i la descripció.
|
|
818
818
|
homepage_appearance_title: Edita l'aparença de la pàgina d'inici
|
|
819
819
|
homepage_highlighted_content_banner_title: Banner de contingut ressaltat
|
|
@@ -834,8 +834,8 @@ ca:
|
|
|
834
834
|
title: Llista blanca de dominis externs
|
|
835
835
|
organization_homepage:
|
|
836
836
|
edit:
|
|
837
|
-
active_content_blocks: Blocs de contingut
|
|
838
|
-
inactive_content_blocks: Blocs de contingut
|
|
837
|
+
active_content_blocks: Blocs de contingut actius
|
|
838
|
+
inactive_content_blocks: Blocs de contingut inactius
|
|
839
839
|
organization_homepage_content_blocks:
|
|
840
840
|
edit:
|
|
841
841
|
update: Actualitzar
|
|
@@ -962,7 +962,7 @@ ca:
|
|
|
962
962
|
update: Actualitzar
|
|
963
963
|
form:
|
|
964
964
|
none: Cap
|
|
965
|
-
slug_help: 'Utilitza rutes parcials, no URL
|
|
965
|
+
slug_help: 'Utilitza rutes parcials, no URL completes aquí. Accepta lletres, números, guions i barres, i ha de començar amb una lletra. Exemple: %{url}'
|
|
966
966
|
index:
|
|
967
967
|
last_notable_change: Últims canvis notables
|
|
968
968
|
new:
|
|
@@ -1040,7 +1040,7 @@ ca:
|
|
|
1040
1040
|
last_week: La darrera setmana
|
|
1041
1041
|
no_users_count_statistics_yet: Encara no hi ha estadístiques de recompte d’usuàries
|
|
1042
1042
|
participants: Participants
|
|
1043
|
-
view_public_page:
|
|
1043
|
+
view_public_page: Visualitzar la pàgina pública
|
|
1044
1044
|
forms:
|
|
1045
1045
|
errors:
|
|
1046
1046
|
impersonate_user:
|
data/config/locales/cs.yml
CHANGED
|
@@ -93,7 +93,7 @@ cs:
|
|
|
93
93
|
success_color: Úspěch
|
|
94
94
|
time_zone: Časové pásmo
|
|
95
95
|
tos_version: Verze podmínek služby
|
|
96
|
-
twitter_handler:
|
|
96
|
+
twitter_handler: X handler
|
|
97
97
|
user_groups_enabled: Povolit skupiny
|
|
98
98
|
users_registration_mode: Režim registrace uživatelů
|
|
99
99
|
warning_color: Varování
|
|
@@ -807,7 +807,7 @@ cs:
|
|
|
807
807
|
instagram: Instagram
|
|
808
808
|
rich_text_editor_in_public_views_help: V některých textových polích budou účastníci moci vložit některé HTML tagy pomocí textového editoru.
|
|
809
809
|
social_handlers: Sociální
|
|
810
|
-
twitter:
|
|
810
|
+
twitter: X
|
|
811
811
|
url: URL
|
|
812
812
|
youtube: Youtube
|
|
813
813
|
update:
|
|
@@ -821,7 +821,7 @@ cs:
|
|
|
821
821
|
colors_title: Organizační barvy
|
|
822
822
|
colors_warning_html: Varování! Změna těchto barev může narušit kontrasty přístupnosti. Můžete zkontrolovat kontrast výběru s <a href="%{link}">kontrolou kontrastu WebAIM Contrast Checker</a> nebo jinými podobnými nástroji.
|
|
823
823
|
header_snippets_help: Toto pole použijte k přidání věcí do hlavičky HTML. Nejběžnějším používáním je integrace služeb třetích stran, které vyžadují nějaký extra JavaScript nebo CSS. Můžete také použít k přidání dalších metaznaček do HTML. Všimněte si, že to bude vykresleno pouze na veřejných stránkách, nikoliv v sekci admin.
|
|
824
|
-
cta_button_path_help: '
|
|
824
|
+
cta_button_path_help: 'Místo, kam tlačítko Výzva k akci na domovské stránce vede, lze přepsat. V tomto případě použijte částečnou cestu, nikoliv kompletní URL. Lze použít písmena, číslice, pomlčky a lomítka a musí se začínat písmenem. Tlačítko Výzva k akci je na domovské stránce umístěno mezi uvítacím textem a popisem. Příklad: %{url}'
|
|
825
825
|
cta_button_text_help: Text tlačítka výzvy k akci můžete na domovské stránce přepsat pro každý dostupný jazyk ve vaší organizaci. Pokud není nastaveno, bude použita výchozí hodnota. Tlačítko Výzvy k akci se na domovské stránce zobrazí mezi uvítacím textem a popisem.
|
|
826
826
|
homepage_appearance_title: Upravit vzhled stránky
|
|
827
827
|
homepage_highlighted_content_banner_title: Zvýrazněný obsahový banner
|
|
@@ -842,7 +842,7 @@ cs:
|
|
|
842
842
|
title: Seznam externích povolených domén
|
|
843
843
|
organization_homepage:
|
|
844
844
|
edit:
|
|
845
|
-
active_content_blocks:
|
|
845
|
+
active_content_blocks: Aktivní bloky obsahu
|
|
846
846
|
inactive_content_blocks: Neaktivní bloky obsahu
|
|
847
847
|
organization_homepage_content_blocks:
|
|
848
848
|
edit:
|
|
@@ -872,7 +872,7 @@ cs:
|
|
|
872
872
|
explanation: Máte %{count} soukromých účastníků.
|
|
873
873
|
title: Odstranit soukromé účastníky
|
|
874
874
|
explanation: 'Nahrajte soubor CSV. Musí mít dva sloupce s e-mailem v prvním sloupci souboru a jméno v posledním sloupci souboru (e-mail, jméno) uživatelů, které chcete přidat do participačního prostoru, bez záhlaví. Vyhněte se používání neplatných znaků jako `<>?%&^*#@()[]=+:;"{}\|` v uživatelském jméně.'
|
|
875
|
-
title:
|
|
875
|
+
title: Nahrát soubor CSV
|
|
876
876
|
upload: Nahrát
|
|
877
877
|
reminders:
|
|
878
878
|
create:
|
|
@@ -972,7 +972,7 @@ cs:
|
|
|
972
972
|
update: Aktualizace
|
|
973
973
|
form:
|
|
974
974
|
none: Žádný
|
|
975
|
-
slug_help: '
|
|
975
|
+
slug_help: 'Použijte v tomto případě částečnou cestu, nikoliv kompletní URL. Lze použít písmena, číslice, pomlčky a lomítka a musí se začínat písmenem. Příklad: %{url}'
|
|
976
976
|
index:
|
|
977
977
|
last_notable_change: Poslední významná změna
|
|
978
978
|
new:
|
data/config/locales/de.yml
CHANGED
|
@@ -11,7 +11,7 @@ de:
|
|
|
11
11
|
organization: Organisation
|
|
12
12
|
plural: Plural
|
|
13
13
|
attachment:
|
|
14
|
-
attachment_collection_id:
|
|
14
|
+
attachment_collection_id: Ordner
|
|
15
15
|
description: Beschreibung
|
|
16
16
|
file: Datei
|
|
17
17
|
title: Anhang oder Bildname
|
|
@@ -27,7 +27,7 @@ de:
|
|
|
27
27
|
weight: Reihenfolge
|
|
28
28
|
component:
|
|
29
29
|
name: Name
|
|
30
|
-
published_at: Veröffentlicht
|
|
30
|
+
published_at: Veröffentlicht am
|
|
31
31
|
weight: Reihenfolge
|
|
32
32
|
external_domain:
|
|
33
33
|
value: Wert
|
|
@@ -93,7 +93,7 @@ de:
|
|
|
93
93
|
success_color: Erfolg
|
|
94
94
|
time_zone: Zeitzone
|
|
95
95
|
tos_version: Nutzungsbedingungen Version
|
|
96
|
-
twitter_handler:
|
|
96
|
+
twitter_handler: X-Handler
|
|
97
97
|
user_groups_enabled: Benutzergruppen aktivieren
|
|
98
98
|
users_registration_mode: Benutzerregistrierungs-Modus
|
|
99
99
|
warning_color: Warnung
|
|
@@ -389,7 +389,7 @@ de:
|
|
|
389
389
|
'false': 'Nein'
|
|
390
390
|
'true': 'Ja'
|
|
391
391
|
last_sign_in_at_present:
|
|
392
|
-
label:
|
|
392
|
+
label: Zuletzt angemeldet
|
|
393
393
|
values:
|
|
394
394
|
'false': 'Nein'
|
|
395
395
|
'true': 'Ja'
|
|
@@ -404,7 +404,7 @@ de:
|
|
|
404
404
|
reportable_type_string_eq:
|
|
405
405
|
label: Art
|
|
406
406
|
officialized_at_null:
|
|
407
|
-
label:
|
|
407
|
+
label: Status
|
|
408
408
|
values:
|
|
409
409
|
'false': Offizialisiert
|
|
410
410
|
'true': Nicht offiziell
|
|
@@ -433,12 +433,12 @@ de:
|
|
|
433
433
|
label: Themenbereich
|
|
434
434
|
search_label: Suche
|
|
435
435
|
search_placeholder:
|
|
436
|
-
name_or_nickname_or_email_cont: Suche in %{collection} nach E-Mail, Name oder
|
|
436
|
+
name_or_nickname_or_email_cont: Suche in %{collection} nach E-Mail, Name oder Kontoname.
|
|
437
437
|
report_count_eq: Anzahl Meldungen
|
|
438
438
|
reported_id_string_or_reported_content_cont: Suche %{collection} nach meldbarer Id oder Inhalt.
|
|
439
439
|
title_cont: In %{collection} nach Titel suchen.
|
|
440
440
|
user_name_or_user_email_cont: In %{collection} nach Name oder E-Mail suchen.
|
|
441
|
-
user_name_or_user_nickname_or_user_email_cont: '%{collection} nach E-Mail, Name oder
|
|
441
|
+
user_name_or_user_nickname_or_user_email_cont: '%{collection} nach E-Mail, Name oder Kontoname durchsuchen.'
|
|
442
442
|
state_eq:
|
|
443
443
|
label: Bundesland
|
|
444
444
|
values:
|
|
@@ -558,7 +558,7 @@ de:
|
|
|
558
558
|
reported_users: Gemeldete Nutzer
|
|
559
559
|
scope_types: Bereichstypen
|
|
560
560
|
scopes: Bereiche
|
|
561
|
-
settings:
|
|
561
|
+
settings: Einstellungen
|
|
562
562
|
static_pages: Seiten
|
|
563
563
|
user_groups: Benutzergruppen
|
|
564
564
|
users: Benutzer
|
|
@@ -576,13 +576,13 @@ de:
|
|
|
576
576
|
plural: Plural
|
|
577
577
|
attachment:
|
|
578
578
|
fields:
|
|
579
|
-
collection:
|
|
579
|
+
collection: Ordner
|
|
580
580
|
content_type: Art
|
|
581
581
|
file_size: Größe
|
|
582
582
|
title: Titel
|
|
583
583
|
name: Befestigung
|
|
584
584
|
attachment_collection:
|
|
585
|
-
name:
|
|
585
|
+
name: Ordner
|
|
586
586
|
category:
|
|
587
587
|
name: Kategorie
|
|
588
588
|
impersonation_log:
|
|
@@ -595,7 +595,7 @@ de:
|
|
|
595
595
|
user: Benutzer
|
|
596
596
|
newsletter:
|
|
597
597
|
fields:
|
|
598
|
-
created_at:
|
|
598
|
+
created_at: Erstellt am
|
|
599
599
|
progress: Fortschritt
|
|
600
600
|
sent_at: Gesendet um
|
|
601
601
|
sent_to: Gesendet an
|
|
@@ -621,7 +621,7 @@ de:
|
|
|
621
621
|
user: Erstellt von
|
|
622
622
|
static_page:
|
|
623
623
|
fields:
|
|
624
|
-
created_at:
|
|
624
|
+
created_at: Erstellt am
|
|
625
625
|
title: Titel
|
|
626
626
|
user:
|
|
627
627
|
fields:
|
|
@@ -637,11 +637,11 @@ de:
|
|
|
637
637
|
user_group:
|
|
638
638
|
fields:
|
|
639
639
|
actions: Aktionen
|
|
640
|
-
created_at:
|
|
640
|
+
created_at: Erstellt am
|
|
641
641
|
document_number: Dokumentnummer
|
|
642
642
|
name: Name
|
|
643
643
|
phone: Telefon
|
|
644
|
-
state:
|
|
644
|
+
state: Status
|
|
645
645
|
users_count: Benutzer zählen
|
|
646
646
|
moderated_users:
|
|
647
647
|
index:
|
|
@@ -726,8 +726,8 @@ de:
|
|
|
726
726
|
select_recipients_to_deliver:
|
|
727
727
|
all_spaces: Alle
|
|
728
728
|
all_users_help: Sendet Newsletter an alle bestätigten Benutzer.
|
|
729
|
-
confirm_deliver: Möchten Sie diesen Newsletter wirklich
|
|
730
|
-
deliver:
|
|
729
|
+
confirm_deliver: Möchten Sie diesen Newsletter wirklich versenden? Diese Aktion kann nicht rückgängig gemacht werden.
|
|
730
|
+
deliver: Newsletter versenden
|
|
731
731
|
followers_help: Sendet den Newsletter an alle bestätigten Benutzer, die den ausgewählten Teilnehmerräumen in der Liste folgen.
|
|
732
732
|
none: Niemand
|
|
733
733
|
participants_help: Sendet den Newsletter an alle bestätigten Benutzer, die an den ausgewählten Teilnehmerräumen der Liste teilgenommen haben.
|
|
@@ -736,9 +736,9 @@ de:
|
|
|
736
736
|
select_scopes: Nur Teilnehmer anzeigen, die einen der gewählten Themenbereiche in Ihren "Meine Interessen" Einstellungen ihres Kontos aktiviert haben.
|
|
737
737
|
select_spaces: Wählen Sie Abschnitte, um den Newsletter zu unterteilen
|
|
738
738
|
select_users: Wählen Sie aus, welchen Benutzern Sie den Newsletter senden möchten
|
|
739
|
-
send_to_all_users: An alle
|
|
739
|
+
send_to_all_users: An alle Benutzenden senden
|
|
740
740
|
send_to_followers: An Follower senden
|
|
741
|
-
send_to_participants: An
|
|
741
|
+
send_to_participants: An Teilnehmende senden
|
|
742
742
|
title: Empfänger auswählen
|
|
743
743
|
warning: "<strong>Achtung:</strong> Dieser Newsletter wird nur an Benutzer gesendet, die <em>Ich möchte Newsletter empfangen</em> in ihren Benachrichtigungseinstellungen aktiviert haben."
|
|
744
744
|
send:
|
|
@@ -762,7 +762,7 @@ de:
|
|
|
762
762
|
actions: Aktionen
|
|
763
763
|
badge: Abzeichen
|
|
764
764
|
block: Benutzer blockieren
|
|
765
|
-
created_at:
|
|
765
|
+
created_at: Erstellt am
|
|
766
766
|
name: Name
|
|
767
767
|
nickname: Spitzname
|
|
768
768
|
not_officialized: Nicht offiziell
|
|
@@ -799,7 +799,7 @@ de:
|
|
|
799
799
|
instagram: Instagram
|
|
800
800
|
rich_text_editor_in_public_views_help: In einigen Textbereichen können Teilnehmer mit Hilfe des Rich-Text-Editors HTML-Tags einfügen.
|
|
801
801
|
social_handlers: Sozial
|
|
802
|
-
twitter:
|
|
802
|
+
twitter: X
|
|
803
803
|
url: URL
|
|
804
804
|
youtube: Youtube
|
|
805
805
|
update:
|
|
@@ -813,7 +813,7 @@ de:
|
|
|
813
813
|
colors_title: Organisationsfarben
|
|
814
814
|
colors_warning_html: Warnung! Das Ändern dieser Farben kann die für Barrierefreiheit notwendigen Kontraste brechen. Sie können den Kontrast Ihrer Wahl mit <a href="%{link}">WebAIM Contrast Checker</a> oder ähnlichen Tools überprüfen.
|
|
815
815
|
header_snippets_help: Verwenden Sie dieses Feld, um Dinge zum HTML-Kopf hinzuzufügen. Die häufigste Verwendung ist die Integration von Drittanbieterdiensten, für die zusätzliches JavaScript oder CSS erforderlich ist. Außerdem können Sie damit dem HTML zusätzliche Meta-Tags hinzufügen. Beachten Sie, dass dies nur auf öffentlichen Seiten und nicht im Admin-Bereich erfolgt.
|
|
816
|
-
cta_button_path_help: 'Sie können überschreiben,
|
|
816
|
+
cta_button_path_help: 'Sie können überschreiben, womit die Call To Action-Schaltfläche auf der Homepage verlinkt ist. Verwenden Sie hier Teilpfade, nicht die vollständige URL. Buchstaben, Zahlen, Bindestriche und Schrägstriche sind erlaubt; an der ersten Stelle ist ein Buchstabe erforderlich. Die Call To Action-Schaltfläche wird auf der Startseite zwischen Begrüßungstext und Beschreibung angezeigt. Beispiel: %{url}'
|
|
817
817
|
cta_button_text_help: Sie können den Text der Call To Action-Schaltfläche auf der Startseite für jede verfügbare Sprache in Ihrer Organisation überschreiben. Wenn nicht festgelegt, wird der Standardwert verwendet. Die Call To Action-Schaltfläche wird auf der Startseite zwischen Begrüßungstext und Beschreibung angezeigt.
|
|
818
818
|
homepage_appearance_title: Homepage-Erscheinungsbild bearbeiten
|
|
819
819
|
homepage_highlighted_content_banner_title: Highlighted Inhaltsbanner
|
|
@@ -864,7 +864,7 @@ de:
|
|
|
864
864
|
explanation: Sie haben %{count} private Teilnehmende.
|
|
865
865
|
title: Alle private Teilnehmende entfernen
|
|
866
866
|
explanation: 'Laden Sie Ihre CSV-Datei hoch. Diese muss zwei Spalten haben ohne Kopfzeile, mit E-Mail in der ersten Spalte der Datei und Namen in der letzten Spalte der Datei (E-Mail, Name) in Bezug auf die Benutzer, die Sie dem Beteiligungsbereich hinzufügen möchten. Vermeiden sie ungültige Zeichen wie `<>?%&^*#@()[]=+:;"{}\|` im Namen des Nutzers zu verwenden.'
|
|
867
|
-
title: CSV-Datei
|
|
867
|
+
title: Laden Sie Ihre CSV-Datei hoch
|
|
868
868
|
upload: Hochladen
|
|
869
869
|
reminders:
|
|
870
870
|
create:
|
|
@@ -962,9 +962,9 @@ de:
|
|
|
962
962
|
update: Aktualisieren
|
|
963
963
|
form:
|
|
964
964
|
none: Keiner
|
|
965
|
-
slug_help: '
|
|
965
|
+
slug_help: 'Verwenden Sie hier Teilpfade, nicht die vollständige URL. Buchstaben, Zahlen, Bindestriche und Schrägstriche sind erlaubt; an der ersten Stelle ist ein Buchstabe erforderlich. Beispiel: %{url}'
|
|
966
966
|
index:
|
|
967
|
-
last_notable_change: Letzte
|
|
967
|
+
last_notable_change: Letzte signifikante Änderung
|
|
968
968
|
new:
|
|
969
969
|
create: Seite erstellen
|
|
970
970
|
title: Neue Seite
|
|
@@ -1104,6 +1104,6 @@ de:
|
|
|
1104
1104
|
newsletters:
|
|
1105
1105
|
title: Newsletter
|
|
1106
1106
|
settings:
|
|
1107
|
-
title:
|
|
1107
|
+
title: Einstellungen
|
|
1108
1108
|
users:
|
|
1109
|
-
title:
|
|
1109
|
+
title: Teilnehmer
|