Skip to content

Commit

Permalink
Merge pull request #53 from Ordisoftware/dev
Browse files Browse the repository at this point in the history
Improve check update
  • Loading branch information
Ordisoftware authored May 22, 2019
2 parents 0e58c2f + 816e9dd commit 747cea4
Show file tree
Hide file tree
Showing 6 changed files with 2,115 additions and 1,993 deletions.
Binary file not shown.
9 changes: 8 additions & 1 deletion Project/Source/Classes/Localizer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
/// You may add additional accurate notices of copyright ownership.
/// </license>
/// <created> 2016-04 </created>
/// <edited> 2019-01 </edited>
/// <edited> 2019-05 </edited>
using System;
using System.Collections.Generic;
using System.Globalization;
Expand Down Expand Up @@ -145,6 +145,13 @@ static public readonly Dictionary<string, string> ExitApplicationText
{ "fr", "Quitter l'application ?" }
};

static public readonly Dictionary<string, string> CheckUpdateNoNewText
= new Dictionary<string, string>()
{
{ "en", "There is no new version available." },
{ "fr", "Il n'y a pas de nouvelle version de disponible." }
};

static public readonly Dictionary<string, string> CheckUpdateResultText
= new Dictionary<string, string>()
{
Expand Down
Loading

0 comments on commit 747cea4

Please sign in to comment.