i18n: Add Traditional Chinese locale support

This commit is contained in:
SamHacker 2025-08-26 18:58:22 +08:00 committed by GitHub
parent 64d40b9ce4
commit fb529986c7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -14,6 +14,7 @@
/// watchakorn-18k@github => Thai /// watchakorn-18k@github => Thai
/// llama3, vishnumur777@github => Tamil /// llama3, vishnumur777@github => Tamil
/// Microsoft Copilot, Tutislav@github => Czech /// Microsoft Copilot, Tutislav@github => Czech
/// 510208@github => Traditional Chinese
library l10n; library l10n;
@ -49,6 +50,7 @@ class L10n {
const Locale('ta', 'IN'), const Locale('ta', 'IN'),
const Locale('tr', 'TR'), const Locale('tr', 'TR'),
const Locale('zh', 'CN'), const Locale('zh', 'CN'),
const Locale('tw', 'TW'),
const Locale('vi', 'VN'), const Locale('vi', 'VN'),
const Locale('eu', 'ES'), const Locale('eu', 'ES'),
]; ];