Merge pull request #1518 from ajnart/add-chinese-traditional

This commit is contained in:
Thomas Camlong
2023-10-31 09:14:26 +01:00
committed by GitHub
2 changed files with 13 additions and 2 deletions

View File

@@ -24,6 +24,7 @@ module.exports = {
'vi', 'vi',
'uk', 'uk',
'zh', 'zh',
'zh-tw',
'el', 'el',
'sk', 'sk',
'no', 'no',

View File

@@ -179,14 +179,24 @@ export const languages = [
country: 'VN', country: 'VN',
locale: 'vi', locale: 'vi',
}, },
// Chinese (Simplified)
{ {
shortName: 'zh', shortName: 'cn',
originalName: '中文', originalName: '中文',
translatedName: 'Chinese', translatedName: 'Chinese (Simplified)',
emoji: '🇨🇳', emoji: '🇨🇳',
country: 'CN', country: 'CN',
locale: 'zh-cn', locale: 'zh-cn',
}, },
// Chinese (Traditional)
{
shortName: 'tw',
originalName: '中文(台灣)',
translatedName: 'Chinese (Traditional)',
emoji: '🇹🇼',
country: 'TW',
locale: 'zh-tw',
},
{ {
originalName: 'Ελληνικά', originalName: 'Ελληνικά',
translatedName: 'Greek', translatedName: 'Greek',