"This field requires entry."
My MessageLocaleID is set to 1029. In winForms application this text is localized automatically from built-in texts.
If this is not supported in web apps, I will do it manually...
There is a little difference that in Windows applications I'm using localization files as embedded resources but in web apps I'm using XML files - as described above; the reason is that I was unable to work with embedded XML files - the following code has caused an exception:
MicroFour.StrataFrame.UI.Localization.RegisterEmbeddedXmlFile(System.Reflection.Assembly.GetExecutingAssembly(), "MyNamespace.Localization_Files.Message_Languages.xml");
I need to set broken rules and corresponding texts to a particular language (e.g. Czech). In windows application in works fine since Czech texts are built into StrataFrame core. With the web application broken rules texts are still in English even when the localization is set to 1029 and all texts read from XML are in Czech version.
I set localization in Application_Start method in Global.asax file with the following code:
MicroFour.StrataFrame.UI.
Am I doing something wrong?
Thank You
Jiri Brazda