Thank you for reporting this bug. We will make it our priority to review this report.
  1. #1
    Sencha Premium Member
    Join Date
    Mar 2012
    Posts
    79
    Vote Rating
    3
    esag_dk is on a distinguished road

      0  

    Default 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.

  2. #2
    Sencha - GXT Dev Team
    Join Date
    Feb 2009
    Posts
    1,931
    Vote Rating
    55
    Colin Alworth is a jewel in the rough Colin Alworth is a jewel in the rough Colin Alworth is a jewel in the rough

      0  

    Default


    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.

  3. #3
    Sencha User
    Join Date
    Aug 2012
    Posts
    3
    Vote Rating
    0
    oarrua88 is on a distinguished road

      0  

    Default


    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();
                }
            };