FELIX-2509 l10n support for additional information printed for components

git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@981808 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/webconsole/src/main/native2ascii/OSGI-INF/l10n/bundle_de.properties b/webconsole/src/main/native2ascii/OSGI-INF/l10n/bundle_de.properties
index 50dbc7e..5ef7777 100644
--- a/webconsole/src/main/native2ascii/OSGI-INF/l10n/bundle_de.properties
+++ b/webconsole/src/main/native2ascii/OSGI-INF/l10n/bundle_de.properties
@@ -172,6 +172,9 @@
 scr.prop.defstate=Default Status
 scr.prop.activation=Aktivierung
 scr.prop.properties=Eigenschaften
+scr.prop.class=Implementationsklasse
+scr.prop.componentfactory=Komponenten Factory Name
+scr.prop.configurationpolicy=Konfigurations Policy
 scr.serv.type=Dienst Typ
 scr.serv=Dienste
 scr.title.actions=Aktionen
diff --git a/webconsole/src/main/resources/OSGI-INF/l10n/bundle.properties b/webconsole/src/main/resources/OSGI-INF/l10n/bundle.properties
index 5392504..b194815 100644
--- a/webconsole/src/main/resources/OSGI-INF/l10n/bundle.properties
+++ b/webconsole/src/main/resources/OSGI-INF/l10n/bundle.properties
@@ -174,6 +174,9 @@
 scr.prop.defstate=Default State
 scr.prop.activation=Activation
 scr.prop.properties=Properties
+scr.prop.class=Implementation Class
+scr.prop.componentfactory=Component Factory Name
+scr.prop.configurationpolicy=Configuration Policy
 scr.serv.type=Service Type
 scr.serv=Services
 scr.title.actions=Actions
diff --git a/webconsole/src/main/resources/templates/components.html b/webconsole/src/main/resources/templates/components.html
index 8d5d65a..18ef333 100644
--- a/webconsole/src/main/resources/templates/components.html
+++ b/webconsole/src/main/resources/templates/components.html
@@ -5,15 +5,18 @@
 var scrData = ${__data__};
 // i18n
 var i18n = {
-	'Bundle'           : '${scr.prop.bundle}',
-	'Default State'    : '${scr.prop.defstate}',
-	'Activation'       : '${scr.prop.activation}',
-	'Service Type'     : '${scr.serv.type}',
-	'Services'         : '${scr.serv}',
-	'Properties'       : '${scr.prop.properties}',
-	stat_no_service    : "${scr.status.no_service}",
-	stat_no_components : "${scr.status.no_components}",
-	stat_ok            : "${scr.status.ok}"
+	'Bundle'                 : '${scr.prop.bundle}',
+	'Default State'          : '${scr.prop.defstate}',
+	'Activation'             : '${scr.prop.activation}',
+	'Service Type'           : '${scr.serv.type}',
+	'Services'               : '${scr.serv}',
+	'Properties'             : '${scr.prop.properties}',
+	'Implementation Class'   : '${scr.prop.class}',
+	'Component Factory Name' : '${scr.prop.componentfactory}',
+	'Configuration Policy'   : '${scr.prop.configurationpolicy}',
+	stat_no_service          : "${scr.status.no_service}",
+	stat_no_components       : "${scr.status.no_components}",
+	stat_ok                  : "${scr.status.ok}"
 }
 // ]]>
 </script>