Skip to content

Commit

Permalink
fix issue damienbod#60, use stringLocalizer arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Jann committed Apr 15, 2021
1 parent f7e2c97 commit 9d275da
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 9d275da

Please sign in to comment.