decidim-admin 0.28.1 → 0.29.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/cells/decidim/admin/content_block_cell.rb +0 -1
- data/app/cells/decidim/admin/results_per_page/show.erb +2 -2
- data/app/cells/decidim/admin/results_per_page_cell.rb +0 -2
- data/app/commands/decidim/admin/create_area.rb +4 -32
- data/app/commands/decidim/admin/create_area_type.rb +4 -33
- data/app/commands/decidim/admin/create_attachment.rb +5 -4
- data/app/commands/decidim/admin/create_attachment_collection.rb +3 -3
- data/app/commands/decidim/admin/create_category.rb +4 -37
- data/app/commands/decidim/admin/create_component.rb +7 -40
- data/app/commands/decidim/admin/create_newsletter.rb +11 -29
- data/app/commands/decidim/admin/create_participatory_space_private_user.rb +3 -3
- data/app/commands/decidim/admin/create_scope.rb +15 -32
- data/app/commands/decidim/admin/create_scope_type.rb +3 -32
- data/app/commands/decidim/admin/create_static_page.rb +6 -47
- data/app/commands/decidim/admin/create_static_page_topic.rb +4 -26
- data/app/commands/decidim/admin/deliver_newsletter.rb +4 -5
- data/app/commands/decidim/admin/destroy_area.rb +2 -25
- data/app/commands/decidim/admin/destroy_category.rb +4 -29
- data/app/commands/decidim/admin/destroy_component.rb +5 -42
- data/app/commands/decidim/admin/destroy_newsletter.rb +2 -30
- data/app/commands/decidim/admin/destroy_participatory_space_private_user.rb +5 -32
- data/app/commands/decidim/admin/destroy_scope.rb +6 -33
- data/app/commands/decidim/admin/officialize_user.rb +1 -1
- data/app/commands/decidim/admin/participatory_space/create_admin.rb +4 -4
- data/app/commands/decidim/admin/process_participatory_space_private_user_import_csv.rb +5 -4
- data/app/commands/decidim/admin/promote_managed_user.rb +4 -5
- data/app/commands/decidim/admin/unofficialize_user.rb +1 -1
- data/app/commands/decidim/admin/update_area.rb +2 -41
- data/app/commands/decidim/admin/update_area_type.rb +2 -42
- data/app/commands/decidim/admin/update_attachment.rb +10 -7
- data/app/commands/decidim/admin/update_attachment_collection.rb +3 -3
- data/app/commands/decidim/admin/update_category.rb +2 -45
- data/app/commands/decidim/admin/update_component.rb +4 -5
- data/app/commands/decidim/admin/update_component_permissions.rb +3 -3
- data/app/commands/decidim/admin/{update_external_domain_whitelist.rb → update_external_domain_allowlist.rb} +6 -5
- data/app/commands/decidim/admin/update_help_sections.rb +6 -3
- data/app/commands/decidim/admin/update_newsletter.rb +8 -8
- data/app/commands/decidim/admin/update_organization.rb +9 -53
- data/app/commands/decidim/admin/update_organization_appearance.rb +10 -81
- data/app/commands/decidim/admin/update_scope.rb +7 -40
- data/app/commands/decidim/admin/update_scope_type.rb +2 -42
- data/app/commands/decidim/admin/update_static_page.rb +5 -46
- data/app/commands/decidim/admin/update_static_page_topic.rb +2 -43
- data/app/constraints/decidim/admin/organization_dashboard_constraint.rb +1 -1
- data/app/controllers/concerns/decidim/admin/content_blocks/landing_page.rb +2 -2
- data/app/controllers/concerns/decidim/admin/filterable.rb +78 -3
- data/app/controllers/concerns/decidim/admin/global_moderation_context.rb +1 -1
- data/app/controllers/concerns/decidim/admin/needs_admin_tos_accepted.rb +0 -7
- data/app/controllers/concerns/decidim/admin/participatory_space_export.rb +1 -1
- data/app/controllers/decidim/admin/application_controller.rb +1 -0
- data/app/controllers/decidim/admin/area_types_controller.rb +8 -9
- data/app/controllers/decidim/admin/areas_controller.rb +1 -1
- data/app/controllers/decidim/admin/authorization_workflows_controller.rb +3 -1
- data/app/controllers/decidim/admin/categories_controller.rb +2 -2
- data/app/controllers/decidim/admin/component_permissions_controller.rb +1 -1
- data/app/controllers/decidim/admin/components_controller.rb +2 -2
- data/app/controllers/decidim/admin/concerns/has_attachment_collections.rb +2 -2
- data/app/controllers/decidim/admin/concerns/has_attachments.rb +2 -2
- data/app/controllers/decidim/admin/concerns/has_private_users.rb +1 -1
- data/app/controllers/decidim/admin/concerns/has_private_users_csv_import.rb +1 -1
- data/app/controllers/decidim/admin/help_sections_controller.rb +1 -1
- data/app/controllers/decidim/admin/managed_users/promotions_controller.rb +1 -1
- data/app/controllers/decidim/admin/moderations/reports_controller.rb +4 -4
- data/app/controllers/decidim/admin/moderations_controller.rb +7 -7
- data/app/controllers/decidim/admin/newsletter_templates_controller.rb +1 -1
- data/app/controllers/decidim/admin/newsletters_controller.rb +5 -5
- data/app/controllers/decidim/admin/organization_appearance_controller.rb +1 -1
- data/app/controllers/decidim/admin/organization_controller.rb +8 -5
- data/app/controllers/decidim/admin/{organization_external_domain_whitelist_controller.rb → organization_external_domain_allowlist_controller.rb} +7 -7
- data/app/controllers/decidim/admin/scope_types_controller.rb +7 -8
- data/app/controllers/decidim/admin/scopes_controller.rb +1 -1
- data/app/controllers/decidim/admin/share_tokens_controller.rb +1 -1
- data/app/controllers/decidim/admin/static_page_topics_controller.rb +2 -2
- data/app/controllers/decidim/admin/static_pages_controller.rb +2 -2
- data/app/forms/decidim/admin/attachment_form.rb +7 -1
- data/app/forms/decidim/admin/organization_appearance_form.rb +0 -3
- data/app/forms/decidim/admin/{organization_external_domain_whitelist_form.rb → organization_external_domain_allowlist_form.rb} +3 -3
- data/app/forms/decidim/admin/organization_form.rb +2 -2
- data/app/forms/decidim/admin/static_page_form.rb +0 -1
- data/app/helpers/decidim/admin/filterable_helper.rb +19 -3
- data/app/helpers/decidim/admin/moderations/reports_helper.rb +3 -1
- data/app/helpers/decidim/admin/newsletters_helper.rb +3 -3
- data/app/jobs/decidim/admin/import_participatory_space_private_user_csv_job.rb +2 -2
- data/app/packs/entrypoints/decidim_admin.js +4 -1
- data/app/packs/src/decidim/admin/application.js +25 -16
- data/app/packs/src/decidim/admin/choose_language.js +2 -0
- data/app/packs/src/decidim/admin/css_preview.js +39 -0
- data/app/packs/src/decidim/admin/dynamic_fields.component.js +2 -1
- data/app/packs/src/decidim/admin/form.js +18 -1
- data/app/packs/src/decidim/admin/participatory_space_search.js +1 -1
- data/app/packs/src/decidim/admin/proposal_infinite_edit.js +2 -2
- data/app/packs/src/decidim/admin/sync_radio_buttons.js +27 -0
- data/app/packs/src/decidim/admin/text_copy.js +19 -0
- data/app/packs/stylesheets/decidim/admin/_cards.scss +1 -1
- data/app/packs/stylesheets/decidim/admin/_datepicker.scss +62 -0
- data/app/packs/stylesheets/decidim/admin/_item_edit.scss +1 -1
- data/app/packs/stylesheets/decidim/admin/_item_show.scss +8 -0
- data/app/packs/stylesheets/decidim/admin/_proposal_status.scss +5 -0
- data/app/packs/stylesheets/decidim/admin/application.scss +2 -0
- data/app/permissions/decidim/admin/permissions.rb +2 -2
- data/app/queries/decidim/admin/user_filter.rb +4 -4
- data/app/queries/decidim/admin/user_groups_evaluation.rb +1 -1
- data/app/views/decidim/admin/attachment_collections/index.html.erb +1 -1
- data/app/views/decidim/admin/attachments/_form.html.erb +21 -2
- data/app/views/decidim/admin/attachments/index.html.erb +2 -2
- data/app/views/decidim/admin/authorization_workflows/index.html.erb +26 -8
- data/app/views/decidim/admin/categories/index.html.erb +2 -2
- data/app/views/decidim/admin/components/_form.html.erb +1 -1
- data/app/views/decidim/admin/dashboard/_pending_moderations.html.erb +1 -1
- data/app/views/decidim/admin/dashboard/show.html.erb +1 -1
- data/app/views/decidim/admin/exports/_dropdown.html.erb +1 -1
- data/app/views/decidim/admin/impersonatable_users/index.html.erb +3 -3
- data/app/views/decidim/admin/imports/_dropdown.html.erb +1 -1
- data/app/views/decidim/admin/imports/new.html.erb +2 -2
- data/app/views/decidim/admin/logs/_filters.html.erb +3 -3
- data/app/views/decidim/admin/managed_users/promotions/new.html.erb +1 -1
- data/app/views/decidim/admin/moderated_users/index.html.erb +2 -2
- data/app/views/decidim/admin/moderations/index.html.erb +5 -5
- data/app/views/decidim/admin/moderations/reports/index.html.erb +6 -6
- data/app/views/decidim/admin/moderations/reports/show.html.erb +4 -4
- data/app/views/decidim/admin/newsletter_templates/index.html.erb +2 -2
- data/app/views/decidim/admin/newsletter_templates/show.html.erb +7 -7
- data/app/views/decidim/admin/newsletters/index.html.erb +1 -1
- data/app/views/decidim/admin/newsletters/select_recipients_to_deliver.html.erb +3 -3
- data/app/views/decidim/admin/newsletters/show.html.erb +1 -1
- data/app/views/decidim/admin/organization/_form.html.erb +3 -3
- data/app/views/decidim/admin/organization_appearance/form/_colors.html.erb +0 -3
- data/app/views/decidim/admin/organization_appearance/form/_images.html.erb +5 -5
- data/app/views/decidim/admin/{organization_external_domain_whitelist → organization_external_domain_allowlist}/_external_domain.html.erb +4 -4
- data/app/views/decidim/admin/{organization_external_domain_whitelist → organization_external_domain_allowlist}/_form.html.erb +2 -2
- data/app/views/decidim/admin/{organization_external_domain_whitelist → organization_external_domain_allowlist}/edit.html.erb +2 -2
- data/app/views/decidim/admin/participatory_space_private_users/index.html.erb +1 -1
- data/app/views/decidim/admin/participatory_space_private_users_csv_imports/new.html.erb +1 -1
- data/app/views/decidim/admin/share_tokens/_share_tokens.html.erb +1 -1
- data/app/views/decidim/admin/shared/_adjacent_navigation.html.erb +30 -0
- data/app/views/decidim/admin/shared/_admin_confirm_modal.html.erb +7 -7
- data/app/views/decidim/admin/shared/_filters.html.erb +1 -1
- data/app/views/decidim/admin/shared/_gallery.html.erb +1 -1
- data/app/views/decidim/admin/shared/_js-callout.html.erb +2 -2
- data/app/views/decidim/admin/shared/landing_page/_content_blocks.html.erb +2 -2
- data/app/views/decidim/admin/static_page_topics/index.html.erb +1 -1
- data/app/views/decidim/admin/static_pages/_form.html.erb +0 -4
- data/app/views/decidim/admin/users_statistics/_users_count.html.erb +2 -2
- data/app/views/layouts/decidim/admin/_admin_timeout_modal.html.erb +2 -2
- data/app/views/layouts/decidim/admin/_application.html.erb +4 -4
- data/app/views/layouts/decidim/admin/_callouts_full.html.erb +1 -1
- data/app/views/layouts/decidim/admin/_js_configuration.html.erb +3 -1
- data/app/views/layouts/decidim/admin/_sidebar_menu.html.erb +2 -2
- data/app/views/layouts/decidim/admin/_title_bar.html.erb +2 -2
- data/app/views/layouts/decidim/admin/_title_bar_responsive.html.erb +2 -2
- data/config/locales/ar.yml +1 -7
- data/config/locales/bg.yml +1013 -11
- data/config/locales/ca.yml +18 -11
- data/config/locales/cs.yml +17 -10
- data/config/locales/de.yml +25 -18
- data/config/locales/el.yml +1 -12
- data/config/locales/en.yml +18 -11
- data/config/locales/es-MX.yml +25 -18
- data/config/locales/es-PY.yml +25 -18
- data/config/locales/es.yml +34 -27
- data/config/locales/eu.yml +18 -11
- data/config/locales/fi-plain.yml +16 -9
- data/config/locales/fi.yml +16 -9
- data/config/locales/fr-CA.yml +16 -9
- data/config/locales/fr.yml +15 -8
- data/config/locales/ga-IE.yml +1 -3
- data/config/locales/gl.yml +1 -5
- data/config/locales/hu.yml +10 -10
- data/config/locales/id-ID.yml +1 -3
- data/config/locales/is-IS.yml +1 -3
- data/config/locales/it.yml +2 -8
- data/config/locales/ja.yml +18 -11
- data/config/locales/kaa.yml +0 -3
- data/config/locales/ko.yml +0 -6
- data/config/locales/lb.yml +1 -8
- data/config/locales/lt.yml +2 -13
- data/config/locales/lv.yml +1 -3
- data/config/locales/nl.yml +1 -8
- data/config/locales/no.yml +1 -8
- data/config/locales/pl.yml +17 -9
- data/config/locales/pt-BR.yml +9 -10
- data/config/locales/pt.yml +1 -8
- data/config/locales/ro-RO.yml +1 -12
- data/config/locales/ru.yml +1 -3
- data/config/locales/sk.yml +1 -3
- data/config/locales/sl.yml +1 -0
- data/config/locales/sq-AL.yml +410 -0
- data/config/locales/sr-CS.yml +1 -3
- data/config/locales/sv.yml +1 -8
- data/config/locales/th-TH.yml +98 -0
- data/config/locales/tr-TR.yml +1 -5
- data/config/locales/uk.yml +1 -3
- data/config/locales/zh-CN.yml +1 -3
- data/config/locales/zh-TW.yml +2 -12
- data/config/routes.rb +1 -1
- data/decidim-admin.gemspec +1 -1
- data/lib/decidim/admin/import/creator.rb +1 -1
- data/lib/decidim/admin/import/importer_factory.rb +2 -2
- data/lib/decidim/admin/menu.rb +4 -4
- data/lib/decidim/admin/test/admin_participatory_space_access_examples.rb +27 -0
- data/lib/decidim/admin/test/commands/create_attachment_collection_examples.rb +3 -2
- data/lib/decidim/admin/test/commands/create_category_examples.rb +4 -2
- data/lib/decidim/admin/test/commands/update_attachment_collection_examples.rb +3 -2
- data/lib/decidim/admin/test/commands/update_category_examples.rb +3 -2
- data/lib/decidim/admin/test/filterable_examples.rb +5 -3
- data/lib/decidim/admin/test/filters_participatory_space_user_roles_examples.rb +5 -5
- data/lib/decidim/admin/test/invite_participatory_space_admins_shared_examples.rb +180 -0
- data/lib/decidim/admin/test/invite_participatory_space_collaborators_shared_examples.rb +67 -0
- data/lib/decidim/admin/test/invite_participatory_space_moderators_shared_examples.rb +77 -0
- data/lib/decidim/admin/test/invite_participatory_space_users_shared_context.rb +33 -0
- data/lib/decidim/admin/test/manage_attachment_collections_examples.rb +24 -23
- data/lib/decidim/admin/test/manage_attachments_examples.rb +51 -15
- data/lib/decidim/admin/test/manage_categories_examples.rb +24 -21
- data/lib/decidim/admin/test/manage_component_permissions_examples.rb +5 -5
- data/lib/decidim/admin/test/manage_hide_content_examples.rb +8 -4
- data/lib/decidim/admin/test/manage_moderations_examples.rb +21 -21
- data/lib/decidim/admin/test/manage_paginated_collection_examples.rb +3 -3
- data/lib/decidim/admin/test/manage_participatory_space_publications_examples.rb +2 -2
- data/lib/decidim/admin/test.rb +1 -0
- data/lib/decidim/admin/version.rb +1 -1
- metadata +32 -27
- data/app/commands/decidim/admin/destroy_share_token.rb +0 -46
- data/app/commands/decidim/admin/destroy_static_page.rb +0 -40
- data/app/commands/decidim/admin/destroy_static_page_topic.rb +0 -40
- data/app/mailers/decidim/admin/application_mailer.rb +0 -12
- data/app/views/layouts/decidim/admin/login.html.erb +0 -19
- /data/app/packs/src/decidim/admin/{external_domain_whitelist.js → external_domain_allowlist.js} +0 -0
data/config/locales/ca.yml
CHANGED
@@ -188,6 +188,7 @@ ca:
|
|
188
188
|
export: Exportar tot
|
189
189
|
export-selection: Exportar selecció
|
190
190
|
import: Importar
|
191
|
+
manage: Gestionar
|
191
192
|
newsletter:
|
192
193
|
new: Nou butlletí
|
193
194
|
participatory_space_private_user:
|
@@ -355,7 +356,7 @@ ca:
|
|
355
356
|
title: Conflictes de verificació
|
356
357
|
transfer:
|
357
358
|
email: Correu electrònic
|
358
|
-
error:
|
359
|
+
error: Hi ha hagut un problema transferint la participant actual a una participant gestionada.
|
359
360
|
name: Nom
|
360
361
|
reason: Raó
|
361
362
|
success: La transferència s'ha completat correctament.
|
@@ -378,7 +379,7 @@ ca:
|
|
378
379
|
update: Actualitzar
|
379
380
|
dashboard:
|
380
381
|
pending_moderations:
|
381
|
-
|
382
|
+
announcement:
|
382
383
|
one: Hi ha %{count} moderació pendent
|
383
384
|
other: Hi ha %{count} moderacions pendents
|
384
385
|
goto_moderation: Anar a moderacions globals
|
@@ -386,12 +387,12 @@ ca:
|
|
386
387
|
show:
|
387
388
|
dropdown: Desplegable
|
388
389
|
view_more_logs: Veure més registres
|
389
|
-
|
390
|
+
domain_allowlist:
|
390
391
|
form:
|
391
392
|
domain_too_short: El domini és massa curt
|
392
393
|
update:
|
393
|
-
error:
|
394
|
-
success:
|
394
|
+
error: S'ha produït un error en actualitzar el llistat de domininis externs permesos
|
395
|
+
success: El llistat de dominis externs permesos s'ha actualitzat correctament.
|
395
396
|
exports:
|
396
397
|
export_as: "%{name} com a %{export_format}"
|
397
398
|
formats:
|
@@ -450,6 +451,7 @@ ca:
|
|
450
451
|
values:
|
451
452
|
'false': Publicat
|
452
453
|
'true': Despublicat
|
454
|
+
remove_all: Eliminar tots
|
453
455
|
scope_id_eq:
|
454
456
|
label: Àmbit
|
455
457
|
search_label: Cercar
|
@@ -458,7 +460,6 @@ ca:
|
|
458
460
|
report_count_eq: Número de denúncies
|
459
461
|
reported_id_string_or_reported_content_cont: Cercar %{collection} per id o contingut reportable.
|
460
462
|
title_cont: Buscar %{collection} per títol.
|
461
|
-
user_name_or_user_email_cont: Cerca %{collection} per nom o correu electrònic.
|
462
463
|
user_name_or_user_nickname_or_user_email_cont: Cercar %{collection} per correu electrònic, nom o àlies.
|
463
464
|
state_eq:
|
464
465
|
label: Estat
|
@@ -571,9 +572,10 @@ ca:
|
|
571
572
|
appearance: Aparença
|
572
573
|
area_types: Tipus d'àrees
|
573
574
|
areas: Àrees
|
575
|
+
components: Components
|
574
576
|
configuration: Configuració
|
575
577
|
content: Contingut reportat
|
576
|
-
|
578
|
+
external_domain_allowlist: Dominis externs permesos
|
577
579
|
help_sections: Seccions d'ajuda
|
578
580
|
homepage: Pàgina d'inici
|
579
581
|
impersonations: Impersonacions
|
@@ -858,17 +860,17 @@ ca:
|
|
858
860
|
layout_appearance_title: Edita l'aparença del disseny global
|
859
861
|
preview: Previsualitzar
|
860
862
|
omnipresent_banner_appearance_title: Edita banner omnipresent
|
861
|
-
|
863
|
+
organization_external_domain_allowlist:
|
862
864
|
edit:
|
863
|
-
update:
|
865
|
+
update: Actualizar
|
864
866
|
external_domain:
|
865
867
|
down: Baixar
|
866
868
|
external_domain: Domini extern
|
867
869
|
remove: Eliminar
|
868
870
|
up: Pujar
|
869
871
|
form:
|
870
|
-
add:
|
871
|
-
title:
|
872
|
+
add: Afegeix a la llista de permesos
|
873
|
+
title: Llistat de dominis externs permesos
|
872
874
|
participatory_space_private_users:
|
873
875
|
create:
|
874
876
|
error: S'ha produït un error en afegir una participant privada a aquest espai de participació.
|
@@ -964,6 +966,11 @@ ca:
|
|
964
966
|
help: Aquests tokens s'utilitzen per a compartir públicament aquest recurs no publicat a qualsevol usuari. S'ocultaran quan es publiqui el recurs. Fes clic en la icona de compartir el token per a visitar la URL compartible.
|
965
967
|
title: Compartir tokens
|
966
968
|
shared:
|
969
|
+
adjacent_navigation:
|
970
|
+
next: Següent
|
971
|
+
next_title: Següent element
|
972
|
+
previous: Anterior
|
973
|
+
previous_title: Element anterior
|
967
974
|
gallery:
|
968
975
|
add_images: Afegir imatges
|
969
976
|
edit_images: Editar imatges
|
data/config/locales/cs.yml
CHANGED
@@ -188,6 +188,7 @@ cs:
|
|
188
188
|
export: Exportovat vše
|
189
189
|
export-selection: Exportovat výběr
|
190
190
|
import: Importovat
|
191
|
+
manage: Spravovat
|
191
192
|
newsletter:
|
192
193
|
new: Nový zpravodaj
|
193
194
|
participatory_space_private_user:
|
@@ -383,12 +384,12 @@ cs:
|
|
383
384
|
show:
|
384
385
|
dropdown: Rozbalovací nabídka
|
385
386
|
view_more_logs: Zobrazit další protokoly
|
386
|
-
|
387
|
+
domain_allowlist:
|
387
388
|
form:
|
388
389
|
domain_too_short: Doména je příliš krátká
|
389
390
|
update:
|
390
|
-
error:
|
391
|
-
success: Seznam povolených domén byl úspěšně aktualizován.
|
391
|
+
error: Aktualizace seznamu povolených externích domén se nezdařila
|
392
|
+
success: Seznam povolených externích domén byl úspěšně aktualizován.
|
392
393
|
exports:
|
393
394
|
export_as: "%{name} jako %{export_format}"
|
394
395
|
formats:
|
@@ -447,6 +448,7 @@ cs:
|
|
447
448
|
values:
|
448
449
|
'false': Zveřejněno
|
449
450
|
'true': Nezveřejněno
|
451
|
+
remove_all: Odebrat vše
|
450
452
|
scope_id_eq:
|
451
453
|
label: Oblast působnosti
|
452
454
|
search_label: Hledat
|
@@ -455,7 +457,6 @@ cs:
|
|
455
457
|
report_count_eq: Počet nahlášení
|
456
458
|
reported_id_string_or_reported_content_cont: Hledat %{collection} podle nahlášeného Id nebo obsahu.
|
457
459
|
title_cont: Hledat %{collection} podle názvu.
|
458
|
-
user_name_or_user_email_cont: Hledat %{collection} podle jména nebo e-mailu.
|
459
460
|
user_name_or_user_nickname_or_user_email_cont: Hledat %{collection} podle e-mailu, jména nebo přezdívky.
|
460
461
|
state_eq:
|
461
462
|
label: Stav
|
@@ -576,9 +577,10 @@ cs:
|
|
576
577
|
appearance: Vzhled
|
577
578
|
area_types: Typy oblastí
|
578
579
|
areas: Oblasti
|
580
|
+
components: Komponenty
|
579
581
|
configuration: Konfigurace
|
580
582
|
content: Nahlášený obsah
|
581
|
-
|
583
|
+
external_domain_allowlist: Povolené externí domény
|
582
584
|
help_sections: Sekce nápovědy
|
583
585
|
homepage: Domovská stránka
|
584
586
|
impersonations: V zastoupení
|
@@ -863,17 +865,17 @@ cs:
|
|
863
865
|
layout_appearance_title: Upravit vzhled zobrazení
|
864
866
|
preview: Náhled
|
865
867
|
omnipresent_banner_appearance_title: Upravit všudypřítomný banner
|
866
|
-
|
868
|
+
organization_external_domain_allowlist:
|
867
869
|
edit:
|
868
|
-
update:
|
870
|
+
update: Aktualizovat
|
869
871
|
external_domain:
|
870
872
|
down: Dolů
|
871
873
|
external_domain: Externí doména
|
872
874
|
remove: Odstranit
|
873
875
|
up: Nahoru
|
874
876
|
form:
|
875
|
-
add: Přidat
|
876
|
-
title: Seznam externích
|
877
|
+
add: Přidat na Seznam povolených
|
878
|
+
title: Seznam povolených externích domén
|
877
879
|
participatory_space_private_users:
|
878
880
|
create:
|
879
881
|
error: Při přidávání soukromého uživatele pro tento participační prostor došlo k chybě.
|
@@ -971,6 +973,11 @@ cs:
|
|
971
973
|
help: Tyto tokeny se používají k veřejnému sdílení tohoto nezveřejněného zdroje každému uživateli. Budou skryty, když bude dokument publikován. Klikněte na ikonu sdílení tokenu a navštivte sdílenou URL.
|
972
974
|
title: Sdílet tokeny
|
973
975
|
shared:
|
976
|
+
adjacent_navigation:
|
977
|
+
next: Další
|
978
|
+
next_title: Další položka
|
979
|
+
previous: Předchozí
|
980
|
+
previous_title: Předchozí položka
|
974
981
|
gallery:
|
975
982
|
add_images: Přidat obrázky
|
976
983
|
edit_images: Upravit obrázky
|
@@ -1023,7 +1030,7 @@ cs:
|
|
1023
1030
|
areas: Oblasti
|
1024
1031
|
authorization_workflows: Metody ověření
|
1025
1032
|
dashboard: Ovládací panel
|
1026
|
-
edit_external_domains: Seznam externích
|
1033
|
+
edit_external_domains: Seznam povolených externích domén
|
1027
1034
|
edit_landing_page: Obsah stránky
|
1028
1035
|
edit_organization_appearance: Upravit vzhled domovské stránky
|
1029
1036
|
impersonatable_users: Spravovatelní účastníci
|
data/config/locales/de.yml
CHANGED
@@ -188,6 +188,7 @@ de:
|
|
188
188
|
export: Alles exportieren
|
189
189
|
export-selection: Auswahl exportieren
|
190
190
|
import: Importieren
|
191
|
+
manage: Verwalten
|
191
192
|
newsletter:
|
192
193
|
new: Neuer Newsletter
|
193
194
|
participatory_space_private_user:
|
@@ -219,7 +220,7 @@ de:
|
|
219
220
|
error: Beim Erstellen eines neuen Bereichstyps ist ein Fehler aufgetreten.
|
220
221
|
success: Bereichstyp wurde erfolgreich erstellt.
|
221
222
|
destroy:
|
222
|
-
success: Der Bereichstyp wurde erfolgreich
|
223
|
+
success: Der Bereichstyp wurde erfolgreich gelöscht.
|
223
224
|
edit:
|
224
225
|
title: Bereichstyp bearbeiten
|
225
226
|
update: Aktualisieren
|
@@ -235,7 +236,7 @@ de:
|
|
235
236
|
success: Bereich wurde erfolgreich erstellt.
|
236
237
|
destroy:
|
237
238
|
has_spaces: Dieser Bereich hat abhängige partizipative Räume. Bitte stellen Sie sicher, dass kein partizipativer Raum mehr diesen Bereich referenziert, bevor sie ihn löschen.
|
238
|
-
success: Bereich wurde erfolgreich
|
239
|
+
success: Bereich wurde erfolgreich gelöscht.
|
239
240
|
edit:
|
240
241
|
title: Bereich bearbeiten
|
241
242
|
update: Aktualisieren
|
@@ -251,7 +252,7 @@ de:
|
|
251
252
|
error: Beim Erstellen eines neuen Ordners ist ein Fehler aufgetreten.
|
252
253
|
success: Ordner erfolgreich erstellt
|
253
254
|
destroy:
|
254
|
-
success: Der Ordner wurde erfolgreich
|
255
|
+
success: Der Ordner wurde erfolgreich gelöscht.
|
255
256
|
edit:
|
256
257
|
title: Ordner bearbeiten
|
257
258
|
update: Aktualisieren
|
@@ -268,7 +269,7 @@ de:
|
|
268
269
|
error: Beim Erstellen des neuen Anhangs ist ein Fehler aufgetreten.
|
269
270
|
success: Anhang wurde erfolgreich erstellt.
|
270
271
|
destroy:
|
271
|
-
success: Anhang wurde erfolgreich
|
272
|
+
success: Anhang wurde erfolgreich gelöscht.
|
272
273
|
edit:
|
273
274
|
title: Anhang bearbeiten
|
274
275
|
update: Aktualisieren
|
@@ -378,7 +379,7 @@ de:
|
|
378
379
|
update: Aktualisieren
|
379
380
|
dashboard:
|
380
381
|
pending_moderations:
|
381
|
-
|
382
|
+
announcement:
|
382
383
|
one: Es gibt %{count} zu moderierender Beitrag
|
383
384
|
other: Es gibt %{count} zu moderierende Beiträge
|
384
385
|
goto_moderation: Gehe zur globalen Moderation
|
@@ -386,12 +387,12 @@ de:
|
|
386
387
|
show:
|
387
388
|
dropdown: Dropdown
|
388
389
|
view_more_logs: Weitere Protokolle anzeigen
|
389
|
-
|
390
|
+
domain_allowlist:
|
390
391
|
form:
|
391
392
|
domain_too_short: Domain zu kurz
|
392
393
|
update:
|
393
|
-
error:
|
394
|
-
success:
|
394
|
+
error: Liste der zulässigen externen Domains konnte nicht aktualisiert werden
|
395
|
+
success: Die Liste der zulässigen externen Domains wurde erfolgreich aktualisiert.
|
395
396
|
exports:
|
396
397
|
export_as: "%{name} als %{export_format}"
|
397
398
|
formats:
|
@@ -450,6 +451,7 @@ de:
|
|
450
451
|
values:
|
451
452
|
'false': Veröffentlicht
|
452
453
|
'true': Unveröffentlicht
|
454
|
+
remove_all: Alle entfernen
|
453
455
|
scope_id_eq:
|
454
456
|
label: Themenbereich
|
455
457
|
search_label: Suche
|
@@ -458,7 +460,6 @@ de:
|
|
458
460
|
report_count_eq: Anzahl Meldungen
|
459
461
|
reported_id_string_or_reported_content_cont: Suche %{collection} nach meldbarer Id oder Inhalt.
|
460
462
|
title_cont: In %{collection} nach Titel suchen.
|
461
|
-
user_name_or_user_email_cont: In %{collection} nach Name oder E-Mail suchen.
|
462
463
|
user_name_or_user_nickname_or_user_email_cont: '%{collection} nach E-Mail, Name oder Kontoname durchsuchen.'
|
463
464
|
state_eq:
|
464
465
|
label: Status
|
@@ -571,9 +572,10 @@ de:
|
|
571
572
|
appearance: Aussehen
|
572
573
|
area_types: Bereichstypen
|
573
574
|
areas: Bereiche
|
575
|
+
components: Komponenten
|
574
576
|
configuration: Aufbau
|
575
577
|
content: Gemeldeter Inhalt
|
576
|
-
|
578
|
+
external_domain_allowlist: Erlaubte externe Domains
|
577
579
|
help_sections: Hilfeabschnitte
|
578
580
|
homepage: Startseite
|
579
581
|
impersonations: Identitätswechsel
|
@@ -733,7 +735,7 @@ de:
|
|
733
735
|
success: Newsletter erfolgreich geliefert
|
734
736
|
destroy:
|
735
737
|
error_already_sent: 'Newsletter kann nicht gelöscht werden: Es wurde bereits gesendet.'
|
736
|
-
success: Newsletter erfolgreich
|
738
|
+
success: Newsletter erfolgreich gelöscht.
|
737
739
|
edit:
|
738
740
|
save_and_preview: Speichern und Vorschau
|
739
741
|
title: Newsletter bearbeiten
|
@@ -858,7 +860,7 @@ de:
|
|
858
860
|
layout_appearance_title: Layout-Layout bearbeiten
|
859
861
|
preview: Vorschau
|
860
862
|
omnipresent_banner_appearance_title: Bearbeiten Sie das allgegenwärtige Banner
|
861
|
-
|
863
|
+
organization_external_domain_allowlist:
|
862
864
|
edit:
|
863
865
|
update: Aktualisieren
|
864
866
|
external_domain:
|
@@ -867,15 +869,15 @@ de:
|
|
867
869
|
remove: Entfernen
|
868
870
|
up: Hoch
|
869
871
|
form:
|
870
|
-
add: Zur
|
871
|
-
title:
|
872
|
+
add: Zur erlaubten Liste hinzufügen
|
873
|
+
title: Liste erlaubter externer Domains
|
872
874
|
participatory_space_private_users:
|
873
875
|
create:
|
874
876
|
error: Beim Hinzufügen eines privaten Benutzers für diesen partizipativen Bereich ist ein Fehler aufgetreten.
|
875
877
|
success: Participatory Space Privater Benutzerzugriff erfolgreich erstellt.
|
876
878
|
destroy:
|
877
879
|
error: Beim Löschen eines privaten Benutzers für diesen partizipativen Bereich ist ein Fehler aufgetreten.
|
878
|
-
success:
|
880
|
+
success: Privater Zugriff zum partizipativen Raum erfolgreich gelöscht.
|
879
881
|
index:
|
880
882
|
import_via_csv: Aus CSV-Datein importieren
|
881
883
|
title: Participatory Space privater Benutzer
|
@@ -925,7 +927,7 @@ de:
|
|
925
927
|
error: Beim Erstellen eines neuen Geltungstyps ist ein Fehler aufgetreten.
|
926
928
|
success: Der Geltungsbereichstyp wurde erfolgreich erstellt.
|
927
929
|
destroy:
|
928
|
-
success: Der
|
930
|
+
success: Der Themen-Typ wurde erfolgreich gelöscht
|
929
931
|
edit:
|
930
932
|
title: Bereichstyp bearbeiten
|
931
933
|
update: Aktualisieren
|
@@ -964,6 +966,11 @@ de:
|
|
964
966
|
help: Diese Token werden verwendet, um diese unveröffentlichte Ressource öffentlich an jeden Benutzer weiterzugeben. Sie werden ausgeblendet, wenn das Werk veröffentlicht wird. Klicken Sie auf das Teilen-Symbol des Tokens um die teilbare URL zu besuchen.
|
965
967
|
title: Token teilen
|
966
968
|
shared:
|
969
|
+
adjacent_navigation:
|
970
|
+
next: Weiter
|
971
|
+
next_title: Nächstes Element
|
972
|
+
previous: Zurück
|
973
|
+
previous_title: Vorheriges Element
|
967
974
|
gallery:
|
968
975
|
add_images: Bilder hinzufügen
|
969
976
|
edit_images: Bilder bearbeiten
|
@@ -990,7 +997,7 @@ de:
|
|
990
997
|
error: Beim Erstellen einer neuen Seite ist ein Fehler aufgetreten.
|
991
998
|
success: Seite erfolgreich erstellt
|
992
999
|
destroy:
|
993
|
-
success: Seite erfolgreich
|
1000
|
+
success: Seite erfolgreich gelöscht
|
994
1001
|
edit:
|
995
1002
|
changed_notably_help: Wenn diese Option aktiviert ist, werden Nutzende benachrichtigt, um die neuen Nutzungsbedingungen zu akzeptieren.
|
996
1003
|
last_notable_change: 'Letzte signifikante Änderung: %{tos_version_formatted}'
|
@@ -1016,7 +1023,7 @@ de:
|
|
1016
1023
|
areas: Bereiche
|
1017
1024
|
authorization_workflows: Verifizierungsmethoden
|
1018
1025
|
dashboard: Instrumententafel
|
1019
|
-
edit_external_domains:
|
1026
|
+
edit_external_domains: Liste erlaubter externer Domains
|
1020
1027
|
edit_landing_page: Seiteninhalte
|
1021
1028
|
edit_organization_appearance: Homepage-Erscheinungsbild bearbeiten
|
1022
1029
|
impersonatable_users: Überschaubare Benutzer
|
data/config/locales/el.yml
CHANGED
@@ -183,6 +183,7 @@ el:
|
|
183
183
|
export: Εξαγωγή όλων
|
184
184
|
export-selection: Εξαγωγή επιλογής
|
185
185
|
import: Εισαγωγή
|
186
|
+
manage: Διαχείριση
|
186
187
|
newsletter:
|
187
188
|
new: Νέο ενημερωτικό δελτίο
|
188
189
|
participatory_space_private_user:
|
@@ -347,7 +348,6 @@ el:
|
|
347
348
|
title: Διενέξεις επαλήθευσης
|
348
349
|
transfer:
|
349
350
|
email: E-mail
|
350
|
-
error: Υπήρξε ένα πρόβλημα κατά τη μεταφορά του τρέχοντος συμμετέχοντα σε διαχειριζόμενο συμμετέχοντα.
|
351
351
|
name: Όνομα
|
352
352
|
reason: Αιτία
|
353
353
|
success: Η τρέχουσα μεταφορά έχει ολοκληρωθεί με επιτυχία.
|
@@ -360,10 +360,6 @@ el:
|
|
360
360
|
title: Εκκρεμείς εγκρίσεις
|
361
361
|
show:
|
362
362
|
view_more_logs: Προβολή περισσότερων αρχείων καταγραφής
|
363
|
-
domain_whitelist:
|
364
|
-
update:
|
365
|
-
error: Απέτυχε η ενημέρωση της λίστας επιτρεπόμενων τομέων.
|
366
|
-
success: Η λίστα επιτρεπόμενων τομέων ενημερώθηκε με επιτυχία.
|
367
363
|
exports:
|
368
364
|
export_as: "Όνομα %{name} ως μορφή %{export_format}"
|
369
365
|
formats:
|
@@ -430,7 +426,6 @@ el:
|
|
430
426
|
report_count_eq: Αναφορά μετρητή eq
|
431
427
|
reported_id_string_or_reported_content_cont: Αναζήτηση %{collection} με αναγνωριστικό ή περιεχόμενο προς αναφορά.
|
432
428
|
title_cont: Αναζήτηση συλλογής %{collection} με βάση τον τίτλο.
|
433
|
-
user_name_or_user_email_cont: Αναζήτηση %{collection} με βάση το όνομα ή το email.
|
434
429
|
user_name_or_user_nickname_or_user_email_cont: Αναζήτηση %{collection} με email, όνομα ή ψευδώνυμο.
|
435
430
|
state_eq:
|
436
431
|
label: Κατάσταση
|
@@ -818,12 +813,6 @@ el:
|
|
818
813
|
layout_appearance_title: Επεξεργασία εμφάνισης διάταξης
|
819
814
|
preview: Προεπισκόπηση
|
820
815
|
omnipresent_banner_appearance_title: Επεξεργασία διαφημιστικού πλαισίου omnipresent
|
821
|
-
organization_external_domain_whitelist:
|
822
|
-
edit:
|
823
|
-
update: Ενημέρωση
|
824
|
-
form:
|
825
|
-
add: Προσθήκη στη λευκή λίστα
|
826
|
-
title: Εξωτερική λευκή λίστα τομέων
|
827
816
|
participatory_space_private_users:
|
828
817
|
create:
|
829
818
|
error: Υπήρξε ένα πρόβλημα κατά την προσθήκη ενός ιδιωτικού συμμετέχοντα για αυτόν τον χώρο συμμετοχής.
|
data/config/locales/en.yml
CHANGED
@@ -188,6 +188,7 @@ en:
|
|
188
188
|
export: Export all
|
189
189
|
export-selection: Export selection
|
190
190
|
import: Import
|
191
|
+
manage: Manage
|
191
192
|
newsletter:
|
192
193
|
new: New newsletter
|
193
194
|
participatory_space_private_user:
|
@@ -355,7 +356,7 @@ en:
|
|
355
356
|
title: Verification conflicts
|
356
357
|
transfer:
|
357
358
|
email: Email
|
358
|
-
error: There was a problem
|
359
|
+
error: There was a problem transferring the current participant to managed participant.
|
359
360
|
name: Name
|
360
361
|
reason: Reason
|
361
362
|
success: The current transfer has been successfully completed.
|
@@ -378,7 +379,7 @@ en:
|
|
378
379
|
update: Update
|
379
380
|
dashboard:
|
380
381
|
pending_moderations:
|
381
|
-
|
382
|
+
announcement:
|
382
383
|
one: There are %{count} pending moderation
|
383
384
|
other: There are %{count} pending moderations
|
384
385
|
goto_moderation: Go to global moderations
|
@@ -386,12 +387,12 @@ en:
|
|
386
387
|
show:
|
387
388
|
dropdown: Dropdown
|
388
389
|
view_more_logs: View more logs
|
389
|
-
|
390
|
+
domain_allowlist:
|
390
391
|
form:
|
391
392
|
domain_too_short: Domain too short
|
392
393
|
update:
|
393
|
-
error: Failed to update
|
394
|
-
success:
|
394
|
+
error: Failed to update list of allowed external domains
|
395
|
+
success: The list of allowed external domain successfully updated.
|
395
396
|
exports:
|
396
397
|
export_as: "%{name} as %{export_format}"
|
397
398
|
formats:
|
@@ -450,6 +451,7 @@ en:
|
|
450
451
|
values:
|
451
452
|
'false': Published
|
452
453
|
'true': Unpublished
|
454
|
+
remove_all: Remove all
|
453
455
|
scope_id_eq:
|
454
456
|
label: Scope
|
455
457
|
search_label: Search
|
@@ -458,7 +460,6 @@ en:
|
|
458
460
|
report_count_eq: Report count eq
|
459
461
|
reported_id_string_or_reported_content_cont: Search %{collection} by reportable id or content.
|
460
462
|
title_cont: Search %{collection} by title.
|
461
|
-
user_name_or_user_email_cont: Search %{collection} by name or email.
|
462
463
|
user_name_or_user_nickname_or_user_email_cont: Search %{collection} by email, name or nickname.
|
463
464
|
state_eq:
|
464
465
|
label: State
|
@@ -571,9 +572,10 @@ en:
|
|
571
572
|
appearance: Appearance
|
572
573
|
area_types: Area types
|
573
574
|
areas: Areas
|
575
|
+
components: Components
|
574
576
|
configuration: Configuration
|
575
577
|
content: Reported content
|
576
|
-
|
578
|
+
external_domain_allowlist: Allowed external domains
|
577
579
|
help_sections: Help sections
|
578
580
|
homepage: Homepage
|
579
581
|
impersonations: Impersonations
|
@@ -858,7 +860,7 @@ en:
|
|
858
860
|
layout_appearance_title: Edit layout appearance
|
859
861
|
preview: Preview
|
860
862
|
omnipresent_banner_appearance_title: Edit omnipresent banner
|
861
|
-
|
863
|
+
organization_external_domain_allowlist:
|
862
864
|
edit:
|
863
865
|
update: Update
|
864
866
|
external_domain:
|
@@ -867,8 +869,8 @@ en:
|
|
867
869
|
remove: Remove
|
868
870
|
up: Up
|
869
871
|
form:
|
870
|
-
add: Add to
|
871
|
-
title:
|
872
|
+
add: Add to allowed list
|
873
|
+
title: Allowed list of external domains
|
872
874
|
participatory_space_private_users:
|
873
875
|
create:
|
874
876
|
error: There was a problem adding a private participant for this participatory space.
|
@@ -964,6 +966,11 @@ en:
|
|
964
966
|
help: These tokens are used to publicly share this unpublished resource to any user. They will be hidden when the resource is published. Click on the token's share icon to visit the shareable URL.
|
965
967
|
title: Share tokens
|
966
968
|
shared:
|
969
|
+
adjacent_navigation:
|
970
|
+
next: Next
|
971
|
+
next_title: Next item
|
972
|
+
previous: Previous
|
973
|
+
previous_title: Previous item
|
967
974
|
gallery:
|
968
975
|
add_images: Add images
|
969
976
|
edit_images: Edit images
|
@@ -1016,7 +1023,7 @@ en:
|
|
1016
1023
|
areas: Areas
|
1017
1024
|
authorization_workflows: Verification methods
|
1018
1025
|
dashboard: Dashboard
|
1019
|
-
edit_external_domains:
|
1026
|
+
edit_external_domains: Allowed list of external domains
|
1020
1027
|
edit_landing_page: Page contents
|
1021
1028
|
edit_organization_appearance: Edit homepage appearance
|
1022
1029
|
impersonatable_users: Manageable participants
|