Add 8 major languages (LTR only)

Added languages:
- pt-BR: Português (Brasil) - 250M+ speakers
- ru: Русский - 260M+ speakers
- uk: Українська - 40M+ speakers
- it: Italiano - 67M speakers
- hi: हिन्दी - 600M+ speakers
- vi: Tiếng Việt - 95M speakers
- tr: Türkçe - 80M speakers
- pl: Polski - 45M speakers

Total supported languages: 16
RTL languages (Arabic, Hebrew, etc.) excluded for now,
as they require additional layout implementation.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-11-30 12:54:14 +09:00
parent f57d235651
commit 211867e2eb

View File

@@ -11,7 +11,7 @@
class SetLocale class SetLocale
{ {
/** /**
* Supported locales * Supported locales (LTR languages only)
*/ */
public const SUPPORTED_LOCALES = [ public const SUPPORTED_LOCALES = [
'en' => 'English', 'en' => 'English',
@@ -19,6 +19,14 @@ class SetLocale
'de' => 'Deutsch', 'de' => 'Deutsch',
'fr' => 'Français', 'fr' => 'Français',
'es' => 'Español', 'es' => 'Español',
'pt-BR' => 'Português (Brasil)',
'ru' => 'Русский',
'uk' => 'Українська',
'it' => 'Italiano',
'hi' => 'हिन्दी',
'vi' => 'Tiếng Việt',
'tr' => 'Türkçe',
'pl' => 'Polski',
'zh-CN' => '简体中文', 'zh-CN' => '简体中文',
'zh-TW' => '繁體中文', 'zh-TW' => '繁體中文',
'ko' => '한국어', 'ko' => '한국어',