| author | Maciej Bendkowski | 2012-07-10 07:35:18 (EDT) |
|---|---|---|
| committer | Malgorzata Janczarska | 2012-07-25 05:24:27 (EDT) |
| commit | b6bc1f12f84c0db1f19a4b1aa21ba75e52758d0e (patch) (side-by-side diff) | |
| tree | de63462c4a1fa1d009c5c87d85b6ca1bfb199395 | |
| parent | d154d5fc73ec890f1cec01187919bc99a8913913 (diff) | |
| download | org.eclipse.orion.client-b6bc1f12f84c0db1f19a4b1aa21ba75e52758d0e.zip org.eclipse.orion.client-b6bc1f12f84c0db1f19a4b1aa21ba75e52758d0e.tar.gz org.eclipse.orion.client-b6bc1f12f84c0db1f19a4b1aa21ba75e52758d0e.tar.bz2 | |
Bug 381936 - Plugin service info table heading unexternalized
| -rw-r--r-- | bundles/org.eclipse.orion.client.core/web/orion/settings/nls/root/messages.js | 3 | ||||
| -rw-r--r-- | bundles/org.eclipse.orion.client.core/web/orion/widgets/plugin/ServiceCarousel.js | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/bundles/org.eclipse.orion.client.core/web/orion/settings/nls/root/messages.js b/bundles/org.eclipse.orion.client.core/web/orion/settings/nls/root/messages.js index 41cb5d0..91c3f06 100644 --- a/bundles/org.eclipse.orion.client.core/web/orion/settings/nls/root/messages.js +++ b/bundles/org.eclipse.orion.client.core/web/orion/settings/nls/root/messages.js @@ -100,5 +100,6 @@ define({ "Services": "Services", "Value": "Value", "JavaScript Object": "JavaScript Object", - "click here, then check javascript console to drill down": "click here, then check javascript console to drill down" + "click here, then check javascript console to drill down": "click here, then check javascript console to drill down", + "Item" : "Item" });
\ No newline at end of file diff --git a/bundles/org.eclipse.orion.client.core/web/orion/widgets/plugin/ServiceCarousel.js b/bundles/org.eclipse.orion.client.core/web/orion/widgets/plugin/ServiceCarousel.js index 0286ff4..8f3c073 100644 --- a/bundles/org.eclipse.orion.client.core/web/orion/widgets/plugin/ServiceCarousel.js +++ b/bundles/org.eclipse.orion.client.core/web/orion/widgets/plugin/ServiceCarousel.js @@ -168,7 +168,7 @@ define(['i18n!orion/settings/nls/messages', 'require', 'dojo', 'dijit', 'orion/u var tableContainer = dojo.create( "div", { "class":"tablecontainer" }, entry); //$NON-NLS-2$ //$NON-NLS-1$ //$NON-NLS-0$
var table = dojo.create( "table", {"class":"serviceTable"}, tableContainer ); //$NON-NLS-2$ //$NON-NLS-1$ //$NON-NLS-0$
- dojo.place('<thead><tr><th scope="col" id="...">Item</th><th scope="col" id="...">'+messages['Value']+'</th></tr></thead>', table); //$NON-NLS-2$ //$NON-NLS-0$
+ dojo.place('<thead><tr><th scope="col" id="...">'+messages['Item']+'</th><th scope="col" id="...">'+messages['Value']+'</th></tr></thead>', table); //$NON-NLS-2$ //$NON-NLS-0$
dojo.place('<tfoot><tr><td></td></tr></tfoot>', table); //$NON-NLS-0$
var tablebody = dojo.create( "tbody", null, table); //$NON-NLS-0$
|

