I'm receiving data from the server and I should localize it and put it in ViewModel.
I serialize data from responce in json format to .NET object.
For example, I need to localize boolean variable "True" or "False" to English or different UI language to "Free" or "Busy".
I use resources files (*.resx) for localization.
Suggest me the best way to do it in Xamarin.Forms app with classic MVVM.