eclipse rcp:如何翻译第三方插件?
我正在开发一个 eclipse rcp 应用程序。它使用一些第三方插件,我如何翻译这些插件中的文本?
I am working on a eclipse rcp application.it use some third-part plugins, how can I translate text in these plugins?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一般来说,国际化在 Eclipse 中很容易。您可以查找包含插件中使用的字符串的 *.properties 文件。然后,您可以使用您的翻译定义自己的属性文件。
如果不存在属性文件,则预计不会翻译插件。在这种情况下,需要更改代码。
有关示例,请参阅此指南
In general internationalization is easy in eclipse. You can look for *.properties files which contains the strings which are used in the plugin. You can then define an own property file with your translation.
If no property files exist the plugin is not foreseen to be translated. In this case code changes are necessary.
See this howto for an example