Skip to content

Commit

Permalink
sort languages.
Browse files Browse the repository at this point in the history
  • Loading branch information
sebasbaumh committed Nov 26, 2012
1 parent b419e29 commit 92e46d6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CommonAssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,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.5.0.0")]
[assembly: AssemblyVersion("1.0.1.0")]
[assembly: AssemblyFileVersion("1.0.1.0")]
[assembly: AssemblyVersion("1.0.2.0")]
[assembly: AssemblyFileVersion("1.0.2.0")]
2 changes: 1 addition & 1 deletion TranslationPlugin/Engine/MicrosoftTranslatorEngine.cs
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ public Language[] GetLanguages()
});
}

languages = result.ToArray();
languages = (from l in result orderby l.DisplayName select l).ToArray();
}
}

Expand Down

0 comments on commit 92e46d6

Please sign in to comment.