Skip to content

Commit cc03899

Browse files
committed
Move to top on top due to ar being sorted before bs
1 parent a2e7c70 commit cc03899

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

src/packages/core/localization/manifests.ts

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11
import type { ManifestLocalization } from './extensions/localization.extension.js';
22

33
export const manifests: Array<ManifestLocalization> = [
4+
{
5+
type: 'localization',
6+
alias: 'Umb.Localization.Ar',
7+
weight: -100,
8+
name: 'العربية',
9+
meta: {
10+
culture: 'ar',
11+
},
12+
js: () => import('../../../assets/lang/ar.js'),
13+
},
414
{
515
type: 'localization',
616
alias: 'Umb.Localization.Bs',
@@ -250,15 +260,5 @@ export const manifests: Array<ManifestLocalization> = [
250260
culture: 'zh-tw',
251261
},
252262
js: () => import('../../../assets/lang/zh-tw.js'),
253-
},
254-
{
255-
type: 'localization',
256-
alias: 'Umb.Localization.Ar',
257-
weight: -100,
258-
name: 'العربية',
259-
meta: {
260-
culture: 'ar',
261-
},
262-
js: () => import('../../../assets/lang/ar.js'),
263263
}
264264
];

0 commit comments

Comments
 (0)