Skip to content

Commit

Permalink
update localization test
Browse files Browse the repository at this point in the history
  • Loading branch information
cotur committed Nov 21, 2021
1 parent 3a88f55 commit 27a87d7
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,12 @@ public void Should_Get_Extension_Texts()

using (CultureHelper.Use("tr"))
{
_localizer["SeeYou"].Value.ShouldBe("See you"); //Not defined in tr, getting from default lang
_localizer["SeeYou"].Value.ShouldBe("Görüşürüz");
}

using (CultureHelper.Use("pl"))
{
_localizer["SeeYou"].Value.ShouldBe("See you"); //Not defined in pl, getting from default lang
}

using (CultureHelper.Use("it"))
Expand Down

0 comments on commit 27a87d7

Please sign in to comment.