diff --git a/VPet-Simulator.Core/Display/WorkTimer.xaml.cs b/VPet-Simulator.Core/Display/WorkTimer.xaml.cs index 88341b9..bf3b8d3 100644 --- a/VPet-Simulator.Core/Display/WorkTimer.xaml.cs +++ b/VPet-Simulator.Core/Display/WorkTimer.xaml.cs @@ -119,12 +119,12 @@ namespace VPet_Simulator.Core else { DisplayBorder.Visibility = Visibility.Visible; - btnStop.Content = LocalizeCore.Translate("停止") + nowWork.DoingTrans; + btnStop.Content = LocalizeCore.Translate("停止") + nowWork.NameTrans; switch (DisplayType) { default: case 0: - tNow.Text = LocalizeCore.Translate("当前已{0}", nowWork.DoingTrans); + tNow.Text = LocalizeCore.Translate("当前已{0}", nowWork.NameTrans); break; case 1: tNow.Text = LocalizeCore.Translate("剩余{0}时间", nowWork.NameTrans); diff --git a/VPet-Simulator.Core/Graph/GraphHelper.cs b/VPet-Simulator.Core/Graph/GraphHelper.cs index a9774ca..35ce6af 100644 --- a/VPet-Simulator.Core/Graph/GraphHelper.cs +++ b/VPet-Simulator.Core/Graph/GraphHelper.cs @@ -101,7 +101,6 @@ namespace VPet_Simulator.Core /// 工作名称 已翻译 /// public string NameTrans => Name.Translate(); - public string DoingTrans => (Name + "中").Translate(); /// /// 使用动画名称 /// diff --git a/VPet-Simulator.Windows/WinDesign/winBetterBuy.xaml.cs b/VPet-Simulator.Windows/WinDesign/winBetterBuy.xaml.cs index 9a11e86..8e0da7a 100644 --- a/VPet-Simulator.Windows/WinDesign/winBetterBuy.xaml.cs +++ b/VPet-Simulator.Windows/WinDesign/winBetterBuy.xaml.cs @@ -78,11 +78,11 @@ namespace VPet_Simulator.Windows { if (mw.Set.PetData[(gbol)"self"]) { - MessageBoxX.Show("更好买老顾客大优惠!桌宠的食物钱我来出!\n更好买提示您:$10以下的食物/药品等随便赊账"); + MessageBoxX.Show("更好买老顾客大优惠!桌宠的食物钱我来出!\n更好买提示您:$10以下的食物/药品等随便赊账".Translate()); } else { - MessageBoxX.Show("看到您囊中羞涩,桌宠拿出了1000块私房钱出来给你"); + MessageBoxX.Show("看到您囊中羞涩,桌宠拿出了1000块私房钱出来给你".Translate()); mw.Set.PetData[(gbol)"self"] = true; mw.Core.Save.Money += 1000; }