diff --git a/ResxTranslationTool/Properties/AssemblyInfo.cs b/ResxTranslationTool/Properties/AssemblyInfo.cs index 1215057..4c8108e 100644 --- a/ResxTranslationTool/Properties/AssemblyInfo.cs +++ b/ResxTranslationTool/Properties/AssemblyInfo.cs @@ -7,12 +7,12 @@ // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. -[assembly: AssemblyTitle("ResxTranslationTool")] +[assembly: AssemblyTitle("ResX Translation Tool")] [assembly: AssemblyDescription("A tool for quick and easy manual translation of strings in ResX files from all solution projects.")] [assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("Kirill Miroshnichenko")] -[assembly: AssemblyProduct("ResxTranslationTool")] -[assembly: AssemblyCopyright("Copyright © Kirill Miroshnichenko 2014")] +[assembly: AssemblyCompany("Kyrylo Myroshnychenko")] +[assembly: AssemblyProduct("ResX Translation Tool")] +[assembly: AssemblyCopyright("Copyright © Kyrylo Myroshnychenko 2015")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] @@ -51,5 +51,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] +[assembly: AssemblyVersion("1.1.0.0")] +[assembly: AssemblyFileVersion("1.1.0.0")] diff --git a/ResxTranslationTool/Services/ResxService.cs b/ResxTranslationTool/Services/ResxService.cs index 905e880..419aafd 100644 --- a/ResxTranslationTool/Services/ResxService.cs +++ b/ResxTranslationTool/Services/ResxService.cs @@ -110,6 +110,7 @@ public string SyncResources(string resourceTag = null) continue; allEntries.Remove(key); + changed = true; logBuilder.AppendFormat(" - '{0}'\r\n", key); } diff --git a/ResxTranslationTool/Views/MainWindow.xaml b/ResxTranslationTool/Views/MainWindow.xaml index b06d657..15cd9cc 100644 --- a/ResxTranslationTool/Views/MainWindow.xaml +++ b/ResxTranslationTool/Views/MainWindow.xaml @@ -4,7 +4,7 @@ xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:vm="clr-namespace:ResxTranslationTool.ViewModels" - Title="ResX Translation Tool" + Title="ResX Translation Tool 1.1" Width="525" Height="350" Icon="/ResxTranslationTool;component/App.ico"