Message localization problem
----------------------------

                 Key: WICKET-2529
                 URL: https://issues.apache.org/jira/browse/WICKET-2529
             Project: Wicket
          Issue Type: Bug
          Components: wicket
    Affects Versions: 1.4.1
         Environment: any
            Reporter: Anton
             Fix For: 1.4.1


org/apache/wicket/markup/html/form/FormComponent.java, line 178

                        // If not found try a more general form [prefix].[key]
                        if (Strings.isEmpty(message))
                        {
                                resource = prefix(prefix, key);
                                message = getString(localizer, key, 
formComponent);              <-----
                        }

Please, replace
message = getString(localizer, key, formComponent);
by
message = getString(localizer, resource, formComponent);


-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to