I'm currently working on a .NET Framework 4.7.1 WPF application. I need to localize a string in a TextBlock element, using standard .resx files.
The problem is, in my TextBlock, I use a dynamic resource, consisting out of a text and an increasing number (counter).
<TextBlock Text="{Binding LoadingPercent, StringFormat=Loading the app...{0:N0}%}" />
Do you know how to localize this text "Loading the app..." in XAML?
Thank you very much!