aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/core-utils
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2023-03-10 12:01:21 +0100
committerChocobozzz <me@florianbigard.com>2023-03-10 15:45:52 +0100
commit3b504f6ed4e890bebb46d0481aba15b43050323a (patch)
treebbe4c1bc529fec28e0b46263ec92f7c2260ba65a /shared/core-utils
parent4899138ec5995075c3681ccbd9f6b163fb915991 (diff)
downloadPeerTube-3b504f6ed4e890bebb46d0481aba15b43050323a.tar.gz
PeerTube-3b504f6ed4e890bebb46d0481aba15b43050323a.tar.zst
PeerTube-3b504f6ed4e890bebb46d0481aba15b43050323a.zip
Add ability for plugins to alter video jsonld
Diffstat (limited to 'shared/core-utils')
-rw-r--r--shared/core-utils/i18n/i18n.ts3
1 files changed, 1 insertions, 2 deletions
diff --git a/shared/core-utils/i18n/i18n.ts b/shared/core-utils/i18n/i18n.ts
index c43e249a6..38c1b0cc9 100644
--- a/shared/core-utils/i18n/i18n.ts
+++ b/shared/core-utils/i18n/i18n.ts
@@ -75,8 +75,7 @@ const I18N_LOCALE_ALIAS = {
75 'zh': 'zh-Hans-CN' 75 'zh': 'zh-Hans-CN'
76} 76}
77 77
78export const POSSIBLE_LOCALES = Object.keys(I18N_LOCALES) 78export const POSSIBLE_LOCALES = (Object.keys(I18N_LOCALES) as string[]).concat(Object.keys(I18N_LOCALE_ALIAS))
79 .concat(Object.keys(I18N_LOCALE_ALIAS))
80 79
81export function getDefaultLocale () { 80export function getDefaultLocale () {
82 return 'en-US' 81 return 'en-US'