From d2ae0b235d255209673e7fcff9bf040c71c6fb81 Mon Sep 17 00:00:00 2001 From: Bjarke Berg Date: Thu, 3 Oct 2024 09:43:54 +0200 Subject: [PATCH] Move to top on top due to ar being sorted before bs --- .../packages/core/localization/manifests.ts | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/Umbraco.Web.UI.Client/src/packages/core/localization/manifests.ts b/src/Umbraco.Web.UI.Client/src/packages/core/localization/manifests.ts index 9c02cecfc3..cec662b335 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/core/localization/manifests.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/core/localization/manifests.ts @@ -1,6 +1,16 @@ import type { ManifestLocalization } from './extensions/localization.extension.js'; export const manifests: Array = [ + { + type: 'localization', + alias: 'Umb.Localization.Ar', + weight: -100, + name: 'العربية', + meta: { + culture: 'ar', + }, + js: () => import('../../../assets/lang/ar.js'), + }, { type: 'localization', alias: 'Umb.Localization.Bs', @@ -250,15 +260,5 @@ export const manifests: Array = [ culture: 'zh-tw', }, js: () => import('../../../assets/lang/zh-tw.js'), - }, - { - type: 'localization', - alias: 'Umb.Localization.Ar', - weight: -100, - name: 'العربية', - meta: { - culture: 'ar', - }, - js: () => import('../../../assets/lang/ar.js'), } ];