In xamarin forms I can localize the text in a label like:
<Label Text="{x:Static resources:AppResources.Text}"/>
With a namespace for the resources:
<ContentView ...
xmlns:resources="clr-namespace:ProjectName.Resources;assembly=ProjectName">
I can also bind some value and add a string format to the label:
<Label Text="{Binding Value, StringFormat='The value is: {0}' }"/>
The problem is that the text The value is: is not localized.
Who can I do both, bind a value and localize the StringFormat?