瀏覽代碼

Rename 'Close Other Tabs' command item to 'Close All Other Tabs'.

Cheryl Quah 6 年之前
父節點
當前提交
fd73b7baf1
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      packages/application-extension/src/index.tsx

+ 1 - 1
packages/application-extension/src/index.tsx

@@ -564,7 +564,7 @@ function addCommands(app: JupyterLab, palette: ICommandPalette): void {
   palette.addItem({ command: CommandIDs.closeAll, category });
 
   commands.addCommand(CommandIDs.closeOtherTabs, {
-    label: () => `Close Other Tabs`,
+    label: () => `Close All Other Tabs`,
     isEnabled: () => {
       // Ensure there are at least two widgets.
       const iterator = shell.widgets('main');