Hi, Pedro
I'm from Mexico, so as you I need to change to spanish language.
Open the AppMain.vb and locate the Shared Sub InitApplication then add this code:
MicroFour.StrataFrame.UI.Localization.MessageKeyType = MicroFour.StrataFrame.Messaging.MessageKeyDataType.XML
'-- Configurar la información de localización (idioma)
Select Case System.Globalization.CultureInfo.CurrentCulture.LCID
Case 1031, 3079
'-- German (Alemanía)
MicroFour.StrataFrame.UI.Localization.MessageLocaleID = 1031
Case 1036, 3084
'-- French (Francia)
MicroFour.StrataFrame.UI.Localization.MessageLocaleID = 1036
Case 1040
'-- Italian (Italia)
MicroFour.StrataFrame.UI.Localization.MessageLocaleID = 1040
Case 1046, 2070
'-- Portuguese (Brasil)
MicroFour.StrataFrame.UI.Localization.MessageLocaleID = 1046
Case 1049
'-- Russian (Rusia)
MicroFour.StrataFrame.UI.Localization.MessageLocaleID = 1049
Case 2058, 11274
'-- Spanish (México)
MicroFour.StrataFrame.UI.Localization.MessageLocaleID = 2058
Case Else
'-- English (USA)
MicroFour.StrataFrame.UI.Localization.MessageLocaleID = 1033
End Select
For Mexico the code es 2058, yopu have to find out what's the code for your country.
In desing time sometimes the strings are in spanish and other times no, but at run time it will show the appropiate language.
Regards

Everything is possible, just keep trying...