From 0ef99ab42aa26ad4d12cea273789c0e6c8563040 Mon Sep 17 00:00:00 2001 From: Barbara Valdez <34872381+barbaravaldez@users.noreply.github.com> Date: Fri, 5 Mar 2021 16:26:34 -0800 Subject: [PATCH] remove Jupyter string from books and notebooks in UI (#14583) --- extensions/notebook/package.nls.json | 8 ++++---- extensions/notebook/src/common/localizedConstants.ts | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/extensions/notebook/package.nls.json b/extensions/notebook/package.nls.json index eab780df70..6530576565 100644 --- a/extensions/notebook/package.nls.json +++ b/extensions/notebook/package.nls.json @@ -40,13 +40,13 @@ "title.ProvidedBooks": "Provided Books", "title.PinnedBooks": "Pinned notebooks", "title.PreviewLocalizedBook": "Get localized SQL Server 2019 guide", - "title.openJupyterBook": "Open Jupyter Book", - "title.closeJupyterBook": "Close Jupyter Book", - "title.closeJupyterNotebook": "Close Jupyter Notebook", + "title.openJupyterBook": "Open Book", + "title.closeJupyterBook": "Close Book", + "title.closeJupyterNotebook": "Close Notebook", "title.revealInBooksViewlet": "Reveal in Books", "title.createJupyterBook": "Create Book (Preview)", "title.openNotebookFolder": "Open Notebooks in Folder", - "title.openRemoteJupyterBook": "Add Remote Jupyter Book", + "title.openRemoteJupyterBook": "Add Remote Book", "title.pinNotebook": "Pin Notebook", "title.unpinNotebook": "Unpin Notebook", "title.moveTo": "Move to ..." diff --git a/extensions/notebook/src/common/localizedConstants.ts b/extensions/notebook/src/common/localizedConstants.ts index 625b82e993..f01edef092 100644 --- a/extensions/notebook/src/common/localizedConstants.ts +++ b/extensions/notebook/src/common/localizedConstants.ts @@ -84,8 +84,8 @@ export function httpRequestError(code: number, message: string): string { return export function msgDownloadLocation(downloadLocation: string): string { return localize('msgDownloadLocation', "Downloading to {0}", downloadLocation); } // Create Book dialog constants -export const newGroup = localize('newGroup', "New Group"); -export const groupDescription = localize('groupDescription', "Groups are used to organize Notebooks."); +export const newGroup = localize('newGroup', "New Book"); +export const groupDescription = localize('groupDescription', "Books are used to organize Notebooks."); export const locationBrowser = localize('locationBrowser', "Browse locations..."); export const selectContentFolder = localize('selectContentFolder', "Select content folder"); export const browse = localize('browse', "Browse");