Plugin.properties放在plugin.xml的相同目錄下, Eclipse里面看國(guó)際化也是非常正確,
但是運(yùn)行以后就是只顯示"%XXXX"這樣的字符串原來(lái)是因?yàn)?br />
Localization in RCP plugins is usually
done by including translations in a property file and using their id in
plugin.xml.
I spend some time lately trying to
understand why some translations were not used in my application although they
were correctly displayed in PDE.
Answer : when using
plugin.properties, you MUST include the following line in the plugin
manifest :
Bundle-Localization:
plugin
Otherwise, PDE will show the translated
text, but your app won’t.
Strangely, I had to edit the manifest
manually because I couldn’t find a way to enable plugin localization in PDE.
Some other plugins of my application already had this line, but I don’t remember
adding it. Maybe Eclipse templates have changed since I created my first
plugins (using Eclipse 3.1).
記得以前插件開發(fā)也有這個(gè)問題,不過(guò)忘記了。
真是記性越來(lái)越差了。
這個(gè)問題竟然困擾了我兩個(gè)星期。還好可以google到別人的解決辦法,今天在這里留個(gè)腳印。