Matias,
   the validation page has a snippet of info (
http://tapestry.apache.org/forms-and-validation.html ) on the validation
message selection from the message catalog. So, specifically on overriding
the tynamo login form error message, I have the following in app.properties:

tynamoLoginForm-tynamoLogin-required-message=You must provide a value for
Login.
tynamoLoginForm-tynamoPassword-required-message=You must provide a value
for Password.

Cheers - Alex K

-------

The message can be customized by adding an entry to the page's message
catalog <http://tapestry.apache.org/localization.html> (or the containing
component's message catalog). As with any localized property, this can also
go into the application's message catalog.

The first key checked is *formId*-*fieldId*-*validatorName*-message.

   - formId: the local component id of the Form component
   - fieldId: the local component id of the field (TextField, etc.)
   - validatorName: the name of the validator, i.e., "required" or
   "minlength"
   If there is not message for that key, a second check is made, for *
   fieldId*-*validatorName*-message.

----------

On Thu, Aug 2, 2012 at 12:09 AM, Matías Blasi <matias.bl...@gmail.com>wrote:

> Hi all!
>
> I'm trying to override a message from the catalog of a component. It is the
> LoginForm from the tynamo-security-0.4.6.
>
> It includes a LoginForm.properties with "loginLabel=Login". I added that
> message in my app_es.properties (loginLabel=Acceso) with no effect.
>
> What am I missing???
>
> Thank you for any suggestion,
> Best regards,
> Matias.
>

Reply via email to