| 12345678910111213141516171819202122232425262728293031323334353637 | <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"                    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"                    xmlns:system="clr-namespace:System;assembly=mscorlib"><!--WPFShowMessageBox-->    <system:String x:Key="Detail">细节</system:String>    <system:String x:Key="Confirm">确认</system:String>    <system:String x:Key="Cancel">撤销</system:String>    <system:String x:Key="Yes">是</system:String>    <system:String x:Key="No">不是</system:String>    <!--Bottom_Frame-->    <system:String x:Key="OverView">主页</system:String>    <system:String x:Key="RecipeView">配方管理</system:String>    <system:String x:Key="DataAnalysisView">数据分析</system:String>    <!--OverView-->    <system:String x:Key="Initialize">初始化</system:String>    <system:String x:Key="PumpDown">抽气</system:String>    <system:String x:Key="Vent">充气</system:String>    <system:String x:Key="PumpPurge">吹扫</system:String>    <system:String x:Key="LeakCheck">漏气检查</system:String>    <!--RecipeEditView-->    <system:String x:Key="GlobalLableButtonReload">重载</system:String>    <system:String x:Key="GlobalLableButtonSave">保存</system:String>    <system:String x:Key="GlobalLableMenuNewRecipe">新建配方</system:String>    <system:String x:Key="GlobalLableMenuImportRecipe">导入配方</system:String>    <system:String x:Key="GlobalLableMenuNewFolder">新建文件夹</system:String>    <system:String x:Key="GlobalLableMsgInputRecipeName" >输入配方名称</system:String>        <!--TopView-->    <system:String x:Key="Version">版本号:</system:String></ResourceDictionary>
 |