decidim-admin 0.26.1 → 0.26.2
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of decidim-admin might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/app/controllers/decidim/admin/conflicts_controller.rb +3 -1
- data/app/helpers/decidim/admin/newsletters_helper.rb +1 -1
- data/app/queries/decidim/admin/newsletter_recipients.rb +4 -3
- data/app/views/decidim/admin/organization_appearance/form/_colors.html.erb +6 -6
- data/config/locales/ar.yml +163 -25
- data/config/locales/ca.yml +6 -2
- data/config/locales/cs.yml +5 -1
- data/config/locales/de.yml +9 -0
- data/config/locales/el.yml +0 -1
- data/config/locales/en.yml +1 -1
- data/config/locales/es-MX.yml +5 -1
- data/config/locales/es-PY.yml +5 -1
- data/config/locales/es.yml +6 -2
- data/config/locales/eu.yml +0 -1
- data/config/locales/fi-plain.yml +5 -1
- data/config/locales/fi.yml +5 -1
- data/config/locales/fr-CA.yml +4 -0
- data/config/locales/fr.yml +4 -0
- data/config/locales/ga-IE.yml +0 -1
- data/config/locales/gl.yml +0 -1
- data/config/locales/hu.yml +0 -1
- data/config/locales/it.yml +0 -1
- data/config/locales/ja.yml +5 -1
- data/config/locales/lb.yml +0 -1
- data/config/locales/lt.yml +101 -0
- data/config/locales/nl.yml +0 -1
- data/config/locales/no.yml +1 -2
- data/config/locales/pl.yml +6 -1
- data/config/locales/pt-BR.yml +0 -1
- data/config/locales/pt.yml +0 -1
- data/config/locales/ro-RO.yml +0 -1
- data/config/locales/sv.yml +9 -6
- data/config/locales/tr-TR.yml +0 -1
- data/lib/decidim/admin/version.rb +1 -1
- metadata +8 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 97fdadb0f95fb35e376ce50f1993b01bacd1e48cd38c26833f3c05363dbe92dd
|
4
|
+
data.tar.gz: 84c37c9fd8a1324d726a51a825226525b649f48662fc2a2aea1db4a94b113712
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c1c93d628c2ad30b4638744ff0719df7272af2e86c4e69da2e0b06ce3d1618bb93a9cd0c55929ae412b5a2564f335e9256bd5828b043e86fbc87eec318005173
|
7
|
+
data.tar.gz: 1d5dac5589f5e83dafab2850cf35daf48af6de7183ae9ce4a1e80c249afe29038091f643e1b31f7c868a92463a840f16314b3e859b3a9f6fb4324511f21f8c36
|
@@ -6,7 +6,9 @@ module Decidim
|
|
6
6
|
layout "decidim/admin/users"
|
7
7
|
|
8
8
|
def index
|
9
|
-
@conflicts = Decidim::Verifications::Conflict.
|
9
|
+
@conflicts = Decidim::Verifications::Conflict.joins(:current_user).where(
|
10
|
+
decidim_users: { decidim_organization_id: current_organization.id }
|
11
|
+
)
|
10
12
|
end
|
11
13
|
|
12
14
|
def edit
|
@@ -102,7 +102,7 @@ module Decidim
|
|
102
102
|
.find_participatory_space_manifest(manifest_name)
|
103
103
|
.participatory_spaces.call(current_organization)
|
104
104
|
.published
|
105
|
-
.sort_by { |space| [space.closed? ? 1 : 0, space.title[current_locale]] }
|
105
|
+
.sort_by { |space| [space.try(:closed?) ? 1 : 0, space.title[current_locale]] }
|
106
106
|
end
|
107
107
|
|
108
108
|
def spaces_user_can_admin
|
@@ -51,11 +51,12 @@ module Decidim
|
|
51
51
|
@spaces ||= @form.participatory_space_types.map do |type|
|
52
52
|
next if type.ids.blank?
|
53
53
|
|
54
|
-
object_class =
|
54
|
+
object_class = Decidim.participatory_space_registry.find(type.manifest_name).model_class_name.constantize
|
55
|
+
|
55
56
|
if type.ids.include?("all")
|
56
|
-
object_class.
|
57
|
+
object_class.where(organization: @organization)
|
57
58
|
else
|
58
|
-
object_class.
|
59
|
+
object_class.where(id: type.ids.reject(&:blank?))
|
59
60
|
end
|
60
61
|
end.flatten.compact
|
61
62
|
end
|
@@ -2,13 +2,13 @@
|
|
2
2
|
<div class="card-divider">
|
3
3
|
<h2 class="card-title"><%= t ".colors_title" %></h2>
|
4
4
|
</div>
|
5
|
-
<div class="callout warning">
|
6
|
-
<p>
|
7
|
-
<%= icon "warning" %>
|
8
|
-
<%= t ".colors_warning_html", link: "https://webaim.org/resources/contrastchecker" %>
|
9
|
-
</p>
|
10
|
-
</div>
|
11
5
|
<div class="card-section">
|
6
|
+
<div class="callout warning">
|
7
|
+
<p>
|
8
|
+
<%= icon "warning" %>
|
9
|
+
<%= t ".colors_warning_html", link: "https://webaim.org/resources/contrastchecker" %>
|
10
|
+
</p>
|
11
|
+
</div>
|
12
12
|
<div class="organization-colors">
|
13
13
|
<%= form.color_field :primary_color, value: current_organization.colors["primary"] %>
|
14
14
|
<%= form.color_field :secondary_color, value: current_organization.colors["secondary"] %>
|
data/config/locales/ar.yml
CHANGED
@@ -8,11 +8,12 @@ ar:
|
|
8
8
|
area_type:
|
9
9
|
name: الاسم
|
10
10
|
organization: المنظمة
|
11
|
-
plural: الجمع
|
11
|
+
plural: صيغة الجمع
|
12
12
|
attachment:
|
13
13
|
attachment_collection_id: المجلد
|
14
14
|
description: الوصف
|
15
15
|
file: ملف
|
16
|
+
title: المُرفق أو اسم الصورة
|
16
17
|
attachment_collection:
|
17
18
|
description: الوصف
|
18
19
|
name: اسم
|
@@ -23,23 +24,31 @@ ar:
|
|
23
24
|
component:
|
24
25
|
name: اسم
|
25
26
|
published_at: نشرت في
|
27
|
+
weight: موضع الطلب
|
26
28
|
id: هوية شخصية
|
29
|
+
import:
|
30
|
+
user_group_id: إنشاء واردات ك
|
27
31
|
newsletter:
|
28
32
|
body: المحتوى
|
29
33
|
subject: الموضوع
|
30
34
|
organization:
|
35
|
+
admin_terms_of_use_body: نص شروط الاستخدام للمدير
|
31
36
|
alert_color: تنبيه
|
37
|
+
available_authorizations: التراخيص المتاحة
|
32
38
|
badges_enabled: تمكين الشارات
|
39
|
+
comments_max_length: الحد الأقصى لطول التعليقات (اترك 0 لاستعمال للقيمة الافتراضية)
|
33
40
|
cta_button_path: دعوة إلى العمل مسار زر
|
34
41
|
cta_button_text: نص زر Call To Action
|
35
42
|
customize_welcome_notification: تخصيص إشعار الترحيب
|
36
43
|
default_locale: اللغة الافتراضية
|
37
44
|
description: الوصف
|
38
45
|
enable_omnipresent_banner: عرض لافتة في كل مكان
|
46
|
+
enable_participatory_space_filters: تفعيل أختيارات فرز الفضاء التشاركي
|
39
47
|
facebook_handler: مُعرّف حساب فيسبوك
|
40
48
|
favicon: أيقونة
|
41
49
|
github_handler: مُعرّف حساب غِت هَب
|
42
50
|
header_snippets: قصاصات رأس
|
51
|
+
highlight_color: تظليل
|
43
52
|
highlighted_content_banner_action_subtitle: نص زر الإجراء
|
44
53
|
highlighted_content_banner_action_title: عنوان زر الإجراء
|
45
54
|
highlighted_content_banner_action_url: عنوان URL لزر الإجراء
|
@@ -47,8 +56,12 @@ ar:
|
|
47
56
|
highlighted_content_banner_image: الصورة
|
48
57
|
highlighted_content_banner_short_description: وصف مختصر
|
49
58
|
highlighted_content_banner_title: العنوان
|
59
|
+
host: المضيف
|
50
60
|
instagram_handler: مُعرّف حساب استجرام
|
51
61
|
logo: الشعار
|
62
|
+
machine_translation_display_priority: أولوية عرض الترجمة الآلية
|
63
|
+
machine_translation_display_priority_original: النص الأصلي أولاً
|
64
|
+
machine_translation_display_priority_translation: النص المترجم أولاً
|
52
65
|
name: اسم
|
53
66
|
official_img_footer: تذييل الشعار الرسمي
|
54
67
|
official_img_header: رأس الشعار الرسمي
|
@@ -56,11 +69,14 @@ ar:
|
|
56
69
|
omnipresent_banner_short_description: وصف قصير
|
57
70
|
omnipresent_banner_title: العنوان
|
58
71
|
omnipresent_banner_url: العنوان الشبكي
|
72
|
+
organization_admin_email: بريد مشرف المنظمة
|
73
|
+
organization_admin_name: اسم مشرف المنظمة
|
59
74
|
organization_locales: لغات المنظمة
|
60
75
|
primary_color: ابتدائي
|
61
76
|
reference_prefix: بادئة المرجع
|
62
77
|
rich_text_editor_in_public_views: إتاحة محرر النص الغني للمشارِكين
|
63
78
|
secondary_color: ثانوي
|
79
|
+
secondary_hosts: المستضيفين الثانويين
|
64
80
|
send_welcome_notification: إرسال إشعار بالترحيب
|
65
81
|
success_color: نجاح
|
66
82
|
time_zone: المنطقة الزمنية
|
@@ -76,12 +92,14 @@ ar:
|
|
76
92
|
name: الاسم
|
77
93
|
organization: المنظمة
|
78
94
|
parent_id: الأبوين
|
79
|
-
scope_type: نوع
|
80
|
-
scope_type_id: نوع
|
95
|
+
scope_type: نوع المجال
|
96
|
+
scope_type_id: نوع المجال
|
81
97
|
scope_type:
|
82
98
|
name: الاسم
|
83
99
|
organization: المنظمة
|
84
100
|
plural: جمع
|
101
|
+
settings:
|
102
|
+
scope_id: المجال
|
85
103
|
static_page:
|
86
104
|
changed_notably: كانت هناك تغييرات ملحوظة.
|
87
105
|
content: المحتوى
|
@@ -134,6 +152,8 @@ ar:
|
|
134
152
|
permissions: تصريحات
|
135
153
|
reject: رفض
|
136
154
|
share: مشاركة
|
155
|
+
user:
|
156
|
+
new: مستخدم جديد
|
137
157
|
verify: التحقق
|
138
158
|
admin_terms_of_use:
|
139
159
|
accept:
|
@@ -259,6 +279,7 @@ ar:
|
|
259
279
|
headers:
|
260
280
|
actions: أفعال
|
261
281
|
name: اسم المكون
|
282
|
+
scope: مجال المكون
|
262
283
|
type: نوع المكون
|
263
284
|
new:
|
264
285
|
add: إضافة عنصر
|
@@ -274,10 +295,16 @@ ar:
|
|
274
295
|
conflicts:
|
275
296
|
attempts: المحاولات
|
276
297
|
'false': 'لا'
|
298
|
+
managed_user_name: المستخدم المُدار
|
299
|
+
solved: تم حلها
|
300
|
+
title: تضارب التحقق
|
277
301
|
transfer:
|
278
302
|
email: البريد الإلكتروني
|
303
|
+
error: كانت هناك مشكلة في نقل المشارك الحالي إلى مشارك مُدار.
|
279
304
|
name: الإسم
|
280
305
|
reason: السبب
|
306
|
+
success: قد اكتمل النقل الحالي بنجاح.
|
307
|
+
title: نقل
|
281
308
|
'true': 'نعم'
|
282
309
|
user_name: المستخدم
|
283
310
|
dashboard:
|
@@ -286,27 +313,58 @@ ar:
|
|
286
313
|
welcome: مرحبًا بكم في لوحة إدارة Decidim.
|
287
314
|
domain_whitelist:
|
288
315
|
form:
|
289
|
-
domain_too_short:
|
316
|
+
domain_too_short: نطاق الدومين قصير جداً
|
317
|
+
update:
|
318
|
+
error: فشل تحديث القائمة النطاقات المسموحة
|
319
|
+
success: تم تحديث النطاقات المسموحة بنجاح
|
290
320
|
exports:
|
291
321
|
export_as: "%{name} ك %{export_format}"
|
322
|
+
formats:
|
323
|
+
CSV: ملف (CSV)
|
324
|
+
Excel: مِلَفّ إكسيل Excel
|
325
|
+
FormPDF: ملف (PDF)
|
326
|
+
JSON: ملفات بصيغة (JSON)
|
292
327
|
notice: التصدير الخاص بك قيد التقدم حاليًا. ستتلقى بريدًا إلكترونيًا عند اكتماله.
|
293
328
|
filters:
|
294
329
|
category_id_eq:
|
295
330
|
label: الفئة
|
296
331
|
filter_label: تصفية
|
297
332
|
invitation_accepted_at_present:
|
333
|
+
label: تم قبول الدعوة
|
298
334
|
values:
|
299
335
|
'false': 'لا'
|
300
336
|
'true': 'نعم'
|
301
337
|
last_sign_in_at_present:
|
338
|
+
label: لم يتم تسجيل دخولهم
|
302
339
|
values:
|
303
340
|
'false': 'لا'
|
304
341
|
'true': 'نعم'
|
342
|
+
moderated_users:
|
343
|
+
reports_reason_eq:
|
344
|
+
label: سبب الابلاغ
|
345
|
+
values:
|
346
|
+
does_not_belong: لا ينتمي
|
347
|
+
offensive: مسيء
|
348
|
+
spam: محتوى مزعج و احتيال
|
349
|
+
moderations:
|
350
|
+
reportable_type_string_eq:
|
351
|
+
label: النوع
|
305
352
|
officialized_at_null:
|
306
353
|
label: حالة
|
307
354
|
values:
|
308
355
|
'false': Officialized
|
309
356
|
'true': غير رسمي
|
357
|
+
participatory_space_private_users:
|
358
|
+
user_invitation_accepted_at_not_null:
|
359
|
+
label: تم قبول الدعوة
|
360
|
+
values:
|
361
|
+
'false': لم يتم القبول
|
362
|
+
'true': تم قبوله
|
363
|
+
user_invitation_sent_at_not_null:
|
364
|
+
label: تم إرسال الدعوة
|
365
|
+
values:
|
366
|
+
'false': لم يتم الارسال
|
367
|
+
'true': تم الإرسال
|
310
368
|
private_space_eq:
|
311
369
|
label: خاص
|
312
370
|
values:
|
@@ -318,11 +376,28 @@ ar:
|
|
318
376
|
'false': تم نشره
|
319
377
|
'true': لم يُنشَر
|
320
378
|
scope_id_eq:
|
321
|
-
label:
|
379
|
+
label: المجال
|
322
380
|
search_label: بحث
|
323
381
|
search_placeholder:
|
324
382
|
name_or_nickname_or_email_cont: البحث عن %{collection} بحسب عنوان البريد الإكتروني أو الإسم أو الإسم المستعار.
|
383
|
+
report_count_eq: عدد التقارير يساوى
|
384
|
+
reported_id_string_or_reported_content_cont: البحث عن %{collection} بواسطة رقم-مُعرف أو بالمحتوى.
|
325
385
|
title_cont: البحث عن %{collection} بحسب العنوان.
|
386
|
+
user_name_or_user_email_cont: البحث عن %{collection} حسب الاسم أو البريد الإلكتروني.
|
387
|
+
user_name_or_user_nickname_or_user_email_cont: البحث عن %{collection} بحسب عنوان البريد الإكتروني أو الإسم أو الإسم المستعار.
|
388
|
+
state_eq:
|
389
|
+
label: الحالة
|
390
|
+
values:
|
391
|
+
all: الكل
|
392
|
+
pending: قيد الانتظار
|
393
|
+
rejected: تم رفضه
|
394
|
+
verified: تم التحقق
|
395
|
+
forms:
|
396
|
+
file_help:
|
397
|
+
import:
|
398
|
+
explanation: 'إرشادات الملف:'
|
399
|
+
message_1: ملفات CSV, JSON و Excel (.xlsx) مدعومة
|
400
|
+
message_2: بالنسبة لملفات CSV ، يجب أن يكون هناك فاصل بين الأعمدة بفاصلة منقوطة (";")
|
326
401
|
help_sections:
|
327
402
|
error: حدثت مشكلة أثناء تحديث أقسام المساعدة
|
328
403
|
form:
|
@@ -353,7 +428,7 @@ ar:
|
|
353
428
|
error: كانت هناك مشكلة في إدارة المشارك.
|
354
429
|
success: تم إنشاء المشارك المُدار بنجاح.
|
355
430
|
form:
|
356
|
-
authorization_method: طريقة
|
431
|
+
authorization_method: طريقة الترخيص
|
357
432
|
name: اسم
|
358
433
|
reason: السبب
|
359
434
|
new:
|
@@ -363,11 +438,23 @@ ar:
|
|
363
438
|
impersonate_new_managed_user: إدارة مشارك جديد
|
364
439
|
imports:
|
365
440
|
and: و
|
441
|
+
data_errors:
|
442
|
+
duplicate_headers:
|
443
|
+
detail: الرجاء التحقق من أن المِلَفّ يحتوي على أعمدة أو رؤوس مطلوبه لمرة واحدة فقط.
|
444
|
+
missing_headers:
|
445
|
+
detail: برجاء التحقق من أن الملف يحتوي على الأعمدة المطلوبة.
|
366
446
|
new:
|
447
|
+
accepted_mime_types:
|
448
|
+
csv: ملف (CSV)
|
449
|
+
json: ملفات بصيغة (JSON)
|
450
|
+
xlsx: ملف إكسل (.xlsx)
|
367
451
|
actions:
|
368
452
|
back: العودة
|
369
453
|
download_example: تنزيل المثال
|
454
|
+
download_example_format: مثال كـ %{name}
|
455
|
+
file_legend: إضافة ملف استيراد سيتم تحليله.
|
370
456
|
import: استيراد
|
457
|
+
notice: "تم استيراد %{count} %{resource_name} بنجاح"
|
371
458
|
logs:
|
372
459
|
logs_list:
|
373
460
|
no_logs_yet: لا توجد سجلات حتى الآن
|
@@ -393,8 +480,8 @@ ar:
|
|
393
480
|
impersonations: التقليد
|
394
481
|
newsletters: الرسائل الإخبارية
|
395
482
|
participants: المشاركون
|
396
|
-
scope_types: أنواع
|
397
|
-
scopes:
|
483
|
+
scope_types: أنواع المجال
|
484
|
+
scopes: مجالات
|
398
485
|
settings: الإعدادات
|
399
486
|
static_pages: صفحات
|
400
487
|
user_groups: المجموعات
|
@@ -440,11 +527,16 @@ ar:
|
|
440
527
|
scope:
|
441
528
|
fields:
|
442
529
|
name: اسم
|
443
|
-
scope_type: نوع
|
530
|
+
scope_type: نوع المجال
|
444
531
|
scope_type:
|
445
532
|
fields:
|
446
533
|
name: اسم
|
447
534
|
plural: جمع
|
535
|
+
share_token:
|
536
|
+
fields:
|
537
|
+
expires_at: تنتهي صلاحيته في
|
538
|
+
token: رمز التشفير - Token
|
539
|
+
user: تم الإنشاء بواسطة
|
448
540
|
static_page:
|
449
541
|
fields:
|
450
542
|
created_at: أنشئت في
|
@@ -472,6 +564,7 @@ ar:
|
|
472
564
|
moderated_users:
|
473
565
|
index:
|
474
566
|
actions:
|
567
|
+
block: حظر مستخدم
|
475
568
|
title: الإجراءات
|
476
569
|
unblock: إلغاء حظر المستخدم
|
477
570
|
unreport: إلغاء التبليغ
|
@@ -481,7 +574,10 @@ ar:
|
|
481
574
|
reports: عدد الإبلاغات
|
482
575
|
report:
|
483
576
|
reasons:
|
577
|
+
offensive: مسيء
|
484
578
|
spam: مزعج
|
579
|
+
tabs:
|
580
|
+
blocked: محظور
|
485
581
|
moderations:
|
486
582
|
index:
|
487
583
|
title: الإشراف
|
@@ -493,6 +589,8 @@ ar:
|
|
493
589
|
reports:
|
494
590
|
index:
|
495
591
|
content_original_language: لغة المحتوى الأصلية
|
592
|
+
participatory_space: المساحة التشاركية
|
593
|
+
reported_content: محتوى تم الإبلاغ عنه
|
496
594
|
show:
|
497
595
|
report_reason: السبب
|
498
596
|
newsletter_templates:
|
@@ -517,7 +615,7 @@ ar:
|
|
517
615
|
confirm_delete: هل أنت متأكد من أنك تريد حذف هذه الرسالة الإخبارية؟
|
518
616
|
followers: 'مُتابِعون '
|
519
617
|
has_been_sent_to: 'تم إرسالها إلى: '
|
520
|
-
no_scopes: لا
|
618
|
+
no_scopes: لا توجد مجالات
|
521
619
|
not_sent: غير مرسَلة
|
522
620
|
participants: 'مشاركون '
|
523
621
|
segmented_to: 'مقسمه إلى %{subject}: '
|
@@ -531,16 +629,26 @@ ar:
|
|
531
629
|
confirm_deliver: هل أنت متأكد من أنك تريد تسليم هذه الرسالة الإخبارية؟ لا يمكن التراجع عن هذا الإجراء.
|
532
630
|
deliver: تسليم النشرة الإخبارية
|
533
631
|
none: لا شَيْء
|
632
|
+
scopes_help: إرسال النشرة الإخبارية للمستخدمين الذين لديهم أي من المجالات المحددة تم تفعيله في إعدادات "اهتماماتي" لحسابهم.
|
633
|
+
select_scopes: أختر للمستخدمين الذين فعلوا أي مجال محدد في إعدادات أهتماماتي لحساباتهم.
|
534
634
|
send_to_all_users: إرسال إلى كافة المستخدمين
|
535
635
|
send_to_followers: إرسال إلى المتابِعين
|
536
636
|
send_to_participants: إرسال إلى المشاركين
|
637
|
+
title: حدد المستلمين للإرسال اليهم
|
638
|
+
warning: "<strong>تنبيه:</strong> سيتم إرسال هذه النشرة الإخبارية فقط للمستخدمين الذين فعلوا <em>أريد تلقي النشرات الإخبارية</em> في إعدادات الإشعارات الخاصة بهم."
|
639
|
+
send:
|
640
|
+
no_recipients: لا يوجد مستلمين لهذا التحديد
|
537
641
|
show:
|
538
642
|
preview: معاينة
|
643
|
+
select_recipients_to_deliver: حدد المستلمين للإرسال اليهم
|
539
644
|
subject: الموضوع
|
540
645
|
update:
|
541
646
|
error: حدثت مشكلة أثناء تحديث هذه الرسالة الإخبارية.
|
542
647
|
success: تم تحديث النشرة الإخبارية بنجاح. يرجى مراجعته قبل الإرسال.
|
543
648
|
officializations:
|
649
|
+
block:
|
650
|
+
error: حدث خطأ خلال حظر المشارك
|
651
|
+
success: تم حظر المشارك بنجاح
|
544
652
|
create:
|
545
653
|
success: مشارك رسمي بنجاح
|
546
654
|
destroy:
|
@@ -548,6 +656,7 @@ ar:
|
|
548
656
|
index:
|
549
657
|
actions: أفعال
|
550
658
|
badge: شارة
|
659
|
+
block: حظر مستخدم
|
551
660
|
created_at: أنشئت في
|
552
661
|
name: اسم
|
553
662
|
nickname: كنية
|
@@ -555,17 +664,26 @@ ar:
|
|
555
664
|
officialize: الصفة الرسمية
|
556
665
|
officialized: Officialized
|
557
666
|
reofficialize: Reofficialize
|
667
|
+
reports: التقارير
|
668
|
+
show_email: إظهار عنوان البريد الإلكتروني
|
558
669
|
status: الحالة
|
670
|
+
unblock: إلغاء حظر المستخدم
|
559
671
|
unofficialize: Unofficialize
|
560
672
|
new:
|
561
673
|
badge: شارة رسمية
|
562
674
|
officialize: الصفة الرسمية
|
563
675
|
title: إضفاء الطابع الرسمي على المشارك "%{name}"
|
564
676
|
show_email_modal:
|
677
|
+
close_modal: اغلاق النموذج
|
678
|
+
description: إذا كنت بحاجة إلى الاتصال بأحد المشاركين مباشرة، يمكنك النقر على زر العرض لرؤية عنوان بريده الإلكتروني. سيتم تسجيل هذا الإجراء.
|
565
679
|
email_address: عنوان البريد الإلكتروني
|
566
680
|
full_name: الاسم الكامل
|
567
681
|
hidden: مخفي
|
568
682
|
show: إظهار
|
683
|
+
title: إظهار عنوان البريد الإلكتروني للمشترك
|
684
|
+
unblock:
|
685
|
+
error: حدث خطأ خلال فك حجب المشارك
|
686
|
+
success: تم إلغاء حظر المشارك بنجاح
|
569
687
|
organization:
|
570
688
|
edit:
|
571
689
|
title: تحرير المنظمة
|
@@ -576,6 +694,7 @@ ar:
|
|
576
694
|
instagram: إينستاجرام
|
577
695
|
social_handlers: التواصل الاجتماعي
|
578
696
|
twitter: تويتر
|
697
|
+
url: عنوان الرابط
|
579
698
|
youtube: يوتيوب
|
580
699
|
update:
|
581
700
|
error: حدثت مشكلة أثناء تحديث هذه المؤسسة.
|
@@ -599,7 +718,9 @@ ar:
|
|
599
718
|
edit:
|
600
719
|
update: تحديث
|
601
720
|
external_domain:
|
721
|
+
down: أسفل
|
602
722
|
remove: إزالة
|
723
|
+
up: أعلى
|
603
724
|
organization_homepage:
|
604
725
|
edit:
|
605
726
|
active_content_blocks: كتل المحتوى النشط
|
@@ -631,37 +752,41 @@ ar:
|
|
631
752
|
title: تعديل الترخيصات
|
632
753
|
update:
|
633
754
|
success: تم تحديث الأذونات بنجاح.
|
755
|
+
resources:
|
756
|
+
index:
|
757
|
+
headers:
|
758
|
+
scope: المجال
|
634
759
|
scope_types:
|
635
760
|
create:
|
636
|
-
error: حدثت مشكلة أثناء إنشاء نوع
|
761
|
+
error: حدثت مشكلة أثناء إنشاء نوع مجال جديد.
|
637
762
|
success: تم إنشاء نوع النطاق بنجاح.
|
638
763
|
destroy:
|
639
|
-
success: نوع
|
764
|
+
success: تم تدمير نوع المجال بنجاح
|
640
765
|
edit:
|
641
|
-
title: تحرير نوع
|
766
|
+
title: تحرير نوع المجال
|
642
767
|
update: تحديث
|
643
768
|
new:
|
644
|
-
create: إنشاء نوع
|
645
|
-
title:
|
769
|
+
create: إنشاء نوع المجال
|
770
|
+
title: مجال جديد
|
646
771
|
update:
|
647
|
-
error: حدثت مشكلة أثناء تحديث نوع
|
648
|
-
success: تم تحديث نوع
|
772
|
+
error: حدثت مشكلة أثناء تحديث نوع المجال هذا.
|
773
|
+
success: تم تحديث نوع المجال بنجاح
|
649
774
|
scopes:
|
650
775
|
create:
|
651
|
-
error: كانت هناك مشكلة في إنشاء
|
776
|
+
error: كانت هناك مشكلة في إنشاء مجال جديد.
|
652
777
|
success: تم إنشاء النطاق بنجاح.
|
653
778
|
destroy:
|
654
|
-
success:
|
779
|
+
success: تم تدمير المجال بنجاح
|
655
780
|
edit:
|
656
|
-
title: تحرير
|
781
|
+
title: تحرير المجال
|
657
782
|
update: تحديث
|
658
783
|
new:
|
659
|
-
create: إنشاء
|
660
|
-
title:
|
661
|
-
no_scopes: لا
|
784
|
+
create: إنشاء مجال
|
785
|
+
title: مجال جديد
|
786
|
+
no_scopes: لا مجالات على هذا المستوى.
|
662
787
|
update:
|
663
788
|
error: حدثت مشكلة أثناء تحديث هذا النطاق.
|
664
|
-
success: تم تحديث
|
789
|
+
success: تم تحديث المجال بنجاح
|
665
790
|
shared:
|
666
791
|
gallery:
|
667
792
|
delete_image: احذف الصورة
|
@@ -718,7 +843,7 @@ ar:
|
|
718
843
|
panel: مدير
|
719
844
|
participants: المشاركين
|
720
845
|
scope_types: أنواع النطاق
|
721
|
-
scopes:
|
846
|
+
scopes: مجالات
|
722
847
|
static_pages: صفحات
|
723
848
|
statistics: النشاط
|
724
849
|
user_groups: المجموعات
|
@@ -767,6 +892,15 @@ ar:
|
|
767
892
|
last_week: الأسبوع الماضي
|
768
893
|
participants: المشاركون
|
769
894
|
view_public_page: عرض الصفحة العامة
|
895
|
+
metrics:
|
896
|
+
blocked_users:
|
897
|
+
title: المستخدمين المحظورين
|
898
|
+
reported_users:
|
899
|
+
object: المستخدمين المبلغ عنهم
|
900
|
+
title: المستخدمون المبلغ عنهم
|
901
|
+
user_reports:
|
902
|
+
object: تقارير المستخدم
|
903
|
+
title: تقارير المستخدم
|
770
904
|
moderations:
|
771
905
|
actions:
|
772
906
|
hidden: مخفي
|
@@ -793,11 +927,13 @@ ar:
|
|
793
927
|
hidden_at: مخبأة في
|
794
928
|
participatory_space: الفضاء التشاركي
|
795
929
|
report_count: عد
|
930
|
+
reportable_type: النوع
|
796
931
|
reported_content_url: تم الإبلاغ عن عنوان URL للمحتوى
|
797
932
|
reports: تقارير
|
798
933
|
visit_url: زيارة العنوان الشبكي
|
799
934
|
report:
|
800
935
|
fields:
|
936
|
+
details: تفاصيل السبب
|
801
937
|
locale: اللغة
|
802
938
|
reason: السبب
|
803
939
|
errors:
|
@@ -806,6 +942,8 @@ ar:
|
|
806
942
|
layouts:
|
807
943
|
decidim:
|
808
944
|
admin:
|
945
|
+
global_moderations:
|
946
|
+
title: مُشرف عام
|
809
947
|
newsletters:
|
810
948
|
title: النشرات الإخبارية
|
811
949
|
settings:
|
data/config/locales/ca.yml
CHANGED
@@ -123,6 +123,10 @@ ca:
|
|
123
123
|
file: Fitxer
|
124
124
|
errors:
|
125
125
|
models:
|
126
|
+
newsletter:
|
127
|
+
attributes:
|
128
|
+
base:
|
129
|
+
at_least_one_space: Selecciona com a mínim un espai de participació
|
126
130
|
organization:
|
127
131
|
attributes:
|
128
132
|
official_img_footer:
|
@@ -501,7 +505,7 @@ ca:
|
|
501
505
|
download_example_format: Exemple de %{name}
|
502
506
|
file_legend: Afegir un arxiu d'importació que serà processat.
|
503
507
|
import: Importar
|
504
|
-
notice: "%{
|
508
|
+
notice: "%{count} %{resource_name} importat correctament"
|
505
509
|
logs:
|
506
510
|
logs_list:
|
507
511
|
no_logs_yet: Encara no hi ha cap registre d'activitat
|
@@ -1038,7 +1042,7 @@ ca:
|
|
1038
1042
|
hidden_at: Data d'ocultació
|
1039
1043
|
participatory_space: Espai de participació
|
1040
1044
|
report_count: Recompte
|
1041
|
-
reportable_id:
|
1045
|
+
reportable_id: ID
|
1042
1046
|
reportable_type: Tipus
|
1043
1047
|
reported_content_url: URL contingut del contingut reportat
|
1044
1048
|
reports: Denúncies
|
data/config/locales/cs.yml
CHANGED
@@ -123,6 +123,10 @@ cs:
|
|
123
123
|
file: Soubor
|
124
124
|
errors:
|
125
125
|
models:
|
126
|
+
newsletter:
|
127
|
+
attributes:
|
128
|
+
base:
|
129
|
+
at_least_one_space: Vyberte alespoň jeden participační prostor
|
126
130
|
organization:
|
127
131
|
attributes:
|
128
132
|
official_img_footer:
|
@@ -1046,7 +1050,7 @@ cs:
|
|
1046
1050
|
hidden_at: Skryté u
|
1047
1051
|
participatory_space: Participativní prostor
|
1048
1052
|
report_count: Spočítat
|
1049
|
-
reportable_id:
|
1053
|
+
reportable_id: ID
|
1050
1054
|
reportable_type: Typ
|
1051
1055
|
reported_content_url: Oznámená adresa URL obsahu
|
1052
1056
|
reports: Zprávy
|
data/config/locales/de.yml
CHANGED
@@ -123,6 +123,10 @@ de:
|
|
123
123
|
file: Datei
|
124
124
|
errors:
|
125
125
|
models:
|
126
|
+
newsletter:
|
127
|
+
attributes:
|
128
|
+
base:
|
129
|
+
at_least_one_space: Wählen Sie mindestens einen partizipativen Bereich aus
|
126
130
|
organization:
|
127
131
|
attributes:
|
128
132
|
official_img_footer:
|
@@ -408,6 +412,7 @@ de:
|
|
408
412
|
search_label: Suche
|
409
413
|
search_placeholder:
|
410
414
|
name_or_nickname_or_email_cont: Suche in %{collection} nach E-Mail, Name oder Benutzername.
|
415
|
+
report_count_eq: Anzahl Meldungen
|
411
416
|
reported_id_string_or_reported_content_cont: Suche %{collection} nach meldbarer Id oder Inhalt.
|
412
417
|
title_cont: In %{collection} nach Titel suchen.
|
413
418
|
user_name_or_user_email_cont: In %{collection} nach Name oder E-Mail suchen.
|
@@ -996,6 +1001,10 @@ de:
|
|
996
1001
|
no_users_count_statistics_yet: Es gibt noch keine Nutzerstatistiken
|
997
1002
|
participants: Teilnehmer
|
998
1003
|
view_public_page: Öffentliche Seite anzeigen
|
1004
|
+
forms:
|
1005
|
+
errors:
|
1006
|
+
impersonate_user:
|
1007
|
+
reason: Sie müssen einen Grund angeben, weshalb Sie sich als nicht-verwalteten Benutzer ausgeben
|
999
1008
|
metrics:
|
1000
1009
|
blocked_users:
|
1001
1010
|
object: blockierte Benutzer
|
data/config/locales/el.yml
CHANGED
@@ -992,7 +992,6 @@ el:
|
|
992
992
|
hidden_at: Αποκρύφτηκε στις
|
993
993
|
participatory_space: Συμμετοχικός χώρος
|
994
994
|
report_count: Πλήθος
|
995
|
-
reportable_id: Αναγνωριστικό ID
|
996
995
|
reportable_type: Τύπος
|
997
996
|
reported_content_url: Διεύθυνση URL περιεχομένου που έχει αναφερθεί
|
998
997
|
reports: Αναφορές
|
data/config/locales/en.yml
CHANGED
data/config/locales/es-MX.yml
CHANGED
@@ -123,6 +123,10 @@ es-MX:
|
|
123
123
|
file: Expediente
|
124
124
|
errors:
|
125
125
|
models:
|
126
|
+
newsletter:
|
127
|
+
attributes:
|
128
|
+
base:
|
129
|
+
at_least_one_space: Seleccione al menos un espacio participativo
|
126
130
|
organization:
|
127
131
|
attributes:
|
128
132
|
official_img_footer:
|
@@ -1038,7 +1042,7 @@ es-MX:
|
|
1038
1042
|
hidden_at: Fecha de ocultación
|
1039
1043
|
participatory_space: Espacio participativo
|
1040
1044
|
report_count: Recuento
|
1041
|
-
reportable_id:
|
1045
|
+
reportable_id: ID
|
1042
1046
|
reportable_type: Tipo
|
1043
1047
|
reported_content_url: URL del contenido reportado
|
1044
1048
|
reports: Denuncias
|
data/config/locales/es-PY.yml
CHANGED
@@ -123,6 +123,10 @@ es-PY:
|
|
123
123
|
file: Expediente
|
124
124
|
errors:
|
125
125
|
models:
|
126
|
+
newsletter:
|
127
|
+
attributes:
|
128
|
+
base:
|
129
|
+
at_least_one_space: Seleccione al menos un espacio participativo
|
126
130
|
organization:
|
127
131
|
attributes:
|
128
132
|
official_img_footer:
|
@@ -1038,7 +1042,7 @@ es-PY:
|
|
1038
1042
|
hidden_at: Fecha de ocultación
|
1039
1043
|
participatory_space: Espacio participativo
|
1040
1044
|
report_count: Recuento
|
1041
|
-
reportable_id:
|
1045
|
+
reportable_id: ID
|
1042
1046
|
reportable_type: Tipo
|
1043
1047
|
reported_content_url: URL del contenido reportado
|
1044
1048
|
reports: Denuncias
|
data/config/locales/es.yml
CHANGED
@@ -123,6 +123,10 @@ es:
|
|
123
123
|
file: Archivo
|
124
124
|
errors:
|
125
125
|
models:
|
126
|
+
newsletter:
|
127
|
+
attributes:
|
128
|
+
base:
|
129
|
+
at_least_one_space: Seleccione al menos un espacio participativo
|
126
130
|
organization:
|
127
131
|
attributes:
|
128
132
|
official_img_footer:
|
@@ -501,7 +505,7 @@ es:
|
|
501
505
|
download_example_format: Ejemplo como %{name}
|
502
506
|
file_legend: Añadir un archivo de importación que será procesado.
|
503
507
|
import: Importar
|
504
|
-
notice: "%{
|
508
|
+
notice: "%{count} %{resource_name} importado correctamente"
|
505
509
|
logs:
|
506
510
|
logs_list:
|
507
511
|
no_logs_yet: Aún no hay ningún registro de actividad
|
@@ -1038,7 +1042,7 @@ es:
|
|
1038
1042
|
hidden_at: Fecha de ocultación
|
1039
1043
|
participatory_space: Espacio participativo
|
1040
1044
|
report_count: Recuento
|
1041
|
-
reportable_id:
|
1045
|
+
reportable_id: ID
|
1042
1046
|
reportable_type: Tipo
|
1043
1047
|
reported_content_url: URL del contenido reportado
|
1044
1048
|
reports: Denuncias
|
data/config/locales/eu.yml
CHANGED
data/config/locales/fi-plain.yml
CHANGED
@@ -123,6 +123,10 @@ fi-pl:
|
|
123
123
|
file: Tiedosto
|
124
124
|
errors:
|
125
125
|
models:
|
126
|
+
newsletter:
|
127
|
+
attributes:
|
128
|
+
base:
|
129
|
+
at_least_one_space: Valitse vähintään yksi osallistumistila
|
126
130
|
organization:
|
127
131
|
attributes:
|
128
132
|
official_img_footer:
|
@@ -1038,7 +1042,7 @@ fi-pl:
|
|
1038
1042
|
hidden_at: Piilotuksen ajankohta
|
1039
1043
|
participatory_space: Osallistumistila
|
1040
1044
|
report_count: Määrä
|
1041
|
-
reportable_id:
|
1045
|
+
reportable_id: ID
|
1042
1046
|
reportable_type: Tyyppi
|
1043
1047
|
reported_content_url: Raportoidun sisällön URL
|
1044
1048
|
reports: Raportit
|
data/config/locales/fi.yml
CHANGED
@@ -123,6 +123,10 @@ fi:
|
|
123
123
|
file: Tiedosto
|
124
124
|
errors:
|
125
125
|
models:
|
126
|
+
newsletter:
|
127
|
+
attributes:
|
128
|
+
base:
|
129
|
+
at_least_one_space: Valitse vähintään yksi osallistumistila
|
126
130
|
organization:
|
127
131
|
attributes:
|
128
132
|
official_img_footer:
|
@@ -1038,7 +1042,7 @@ fi:
|
|
1038
1042
|
hidden_at: Piilotuksen ajankohta
|
1039
1043
|
participatory_space: Osallistumistila
|
1040
1044
|
report_count: Määrä
|
1041
|
-
reportable_id:
|
1045
|
+
reportable_id: ID
|
1042
1046
|
reportable_type: Tyyppi
|
1043
1047
|
reported_content_url: Raportoidun sisällön URL
|
1044
1048
|
reports: Raportit
|
data/config/locales/fr-CA.yml
CHANGED
data/config/locales/fr.yml
CHANGED
data/config/locales/ga-IE.yml
CHANGED
data/config/locales/gl.yml
CHANGED
data/config/locales/hu.yml
CHANGED
data/config/locales/it.yml
CHANGED
data/config/locales/ja.yml
CHANGED
@@ -123,6 +123,10 @@ ja:
|
|
123
123
|
file: ファイル
|
124
124
|
errors:
|
125
125
|
models:
|
126
|
+
newsletter:
|
127
|
+
attributes:
|
128
|
+
base:
|
129
|
+
at_least_one_space: 少なくとも1つの参加スペースを選択してください
|
126
130
|
organization:
|
127
131
|
attributes:
|
128
132
|
official_img_footer:
|
@@ -1034,7 +1038,7 @@ ja:
|
|
1034
1038
|
hidden_at: '非表示:'
|
1035
1039
|
participatory_space: 参加型スペース
|
1036
1040
|
report_count: カウント
|
1037
|
-
reportable_id:
|
1041
|
+
reportable_id: ID
|
1038
1042
|
reportable_type: 種別
|
1039
1043
|
reported_content_url: 報告されたコンテンツ URL
|
1040
1044
|
reports: レポート
|
data/config/locales/lb.yml
CHANGED
data/config/locales/lt.yml
CHANGED
@@ -1 +1,102 @@
|
|
1
1
|
lt:
|
2
|
+
activemodel:
|
3
|
+
attributes:
|
4
|
+
area:
|
5
|
+
area_type: Vietovės tipas
|
6
|
+
name: Vardas
|
7
|
+
organization: Organizacija
|
8
|
+
area_type:
|
9
|
+
name: Vardas
|
10
|
+
organization: Organizacija
|
11
|
+
organization:
|
12
|
+
highlighted_content_banner_short_description: Trumpas aprašymas
|
13
|
+
highlighted_content_banner_title: Pavadinimas
|
14
|
+
host: Šeimininkas
|
15
|
+
instagram_handler: '„Instagram“ tvarkyklė'
|
16
|
+
logo: Logotipas
|
17
|
+
machine_translation_display_priority: Mašininio vertimo pateikimo pirmenybė
|
18
|
+
machine_translation_display_priority_original: Pirma - originalus tekstas
|
19
|
+
machine_translation_display_priority_translation: Pirma - išverstas tekstas
|
20
|
+
name: Pavadinimas
|
21
|
+
official_img_footer: Oficialaus logotipo poraštė
|
22
|
+
official_img_header: Oficialaus logotipo antraštė
|
23
|
+
official_url: Oficialus organizacijos URL
|
24
|
+
omnipresent_banner_short_description: Trumpas aprašymas
|
25
|
+
omnipresent_banner_title: Pavadinimas
|
26
|
+
omnipresent_banner_url: Nuoroda
|
27
|
+
organization_admin_email: Organizacijos administratoriaus el. paštas
|
28
|
+
organization_admin_name: Organizacijos administratoriaus vardas
|
29
|
+
organization_locales: Organizacijos būstinė
|
30
|
+
primary_color: Pagrindinė
|
31
|
+
reference_prefix: Nuorodos priešdėlis
|
32
|
+
rich_text_editor_in_public_views: Įjungti dalyviams papildomas teksto redaktoriaus funkcijas
|
33
|
+
secondary_color: Antrinė
|
34
|
+
secondary_hosts: Antriniai šeimininkai
|
35
|
+
send_welcome_notification: Siųsti pasisveikinimo pranešimą
|
36
|
+
success_color: Atlikta
|
37
|
+
time_zone: Laiko zona
|
38
|
+
tos_version: Paslaugų teikimo sąlygų versija
|
39
|
+
twitter_handler: '„Twitter“ tvarkyklė'
|
40
|
+
user_groups_enabled: Įjungti grupes
|
41
|
+
users_registration_mode: Vartotojo registracijos tipas
|
42
|
+
warning_color: Perspėjimas
|
43
|
+
welcome_notification_body: Pasisveikinimo pranešimo tekstas
|
44
|
+
welcome_notification_subject: Pasisveikinimo pranešimo antraštė
|
45
|
+
youtube_handler: '„YouTube“ tvarkyklė'
|
46
|
+
scope:
|
47
|
+
code: Kodas
|
48
|
+
name: Pavadinimas
|
49
|
+
organization: Organizacija
|
50
|
+
parent_id: Motininis
|
51
|
+
scope_type: Apimties tipas
|
52
|
+
scope_type_id: Apimties tipas
|
53
|
+
scope_type:
|
54
|
+
name: Pavadinimas
|
55
|
+
organization: Organizacija
|
56
|
+
plural: Daugiskaita
|
57
|
+
settings:
|
58
|
+
scope_id: Apimtis
|
59
|
+
static_page:
|
60
|
+
allow_public_access: Leisti priėjima be autentifikacijos
|
61
|
+
changed_notably: Įvyko reikšmingų pokyčių.
|
62
|
+
content: Turinys
|
63
|
+
organization: Organizacija
|
64
|
+
show_in_footer: Rodyti poraštėje
|
65
|
+
slug: URL laukas
|
66
|
+
decidim:
|
67
|
+
admin:
|
68
|
+
attachment_collections:
|
69
|
+
index:
|
70
|
+
attachment_collection_used: Šio aplanko negalima pašalinti, nes jis naudojamas.
|
71
|
+
attachment_collections_title: Priedų aplankai
|
72
|
+
new:
|
73
|
+
create: Sukurti
|
74
|
+
title: Naujas aplankas
|
75
|
+
update:
|
76
|
+
error: Atnaujinant šį aplanką iškilo problema.
|
77
|
+
success: Aplankas sėkmingai atnaujintas.
|
78
|
+
attachments:
|
79
|
+
create:
|
80
|
+
error: Kuriant naują priedą iškilo problema.
|
81
|
+
success: Priedas sukurtas sėkmingai.
|
82
|
+
destroy:
|
83
|
+
success: Priedas sėkingai sunaikintas.
|
84
|
+
edit:
|
85
|
+
title: Redaguoti priedą
|
86
|
+
update: Atnaujinti
|
87
|
+
index:
|
88
|
+
attachments_title: Priedai
|
89
|
+
new:
|
90
|
+
create: Sukurti priedą
|
91
|
+
title: Naujas priedas
|
92
|
+
update:
|
93
|
+
error: Atnaujinant šį priedą iškilo problema.
|
94
|
+
success: Priedas atnaujintas.
|
95
|
+
autocomplete:
|
96
|
+
no_results: Rezultatų nerasta
|
97
|
+
search_prompt: Įveskite bent tris raides paieškai pradėti
|
98
|
+
block_user:
|
99
|
+
new:
|
100
|
+
action: Užblokuoti paskyrą ir išsiųsti paaiškinimą
|
101
|
+
description: Naudotojo užblokavimas pavers paskyrą nenaudojama. Rekomenduojame paaiškinime pasidalinti būdais kaip naudotojas gali būti atblokuotas.
|
102
|
+
justification: Paaiškinimas
|
data/config/locales/nl.yml
CHANGED
data/config/locales/no.yml
CHANGED
@@ -1018,7 +1018,7 @@
|
|
1018
1018
|
hide: Skjul
|
1019
1019
|
not_hidden: Ikke skjult
|
1020
1020
|
title: Handlinger
|
1021
|
-
unhide:
|
1021
|
+
unhide: Vis
|
1022
1022
|
unreport: Urapporter
|
1023
1023
|
admin:
|
1024
1024
|
reportable:
|
@@ -1038,7 +1038,6 @@
|
|
1038
1038
|
hidden_at: Skjult på
|
1039
1039
|
participatory_space: Deltakerrom
|
1040
1040
|
report_count: Antall
|
1041
|
-
reportable_id: Id
|
1042
1041
|
reportable_type: Type
|
1043
1042
|
reported_content_url: Rapportert innholds URL
|
1044
1043
|
reports: Rapporter
|
data/config/locales/pl.yml
CHANGED
@@ -43,6 +43,7 @@ pl:
|
|
43
43
|
default_locale: Domyślny język
|
44
44
|
description: Opis
|
45
45
|
enable_omnipresent_banner: Pokaż stały banner
|
46
|
+
enable_participatory_space_filters: Włącz filtry przestrzeni partycypacyjnej
|
46
47
|
facebook_handler: Handler Facebooka
|
47
48
|
favicon: Ikona
|
48
49
|
force_authentication: Wymuś uwierzytelnianie
|
@@ -122,6 +123,10 @@ pl:
|
|
122
123
|
file: Plik
|
123
124
|
errors:
|
124
125
|
models:
|
126
|
+
newsletter:
|
127
|
+
attributes:
|
128
|
+
base:
|
129
|
+
at_least_one_space: Wybierz co najmniej jedną przestrzeń partycypacyjną
|
125
130
|
organization:
|
126
131
|
attributes:
|
127
132
|
official_img_footer:
|
@@ -131,6 +136,7 @@ pl:
|
|
131
136
|
new_import:
|
132
137
|
attributes:
|
133
138
|
file:
|
139
|
+
invalid_file: Podano nieprawidłowy plik, sprawdź czy plik jest poprawnie sformatowany
|
134
140
|
invalid_mime_type: Niepoprawny format
|
135
141
|
activerecord:
|
136
142
|
attributes:
|
@@ -987,7 +993,6 @@ pl:
|
|
987
993
|
hidden_at: Ukryto
|
988
994
|
participatory_space: Przestrzeń partycypacyjna
|
989
995
|
report_count: Liczba
|
990
|
-
reportable_id: Id
|
991
996
|
reportable_type: Typ
|
992
997
|
reported_content_url: URL zgłoszonej treści
|
993
998
|
reports: Zgłoszenia
|
data/config/locales/pt-BR.yml
CHANGED
data/config/locales/pt.yml
CHANGED
@@ -1001,7 +1001,6 @@ pt:
|
|
1001
1001
|
hidden_at: Escondido em
|
1002
1002
|
participatory_space: Espaço participativo
|
1003
1003
|
report_count: Contagem
|
1004
|
-
reportable_id: Identificação
|
1005
1004
|
reportable_type: Tipo
|
1006
1005
|
reported_content_url: URL de conteúdo reportado
|
1007
1006
|
reports: Relatórios
|
data/config/locales/ro-RO.yml
CHANGED
data/config/locales/sv.yml
CHANGED
@@ -123,6 +123,10 @@ sv:
|
|
123
123
|
file: Fil
|
124
124
|
errors:
|
125
125
|
models:
|
126
|
+
newsletter:
|
127
|
+
attributes:
|
128
|
+
base:
|
129
|
+
at_least_one_space: Välj minst ett deltagarutrymme
|
126
130
|
organization:
|
127
131
|
attributes:
|
128
132
|
official_img_footer:
|
@@ -338,7 +342,7 @@ sv:
|
|
338
342
|
dashboard:
|
339
343
|
show:
|
340
344
|
view_more_logs: Visa fler loggar
|
341
|
-
welcome: Välkommen till Decidims
|
345
|
+
welcome: Välkommen till Decidims adminpanel.
|
342
346
|
domain_whitelist:
|
343
347
|
form:
|
344
348
|
domain_too_short: Domänen är för kort
|
@@ -521,7 +525,7 @@ sv:
|
|
521
525
|
area_types: Typer av område
|
522
526
|
areas: Områden
|
523
527
|
configuration: Konfiguration
|
524
|
-
dashboard:
|
528
|
+
dashboard: Adminpanel
|
525
529
|
external_domain_whitelist: Tillåtna externa domäner
|
526
530
|
help_sections: Hjälpavsnitt
|
527
531
|
homepage: Hemsida
|
@@ -532,7 +536,7 @@ sv:
|
|
532
536
|
reported_users: Rapporterade användare
|
533
537
|
scope_types: Omfattningstyper
|
534
538
|
scopes: Omfattningar
|
535
|
-
settings:
|
539
|
+
settings: Inställningar
|
536
540
|
static_pages: Sidor
|
537
541
|
user_groups: Grupper
|
538
542
|
users: Deltagare
|
@@ -940,7 +944,7 @@ sv:
|
|
940
944
|
area_types: Områdestyper
|
941
945
|
areas: Områden
|
942
946
|
authorization_workflows: Verifieringsmetoder
|
943
|
-
dashboard:
|
947
|
+
dashboard: Adminpanel
|
944
948
|
impersonatable_users: Hanterbara deltagare
|
945
949
|
impersonations: Deltagarhantering
|
946
950
|
metrics: Metrik
|
@@ -1038,7 +1042,6 @@ sv:
|
|
1038
1042
|
hidden_at: Dold
|
1039
1043
|
participatory_space: Deltagarutrymme
|
1040
1044
|
report_count: Antal
|
1041
|
-
reportable_id: Id
|
1042
1045
|
reportable_type: Typ
|
1043
1046
|
reported_content_url: Rapporterad innehållsadress
|
1044
1047
|
reports: Rapporter
|
@@ -1059,6 +1062,6 @@ sv:
|
|
1059
1062
|
newsletters:
|
1060
1063
|
title: Nyhetsbrev
|
1061
1064
|
settings:
|
1062
|
-
title:
|
1065
|
+
title: Inställningar
|
1063
1066
|
users:
|
1064
1067
|
title: Deltagare
|
data/config/locales/tr-TR.yml
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: decidim-admin
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.26.
|
4
|
+
version: 0.26.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Josep Jaume Rey Peroy
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2022-
|
13
|
+
date: 2022-06-14 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: active_link_to
|
@@ -32,14 +32,14 @@ dependencies:
|
|
32
32
|
requirements:
|
33
33
|
- - '='
|
34
34
|
- !ruby/object:Gem::Version
|
35
|
-
version: 0.26.
|
35
|
+
version: 0.26.2
|
36
36
|
type: :runtime
|
37
37
|
prerelease: false
|
38
38
|
version_requirements: !ruby/object:Gem::Requirement
|
39
39
|
requirements:
|
40
40
|
- - '='
|
41
41
|
- !ruby/object:Gem::Version
|
42
|
-
version: 0.26.
|
42
|
+
version: 0.26.2
|
43
43
|
- !ruby/object:Gem::Dependency
|
44
44
|
name: devise
|
45
45
|
requirement: !ruby/object:Gem::Requirement
|
@@ -88,28 +88,28 @@ dependencies:
|
|
88
88
|
requirements:
|
89
89
|
- - '='
|
90
90
|
- !ruby/object:Gem::Version
|
91
|
-
version: 0.26.
|
91
|
+
version: 0.26.2
|
92
92
|
type: :development
|
93
93
|
prerelease: false
|
94
94
|
version_requirements: !ruby/object:Gem::Requirement
|
95
95
|
requirements:
|
96
96
|
- - '='
|
97
97
|
- !ruby/object:Gem::Version
|
98
|
-
version: 0.26.
|
98
|
+
version: 0.26.2
|
99
99
|
- !ruby/object:Gem::Dependency
|
100
100
|
name: decidim-participatory_processes
|
101
101
|
requirement: !ruby/object:Gem::Requirement
|
102
102
|
requirements:
|
103
103
|
- - '='
|
104
104
|
- !ruby/object:Gem::Version
|
105
|
-
version: 0.26.
|
105
|
+
version: 0.26.2
|
106
106
|
type: :development
|
107
107
|
prerelease: false
|
108
108
|
version_requirements: !ruby/object:Gem::Requirement
|
109
109
|
requirements:
|
110
110
|
- - '='
|
111
111
|
- !ruby/object:Gem::Version
|
112
|
-
version: 0.26.
|
112
|
+
version: 0.26.2
|
113
113
|
description: Organization administration to manage a single organization.
|
114
114
|
email:
|
115
115
|
- josepjaume@gmail.com
|