diff --git a/src/MeoAsstGui/Resources/Localizations/en-us.xaml b/src/MeoAsstGui/Resources/Localizations/en-us.xaml index 9b205c24da..1c770e8e12 100644 --- a/src/MeoAsstGui/Resources/Localizations/en-us.xaml +++ b/src/MeoAsstGui/Resources/Localizations/en-us.xaml @@ -54,7 +54,7 @@ - Recognition + Recruit tools Tip: Recognition and the main interface are two independent functions, please manually open the game public recruitment Tags then using ~ Auto setting time Auto Select Level 3 Tags @@ -63,4 +63,18 @@ Auto Select Level 6 Tags Began To Recruit + + + Copilot Beta + Task file / url + Select the file + Task files can be directly dragged in with the mouse(o゚v゚)ノ + Auto squad + The agent of 'special concern' cannot be identified at this time + + Start + + Copilot JSON Sharing + Video Link + \ No newline at end of file diff --git a/src/MeoAsstGui/Resources/Localizations/zh-cn.xaml b/src/MeoAsstGui/Resources/Localizations/zh-cn.xaml index b6f95654f0..e31c6abb88 100644 --- a/src/MeoAsstGui/Resources/Localizations/zh-cn.xaml +++ b/src/MeoAsstGui/Resources/Localizations/zh-cn.xaml @@ -63,4 +63,18 @@ 自动选择6星Tags 开始识别 + + + 自动战斗 Beta + 作业路径/神秘代码 + 选择作业 + 作业文件可以直接用鼠标拖进来哦(o゚v゚)ノ + 自动编队 + 自动编队暂时无法识别'特别关注'的干员 + + 开始 + + 作业分享站 + 视频链接 + \ No newline at end of file diff --git a/src/MeoAsstGui/ViewModels/CopilotViewModel.cs b/src/MeoAsstGui/ViewModels/CopilotViewModel.cs index 1db6550efe..28e8d79151 100644 --- a/src/MeoAsstGui/ViewModels/CopilotViewModel.cs +++ b/src/MeoAsstGui/ViewModels/CopilotViewModel.cs @@ -37,7 +37,7 @@ namespace MeoAsstGui { _container = container; _windowManager = windowManager; - DisplayName = "自动战斗 Beta"; + DisplayName = Localization.GetString("Copilot"); LogItemViewModels = new ObservableCollection(); AddLog("小提示:\n\n请将模拟器及游戏帧率设置到 60 帧或更高;\n\n请在有“开始行动”按钮的界面再使用本功能;\n\n使用好友助战可以关闭“自动编队”,手动选择干员后开始;\n\n模拟悖论需要关闭“自动编队”,并选好技能后处于“开始模拟”按钮的界面再开始;\n\n自动编队暂时无法识别“特别关注”的干员,如有需求请取消特别关注或手动编队;", "dark"); } @@ -295,7 +295,7 @@ namespace MeoAsstGui ClearLog(); if (_form) { - AddLog("自动编队暂时无法识别“特别关注”的干员,如有需求请取消特别关注或手动编队", "dark"); + AddLog(Localization.GetString("AutoSquadTip"), "dark"); } AddLog("正在连接模拟器……"); @@ -344,7 +344,7 @@ namespace MeoAsstGui public string Url { - get => _url == CopilotUiUrl ? "作业分享站" : "视频链接"; + get => _url == CopilotUiUrl ? Localization.GetString("CopilotJSONSharing") : Localization.GetString("VideoLink"); set => SetAndNotify(ref _url, value); } diff --git a/src/MeoAsstGui/Views/CopilotView.xaml b/src/MeoAsstGui/Views/CopilotView.xaml index 550a0526c0..4391a90cec 100644 --- a/src/MeoAsstGui/Views/CopilotView.xaml +++ b/src/MeoAsstGui/Views/CopilotView.xaml @@ -19,14 +19,14 @@ + Text="{DynamicResource CopilotLocation}" Margin="10" /> -