From 9a9f054a08a1e809c75dfde4d8d63fc11086cde9 Mon Sep 17 00:00:00 2001 From: madhu94 Date: Wed, 24 Apr 2019 23:52:10 +0530 Subject: [PATCH] Reword the user facing text --- packages/mainmenu-extension/src/index.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/mainmenu-extension/src/index.ts b/packages/mainmenu-extension/src/index.ts index 5bf779bfa428..e2bb87728aff 100644 --- a/packages/mainmenu-extension/src/index.ts +++ b/packages/mainmenu-extension/src/index.ts @@ -349,11 +349,11 @@ export function createFileMenu( commands.addCommand(CommandIDs.shutdown, { label: 'Shutdown', - caption: 'Shutdown JupyterLab', + caption: 'Shut down JupyterLab', execute: () => { return showDialog({ - title: 'Shutdown confirmation', - body: 'Please confirm you want to quit JupyterLab.', + title: 'Shut down confirmation', + body: 'Please confirm you want to shut down JupyterLab.', buttons: [Dialog.cancelButton(), Dialog.warnButton({ label: 'Quit' })] }).then(result => { if (result.button.accept) { @@ -390,7 +390,7 @@ export function createFileMenu( commands.addCommand(CommandIDs.logout, { label: 'Logout', - caption: 'Logout of JupyterLab', + caption: 'Log out of JupyterLab', execute: () => { router.navigate('/logout', { hard: true }); }