|
I expect the formatter to first replace {status} with the corresponding text from the dictionary, and then translate the resulting text into another language. TemplateFormatter is not an option for me because there may be many cases for status. |
Replies: 3 comments 4 replies
|
How to use nested placeholders in LocalizationFormatter is described here in the Wiki. In effect it works in the same way as Localization in .NET. So you can add placeholders for variables, but the variables' values don't become a part of the text to translate. Localization is for literals. |
|
Sure. There was another PR pending (support for |
How to use nested placeholders in LocalizationFormatter is described here in the Wiki. In effect it works in the same way as Localization in .NET. So you can add placeholders for variables, but the variables' values don't become a part of the text to translate. Localization is for literals.