Skip to content

Commit

Permalink
Reword the user facing text
Browse files Browse the repository at this point in the history
  • Loading branch information
Madhu94 committed Apr 24, 2019
1 parent ba99129 commit 9a9f054
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/mainmenu-extension/src/index.ts
Expand Up @@ -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) {
Expand Down Expand Up @@ -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 });
}
Expand Down

0 comments on commit 9a9f054

Please sign in to comment.