decidim-admin 0.21.0 → 0.23.2
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.
Potentially problematic release.
This version of decidim-admin might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/app/assets/javascripts/decidim/admin/application.js.es6 +7 -0
- data/app/assets/javascripts/decidim/admin/budget_rule_toggler.component.js.es6 +52 -0
- data/app/assets/javascripts/decidim/admin/bundle.js +26 -32
- data/app/assets/javascripts/decidim/admin/bundle.js.map +1 -1
- data/app/assets/javascripts/decidim/admin/choose_language.js +12 -0
- data/app/assets/javascripts/decidim/admin/dynamic_fields.component.js.es6 +24 -5
- data/app/assets/javascripts/decidim/admin/form.js.es6 +24 -10
- data/app/assets/javascripts/decidim/admin/gallery.js.es6 +5 -0
- data/app/assets/javascripts/decidim/admin/newsletters.js.es6 +4 -0
- data/app/assets/javascripts/decidim/admin/officializations.js.es6 +20 -0
- data/app/assets/javascripts/decidim/admin/scope_picker_enabler.component.js.es6 +14 -0
- data/app/assets/stylesheets/decidim/admin/_decidim.scss +2 -0
- data/app/assets/stylesheets/decidim/admin/_variables.scss +1 -1
- data/app/assets/stylesheets/decidim/admin/extra/_newsletter-templates-gallery.scss +3 -0
- data/app/assets/stylesheets/decidim/admin/extra/_organization-appearance.scss +141 -0
- data/app/assets/stylesheets/decidim/admin/extra/_show_email.scss +31 -0
- data/app/assets/stylesheets/decidim/admin/extra/_title_bar.scss +4 -0
- data/app/assets/stylesheets/decidim/admin/modules/_buttons.scss +11 -1
- data/app/assets/stylesheets/decidim/admin/modules/_callouts.scss +11 -0
- data/app/assets/stylesheets/decidim/admin/modules/_cards.scss +2 -2
- data/app/assets/stylesheets/decidim/admin/modules/_filters.scss +2 -2
- data/app/assets/stylesheets/decidim/admin/modules/_forms.scss +16 -2
- data/app/assets/stylesheets/decidim/admin/modules/_import_result.scss +10 -0
- data/app/assets/stylesheets/decidim/admin/modules/_loading-spinner.scss +19 -0
- data/app/assets/stylesheets/decidim/admin/modules/_main-nav.scss +0 -1
- data/app/assets/stylesheets/decidim/admin/modules/_modules.scss +5 -1
- data/app/assets/stylesheets/decidim/admin/modules/_process-header.scss +0 -1
- data/app/assets/stylesheets/decidim/admin/modules/_secondary-nav.scss +0 -1
- data/app/assets/stylesheets/decidim/admin/modules/_table-list.scss +0 -5
- data/app/assets/stylesheets/decidim/admin/modules/_tabs.scss +7 -0
- data/app/assets/stylesheets/decidim/admin/modules/_users_statistics.scss +18 -0
- data/app/assets/stylesheets/decidim/admin/utils/_mixins.scss +42 -0
- data/app/assets/stylesheets/decidim/admin/utils/_settings.scss +4 -1
- data/app/cells/decidim/admin/content_block/show.erb +2 -2
- data/app/commands/decidim/admin/create_attachment.rb +2 -2
- data/app/commands/decidim/admin/create_newsletter.rb +34 -9
- data/app/commands/decidim/admin/destroy_share_token.rb +46 -0
- data/app/commands/decidim/admin/reorder_content_blocks.rb +1 -1
- data/app/commands/decidim/admin/update_component.rb +27 -3
- data/app/commands/decidim/admin/update_content_block.rb +25 -1
- data/app/commands/decidim/admin/update_newsletter.rb +31 -9
- data/app/commands/decidim/admin/update_organization.rb +11 -0
- data/app/commands/decidim/admin/update_organization_appearance.rb +3 -1
- data/app/controllers/concerns/decidim/admin/participatory_space_export.rb +8 -2
- data/app/controllers/decidim/admin/application_controller.rb +1 -0
- data/app/controllers/decidim/admin/authorization_workflows_controller.rb +6 -0
- data/app/controllers/decidim/admin/components_controller.rb +17 -6
- data/app/controllers/decidim/admin/dashboard_controller.rb +33 -1
- data/app/controllers/decidim/admin/metrics_controller.rb +22 -0
- data/app/controllers/decidim/admin/newsletter_templates_controller.rb +41 -0
- data/app/controllers/decidim/admin/newsletters_controller.rb +32 -4
- data/app/controllers/decidim/admin/officializations_controller.rb +8 -0
- data/app/controllers/decidim/admin/organization_appearance_controller.rb +1 -0
- data/app/controllers/decidim/admin/organization_controller.rb +4 -3
- data/app/controllers/decidim/admin/organization_homepage_content_blocks_controller.rb +2 -1
- data/app/controllers/decidim/admin/share_tokens_controller.rb +30 -0
- data/app/forms/decidim/admin/attachment_form.rb +3 -0
- data/app/forms/decidim/admin/component_form.rb +5 -22
- data/app/forms/decidim/admin/newsletter_form.rb +15 -3
- data/app/forms/decidim/admin/organization_appearance_form.rb +7 -4
- data/app/forms/decidim/admin/organization_form.rb +20 -0
- data/app/forms/decidim/admin/participatory_space_private_user_csv_import_form.rb +13 -0
- data/app/forms/decidim/admin/participatory_space_private_user_form.rb +3 -2
- data/app/forms/decidim/admin/selective_newsletter_form.rb +6 -0
- data/app/frontend/components/autocomplete.component.test.tsx +2 -1
- data/app/frontend/components/autocomplete.component.tsx +29 -0
- data/app/helpers/decidim/admin/application_helper.rb +1 -0
- data/app/helpers/decidim/admin/filterable_helper.rb +35 -27
- data/app/helpers/decidim/admin/icon_link_helper.rb +1 -1
- data/app/helpers/decidim/admin/newsletters_helper.rb +3 -1
- data/app/helpers/decidim/admin/resource_scope_helper.rb +43 -0
- data/app/helpers/decidim/admin/settings_helper.rb +52 -59
- data/app/helpers/decidim/admin/uploader_image_dimensions_helper.rb +30 -0
- data/app/models/decidim/admin/fake_newsletter.rb +49 -0
- data/app/permissions/decidim/admin/permissions.rb +7 -1
- data/app/presenters/decidim/admin/dashboard_metric_charts_presenter.rb +57 -0
- data/app/queries/decidim/admin/active_users_counter.rb +35 -0
- data/app/queries/decidim/admin/newsletter_recipients.rb +5 -8
- data/app/views/decidim/admin/attachment_collections/index.html.erb +1 -1
- data/app/views/decidim/admin/authorization_workflows/index.html.erb +1 -0
- data/app/views/decidim/admin/categories/index.html.erb +1 -1
- data/app/views/decidim/admin/components/_component.html.erb +5 -0
- data/app/views/decidim/admin/components/_form.html.erb +4 -0
- data/app/views/decidim/admin/components/_settings_fields.html.erb +2 -2
- data/app/views/decidim/admin/components/index.html.erb +1 -0
- data/app/views/decidim/admin/dashboard/show.html.erb +35 -10
- data/app/views/decidim/admin/exports/_dropdown.html.erb +6 -2
- data/app/views/decidim/admin/impersonatable_users/index.html.erb +2 -2
- data/app/views/decidim/admin/metrics/_metrics.html.erb +21 -0
- data/app/views/decidim/admin/metrics/index.html.erb +7 -0
- data/app/views/decidim/admin/newsletter_templates/index.html.erb +28 -0
- data/app/views/decidim/admin/newsletter_templates/show.html.erb +12 -0
- data/app/views/decidim/admin/newsletters/_form.html.erb +1 -7
- data/app/views/decidim/admin/newsletters/edit.html.erb +1 -1
- data/app/views/decidim/admin/newsletters/index.html.erb +1 -1
- data/app/views/decidim/admin/newsletters/new.html.erb +1 -1
- data/app/views/decidim/admin/officializations/_show_email_modal.html.erb +31 -0
- data/app/views/decidim/admin/officializations/index.html.erb +7 -3
- data/app/views/decidim/admin/officializations/show_email.html.erb +2 -0
- data/app/views/decidim/admin/organization/_form.html.erb +21 -0
- data/app/views/decidim/admin/organization_appearance/_form.html.erb +2 -72
- data/app/views/decidim/admin/organization_appearance/form/_colors.html.erb +23 -0
- data/app/views/decidim/admin/organization_appearance/form/_images.html.erb +38 -0
- data/app/views/decidim/admin/organization_appearance/form/_minimap.html.erb +46 -0
- data/app/views/decidim/admin/resource_permissions/_options_form.html.erb +1 -1
- data/app/views/decidim/admin/share_tokens/_share_tokens.html.erb +57 -0
- data/app/views/decidim/admin/shared/_filters.html.erb +3 -3
- data/app/views/decidim/admin/shared/_gallery.html.erb +21 -0
- data/app/views/decidim/admin/static_pages/_form.html.erb +1 -1
- data/app/views/decidim/admin/user_groups/index.html.erb +4 -4
- data/app/views/decidim/admin/users_statistics/_users_count.html.erb +39 -0
- data/app/views/layouts/decidim/admin/_application.html.erb +1 -0
- data/app/views/layouts/decidim/admin/_header.html.erb +3 -0
- data/app/views/layouts/decidim/admin/_title_bar.html.erb +20 -10
- data/app/views/layouts/decidim/admin/newsletters.erb +1 -1
- data/config/locales/am-ET.yml +1 -0
- data/config/locales/ar.yml +12 -45
- data/config/locales/bg-BG.yml +16 -0
- data/config/locales/bg.yml +131 -0
- data/config/locales/ca.yml +84 -46
- data/config/locales/cs.yml +175 -137
- data/config/locales/da-DK.yml +1 -0
- data/config/locales/da.yml +1 -0
- data/config/locales/de.yml +150 -56
- data/config/locales/el.yml +814 -0
- data/config/locales/en.yml +84 -46
- data/config/locales/eo-UY.yml +0 -1
- data/config/locales/eo.yml +51 -0
- data/config/locales/es-MX.yml +84 -46
- data/config/locales/es-PY.yml +84 -46
- data/config/locales/es.yml +84 -46
- data/config/locales/et-EE.yml +1 -0
- data/config/locales/et.yml +1 -0
- data/config/locales/eu.yml +30 -59
- data/config/locales/fi-plain.yml +84 -46
- data/config/locales/fi.yml +98 -60
- data/config/locales/fr-CA.yml +847 -0
- data/config/locales/fr.yml +126 -51
- data/config/locales/ga-IE.yml +1 -0
- data/config/locales/gl.yml +156 -42
- data/config/locales/hr-HR.yml +1 -0
- data/config/locales/hr.yml +1 -0
- data/config/locales/hu.yml +55 -46
- data/config/locales/id-ID.yml +12 -41
- data/config/locales/is-IS.yml +10 -42
- data/config/locales/is.yml +568 -0
- data/config/locales/it.yml +106 -85
- data/config/locales/ja-JP.yml +855 -0
- data/config/locales/ja.yml +847 -0
- data/config/locales/ko-KR.yml +1 -0
- data/config/locales/ko.yml +1 -0
- data/config/locales/lt-LT.yml +1 -0
- data/config/locales/lt.yml +1 -0
- data/config/locales/lv.yml +795 -0
- data/config/locales/mt-MT.yml +1 -0
- data/config/locales/mt.yml +1 -0
- data/config/locales/nl.yml +74 -46
- data/config/locales/no.yml +108 -83
- data/config/locales/om-ET.yml +1 -0
- data/config/locales/pl.yml +354 -233
- data/config/locales/pt-BR.yml +13 -42
- data/config/locales/pt.yml +321 -231
- data/config/locales/ro-RO.yml +810 -0
- data/config/locales/ru.yml +11 -44
- data/config/locales/si-LK.yml +1 -0
- data/config/locales/sk-SK.yml +823 -0
- data/config/locales/sk.yml +802 -0
- data/config/locales/sl.yml +162 -0
- data/config/locales/so-SO.yml +1 -0
- data/config/locales/sr-CS.yml +586 -0
- data/config/locales/sv.yml +134 -54
- data/config/locales/sw-KE.yml +1 -0
- data/config/locales/ti-ER.yml +1 -0
- data/config/locales/tr-TR.yml +139 -50
- data/config/locales/uk.yml +10 -42
- data/config/locales/vi-VN.yml +1 -0
- data/config/locales/vi.yml +1 -0
- data/config/locales/zh-CN.yml +845 -0
- data/config/locales/zh-TW.yml +1 -0
- data/config/routes.rb +14 -3
- data/lib/decidim/admin/engine.rb +12 -9
- data/lib/decidim/admin/form_builder.rb +2 -2
- data/lib/decidim/admin/test/manage_attachment_collections_examples.rb +1 -1
- data/lib/decidim/admin/test/manage_component_permissions_examples.rb +15 -15
- data/lib/decidim/admin/version.rb +1 -1
- metadata +85 -33
- data/app/commands/decidim/admin/create_oauth_application.rb +0 -36
- data/app/commands/decidim/admin/destroy_oauth_application.rb +0 -39
- data/app/commands/decidim/admin/update_oauth_application.rb +0 -39
- data/app/controllers/decidim/admin/oauth_applications_controller.rb +0 -90
- data/app/forms/decidim/admin/oauth_application_form.rb +0 -32
- data/app/views/decidim/admin/oauth_applications/_form.html.erb +0 -19
- data/app/views/decidim/admin/oauth_applications/edit.html.erb +0 -13
- data/app/views/decidim/admin/oauth_applications/index.html.erb +0 -40
- data/app/views/decidim/admin/oauth_applications/new.html.erb +0 -13
- data/app/views/decidim/admin/oauth_applications/show.html.erb +0 -27
@@ -4,7 +4,7 @@
|
|
4
4
|
<%= t ".title" %>
|
5
5
|
</div>
|
6
6
|
<div class="secondary-nav__actions">
|
7
|
-
<%= link_to t("actions.new", scope: "decidim.admin", name: t("models.newsletter.name", scope: "decidim.admin")), ["
|
7
|
+
<%= link_to t("actions.new", scope: "decidim.admin", name: t("models.newsletter.name", scope: "decidim.admin")), ["newsletter_templates"], class: "button expanded small new" %>
|
8
8
|
</div>
|
9
9
|
</div>
|
10
10
|
<% end %>
|
@@ -0,0 +1 @@
|
|
1
|
+
am:
|
data/config/locales/ar.yml
CHANGED
@@ -13,7 +13,6 @@ ar:
|
|
13
13
|
attachment_collection_id: المجلد
|
14
14
|
description: الوصف
|
15
15
|
file: ملف
|
16
|
-
title: العنوان
|
17
16
|
attachment_collection:
|
18
17
|
description: الوصف
|
19
18
|
name: اسم
|
@@ -29,14 +28,7 @@ ar:
|
|
29
28
|
newsletter:
|
30
29
|
body: المحتوى
|
31
30
|
subject: الموضوع
|
32
|
-
oauth_application:
|
33
|
-
name: الاسم
|
34
|
-
organization_logo: شعار المنظمة (مربع)
|
35
|
-
organization_name: اسم المنظمة
|
36
|
-
organization_url: عنوان URL للمؤسسة
|
37
|
-
redirect_uri: إعادة توجيه URI
|
38
31
|
organization:
|
39
|
-
address: خادم SMTP
|
40
32
|
alert_color: تنبيه
|
41
33
|
badges_enabled: تمكين الشارات
|
42
34
|
cta_button_path: دعوة إلى العمل مسار زر
|
@@ -66,8 +58,6 @@ ar:
|
|
66
58
|
omnipresent_banner_short_description: وصف قصير
|
67
59
|
omnipresent_banner_title: العنوان
|
68
60
|
omnipresent_banner_url: العنوان الشبكي
|
69
|
-
password: الكلمة السرية
|
70
|
-
port: المَنفذ
|
71
61
|
primary_color: ابتدائي
|
72
62
|
reference_prefix: بادئة المرجع
|
73
63
|
rich_text_editor_in_public_views: إتاحة محرر النص الغني للمشارِكين
|
@@ -79,7 +69,6 @@ ar:
|
|
79
69
|
tos_version: شروط وأحكام الخدمة
|
80
70
|
twitter_handler: مُعرّف حساب تويتر
|
81
71
|
user_groups_enabled: تمكين المجموعات
|
82
|
-
user_name: اسم المستخدم
|
83
72
|
warning_color: تحذير
|
84
73
|
welcome_notification_body: محتوى إشعار الترحيب
|
85
74
|
welcome_notification_subject: موضوع إشعار الترحيب
|
@@ -112,10 +101,6 @@ ar:
|
|
112
101
|
file: ملف
|
113
102
|
errors:
|
114
103
|
models:
|
115
|
-
oauth_application:
|
116
|
-
attributes:
|
117
|
-
redirect_uri:
|
118
|
-
must_be_ssl: يجب أن يكون URI لإعادة التوجيه SSL URI
|
119
104
|
organization:
|
120
105
|
attributes:
|
121
106
|
official_img_footer:
|
@@ -375,7 +360,6 @@ ar:
|
|
375
360
|
homepage: الصفحة الرئيسية
|
376
361
|
impersonations: التقليد
|
377
362
|
newsletters: الرسائل الإخبارية
|
378
|
-
oauth_applications: تطبيقات OAuth
|
379
363
|
participants: المشاركون
|
380
364
|
scope_types: أنواع النطاق
|
381
365
|
scopes: نطاقات
|
@@ -419,11 +403,6 @@ ar:
|
|
419
403
|
sent_to: أُرسِلت إلى
|
420
404
|
subject: موضوع
|
421
405
|
name: النشرة الإخبارية
|
422
|
-
oauth_application:
|
423
|
-
fields:
|
424
|
-
created_at: أنشئت في
|
425
|
-
name: اسم
|
426
|
-
name: تطبيق OAuth
|
427
406
|
participatory_space_private_user:
|
428
407
|
name: المشاركة الفضاء المشارك الخاص
|
429
408
|
scope:
|
@@ -466,6 +445,9 @@ ar:
|
|
466
445
|
does_not_belong: لا ينتمي
|
467
446
|
offensive: هجومي
|
468
447
|
spam: بريد مؤذي
|
448
|
+
newsletter_templates:
|
449
|
+
index:
|
450
|
+
preview_template: معاينة
|
469
451
|
newsletters:
|
470
452
|
create:
|
471
453
|
error: كانت هناك مشكلة في إنشاء هذه الرسالة الإخبارية.
|
@@ -479,8 +461,6 @@ ar:
|
|
479
461
|
edit:
|
480
462
|
save_and_preview: حفظ والمعاينة
|
481
463
|
title: تحرير النشرة الإخبارية
|
482
|
-
form:
|
483
|
-
interpolations_hint: 'تلميح: يمكنك استخدام "%{name}" في أي مكان في الجسم أو الموضوع وسيتم استبداله باسم المستلم.'
|
484
464
|
index:
|
485
465
|
all: الكل
|
486
466
|
all_users: 'كافة المستخدمين '
|
@@ -511,25 +491,6 @@ ar:
|
|
511
491
|
update:
|
512
492
|
error: حدثت مشكلة أثناء تحديث هذه الرسالة الإخبارية.
|
513
493
|
success: تم تحديث النشرة الإخبارية بنجاح. يرجى مراجعته قبل الإرسال.
|
514
|
-
oauth_applications:
|
515
|
-
create:
|
516
|
-
error: حدثت مشكلة أثناء إنشاء هذا التطبيق.
|
517
|
-
success: تم إنشاء التطبيق بنجاح.
|
518
|
-
destroy:
|
519
|
-
error: حدثت مشكلة أثناء تدمير هذا التطبيق.
|
520
|
-
success: تم تدمير التطبيق بنجاح.
|
521
|
-
edit:
|
522
|
-
save: حفظ
|
523
|
-
title: تحرير التطبيق
|
524
|
-
index:
|
525
|
-
confirm_delete: هل أنت متأكد أنك تريد حذف هذا التطبيق؟
|
526
|
-
title: تطبيقات OAuth
|
527
|
-
new:
|
528
|
-
save: حفظ
|
529
|
-
title: تطبيق جديد
|
530
|
-
update:
|
531
|
-
error: حدثت مشكلة أثناء تحديث هذا التطبيق.
|
532
|
-
success: تم تحديث التطبيق بنجاح.
|
533
494
|
officializations:
|
534
495
|
create:
|
535
496
|
success: مشارك رسمي بنجاح
|
@@ -570,13 +531,15 @@ ar:
|
|
570
531
|
edit:
|
571
532
|
update: تحديث
|
572
533
|
form:
|
573
|
-
|
534
|
+
colors:
|
535
|
+
colors_title: ألوان المنظمة
|
536
|
+
header_snippets_help: استخدم هذا الحقل لإضافة أشياء إلى رأس HTML. الاستخدام الأكثر شيوعًا هو دمج خدمات الجهات الخارجية التي تتطلب بعض JavaScript أو CSS إضافية. أيضًا ، يمكنك استخدامه لإضافة علامات وصفية إضافية إلى HTML. لاحظ أنه سيتم عرض هذا فقط في الصفحات العامة ، وليس في قسم المسؤول.
|
574
537
|
cta_button_path_help: 'يمكنك الكتابة فوق المكان الذي يرتبط به زر Call To Action في الصفحة الرئيسية. استخدم المسارات الجزئية ، وليس عناوين URL الكاملة هنا. يقبل الحروف والأرقام والشرطات والمائلة ، ويجب أن يبدأ بحرف. يظهر زر Call To Action في الصفحة الرئيسية بين نص الترحيب والوصف. مثال: %{url}'
|
575
538
|
cta_button_text_help: يمكنك الكتابة فوق نص زر Call To Action في الصفحة الرئيسية لكل لغة متاحة في مؤسستك. إذا لم يتم تعيينها ، سيتم استخدام القيمة الافتراضية. يظهر زر Call To Action في الصفحة الرئيسية بين نص الترحيب والوصف.
|
576
|
-
header_snippets_help: استخدم هذا الحقل لإضافة أشياء إلى رأس HTML. الاستخدام الأكثر شيوعًا هو دمج خدمات الجهات الخارجية التي تتطلب بعض JavaScript أو CSS إضافية. أيضًا ، يمكنك استخدامه لإضافة علامات وصفية إضافية إلى HTML. لاحظ أنه سيتم عرض هذا فقط في الصفحات العامة ، وليس في قسم المسؤول.
|
577
539
|
homepage_appearance_title: تحرير مظهر الصفحة الرئيسية
|
578
540
|
homepage_highlighted_content_banner_title: لافتة المحتوى الراقي
|
579
|
-
|
541
|
+
images:
|
542
|
+
layout_appearance_title: تحرير مظهر التخطيط
|
580
543
|
omnipresent_banner_appearance_title: تحرير لافتة في كل مكان
|
581
544
|
organization_homepage:
|
582
545
|
edit:
|
@@ -740,6 +703,10 @@ ar:
|
|
740
703
|
new:
|
741
704
|
create: دعا
|
742
705
|
title: دعوة مشارك كمسؤول
|
706
|
+
users_statistics:
|
707
|
+
users_count:
|
708
|
+
admins: المدراء
|
709
|
+
participants: المشاركون
|
743
710
|
view_public_page: عرض الصفحة العامة
|
744
711
|
forms:
|
745
712
|
errors:
|
@@ -0,0 +1,16 @@
|
|
1
|
+
bg:
|
2
|
+
activemodel:
|
3
|
+
attributes:
|
4
|
+
area:
|
5
|
+
area_type: Тип район
|
6
|
+
name: Име
|
7
|
+
organization: Организация
|
8
|
+
decidim:
|
9
|
+
admin:
|
10
|
+
organization_appearance:
|
11
|
+
form:
|
12
|
+
colors:
|
13
|
+
colors_title: Цветове на организацията
|
14
|
+
header_snippets_help: Използвайте това поле, за да добавите нещо в HTML заглавието. Най-често се използва за интеграция на външни услуги, които изискват допълнителни JavaScript или CSS. Освен това, можете да го ползвате за добавяне на допълнителни метатагове в HTML. Обърнете внимание, че ще се визуализира само в публичните страници, но не и в администраторския раздел.
|
15
|
+
images:
|
16
|
+
layout_appearance_title: Редактиране външния вид шаблона
|
@@ -0,0 +1,131 @@
|
|
1
|
+
bg:
|
2
|
+
activemodel:
|
3
|
+
attributes:
|
4
|
+
area:
|
5
|
+
area_type: Тип район
|
6
|
+
name: Име
|
7
|
+
organization: Организация
|
8
|
+
area_type:
|
9
|
+
name: Име
|
10
|
+
organization: Организация
|
11
|
+
plural: Множествено число
|
12
|
+
attachment:
|
13
|
+
attachment_collection_id: Папка
|
14
|
+
description: Описание
|
15
|
+
file: Файл
|
16
|
+
title: Име на прикрепен файл или изображение
|
17
|
+
attachment_collection:
|
18
|
+
description: Описание
|
19
|
+
name: Име
|
20
|
+
category:
|
21
|
+
description: Описание
|
22
|
+
name: Име
|
23
|
+
parent_id: Родител
|
24
|
+
component:
|
25
|
+
name: Име
|
26
|
+
published_at: Публикувано на
|
27
|
+
weight: Тегло
|
28
|
+
id: ID
|
29
|
+
newsletter:
|
30
|
+
body: Тяло
|
31
|
+
subject: Тема
|
32
|
+
organization:
|
33
|
+
alert_color: Аларма
|
34
|
+
badges_enabled: Включи значките
|
35
|
+
comments_max_length: Максимална дължина на коментарите (Оставете 0 за стойност по подразбиране)
|
36
|
+
cta_button_path: Път на бутона "призив към действие"
|
37
|
+
cta_button_text: Текст на бутона "призив към действие"
|
38
|
+
customize_welcome_notification: Персонализирайте приветствието
|
39
|
+
default_locale: Език по подразбиране
|
40
|
+
description: Описание
|
41
|
+
enable_omnipresent_banner: Показвай всепоказван банер
|
42
|
+
facebook_handler: Манипулатор на Facebook
|
43
|
+
favicon: Икона
|
44
|
+
from: От адрес ел.поща
|
45
|
+
github_handler: Манипулатор на GitHub
|
46
|
+
header_snippets: Части на HTML заглавката
|
47
|
+
highlight_alternative_color: Подчертаване, алтернативен
|
48
|
+
highlight_color: Подчертване
|
49
|
+
highlighted_content_banner_action_subtitle: Поднадпис на бутон за действие
|
50
|
+
highlighted_content_banner_action_title: Надпис на бутон за действие
|
51
|
+
highlighted_content_banner_action_url: Адрес на бутон за действие
|
52
|
+
highlighted_content_banner_enabled: Показвай банер на подчертано съдържание
|
53
|
+
highlighted_content_banner_image: Изображение
|
54
|
+
highlighted_content_banner_short_description: Кратко описание
|
55
|
+
highlighted_content_banner_title: Заглавие
|
56
|
+
instagram_handler: Манипулатор на Instagram
|
57
|
+
logo: Лого
|
58
|
+
machine_translation_display_priority: Приоритет за показване на машинен превод
|
59
|
+
machine_translation_display_priority_original: Първо оригиналният текст
|
60
|
+
machine_translation_display_priority_translation: Първо преведеният текст
|
61
|
+
name: Име
|
62
|
+
official_img_footer: Долен колонтитул на официалното лого
|
63
|
+
official_img_header: Заглавка на официалното лого
|
64
|
+
official_url: Официален URL адрес на организацията
|
65
|
+
omnipresent_banner_short_description: Кратко описание
|
66
|
+
omnipresent_banner_title: Заглавие
|
67
|
+
omnipresent_banner_url: URL адрес
|
68
|
+
primary_color: Основен
|
69
|
+
reference_prefix: Префикс на препратка
|
70
|
+
rich_text_editor_in_public_views: Разреши редактора на rich text за участниците
|
71
|
+
secondary_color: Вторичен
|
72
|
+
send_welcome_notification: Изпращай приветствия
|
73
|
+
show_statistics: Покажи статистиката
|
74
|
+
success_color: Успешно
|
75
|
+
time_zone: Часова зона
|
76
|
+
tos_version: Версия на условия за ползване
|
77
|
+
twitter_handler: Манипулатор на Twitter
|
78
|
+
user_groups_enabled: Разреши групи
|
79
|
+
warning_color: Предупреждение
|
80
|
+
welcome_notification_body: Тяло на приветствието
|
81
|
+
welcome_notification_subject: Тема на приветствието
|
82
|
+
youtube_handler: Манипулатор на YouTube
|
83
|
+
scope:
|
84
|
+
code: Код
|
85
|
+
name: Име
|
86
|
+
organization: Организация
|
87
|
+
parent_id: Родител
|
88
|
+
scope_type: Тип сфера
|
89
|
+
scope_type_id: Тип сфера
|
90
|
+
scope_type:
|
91
|
+
name: Име
|
92
|
+
organization: Организация
|
93
|
+
plural: Множествено число
|
94
|
+
static_page:
|
95
|
+
changed_notably: Настъпиха значителни промени.
|
96
|
+
content: Съдържание
|
97
|
+
organization: Организация
|
98
|
+
show_in_footer: Покажи в долния колонтитул
|
99
|
+
slug: Съкратен URL
|
100
|
+
title: Заглавие
|
101
|
+
weight: Тегло
|
102
|
+
static_page_topic:
|
103
|
+
description: Описание
|
104
|
+
show_in_footer: Покажи в долния колонтитул
|
105
|
+
title: Заглавие
|
106
|
+
weight: Тегло
|
107
|
+
user_group_csv_verification:
|
108
|
+
file: Файл
|
109
|
+
errors:
|
110
|
+
models:
|
111
|
+
organization:
|
112
|
+
attributes:
|
113
|
+
official_img_footer:
|
114
|
+
allowed_file_content_types: Невалиден файл на изображението
|
115
|
+
official_img_header:
|
116
|
+
allowed_file_content_types: Невалиден файл на изображението
|
117
|
+
activerecord:
|
118
|
+
attributes:
|
119
|
+
decidim/static_page:
|
120
|
+
content: Съдържание
|
121
|
+
slug: Съкратен URL
|
122
|
+
title: Заглавие
|
123
|
+
decidim:
|
124
|
+
admin:
|
125
|
+
organization_appearance:
|
126
|
+
form:
|
127
|
+
colors:
|
128
|
+
colors_title: Цветове на организацията
|
129
|
+
header_snippets_help: Използвайте това поле, за да добавите нещо в HTML заглавието. Най-често се използва за интеграция на външни услуги, които изискват допълнителни JavaScript или CSS. Освен това, можете да го ползвате за добавяне на допълнителни метатагове в HTML. Обърнете внимание, че ще се визуализира само в публичните страници, но не и в администраторския раздел.
|
130
|
+
images:
|
131
|
+
layout_appearance_title: Редактиране външния вид шаблона
|
data/config/locales/ca.yml
CHANGED
@@ -13,7 +13,7 @@ ca:
|
|
13
13
|
attachment_collection_id: Carpeta
|
14
14
|
description: Descripció
|
15
15
|
file: Arxiu
|
16
|
-
title:
|
16
|
+
title: Nom de l'adjunt o imatge
|
17
17
|
attachment_collection:
|
18
18
|
description: Descripció
|
19
19
|
name: Nom
|
@@ -29,16 +29,10 @@ ca:
|
|
29
29
|
newsletter:
|
30
30
|
body: Cos
|
31
31
|
subject: Assumpte
|
32
|
-
oauth_application:
|
33
|
-
name: Nom
|
34
|
-
organization_logo: Logotip de l'organització (quadrat)
|
35
|
-
organization_name: Nom de l'organització
|
36
|
-
organization_url: URL de l'organització
|
37
|
-
redirect_uri: URL de redirecció
|
38
32
|
organization:
|
39
|
-
address: Nom del servidor SMTP
|
40
33
|
alert_color: Alerta
|
41
34
|
badges_enabled: Habilitar les ensenyes
|
35
|
+
comments_max_length: Longitud màxima dels comentaris (deixa 0 si vols mantenir la configuració per defecte)
|
42
36
|
cta_button_path: URL del botó d'acció
|
43
37
|
cta_button_text: Text del botó d'acció
|
44
38
|
customize_welcome_notification: Personalitza la notificació de benvinguda
|
@@ -50,6 +44,8 @@ ca:
|
|
50
44
|
from: Adreça des d'on s'enviaran els correus electrònics
|
51
45
|
github_handler: Nom d'usuari de GitHub
|
52
46
|
header_snippets: Codi personalitzat a la capçalera
|
47
|
+
highlight_alternative_color: Destacat, alternatiu
|
48
|
+
highlight_color: Destacar
|
53
49
|
highlighted_content_banner_action_subtitle: Subtítol del botó d'acció
|
54
50
|
highlighted_content_banner_action_title: Títol del botó d'acció
|
55
51
|
highlighted_content_banner_action_url: URL del botó d'acció
|
@@ -59,6 +55,9 @@ ca:
|
|
59
55
|
highlighted_content_banner_title: Títol
|
60
56
|
instagram_handler: Nom d'usuari a Instagram
|
61
57
|
logo: Logotip
|
58
|
+
machine_translation_display_priority: Prioritat al mostrar les traduccions automàtiques
|
59
|
+
machine_translation_display_priority_original: Text original primer
|
60
|
+
machine_translation_display_priority_translation: Text traduït primer
|
62
61
|
name: Nom
|
63
62
|
official_img_footer: Logotip oficial al peu de pàgina
|
64
63
|
official_img_header: Logotip oficial a la capçalera
|
@@ -66,8 +65,6 @@ ca:
|
|
66
65
|
omnipresent_banner_short_description: Breu descripció
|
67
66
|
omnipresent_banner_title: Títol
|
68
67
|
omnipresent_banner_url: URL
|
69
|
-
password: Contrasenya
|
70
|
-
port: Port
|
71
68
|
primary_color: Primària
|
72
69
|
reference_prefix: prefix de referència
|
73
70
|
rich_text_editor_in_public_views: Habilitar l'editor de text enriquit
|
@@ -79,7 +76,6 @@ ca:
|
|
79
76
|
tos_version: Versió dels Termes de Servei
|
80
77
|
twitter_handler: Nom d'usuària de Twitter
|
81
78
|
user_groups_enabled: Habilitar grups
|
82
|
-
user_name: Àlies
|
83
79
|
warning_color: Avís
|
84
80
|
welcome_notification_body: Cos de la notificació de benvinguda
|
85
81
|
welcome_notification_subject: Assumpte de la notificació de benvinguda
|
@@ -95,6 +91,8 @@ ca:
|
|
95
91
|
name: Nom
|
96
92
|
organization: Organització
|
97
93
|
plural: Plural
|
94
|
+
settings:
|
95
|
+
scope_id: Àmbit
|
98
96
|
static_page:
|
99
97
|
changed_notably: S'han produït canvis notables.
|
100
98
|
content: Contingut
|
@@ -112,10 +110,6 @@ ca:
|
|
112
110
|
file: Fitxer
|
113
111
|
errors:
|
114
112
|
models:
|
115
|
-
oauth_application:
|
116
|
-
attributes:
|
117
|
-
redirect_uri:
|
118
|
-
must_be_ssl: L'URL de redirecció ha de ser SSL
|
119
113
|
organization:
|
120
114
|
attributes:
|
121
115
|
official_img_footer:
|
@@ -147,6 +141,7 @@ ca:
|
|
147
141
|
per_page: Per pàgina
|
148
142
|
permissions: Permisos
|
149
143
|
reject: Rebutjar
|
144
|
+
share: Compartir
|
150
145
|
verify: Verificar
|
151
146
|
admin_terms_of_use:
|
152
147
|
accept:
|
@@ -274,6 +269,7 @@ ca:
|
|
274
269
|
headers:
|
275
270
|
actions: Accions
|
276
271
|
name: Nom del component
|
272
|
+
scope: Àmbit del component
|
277
273
|
type: Tipus de component
|
278
274
|
new:
|
279
275
|
add: Afegeix un component
|
@@ -292,6 +288,11 @@ ca:
|
|
292
288
|
welcome: Benvinguda al tauler d'administració de Decidim.
|
293
289
|
exports:
|
294
290
|
export_as: "%{name} com a %{export_format}"
|
291
|
+
formats:
|
292
|
+
CSV: CSV
|
293
|
+
Excel: Excel
|
294
|
+
FormPDF: PDF
|
295
|
+
JSON: JSON
|
295
296
|
notice: La teva exportació està actualment en curs. Rebràs un correu electrònic quan hagi finalitzat.
|
296
297
|
filters:
|
297
298
|
category_id_eq:
|
@@ -318,6 +319,8 @@ ca:
|
|
318
319
|
search_placeholder:
|
319
320
|
name_or_nickname_or_email_cont: Buscar %{collection} per correu electrònic, nom o àlies.
|
320
321
|
title_cont: Buscar %{collection} per títol.
|
322
|
+
state_eq:
|
323
|
+
label: Estat
|
321
324
|
help_sections:
|
322
325
|
error: S'ha produït un error en actualitzar les seccions d'ajuda
|
323
326
|
form:
|
@@ -380,7 +383,6 @@ ca:
|
|
380
383
|
homepage: Pàgina d'inici
|
381
384
|
impersonations: Impersonacions
|
382
385
|
newsletters: Butlletins
|
383
|
-
oauth_applications: Aplicacions OAuth
|
384
386
|
participants: Participants
|
385
387
|
scope_types: Tipus d'àmbit
|
386
388
|
scopes: Àmbits
|
@@ -388,6 +390,9 @@ ca:
|
|
388
390
|
static_pages: Pàgines
|
389
391
|
user_groups: Grups
|
390
392
|
users: Participants
|
393
|
+
metrics:
|
394
|
+
metrics:
|
395
|
+
see_more_metrics: Veure més mètriques
|
391
396
|
models:
|
392
397
|
area:
|
393
398
|
fields:
|
@@ -424,11 +429,6 @@ ca:
|
|
424
429
|
sent_to: Enviat a
|
425
430
|
subject: Assumpte
|
426
431
|
name: Butlletí
|
427
|
-
oauth_application:
|
428
|
-
fields:
|
429
|
-
created_at: Creat el
|
430
|
-
name: Nom
|
431
|
-
name: Aplicació OAuth
|
432
432
|
participatory_space_private_user:
|
433
433
|
name: Participant d'espai de participació privat
|
434
434
|
scope:
|
@@ -439,6 +439,14 @@ ca:
|
|
439
439
|
fields:
|
440
440
|
name: Nom
|
441
441
|
plural: Plural
|
442
|
+
share_token:
|
443
|
+
fields:
|
444
|
+
created_at: Creat el
|
445
|
+
expires_at: Caduca el
|
446
|
+
last_used_at: Darrer cop que es va fer servir
|
447
|
+
times_used: Cops utilitzat
|
448
|
+
token: Token
|
449
|
+
user: Creat per
|
442
450
|
static_page:
|
443
451
|
fields:
|
444
452
|
created_at: Data de creació
|
@@ -471,6 +479,14 @@ ca:
|
|
471
479
|
does_not_belong: No pertany
|
472
480
|
offensive: Ofensiu
|
473
481
|
spam: Contingut no desitjat
|
482
|
+
newsletter_templates:
|
483
|
+
index:
|
484
|
+
preview_template: Previsualitzar
|
485
|
+
title: Plantilles per al butlletí
|
486
|
+
use_template: Utilitzar aquesta plantilla
|
487
|
+
show:
|
488
|
+
preview: 'Previsualitzar la plantilla: %{template_name}'
|
489
|
+
use_template: Utilitzar aquesta plantilla
|
474
490
|
newsletters:
|
475
491
|
create:
|
476
492
|
error: S'ha produït un error en crear aquest butlletí.
|
@@ -484,8 +500,6 @@ ca:
|
|
484
500
|
edit:
|
485
501
|
save_and_preview: Desar i vista prèvia
|
486
502
|
title: Editar butlletí
|
487
|
-
form:
|
488
|
-
interpolations_hint: 'Pista: Pots utilitzar "%{name}" en qualsevol part del cos o assumpte i serà reemplaçat pel nom del destinatari.'
|
489
503
|
index:
|
490
504
|
all: totes
|
491
505
|
all_users: 'Totes les participants '
|
@@ -529,25 +543,6 @@ ca:
|
|
529
543
|
update:
|
530
544
|
error: S'ha produït un error en actualitzar aquest butlletí.
|
531
545
|
success: Butlletí actualitzat correctament. Si us plau, revisa'l abans d'enviar-lo.
|
532
|
-
oauth_applications:
|
533
|
-
create:
|
534
|
-
error: S'ha produït un error en crear aquesta aplicació.
|
535
|
-
success: L'aplicació s'ha creat correctament.
|
536
|
-
destroy:
|
537
|
-
error: S'ha produït un error en eliminar aquesta aplicació.
|
538
|
-
success: S'ha eliminat l'aplicació correctament.
|
539
|
-
edit:
|
540
|
-
save: Desa
|
541
|
-
title: Edita l'aplicació
|
542
|
-
index:
|
543
|
-
confirm_delete: Estàs segura que vols eliminar aquesta aplicació?
|
544
|
-
title: Aplicacions OAuth
|
545
|
-
new:
|
546
|
-
save: Desa
|
547
|
-
title: Nova aplicació
|
548
|
-
update:
|
549
|
-
error: S'ha produït un error en actualitzar aquesta aplicació.
|
550
|
-
success: S'ha actualitzat l'aplicació correctament.
|
551
546
|
officializations:
|
552
547
|
create:
|
553
548
|
success: La participant s'ha oficialitzat correctament
|
@@ -563,12 +558,21 @@ ca:
|
|
563
558
|
officialize: Oficialitza
|
564
559
|
officialized: Oficialitzada
|
565
560
|
reofficialize: Torna a oficialitzar
|
561
|
+
show_email: Mostra l'adreça de correu
|
566
562
|
status: Estat
|
567
563
|
unofficialize: Des-oficialitzar
|
568
564
|
new:
|
569
565
|
badge: Insígnia d'oficialització
|
570
566
|
officialize: Oficialitza
|
571
567
|
title: Oficialitza la participant "%{name}"
|
568
|
+
show_email_modal:
|
569
|
+
close_modal: Tanca el modal
|
570
|
+
description: Si necessites contactar a una participant directament pots clicar al botó Mostra per veure la seva adreça de correu electrònic. Aquesta acció s'auditarà.
|
571
|
+
email_address: Adreça de correu electrònic
|
572
|
+
full_name: Nom complet
|
573
|
+
hidden: ocult
|
574
|
+
show: Mostra
|
575
|
+
title: Mostra l'adreça de correu electrònic de la participant
|
572
576
|
organization:
|
573
577
|
edit:
|
574
578
|
title: Edita organització
|
@@ -589,13 +593,16 @@ ca:
|
|
589
593
|
edit:
|
590
594
|
update: Actualitzar
|
591
595
|
form:
|
592
|
-
|
596
|
+
colors:
|
597
|
+
colors_title: Colors de l'organització
|
598
|
+
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ó.
|
593
599
|
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ó principal es mostra a la pàgina d''inici entre el text de benvinguda i la descripció. Exemple: %{url}'
|
594
600
|
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ó.
|
595
|
-
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ó.
|
596
601
|
homepage_appearance_title: Edita l'aparença de la pàgina d'inici
|
597
602
|
homepage_highlighted_content_banner_title: Banner de contingut ressaltat
|
598
|
-
|
603
|
+
images:
|
604
|
+
layout_appearance_title: Edita l'aparença del disseny global
|
605
|
+
preview: Previsualitzar
|
599
606
|
omnipresent_banner_appearance_title: Edita banner omnipresent
|
600
607
|
organization_homepage:
|
601
608
|
edit:
|
@@ -622,7 +629,7 @@ ca:
|
|
622
629
|
invalid: S'ha produït un error en llegir el fitxer CSV.
|
623
630
|
success: Arxiu CSV carregat correctament, s'està enviant un missatge de correu electrònic d'invitació als participants. Pot tardar una mica.
|
624
631
|
new:
|
625
|
-
explanation: Carrega el teu arxiu CSV. Ha de tenir dues columnes amb l'adreça de correu electrònic a la primera columna i el nom a la segona (adreça electrònica, nom) dels usuaris que vulguis afegir a l'espai de participació, sense capçaleres.
|
632
|
+
explanation: 'Carrega el teu arxiu CSV. Ha de tenir dues columnes amb l''adreça de correu electrònic a la primera columna i el nom a la segona (adreça electrònica, nom) dels usuaris que vulguis afegir a l''espai de participació, sense capçaleres. Evita emprar caràcter invàlids com `<>?%&^*#@()[]=+:;"{}\|` al nom d''usuari.'
|
626
633
|
title: Puja el fitxer CSV
|
627
634
|
upload: Carrega
|
628
635
|
resource_permissions:
|
@@ -631,6 +638,10 @@ ca:
|
|
631
638
|
title: Edita els permisos
|
632
639
|
update:
|
633
640
|
success: Els permisos s'han actualitzat correctament.
|
641
|
+
resources:
|
642
|
+
index:
|
643
|
+
headers:
|
644
|
+
scope: Àmbit
|
634
645
|
scope_types:
|
635
646
|
create:
|
636
647
|
error: S'ha produït un error en crear un nou tipus d'àmbit.
|
@@ -662,6 +673,23 @@ ca:
|
|
662
673
|
update:
|
663
674
|
error: S'ha produït un error en actualitzar aquest àmbit.
|
664
675
|
success: Àmbit actualitzat correctament
|
676
|
+
share_tokens:
|
677
|
+
actions:
|
678
|
+
confirm_destroy: Segur que vols eliminar aquest token?
|
679
|
+
destroy: Eliminar
|
680
|
+
share: Compartir
|
681
|
+
destroy:
|
682
|
+
error: S'ha produït un error en eliminar aquest token.
|
683
|
+
success: El token s'ha eliminat correctament.
|
684
|
+
share_tokens:
|
685
|
+
empty: No hi ha tokens actius
|
686
|
+
help: Aquests tokens s'utilitzen per a compartir públicament aquest recurs no publicat a qualsevol usuari. S'ocultaran quan es publiqui el recurs. Fes clic en la icona de compartir el token per a visitar la URL compartible.
|
687
|
+
title: Compartir tokens
|
688
|
+
shared:
|
689
|
+
gallery:
|
690
|
+
add_images: Afegir imatges
|
691
|
+
delete_image: Esborrar la imatge
|
692
|
+
gallery_legend: Afegir una galeria d'imatges (opcional)
|
665
693
|
static_page_topics:
|
666
694
|
create:
|
667
695
|
error: S'ha produït un error en crear un tema nou.
|
@@ -713,10 +741,12 @@ ca:
|
|
713
741
|
dashboard: Tauler de control
|
714
742
|
impersonatable_users: Participants que es poden gestionar
|
715
743
|
impersonations: Gestió de participants
|
744
|
+
metrics: Mètriques
|
716
745
|
participants: Participants
|
717
746
|
scope_types: Tipus d'àmbit
|
718
747
|
scopes: Àmbits
|
719
748
|
static_pages: Pàgines
|
749
|
+
statistics: Activitat
|
720
750
|
user_groups: Grups
|
721
751
|
users: Participants
|
722
752
|
user_group:
|
@@ -762,6 +792,14 @@ ca:
|
|
762
792
|
new:
|
763
793
|
create: Convidar
|
764
794
|
title: Convidar una participant com a administradora
|
795
|
+
users_statistics:
|
796
|
+
users_count:
|
797
|
+
admins: Administradores
|
798
|
+
last_day: El darrer dia
|
799
|
+
last_month: El darrer mes
|
800
|
+
last_week: La darrera setmana
|
801
|
+
no_users_count_statistics_yet: Encara no hi ha estadístiques de recompte d’usuàries
|
802
|
+
participants: Participants
|
765
803
|
view_public_page: Mostra la pàgina pública
|
766
804
|
forms:
|
767
805
|
errors:
|