Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(796)

Unified Diff: editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/actions/RunPubAction.java

Issue 26581002: rename pub commands in the editor (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « editor/tools/plugins/com.google.dart.tools.ui/plugin.xml ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/actions/RunPubAction.java
===================================================================
--- editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/actions/RunPubAction.java (revision 28360)
+++ editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/actions/RunPubAction.java (working copy)
@@ -48,7 +48,7 @@
public static RunPubAction createPubDeployAction(IWorkbenchWindow window) {
RunPubAction action = new RunPubAction(window, RunPubJob.DEPLOY_COMMAND);
- action.setText(NLS.bind(ActionMessages.RunPubAction_commandText, "Deploy"));
+ action.setText(NLS.bind(ActionMessages.RunPubAction_commandText, "Build"));
action.setDescription(NLS.bind(
ActionMessages.RunPubAction_commandDesc,
RunPubJob.DEPLOY_COMMAND));
@@ -57,7 +57,7 @@
public static RunPubAction createPubInstallAction(IWorkbenchWindow window) {
RunPubAction action = new RunPubAction(window, RunPubJob.INSTALL_COMMAND);
- action.setText(NLS.bind(ActionMessages.RunPubAction_commandText, "Install"));
+ action.setText(NLS.bind(ActionMessages.RunPubAction_commandText, "Get"));
action.setDescription(NLS.bind(
ActionMessages.RunPubAction_commandDesc,
RunPubJob.INSTALL_COMMAND));
@@ -66,7 +66,7 @@
public static RunPubAction createPubInstallOfflineAction(IWorkbenchWindow window) {
RunPubAction action = new RunPubAction(window, RunPubJob.INSTALL_OFFLINE_COMMAND);
- action.setText(NLS.bind(ActionMessages.RunPubAction_commandText, "Install Offline"));
+ action.setText(NLS.bind(ActionMessages.RunPubAction_commandText, "Get Offline"));
action.setDescription(NLS.bind(
ActionMessages.RunPubAction_commandDesc,
RunPubJob.INSTALL_COMMAND));
@@ -75,7 +75,7 @@
public static RunPubAction createPubUpdateAction(IWorkbenchWindow window) {
RunPubAction action = new RunPubAction(window, RunPubJob.UPDATE_COMMAND);
- action.setText(NLS.bind(ActionMessages.RunPubAction_commandText, "Update"));
+ action.setText(NLS.bind(ActionMessages.RunPubAction_commandText, "Upgrade"));
action.setDescription(NLS.bind(
ActionMessages.RunPubAction_commandDesc,
RunPubJob.UPDATE_COMMAND));
« no previous file with comments | « editor/tools/plugins/com.google.dart.tools.ui/plugin.xml ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698