Details
-
Improvement
-
Status: Closed
-
Major
-
Resolution: Fixed
-
webconsole-3.1.2
-
None
Description
Currently the meta-type provider ConfigurationListener2 uses hard-coded values for description of the properties. So as example, when you switch to German language and go to the Configuration, you will see the English metatype information for the web console configuration.
What about having a resource file containing the meta-type data? A separate or event the same i18n properties, that we use for localizing the UI!
So in implementation of getObjectClassDefinition( String id, String locale ), we can use the locale parameter and get the correct resource bundle.
The we can assume the localization keys for the Object Class Definition are:
metadata.name=Apache Felix OSGi Management Console
metadata.description=Configuration of the Apache Felix OSGi Management Console.
and for each attribute it can be:
metadata.<key>.name=the name
metadata.<key>.description=description
or as example for 'manager.root' property it will be:
metadata.manager.root.name=Root URI
metadata.manager.root.description=The root path to the OSGi Management Console
WDYT?