How can we use names from .properties file in plugin.xml
已回答
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.
请先登录再写评论。
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 :)