decidim-admin 0.28.4 → 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/README.md +13 -0
- 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 +4 -4
- 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 -43
- 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 +79 -4
- 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/paginable.rb +20 -0
- data/app/controllers/concerns/decidim/admin/participatory_space_export.rb +1 -1
- data/app/controllers/decidim/admin/application_controller.rb +2 -1
- 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 +1 -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/conflicts_controller.rb +5 -13
- 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 +1 -1
- 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/application_helper.rb +0 -13
- 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/helpers/decidim/admin/paginable/per_page_helper.rb +22 -0
- 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 +19 -15
- data/app/packs/src/decidim/admin/css_preview.js +39 -0
- 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/block_user/new.html.erb +1 -1
- 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/components/index.html.erb +1 -5
- data/app/views/decidim/admin/conflicts/index.html.erb +6 -29
- 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 +6 -6
- data/app/views/decidim/admin/impersonatable_users/index.html.erb +3 -3
- data/app/views/decidim/admin/imports/_dropdown.html.erb +5 -7
- data/app/views/decidim/admin/imports/new.html.erb +6 -7
- 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 +6 -7
- 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_appearance/form/_minimap.html.erb +3 -3
- 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/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/_title_bar.html.erb +2 -2
- data/app/views/layouts/decidim/admin/_title_bar_responsive.html.erb +2 -2
- data/config/locales/ar.yml +0 -7
- data/config/locales/bg.yml +15 -12
- data/config/locales/ca.yml +18 -15
- data/config/locales/cs.yml +15 -17
- data/config/locales/de.yml +15 -12
- data/config/locales/el.yml +0 -12
- data/config/locales/en.yml +16 -13
- data/config/locales/es-MX.yml +16 -13
- data/config/locales/es-PY.yml +16 -13
- data/config/locales/es.yml +18 -15
- data/config/locales/eu.yml +16 -13
- data/config/locales/fi-plain.yml +15 -12
- data/config/locales/fi.yml +19 -16
- data/config/locales/fr-CA.yml +14 -11
- data/config/locales/fr.yml +13 -10
- data/config/locales/ga-IE.yml +0 -3
- data/config/locales/gl.yml +0 -5
- data/config/locales/hu.yml +9 -10
- data/config/locales/id-ID.yml +0 -3
- data/config/locales/is-IS.yml +0 -3
- data/config/locales/it.yml +0 -8
- data/config/locales/ja.yml +18 -15
- data/config/locales/kaa.yml +0 -3
- data/config/locales/ko.yml +0 -6
- data/config/locales/lb.yml +0 -8
- data/config/locales/lt.yml +0 -13
- data/config/locales/lv.yml +0 -3
- data/config/locales/nl.yml +0 -8
- data/config/locales/no.yml +0 -8
- data/config/locales/pl.yml +14 -9
- data/config/locales/pt-BR.yml +8 -13
- data/config/locales/pt.yml +0 -8
- data/config/locales/ro-RO.yml +3 -21
- data/config/locales/ru.yml +0 -3
- data/config/locales/sk.yml +0 -3
- data/config/locales/sq-AL.yml +0 -3
- data/config/locales/sr-CS.yml +0 -3
- data/config/locales/sv.yml +207 -355
- data/config/locales/th-TH.yml +0 -3
- data/config/locales/tr-TR.yml +0 -5
- data/config/locales/uk.yml +0 -3
- data/config/locales/zh-CN.yml +0 -3
- data/config/locales/zh-TW.yml +0 -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/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 +1 -1
- data/lib/decidim/admin/test/invite_participatory_space_users_shared_context.rb +0 -1
- data/lib/decidim/admin/test/manage_attachment_collections_examples.rb +12 -12
- data/lib/decidim/admin/test/manage_attachments_examples.rb +52 -28
- data/lib/decidim/admin/test/manage_categories_examples.rb +13 -13
- data/lib/decidim/admin/test/manage_component_permissions_examples.rb +5 -5
- data/lib/decidim/admin/test/manage_hide_content_examples.rb +4 -4
- data/lib/decidim/admin/test/manage_moderations_examples.rb +21 -21
- data/lib/decidim/admin/test/manage_paginated_collection_examples.rb +5 -5
- data/lib/decidim/admin/test/manage_participatory_space_publications_examples.rb +2 -2
- data/lib/decidim/admin/version.rb +1 -1
- data/lib/decidim/admin.rb +15 -0
- metadata +27 -24
- 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/controllers/concerns/decidim/admin/verification_conflicts/filterable.rb +0 -31
- 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/gl.yml
CHANGED
@@ -291,7 +291,6 @@ gl:
|
|
291
291
|
solved: Resolto
|
292
292
|
transfer:
|
293
293
|
email: Correo electrónico
|
294
|
-
error: Produciuse un problema ao transferir el participante actual a un participante xestionado.
|
295
294
|
name: Nome
|
296
295
|
reason: Motivo
|
297
296
|
success: A transferencia actual completouse con éxito.
|
@@ -366,7 +365,6 @@ gl:
|
|
366
365
|
report_count_eq: Número de denuncias
|
367
366
|
reported_id_string_or_reported_content_cont: Procurar %{collection} por contido ou Id reportábel.
|
368
367
|
title_cont: Procurar %{collection} por título.
|
369
|
-
user_name_or_user_email_cont: Procurar %{collection} por nome ou correo electrónico.
|
370
368
|
user_name_or_user_nickname_or_user_email_cont: Pescudar %{collection} por correo, nome ou alcume.
|
371
369
|
state_eq:
|
372
370
|
label: Estado
|
@@ -713,9 +711,6 @@ gl:
|
|
713
711
|
layout_appearance_title: Editar aspecto de deseño
|
714
712
|
preview: Vista Previa
|
715
713
|
omnipresent_banner_appearance_title: Editar o banner omnipresente
|
716
|
-
organization_external_domain_whitelist:
|
717
|
-
edit:
|
718
|
-
update: Actualización
|
719
714
|
participatory_space_private_users:
|
720
715
|
create:
|
721
716
|
error: Produciuse un erro engadindo un usuario privado a este espazo participativo.
|
data/config/locales/hu.yml
CHANGED
@@ -355,7 +355,7 @@ hu:
|
|
355
355
|
title: Ellenőrzési konfliktusok
|
356
356
|
transfer:
|
357
357
|
email: Email
|
358
|
-
error: Hiba történt a jelenlegi résztvevő kezelt résztvevővé
|
358
|
+
error: Hiba történt a jelenlegi résztvevő kezelt résztvevővé átminősítése során.
|
359
359
|
name: Név
|
360
360
|
reason: Ok
|
361
361
|
success: Az átvitel sikeresen befejezve.
|
@@ -383,12 +383,12 @@ hu:
|
|
383
383
|
show:
|
384
384
|
dropdown: Legördülő lista
|
385
385
|
view_more_logs: További naplók megtekintése
|
386
|
-
|
386
|
+
domain_allowlist:
|
387
387
|
form:
|
388
388
|
domain_too_short: Túl rövid domain név
|
389
389
|
update:
|
390
|
-
error: Nem sikerült frissíteni
|
391
|
-
success:
|
390
|
+
error: Nem sikerült frissíteni az engedélyezett külső tartományok listáját
|
391
|
+
success: Az engedélyezett külső tartományok listája sikeresen frissült.
|
392
392
|
exports:
|
393
393
|
export_as: "%{name} mint %{export_format}"
|
394
394
|
formats:
|
@@ -455,7 +455,6 @@ hu:
|
|
455
455
|
report_count_eq: Jelentések száma
|
456
456
|
reported_id_string_or_reported_content_cont: Keresés %{gyűjtemény} a jelentendő azonosító vagy tartalom alapján.
|
457
457
|
title_cont: Keresés %{collection} cím alapján.
|
458
|
-
user_name_or_user_email_cont: Keresés itt %{collection} név vagy emailcím alapján.
|
459
458
|
user_name_or_user_nickname_or_user_email_cont: Keresés %{collection} email, név vagy becenév alapján.
|
460
459
|
state_eq:
|
461
460
|
label: Állapot
|
@@ -570,7 +569,7 @@ hu:
|
|
570
569
|
areas: Területek
|
571
570
|
configuration: Beállítások
|
572
571
|
content: Jelentett tartalom
|
573
|
-
|
572
|
+
external_domain_allowlist: Engedélyezett külső domainek
|
574
573
|
help_sections: Súgó szakaszok
|
575
574
|
homepage: Homepage
|
576
575
|
impersonations: Felhatalmazások
|
@@ -852,7 +851,7 @@ hu:
|
|
852
851
|
layout_appearance_title: Elrendezés szerkesztése
|
853
852
|
preview: Előnézet
|
854
853
|
omnipresent_banner_appearance_title: Mindenhol megjelenő banner szerkesztése
|
855
|
-
|
854
|
+
organization_external_domain_allowlist:
|
856
855
|
edit:
|
857
856
|
update: Frissítés
|
858
857
|
external_domain:
|
@@ -861,8 +860,8 @@ hu:
|
|
861
860
|
remove: Eltávolítás
|
862
861
|
up: Fel
|
863
862
|
form:
|
864
|
-
add: Hozzáadás
|
865
|
-
title:
|
863
|
+
add: Hozzáadás az engedélyezett listához
|
864
|
+
title: Engedélyezett külső domainek listája
|
866
865
|
participatory_space_private_users:
|
867
866
|
create:
|
868
867
|
error: Hiba történt egy privát felhasználó hozzáadása során a részvételi helyhez.
|
@@ -1007,7 +1006,7 @@ hu:
|
|
1007
1006
|
areas: Területek
|
1008
1007
|
authorization_workflows: Ellenőrzési módszerek
|
1009
1008
|
dashboard: Vezérlőpult
|
1010
|
-
edit_external_domains:
|
1009
|
+
edit_external_domains: Engedélyezett külső domainek listája
|
1011
1010
|
edit_landing_page: Az oldal tartalma
|
1012
1011
|
edit_organization_appearance: Honlap megjelenésének szerkesztése
|
1013
1012
|
impersonatable_users: Kezelhető résztvevők
|
data/config/locales/id-ID.yml
CHANGED
@@ -452,9 +452,6 @@ id:
|
|
452
452
|
images:
|
453
453
|
layout_appearance_title: Edit tampilan tata letak
|
454
454
|
omnipresent_banner_appearance_title: Edit spanduk yang ada di mana-mana
|
455
|
-
organization_external_domain_whitelist:
|
456
|
-
edit:
|
457
|
-
update: Memperbarui
|
458
455
|
participatory_space_private_users:
|
459
456
|
create:
|
460
457
|
error: Terjadi kesalahan saat menambahkan pengguna pribadi untuk ruang partisipatif ini.
|
data/config/locales/is-IS.yml
CHANGED
@@ -408,9 +408,6 @@ is:
|
|
408
408
|
homepage_highlighted_content_banner_title: Hápunktur efni borði
|
409
409
|
images:
|
410
410
|
layout_appearance_title: Breyta útliti útlits
|
411
|
-
organization_external_domain_whitelist:
|
412
|
-
edit:
|
413
|
-
update: Uppfæra
|
414
411
|
participatory_space_private_users:
|
415
412
|
new:
|
416
413
|
create: Búa til
|
data/config/locales/it.yml
CHANGED
@@ -292,7 +292,6 @@ it:
|
|
292
292
|
title: Verifica dei conflitti
|
293
293
|
transfer:
|
294
294
|
email: Email
|
295
|
-
error: Si è verificato un problema nel trasferimento dell'utente corrente a partecipante gestito.
|
296
295
|
name: Nome
|
297
296
|
reason: Motivazione
|
298
297
|
success: Il trasferimento è stato completato con successo.
|
@@ -359,7 +358,6 @@ it:
|
|
359
358
|
name_or_nickname_or_email_cont: Cerca %{collection} per email, nome o pseudonimo.
|
360
359
|
reported_id_string_or_reported_content_cont: Cerca %{collection} per id o contenuto segnalabile.
|
361
360
|
title_cont: Cerca %{collection} per titolo.
|
362
|
-
user_name_or_user_email_cont: Cerca %{collection} per nome o email.
|
363
361
|
state_eq:
|
364
362
|
label: Stato
|
365
363
|
values:
|
@@ -684,12 +682,6 @@ it:
|
|
684
682
|
layout_appearance_title: Modifica aspetto del layout
|
685
683
|
preview: Anteprima
|
686
684
|
omnipresent_banner_appearance_title: Modifica banner onnipresente
|
687
|
-
organization_external_domain_whitelist:
|
688
|
-
edit:
|
689
|
-
update: Aggiorna
|
690
|
-
form:
|
691
|
-
add: Aggiungi alla whitelist
|
692
|
-
title: Whitelist di domini esterni
|
693
685
|
participatory_space_private_users:
|
694
686
|
create:
|
695
687
|
error: Si è verificato un errore durante l'aggiunta di un utente privato per questo spazio partecipativo.
|
data/config/locales/ja.yml
CHANGED
@@ -351,14 +351,12 @@ ja:
|
|
351
351
|
conflicts:
|
352
352
|
attempts: 試行回数
|
353
353
|
'false': 'いいえ'
|
354
|
-
index:
|
355
|
-
text: 現在のユーザーのメールアドレス、名前、ニックネームで検索します。
|
356
354
|
managed_user_name: 管理対象ユーザー
|
357
355
|
solved: 解決済み
|
358
356
|
title: 確認の競合
|
359
357
|
transfer:
|
360
358
|
email: Eメールアドレス
|
361
|
-
error:
|
359
|
+
error: 現在の参加者を管理対象の参加者に移行する際に問題が発生しました。
|
362
360
|
name: 名前
|
363
361
|
reason: 理由
|
364
362
|
success: 現在の移転が正常に完了しました。
|
@@ -381,19 +379,19 @@ ja:
|
|
381
379
|
update: 更新
|
382
380
|
dashboard:
|
383
381
|
pending_moderations:
|
384
|
-
|
382
|
+
announcement:
|
385
383
|
other: 保留中のモデレーションが%{count} 件あります
|
386
384
|
goto_moderation: グローバルモデレーションへ移動
|
387
385
|
title: 保留中のモデレーション
|
388
386
|
show:
|
389
387
|
dropdown: ドロップダウン
|
390
388
|
view_more_logs: もっとログを見る
|
391
|
-
|
389
|
+
domain_allowlist:
|
392
390
|
form:
|
393
391
|
domain_too_short: ドメインが短すぎます
|
394
392
|
update:
|
395
|
-
error:
|
396
|
-
success:
|
393
|
+
error: 許可された外部ドメインのリストを更新できませんでした
|
394
|
+
success: 許可された外部ドメインのリストを更新しました。
|
397
395
|
exports:
|
398
396
|
export_as: "%{name} を %{export_format} 形式で取得"
|
399
397
|
formats:
|
@@ -427,7 +425,7 @@ ja:
|
|
427
425
|
reportable_type_string_eq:
|
428
426
|
label: タイプ
|
429
427
|
officialized_at_null:
|
430
|
-
label:
|
428
|
+
label: 都道府県:
|
431
429
|
values:
|
432
430
|
'false': 公式化済み
|
433
431
|
'true': 公式化されていない
|
@@ -452,6 +450,7 @@ ja:
|
|
452
450
|
values:
|
453
451
|
'false': 公開済み
|
454
452
|
'true': 未公開
|
453
|
+
remove_all: すべて削除
|
455
454
|
scope_id_eq:
|
456
455
|
label: スコープ
|
457
456
|
search_label: 検索
|
@@ -460,10 +459,9 @@ ja:
|
|
460
459
|
report_count_eq: 報告数
|
461
460
|
reported_id_string_or_reported_content_cont: 報告可能なIDまたはコンテンツで %{collection} を検索します。
|
462
461
|
title_cont: '%{collection} をタイトルで検索します。'
|
463
|
-
user_name_or_user_email_cont: '%{collection} を名前またはメールアドレスで検索します。'
|
464
462
|
user_name_or_user_nickname_or_user_email_cont: '%{collection} をメール、表示名、アカウントIDで検索します。'
|
465
463
|
state_eq:
|
466
|
-
label:
|
464
|
+
label: 都道府県:
|
467
465
|
values:
|
468
466
|
all: すべて
|
469
467
|
pending: 保留中
|
@@ -572,7 +570,7 @@ ja:
|
|
572
570
|
components: コンポーネント
|
573
571
|
configuration: 設定
|
574
572
|
content: 報告されたコンテンツ
|
575
|
-
|
573
|
+
external_domain_allowlist: 許可された外部ドメイン
|
576
574
|
help_sections: ヘルプセクション
|
577
575
|
homepage: ホームページ
|
578
576
|
impersonations: なりすまし
|
@@ -857,7 +855,7 @@ ja:
|
|
857
855
|
layout_appearance_title: レイアウトを編集
|
858
856
|
preview: プレビュー
|
859
857
|
omnipresent_banner_appearance_title: Omnipresentバナーを編集
|
860
|
-
|
858
|
+
organization_external_domain_allowlist:
|
861
859
|
edit:
|
862
860
|
update: 更新
|
863
861
|
external_domain:
|
@@ -866,8 +864,8 @@ ja:
|
|
866
864
|
remove: 削除
|
867
865
|
up: 上へ
|
868
866
|
form:
|
869
|
-
add:
|
870
|
-
title:
|
867
|
+
add: 許可されたリストに追加
|
868
|
+
title: 許可された外部ドメインのリスト
|
871
869
|
participatory_space_private_users:
|
872
870
|
create:
|
873
871
|
error: この参加型スペースにプライベート参加者を追加する際に問題が発生しました。
|
@@ -962,6 +960,11 @@ ja:
|
|
962
960
|
help: これらのトークンは、公開されていないリソースをすべてのユーザーに公開するために使用されます。 リソースが公開されると、それらは非表示になります。共有可能なURLにアクセスするにはトークンの共有アイコンをクリックしてください。
|
963
961
|
title: トークンを共有
|
964
962
|
shared:
|
963
|
+
adjacent_navigation:
|
964
|
+
next: 次へ
|
965
|
+
next_title: 次のアイテム
|
966
|
+
previous: 前へ
|
967
|
+
previous_title: 前のアイテム
|
965
968
|
gallery:
|
966
969
|
add_images: 画像を追加
|
967
970
|
edit_images: 画像を編集
|
@@ -1014,7 +1017,7 @@ ja:
|
|
1014
1017
|
areas: エリア
|
1015
1018
|
authorization_workflows: 確認方法
|
1016
1019
|
dashboard: ダッシュボード
|
1017
|
-
edit_external_domains:
|
1020
|
+
edit_external_domains: 許可された外部ドメインのリスト
|
1018
1021
|
edit_landing_page: ページ内容
|
1019
1022
|
edit_organization_appearance: ホームページの外観を編集
|
1020
1023
|
impersonatable_users: 管理可能な参加者
|
data/config/locales/kaa.yml
CHANGED
data/config/locales/ko.yml
CHANGED
@@ -303,7 +303,6 @@ ko:
|
|
303
303
|
title: 인증 충돌 발생
|
304
304
|
transfer:
|
305
305
|
email: 이메일
|
306
|
-
error: 현재 참여자를 관리된 참여자로 옮기는 중 문제가 발생했습니다.
|
307
306
|
name: 이름
|
308
307
|
reason: 이유
|
309
308
|
success: 현재 전송이 성공적으로 완료되었습니다.
|
@@ -609,11 +608,6 @@ ko:
|
|
609
608
|
images:
|
610
609
|
layout_appearance_title: 레이아웃 모양 편집
|
611
610
|
preview: 미리보기
|
612
|
-
organization_external_domain_whitelist:
|
613
|
-
edit:
|
614
|
-
update: 업데이트
|
615
|
-
form:
|
616
|
-
add: 화이트 리스트에 추가
|
617
611
|
participatory_space_private_users:
|
618
612
|
new:
|
619
613
|
create: 생성
|
data/config/locales/lb.yml
CHANGED
@@ -292,7 +292,6 @@ lb:
|
|
292
292
|
title: "Überprüfungskonflikte\n\n"
|
293
293
|
transfer:
|
294
294
|
email: E-Mail
|
295
|
-
error: Es gab ein Problem bei der Übertragung des aktuellen Teilnehmers zu den verwalteten Teilnehmern.
|
296
295
|
name: Name
|
297
296
|
reason: Grund
|
298
297
|
success: Übertragung erfolgreich.
|
@@ -359,7 +358,6 @@ lb:
|
|
359
358
|
name_or_nickname_or_email_cont: Suche in %{collection} nach E-Mail, Name oder Benutzername.
|
360
359
|
reported_id_string_or_reported_content_cont: Suche %{collection} nach meldbarer Id oder Inhalt.
|
361
360
|
title_cont: In %{collection} nach Titel suchen.
|
362
|
-
user_name_or_user_email_cont: In %{collection} nach Name oder E-Mail suchen.
|
363
361
|
state_eq:
|
364
362
|
label: Bundesland
|
365
363
|
values:
|
@@ -680,12 +678,6 @@ lb:
|
|
680
678
|
layout_appearance_title: Layout-Layout bearbeiten
|
681
679
|
preview: Vorschau
|
682
680
|
omnipresent_banner_appearance_title: Bearbeiten Sie das allgegenwärtige Banner
|
683
|
-
organization_external_domain_whitelist:
|
684
|
-
edit:
|
685
|
-
update: Aktualisieren
|
686
|
-
form:
|
687
|
-
add: Zur Whitelist hinzufügen
|
688
|
-
title: Whitelist für externe Domains
|
689
681
|
participatory_space_private_users:
|
690
682
|
create:
|
691
683
|
error: Beim Hinzufügen eines privaten Benutzers für diesen partizipativen Bereich ist ein Fehler aufgetreten.
|
data/config/locales/lt.yml
CHANGED
@@ -350,7 +350,6 @@ lt:
|
|
350
350
|
title: Patikros konfliktai
|
351
351
|
transfer:
|
352
352
|
email: El. paštas
|
353
|
-
error: Iškilo problema perkeliant dabartinį dalyvį į tvarkomą dalyvį.
|
354
353
|
name: Vardas
|
355
354
|
reason: Priežastis
|
356
355
|
success: Perkėlimas sėkmingai baigtas.
|
@@ -363,10 +362,6 @@ lt:
|
|
363
362
|
title: Laukiantys Moderavimai
|
364
363
|
show:
|
365
364
|
view_more_logs: Peržiūrėti daugiau ataskaitų
|
366
|
-
domain_whitelist:
|
367
|
-
update:
|
368
|
-
error: Nepavyko atnaujinti domenų baltąjo sąrašo.
|
369
|
-
success: Domenų baltasis sąrašas atnaujintas sėkmingai.
|
370
365
|
exports:
|
371
366
|
export_as: "%{name} kaip %{export_format}"
|
372
367
|
formats:
|
@@ -433,7 +428,6 @@ lt:
|
|
433
428
|
report_count_eq: Raportuoti skaičių
|
434
429
|
reported_id_string_or_reported_content_cont: Ieškoti %{collection} pagal ID arba turinį.
|
435
430
|
title_cont: Ieškoti %{collection} pagal pavadinimą.
|
436
|
-
user_name_or_user_email_cont: Ieškoti %{collection} pagal vardą ar el. paštą.
|
437
431
|
user_name_or_user_nickname_or_user_email_cont: Ieškoti %{collection} pagal el. pašto adresą, vardą arba naudotojo vardą.
|
438
432
|
state_eq:
|
439
433
|
label: Būsena
|
@@ -833,12 +827,6 @@ lt:
|
|
833
827
|
layout_appearance_title: Redaguoti išdėstymą
|
834
828
|
preview: Peržiūra
|
835
829
|
omnipresent_banner_appearance_title: Keisti visur naudojamą reklamjuostę
|
836
|
-
organization_external_domain_whitelist:
|
837
|
-
edit:
|
838
|
-
update: Atnaujinti
|
839
|
-
form:
|
840
|
-
add: Pridėti prie baltojo sąrašo
|
841
|
-
title: Išorinių domenų baltasis sąrašas
|
842
830
|
participatory_space_private_users:
|
843
831
|
create:
|
844
832
|
error: Pridedant privatų dalyvį į šia dalyvaujamają erdvę kilo problema.
|
@@ -983,7 +971,6 @@ lt:
|
|
983
971
|
areas: Aplinkos
|
984
972
|
authorization_workflows: Verifikacijos metodai
|
985
973
|
dashboard: Švieslentė
|
986
|
-
edit_external_domains: Išorinių domenų baltasis sąrašas
|
987
974
|
edit_landing_page: Puslapio turinys
|
988
975
|
edit_organization_appearance: Keisti pagrindinio puslapio išvaizdą
|
989
976
|
impersonatable_users: Dalyviai, kurių duomenis galima tvarkyti
|
data/config/locales/lv.yml
CHANGED
@@ -512,9 +512,6 @@ lv:
|
|
512
512
|
layout_appearance_title: Rediģēt izkārtojuma izskatu
|
513
513
|
preview: Priekšskatīt
|
514
514
|
omnipresent_banner_appearance_title: Rediģēt visuresošo reklāmkarogu
|
515
|
-
organization_external_domain_whitelist:
|
516
|
-
edit:
|
517
|
-
update: Atjaunināt
|
518
515
|
participatory_space_private_users:
|
519
516
|
create:
|
520
517
|
error: Pievienojot privāto dalībnieku šai līdzdalības telpai, radās problēma.
|
data/config/locales/nl.yml
CHANGED
@@ -296,7 +296,6 @@ nl:
|
|
296
296
|
title: Controle conflicten
|
297
297
|
transfer:
|
298
298
|
email: E-mail
|
299
|
-
error: Er is een probleem opgetreden bij het overbrengen van de huidige deelnemer naar een beheerde deelnemer.
|
300
299
|
name: Naam
|
301
300
|
reason: Reden
|
302
301
|
success: De overdracht is met succes voltooid.
|
@@ -371,7 +370,6 @@ nl:
|
|
371
370
|
report_count_eq: Aantal rapporteringen
|
372
371
|
reported_id_string_or_reported_content_cont: Zoek %{collection} op rapporteerbaar id of op inhoud.
|
373
372
|
title_cont: Zoek %{collection} op titel.
|
374
|
-
user_name_or_user_email_cont: '%{collection} doorzoeken op Id of titel.'
|
375
373
|
user_name_or_user_nickname_or_user_email_cont: Doorzoek %{collection} op e-mail, naam of bijnaam.
|
376
374
|
state_eq:
|
377
375
|
label: Provincie
|
@@ -729,12 +727,6 @@ nl:
|
|
729
727
|
layout_appearance_title: Weergave van de lay-out bewerken
|
730
728
|
preview: Voorvertoning
|
731
729
|
omnipresent_banner_appearance_title: Bewerk de permanente banner
|
732
|
-
organization_external_domain_whitelist:
|
733
|
-
edit:
|
734
|
-
update: Bijwerken
|
735
|
-
form:
|
736
|
-
add: Toevoegen aan whitelist
|
737
|
-
title: Externe domein whitelist
|
738
730
|
participatory_space_private_users:
|
739
731
|
create:
|
740
732
|
error: Er is een probleem opgetreden bij het toevoegen van een privédeelnemer aan deze deelruimte.
|
data/config/locales/no.yml
CHANGED
@@ -296,7 +296,6 @@
|
|
296
296
|
title: Verifiseringskonflikter
|
297
297
|
transfer:
|
298
298
|
email: E-post
|
299
|
-
error: Det oppstod et problem med overføring av gjeldende deltaker til håndtert deltaker.
|
300
299
|
name: Navn
|
301
300
|
reason: Årsak
|
302
301
|
success: Overføringen er gjennomført.
|
@@ -383,7 +382,6 @@
|
|
383
382
|
report_count_eq: Antall rapporter
|
384
383
|
reported_id_string_or_reported_content_cont: Søk %{collection} av rapporterbar id eller innhold.
|
385
384
|
title_cont: Søk %{collection} etter tittel.
|
386
|
-
user_name_or_user_email_cont: Søk %{collection} etter navn eller e-post.
|
387
385
|
user_name_or_user_nickname_or_user_email_cont: Søk %{collection} via e-post, navn eller kallenavn.
|
388
386
|
state_eq:
|
389
387
|
label: Tilstand
|
@@ -733,12 +731,6 @@
|
|
733
731
|
layout_appearance_title: Rediger layout utseende
|
734
732
|
preview: Forhåndsvis
|
735
733
|
omnipresent_banner_appearance_title: Endre enerådende banner
|
736
|
-
organization_external_domain_whitelist:
|
737
|
-
edit:
|
738
|
-
update: Oppdater
|
739
|
-
form:
|
740
|
-
add: Legg til i hviteliste
|
741
|
-
title: Hviteliste for eksterne domener
|
742
734
|
participatory_space_private_users:
|
743
735
|
create:
|
744
736
|
error: Det oppstod et problem med å legge til en privat deltaker for dette deltakerområdet.
|
data/config/locales/pl.yml
CHANGED
@@ -384,12 +384,12 @@ pl:
|
|
384
384
|
show:
|
385
385
|
dropdown: Lista rozwijana
|
386
386
|
view_more_logs: Zobacz więcej logów
|
387
|
-
|
387
|
+
domain_allowlist:
|
388
388
|
form:
|
389
389
|
domain_too_short: Domena jest za krótka
|
390
390
|
update:
|
391
|
-
error: Nie udało się zaktualizować
|
392
|
-
success:
|
391
|
+
error: Nie udało się zaktualizować listy dozwolonych domen zewnętrznych
|
392
|
+
success: Lista dozwolonych domen zewnętrznych została pomyślnie zaktualizowana.
|
393
393
|
exports:
|
394
394
|
export_as: "%{name} jako %{export_format}"
|
395
395
|
formats:
|
@@ -448,6 +448,7 @@ pl:
|
|
448
448
|
values:
|
449
449
|
'false': Opublikowany
|
450
450
|
'true': Nieopublikowany
|
451
|
+
remove_all: Usuń wszystkie
|
451
452
|
scope_id_eq:
|
452
453
|
label: Zakres
|
453
454
|
search_label: Szukaj
|
@@ -456,7 +457,6 @@ pl:
|
|
456
457
|
report_count_eq: Licznik raportów
|
457
458
|
reported_id_string_or_reported_content_cont: Przeszukaj %{collection} według identyfikatora lub treści zgłoszenia.
|
458
459
|
title_cont: Przeszukaj %{collection} według tytułu.
|
459
|
-
user_name_or_user_email_cont: Przeszukaj %{collection} według nazwy lub e-maila.
|
460
460
|
user_name_or_user_nickname_or_user_email_cont: Szukaj %{collection} według adresu e-mail, nazwy lub pseudonimu.
|
461
461
|
state_eq:
|
462
462
|
label: Stan
|
@@ -580,7 +580,7 @@ pl:
|
|
580
580
|
components: Komponenty
|
581
581
|
configuration: Konfiguracja
|
582
582
|
content: Zgłoszona zawartość
|
583
|
-
|
583
|
+
external_domain_allowlist: Dozwolone domeny zewnętrzne
|
584
584
|
help_sections: Sekcje pomocy
|
585
585
|
homepage: Strona główna
|
586
586
|
impersonations: Podszywanie się pod inne osoby
|
@@ -865,7 +865,7 @@ pl:
|
|
865
865
|
layout_appearance_title: Edytuj wygląd layoutu
|
866
866
|
preview: Podgląd
|
867
867
|
omnipresent_banner_appearance_title: Edytuj stały baner
|
868
|
-
|
868
|
+
organization_external_domain_allowlist:
|
869
869
|
edit:
|
870
870
|
update: Aktualizuj
|
871
871
|
external_domain:
|
@@ -874,8 +874,8 @@ pl:
|
|
874
874
|
remove: Usuń
|
875
875
|
up: Do góry
|
876
876
|
form:
|
877
|
-
add: Dodaj do
|
878
|
-
title:
|
877
|
+
add: Dodaj do listy dozwolonych
|
878
|
+
title: Dozwolone domeny zewnętrzne
|
879
879
|
participatory_space_private_users:
|
880
880
|
create:
|
881
881
|
error: Wystąpił błąd podczas dodawania użytkownika prywatnego do tej przestrzeni partycypacyjnej.
|
@@ -973,6 +973,11 @@ pl:
|
|
973
973
|
help: Te tokeny są używane do publicznego udostępniania nieopublikowanego zasobu każdemu użytkownikowi. Zostaną one ukryte, gdy zasób zostanie opublikowany. Kliknij na ikonę udostępniania tokenu aby odwiedzić udostępniany adres URL.
|
974
974
|
title: Udostępnij tokeny
|
975
975
|
shared:
|
976
|
+
adjacent_navigation:
|
977
|
+
next: Następny
|
978
|
+
next_title: Następny element
|
979
|
+
previous: Poprzedni
|
980
|
+
previous_title: Poprzedni element
|
976
981
|
gallery:
|
977
982
|
add_images: Dodaj obrazy
|
978
983
|
edit_images: Edytuj obrazy
|
@@ -1025,7 +1030,7 @@ pl:
|
|
1025
1030
|
areas: Kategorie
|
1026
1031
|
authorization_workflows: Metody weryfikacji
|
1027
1032
|
dashboard: Panel
|
1028
|
-
edit_external_domains:
|
1033
|
+
edit_external_domains: Dozwolone domeny zewnętrzne
|
1029
1034
|
edit_landing_page: Zawartość strony
|
1030
1035
|
edit_organization_appearance: Edytuj wygląd strony głównej
|
1031
1036
|
impersonatable_users: Zarządzaj użytkownikami
|
data/config/locales/pt-BR.yml
CHANGED
@@ -289,7 +289,6 @@ pt-BR:
|
|
289
289
|
block_user:
|
290
290
|
new:
|
291
291
|
action: Bloquear conta e enviar justificativa
|
292
|
-
already_reported_html: Continuar com essa ação também resultará na ocultação o conteúdo de todos os participantes.
|
293
292
|
description: Bloquear um usuário irá tornar sua conta inutilizável. Você pode fornecer em sua justificação quaisquer diretrizes sobre como você poderia considerar desbloquear o usuário.
|
294
293
|
justification: Justificativa
|
295
294
|
title: Bloquear usuário %{name}
|
@@ -351,14 +350,11 @@ pt-BR:
|
|
351
350
|
conflicts:
|
352
351
|
attempts: Tentativas
|
353
352
|
'false': 'Não'
|
354
|
-
index:
|
355
|
-
text: Pesquisar por e-mail, nome ou apelido do usuário.
|
356
353
|
managed_user_name: Usuário gerenciado
|
357
354
|
solved: Resolvido
|
358
355
|
title: Conflitos de verificação
|
359
356
|
transfer:
|
360
357
|
email: E-mail
|
361
|
-
error: Houve um erro ao transferir o usuário atual para o usuário gerenciado.
|
362
358
|
name: Nome
|
363
359
|
reason: Motivo
|
364
360
|
success: A transferência atual foi concluída com sucesso.
|
@@ -386,12 +382,12 @@ pt-BR:
|
|
386
382
|
show:
|
387
383
|
dropdown: Dropdown
|
388
384
|
view_more_logs: Ver mais registros
|
389
|
-
|
385
|
+
domain_allowlist:
|
390
386
|
form:
|
391
387
|
domain_too_short: Domínio muito curto
|
392
388
|
update:
|
393
|
-
error: Falha ao atualizar
|
394
|
-
success:
|
389
|
+
error: Falha ao atualizar lista de domínios externos permitidos
|
390
|
+
success: Lista do domínio externo permitido atualizada com sucesso.
|
395
391
|
exports:
|
396
392
|
export_as: "%{name} como %{export_format}"
|
397
393
|
formats:
|
@@ -458,7 +454,6 @@ pt-BR:
|
|
458
454
|
report_count_eq: Número de denúncias
|
459
455
|
reported_id_string_or_reported_content_cont: Pesquisar %{collection} por id ou conteúdo reportável.
|
460
456
|
title_cont: Pesquisar %{collection} por título.
|
461
|
-
user_name_or_user_email_cont: Pesquise %{collection} por nome ou e-mail.
|
462
457
|
user_name_or_user_nickname_or_user_email_cont: Pesquise %{collection} por e-mail, nome ou apelido.
|
463
458
|
state_eq:
|
464
459
|
label: Estado
|
@@ -570,7 +565,7 @@ pt-BR:
|
|
570
565
|
areas: Áreas
|
571
566
|
configuration: Configuração
|
572
567
|
content: Conteúdo relatado
|
573
|
-
|
568
|
+
external_domain_allowlist: Domínios externos permitidos
|
574
569
|
help_sections: Seções de ajuda
|
575
570
|
homepage: Pagina inicial
|
576
571
|
impersonations: Imitações
|
@@ -855,7 +850,7 @@ pt-BR:
|
|
855
850
|
layout_appearance_title: Editar aparência do layout
|
856
851
|
preview: Pré-visualização
|
857
852
|
omnipresent_banner_appearance_title: Editar banner onipresente
|
858
|
-
|
853
|
+
organization_external_domain_allowlist:
|
859
854
|
edit:
|
860
855
|
update: Atualizar
|
861
856
|
external_domain:
|
@@ -864,8 +859,8 @@ pt-BR:
|
|
864
859
|
remove: Remover
|
865
860
|
up: Acima
|
866
861
|
form:
|
867
|
-
add: Adicionar
|
868
|
-
title: Lista
|
862
|
+
add: Adicionar na lista de permitidos
|
863
|
+
title: Lista de domínios externos permitidos
|
869
864
|
participatory_space_private_users:
|
870
865
|
create:
|
871
866
|
error: Ocorreu um erro ao adicionar um usuário privado para este espaço participativo.
|
@@ -1013,7 +1008,7 @@ pt-BR:
|
|
1013
1008
|
areas: Áreas
|
1014
1009
|
authorization_workflows: Métodos de verificação
|
1015
1010
|
dashboard: painel de controle
|
1016
|
-
edit_external_domains: Lista
|
1011
|
+
edit_external_domains: Lista de domínios externos permitidos
|
1017
1012
|
edit_landing_page: Conteúdos da página
|
1018
1013
|
edit_organization_appearance: Editar aparência da página inicial
|
1019
1014
|
impersonatable_users: Usuários gerenciáveis
|
data/config/locales/pt.yml
CHANGED
@@ -292,7 +292,6 @@ pt:
|
|
292
292
|
title: Conflitos de verificação
|
293
293
|
transfer:
|
294
294
|
email: e-Mail
|
295
|
-
error: Houve um problema ao transferir o utilizador actual para utilizador gerido.
|
296
295
|
name: Nome
|
297
296
|
reason: Motivo
|
298
297
|
success: A transferência actual foi completada com êxito.
|
@@ -359,7 +358,6 @@ pt:
|
|
359
358
|
name_or_nickname_or_email_cont: Pesquisar %{collection} por e-mail, nome ou alcunha.
|
360
359
|
reported_id_string_or_reported_content_cont: Pesquisar %{coleção} por identificador de denúncia ou conteúdo.
|
361
360
|
title_cont: Pesquisar %{collection} por título.
|
362
|
-
user_name_or_user_email_cont: Pesquisar %{coleção} por nome ou e-mail.
|
363
361
|
state_eq:
|
364
362
|
label: Estado
|
365
363
|
values:
|
@@ -682,12 +680,6 @@ pt:
|
|
682
680
|
layout_appearance_title: Editar aparência do layout
|
683
681
|
preview: Pré-visualização
|
684
682
|
omnipresent_banner_appearance_title: Editar faixa omnipresente
|
685
|
-
organization_external_domain_whitelist:
|
686
|
-
edit:
|
687
|
-
update: Atualizar
|
688
|
-
form:
|
689
|
-
add: Adicionar à lista branca
|
690
|
-
title: Lista branca de domínio externo
|
691
683
|
participatory_space_private_users:
|
692
684
|
create:
|
693
685
|
error: Ocorreu um problema ao adicionar um participante privado neste espaço participativo.
|