While using Grails 2.2.2 I noticed that messages defined in a plugin's messages.properties take preceance over the ones defined in the project messages.properties.
// in the plugin messages.properties
test.label=Test
// in messages.properties
test.label=Test Override
The text Create Test is shown when compile(":localizations:1.4.4.12") is uncommented in BuildConfig.groovy but Create Test Overriden is shown when localization is commented out.
Thanks!
While using Grails 2.2.2 I noticed that messages defined in a plugin's messages.properties take preceance over the ones defined in the project messages.properties.
The text Create Test is shown when
compile(":localizations:1.4.4.12")is uncommented in BuildConfig.groovy but Create Test Overriden is shown when localization is commented out.Thanks!