| 123456789101112131415161718192021222324252627282930313233343536 | <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">Detail</system:String>    <system:String x:Key="Confirm">Confirm</system:String>    <system:String x:Key="Cancel">Cancel</system:String>    <system:String x:Key="Yes">Yes</system:String>    <system:String x:Key="No">No</system:String>    <!--Bottom_Frame-->    <system:String x:Key="OverView">OverView</system:String>    <system:String x:Key="RecipeView">Recipe</system:String>    <system:String x:Key="DataAnalysisView">DataAnalysisView</system:String>    <!--OverView-->    <system:String x:Key="Initialize">Initialize</system:String>    <system:String x:Key="PumpDown">Pump Down</system:String>    <system:String x:Key="Vent">Vent</system:String>    <system:String x:Key="PumpPurge">Pump Purge</system:String>    <system:String x:Key="LeakCheck">Leak Check</system:String>    <!--RecipeEditView-->    <system:String x:Key="GlobalLableButtonReload">Reload</system:String>    <system:String x:Key="GlobalLableButtonSave">Save</system:String>    <system:String x:Key="GlobalLableMenuNewRecipe">New Recipe</system:String>    <system:String x:Key="GlobalLableMenuImportRecipe">Import Recipe</system:String>    <system:String x:Key="GlobalLableMenuNewFolder">New Folder</system:String>    <system:String x:Key="GlobalLableMsgInputRecipeName" >Input Recipe Name</system:String>    <!--TopView-->    <system:String x:Key="Version">Version:</system:String></ResourceDictionary>
 |