Hybrid View
-
18 Jul 2012 3:26 AM #1
Internalization not complete
Internalization not complete
There are some strings that haven't been internationalized yet (at least not for the german language). For example grid filtering strings ("Filters", "Enter filter text..." etc.). Will this be fixed in the next release? Is there any way to use my own XMessages.properties local file as a workaround without having to compile GXT?
Edit: I figured out how to override the file as a workaround.
-
18 Jul 2012 6:02 AM #2
To those who haven't worked out how to override the file, the most straightforward way is to make a XMessages_mylocale.properties file in your project, at the same package as the GXT version: com.sencha.gxt.messages.client.
-
23 Aug 2012 7:06 AM #3
This solution enables complete the missing messages for validations. For example: Regex no validation message.
"textField_regexText" haven't message.
Try this:
Code:TextField<String> textField = new TextField<String>(){ @Override public TextFieldMessages getMessages() { super.getMessages().setRegexText("Caracteres inválidos"); return super.getMessages(); } };
Thank you for reporting this bug. We will make it our priority to review this report.


Reply With Quote