mirror of
https://ghfast.top/https://github.com/StarCitizenToolBox/app.git
synced 2025-06-28 07:54:44 +08:00
feat: AdvancedLocalizationUI Error Message
This commit is contained in:
@ -634,6 +634,12 @@ class MessageLookup extends MessageLookupByLibrary {
|
||||
MessageLookupByLibrary.simpleMessage(
|
||||
"Localization has a new version!"),
|
||||
"home_localization_new_version_installed": m34,
|
||||
"home_localization_ptu_advanced_localization_tip_title":
|
||||
MessageLookupByLibrary.simpleMessage(
|
||||
"Recommended advanced localization"),
|
||||
"home_localization_ptu_advanced_localization_tip_title_info":
|
||||
MessageLookupByLibrary.simpleMessage(
|
||||
"On PTU/EPTU and other test channels, the current localization text text may not be synchronized with the game, and the use of advanced localization can reduce garbled production."),
|
||||
"home_localization_select_customize_file":
|
||||
MessageLookupByLibrary.simpleMessage(
|
||||
"Please select custom Localization file"),
|
||||
|
@ -571,6 +571,11 @@ class MessageLookup extends MessageLookupByLibrary {
|
||||
"home_localization_new_version_available":
|
||||
MessageLookupByLibrary.simpleMessage("汉化有新版本!"),
|
||||
"home_localization_new_version_installed": m34,
|
||||
"home_localization_ptu_advanced_localization_tip_title":
|
||||
MessageLookupByLibrary.simpleMessage("推荐使用高级汉化"),
|
||||
"home_localization_ptu_advanced_localization_tip_title_info":
|
||||
MessageLookupByLibrary.simpleMessage(
|
||||
"在 PTU/EPTU 等测试频道 ,当前汉化文本可能与游戏不同步,使用高级汉化可以减少乱码产生。"),
|
||||
"home_localization_select_customize_file":
|
||||
MessageLookupByLibrary.simpleMessage("请选择自定义汉化文件"),
|
||||
"home_localization_select_customize_file_ini":
|
||||
|
@ -4783,6 +4783,26 @@ class S {
|
||||
args: [],
|
||||
);
|
||||
}
|
||||
|
||||
/// `Recommended advanced localization`
|
||||
String get home_localization_ptu_advanced_localization_tip_title {
|
||||
return Intl.message(
|
||||
'Recommended advanced localization',
|
||||
name: 'home_localization_ptu_advanced_localization_tip_title',
|
||||
desc: '',
|
||||
args: [],
|
||||
);
|
||||
}
|
||||
|
||||
/// `On PTU/EPTU and other test channels, the current localization text text may not be synchronized with the game, and the use of advanced localization can reduce garbled production.`
|
||||
String get home_localization_ptu_advanced_localization_tip_title_info {
|
||||
return Intl.message(
|
||||
'On PTU/EPTU and other test channels, the current localization text text may not be synchronized with the game, and the use of advanced localization can reduce garbled production.',
|
||||
name: 'home_localization_ptu_advanced_localization_tip_title_info',
|
||||
desc: '',
|
||||
args: [],
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
class AppLocalizationDelegate extends LocalizationsDelegate<S> {
|
||||
|
Reference in New Issue
Block a user