From 643f27bf78e881b14c537f811f6ce2979518129e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1s=20Malbr=C3=A1n?= Date: Fri, 8 Mar 2013 19:01:26 -0300 Subject: [PATCH] Move the command and string to the right place --- src/command/Commands.js | 2 +- src/nls/root/strings.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/command/Commands.js b/src/command/Commands.js index b1a0821995a..3d38f8bf101 100644 --- a/src/command/Commands.js +++ b/src/command/Commands.js @@ -71,13 +71,13 @@ define(function (require, exports, module) { exports.EDIT_BLOCK_COMMENT = "edit.blockComment"; exports.EDIT_LINE_UP = "edit.lineUp"; exports.EDIT_LINE_DOWN = "edit.lineDown"; + exports.TOGGLE_CLOSE_BRACKETS = "edit.autoCloseBrackets"; // VIEW exports.VIEW_HIDE_SIDEBAR = "view.hideSidebar"; exports.VIEW_INCREASE_FONT_SIZE = "view.increaseFontSize"; exports.VIEW_DECREASE_FONT_SIZE = "view.decreaseFontSize"; exports.VIEW_RESTORE_FONT_SIZE = "view.restoreFontSize"; - exports.TOGGLE_CLOSE_BRACKETS = "view.autoCloseBrackets"; exports.TOGGLE_JSLINT = "debug.jslint"; exports.SORT_WORKINGSET_BY_ADDED = "view.sortWorkingSetByAdded"; exports.SORT_WORKINGSET_BY_NAME = "view.sortWorkingSetByName"; diff --git a/src/nls/root/strings.js b/src/nls/root/strings.js index 4dcbb12a439..5700321c66b 100644 --- a/src/nls/root/strings.js +++ b/src/nls/root/strings.js @@ -202,6 +202,7 @@ define({ "CMD_BLOCK_COMMENT" : "Toggle Block Comment", "CMD_LINE_UP" : "Move Line Up", "CMD_LINE_DOWN" : "Move Line Down", + "CMD_TOGGLE_CLOSE_BRACKETS" : "Enable Close Brackets", // View menu commands "VIEW_MENU" : "View", @@ -210,7 +211,6 @@ define({ "CMD_INCREASE_FONT_SIZE" : "Increase Font Size", "CMD_DECREASE_FONT_SIZE" : "Decrease Font Size", "CMD_RESTORE_FONT_SIZE" : "Restore Font Size", - "CMD_TOGGLE_CLOSE_BRACKETS" : "Enable Close Brackets", "CMD_SORT_WORKINGSET_BY_ADDED" : "Sort by Added", "CMD_SORT_WORKINGSET_BY_NAME" : "Sort by Name", "CMD_SORT_WORKINGSET_BY_TYPE" : "Sort by Type",