eclipse plugin中开发的一些注意事项

1、Eclipse 中插件开发多语言的实现

为了使用.properties 文件,需要在 META-INF/MANIFEST.MF 文件中定义:
      Bundle-Localization: about
这样就会自动加载 about.properties 文件

即将.properties的文件名在 Bundle-Localization头中声明,这样.properties就会被加载到plugin中去

然后在 plugin.xml 文件中,将字符串替换为 %key 就可以了

你可能感兴趣的:(eclipse plugin)