fix: 修复语言设置为简体中文而非繁体翻译

This commit is contained in:
qzl
2026-04-13 16:14:28 +08:00
parent 1e22f27de2
commit 6bc9c88ce8
14 changed files with 1861 additions and 234 deletions
+3 -3
View File
@@ -59,11 +59,11 @@ class SessionStore {
return _kvStore.getBool(_welcomeReadKey);
}
Future<void> saveLocaleCode(String localeCode) async {
await _kvStore.setString(_localeKey, localeCode);
Future<void> saveLocaleTag(String localeTag) async {
await _kvStore.setString(_localeKey, localeTag);
}
Future<String?> getLocaleCode() async {
Future<String?> getLocaleTag() async {
return _kvStore.getString(_localeKey);
}
}