decidim-admin 0.28.5 → 0.29.0.rc1
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/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/block_user.rb +0 -1
- 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/block_user_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 +6 -14
- data/app/controllers/decidim/admin/help_sections_controller.rb +1 -1
- data/app/controllers/decidim/admin/impersonations_controller.rb +0 -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 +6 -7
- 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/help_section_form.rb +1 -1
- data/app/forms/decidim/admin/impersonate_user_form.rb +0 -5
- data/app/forms/decidim/admin/organization_appearance_form.rb +2 -5
- 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 +4 -4
- data/app/forms/decidim/admin/static_page_form.rb +1 -2
- data/app/forms/decidim/admin/transfer_user_form.rb +0 -15
- 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/newsletters.js +9 -18
- 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/_moderations.scss +0 -8
- 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/newsletter_recipients.rb +5 -9
- 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/edit.html.erb +11 -21
- 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 +4 -4
- 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 +3 -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/shared/landing_page_content_blocks/edit.html.erb +1 -1
- 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 +1 -54
- 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 +18 -15
- data/config/locales/el.yml +0 -11
- data/config/locales/en.yml +15 -12
- data/config/locales/es-MX.yml +17 -14
- data/config/locales/es-PY.yml +17 -14
- data/config/locales/es.yml +19 -16
- data/config/locales/eu.yml +145 -154
- data/config/locales/fi-plain.yml +18 -15
- data/config/locales/fi.yml +39 -36
- data/config/locales/fr-CA.yml +15 -12
- data/config/locales/fr.yml +13 -10
- data/config/locales/ga-IE.yml +0 -3
- data/config/locales/gl.yml +2 -6
- data/config/locales/hu.yml +9 -10
- data/config/locales/id-ID.yml +0 -7
- data/config/locales/is-IS.yml +0 -15
- data/config/locales/it.yml +3 -10
- data/config/locales/ja.yml +20 -17
- data/config/locales/kaa.yml +3 -3
- data/config/locales/ko.yml +1 -6
- data/config/locales/lb.yml +4 -11
- data/config/locales/lt.yml +0 -12
- data/config/locales/lv.yml +2 -6
- data/config/locales/nl.yml +1 -8
- data/config/locales/no.yml +1 -8
- data/config/locales/pl.yml +15 -10
- data/config/locales/pt-BR.yml +8 -12
- data/config/locales/pt.yml +0 -11
- data/config/locales/ro-RO.yml +5 -22
- data/config/locales/ru.yml +1 -6
- data/config/locales/sk.yml +2 -6
- data/config/locales/sl.yml +2 -0
- data/config/locales/sq-AL.yml +3 -3
- data/config/locales/sr-CS.yml +3 -6
- data/config/locales/sv.yml +209 -357
- data/config/locales/th-TH.yml +0 -13
- data/config/locales/tr-TR.yml +2 -6
- data/config/locales/uk.yml +0 -6
- data/config/locales/zh-CN.yml +6 -3
- data/config/locales/zh-TW.yml +0 -11
- data/config/routes.rb +2 -2
- data/decidim-admin.gemspec +2 -2
- data/lib/decidim/admin/engine.rb +0 -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 +28 -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/controllers/concerns/decidim/admin/verification_conflicts/filterable.rb +0 -31
- data/app/views/layouts/decidim/admin/login.html.erb +0 -19
- data/config/locales/bn-BD.yml +0 -1
- data/config/locales/bs-BA.yml +0 -528
- /data/app/packs/src/decidim/admin/{external_domain_whitelist.js → external_domain_allowlist.js} +0 -0
data/config/locales/hu.yml
CHANGED
@@ -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:
|
@@ -448,14 +448,13 @@ hu:
|
|
448
448
|
'false': Közzétéve
|
449
449
|
'true': Visszavont
|
450
450
|
scope_id_eq:
|
451
|
-
label:
|
451
|
+
label: Hatáskör
|
452
452
|
search_label: Keresés
|
453
453
|
search_placeholder:
|
454
454
|
name_or_nickname_or_email_cont: Keresés %{collection} email, név vagy becenév alapján.
|
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
@@ -351,9 +351,6 @@ id:
|
|
351
351
|
fields:
|
352
352
|
name: Nama
|
353
353
|
plural: Jamak
|
354
|
-
share_token:
|
355
|
-
fields:
|
356
|
-
created_at: Dibuat di
|
357
354
|
static_page:
|
358
355
|
fields:
|
359
356
|
created_at: Dibuat di
|
@@ -407,7 +404,6 @@ id:
|
|
407
404
|
select_recipients_to_deliver:
|
408
405
|
confirm_deliver: Anda yakin ingin menyampaikan buletin ini? Tindakan ini tidak bisa dibatalkan.
|
409
406
|
deliver: Kirimkan buletin
|
410
|
-
none: Tidak ada
|
411
407
|
show:
|
412
408
|
preview: Preview
|
413
409
|
subject: Subyek
|
@@ -456,9 +452,6 @@ id:
|
|
456
452
|
images:
|
457
453
|
layout_appearance_title: Edit tampilan tata letak
|
458
454
|
omnipresent_banner_appearance_title: Edit spanduk yang ada di mana-mana
|
459
|
-
organization_external_domain_whitelist:
|
460
|
-
edit:
|
461
|
-
update: Memperbarui
|
462
455
|
participatory_space_private_users:
|
463
456
|
create:
|
464
457
|
error: Terjadi kesalahan saat menambahkan pengguna pribadi untuk ruang partisipatif ini.
|
data/config/locales/is-IS.yml
CHANGED
@@ -237,8 +237,6 @@ is:
|
|
237
237
|
values:
|
238
238
|
'false': Opinberað
|
239
239
|
'true': Ekki opinberað
|
240
|
-
scope_id_eq:
|
241
|
-
label: Svæði
|
242
240
|
search_label: Leita
|
243
241
|
impersonatable_users:
|
244
242
|
index:
|
@@ -321,9 +319,6 @@ is:
|
|
321
319
|
fields:
|
322
320
|
name: Nafn
|
323
321
|
plural: Fleirtala
|
324
|
-
share_token:
|
325
|
-
fields:
|
326
|
-
created_at: Búið til á
|
327
322
|
static_page:
|
328
323
|
fields:
|
329
324
|
created_at: Búið til á
|
@@ -413,19 +408,12 @@ is:
|
|
413
408
|
homepage_highlighted_content_banner_title: Hápunktur efni borði
|
414
409
|
images:
|
415
410
|
layout_appearance_title: Breyta útliti útlits
|
416
|
-
organization_external_domain_whitelist:
|
417
|
-
edit:
|
418
|
-
update: Uppfæra
|
419
411
|
participatory_space_private_users:
|
420
412
|
new:
|
421
413
|
create: Búa til
|
422
414
|
resource_permissions:
|
423
415
|
edit:
|
424
416
|
title: Breyta heimildum
|
425
|
-
resources:
|
426
|
-
index:
|
427
|
-
headers:
|
428
|
-
scope: Svæði
|
429
417
|
scope_types:
|
430
418
|
create:
|
431
419
|
success: Gildissvið gerð búin til með góðum árangri.
|
@@ -451,9 +439,6 @@ is:
|
|
451
439
|
no_scopes: Engar mælar á þessu stigi.
|
452
440
|
update:
|
453
441
|
success: Gildissvið uppfært með góðum árangri
|
454
|
-
share_tokens:
|
455
|
-
actions:
|
456
|
-
share: Deila
|
457
442
|
static_pages:
|
458
443
|
actions:
|
459
444
|
view: Skoðaðu opinbera síðu
|
data/config/locales/it.yml
CHANGED
@@ -352,13 +352,12 @@ it:
|
|
352
352
|
'false': Pubblicato
|
353
353
|
'true': Non pubblicato (nascosto)
|
354
354
|
scope_id_eq:
|
355
|
-
label:
|
355
|
+
label: Ambito tematico
|
356
356
|
search_label: Ricerca
|
357
357
|
search_placeholder:
|
358
358
|
name_or_nickname_or_email_cont: Cerca %{collection} per email, nome o pseudonimo.
|
359
359
|
reported_id_string_or_reported_content_cont: Cerca %{collection} per id o contenuto segnalabile.
|
360
360
|
title_cont: Cerca %{collection} per titolo.
|
361
|
-
user_name_or_user_email_cont: Cerca %{collection} per nome o email.
|
362
361
|
state_eq:
|
363
362
|
label: Stato
|
364
363
|
values:
|
@@ -611,7 +610,7 @@ it:
|
|
611
610
|
confirm_deliver: Sei certo di voler inviare questa Newsletter? Questa azione sarà irrevocabile.
|
612
611
|
deliver: Invia la newsletter
|
613
612
|
followers_help: Invia newsletter a tutti gli utenti confermati che seguono tutti gli spazi partecipativi selezionati nella lista.
|
614
|
-
none:
|
613
|
+
none: Nessuno
|
615
614
|
participants_help: Invia newsletter a tutti gli utenti confermati che hanno partecipato a uno degli spazi partecipativi selezionati nella lista.
|
616
615
|
recipients_count: Questa newsletter verrà inviata agli utenti <strong id='recipients_count'>%{count}</strong>.
|
617
616
|
scopes_help: Invia newsletter agli utenti che hanno uno dei campi selezionati attivati nelle impostazioni "I miei interessi".
|
@@ -683,12 +682,6 @@ it:
|
|
683
682
|
layout_appearance_title: Modifica aspetto del layout
|
684
683
|
preview: Anteprima
|
685
684
|
omnipresent_banner_appearance_title: Modifica banner onnipresente
|
686
|
-
organization_external_domain_whitelist:
|
687
|
-
edit:
|
688
|
-
update: Aggiorna
|
689
|
-
form:
|
690
|
-
add: Aggiungi alla whitelist
|
691
|
-
title: Whitelist di domini esterni
|
692
685
|
participatory_space_private_users:
|
693
686
|
create:
|
694
687
|
error: Si è verificato un errore durante l'aggiunta di un utente privato per questo spazio partecipativo.
|
@@ -719,7 +712,7 @@ it:
|
|
719
712
|
resources:
|
720
713
|
index:
|
721
714
|
headers:
|
722
|
-
scope:
|
715
|
+
scope: Ambito
|
723
716
|
scope_types:
|
724
717
|
create:
|
725
718
|
error: Si è verificato un errore durante la creazione di un nuovo tipo di ambito.
|
data/config/locales/ja.yml
CHANGED
@@ -208,7 +208,7 @@ ja:
|
|
208
208
|
actions:
|
209
209
|
accept: 利用規約に同意する
|
210
210
|
are_you_sure: 管理者向け利用規約を本当に拒否しますか?
|
211
|
-
refuse:
|
211
|
+
refuse: 管理者規約を拒否する
|
212
212
|
title: 利用規約に同意する
|
213
213
|
required_review:
|
214
214
|
alert: '必須:管理者の利用規約を確認してください'
|
@@ -351,8 +351,6 @@ 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: 確認の競合
|
@@ -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: なりすまし
|
@@ -703,7 +701,7 @@ ja:
|
|
703
701
|
reports:
|
704
702
|
index:
|
705
703
|
author: 投稿者
|
706
|
-
callout_html:
|
704
|
+
callout_html: コンテンツは、そのアイテムの横にある %{icon} フラグをクリックすることによって、ユーザー(登録済みアカウントを持っている人であれば誰でも)によって通知されたときに、モデレーションパネルに表示されます。
|
707
705
|
content_original_language: コンテンツのオリジナル言語
|
708
706
|
participatory_space: 参加型スペース
|
709
707
|
reported_content: 報告されたコンテンツ
|
@@ -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: 管理可能な参加者
|
@@ -1096,7 +1099,7 @@ ja:
|
|
1096
1099
|
actions:
|
1097
1100
|
expand: 展開
|
1098
1101
|
hidden: 非表示
|
1099
|
-
hide:
|
1102
|
+
hide: 非表示
|
1100
1103
|
not_hidden: 表示
|
1101
1104
|
title: アクション
|
1102
1105
|
unhide: 非表示解除
|
data/config/locales/kaa.yml
CHANGED
@@ -72,6 +72,8 @@ kaa:
|
|
72
72
|
FormPDF: PDF
|
73
73
|
JSON: JSON
|
74
74
|
filters:
|
75
|
+
category_id_eq:
|
76
|
+
label: Kategoriya
|
75
77
|
filter_label: Filtr
|
76
78
|
invitation_accepted_at_present:
|
77
79
|
values:
|
@@ -162,9 +164,6 @@ kaa:
|
|
162
164
|
form:
|
163
165
|
images:
|
164
166
|
preview: Aldınnan kóriw
|
165
|
-
organization_external_domain_whitelist:
|
166
|
-
edit:
|
167
|
-
update: Jańalaw
|
168
167
|
participatory_space_private_users:
|
169
168
|
new:
|
170
169
|
create: Jaratıw
|
@@ -186,6 +185,7 @@ kaa:
|
|
186
185
|
share_tokens:
|
187
186
|
actions:
|
188
187
|
destroy: Óshiriw
|
188
|
+
share: Bólisiw
|
189
189
|
shared:
|
190
190
|
gallery:
|
191
191
|
add_images: Súwretlerdi qosıw
|
data/config/locales/ko.yml
CHANGED
@@ -489,7 +489,7 @@ ko:
|
|
489
489
|
name: 이름
|
490
490
|
share_token:
|
491
491
|
fields:
|
492
|
-
created_at:
|
492
|
+
created_at: 생성일
|
493
493
|
expires_at: 만료일
|
494
494
|
last_used_at: 마지막으로 사용한 시간
|
495
495
|
times_used: 사용 시간
|
@@ -608,11 +608,6 @@ ko:
|
|
608
608
|
images:
|
609
609
|
layout_appearance_title: 레이아웃 모양 편집
|
610
610
|
preview: 미리보기
|
611
|
-
organization_external_domain_whitelist:
|
612
|
-
edit:
|
613
|
-
update: 업데이트
|
614
|
-
form:
|
615
|
-
add: 화이트 리스트에 추가
|
616
611
|
participatory_space_private_users:
|
617
612
|
new:
|
618
613
|
create: 생성
|
data/config/locales/lb.yml
CHANGED
@@ -352,13 +352,12 @@ lb:
|
|
352
352
|
'false': Veröffentlicht
|
353
353
|
'true': Unveröffentlicht
|
354
354
|
scope_id_eq:
|
355
|
-
label:
|
355
|
+
label: Themenbereich
|
356
356
|
search_label: Suche
|
357
357
|
search_placeholder:
|
358
358
|
name_or_nickname_or_email_cont: Suche in %{collection} nach E-Mail, Name oder Benutzername.
|
359
359
|
reported_id_string_or_reported_content_cont: Suche %{collection} nach meldbarer Id oder Inhalt.
|
360
360
|
title_cont: In %{collection} nach Titel suchen.
|
361
|
-
user_name_or_user_email_cont: In %{collection} nach Name oder E-Mail suchen.
|
362
361
|
state_eq:
|
363
362
|
label: Bundesland
|
364
363
|
values:
|
@@ -495,7 +494,7 @@ lb:
|
|
495
494
|
plural: Plural
|
496
495
|
share_token:
|
497
496
|
fields:
|
498
|
-
created_at:
|
497
|
+
created_at: Erstellt am
|
499
498
|
expires_at: Läuft ab am
|
500
499
|
last_used_at: Zuletzt verwendet
|
501
500
|
times_used: Anzahl Anwendungen
|
@@ -607,7 +606,7 @@ lb:
|
|
607
606
|
confirm_deliver: Möchten Sie diesen Newsletter wirklich liefern? Diese Aktion kann nicht rückgängig gemacht werden.
|
608
607
|
deliver: Liefern Newsletter
|
609
608
|
followers_help: Sendet den Newsletter an alle bestätigten Benutzer, die den ausgewählten Teilnehmerräumen in der Liste folgen.
|
610
|
-
none:
|
609
|
+
none: Niemand
|
611
610
|
participants_help: Sendet den Newsletter an alle bestätigten Benutzer, die an den ausgewählten Teilnehmerräumen der Liste teilgenommen haben.
|
612
611
|
recipients_count: Dieser Newsletter wird an <strong id='recipients_count'>%{count}</strong> Teilnehmer gesendet.
|
613
612
|
scopes_help: Sendet den Newsletter an Teilnehmer, die einen der gewählten Themenbereiche in den "Meine Interessen" Einstellungen ihres Kontos aktiviert haben.
|
@@ -679,12 +678,6 @@ lb:
|
|
679
678
|
layout_appearance_title: Layout-Layout bearbeiten
|
680
679
|
preview: Vorschau
|
681
680
|
omnipresent_banner_appearance_title: Bearbeiten Sie das allgegenwärtige Banner
|
682
|
-
organization_external_domain_whitelist:
|
683
|
-
edit:
|
684
|
-
update: Aktualisieren
|
685
|
-
form:
|
686
|
-
add: Zur Whitelist hinzufügen
|
687
|
-
title: Whitelist für externe Domains
|
688
681
|
participatory_space_private_users:
|
689
682
|
create:
|
690
683
|
error: Beim Hinzufügen eines privaten Benutzers für diesen partizipativen Bereich ist ein Fehler aufgetreten.
|
@@ -710,7 +703,7 @@ lb:
|
|
710
703
|
resources:
|
711
704
|
index:
|
712
705
|
headers:
|
713
|
-
scope:
|
706
|
+
scope: Bereich
|
714
707
|
scope_types:
|
715
708
|
create:
|
716
709
|
error: Beim Erstellen eines neuen Geltungstyps ist ein Fehler aufgetreten.
|
data/config/locales/lt.yml
CHANGED
@@ -362,10 +362,6 @@ lt:
|
|
362
362
|
title: Laukiantys Moderavimai
|
363
363
|
show:
|
364
364
|
view_more_logs: Peržiūrėti daugiau ataskaitų
|
365
|
-
domain_whitelist:
|
366
|
-
update:
|
367
|
-
error: Nepavyko atnaujinti domenų baltąjo sąrašo.
|
368
|
-
success: Domenų baltasis sąrašas atnaujintas sėkmingai.
|
369
365
|
exports:
|
370
366
|
export_as: "%{name} kaip %{export_format}"
|
371
367
|
formats:
|
@@ -432,7 +428,6 @@ lt:
|
|
432
428
|
report_count_eq: Raportuoti skaičių
|
433
429
|
reported_id_string_or_reported_content_cont: Ieškoti %{collection} pagal ID arba turinį.
|
434
430
|
title_cont: Ieškoti %{collection} pagal pavadinimą.
|
435
|
-
user_name_or_user_email_cont: Ieškoti %{collection} pagal vardą ar el. paštą.
|
436
431
|
user_name_or_user_nickname_or_user_email_cont: Ieškoti %{collection} pagal el. pašto adresą, vardą arba naudotojo vardą.
|
437
432
|
state_eq:
|
438
433
|
label: Būsena
|
@@ -832,12 +827,6 @@ lt:
|
|
832
827
|
layout_appearance_title: Redaguoti išdėstymą
|
833
828
|
preview: Peržiūra
|
834
829
|
omnipresent_banner_appearance_title: Keisti visur naudojamą reklamjuostę
|
835
|
-
organization_external_domain_whitelist:
|
836
|
-
edit:
|
837
|
-
update: Atnaujinti
|
838
|
-
form:
|
839
|
-
add: Pridėti prie baltojo sąrašo
|
840
|
-
title: Išorinių domenų baltasis sąrašas
|
841
830
|
participatory_space_private_users:
|
842
831
|
create:
|
843
832
|
error: Pridedant privatų dalyvį į šia dalyvaujamają erdvę kilo problema.
|
@@ -982,7 +971,6 @@ lt:
|
|
982
971
|
areas: Aplinkos
|
983
972
|
authorization_workflows: Verifikacijos metodai
|
984
973
|
dashboard: Švieslentė
|
985
|
-
edit_external_domains: Išorinių domenų baltasis sąrašas
|
986
974
|
edit_landing_page: Puslapio turinys
|
987
975
|
edit_organization_appearance: Keisti pagrindinio puslapio išvaizdą
|
988
976
|
impersonatable_users: Dalyviai, kurių duomenis galima tvarkyti
|
data/config/locales/lv.yml
CHANGED
@@ -259,6 +259,8 @@ lv:
|
|
259
259
|
values:
|
260
260
|
'false': Publicēts
|
261
261
|
'true': Nav publicēts
|
262
|
+
scope_id_eq:
|
263
|
+
label: Darbības tvērums
|
262
264
|
search_label: Meklēt
|
263
265
|
search_placeholder:
|
264
266
|
name_or_nickname_or_email_cont: Meklējiet %{collection} pēc e-pasta adreses, vārda vai segvārda.
|
@@ -377,9 +379,6 @@ lv:
|
|
377
379
|
fields:
|
378
380
|
name: Nosaukums
|
379
381
|
plural: Daudzskaitlī
|
380
|
-
share_token:
|
381
|
-
fields:
|
382
|
-
created_at: Izveidots plkst.
|
383
382
|
static_page:
|
384
383
|
fields:
|
385
384
|
created_at: Izveidots plkst.
|
@@ -513,9 +512,6 @@ lv:
|
|
513
512
|
layout_appearance_title: Rediģēt izkārtojuma izskatu
|
514
513
|
preview: Priekšskatīt
|
515
514
|
omnipresent_banner_appearance_title: Rediģēt visuresošo reklāmkarogu
|
516
|
-
organization_external_domain_whitelist:
|
517
|
-
edit:
|
518
|
-
update: Atjaunināt
|
519
515
|
participatory_space_private_users:
|
520
516
|
create:
|
521
517
|
error: Pievienojot privāto dalībnieku šai līdzdalības telpai, radās problēma.
|
data/config/locales/nl.yml
CHANGED
@@ -363,14 +363,13 @@ nl:
|
|
363
363
|
'false': Ingediend
|
364
364
|
'true': Niet-gepubliceerde
|
365
365
|
scope_id_eq:
|
366
|
-
label:
|
366
|
+
label: Bereik
|
367
367
|
search_label: Zoeken
|
368
368
|
search_placeholder:
|
369
369
|
name_or_nickname_or_email_cont: Zoek %{collection} op e-mail, naam of bijnaam.
|
370
370
|
report_count_eq: Aantal rapporteringen
|
371
371
|
reported_id_string_or_reported_content_cont: Zoek %{collection} op rapporteerbaar id of op inhoud.
|
372
372
|
title_cont: Zoek %{collection} op titel.
|
373
|
-
user_name_or_user_email_cont: '%{collection} doorzoeken op Id of titel.'
|
374
373
|
user_name_or_user_nickname_or_user_email_cont: Doorzoek %{collection} op e-mail, naam of bijnaam.
|
375
374
|
state_eq:
|
376
375
|
label: Provincie
|
@@ -728,12 +727,6 @@ nl:
|
|
728
727
|
layout_appearance_title: Weergave van de lay-out bewerken
|
729
728
|
preview: Voorvertoning
|
730
729
|
omnipresent_banner_appearance_title: Bewerk de permanente banner
|
731
|
-
organization_external_domain_whitelist:
|
732
|
-
edit:
|
733
|
-
update: Bijwerken
|
734
|
-
form:
|
735
|
-
add: Toevoegen aan whitelist
|
736
|
-
title: Externe domein whitelist
|
737
730
|
participatory_space_private_users:
|
738
731
|
create:
|
739
732
|
error: Er is een probleem opgetreden bij het toevoegen van een privédeelnemer aan deze deelruimte.
|
data/config/locales/no.yml
CHANGED
@@ -382,7 +382,6 @@
|
|
382
382
|
report_count_eq: Antall rapporter
|
383
383
|
reported_id_string_or_reported_content_cont: Søk %{collection} av rapporterbar id eller innhold.
|
384
384
|
title_cont: Søk %{collection} etter tittel.
|
385
|
-
user_name_or_user_email_cont: Søk %{collection} etter navn eller e-post.
|
386
385
|
user_name_or_user_nickname_or_user_email_cont: Søk %{collection} via e-post, navn eller kallenavn.
|
387
386
|
state_eq:
|
388
387
|
label: Tilstand
|
@@ -547,7 +546,7 @@
|
|
547
546
|
plural: Flertall
|
548
547
|
share_token:
|
549
548
|
fields:
|
550
|
-
created_at: Opprettet
|
549
|
+
created_at: Opprettet i
|
551
550
|
expires_at: Utløper
|
552
551
|
last_used_at: Sist brukt
|
553
552
|
times_used: Ganger brukt
|
@@ -732,12 +731,6 @@
|
|
732
731
|
layout_appearance_title: Rediger layout utseende
|
733
732
|
preview: Forhåndsvis
|
734
733
|
omnipresent_banner_appearance_title: Endre enerådende banner
|
735
|
-
organization_external_domain_whitelist:
|
736
|
-
edit:
|
737
|
-
update: Oppdater
|
738
|
-
form:
|
739
|
-
add: Legg til i hviteliste
|
740
|
-
title: Hviteliste for eksterne domener
|
741
734
|
participatory_space_private_users:
|
742
735
|
create:
|
743
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
|
@@ -766,7 +766,7 @@ pl:
|
|
766
766
|
confirm_deliver: Czy na pewno chcesz dostarczyć ten newsletter? Nie można cofnąć tej czynności.
|
767
767
|
deliver: Dostarcz newsletter
|
768
768
|
followers_help: Wysyła newsletter do wszystkich potwierdzonych użytkowników, którzy obserwują dowolne przestrzenie partycypacyjne z tej listy.
|
769
|
-
none:
|
769
|
+
none: Żaden
|
770
770
|
participants_help: Wysyła newsletter do wszystkich potwierdzonych użytkowników, którzy uczestniczyli w którejkolwiek z przestrzeni partycypacyjnych z tej listy.
|
771
771
|
recipients_count: Ten newsletter zostanie wysłany do <strong id='recipients_count'>%{count}</strong> użytkowników.
|
772
772
|
scopes_help: Wysyła newsletter do użytkowników, którzy mają dowolny z wybranych zakresów ustawiony jako aktywny w zakładce konta „Moje zainteresowania”.
|
@@ -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
|