decidim-admin 0.30.6 → 0.30.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/cells/decidim/admin/content_block/show.erb +1 -1
- data/app/helpers/decidim/admin/settings_helper.rb +13 -1
- data/app/packs/stylesheets/decidim/admin/_forms.scss +0 -1
- data/app/packs/stylesheets/decidim/admin/_sidebar-menu.scss +6 -2
- data/app/packs/stylesheets/decidim/admin/_table-list.scss +1 -1
- data/app/packs/stylesheets/decidim/admin/_taxonomies.scss +1 -1
- data/config/locales/ar.yml +4 -15
- data/config/locales/bg.yml +1 -14
- data/config/locales/bs-BA.yml +5 -7
- data/config/locales/ca-IT.yml +19 -15
- data/config/locales/ca.yml +19 -15
- data/config/locales/cs.yml +7 -8
- data/config/locales/de.yml +8 -21
- data/config/locales/el.yml +30 -13
- data/config/locales/en.yml +4 -0
- data/config/locales/eo.yml +0 -1
- data/config/locales/es-MX.yml +14 -10
- data/config/locales/es-PY.yml +14 -10
- data/config/locales/es.yml +27 -23
- data/config/locales/eu.yml +6 -2
- data/config/locales/fi-plain.yml +3 -16
- data/config/locales/fi.yml +2 -15
- data/config/locales/fr-CA.yml +26 -11
- data/config/locales/fr.yml +26 -11
- data/config/locales/ga-IE.yml +1 -3
- data/config/locales/gl.yml +4 -13
- data/config/locales/hu.yml +2 -17
- data/config/locales/id-ID.yml +2 -11
- data/config/locales/is-IS.yml +1 -6
- data/config/locales/it.yml +14 -21
- data/config/locales/ja.yml +16 -12
- data/config/locales/kaa.yml +8 -0
- data/config/locales/ko.yml +0 -12
- data/config/locales/lb.yml +4 -13
- data/config/locales/lt.yml +4 -15
- data/config/locales/lv.yml +2 -11
- data/config/locales/nl.yml +4 -14
- data/config/locales/no.yml +3 -13
- data/config/locales/pl.yml +2 -16
- data/config/locales/pt-BR.yml +6 -4
- data/config/locales/pt.yml +4 -13
- data/config/locales/ro-RO.yml +2 -14
- data/config/locales/ru.yml +3 -9
- data/config/locales/sk.yml +3 -12
- data/config/locales/sl.yml +2 -0
- data/config/locales/sq-AL.yml +2 -5
- data/config/locales/sr-CS.yml +5 -7
- data/config/locales/sv.yml +20 -30
- data/config/locales/tr-TR.yml +103 -19
- data/config/locales/uk.yml +1 -9
- data/config/locales/zh-CN.yml +1 -11
- data/config/locales/zh-TW.yml +3 -13
- data/lib/decidim/admin/test/manage_hide_content_examples.rb +1 -0
- 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: b7f1325b5cc054088768a3a54e3b14a4b832722aee55dc8b9d6036987dac9a0e
|
|
4
|
+
data.tar.gz: 53bb55998312acb17ec0d99ed14cdd4e3fe266dda40eb6f9f442505b2206dd00
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3b18f5c01b8c6007027e1529933ba738616011e9b96f64b78dc39055a3c9f16b3f73118e19820f9c84ab5fe26f481200ef759876698474ad13d1786da6e15646
|
|
7
|
+
data.tar.gz: c9fc4aaec02ddaf68dbabb850f94b761851c66041fe8835d13ae1653b3f4b9b48cc580767306872c3b2e73a6bf6a51d7c1f73978dbb86e7218c1305336ca764d
|
|
@@ -100,7 +100,8 @@ module Decidim
|
|
|
100
100
|
html = form.select(
|
|
101
101
|
name,
|
|
102
102
|
attribute.build_choices.map { |o| [t("#{name}_options.#{o}", scope: i18n_scope), o] },
|
|
103
|
-
{ include_blank: attribute.include_blank, label: options[:label] }
|
|
103
|
+
{ include_blank: attribute.include_blank, label: options[:label] },
|
|
104
|
+
{ disabled: options[:readonly] || false }
|
|
104
105
|
)
|
|
105
106
|
html << content_tag(:p, options[:help_text], class: "help-text") if options[:help_text]
|
|
106
107
|
html
|
|
@@ -217,6 +218,8 @@ module Decidim
|
|
|
217
218
|
# @param name (see #settings_attribute_input)
|
|
218
219
|
# @param i18n_scope (see #settings_attribute_input)
|
|
219
220
|
def taxonomy_filters(form, name, i18n_scope)
|
|
221
|
+
return disabled_taxonomy_filters(name, i18n_scope) if @component&.new_record?
|
|
222
|
+
|
|
220
223
|
current_filters = content_tag(:div, class: "js-current-filters") do
|
|
221
224
|
render partial: "decidim/admin/taxonomy_filters_selector/component_table",
|
|
222
225
|
locals: { field_name: "#{form.object_name}[#{name}][]", component: @component }
|
|
@@ -240,6 +243,15 @@ module Decidim
|
|
|
240
243
|
|
|
241
244
|
label_tag(name, t(name, scope: i18n_scope)) + container + drawer
|
|
242
245
|
end
|
|
246
|
+
|
|
247
|
+
def disabled_taxonomy_filters(name, i18n_scope)
|
|
248
|
+
container = content_tag(:div) do
|
|
249
|
+
message = t("taxonomy_filters_unavailable", scope: "decidim.components.settings.global")
|
|
250
|
+
content_tag(:p, message, class: "help-text")
|
|
251
|
+
end
|
|
252
|
+
|
|
253
|
+
label_tag(name, t(name, scope: i18n_scope)) + container
|
|
254
|
+
end
|
|
243
255
|
end
|
|
244
256
|
end
|
|
245
257
|
end
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
&__item {
|
|
5
5
|
a,
|
|
6
6
|
&-disabled {
|
|
7
|
-
@apply gap-x-2 p-2 flex items-center text-sm
|
|
7
|
+
@apply gap-x-2 p-2 flex items-center text-sm border border-gray-5 rounded;
|
|
8
8
|
|
|
9
9
|
> svg {
|
|
10
10
|
@apply w-4 h-4 flex-none text-gray fill-current;
|
|
@@ -25,7 +25,11 @@
|
|
|
25
25
|
}
|
|
26
26
|
|
|
27
27
|
& .component-counter {
|
|
28
|
-
@apply ml-auto inline-flex items-center justify-center w-5 h-5 text-xs font-semibold rounded-full bg-background-4 border-secondary;
|
|
28
|
+
@apply flex-shrink-0 ml-auto inline-flex items-center justify-center w-5 h-5 text-xs font-semibold rounded-full bg-background-4 border-secondary;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
a > span:first-child {
|
|
32
|
+
@apply min-w-0 whitespace-normal break-words;
|
|
29
33
|
}
|
|
30
34
|
|
|
31
35
|
ul {
|
data/config/locales/ar.yml
CHANGED
|
@@ -240,8 +240,6 @@ ar:
|
|
|
240
240
|
edit:
|
|
241
241
|
title: تحرير المجلد
|
|
242
242
|
update: تحديث
|
|
243
|
-
index:
|
|
244
|
-
attachment_collections_title: مجلدات المرفقات
|
|
245
243
|
new:
|
|
246
244
|
create: إنشاء
|
|
247
245
|
title: مجلد جديد
|
|
@@ -257,8 +255,6 @@ ar:
|
|
|
257
255
|
edit:
|
|
258
256
|
title: تحرير المرفق
|
|
259
257
|
update: تحديث
|
|
260
|
-
index:
|
|
261
|
-
attachments_title: المرفقات
|
|
262
258
|
new:
|
|
263
259
|
create: إنشاء مرفق
|
|
264
260
|
title: مرفق جديد
|
|
@@ -299,7 +295,6 @@ ar:
|
|
|
299
295
|
title: 'إضافة مكون: %{name}'
|
|
300
296
|
publish:
|
|
301
297
|
success: تم نشر المكون بنجاح.
|
|
302
|
-
title: المكونات
|
|
303
298
|
unpublish:
|
|
304
299
|
success: تم إلغاء نشر المكون بنجاح.
|
|
305
300
|
update:
|
|
@@ -310,7 +305,6 @@ ar:
|
|
|
310
305
|
'false': 'لا'
|
|
311
306
|
managed_user_name: المستخدم المُدار
|
|
312
307
|
solved: تم حلها
|
|
313
|
-
title: تضارب التحقق
|
|
314
308
|
transfer:
|
|
315
309
|
email: البريد الإلكتروني
|
|
316
310
|
name: الإسم
|
|
@@ -456,7 +450,6 @@ ar:
|
|
|
456
450
|
promotions:
|
|
457
451
|
new:
|
|
458
452
|
explanation: يمكن ترقية المشاركين المدارين إلى مشاركين عاديين. يعني ذلك أنه سيتم دعوتهم إلى التطبيق ولن تتمكن من إدارته مرة أخرى. سيتلقى المشارك المدعو رسالة بريد إلكتروني لقبول دعوتك.
|
|
459
|
-
new_managed_user_promotion: ترويج مشارك جديد مُدار
|
|
460
453
|
promote: تروج \ يشجع \ يعزز \ ينمى \ يطور
|
|
461
454
|
menu:
|
|
462
455
|
admin_log: سجل نشاط المسؤول
|
|
@@ -825,25 +818,21 @@ ar:
|
|
|
825
818
|
new:
|
|
826
819
|
save: حفظ
|
|
827
820
|
titles:
|
|
828
|
-
admin_log: سجل المسؤول
|
|
829
821
|
area_types: أنواع المناطق
|
|
830
822
|
areas: المناطق
|
|
831
823
|
authorization_workflows: طرق التحقق
|
|
832
|
-
dashboard: لوحة القيادة
|
|
833
824
|
edit_landing_page: محتويات الصفحة
|
|
834
825
|
edit_organization_appearance: تعديل مظهر الصفحة الرئيسية
|
|
835
|
-
impersonatable_users: المشاركون في الإدارة
|
|
836
826
|
impersonations: إدارة المشاركين
|
|
837
827
|
menu: القائمة الرئيسية
|
|
838
828
|
page_topics: المواضيع
|
|
839
|
-
pages:
|
|
829
|
+
pages: صفحات
|
|
840
830
|
panel: مدير
|
|
841
|
-
participants:
|
|
842
|
-
scope_types: أنواع
|
|
831
|
+
participants: المشاركون
|
|
832
|
+
scope_types: أنواع المجال
|
|
843
833
|
scopes: مجالات
|
|
844
834
|
statistics: النشاط
|
|
845
835
|
user_groups: المجموعات
|
|
846
|
-
users: المدراء
|
|
847
836
|
user_group:
|
|
848
837
|
csv_verify:
|
|
849
838
|
invalid: حدثت مشكلة في قراءة ملف CSV.
|
|
@@ -899,7 +888,7 @@ ar:
|
|
|
899
888
|
not_hidden: غير مخفي
|
|
900
889
|
title: أفعال
|
|
901
890
|
unhide: إظهار
|
|
902
|
-
unreport:
|
|
891
|
+
unreport: إلغاء التبليغ
|
|
903
892
|
admin:
|
|
904
893
|
reportable:
|
|
905
894
|
hide:
|
data/config/locales/bg.yml
CHANGED
|
@@ -212,7 +212,6 @@ bg:
|
|
|
212
212
|
alert: 'Задължително: Прегледайте нашите административни условия за ползване'
|
|
213
213
|
callout: Моля, отделете малко време, за да прегледате административните условия за ползване. В противен случай, няма да можете да администрирате платформата.
|
|
214
214
|
cta: Прегледайте ги сега.
|
|
215
|
-
title: Административни условия на услугата
|
|
216
215
|
area_types:
|
|
217
216
|
create:
|
|
218
217
|
error: Възникна проблем при създаването на нов тип област.
|
|
@@ -254,8 +253,6 @@ bg:
|
|
|
254
253
|
edit:
|
|
255
254
|
title: Редактиране на папка
|
|
256
255
|
update: Актуализация
|
|
257
|
-
index:
|
|
258
|
-
attachment_collections_title: Папки с прикачени файлове
|
|
259
256
|
new:
|
|
260
257
|
create: Създаване
|
|
261
258
|
title: Нова папка
|
|
@@ -271,8 +268,6 @@ bg:
|
|
|
271
268
|
edit:
|
|
272
269
|
title: Редактиране на прикачения файл
|
|
273
270
|
update: Актуализация
|
|
274
|
-
index:
|
|
275
|
-
attachments_title: Прикачени файлове
|
|
276
271
|
new:
|
|
277
272
|
create: Създаване на прикачен файл
|
|
278
273
|
title: Нов прикачен файл
|
|
@@ -340,7 +335,6 @@ bg:
|
|
|
340
335
|
text: Търсете по имейл, име или псевдоним на текущия потребител.
|
|
341
336
|
managed_user_name: Управляван потребител
|
|
342
337
|
solved: Разрешен случай
|
|
343
|
-
title: Проверка на конфликти
|
|
344
338
|
transfer:
|
|
345
339
|
email: Имейл
|
|
346
340
|
error: Възникна проблем при прехвърлянето на текущия участник към управляван участник.
|
|
@@ -542,7 +536,6 @@ bg:
|
|
|
542
536
|
promotions:
|
|
543
537
|
new:
|
|
544
538
|
explanation: Управляваните участници могат да бъдат повишавани до стандартни участници. Това означава, че ще бъдат поканени в приложението и повече няма да можете да ги управлявате. Поканеният участник ще получи имейл, за да приеме поканата Ви.
|
|
545
|
-
new_managed_user_promotion: Ново повишение на управляван участник
|
|
546
539
|
promote: Повишаване
|
|
547
540
|
menu:
|
|
548
541
|
admin_log: Регистър на дейността на администраторите
|
|
@@ -708,7 +701,6 @@ bg:
|
|
|
708
701
|
title: Шаблони за бюлетин
|
|
709
702
|
use_template: Използване на този шаблон
|
|
710
703
|
show:
|
|
711
|
-
preview: 'Визуализация на шаблона: %{template_name}'
|
|
712
704
|
use_template: Използване на този шаблон
|
|
713
705
|
newsletters:
|
|
714
706
|
create:
|
|
@@ -840,7 +832,6 @@ bg:
|
|
|
840
832
|
up: Горе
|
|
841
833
|
form:
|
|
842
834
|
add: Добави в листа с позволени
|
|
843
|
-
title: Лист с позволени външни домейни
|
|
844
835
|
participatory_space_private_users:
|
|
845
836
|
create:
|
|
846
837
|
error: Възникна проблем при добавянето на частен участник за това пространство за участие.
|
|
@@ -1000,15 +991,11 @@ bg:
|
|
|
1000
991
|
actions:
|
|
1001
992
|
new_taxonomy_filter: Нов класификационен филтър
|
|
1002
993
|
titles:
|
|
1003
|
-
admin_log: Администраторски регистри
|
|
1004
994
|
area_types: Типове области
|
|
1005
995
|
areas: Области
|
|
1006
996
|
authorization_workflows: Методи за проверка
|
|
1007
|
-
dashboard: Контролен панел
|
|
1008
|
-
edit_external_domains: Лист с позволени външни домейни
|
|
1009
997
|
edit_landing_page: Съдържание на страницата
|
|
1010
998
|
edit_organization_appearance: Редактиране на външния вид на началната страница
|
|
1011
|
-
impersonatable_users: Управляеми участници
|
|
1012
999
|
impersonations: Управление на участниците
|
|
1013
1000
|
menu: Меню
|
|
1014
1001
|
metrics: Метрики
|
|
@@ -1019,8 +1006,8 @@ bg:
|
|
|
1019
1006
|
scope_types: Типове на обхвата
|
|
1020
1007
|
scopes: Обхвати
|
|
1021
1008
|
statistics: Активност
|
|
1009
|
+
taxonomies: Категоризации
|
|
1022
1010
|
user_groups: Групи
|
|
1023
|
-
users: Администратори
|
|
1024
1011
|
user_group:
|
|
1025
1012
|
csv_verify:
|
|
1026
1013
|
invalid: Възникна проблем при прочитането на CSV файла.
|
data/config/locales/bs-BA.yml
CHANGED
|
@@ -162,8 +162,6 @@ bs:
|
|
|
162
162
|
edit:
|
|
163
163
|
title: Izmeni fasciklu
|
|
164
164
|
update: Ažuriraj
|
|
165
|
-
index:
|
|
166
|
-
attachment_collections_title: Fascikle priloga
|
|
167
165
|
new:
|
|
168
166
|
create: Stvori
|
|
169
167
|
title: Nova fascikla
|
|
@@ -179,8 +177,6 @@ bs:
|
|
|
179
177
|
edit:
|
|
180
178
|
title: Izmeni prilog
|
|
181
179
|
update: Ažuriraj
|
|
182
|
-
index:
|
|
183
|
-
attachments_title: Prilozi
|
|
184
180
|
new:
|
|
185
181
|
create: Stvori prilog
|
|
186
182
|
title: Novi prilog
|
|
@@ -218,7 +214,6 @@ bs:
|
|
|
218
214
|
title: 'Dodaj komponentu: %{name}'
|
|
219
215
|
publish:
|
|
220
216
|
success: Komponenta je uspešno objavljena.
|
|
221
|
-
title: Komponente
|
|
222
217
|
unpublish:
|
|
223
218
|
success: Objava komponente je uspešno povučena.
|
|
224
219
|
update:
|
|
@@ -296,7 +291,6 @@ bs:
|
|
|
296
291
|
promotions:
|
|
297
292
|
new:
|
|
298
293
|
explanation: Upravljani učesnici mogu biti unapređeni u regularne učesnike. To znači da će biti pozvani da se prijave, nakon čega nećete više biti u mogućnosti da upravljate njihovim nalozima. Pozvani učesnici će primiti e-mail i potrebno je da prihvate poziv.
|
|
299
|
-
new_managed_user_promotion: Unapređenje novog upravljanog učesnika
|
|
300
294
|
promote: Unapredi
|
|
301
295
|
menu:
|
|
302
296
|
admin_log: Zapisnik aktivnosti administratora
|
|
@@ -402,7 +396,6 @@ bs:
|
|
|
402
396
|
title: Šabloni biltena
|
|
403
397
|
use_template: Koristite ovaj šablon
|
|
404
398
|
show:
|
|
405
|
-
preview: 'Pregledajte šablon %{template_name}'
|
|
406
399
|
use_template: Koristite ovaj šablon
|
|
407
400
|
newsletters:
|
|
408
401
|
create:
|
|
@@ -440,6 +433,7 @@ bs:
|
|
|
440
433
|
participants_help: Pošalji bilten svim potvrđenim učesnicima koji su učestvovali u bilo kojem od odabranih prostora za učešće sa liste.
|
|
441
434
|
recipients_count: Ovaj bilten biće dostavljen %{count} korisnicima.
|
|
442
435
|
select_spaces: Izaberite prostore da podelite bilten
|
|
436
|
+
send_to_all_users: Pošalji svim korisnicima
|
|
443
437
|
title: Izaberi primaoce za dostavu
|
|
444
438
|
warning: "Pažnja: Ovaj bilten će biti poslan samo korisnicima koji su aktivirali Želim da dobijam biltene u svojim podešavanjima obaveštenja."
|
|
445
439
|
show:
|
|
@@ -504,7 +498,11 @@ bs:
|
|
|
504
498
|
add_images: Dodaj slike
|
|
505
499
|
gallery_legend: Dodaj galeriju slika (opciono)
|
|
506
500
|
titles:
|
|
501
|
+
area_types: Tipovi oblasti
|
|
507
502
|
metrics: Metrika
|
|
503
|
+
pages: Stranice
|
|
504
|
+
participants: Učesnici
|
|
505
|
+
scope_types: Vrste oblasti
|
|
508
506
|
statistics: Aktivnost
|
|
509
507
|
users_statistics:
|
|
510
508
|
users_count:
|
data/config/locales/ca-IT.yml
CHANGED
|
@@ -203,7 +203,7 @@ ca-IT:
|
|
|
203
203
|
newsletter:
|
|
204
204
|
new: Nou butlletí
|
|
205
205
|
participatory_space_private_user:
|
|
206
|
-
new:
|
|
206
|
+
new: Nova participant privada de l'espai de participació
|
|
207
207
|
per_page: Per pàgina
|
|
208
208
|
permissions: Permisos
|
|
209
209
|
reject: Rebutjar
|
|
@@ -229,7 +229,7 @@ ca-IT:
|
|
|
229
229
|
alert: 'Necessari: revisa les nostres condicions del servei d''administració'
|
|
230
230
|
callout: Si us plau, dedica un moment a revisar les condicions del servei d'administració. En cas contrari, no podràs administrar la plataforma.
|
|
231
231
|
cta: Revisar-les ara.
|
|
232
|
-
title: Termes i condicions
|
|
232
|
+
title: Termes i condicions d'ús para administradores
|
|
233
233
|
area_types:
|
|
234
234
|
create:
|
|
235
235
|
error: S'ha produït un error en crear un tipus d'àrea nova.
|
|
@@ -290,7 +290,7 @@ ca-IT:
|
|
|
290
290
|
title: Edita adjunt
|
|
291
291
|
update: Actualitza
|
|
292
292
|
index:
|
|
293
|
-
attachments_title:
|
|
293
|
+
attachments_title: Fitxers adjunts
|
|
294
294
|
new:
|
|
295
295
|
create: Crea adjunt
|
|
296
296
|
title: Nou adjunt
|
|
@@ -523,7 +523,7 @@ ca-IT:
|
|
|
523
523
|
impersonate: Impersonar
|
|
524
524
|
impersonate_existing_managed_user: Gestionar la participant "%{name}"
|
|
525
525
|
impersonate_existing_user: Gestionar la participant "%{name}"
|
|
526
|
-
impersonate_new_managed_user:
|
|
526
|
+
impersonate_new_managed_user: Gestiona una nova participant
|
|
527
527
|
imports:
|
|
528
528
|
and: i
|
|
529
529
|
data_errors:
|
|
@@ -579,7 +579,7 @@ ca-IT:
|
|
|
579
579
|
promotions:
|
|
580
580
|
new:
|
|
581
581
|
explanation: Les participants gestionades es poden promocionar a participants estàndard. Significa que seran convidades al sistema i no podràs tornar a administrar-les. La participant convidada rebrà un correu electrònic per acceptar la vostra invitació.
|
|
582
|
-
new_managed_user_promotion: Nova promoció de participant
|
|
582
|
+
new_managed_user_promotion: Nova promoció de participant gestionada
|
|
583
583
|
promote: Promocionar
|
|
584
584
|
menu:
|
|
585
585
|
admin_log: Registre d'activitat d'administració
|
|
@@ -704,12 +704,12 @@ ca-IT:
|
|
|
704
704
|
title: Desbloquejar
|
|
705
705
|
update_moderated_user_button: Desbloquejar usuàries
|
|
706
706
|
unreport:
|
|
707
|
-
title: Desfer denúncia
|
|
707
|
+
title: Desfer la denúncia
|
|
708
708
|
ignore:
|
|
709
709
|
update_moderated_user_button: Desfer la denúncia a les usuàries
|
|
710
710
|
title: Accions
|
|
711
711
|
unblock: Desbloquejar usuària
|
|
712
|
-
unreport: Desfer denúncia
|
|
712
|
+
unreport: Desfer la denúncia
|
|
713
713
|
cancel: Cancel·lar
|
|
714
714
|
name: Nom
|
|
715
715
|
nickname: Àlies
|
|
@@ -736,7 +736,7 @@ ca-IT:
|
|
|
736
736
|
title: Tornar a mostrar
|
|
737
737
|
update_moderation_button: Tornar a mostrar els continguts seleccionats
|
|
738
738
|
unreport:
|
|
739
|
-
title: Desfer denúncia
|
|
739
|
+
title: Desfer la denúncia
|
|
740
740
|
update_moderation_button: Desfer la denúncia dels continguts seleccionats
|
|
741
741
|
cancel: Cancel·lar
|
|
742
742
|
selected: seleccionades
|
|
@@ -829,7 +829,7 @@ ca-IT:
|
|
|
829
829
|
select_users_for_participatory_space: Enviar el butlletí informatiu a un o més espais de participació
|
|
830
830
|
select_users_general: Enviar un butlletí general
|
|
831
831
|
select_verification_types: Seleccionar mètodes de verificació
|
|
832
|
-
send_to_all_users: Envia a totes les
|
|
832
|
+
send_to_all_users: Envia a totes les participants
|
|
833
833
|
send_to_verified_users: Enviar a usuàries verificades
|
|
834
834
|
title: Selecciona les destinatàries a lliurar
|
|
835
835
|
verified_users_help: Envia un butlletí informatiu a tots els usuaris confirmats i verificats amb qualsevol dels mètodes de verificació seleccionats.
|
|
@@ -947,7 +947,7 @@ ca-IT:
|
|
|
947
947
|
error: S'ha produït un error en afegir una participant privada a aquest espai de participació.
|
|
948
948
|
success: L'accés de la participant a l'espai de participació privat s'ha creat correctament.
|
|
949
949
|
destroy:
|
|
950
|
-
error: S'ha produït un error en eliminar una participant participada d'aquest espai
|
|
950
|
+
error: S'ha produït un error en eliminar una participant participada d'aquest espai de participació.
|
|
951
951
|
success: L'accés de la participant a l'espai de participació privat s'ha eliminat correctament.
|
|
952
952
|
edit:
|
|
953
953
|
title: Editar participant privada de l'espai de participació.
|
|
@@ -955,7 +955,7 @@ ca-IT:
|
|
|
955
955
|
index:
|
|
956
956
|
import_via_csv: Importar des de CSV
|
|
957
957
|
publish_all: Publicar totes
|
|
958
|
-
title: Participant de l'espai
|
|
958
|
+
title: Participant de l'espai de participació privat
|
|
959
959
|
unpublish_all: Despublicar totes
|
|
960
960
|
new:
|
|
961
961
|
create: Crear
|
|
@@ -1246,11 +1246,11 @@ ca-IT:
|
|
|
1246
1246
|
none: Cap
|
|
1247
1247
|
title: Editar element a "%{taxonomy}"
|
|
1248
1248
|
titles:
|
|
1249
|
-
admin_log: Registre d'administració
|
|
1249
|
+
admin_log: Registre d'activitat d'administració
|
|
1250
1250
|
area_types: Tipus d'àrees
|
|
1251
1251
|
areas: Àrees
|
|
1252
1252
|
authorization_workflows: Mètodes de verificació
|
|
1253
|
-
dashboard: Tauler
|
|
1253
|
+
dashboard: Tauler d'administració
|
|
1254
1254
|
edit_external_domains: Llistat de dominis externs permesos
|
|
1255
1255
|
edit_landing_page: Continguts de la pàgina
|
|
1256
1256
|
edit_organization_appearance: Edita l'aparença de la pàgina d'inici
|
|
@@ -1266,7 +1266,7 @@ ca-IT:
|
|
|
1266
1266
|
scopes: Àmbits
|
|
1267
1267
|
statistics: Activitat
|
|
1268
1268
|
taxonomies: Taxonomies
|
|
1269
|
-
taxonomy_filters:
|
|
1269
|
+
taxonomy_filters: Filtres de taxonomia per a "%{taxonomy}"
|
|
1270
1270
|
user_groups: Grups
|
|
1271
1271
|
users: Administradores
|
|
1272
1272
|
tooltips:
|
|
@@ -1326,6 +1326,10 @@ ca-IT:
|
|
|
1326
1326
|
last_week: La darrera setmana
|
|
1327
1327
|
no_users_count_statistics_yet: Encara no hi ha estadístiques de recompte de participants.
|
|
1328
1328
|
participants: Participants
|
|
1329
|
+
components:
|
|
1330
|
+
settings:
|
|
1331
|
+
global:
|
|
1332
|
+
taxonomy_filters_unavailable: Podràs seleccionar filtres de taxonomia un cop creat el component.
|
|
1329
1333
|
forms:
|
|
1330
1334
|
errors:
|
|
1331
1335
|
impersonate_user:
|
|
@@ -1349,7 +1353,7 @@ ca-IT:
|
|
|
1349
1353
|
parent_hidden: No es pot mostrar aquest recurs perquè està inclòs dins un altre recurs ("pare") que segueix ocult.
|
|
1350
1354
|
title: Accions
|
|
1351
1355
|
unhide: Tornar a mostrar
|
|
1352
|
-
unreport: Desfer denúncia
|
|
1356
|
+
unreport: Desfer la denúncia
|
|
1353
1357
|
admin:
|
|
1354
1358
|
reportable:
|
|
1355
1359
|
bulk_action:
|
data/config/locales/ca.yml
CHANGED
|
@@ -203,7 +203,7 @@ ca:
|
|
|
203
203
|
newsletter:
|
|
204
204
|
new: Nou butlletí
|
|
205
205
|
participatory_space_private_user:
|
|
206
|
-
new:
|
|
206
|
+
new: Nova participant privada de l'espai de participació
|
|
207
207
|
per_page: Per pàgina
|
|
208
208
|
permissions: Permisos
|
|
209
209
|
reject: Rebutjar
|
|
@@ -229,7 +229,7 @@ ca:
|
|
|
229
229
|
alert: 'Necessari: revisa les nostres condicions del servei d''administració'
|
|
230
230
|
callout: Si us plau, dedica un moment a revisar les condicions del servei d'administració. En cas contrari, no podràs administrar la plataforma.
|
|
231
231
|
cta: Revisar-les ara.
|
|
232
|
-
title: Termes i condicions
|
|
232
|
+
title: Termes i condicions d'ús para administradores
|
|
233
233
|
area_types:
|
|
234
234
|
create:
|
|
235
235
|
error: S'ha produït un error en crear un tipus d'àrea nova.
|
|
@@ -290,7 +290,7 @@ ca:
|
|
|
290
290
|
title: Edita adjunt
|
|
291
291
|
update: Actualitza
|
|
292
292
|
index:
|
|
293
|
-
attachments_title:
|
|
293
|
+
attachments_title: Fitxers adjunts
|
|
294
294
|
new:
|
|
295
295
|
create: Crea adjunt
|
|
296
296
|
title: Nou adjunt
|
|
@@ -523,7 +523,7 @@ ca:
|
|
|
523
523
|
impersonate: Impersonar
|
|
524
524
|
impersonate_existing_managed_user: Gestionar la participant "%{name}"
|
|
525
525
|
impersonate_existing_user: Gestionar la participant "%{name}"
|
|
526
|
-
impersonate_new_managed_user:
|
|
526
|
+
impersonate_new_managed_user: Gestiona una nova participant
|
|
527
527
|
imports:
|
|
528
528
|
and: i
|
|
529
529
|
data_errors:
|
|
@@ -579,7 +579,7 @@ ca:
|
|
|
579
579
|
promotions:
|
|
580
580
|
new:
|
|
581
581
|
explanation: Les participants gestionades es poden promocionar a participants estàndard. Significa que seran convidades al sistema i no podràs tornar a administrar-les. La participant convidada rebrà un correu electrònic per acceptar la vostra invitació.
|
|
582
|
-
new_managed_user_promotion: Nova promoció de participant
|
|
582
|
+
new_managed_user_promotion: Nova promoció de participant gestionada
|
|
583
583
|
promote: Promocionar
|
|
584
584
|
menu:
|
|
585
585
|
admin_log: Registre d'activitat d'administració
|
|
@@ -704,12 +704,12 @@ ca:
|
|
|
704
704
|
title: Desbloquejar
|
|
705
705
|
update_moderated_user_button: Desbloquejar usuàries
|
|
706
706
|
unreport:
|
|
707
|
-
title: Desfer denúncia
|
|
707
|
+
title: Desfer la denúncia
|
|
708
708
|
ignore:
|
|
709
709
|
update_moderated_user_button: Desfer la denúncia a les usuàries
|
|
710
710
|
title: Accions
|
|
711
711
|
unblock: Desbloquejar usuària
|
|
712
|
-
unreport: Desfer denúncia
|
|
712
|
+
unreport: Desfer la denúncia
|
|
713
713
|
cancel: Cancel·lar
|
|
714
714
|
name: Nom
|
|
715
715
|
nickname: Àlies
|
|
@@ -736,7 +736,7 @@ ca:
|
|
|
736
736
|
title: Tornar a mostrar
|
|
737
737
|
update_moderation_button: Tornar a mostrar els continguts seleccionats
|
|
738
738
|
unreport:
|
|
739
|
-
title: Desfer denúncia
|
|
739
|
+
title: Desfer la denúncia
|
|
740
740
|
update_moderation_button: Desfer la denúncia dels continguts seleccionats
|
|
741
741
|
cancel: Cancel·lar
|
|
742
742
|
selected: seleccionades
|
|
@@ -829,7 +829,7 @@ ca:
|
|
|
829
829
|
select_users_for_participatory_space: Enviar el butlletí informatiu a un o més espais de participació
|
|
830
830
|
select_users_general: Enviar un butlletí general
|
|
831
831
|
select_verification_types: Seleccionar mètodes de verificació
|
|
832
|
-
send_to_all_users: Envia a totes les
|
|
832
|
+
send_to_all_users: Envia a totes les participants
|
|
833
833
|
send_to_verified_users: Enviar a usuàries verificades
|
|
834
834
|
title: Selecciona les destinatàries a lliurar
|
|
835
835
|
verified_users_help: Envia un butlletí informatiu a tots els usuaris confirmats i verificats amb qualsevol dels mètodes de verificació seleccionats.
|
|
@@ -947,7 +947,7 @@ ca:
|
|
|
947
947
|
error: S'ha produït un error en afegir una participant privada a aquest espai de participació.
|
|
948
948
|
success: L'accés de la participant a l'espai de participació privat s'ha creat correctament.
|
|
949
949
|
destroy:
|
|
950
|
-
error: S'ha produït un error en eliminar una participant participada d'aquest espai
|
|
950
|
+
error: S'ha produït un error en eliminar una participant participada d'aquest espai de participació.
|
|
951
951
|
success: L'accés de la participant a l'espai de participació privat s'ha eliminat correctament.
|
|
952
952
|
edit:
|
|
953
953
|
title: Editar participant privada de l'espai de participació.
|
|
@@ -955,7 +955,7 @@ ca:
|
|
|
955
955
|
index:
|
|
956
956
|
import_via_csv: Importar des de CSV
|
|
957
957
|
publish_all: Publicar totes
|
|
958
|
-
title: Participant de l'espai
|
|
958
|
+
title: Participant de l'espai de participació privat
|
|
959
959
|
unpublish_all: Despublicar totes
|
|
960
960
|
new:
|
|
961
961
|
create: Crear
|
|
@@ -1246,11 +1246,11 @@ ca:
|
|
|
1246
1246
|
none: Cap
|
|
1247
1247
|
title: Editar element a "%{taxonomy}"
|
|
1248
1248
|
titles:
|
|
1249
|
-
admin_log: Registre d'administració
|
|
1249
|
+
admin_log: Registre d'activitat d'administració
|
|
1250
1250
|
area_types: Tipus d'àrees
|
|
1251
1251
|
areas: Àrees
|
|
1252
1252
|
authorization_workflows: Mètodes de verificació
|
|
1253
|
-
dashboard: Tauler
|
|
1253
|
+
dashboard: Tauler d'administració
|
|
1254
1254
|
edit_external_domains: Llistat de dominis externs permesos
|
|
1255
1255
|
edit_landing_page: Continguts de la pàgina
|
|
1256
1256
|
edit_organization_appearance: Edita l'aparença de la pàgina d'inici
|
|
@@ -1266,7 +1266,7 @@ ca:
|
|
|
1266
1266
|
scopes: Àmbits
|
|
1267
1267
|
statistics: Activitat
|
|
1268
1268
|
taxonomies: Taxonomies
|
|
1269
|
-
taxonomy_filters:
|
|
1269
|
+
taxonomy_filters: Filtres de taxonomia per a "%{taxonomy}"
|
|
1270
1270
|
user_groups: Grups
|
|
1271
1271
|
users: Administradores
|
|
1272
1272
|
tooltips:
|
|
@@ -1326,6 +1326,10 @@ ca:
|
|
|
1326
1326
|
last_week: La darrera setmana
|
|
1327
1327
|
no_users_count_statistics_yet: Encara no hi ha estadístiques de recompte de participants.
|
|
1328
1328
|
participants: Participants
|
|
1329
|
+
components:
|
|
1330
|
+
settings:
|
|
1331
|
+
global:
|
|
1332
|
+
taxonomy_filters_unavailable: Podràs seleccionar filtres de taxonomia un cop creat el component.
|
|
1329
1333
|
forms:
|
|
1330
1334
|
errors:
|
|
1331
1335
|
impersonate_user:
|
|
@@ -1349,7 +1353,7 @@ ca:
|
|
|
1349
1353
|
parent_hidden: No es pot mostrar aquest recurs perquè està inclòs dins un altre recurs ("pare") que segueix ocult.
|
|
1350
1354
|
title: Accions
|
|
1351
1355
|
unhide: Tornar a mostrar
|
|
1352
|
-
unreport: Desfer denúncia
|
|
1356
|
+
unreport: Desfer la denúncia
|
|
1353
1357
|
admin:
|
|
1354
1358
|
reportable:
|
|
1355
1359
|
bulk_action:
|
data/config/locales/cs.yml
CHANGED
|
@@ -273,7 +273,7 @@ cs:
|
|
|
273
273
|
title: Upravit složku
|
|
274
274
|
update: Aktualizace
|
|
275
275
|
index:
|
|
276
|
-
attachment_collections_title: Složky
|
|
276
|
+
attachment_collections_title: Složky příloh
|
|
277
277
|
new:
|
|
278
278
|
create: Vytvořit
|
|
279
279
|
title: Nová složka
|
|
@@ -367,7 +367,6 @@ cs:
|
|
|
367
367
|
text: Hledat podle aktuálního uživatelského e-mailu, jména nebo přezdívky.
|
|
368
368
|
managed_user_name: Spravovaný uživatel
|
|
369
369
|
solved: Vyřešeno
|
|
370
|
-
title: Konflikty ověření
|
|
371
370
|
transfer:
|
|
372
371
|
email: E-mail
|
|
373
372
|
error: Při převodu aktuálního účastníka na spravovaného účastníka došlo k chybě.
|
|
@@ -589,7 +588,6 @@ cs:
|
|
|
589
588
|
promotions:
|
|
590
589
|
new:
|
|
591
590
|
explanation: Spravovaní uživatelé mohou být povýšeni na standardní uživatele. Znamená to, že budou pozváni do aplikace a nebudete je moci znovu předstírat. Pozvaný uživatel obdrží e-mail, ve kterém přijme vaši pozvánku.
|
|
592
|
-
new_managed_user_promotion: Nová spravovaná podpora pro uživatele
|
|
593
591
|
promote: Podporovat
|
|
594
592
|
menu:
|
|
595
593
|
admin_log: Protokol aktivity správce
|
|
@@ -784,7 +782,6 @@ cs:
|
|
|
784
782
|
title: Šablony zpravodaje
|
|
785
783
|
use_template: Použít tuto šablonu
|
|
786
784
|
show:
|
|
787
|
-
preview: 'Náhled šablony: %{template_name}'
|
|
788
785
|
use_template: Použít tuto šablonu
|
|
789
786
|
newsletters:
|
|
790
787
|
confirm_recipients:
|
|
@@ -1260,7 +1257,6 @@ cs:
|
|
|
1260
1257
|
none: Žádné
|
|
1261
1258
|
title: Nová položka v %{taxonomy}
|
|
1262
1259
|
titles:
|
|
1263
|
-
admin_log: Správce protokolu
|
|
1264
1260
|
area_types: Typy oblastí
|
|
1265
1261
|
areas: Oblasti
|
|
1266
1262
|
authorization_workflows: Metody ověření
|
|
@@ -1268,15 +1264,14 @@ cs:
|
|
|
1268
1264
|
edit_external_domains: Seznam povolených externích domén
|
|
1269
1265
|
edit_landing_page: Obsah stránky
|
|
1270
1266
|
edit_organization_appearance: Upravit vzhled domovské stránky
|
|
1271
|
-
impersonatable_users: Spravovatelní účastníci
|
|
1272
1267
|
impersonations: Správa účastníků
|
|
1273
1268
|
menu: Nabídka
|
|
1274
1269
|
metrics: Metriky
|
|
1275
1270
|
page_topics: Témata
|
|
1276
1271
|
pages: Stránky
|
|
1277
1272
|
panel: Admin
|
|
1278
|
-
participants:
|
|
1279
|
-
scope_types:
|
|
1273
|
+
participants: Účastníci
|
|
1274
|
+
scope_types: Typ oblasti působnosti
|
|
1280
1275
|
scopes: Oblasti působnosti
|
|
1281
1276
|
statistics: Aktivita
|
|
1282
1277
|
taxonomies: Taxonomie
|
|
@@ -1340,6 +1335,10 @@ cs:
|
|
|
1340
1335
|
last_week: Minulý týden
|
|
1341
1336
|
no_users_count_statistics_yet: Zatím nejsou žádné statistiky počtu účastníků.
|
|
1342
1337
|
participants: Účastníci
|
|
1338
|
+
components:
|
|
1339
|
+
settings:
|
|
1340
|
+
global:
|
|
1341
|
+
taxonomy_filters_unavailable: Výběr taxonomických filtrů bude možný po vytvoření komponenty.
|
|
1343
1342
|
forms:
|
|
1344
1343
|
errors:
|
|
1345
1344
|
impersonate_user:
|