Reputation: 3078
I'm developing a RCP Eclipse-based application and it makes use of the Eclipse providing tool, p2, as of Eclipse 3.4 (Ganymede).
The thing is, this application must be fully in Brazillian Portuguese, and it already is, except for the p2-related UI. And that's what I need to translate. How can I?
This is where I've been:
So, I ask, is this even possible?
I still have two options in mind:
Any suggestions?
All the best
-Alvaro C.
Upvotes: 1
Views: 623
Reputation: 1
Just do the translations in Eclipse with correct fragment and package name and export the translation fragment with your product, e.g. by including it into an exported feature if product depends on features.
Upvotes: 0
Reputation: 758
you should just add a fragment project to enhance the functionality(here the language) of your third party plug-in.
1.create a fragment project
2.set your third party plug-in as "host plug-in"
3.create your message property in this fragment
EDIT: See http://www.eclipse.org/babel/ for a set of existing translations and for examples of using fragments to translate .properties files.
Upvotes: 2