decidim-admin 0.31.2 → 0.31.3
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 +3 -14
- data/config/locales/bg.yml +1 -14
- data/config/locales/bs-BA.yml +6 -7
- data/config/locales/ca-IT.yml +16 -12
- data/config/locales/ca.yml +16 -12
- data/config/locales/cs.yml +7 -8
- data/config/locales/de.yml +5 -18
- data/config/locales/el.yml +41 -13
- data/config/locales/en.yml +4 -0
- data/config/locales/eo.yml +0 -1
- data/config/locales/es-MX.yml +13 -9
- data/config/locales/es-PY.yml +13 -9
- data/config/locales/es.yml +24 -20
- 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 +3 -12
- data/config/locales/hu.yml +1 -16
- data/config/locales/id-ID.yml +2 -10
- data/config/locales/is-IS.yml +1 -5
- data/config/locales/it.yml +6 -14
- data/config/locales/ja.yml +13 -9
- data/config/locales/kaa.yml +5 -0
- data/config/locales/ko.yml +0 -11
- data/config/locales/lb.yml +3 -12
- data/config/locales/lt.yml +3 -14
- data/config/locales/lv.yml +2 -10
- data/config/locales/nl.yml +3 -13
- data/config/locales/no.yml +2 -12
- data/config/locales/pl.yml +1 -15
- data/config/locales/pt-BR.yml +6 -4
- data/config/locales/pt.yml +3 -12
- data/config/locales/ro-RO.yml +2 -14
- data/config/locales/ru.yml +3 -8
- data/config/locales/sk.yml +3 -11
- data/config/locales/sl.yml +2 -0
- data/config/locales/sq-AL.yml +2 -5
- data/config/locales/sr-CS.yml +6 -7
- data/config/locales/sv.yml +11 -21
- data/config/locales/tr-TR.yml +112 -16
- data/config/locales/uk.yml +1 -8
- data/config/locales/zh-CN.yml +1 -10
- 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: a496d564db404d845bf0c01d03777a3569c62edc12930b42f126931e83d5eac9
|
|
4
|
+
data.tar.gz: 4dc385ef84cbef63be1045e4a62120c25b8e71ac8580b54f7ada404bc988e9a8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 905379c99a3043d4a0782682b87e041f93305d0614f4e4ba3727839e3f8e35a05dc3db37b822dd8e8aa3c243e071752f56ae4cbb4f39b9360b126021a66335c4
|
|
7
|
+
data.tar.gz: 8fb9333dce766f2d4b07fd2ada389841b2a4c0c97d8cf7227d37418598b48bb6e14d0d2fe5cea82638a035ecc64f2cbdc40c8272f4da15afd82963b1f2c94ead
|
|
@@ -108,7 +108,8 @@ module Decidim
|
|
|
108
108
|
html = form.select(
|
|
109
109
|
name,
|
|
110
110
|
choices,
|
|
111
|
-
{ include_blank: attribute.include_blank, label: options[:label] }
|
|
111
|
+
{ include_blank: attribute.include_blank, label: options[:label] },
|
|
112
|
+
{ disabled: options[:readonly] || false }
|
|
112
113
|
)
|
|
113
114
|
html << content_tag(:p, options[:help_text], class: "help-text") if options[:help_text]
|
|
114
115
|
html
|
|
@@ -225,6 +226,8 @@ module Decidim
|
|
|
225
226
|
# @param name (see #settings_attribute_input)
|
|
226
227
|
# @param i18n_scope (see #settings_attribute_input)
|
|
227
228
|
def taxonomy_filters(form, name, i18n_scope)
|
|
229
|
+
return disabled_taxonomy_filters(name, i18n_scope) if @component&.new_record?
|
|
230
|
+
|
|
228
231
|
current_filters = content_tag(:div, class: "js-current-filters") do
|
|
229
232
|
render partial: "decidim/admin/taxonomy_filters_selector/component_table",
|
|
230
233
|
locals: { field_name: "#{form.object_name}[#{name}][]", component: @component }
|
|
@@ -248,6 +251,15 @@ module Decidim
|
|
|
248
251
|
|
|
249
252
|
label_tag(name, t(name, scope: i18n_scope)) + container + drawer
|
|
250
253
|
end
|
|
254
|
+
|
|
255
|
+
def disabled_taxonomy_filters(name, i18n_scope)
|
|
256
|
+
container = content_tag(:div) do
|
|
257
|
+
message = t("taxonomy_filters_unavailable", scope: "decidim.components.settings.global")
|
|
258
|
+
content_tag(:p, message, class: "help-text")
|
|
259
|
+
end
|
|
260
|
+
|
|
261
|
+
label_tag(name, t(name, scope: i18n_scope)) + container
|
|
262
|
+
end
|
|
251
263
|
end
|
|
252
264
|
end
|
|
253
265
|
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
|
@@ -224,8 +224,6 @@ ar:
|
|
|
224
224
|
edit:
|
|
225
225
|
title: تحرير المجلد
|
|
226
226
|
update: تحديث
|
|
227
|
-
index:
|
|
228
|
-
attachment_collections_title: مجلدات المرفقات
|
|
229
227
|
new:
|
|
230
228
|
create: إنشاء
|
|
231
229
|
title: مجلد جديد
|
|
@@ -241,8 +239,6 @@ ar:
|
|
|
241
239
|
edit:
|
|
242
240
|
title: تحرير المرفق
|
|
243
241
|
update: تحديث
|
|
244
|
-
index:
|
|
245
|
-
attachments_title: المرفقات
|
|
246
242
|
new:
|
|
247
243
|
create: إنشاء مرفق
|
|
248
244
|
title: مرفق جديد
|
|
@@ -283,7 +279,6 @@ ar:
|
|
|
283
279
|
title: 'إضافة مكون: %{name}'
|
|
284
280
|
publish:
|
|
285
281
|
success: تم نشر المكون بنجاح.
|
|
286
|
-
title: المكونات
|
|
287
282
|
unpublish:
|
|
288
283
|
success: تم إلغاء نشر المكون بنجاح.
|
|
289
284
|
update:
|
|
@@ -294,7 +289,6 @@ ar:
|
|
|
294
289
|
'false': 'لا'
|
|
295
290
|
managed_user_name: المستخدم المُدار
|
|
296
291
|
solved: تم حلها
|
|
297
|
-
title: تضارب التحقق
|
|
298
292
|
transfer:
|
|
299
293
|
email: البريد الإلكتروني
|
|
300
294
|
name: الإسم
|
|
@@ -436,7 +430,6 @@ ar:
|
|
|
436
430
|
promotions:
|
|
437
431
|
new:
|
|
438
432
|
explanation: يمكن ترقية المشاركين المدارين إلى مشاركين عاديين. يعني ذلك أنه سيتم دعوتهم إلى التطبيق ولن تتمكن من إدارته مرة أخرى. سيتلقى المشارك المدعو رسالة بريد إلكتروني لقبول دعوتك.
|
|
439
|
-
new_managed_user_promotion: ترويج مشارك جديد مُدار
|
|
440
433
|
promote: تروج \ يشجع \ يعزز \ ينمى \ يطور
|
|
441
434
|
menu:
|
|
442
435
|
admin_log: سجل نشاط المسؤول
|
|
@@ -770,21 +763,17 @@ ar:
|
|
|
770
763
|
new:
|
|
771
764
|
save: حفظ
|
|
772
765
|
titles:
|
|
773
|
-
admin_log: سجل المسؤول
|
|
774
766
|
area_types: أنواع المناطق
|
|
775
767
|
areas: المناطق
|
|
776
768
|
authorization_workflows: طرق التحقق
|
|
777
|
-
dashboard: لوحة القيادة
|
|
778
|
-
impersonatable_users: المشاركون في الإدارة
|
|
779
769
|
impersonations: إدارة المشاركين
|
|
780
770
|
menu: القائمة الرئيسية
|
|
781
771
|
page_topics: المواضيع
|
|
782
|
-
pages:
|
|
772
|
+
pages: صفحات
|
|
783
773
|
panel: مدير
|
|
784
|
-
participants:
|
|
785
|
-
scope_types: أنواع
|
|
774
|
+
participants: المشاركون
|
|
775
|
+
scope_types: أنواع المجال
|
|
786
776
|
scopes: مجالات
|
|
787
|
-
users: المدراء
|
|
788
777
|
users:
|
|
789
778
|
create:
|
|
790
779
|
error: كانت هناك مشكلة في دعوة هذا المشرف.
|
data/config/locales/bg.yml
CHANGED
|
@@ -197,7 +197,6 @@ bg:
|
|
|
197
197
|
alert: 'Задължително: Прегледайте нашите административни условия за ползване'
|
|
198
198
|
callout: Моля, отделете малко време, за да прегледате административните условия за ползване. В противен случай, няма да можете да администрирате платформата.
|
|
199
199
|
cta: Прегледайте ги сега.
|
|
200
|
-
title: Административни условия на услугата
|
|
201
200
|
area_types:
|
|
202
201
|
create:
|
|
203
202
|
error: Възникна проблем при създаването на нов тип област.
|
|
@@ -239,8 +238,6 @@ bg:
|
|
|
239
238
|
edit:
|
|
240
239
|
title: Редактиране на папка
|
|
241
240
|
update: Актуализация
|
|
242
|
-
index:
|
|
243
|
-
attachment_collections_title: Папки с прикачени файлове
|
|
244
241
|
new:
|
|
245
242
|
create: Създаване
|
|
246
243
|
title: Нова папка
|
|
@@ -256,8 +253,6 @@ bg:
|
|
|
256
253
|
edit:
|
|
257
254
|
title: Редактиране на прикачения файл
|
|
258
255
|
update: Актуализация
|
|
259
|
-
index:
|
|
260
|
-
attachments_title: Прикачени файлове
|
|
261
256
|
new:
|
|
262
257
|
create: Създаване на прикачен файл
|
|
263
258
|
title: Нов прикачен файл
|
|
@@ -323,7 +318,6 @@ bg:
|
|
|
323
318
|
'false': 'Не'
|
|
324
319
|
managed_user_name: Управляван потребител
|
|
325
320
|
solved: Разрешен случай
|
|
326
|
-
title: Проверка на конфликти
|
|
327
321
|
transfer:
|
|
328
322
|
email: Имейл
|
|
329
323
|
error: Възникна проблем при прехвърлянето на текущия участник към управляван участник.
|
|
@@ -520,7 +514,6 @@ bg:
|
|
|
520
514
|
promotions:
|
|
521
515
|
new:
|
|
522
516
|
explanation: Управляваните участници могат да бъдат повишавани до стандартни участници. Това означава, че ще бъдат поканени в приложението и повече няма да можете да ги управлявате. Поканеният участник ще получи имейл, за да приеме поканата Ви.
|
|
523
|
-
new_managed_user_promotion: Ново повишение на управляван участник
|
|
524
517
|
promote: Повишаване
|
|
525
518
|
menu:
|
|
526
519
|
admin_log: Регистър на дейността на администраторите
|
|
@@ -665,7 +658,6 @@ bg:
|
|
|
665
658
|
title: Шаблони за бюлетин
|
|
666
659
|
use_template: Използване на този шаблон
|
|
667
660
|
show:
|
|
668
|
-
preview: 'Визуализация на шаблона: %{template_name}'
|
|
669
661
|
use_template: Използване на този шаблон
|
|
670
662
|
newsletters:
|
|
671
663
|
create:
|
|
@@ -779,7 +771,6 @@ bg:
|
|
|
779
771
|
up: Горе
|
|
780
772
|
form:
|
|
781
773
|
add: Добави в листа с позволени
|
|
782
|
-
title: Лист с позволени външни домейни
|
|
783
774
|
participatory_space_private_users:
|
|
784
775
|
create:
|
|
785
776
|
error: Възникна проблем при добавянето на частен участник за това пространство за участие.
|
|
@@ -935,13 +926,9 @@ bg:
|
|
|
935
926
|
actions:
|
|
936
927
|
new_taxonomy_filter: Нов класификационен филтър
|
|
937
928
|
titles:
|
|
938
|
-
admin_log: Администраторски регистри
|
|
939
929
|
area_types: Типове области
|
|
940
930
|
areas: Области
|
|
941
931
|
authorization_workflows: Методи за проверка
|
|
942
|
-
dashboard: Контролен панел
|
|
943
|
-
edit_external_domains: Лист с позволени външни домейни
|
|
944
|
-
impersonatable_users: Управляеми участници
|
|
945
932
|
impersonations: Управление на участниците
|
|
946
933
|
menu: Меню
|
|
947
934
|
page_topics: Tеми
|
|
@@ -950,7 +937,7 @@ bg:
|
|
|
950
937
|
participants: Участници
|
|
951
938
|
scope_types: Типове на обхвата
|
|
952
939
|
scopes: Обхвати
|
|
953
|
-
|
|
940
|
+
taxonomies: Категоризации
|
|
954
941
|
users:
|
|
955
942
|
create:
|
|
956
943
|
error: Възникна проблем с поканата на този администратор.
|
data/config/locales/bs-BA.yml
CHANGED
|
@@ -148,8 +148,6 @@ bs:
|
|
|
148
148
|
edit:
|
|
149
149
|
title: Izmeni fasciklu
|
|
150
150
|
update: Ažuriraj
|
|
151
|
-
index:
|
|
152
|
-
attachment_collections_title: Fascikle priloga
|
|
153
151
|
new:
|
|
154
152
|
create: Stvori
|
|
155
153
|
title: Nova fascikla
|
|
@@ -165,8 +163,6 @@ bs:
|
|
|
165
163
|
edit:
|
|
166
164
|
title: Izmeni prilog
|
|
167
165
|
update: Ažuriraj
|
|
168
|
-
index:
|
|
169
|
-
attachments_title: Prilozi
|
|
170
166
|
new:
|
|
171
167
|
create: Stvori prilog
|
|
172
168
|
title: Novi prilog
|
|
@@ -204,7 +200,6 @@ bs:
|
|
|
204
200
|
title: 'Dodaj komponentu: %{name}'
|
|
205
201
|
publish:
|
|
206
202
|
success: Komponenta je uspešno objavljena.
|
|
207
|
-
title: Komponente
|
|
208
203
|
unpublish:
|
|
209
204
|
success: Objava komponente je uspešno povučena.
|
|
210
205
|
update:
|
|
@@ -279,7 +274,6 @@ bs:
|
|
|
279
274
|
promotions:
|
|
280
275
|
new:
|
|
281
276
|
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.
|
|
282
|
-
new_managed_user_promotion: Unapređenje novog upravljanog učesnika
|
|
283
277
|
promote: Unapredi
|
|
284
278
|
menu:
|
|
285
279
|
admin_log: Zapisnik aktivnosti administratora
|
|
@@ -370,7 +364,6 @@ bs:
|
|
|
370
364
|
title: Šabloni biltena
|
|
371
365
|
use_template: Koristite ovaj šablon
|
|
372
366
|
show:
|
|
373
|
-
preview: 'Pregledajte šablon %{template_name}'
|
|
374
367
|
use_template: Koristite ovaj šablon
|
|
375
368
|
newsletters:
|
|
376
369
|
create:
|
|
@@ -408,6 +401,7 @@ bs:
|
|
|
408
401
|
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.
|
|
409
402
|
recipients_count: Ovaj bilten biće dostavljen %{count} korisnicima.
|
|
410
403
|
select_spaces: Izaberite prostore da podelite bilten
|
|
404
|
+
send_to_all_users: Pošalji svim korisnicima
|
|
411
405
|
title: Izaberi primaoce za dostavu
|
|
412
406
|
warning: "Pažnja: Ovaj bilten će biti poslan samo korisnicima koji su aktivirali Želim da dobijam biltene u svojim podešavanjima obaveštenja."
|
|
413
407
|
show:
|
|
@@ -462,6 +456,11 @@ bs:
|
|
|
462
456
|
gallery:
|
|
463
457
|
add_images: Dodaj slike
|
|
464
458
|
gallery_legend: Dodaj galeriju slika (opciono)
|
|
459
|
+
titles:
|
|
460
|
+
area_types: Tipovi oblasti
|
|
461
|
+
pages: Stranice
|
|
462
|
+
participants: Učesnici
|
|
463
|
+
scope_types: Vrste oblasti
|
|
465
464
|
users_statistics:
|
|
466
465
|
users_count:
|
|
467
466
|
last_day: Poslednji dan
|
data/config/locales/ca-IT.yml
CHANGED
|
@@ -198,7 +198,7 @@ ca-IT:
|
|
|
198
198
|
newsletter:
|
|
199
199
|
new: Nou butlletí
|
|
200
200
|
participatory_space_private_user:
|
|
201
|
-
new:
|
|
201
|
+
new: Nova participant privada de l'espai de participació
|
|
202
202
|
per_page: Per pàgina
|
|
203
203
|
permissions: Gestionar els permisos
|
|
204
204
|
restore: Restaurar
|
|
@@ -222,7 +222,7 @@ ca-IT:
|
|
|
222
222
|
alert: 'Necessari: revisa les nostres condicions del servei d''administració'
|
|
223
223
|
callout: Si us plau, dedica un moment a revisar les condicions del servei d'administració. En cas contrari, no podràs administrar la plataforma.
|
|
224
224
|
cta: Revisar-les ara.
|
|
225
|
-
title: Termes i condicions
|
|
225
|
+
title: Termes i condicions d'ús para administradores
|
|
226
226
|
area_types:
|
|
227
227
|
create:
|
|
228
228
|
error: S'ha produït un error en crear un tipus d'àrea nova.
|
|
@@ -283,7 +283,7 @@ ca-IT:
|
|
|
283
283
|
title: Edita adjunt
|
|
284
284
|
update: Actualitza
|
|
285
285
|
index:
|
|
286
|
-
attachments_title:
|
|
286
|
+
attachments_title: Fitxers adjunts
|
|
287
287
|
new:
|
|
288
288
|
create: Crea adjunt
|
|
289
289
|
title: Nou adjunt
|
|
@@ -520,7 +520,7 @@ ca-IT:
|
|
|
520
520
|
impersonate: Impersonar
|
|
521
521
|
impersonate_existing_managed_user: Gestionar la participant "%{name}"
|
|
522
522
|
impersonate_existing_user: Gestionar la participant "%{name}"
|
|
523
|
-
impersonate_new_managed_user:
|
|
523
|
+
impersonate_new_managed_user: Gestiona una nova participant
|
|
524
524
|
imports:
|
|
525
525
|
and: i
|
|
526
526
|
data_errors:
|
|
@@ -576,7 +576,7 @@ ca-IT:
|
|
|
576
576
|
promotions:
|
|
577
577
|
new:
|
|
578
578
|
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ó.
|
|
579
|
-
new_managed_user_promotion: Nova promoció de participant
|
|
579
|
+
new_managed_user_promotion: Nova promoció de participant gestionada
|
|
580
580
|
promote: Promocionar
|
|
581
581
|
menu:
|
|
582
582
|
admin_log: Registre d'activitat d'administració
|
|
@@ -689,7 +689,7 @@ ca-IT:
|
|
|
689
689
|
title: Desbloquejar
|
|
690
690
|
update_moderated_user_button: Desbloquejar usuàries
|
|
691
691
|
unreport:
|
|
692
|
-
title: Desfer denúncia
|
|
692
|
+
title: Desfer la denúncia
|
|
693
693
|
ignore:
|
|
694
694
|
update_moderated_user_button: Desfer la denúncia a les usuàries
|
|
695
695
|
title: Accions
|
|
@@ -814,7 +814,7 @@ ca-IT:
|
|
|
814
814
|
select_users_for_participatory_space: Enviar el butlletí informatiu a un o més espais de participació
|
|
815
815
|
select_users_general: Enviar un butlletí general
|
|
816
816
|
select_verification_types: Seleccionar mètodes de verificació
|
|
817
|
-
send_to_all_users: Envia a totes les
|
|
817
|
+
send_to_all_users: Envia a totes les participants
|
|
818
818
|
send_to_verified_users: Enviar a usuàries verificades
|
|
819
819
|
title: Selecciona les destinatàries a lliurar
|
|
820
820
|
verified_users_help: Envia un butlletí informatiu a tots els usuaris confirmats i verificats amb qualsevol dels mètodes de verificació seleccionats.
|
|
@@ -925,7 +925,7 @@ ca-IT:
|
|
|
925
925
|
error: S'ha produït un error en afegir una participant privada a aquest espai de participació.
|
|
926
926
|
success: L'accés de la participant a l'espai de participació privat s'ha creat correctament.
|
|
927
927
|
destroy:
|
|
928
|
-
error: S'ha produït un error en eliminar una participant participada d'aquest espai
|
|
928
|
+
error: S'ha produït un error en eliminar una participant participada d'aquest espai de participació.
|
|
929
929
|
success: L'accés de la participant a l'espai de participació privat s'ha eliminat correctament.
|
|
930
930
|
edit:
|
|
931
931
|
title: Editar participant privada de l'espai de participació.
|
|
@@ -933,7 +933,7 @@ ca-IT:
|
|
|
933
933
|
index:
|
|
934
934
|
import_via_csv: Importar des de CSV
|
|
935
935
|
publish_all: Publicar totes
|
|
936
|
-
title: Participant de l'espai
|
|
936
|
+
title: Participant de l'espai de participació privat
|
|
937
937
|
unpublish_all: Despublicar totes
|
|
938
938
|
new:
|
|
939
939
|
create: Crear
|
|
@@ -1224,11 +1224,11 @@ ca-IT:
|
|
|
1224
1224
|
none: Cap
|
|
1225
1225
|
title: Editar element a "%{taxonomy}"
|
|
1226
1226
|
titles:
|
|
1227
|
-
admin_log: Registre d'administració
|
|
1227
|
+
admin_log: Registre d'activitat d'administració
|
|
1228
1228
|
area_types: Tipus d'àrees
|
|
1229
1229
|
areas: Àrees
|
|
1230
1230
|
authorization_workflows: Mètodes de verificació
|
|
1231
|
-
dashboard: Tauler
|
|
1231
|
+
dashboard: Tauler d'administració
|
|
1232
1232
|
edit_external_domains: Llistat de dominis externs permesos
|
|
1233
1233
|
impersonatable_users: Participants que es poden gestionar
|
|
1234
1234
|
impersonations: Gestió de participants
|
|
@@ -1241,7 +1241,7 @@ ca-IT:
|
|
|
1241
1241
|
scopes: Àmbits
|
|
1242
1242
|
statistics: Estadístiques
|
|
1243
1243
|
taxonomies: Taxonomies
|
|
1244
|
-
taxonomy_filters:
|
|
1244
|
+
taxonomy_filters: Filtres de taxonomia per a "%{taxonomy}"
|
|
1245
1245
|
users: Administradores
|
|
1246
1246
|
tooltips:
|
|
1247
1247
|
cannot_destroy_taxonomy_filter: No es pot eliminar aquest filtre de taxonomia
|
|
@@ -1277,6 +1277,10 @@ ca-IT:
|
|
|
1277
1277
|
last_week: La darrera setmana
|
|
1278
1278
|
no_users_count_statistics_yet: Encara no hi ha estadístiques de recompte de participants.
|
|
1279
1279
|
participants: Participants
|
|
1280
|
+
components:
|
|
1281
|
+
settings:
|
|
1282
|
+
global:
|
|
1283
|
+
taxonomy_filters_unavailable: Podràs seleccionar filtres de taxonomia un cop creat el component.
|
|
1280
1284
|
forms:
|
|
1281
1285
|
errors:
|
|
1282
1286
|
impersonate_user:
|
data/config/locales/ca.yml
CHANGED
|
@@ -198,7 +198,7 @@ ca:
|
|
|
198
198
|
newsletter:
|
|
199
199
|
new: Nou butlletí
|
|
200
200
|
participatory_space_private_user:
|
|
201
|
-
new:
|
|
201
|
+
new: Nova participant privada de l'espai de participació
|
|
202
202
|
per_page: Per pàgina
|
|
203
203
|
permissions: Gestionar els permisos
|
|
204
204
|
restore: Restaurar
|
|
@@ -222,7 +222,7 @@ ca:
|
|
|
222
222
|
alert: 'Necessari: revisa les nostres condicions del servei d''administració'
|
|
223
223
|
callout: Si us plau, dedica un moment a revisar les condicions del servei d'administració. En cas contrari, no podràs administrar la plataforma.
|
|
224
224
|
cta: Revisar-les ara.
|
|
225
|
-
title: Termes i condicions
|
|
225
|
+
title: Termes i condicions d'ús para administradores
|
|
226
226
|
area_types:
|
|
227
227
|
create:
|
|
228
228
|
error: S'ha produït un error en crear un tipus d'àrea nova.
|
|
@@ -283,7 +283,7 @@ ca:
|
|
|
283
283
|
title: Edita adjunt
|
|
284
284
|
update: Actualitza
|
|
285
285
|
index:
|
|
286
|
-
attachments_title:
|
|
286
|
+
attachments_title: Fitxers adjunts
|
|
287
287
|
new:
|
|
288
288
|
create: Crea adjunt
|
|
289
289
|
title: Nou adjunt
|
|
@@ -520,7 +520,7 @@ ca:
|
|
|
520
520
|
impersonate: Impersonar
|
|
521
521
|
impersonate_existing_managed_user: Gestionar la participant "%{name}"
|
|
522
522
|
impersonate_existing_user: Gestionar la participant "%{name}"
|
|
523
|
-
impersonate_new_managed_user:
|
|
523
|
+
impersonate_new_managed_user: Gestiona una nova participant
|
|
524
524
|
imports:
|
|
525
525
|
and: i
|
|
526
526
|
data_errors:
|
|
@@ -576,7 +576,7 @@ ca:
|
|
|
576
576
|
promotions:
|
|
577
577
|
new:
|
|
578
578
|
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ó.
|
|
579
|
-
new_managed_user_promotion: Nova promoció de participant
|
|
579
|
+
new_managed_user_promotion: Nova promoció de participant gestionada
|
|
580
580
|
promote: Promocionar
|
|
581
581
|
menu:
|
|
582
582
|
admin_log: Registre d'activitat d'administració
|
|
@@ -689,7 +689,7 @@ ca:
|
|
|
689
689
|
title: Desbloquejar
|
|
690
690
|
update_moderated_user_button: Desbloquejar usuàries
|
|
691
691
|
unreport:
|
|
692
|
-
title: Desfer denúncia
|
|
692
|
+
title: Desfer la denúncia
|
|
693
693
|
ignore:
|
|
694
694
|
update_moderated_user_button: Desfer la denúncia a les usuàries
|
|
695
695
|
title: Accions
|
|
@@ -814,7 +814,7 @@ ca:
|
|
|
814
814
|
select_users_for_participatory_space: Enviar el butlletí informatiu a un o més espais de participació
|
|
815
815
|
select_users_general: Enviar un butlletí general
|
|
816
816
|
select_verification_types: Seleccionar mètodes de verificació
|
|
817
|
-
send_to_all_users: Envia a totes les
|
|
817
|
+
send_to_all_users: Envia a totes les participants
|
|
818
818
|
send_to_verified_users: Enviar a usuàries verificades
|
|
819
819
|
title: Selecciona les destinatàries a lliurar
|
|
820
820
|
verified_users_help: Envia un butlletí informatiu a tots els usuaris confirmats i verificats amb qualsevol dels mètodes de verificació seleccionats.
|
|
@@ -925,7 +925,7 @@ ca:
|
|
|
925
925
|
error: S'ha produït un error en afegir una participant privada a aquest espai de participació.
|
|
926
926
|
success: L'accés de la participant a l'espai de participació privat s'ha creat correctament.
|
|
927
927
|
destroy:
|
|
928
|
-
error: S'ha produït un error en eliminar una participant participada d'aquest espai
|
|
928
|
+
error: S'ha produït un error en eliminar una participant participada d'aquest espai de participació.
|
|
929
929
|
success: L'accés de la participant a l'espai de participació privat s'ha eliminat correctament.
|
|
930
930
|
edit:
|
|
931
931
|
title: Editar participant privada de l'espai de participació.
|
|
@@ -933,7 +933,7 @@ ca:
|
|
|
933
933
|
index:
|
|
934
934
|
import_via_csv: Importar des de CSV
|
|
935
935
|
publish_all: Publicar totes
|
|
936
|
-
title: Participant de l'espai
|
|
936
|
+
title: Participant de l'espai de participació privat
|
|
937
937
|
unpublish_all: Despublicar totes
|
|
938
938
|
new:
|
|
939
939
|
create: Crear
|
|
@@ -1224,11 +1224,11 @@ ca:
|
|
|
1224
1224
|
none: Cap
|
|
1225
1225
|
title: Editar element a "%{taxonomy}"
|
|
1226
1226
|
titles:
|
|
1227
|
-
admin_log: Registre d'administració
|
|
1227
|
+
admin_log: Registre d'activitat d'administració
|
|
1228
1228
|
area_types: Tipus d'àrees
|
|
1229
1229
|
areas: Àrees
|
|
1230
1230
|
authorization_workflows: Mètodes de verificació
|
|
1231
|
-
dashboard: Tauler
|
|
1231
|
+
dashboard: Tauler d'administració
|
|
1232
1232
|
edit_external_domains: Llistat de dominis externs permesos
|
|
1233
1233
|
impersonatable_users: Participants que es poden gestionar
|
|
1234
1234
|
impersonations: Gestió de participants
|
|
@@ -1241,7 +1241,7 @@ ca:
|
|
|
1241
1241
|
scopes: Àmbits
|
|
1242
1242
|
statistics: Estadístiques
|
|
1243
1243
|
taxonomies: Taxonomies
|
|
1244
|
-
taxonomy_filters:
|
|
1244
|
+
taxonomy_filters: Filtres de taxonomia per a "%{taxonomy}"
|
|
1245
1245
|
users: Administradores
|
|
1246
1246
|
tooltips:
|
|
1247
1247
|
cannot_destroy_taxonomy_filter: No es pot eliminar aquest filtre de taxonomia
|
|
@@ -1277,6 +1277,10 @@ ca:
|
|
|
1277
1277
|
last_week: La darrera setmana
|
|
1278
1278
|
no_users_count_statistics_yet: Encara no hi ha estadístiques de recompte de participants.
|
|
1279
1279
|
participants: Participants
|
|
1280
|
+
components:
|
|
1281
|
+
settings:
|
|
1282
|
+
global:
|
|
1283
|
+
taxonomy_filters_unavailable: Podràs seleccionar filtres de taxonomia un cop creat el component.
|
|
1280
1284
|
forms:
|
|
1281
1285
|
errors:
|
|
1282
1286
|
impersonate_user:
|
data/config/locales/cs.yml
CHANGED
|
@@ -266,7 +266,7 @@ cs:
|
|
|
266
266
|
title: Upravit složku
|
|
267
267
|
update: Aktualizace
|
|
268
268
|
index:
|
|
269
|
-
attachment_collections_title: Složky
|
|
269
|
+
attachment_collections_title: Složky příloh
|
|
270
270
|
new:
|
|
271
271
|
create: Vytvořit
|
|
272
272
|
title: Nová složka
|
|
@@ -360,7 +360,6 @@ cs:
|
|
|
360
360
|
text: Hledat podle aktuálního uživatelského e-mailu, jména nebo přezdívky
|
|
361
361
|
managed_user_name: Spravovaný uživatel
|
|
362
362
|
solved: Vyřešeno
|
|
363
|
-
title: Konflikty ověření
|
|
364
363
|
transfer:
|
|
365
364
|
email: E-mail
|
|
366
365
|
error: Při převodu aktuálního účastníka na spravovaného účastníka došlo k chybě.
|
|
@@ -586,7 +585,6 @@ cs:
|
|
|
586
585
|
promotions:
|
|
587
586
|
new:
|
|
588
587
|
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.
|
|
589
|
-
new_managed_user_promotion: Nová spravovaná podpora pro uživatele
|
|
590
588
|
promote: Podporovat
|
|
591
589
|
menu:
|
|
592
590
|
admin_log: Protokol aktivity správce
|
|
@@ -769,7 +767,6 @@ cs:
|
|
|
769
767
|
title: Šablony zpravodaje
|
|
770
768
|
use_template: Použít tuto šablonu
|
|
771
769
|
show:
|
|
772
|
-
preview: 'Náhled šablony: %{template_name}'
|
|
773
770
|
use_template: Použít tuto šablonu
|
|
774
771
|
newsletters:
|
|
775
772
|
confirm_recipients:
|
|
@@ -1238,20 +1235,18 @@ cs:
|
|
|
1238
1235
|
none: Žádné
|
|
1239
1236
|
title: Nová položka v %{taxonomy}
|
|
1240
1237
|
titles:
|
|
1241
|
-
admin_log: Správce protokolu
|
|
1242
1238
|
area_types: Typy oblastí
|
|
1243
1239
|
areas: Oblasti
|
|
1244
1240
|
authorization_workflows: Metody ověření
|
|
1245
1241
|
dashboard: Ovládací panel
|
|
1246
1242
|
edit_external_domains: Seznam povolených externích domén
|
|
1247
|
-
impersonatable_users: Spravovatelní účastníci
|
|
1248
1243
|
impersonations: Správa účastníků
|
|
1249
1244
|
menu: Nabídka
|
|
1250
1245
|
page_topics: Témata
|
|
1251
1246
|
pages: Stránky
|
|
1252
1247
|
panel: Admin
|
|
1253
|
-
participants:
|
|
1254
|
-
scope_types:
|
|
1248
|
+
participants: Účastníci
|
|
1249
|
+
scope_types: Typ oblasti působnosti
|
|
1255
1250
|
scopes: Oblasti působnosti
|
|
1256
1251
|
statistics: Statistiky
|
|
1257
1252
|
taxonomies: Taxonomie
|
|
@@ -1291,6 +1286,10 @@ cs:
|
|
|
1291
1286
|
last_week: Minulý týden
|
|
1292
1287
|
no_users_count_statistics_yet: Zatím nejsou žádné statistiky počtu účastníků.
|
|
1293
1288
|
participants: Účastníci
|
|
1289
|
+
components:
|
|
1290
|
+
settings:
|
|
1291
|
+
global:
|
|
1292
|
+
taxonomy_filters_unavailable: Výběr taxonomických filtrů bude možný po vytvoření komponenty.
|
|
1294
1293
|
forms:
|
|
1295
1294
|
errors:
|
|
1296
1295
|
impersonate_user:
|