Currently all Create and Affect modules are only available in English.
The main interface uses a single resource bundle to handle localization.
The individual plugin modules do not use this because they need to be self-contained and not reliant on the main application.
The idea being that other people can develop modules without having to touch the main code.
So far I see two ways of going about this:
+ Use the standard java resource bundle to handle the localized files. This has the down side of requiring X language files for X number of modules, which could end up being quite painful.
+ Implement some xml-based solution by wrapping everything into the plugin.xml file. This is more compact, but will quite possibly increase load time as the all the language strings for each module are parsed when the application starts.
If anyone has any input on this, please let me know!
