We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When having a class Button with a String title this creates a i18n key of button.title.label
Button
title
button.title.label
When having a class using multiple Button properties like:
class MetaInfo { Button next Button cancel }
the i18n keys generated and looked up are:
metaInfo.next.title.label button.title.label metaInfo.cancel.title.label
Then if I have a second class with the same button properties:
class MetaAck { Button next Button cancel }
I get:
metaAck.next.title.label button.title.label metaAck.cancel.title.label
I would like to have the additional keys:
next.title.label cancel.title.label
Having the extra key, without the bean-name would be helpful
The text was updated successfully, but these errors were encountered:
Fix gpc#340, added the option to skip the bean-name for bean properties
e3d71c6
Merge pull request #342 from sbglasius/grails4.x
aadd6bc
Fix #340, added the option to skip the bean-name for bean properties
a64ac4e
sbglasius
No branches or pull requests
When having a class
Button
with a Stringtitle
this creates a i18n key ofbutton.title.label
When having a class using multiple
Button
properties like:the i18n keys generated and looked up are:
Then if I have a second class with the same button properties:
I get:
I would like to have the additional keys:
Having the extra key, without the bean-name would be helpful
The text was updated successfully, but these errors were encountered: