How can we use names from .properties file in plugin.xml
Answered
I have created a properties file in my resources directory and I'm using in though out my plugin for all the dialogs and messages.
Using a class that extends `com.intellij.AbstractBundle` for loading and using the property values.
Is it possible to apply the same in plugin.xml actions too ? I would like to use values from the .properties file for action name and descriptions.
Please sign in to leave a comment.
You can pass strings form the .properties files to the action's constructor, like in FindAllAction.
And what about the plugin description ?
Still waiting for an answer here :)