@brightspace-ui/intl 3.28.0 → 3.29.0
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.
- package/lib/common.js +4 -2
- package/package.json +1 -1
package/lib/common.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { DocumentLocaleSettings } from './document-locale-settings.js';
|
|
2
2
|
|
|
3
3
|
export const defaultLocale = 'en';
|
|
4
|
-
export const supportedBaseLocales = ['ar', 'cy', 'da', 'de', 'en', 'es', 'fr', 'haw', 'hi', 'ja', 'ko', 'mi', 'nl', 'pt', 'sv', 'tr', 'zh'];
|
|
5
|
-
export const supportedLangpacks = ['ar', 'cy', 'da', 'de', 'en', 'en-gb', 'es', 'es-es', 'fr', 'fr-fr', 'fr-on', 'haw', 'hi', 'ja', 'ko', 'mi', 'nl', 'pt', 'sv', 'tr', 'zh-cn', 'zh-tw'];
|
|
4
|
+
export const supportedBaseLocales = ['ar', 'cy', 'da', 'de', 'en', 'es', 'fr', 'haw', 'hi', 'ja', 'ko', 'mi', 'nl', 'pt', 'sv', 'th', 'tr', 'vi', 'zh'];
|
|
5
|
+
export const supportedLangpacks = ['ar', 'cy', 'da', 'de', 'en', 'en-gb', 'es', 'es-es', 'fr', 'fr-fr', 'fr-on', 'haw', 'hi', 'ja', 'ko', 'mi', 'nl', 'pt', 'sv', 'th', 'tr', 'vi', 'zh-cn', 'zh-tw'];
|
|
6
6
|
|
|
7
7
|
export const supportedLocalesDetails = [
|
|
8
8
|
{ code: 'ar-sa', dir: 'rtl', name: 'العربية (المملكة العربية السعودية)' },
|
|
@@ -25,7 +25,9 @@ export const supportedLocalesDetails = [
|
|
|
25
25
|
{ code: 'nl-nl', dir: 'ltr', name: 'Nederlands (Nederland)' },
|
|
26
26
|
{ code: 'pt-br', dir: 'ltr', name: 'Português (Brasil)' },
|
|
27
27
|
{ code: 'sv-se', dir: 'ltr', name: 'Svenska (Sverige)' },
|
|
28
|
+
{ code: 'th-th', dir: 'ltr', name: 'ไทย (ไทย)' },
|
|
28
29
|
{ code: 'tr-tr', dir: 'ltr', name: 'Türkçe (Türkiye)' },
|
|
30
|
+
{ code: 'vi-vn', dir: 'ltr', name: 'Tiếng Việt (Việt Nam)' },
|
|
29
31
|
{ code: 'zh-cn', overrideCode: 'zh-Hans', dir: 'ltr', name: '中文(简体)' },
|
|
30
32
|
{ code: 'zh-tw', overrideCode: 'zh-Hant', dir: 'ltr', name: '中文(繁体)' }
|
|
31
33
|
];
|
package/package.json
CHANGED