mirror of
https://ghfast.top/https://github.com/StarCitizenToolBox/app.git
synced 2025-06-28 07:54:44 +08:00
feat: input_method_auto_translate
This commit is contained in:
@ -711,6 +711,14 @@ class MessageLookup extends MessageLookupByLibrary {
|
||||
"If the address failed, please check the computer IP manually"),
|
||||
"input_method_auto_copy":
|
||||
MessageLookupByLibrary.simpleMessage("Automatic replication"),
|
||||
"input_method_auto_translate":
|
||||
MessageLookupByLibrary.simpleMessage("Bilingual translation:"),
|
||||
"input_method_auto_translate_dialog_title":
|
||||
MessageLookupByLibrary.simpleMessage(
|
||||
"Enable bilingual translation?"),
|
||||
"input_method_auto_translate_dialog_title_content":
|
||||
MessageLookupByLibrary.simpleMessage(
|
||||
"After use, you will use Google translation service to add English copies to your input content, which may lead to lagging response. If the function is abnormal, please close it. \n\nThe text will be forwarded to Google server, please refer to Google\'s privacy policy."),
|
||||
"input_method_community_input_method_not_installed":
|
||||
MessageLookupByLibrary.simpleMessage(
|
||||
"Supporting community input method support"),
|
||||
|
@ -636,6 +636,13 @@ class MessageLookup extends MessageLookupByLibrary {
|
||||
"input_method_address_fetch_failed":
|
||||
MessageLookupByLibrary.simpleMessage("获取地址失败,请手动查看电脑IP"),
|
||||
"input_method_auto_copy": MessageLookupByLibrary.simpleMessage("自动复制"),
|
||||
"input_method_auto_translate":
|
||||
MessageLookupByLibrary.simpleMessage("双语翻译:"),
|
||||
"input_method_auto_translate_dialog_title":
|
||||
MessageLookupByLibrary.simpleMessage("启用双语翻译?"),
|
||||
"input_method_auto_translate_dialog_title_content":
|
||||
MessageLookupByLibrary.simpleMessage(
|
||||
"启用后,将使用 Google 翻译服务为您的输入内容增加英文副本,可能会导致响应滞后,若功能异常请关闭。\n\n文本将转发给 Google 服务器,请参阅 Google 的隐私政策。"),
|
||||
"input_method_community_input_method_not_installed":
|
||||
MessageLookupByLibrary.simpleMessage("未安装社区输入法支持"),
|
||||
"input_method_community_input_method_support_version": m36,
|
||||
|
@ -638,6 +638,13 @@ class MessageLookup extends MessageLookupByLibrary {
|
||||
"input_method_address_fetch_failed":
|
||||
MessageLookupByLibrary.simpleMessage("獲取地址失敗,請手動查看電腦IP"),
|
||||
"input_method_auto_copy": MessageLookupByLibrary.simpleMessage("自動複製"),
|
||||
"input_method_auto_translate":
|
||||
MessageLookupByLibrary.simpleMessage("雙語翻譯:"),
|
||||
"input_method_auto_translate_dialog_title":
|
||||
MessageLookupByLibrary.simpleMessage("啟用雙語翻譯?"),
|
||||
"input_method_auto_translate_dialog_title_content":
|
||||
MessageLookupByLibrary.simpleMessage(
|
||||
"啟用後,將使用 Google 翻譯服務為您的輸入內容增加英文副本,可能會導致響應滯後,若功能異常請關閉。 \n\n文本將轉發給 Google 服務器,請參閱 Google 的隱私政策。"),
|
||||
"input_method_community_input_method_not_installed":
|
||||
MessageLookupByLibrary.simpleMessage("未安裝社區輸入法支持"),
|
||||
"input_method_community_input_method_support_version": m36,
|
||||
|
@ -5273,6 +5273,36 @@ class S {
|
||||
args: [v0],
|
||||
);
|
||||
}
|
||||
|
||||
/// `Bilingual translation:`
|
||||
String get input_method_auto_translate {
|
||||
return Intl.message(
|
||||
'Bilingual translation:',
|
||||
name: 'input_method_auto_translate',
|
||||
desc: '',
|
||||
args: [],
|
||||
);
|
||||
}
|
||||
|
||||
/// `Enable bilingual translation?`
|
||||
String get input_method_auto_translate_dialog_title {
|
||||
return Intl.message(
|
||||
'Enable bilingual translation?',
|
||||
name: 'input_method_auto_translate_dialog_title',
|
||||
desc: '',
|
||||
args: [],
|
||||
);
|
||||
}
|
||||
|
||||
/// `After use, you will use Google translation service to add English copies to your input content, which may lead to lagging response. If the function is abnormal, please close it. \n\nThe text will be forwarded to Google server, please refer to Google's privacy policy.`
|
||||
String get input_method_auto_translate_dialog_title_content {
|
||||
return Intl.message(
|
||||
'After use, you will use Google translation service to add English copies to your input content, which may lead to lagging response. If the function is abnormal, please close it. \n\nThe text will be forwarded to Google server, please refer to Google\'s privacy policy.',
|
||||
name: 'input_method_auto_translate_dialog_title_content',
|
||||
desc: '',
|
||||
args: [],
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
class AppLocalizationDelegate extends LocalizationsDelegate<S> {
|
||||
|
Reference in New Issue
Block a user