Skip to content

Commit

Permalink
Merge pull request #1241 from Ordisoftware/dev
Browse files Browse the repository at this point in the history
Fix code
  • Loading branch information
Ordisoftware authored Nov 3, 2022
2 parents 5873ddb + d53dc40 commit 004de92
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,14 +54,14 @@ static partial class AppTranslations

static public readonly TranslationsDictionary PessahDay = new()
{
[Language.EN] = $"{CelebrationsInLatinChars[TorahCelebration.Pessah][Language.EN]} Day {0}",
[Language.FR] = $"{CelebrationsInLatinChars[TorahCelebration.Pessah][Language.FR]} Jour {0}"
[Language.EN] = $"{CelebrationsInLatinChars[TorahCelebration.Pessah][Language.EN]} Day {{0}}",
[Language.FR] = $"{CelebrationsInLatinChars[TorahCelebration.Pessah][Language.FR]} Jour {{0}}"
};

static public readonly TranslationsDictionary SoukotDay = new()
{
[Language.EN] = $"{CelebrationsInLatinChars[TorahCelebration.Soukot][Language.EN]} Day {0}",
[Language.FR] = $"{CelebrationsInLatinChars[TorahCelebration.Soukot][Language.FR]} Jour {0}"
[Language.EN] = $"{CelebrationsInLatinChars[TorahCelebration.Soukot][Language.EN]} Day {{0}}",
[Language.FR] = $"{CelebrationsInLatinChars[TorahCelebration.Soukot][Language.FR]} Jour {{0}}"
};

static public readonly NullSafeDictionary<TorahCelebrationDay, TranslationsDictionary> CelebrationDays = new()
Expand Down

0 comments on commit 004de92

Please sign in to comment.