Skip to content

Commit

Permalink
Fixed removing of redundant resources. Updated assembly info.
Browse files Browse the repository at this point in the history
  • Loading branch information
kirmir committed Feb 24, 2015
1 parent 6aaf59a commit 3064d96
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
12 changes: 6 additions & 6 deletions ResxTranslationTool/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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("")]

Expand Down Expand Up @@ -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")]
1 change: 1 addition & 0 deletions ResxTranslationTool/Services/ResxService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ public string SyncResources(string resourceTag = null)
continue;

allEntries.Remove(key);
changed = true;

logBuilder.AppendFormat(" - '{0}'\r\n", key);
}
Expand Down
2 changes: 1 addition & 1 deletion ResxTranslationTool/Views/MainWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 3064d96

Please sign in to comment.