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/eu.yml
CHANGED
@@ -188,6 +188,7 @@ eu:
|
|
188
188
|
export: Esportatu dena
|
189
189
|
export-selection: Esportatu hautaketa
|
190
190
|
import: Inportatu
|
191
|
+
manage: Kudeatu
|
191
192
|
newsletter:
|
192
193
|
new: Beste buletin bat
|
193
194
|
participatory_space_private_user:
|
@@ -355,7 +356,7 @@ eu:
|
|
355
356
|
title: Egiaztapen-arazoak
|
356
357
|
transfer:
|
357
358
|
email: Helbide elektronikoa
|
358
|
-
error: Arazo bat
|
359
|
+
error: Arazo bat sortu da parte-hartzailea kudeatutako parte-hartzaileari eskualdatzean.
|
359
360
|
name: Izena
|
360
361
|
reason: Arrazoia
|
361
362
|
success: Egungo transferentzia zuzen egina.
|
@@ -378,7 +379,7 @@ eu:
|
|
378
379
|
update: Eguneratu
|
379
380
|
dashboard:
|
380
381
|
pending_moderations:
|
381
|
-
|
382
|
+
announcement:
|
382
383
|
one: Moderazio bat falta da
|
383
384
|
other: '%{count} moderazio daude zain'
|
384
385
|
goto_moderation: Joan moderazio globaletara
|
@@ -386,12 +387,12 @@ eu:
|
|
386
387
|
show:
|
387
388
|
dropdown: Goitibeherako zerrrenda
|
388
389
|
view_more_logs: Ikusi erregistro gehiago
|
389
|
-
|
390
|
+
domain_allowlist:
|
390
391
|
form:
|
391
392
|
domain_too_short: Domeinu laburregia
|
392
393
|
update:
|
393
|
-
error: Errorea baimendutako domeinuen zerrenda eguneratzean
|
394
|
-
success: Baimendutako domeinuen zerrenda zuzen eguneratua.
|
394
|
+
error: Errorea gertatu da baimendutako kanpoko domeinuen zerrenda eguneratzean
|
395
|
+
success: Baimendutako kanpoko domeinuen zerrenda zuzen eguneratua.
|
395
396
|
exports:
|
396
397
|
export_as: "%{name} honako hau gisa: %{export_format}"
|
397
398
|
formats:
|
@@ -450,6 +451,7 @@ eu:
|
|
450
451
|
values:
|
451
452
|
'false': Argitaratua
|
452
453
|
'true': Ez da argitaratu
|
454
|
+
remove_all: Ezabatu denak
|
453
455
|
scope_id_eq:
|
454
456
|
label: Esparrua
|
455
457
|
search_label: Bilatu
|
@@ -458,7 +460,6 @@ eu:
|
|
458
460
|
report_count_eq: Salaketa kopurua
|
459
461
|
reported_id_string_or_reported_content_cont: Bilatu %{collection} eduki edo Id erreportablearen arabera.
|
460
462
|
title_cont: Bilatu %{collection} izenburuaren arabera.
|
461
|
-
user_name_or_user_email_cont: Bilatu %{collection} helbide elektroniko edo izenaren arabera.
|
462
463
|
user_name_or_user_nickname_or_user_email_cont: Bilatu %{collection} helbide elektroniko, izen edo ezizenaren arabera.
|
463
464
|
state_eq:
|
464
465
|
label: Egoera
|
@@ -562,9 +563,10 @@ eu:
|
|
562
563
|
appearance: Itxura
|
563
564
|
area_types: Arlo motak
|
564
565
|
areas: Arloak
|
566
|
+
components: Osagaiak
|
565
567
|
configuration: Konfigurazioa
|
566
568
|
content: Eduki salatua
|
567
|
-
|
569
|
+
external_domain_allowlist: Baimendutako kanpoko domeinuak
|
568
570
|
help_sections: Laguntza atalak
|
569
571
|
homepage: Orrialde nagusia
|
570
572
|
impersonations: Inpertsonazioak
|
@@ -849,7 +851,7 @@ eu:
|
|
849
851
|
layout_appearance_title: Editatu itxura globalaren itxura
|
850
852
|
preview: Aurrebistaratu
|
851
853
|
omnipresent_banner_appearance_title: Editatu banner nonahikoa
|
852
|
-
|
854
|
+
organization_external_domain_allowlist:
|
853
855
|
edit:
|
854
856
|
update: Eguneratu
|
855
857
|
external_domain:
|
@@ -858,8 +860,8 @@ eu:
|
|
858
860
|
remove: Ezabatu
|
859
861
|
up: Igo
|
860
862
|
form:
|
861
|
-
add: Gehitu
|
862
|
-
title:
|
863
|
+
add: Gehitu baimendutako helbideen zerrendara
|
864
|
+
title: Baimendutako kanpoko domeinuen zerrenda
|
863
865
|
participatory_space_private_users:
|
864
866
|
create:
|
865
867
|
error: Arazo bat egon da parte-hartzaile pribatu bat gehitzean parte hartzeko espazio honetarako.
|
@@ -952,6 +954,11 @@ eu:
|
|
952
954
|
help: Identifikatzaile-ikur hauek argitaratu gabeko baliabide hori edozein erabiltzaileri publikoki partekatzeko erabiltzen dira. Errekurtsoa argitaratzean ezkutatuko dira. Egin klik identifikatzaile-ikurra partekatzeko ikonoan, URL partekagarria bisitatzeko.
|
953
955
|
title: Partekatu identifikatzaile-ikurrak
|
954
956
|
shared:
|
957
|
+
adjacent_navigation:
|
958
|
+
next: Hurrengoa
|
959
|
+
next_title: Hurrengo elementua
|
960
|
+
previous: Aurrekoa
|
961
|
+
previous_title: Aurreko elementua
|
955
962
|
gallery:
|
956
963
|
add_images: Gehitu irudiak
|
957
964
|
edit_images: Editatu irudiak
|
@@ -1004,7 +1011,7 @@ eu:
|
|
1004
1011
|
areas: Arloak
|
1005
1012
|
authorization_workflows: Egiaztapen-metodoak
|
1006
1013
|
dashboard: Kontrol-panela
|
1007
|
-
edit_external_domains:
|
1014
|
+
edit_external_domains: Baimendutako kanpoko domeinuen zerrenda
|
1008
1015
|
edit_landing_page: Orriaren edukiak
|
1009
1016
|
edit_organization_appearance: Editatu hasierako orriaren itxura
|
1010
1017
|
impersonatable_users: Erabiltzaile erabilgarriak
|
data/config/locales/fi-plain.yml
CHANGED
@@ -188,6 +188,7 @@ fi-pl:
|
|
188
188
|
export: Vie kaikki
|
189
189
|
export-selection: Vie valitut
|
190
190
|
import: Tuo
|
191
|
+
manage: Hallitse
|
191
192
|
newsletter:
|
192
193
|
new: Uusi uutiskirje
|
193
194
|
participatory_space_private_user:
|
@@ -378,7 +379,7 @@ fi-pl:
|
|
378
379
|
update: Päivitä
|
379
380
|
dashboard:
|
380
381
|
pending_moderations:
|
381
|
-
|
382
|
+
announcement:
|
382
383
|
one: Yksi moderointi odottaa käsittelyä
|
383
384
|
other: '%{count} moderointia odottavat käsittelyä'
|
384
385
|
goto_moderation: Siirry yleisiin moderointeihin
|
@@ -386,12 +387,12 @@ fi-pl:
|
|
386
387
|
show:
|
387
388
|
dropdown: Alasvetovalikko
|
388
389
|
view_more_logs: Näytä lisää lokitietoja
|
389
|
-
|
390
|
+
domain_allowlist:
|
390
391
|
form:
|
391
392
|
domain_too_short: Verkkotunnus on liian lyhyt
|
392
393
|
update:
|
393
|
-
error: Sallittujen verkkotunnusten
|
394
|
-
success: Sallittujen verkkotunnusten
|
394
|
+
error: Sallittujen ulkoisten verkkotunnusten luettelon päivittäminen epäonnistui
|
395
|
+
success: Sallittujen ulkoisten verkkotunnusten luettelon päivittäminen onnistui.
|
395
396
|
exports:
|
396
397
|
export_as: "%{name} muodossa %{export_format}"
|
397
398
|
formats:
|
@@ -450,6 +451,7 @@ fi-pl:
|
|
450
451
|
values:
|
451
452
|
'false': Julkaistu
|
452
453
|
'true': Julkaisematon
|
454
|
+
remove_all: Poista kaikki
|
453
455
|
scope_id_eq:
|
454
456
|
label: Teema
|
455
457
|
search_label: Hae
|
@@ -458,7 +460,6 @@ fi-pl:
|
|
458
460
|
report_count_eq: Ilmoitusten määrä
|
459
461
|
reported_id_string_or_reported_content_cont: Etsi kohteista %{collection} raportoitavan kohteen ID:n tai sisällön perusteella.
|
460
462
|
title_cont: '%{collection}: Hae otsikon perusteella'
|
461
|
-
user_name_or_user_email_cont: Hae kohteesta %{collection} nimen tai sähköpostiosoitteen perusteella.
|
462
463
|
user_name_or_user_nickname_or_user_email_cont: Etsi kohteita %{collection} sähköpostiosoitteen, nimen tai nimimerkin perusteella.
|
463
464
|
state_eq:
|
464
465
|
label: Tila
|
@@ -571,9 +572,10 @@ fi-pl:
|
|
571
572
|
appearance: Ulkoasu
|
572
573
|
area_types: Aluetyypit
|
573
574
|
areas: Alueet
|
575
|
+
components: Komponentit
|
574
576
|
configuration: Asetukset
|
575
577
|
content: Ilmoitettu sisältö
|
576
|
-
|
578
|
+
external_domain_allowlist: Sallitut ulkoiset verkko-osoitteet
|
577
579
|
help_sections: Ohjeosiot
|
578
580
|
homepage: Kotisivu
|
579
581
|
impersonations: Esiintymiset toisena käyttäjänä
|
@@ -858,7 +860,7 @@ fi-pl:
|
|
858
860
|
layout_appearance_title: Muokkaa sivupohjan ulkoasua
|
859
861
|
preview: Esikatsele
|
860
862
|
omnipresent_banner_appearance_title: Muokkaa kaikkialla näkyvää banneria
|
861
|
-
|
863
|
+
organization_external_domain_allowlist:
|
862
864
|
edit:
|
863
865
|
update: Päivitä
|
864
866
|
external_domain:
|
@@ -868,7 +870,7 @@ fi-pl:
|
|
868
870
|
up: Ylös
|
869
871
|
form:
|
870
872
|
add: Lisää sallittujen listalle
|
871
|
-
title:
|
873
|
+
title: Sallitut ulkoiset verkko-osoitteet
|
872
874
|
participatory_space_private_users:
|
873
875
|
create:
|
874
876
|
error: Yksityisen käyttäjän lisäämisessä tähän osallisuustilaan tapahtui virhe.
|
@@ -964,6 +966,11 @@ fi-pl:
|
|
964
966
|
help: Näitä tunnisteita käytetään jaettaessa tätä kohdetta muille käyttäjille. Ne piilotetaan, kun kohde julkaistaan. Klikkaa tunnisteen jakoikonia vieraillaksesi jaettavassa URL-osoitteessa.
|
965
967
|
title: Jakotunnisteet
|
966
968
|
shared:
|
969
|
+
adjacent_navigation:
|
970
|
+
next: Seuraava
|
971
|
+
next_title: Seuraava kohde
|
972
|
+
previous: Edellinen
|
973
|
+
previous_title: Edellinen kohde
|
967
974
|
gallery:
|
968
975
|
add_images: Lisää kuvia
|
969
976
|
edit_images: Muokkaa kuvia
|
@@ -1016,7 +1023,7 @@ fi-pl:
|
|
1016
1023
|
areas: Alueet
|
1017
1024
|
authorization_workflows: Vahvistusmenetelmät
|
1018
1025
|
dashboard: Hallintapaneeli
|
1019
|
-
edit_external_domains:
|
1026
|
+
edit_external_domains: Sallitut ulkoiset verkko-osoitteet
|
1020
1027
|
edit_landing_page: Sivun sisältö
|
1021
1028
|
edit_organization_appearance: Muokkaa kotisivun ulkoasua
|
1022
1029
|
impersonatable_users: Hallittavat käyttäjät
|
data/config/locales/fi.yml
CHANGED
@@ -188,6 +188,7 @@ fi:
|
|
188
188
|
export: Vie kaikki
|
189
189
|
export-selection: Vie valitut
|
190
190
|
import: Tuo
|
191
|
+
manage: Hallitse
|
191
192
|
newsletter:
|
192
193
|
new: Uusi uutiskirje
|
193
194
|
participatory_space_private_user:
|
@@ -378,7 +379,7 @@ fi:
|
|
378
379
|
update: Päivitä
|
379
380
|
dashboard:
|
380
381
|
pending_moderations:
|
381
|
-
|
382
|
+
announcement:
|
382
383
|
one: Yksi moderointi odottaa käsittelyä
|
383
384
|
other: '%{count} moderointia odottavat käsittelyä'
|
384
385
|
goto_moderation: Siirry yleisiin moderointeihin
|
@@ -386,12 +387,12 @@ fi:
|
|
386
387
|
show:
|
387
388
|
dropdown: Alasvetovalikko
|
388
389
|
view_more_logs: Näytä lisää lokitietoja
|
389
|
-
|
390
|
+
domain_allowlist:
|
390
391
|
form:
|
391
392
|
domain_too_short: Verkkotunnus on liian lyhyt
|
392
393
|
update:
|
393
|
-
error: Sallittujen verkkotunnusten
|
394
|
-
success: Sallittujen verkkotunnusten
|
394
|
+
error: Sallittujen ulkoisten verkkotunnusten luettelon päivittäminen epäonnistui
|
395
|
+
success: Sallittujen ulkoisten verkkotunnusten luettelon päivittäminen onnistui.
|
395
396
|
exports:
|
396
397
|
export_as: "%{name} muodossa %{export_format}"
|
397
398
|
formats:
|
@@ -450,6 +451,7 @@ fi:
|
|
450
451
|
values:
|
451
452
|
'false': Julkaistu
|
452
453
|
'true': Julkaisematon
|
454
|
+
remove_all: Poista kaikki
|
453
455
|
scope_id_eq:
|
454
456
|
label: Teema
|
455
457
|
search_label: Hae
|
@@ -458,7 +460,6 @@ fi:
|
|
458
460
|
report_count_eq: Ilmoitusten määrä
|
459
461
|
reported_id_string_or_reported_content_cont: Etsi kohteista %{collection} raportoitavan kohteen ID:n tai sisällön perusteella.
|
460
462
|
title_cont: '%{collection}: Hae otsikon perusteella'
|
461
|
-
user_name_or_user_email_cont: Hae kohteesta %{collection} nimen tai sähköpostiosoitteen perusteella.
|
462
463
|
user_name_or_user_nickname_or_user_email_cont: Etsi kohteita %{collection} sähköpostiosoitteen, nimen tai nimimerkin perusteella.
|
463
464
|
state_eq:
|
464
465
|
label: Tila
|
@@ -571,9 +572,10 @@ fi:
|
|
571
572
|
appearance: Ulkoasu
|
572
573
|
area_types: Aluetyypit
|
573
574
|
areas: Alueet
|
575
|
+
components: Komponentit
|
574
576
|
configuration: Asetukset
|
575
577
|
content: Ilmoitettu sisältö
|
576
|
-
|
578
|
+
external_domain_allowlist: Sallitut ulkoiset verkko-osoitteet
|
577
579
|
help_sections: Ohjeosiot
|
578
580
|
homepage: Kotisivu
|
579
581
|
impersonations: Esiintymiset toisena käyttäjänä
|
@@ -858,7 +860,7 @@ fi:
|
|
858
860
|
layout_appearance_title: Muokkaa sivupohjan ulkoasua
|
859
861
|
preview: Esikatsele
|
860
862
|
omnipresent_banner_appearance_title: Muokkaa kaikkialla näkyvää banneria
|
861
|
-
|
863
|
+
organization_external_domain_allowlist:
|
862
864
|
edit:
|
863
865
|
update: Päivitä
|
864
866
|
external_domain:
|
@@ -868,7 +870,7 @@ fi:
|
|
868
870
|
up: Ylös
|
869
871
|
form:
|
870
872
|
add: Lisää sallittujen listalle
|
871
|
-
title:
|
873
|
+
title: Sallitut ulkoiset verkko-osoitteet
|
872
874
|
participatory_space_private_users:
|
873
875
|
create:
|
874
876
|
error: Yksityisen käyttäjän lisääminen tähän osallistumistilaan epäonnistui.
|
@@ -964,6 +966,11 @@ fi:
|
|
964
966
|
help: Näitä tunnisteita käytetään jaettaessa tätä julkaisematonta kohdetta muille käyttäjille. Ne piilotetaan, kun kohde julkaistaan. Klikkaa tunnisteen jakokuvaketta vieraillaksesi jaettavassa URL-osoitteessa.
|
965
967
|
title: Jakotunnisteet
|
966
968
|
shared:
|
969
|
+
adjacent_navigation:
|
970
|
+
next: Seuraava
|
971
|
+
next_title: Seuraava kohde
|
972
|
+
previous: Edellinen
|
973
|
+
previous_title: Edellinen kohde
|
967
974
|
gallery:
|
968
975
|
add_images: Lisää kuvia
|
969
976
|
edit_images: Muokkaa kuvia
|
@@ -1016,7 +1023,7 @@ fi:
|
|
1016
1023
|
areas: Alueet
|
1017
1024
|
authorization_workflows: Vahvistustavat
|
1018
1025
|
dashboard: Hallintapaneeli
|
1019
|
-
edit_external_domains:
|
1026
|
+
edit_external_domains: Sallitut ulkoiset verkko-osoitteet
|
1020
1027
|
edit_landing_page: Sivun sisältö
|
1021
1028
|
edit_organization_appearance: Muokkaa kotisivun ulkoasua
|
1022
1029
|
impersonatable_users: Hallittavat käyttäjät
|
data/config/locales/fr-CA.yml
CHANGED
@@ -188,6 +188,7 @@ fr-CA:
|
|
188
188
|
export: Tout exporter
|
189
189
|
export-selection: Exporter la sélection
|
190
190
|
import: Importer
|
191
|
+
manage: Gérer
|
191
192
|
newsletter:
|
192
193
|
new: Nouvelle newsletter
|
193
194
|
participatory_space_private_user:
|
@@ -378,7 +379,7 @@ fr-CA:
|
|
378
379
|
update: Mettre à jour
|
379
380
|
dashboard:
|
380
381
|
pending_moderations:
|
381
|
-
|
382
|
+
announcement:
|
382
383
|
one: Il y a %{count} modération en attente
|
383
384
|
other: Il y a %{count} modérations en attente
|
384
385
|
goto_moderation: Aller au panneau de modération global
|
@@ -386,12 +387,12 @@ fr-CA:
|
|
386
387
|
show:
|
387
388
|
dropdown: Liste déroulante
|
388
389
|
view_more_logs: Afficher plus
|
389
|
-
|
390
|
+
domain_allowlist:
|
390
391
|
form:
|
391
392
|
domain_too_short: Le nom de domaine est trop court
|
392
393
|
update:
|
393
|
-
error:
|
394
|
-
success:
|
394
|
+
error: Impossible de mettre à jour la liste des domaines externes autorisés
|
395
|
+
success: La liste des domaines externes autorisés a été mise à jour avec succès.
|
395
396
|
exports:
|
396
397
|
export_as: "%{name} en format %{export_format}"
|
397
398
|
formats:
|
@@ -450,6 +451,7 @@ fr-CA:
|
|
450
451
|
values:
|
451
452
|
'false': Publié
|
452
453
|
'true': Dépublié
|
454
|
+
remove_all: Tout supprimer
|
453
455
|
scope_id_eq:
|
454
456
|
label: Périmètre d'application
|
455
457
|
search_label: Rechercher
|
@@ -458,7 +460,6 @@ fr-CA:
|
|
458
460
|
report_count_eq: Nombre de signalement
|
459
461
|
reported_id_string_or_reported_content_cont: Rechercher %{collection} par Id ou par contenu.
|
460
462
|
title_cont: Search %{collection} par titre.
|
461
|
-
user_name_or_user_email_cont: Rechercher %{collection} par nom ou par email.
|
462
463
|
user_name_or_user_nickname_or_user_email_cont: Rechercher les %{collection} par e-mail, nom ou pseudo.
|
463
464
|
state_eq:
|
464
465
|
label: État
|
@@ -571,9 +572,10 @@ fr-CA:
|
|
571
572
|
appearance: Apparence
|
572
573
|
area_types: Types de périmètre d'assemblée
|
573
574
|
areas: Zones d'application
|
575
|
+
components: Fonctionnalités
|
574
576
|
configuration: Configuration
|
575
577
|
content: Contenu signalé
|
576
|
-
|
578
|
+
external_domain_allowlist: Domaines externes autorisés
|
577
579
|
help_sections: Sections d'aide
|
578
580
|
homepage: Page d'accueil
|
579
581
|
impersonations: Utilisateurs représentés
|
@@ -858,7 +860,7 @@ fr-CA:
|
|
858
860
|
layout_appearance_title: Modifier l’aspect de la mise en page
|
859
861
|
preview: Aperçu
|
860
862
|
omnipresent_banner_appearance_title: Modifier la bannière permanente
|
861
|
-
|
863
|
+
organization_external_domain_allowlist:
|
862
864
|
edit:
|
863
865
|
update: Mettre à jour
|
864
866
|
external_domain:
|
@@ -867,8 +869,8 @@ fr-CA:
|
|
867
869
|
remove: Retirer
|
868
870
|
up: Monter
|
869
871
|
form:
|
870
|
-
add: Ajouter à la liste
|
871
|
-
title: Liste
|
872
|
+
add: Ajouter à la liste autorisée
|
873
|
+
title: Liste des domaines externes autorisés
|
872
874
|
participatory_space_private_users:
|
873
875
|
create:
|
874
876
|
error: Une erreur s'est produite lors de l'ajout d'un utilisateur pour cet espace participatif.
|
@@ -964,6 +966,11 @@ fr-CA:
|
|
964
966
|
help: Ces jetons sont utilisés pour partager cette ressource non publiée à n'importe quel utilisateur. Ils seront cachés dès que la ressource sera publiée. Cliquez sur l'icône du jeton pour visiter l'URL partageable.
|
965
967
|
title: Partager les jetons
|
966
968
|
shared:
|
969
|
+
adjacent_navigation:
|
970
|
+
next: Suivant
|
971
|
+
next_title: Élément suivant
|
972
|
+
previous: Précédent
|
973
|
+
previous_title: Élément précédent
|
967
974
|
gallery:
|
968
975
|
add_images: Ajouter des images
|
969
976
|
edit_images: Modifier les images
|
data/config/locales/fr.yml
CHANGED
@@ -188,6 +188,7 @@ fr:
|
|
188
188
|
export: Tout exporter
|
189
189
|
export-selection: Exporter la sélection
|
190
190
|
import: Importer
|
191
|
+
manage: Gérer
|
191
192
|
newsletter:
|
192
193
|
new: Nouvelle newsletter
|
193
194
|
participatory_space_private_user:
|
@@ -378,7 +379,7 @@ fr:
|
|
378
379
|
update: Mettre à jour
|
379
380
|
dashboard:
|
380
381
|
pending_moderations:
|
381
|
-
|
382
|
+
announcement:
|
382
383
|
one: Il y a %{count} modération en attente
|
383
384
|
other: Il y a %{count} modérations en attente
|
384
385
|
goto_moderation: Aller au panneau de modération global
|
@@ -386,12 +387,12 @@ fr:
|
|
386
387
|
show:
|
387
388
|
dropdown: Liste déroulante
|
388
389
|
view_more_logs: Afficher plus
|
389
|
-
|
390
|
+
domain_allowlist:
|
390
391
|
form:
|
391
392
|
domain_too_short: Le nom de domaine est trop court
|
392
393
|
update:
|
393
|
-
error:
|
394
|
-
success:
|
394
|
+
error: Impossible de mettre à jour la liste des domaines externes autorisés
|
395
|
+
success: La liste des domaines externes autorisés a été mise à jour avec succès.
|
395
396
|
exports:
|
396
397
|
export_as: "%{name} en format %{export_format}"
|
397
398
|
formats:
|
@@ -450,6 +451,7 @@ fr:
|
|
450
451
|
values:
|
451
452
|
'false': Publié
|
452
453
|
'true': Dépublié
|
454
|
+
remove_all: Tout supprimer
|
453
455
|
scope_id_eq:
|
454
456
|
label: Secteur
|
455
457
|
search_label: Rechercher
|
@@ -458,7 +460,6 @@ fr:
|
|
458
460
|
report_count_eq: Nombre de signalement
|
459
461
|
reported_id_string_or_reported_content_cont: Rechercher %{collection} par Id ou par contenu.
|
460
462
|
title_cont: Rechercher %{collection} par titre.
|
461
|
-
user_name_or_user_email_cont: Rechercher %{collection} par nom ou par email.
|
462
463
|
user_name_or_user_nickname_or_user_email_cont: Rechercher les %{collection} par e-mail, nom ou pseudo.
|
463
464
|
state_eq:
|
464
465
|
label: État
|
@@ -571,9 +572,10 @@ fr:
|
|
571
572
|
appearance: Apparence
|
572
573
|
area_types: Types de périmètre d'assemblée
|
573
574
|
areas: Périmètres d'assemblée
|
575
|
+
components: Fonctionnalités
|
574
576
|
configuration: Configuration
|
575
577
|
content: Contenu signalé
|
576
|
-
|
578
|
+
external_domain_allowlist: Domaines externes autorisés
|
577
579
|
help_sections: Sections d'aide
|
578
580
|
homepage: Page d'accueil
|
579
581
|
impersonations: Utilisateurs représentés
|
@@ -858,7 +860,7 @@ fr:
|
|
858
860
|
layout_appearance_title: Modifier l’aspect de la mise en page
|
859
861
|
preview: Aperçu
|
860
862
|
omnipresent_banner_appearance_title: Modifier la bannière permanente
|
861
|
-
|
863
|
+
organization_external_domain_allowlist:
|
862
864
|
edit:
|
863
865
|
update: Mettre à jour
|
864
866
|
external_domain:
|
@@ -867,7 +869,7 @@ fr:
|
|
867
869
|
remove: Retirer
|
868
870
|
up: Monter
|
869
871
|
form:
|
870
|
-
add: Ajouter à la liste
|
872
|
+
add: Ajouter à la liste autorisée
|
871
873
|
title: Liste des domaines externes autorisés
|
872
874
|
participatory_space_private_users:
|
873
875
|
create:
|
@@ -964,6 +966,11 @@ fr:
|
|
964
966
|
help: Ces jetons sont utilisés pour partager cette ressource non publiée à n'importe quel utilisateur. Ils seront cachés dès que la ressource sera publiée. Cliquez sur l'icône du jeton pour visiter l'URL partageable.
|
965
967
|
title: Partager les jetons
|
966
968
|
shared:
|
969
|
+
adjacent_navigation:
|
970
|
+
next: Suivant
|
971
|
+
next_title: Élément suivant
|
972
|
+
previous: Précédent
|
973
|
+
previous_title: Élément précédent
|
967
974
|
gallery:
|
968
975
|
add_images: Ajouter des images
|
969
976
|
edit_images: Modifier les images
|
data/config/locales/ga-IE.yml
CHANGED
@@ -68,6 +68,7 @@ ga:
|
|
68
68
|
category:
|
69
69
|
new: Catagóir nua
|
70
70
|
import: Iompórtáil
|
71
|
+
manage: Bainistigh
|
71
72
|
per_page: In aghaidh an leathanach
|
72
73
|
reject: Diúltaigh
|
73
74
|
share: Roinn
|
@@ -314,9 +315,6 @@ ga:
|
|
314
315
|
form:
|
315
316
|
images:
|
316
317
|
preview: Réamhamharc
|
317
|
-
organization_external_domain_whitelist:
|
318
|
-
edit:
|
319
|
-
update: Nuashonraigh
|
320
318
|
participatory_space_private_users:
|
321
319
|
new:
|
322
320
|
create: Cruthaigh
|
data/config/locales/gl.yml
CHANGED
@@ -150,6 +150,7 @@ gl:
|
|
150
150
|
export: Exportar todo
|
151
151
|
export-selection: Exportar selección
|
152
152
|
import: Importar
|
153
|
+
manage: Xestionar
|
153
154
|
newsletter:
|
154
155
|
new: Novo boletín
|
155
156
|
participatory_space_private_user:
|
@@ -290,7 +291,6 @@ gl:
|
|
290
291
|
solved: Resolto
|
291
292
|
transfer:
|
292
293
|
email: Correo electrónico
|
293
|
-
error: Produciuse un problema ao transferir el participante actual a un participante xestionado.
|
294
294
|
name: Nome
|
295
295
|
reason: Motivo
|
296
296
|
success: A transferencia actual completouse con éxito.
|
@@ -365,7 +365,6 @@ gl:
|
|
365
365
|
report_count_eq: Número de denuncias
|
366
366
|
reported_id_string_or_reported_content_cont: Procurar %{collection} por contido ou Id reportábel.
|
367
367
|
title_cont: Procurar %{collection} por título.
|
368
|
-
user_name_or_user_email_cont: Procurar %{collection} por nome ou correo electrónico.
|
369
368
|
user_name_or_user_nickname_or_user_email_cont: Pescudar %{collection} por correo, nome ou alcume.
|
370
369
|
state_eq:
|
371
370
|
label: Estado
|
@@ -712,9 +711,6 @@ gl:
|
|
712
711
|
layout_appearance_title: Editar aspecto de deseño
|
713
712
|
preview: Vista Previa
|
714
713
|
omnipresent_banner_appearance_title: Editar o banner omnipresente
|
715
|
-
organization_external_domain_whitelist:
|
716
|
-
edit:
|
717
|
-
update: Actualización
|
718
714
|
participatory_space_private_users:
|
719
715
|
create:
|
720
716
|
error: Produciuse un erro engadindo un usuario privado a este espazo participativo.
|
data/config/locales/hu.yml
CHANGED
@@ -188,6 +188,7 @@ hu:
|
|
188
188
|
export: Összes exportálása
|
189
189
|
export-selection: Kiválasztottak exportálása
|
190
190
|
import: Import
|
191
|
+
manage: Kezelés
|
191
192
|
newsletter:
|
192
193
|
new: Új hírlevél
|
193
194
|
participatory_space_private_user:
|
@@ -354,7 +355,7 @@ hu:
|
|
354
355
|
title: Ellenőrzési konfliktusok
|
355
356
|
transfer:
|
356
357
|
email: Email
|
357
|
-
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.
|
358
359
|
name: Név
|
359
360
|
reason: Ok
|
360
361
|
success: Az átvitel sikeresen befejezve.
|
@@ -382,12 +383,12 @@ hu:
|
|
382
383
|
show:
|
383
384
|
dropdown: Legördülő lista
|
384
385
|
view_more_logs: További naplók megtekintése
|
385
|
-
|
386
|
+
domain_allowlist:
|
386
387
|
form:
|
387
388
|
domain_too_short: Túl rövid domain név
|
388
389
|
update:
|
389
|
-
error: Nem sikerült frissíteni
|
390
|
-
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.
|
391
392
|
exports:
|
392
393
|
export_as: "%{name} mint %{export_format}"
|
393
394
|
formats:
|
@@ -454,7 +455,6 @@ hu:
|
|
454
455
|
report_count_eq: Jelentések száma
|
455
456
|
reported_id_string_or_reported_content_cont: Keresés %{gyűjtemény} a jelentendő azonosító vagy tartalom alapján.
|
456
457
|
title_cont: Keresés %{collection} cím alapján.
|
457
|
-
user_name_or_user_email_cont: Keresés itt %{collection} név vagy emailcím alapján.
|
458
458
|
user_name_or_user_nickname_or_user_email_cont: Keresés %{collection} email, név vagy becenév alapján.
|
459
459
|
state_eq:
|
460
460
|
label: Állapot
|
@@ -569,7 +569,7 @@ hu:
|
|
569
569
|
areas: Területek
|
570
570
|
configuration: Beállítások
|
571
571
|
content: Jelentett tartalom
|
572
|
-
|
572
|
+
external_domain_allowlist: Engedélyezett külső domainek
|
573
573
|
help_sections: Súgó szakaszok
|
574
574
|
homepage: Homepage
|
575
575
|
impersonations: Felhatalmazások
|
@@ -851,7 +851,7 @@ hu:
|
|
851
851
|
layout_appearance_title: Elrendezés szerkesztése
|
852
852
|
preview: Előnézet
|
853
853
|
omnipresent_banner_appearance_title: Mindenhol megjelenő banner szerkesztése
|
854
|
-
|
854
|
+
organization_external_domain_allowlist:
|
855
855
|
edit:
|
856
856
|
update: Frissítés
|
857
857
|
external_domain:
|
@@ -860,8 +860,8 @@ hu:
|
|
860
860
|
remove: Eltávolítás
|
861
861
|
up: Fel
|
862
862
|
form:
|
863
|
-
add: Hozzáadás
|
864
|
-
title:
|
863
|
+
add: Hozzáadás az engedélyezett listához
|
864
|
+
title: Engedélyezett külső domainek listája
|
865
865
|
participatory_space_private_users:
|
866
866
|
create:
|
867
867
|
error: Hiba történt egy privát felhasználó hozzáadása során a részvételi helyhez.
|
@@ -1006,7 +1006,7 @@ hu:
|
|
1006
1006
|
areas: Területek
|
1007
1007
|
authorization_workflows: Ellenőrzési módszerek
|
1008
1008
|
dashboard: Vezérlőpult
|
1009
|
-
edit_external_domains:
|
1009
|
+
edit_external_domains: Engedélyezett külső domainek listája
|
1010
1010
|
edit_landing_page: Az oldal tartalma
|
1011
1011
|
edit_organization_appearance: Honlap megjelenésének szerkesztése
|
1012
1012
|
impersonatable_users: Kezelhető résztvevők
|
data/config/locales/id-ID.yml
CHANGED
@@ -112,6 +112,7 @@ id:
|
|
112
112
|
actions:
|
113
113
|
add: Menambahkan
|
114
114
|
browse: Jelajahi
|
115
|
+
manage: Mengelola
|
115
116
|
permissions: Izin
|
116
117
|
reject: Menolak
|
117
118
|
verify: Memeriksa
|
@@ -451,9 +452,6 @@ id:
|
|
451
452
|
images:
|
452
453
|
layout_appearance_title: Edit tampilan tata letak
|
453
454
|
omnipresent_banner_appearance_title: Edit spanduk yang ada di mana-mana
|
454
|
-
organization_external_domain_whitelist:
|
455
|
-
edit:
|
456
|
-
update: Memperbarui
|
457
455
|
participatory_space_private_users:
|
458
456
|
create:
|
459
457
|
error: Terjadi kesalahan saat menambahkan pengguna pribadi untuk ruang partisipatif ini.
|
data/config/locales/is-IS.yml
CHANGED
@@ -123,6 +123,7 @@ is:
|
|
123
123
|
category:
|
124
124
|
new: Nýr flokkur
|
125
125
|
import: Flytja inn
|
126
|
+
manage: Stjórna
|
126
127
|
newsletter:
|
127
128
|
new: Nýtt fréttabréf
|
128
129
|
per_page: Á hveri síðu
|
@@ -407,9 +408,6 @@ is:
|
|
407
408
|
homepage_highlighted_content_banner_title: Hápunktur efni borði
|
408
409
|
images:
|
409
410
|
layout_appearance_title: Breyta útliti útlits
|
410
|
-
organization_external_domain_whitelist:
|
411
|
-
edit:
|
412
|
-
update: Uppfæra
|
413
411
|
participatory_space_private_users:
|
414
412
|
new:
|
415
413
|
create: Búa til
|