diff options
author | Chocobozzz <me@florianbigard.com> | 2023-03-10 12:01:21 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2023-03-10 14:42:18 +0100 |
commit | 866b5d3f5230204d611a556260102996c1aefe10 (patch) | |
tree | d6d1e900ce81a7f1edc121089c10a67abba855eb /shared/core-utils | |
parent | 4265d90b0061399e23b816e3880ee1be47ead96f (diff) | |
download | PeerTube-866b5d3f5230204d611a556260102996c1aefe10.tar.gz PeerTube-866b5d3f5230204d611a556260102996c1aefe10.tar.zst PeerTube-866b5d3f5230204d611a556260102996c1aefe10.zip |
Add ability for plugins to alter video jsonld
Diffstat (limited to 'shared/core-utils')
-rw-r--r-- | shared/core-utils/i18n/i18n.ts | 3 |
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 | ||
78 | export const POSSIBLE_LOCALES = Object.keys(I18N_LOCALES) | 78 | export const POSSIBLE_LOCALES = (Object.keys(I18N_LOCALES) as string[]).concat(Object.keys(I18N_LOCALE_ALIAS)) |
79 | .concat(Object.keys(I18N_LOCALE_ALIAS)) | ||
80 | 79 | ||
81 | export function getDefaultLocale () { | 80 | export function getDefaultLocale () { |
82 | return 'en-US' | 81 | return 'en-US' |