IntelliJ comes with a resource bundle editor but I can't use it.
I have this file structure in my project but the "resources" folder doesn't seem to be recognized as a "resource bundle". What's wrong?
IntelliJ comes with a resource bundle editor but I can't use it.
I have this file structure in my project but the "resources" folder doesn't seem to be recognized as a "resource bundle". What's wrong?
Copyright © 2021 Jogjafile Inc.
Your properties files must follow specific naming conventions to be recognized as resource bundles. Look at this JavaDoc for more details.
TLDR: Rename your files to
languages_en.properties
,languages_es.properties
and so on it should work (notice the underscore instead of dash).