I am in the process of localizing our application and used the following link to do most of the localizing. However, I still have Months in english and a couple items in the grid
Months is are appearing in English when I use the WPF grid. Is there a set of keys that I am missing? Based on my research everything says that Infragistics reads from the system Regional settings, but in my test environment I have an OS in the locale(Russian in this case) and still see the Months in English.
WinGrid - How do I localize ({0} items) and Grand Summaries? see screen shots
.
Hello,
It is very strange behavior. Does it work on English Windows because on my side everything goes right ? I am attaching the version of your project(months.zip) that I am using for tests and a screenshot of the XamDataGrid with the months in Russian.
Looking forward to hearing from you.
We tried the suggestion above on a Russian OS; however, the months are still in English.
Thank you for the provided sample application. I have been looking into it and in order to achieve the desired functionality you can declare the following method in the App class of App.Xaml.cs :
protected override void OnStartup(StartupEventArgs e)
{
base.OnStartup(e);
Thread.CurrentThread.CurrentCulture = new CultureInfo("ru-Ru", false);
}
This way the months will be displayed in Russian.
If you have any other questions on this matter, feel free to ask.
I work with michaelfraser and attached is the sample app that illustrastrates our issue. Basically, we need to know how to localize the months "January, February, March..." in the Russian locale. Any help to resolve this issue would be greatly appreciated.
I am checking if this is still an issue for you.
If you require any further assistance please do not hesitate to ask.