From cdc71b995c101c552cd8b9e3a1e174518ee245a2 Mon Sep 17 00:00:00 2001 From: Saurabh Kathpalia Date: Mon, 12 Jun 2017 19:18:28 +0530 Subject: [PATCH] Externalize Live preview hightlight settings string --- src/LiveDevelopment/main.js | 2 +- src/nls/root/strings.js | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/LiveDevelopment/main.js b/src/LiveDevelopment/main.js index 9f6d7226401..eab5252a7f2 100644 --- a/src/LiveDevelopment/main.js +++ b/src/LiveDevelopment/main.js @@ -101,7 +101,7 @@ define(function main(require, exports, module) { "borderColor": "rgba(21, 165, 255, 0.85)", "showPaddingMargin": true }, { - description: "LivePreview highlight settings" + description: Strings.DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS }); /** Toggles or sets the preference **/ diff --git a/src/nls/root/strings.js b/src/nls/root/strings.js index fc545114e54..a3b76b557ff 100644 --- a/src/nls/root/strings.js +++ b/src/nls/root/strings.js @@ -800,5 +800,6 @@ define({ "DESCRIPTION_PURE_CODING_SURFACE" : "true to enable code only mode and hide all other UI elements in {APP_NAME}", "DESCRIPTION_INDENT_LINE_COMMENT" : "true to enable indenting of line comments", "DESCRIPTION_RECENT_FILES_NAV" : "Enable/disable navigation in recent files", - "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT" : "Port on which WebSocket Server runs for Live Preview" + "DESCRIPTION_LIVEDEV_WEBSOCKET_PORT" : "Port on which WebSocket Server runs for Live Preview", + "DESCRIPTION_LIVE_DEV_HIGHLIGHT_SETTINGS" : "Live Preview Hightlight settings" });