I've localized my ExportForm into German (de) and Russian (ru) as you can see below:

If my CultureInfo is German (Austrian-de-AT) then all is OK, I see the format translated into German:
string specCult = "de-AT";
Thread.CurrentThread.CurrentUICulture = new CultureInfo(specCult);
But I see the English UI with the Russian (ru-RU) CultureInfo
string specCult = "ru-RU";
Thread.CurrentThread.CurrentUICulture = new CultureInfo(specCult);
Although if I use "ru" instead of the "ru-RU" to create the CultureInfo it works:
string specCult = "ru";
Thread.CurrentThread.CurrentUICulture = new CultureInfo(specCult);
Could you please help me what might invoke be the problem? Or please point me a direction to investigate the problem.
ru-RU. Resources not found in it should fall back to therufile. – Oded♦ May 18 '12 at 11:23Rowland Shaw. – Ramhound May 18 '12 at 11:54