mirror of
https://ghfast.top/https://github.com/StarCitizenToolBox/app.git
synced 2025-06-28 07:54:44 +08:00
feat: NavUI l10n
This commit is contained in:
@ -1058,6 +1058,18 @@ class MessageLookup extends MessageLookupByLibrary {
|
||||
"log_analyzer_window_title": MessageLookupByLibrary.simpleMessage(
|
||||
"SCToolbox: Log Analyzer",
|
||||
),
|
||||
"nav_fetching_data": MessageLookupByLibrary.simpleMessage(
|
||||
"Fetching data...",
|
||||
),
|
||||
"nav_provided_by": MessageLookupByLibrary.simpleMessage(""),
|
||||
"nav_third_party_service_disclaimer": MessageLookupByLibrary.simpleMessage(
|
||||
"*The services linked correspond to third-party providers. We do not make any guarantees and users should assess the risks of using them. | ",
|
||||
),
|
||||
"nav_title": MessageLookupByLibrary.simpleMessage("Navigation"),
|
||||
"nav_website_navigation_data_provided_by":
|
||||
MessageLookupByLibrary.simpleMessage(
|
||||
"Website navigation data provided by",
|
||||
),
|
||||
"performance_action_apply": MessageLookupByLibrary.simpleMessage("Apply"),
|
||||
"performance_action_apply_and_clear_shaders":
|
||||
MessageLookupByLibrary.simpleMessage(
|
||||
|
@ -916,6 +916,14 @@ class MessageLookup extends MessageLookupByLibrary {
|
||||
"log_analyzer_window_title": MessageLookupByLibrary.simpleMessage(
|
||||
"SC汉化盒子: log 分析器",
|
||||
),
|
||||
"nav_fetching_data": MessageLookupByLibrary.simpleMessage("正在获取数据..."),
|
||||
"nav_provided_by": MessageLookupByLibrary.simpleMessage("提供"),
|
||||
"nav_third_party_service_disclaimer": MessageLookupByLibrary.simpleMessage(
|
||||
"*对应链接指向的服务由第三方提供,我们不对其做任何担保,请用户自行判断使用风险 | ",
|
||||
),
|
||||
"nav_title": MessageLookupByLibrary.simpleMessage("导航"),
|
||||
"nav_website_navigation_data_provided_by":
|
||||
MessageLookupByLibrary.simpleMessage("网站导航数据由"),
|
||||
"performance_action_apply": MessageLookupByLibrary.simpleMessage("应用"),
|
||||
"performance_action_apply_and_clear_shaders":
|
||||
MessageLookupByLibrary.simpleMessage("应用并清理着色器(推荐)"),
|
||||
|
@ -922,6 +922,14 @@ class MessageLookup extends MessageLookupByLibrary {
|
||||
"log_analyzer_window_title": MessageLookupByLibrary.simpleMessage(
|
||||
"SC工具箱: log 分析器",
|
||||
),
|
||||
"nav_fetching_data": MessageLookupByLibrary.simpleMessage("正在獲取數據..."),
|
||||
"nav_provided_by": MessageLookupByLibrary.simpleMessage("提供"),
|
||||
"nav_third_party_service_disclaimer": MessageLookupByLibrary.simpleMessage(
|
||||
"*對應鏈接指向的服務由第三方提供,我們不對其做任何擔保,請用戶自行判斷使用風險 | ",
|
||||
),
|
||||
"nav_title": MessageLookupByLibrary.simpleMessage("導航"),
|
||||
"nav_website_navigation_data_provided_by":
|
||||
MessageLookupByLibrary.simpleMessage("網站導航數據由"),
|
||||
"performance_action_apply": MessageLookupByLibrary.simpleMessage("套用設定"),
|
||||
"performance_action_apply_and_clear_shaders":
|
||||
MessageLookupByLibrary.simpleMessage("套用設定並清除著色器快取(建議)"),
|
||||
|
@ -5852,6 +5852,46 @@ class S {
|
||||
args: [],
|
||||
);
|
||||
}
|
||||
|
||||
/// `Navigation`
|
||||
String get nav_title {
|
||||
return Intl.message('Navigation', name: 'nav_title', desc: '', args: []);
|
||||
}
|
||||
|
||||
/// `*The services linked correspond to third-party providers. We do not make any guarantees and users should assess the risks of using them. | `
|
||||
String get nav_third_party_service_disclaimer {
|
||||
return Intl.message(
|
||||
'*The services linked correspond to third-party providers. We do not make any guarantees and users should assess the risks of using them. | ',
|
||||
name: 'nav_third_party_service_disclaimer',
|
||||
desc: '',
|
||||
args: [],
|
||||
);
|
||||
}
|
||||
|
||||
/// `Website navigation data provided by`
|
||||
String get nav_website_navigation_data_provided_by {
|
||||
return Intl.message(
|
||||
'Website navigation data provided by',
|
||||
name: 'nav_website_navigation_data_provided_by',
|
||||
desc: '',
|
||||
args: [],
|
||||
);
|
||||
}
|
||||
|
||||
/// ``
|
||||
String get nav_provided_by {
|
||||
return Intl.message('', name: 'nav_provided_by', desc: '', args: []);
|
||||
}
|
||||
|
||||
/// `Fetching data...`
|
||||
String get nav_fetching_data {
|
||||
return Intl.message(
|
||||
'Fetching data...',
|
||||
name: 'nav_fetching_data',
|
||||
desc: '',
|
||||
args: [],
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
class AppLocalizationDelegate extends LocalizationsDelegate<S> {
|
||||
|
@ -5,4 +5,5 @@ class NoL10n {
|
||||
static const String langJa = '日本語';
|
||||
static const String langFR = 'Français';
|
||||
static const String langRU = 'Русский';
|
||||
static const String langCodeZhCn = 'zh_CN';
|
||||
}
|
||||
|
Reference in New Issue
Block a user