Skip to content

Commit

Permalink
Merge pull request #82 from daniel-jann/master
Browse files Browse the repository at this point in the history
fix issue #60, use stringLocalizer arguments
  • Loading branch information
damienbod authored Apr 15, 2021
2 parents f7e2c97 + 9d275da commit a362dc7
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ public LocalizedString this[string name]
{
get
{
return this[name];
var localizedString = this[name];
return new LocalizedString(name, String.Format(localizedString.Value, arguments), localizedString.ResourceNotFound);
}
}

Expand Down

0 comments on commit a362dc7

Please sign in to comment.