多语言支持

This commit is contained in:
ytc1012
2025-11-24 14:01:01 +08:00
parent bf21dba275
commit 57ef852863
32 changed files with 5255 additions and 36 deletions

View File

@@ -126,8 +126,8 @@ class AppLocalizationsEn extends AppLocalizations {
String _temp0 = intl.Intl.pluralLogic(
count,
locale: localeName,
other: 'sessions',
one: 'session',
other: '$count sessions',
one: '$count session',
);
return '$_temp0';
}
@@ -291,4 +291,37 @@ class AppLocalizationsEn extends AppLocalizations {
@override
String get chinese => '中文 (Chinese)';
@override
String get japanese => '日本語 (Japanese)';
@override
String get korean => '한국어 (Korean)';
@override
String get spanish => 'Español (Spanish)';
@override
String get german => 'Deutsch (German)';
@override
String get french => 'Français (French)';
@override
String get portuguese => 'Português (Portuguese)';
@override
String get russian => 'Русский (Russian)';
@override
String get hindi => 'हिन्दी (Hindi)';
@override
String get indonesian => 'Bahasa Indonesia (Indonesian)';
@override
String get italian => 'Italiano (Italian)';
@override
String get arabic => 'العربية (Arabic)';
}