Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 71b1ed8

Browse files
committedMay 2, 2023
Make "in" not capitalized in "Open in..."
1 parent 902bed1 commit 71b1ed8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎packages/lab-extension/src/index.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ const interfaceSwitcher: JupyterFrontEndPlugin<void> = {
7979
};
8080
const menubar = new MenuBar(overflowOptions);
8181
const switcher = new Menu({ commands });
82-
switcher.title.label = trans.__('Open In...');
82+
switcher.title.label = trans.__('Open in...');
8383
switcher.title.icon = caretDownIcon;
8484
menubar.addMenu(switcher);
8585

@@ -127,7 +127,7 @@ const interfaceSwitcher: JupyterFrontEndPlugin<void> = {
127127
addInterface({
128128
command: CommandIDs.openNotebook,
129129
commandLabel: trans.__('Notebook'),
130-
commandPaletteLabel: trans.__('Open In Jupyter Notebook'),
130+
commandPaletteLabel: trans.__('Open in Jupyter Notebook'),
131131
buttonLabel: 'openNotebook',
132132
urlPrefix: `${baseUrl}tree/`,
133133
});
@@ -137,7 +137,7 @@ const interfaceSwitcher: JupyterFrontEndPlugin<void> = {
137137
addInterface({
138138
command: CommandIDs.openLab,
139139
commandLabel: trans.__('JupyterLab'),
140-
commandPaletteLabel: trans.__('Open In JupyterLab'),
140+
commandPaletteLabel: trans.__('Open in JupyterLab'),
141141
buttonLabel: 'openLab',
142142
urlPrefix: `${baseUrl}doc/tree/`,
143143
});

0 commit comments

Comments
 (0)
Please sign in to comment.