eclipse rcp :how to translate third-part plugin?
I am workin开发者_Go百科g on a eclipse rcp application.it use some third-part plugins, how can I translate text in these plugins?
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
精彩评论