The MANIFEST.MF file contains an entry to define which *.properties files are loaded at runtime. These entry defined name and the corresponding properties file is used to translate the plugin strings which start with the prefix "%", like "%plugin.name"
Bundle-Localization: plugin
plugin.properties than contains a line like
%plugin.name=Runtime Plugin
the properties file also can have the name application.properties, than i have to define
Bundle-Localization: application
Whent he properties files areinside a plugin sub directory "properties" i can define
Bundle-Localization: properties/application
My Question: Can a define a Bundle-Localization pathw which is outside the plugin, like
Bundle-Localization: ../properties/application
It seems, that the ManifestLocalization object which is searching for the properties file path, does ask ZipFile for the path. And ZipPath does not support this functionality.
How can i solve this issue?