diff options
author | Bogdan Gheorghe <gheorghe@ca.ibm.com> | 2014-06-27 18:32:15 -0400 |
---|---|---|
committer | Bogdan Gheorghe <gheorghe@ca.ibm.com> | 2014-06-27 18:32:15 -0400 |
commit | 3cc8e1329b3e64e418901638935602c49afd461b (patch) | |
tree | cc5752f18805f32d9bbff345f0425bb44ac826a7 | |
parent | b30853de7cf48586bb6ad79be84c13d168afa1a3 (diff) | |
download | org.eclipse.orion.client-origin/testPush.zip org.eclipse.orion.client-origin/testPush.tar.gz org.eclipse.orion.client-origin/testPush.tar.bz2 |
Update Select All messageorigin/testPushorigin/stable_20140627
-rw-r--r-- | bundles/org.eclipse.orion.client.git/web/git/nls/root/gitmessages.js | 1 | ||||
-rw-r--r-- | bundles/org.eclipse.orion.client.git/web/orion/git/widgets/gitChangeList.js | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/bundles/org.eclipse.orion.client.git/web/git/nls/root/gitmessages.js b/bundles/org.eclipse.orion.client.git/web/git/nls/root/gitmessages.js index 638a094..77f7a12 100644 --- a/bundles/org.eclipse.orion.client.git/web/git/nls/root/gitmessages.js +++ b/bundles/org.eclipse.orion.client.git/web/git/nls/root/gitmessages.js @@ -220,6 +220,7 @@ define({ "Type the commit name (sha1):": "Type the commit name (sha1):", "Search": "Search", "Searching...": "Searching...", + "SelectAll": "Select All", "Looking for the commit": "Looking for the commit", "New Branch:": "New Branch:", "No remote selected": "No remote selected", diff --git a/bundles/org.eclipse.orion.client.git/web/orion/git/widgets/gitChangeList.js b/bundles/org.eclipse.orion.client.git/web/orion/git/widgets/gitChangeList.js index 5c4b89b..705359a 100644 --- a/bundles/org.eclipse.orion.client.git/web/orion/git/widgets/gitChangeList.js +++ b/bundles/org.eclipse.orion.client.git/web/orion/git/widgets/gitChangeList.js @@ -600,7 +600,7 @@ define([ } else if (item.Type === "ExplorerSelection") {
td.colSpan = 2;
itemLabel = document.createElement("span"); //$NON-NLS-0$
- itemLabel.textContent = "All Files";
+ itemLabel.textContent = messages["SelectAll"];
div.appendChild(itemLabel);
var actionsArea = document.createElement("div"); //$NON-NLS-0$
|