Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src/vs
diff options
context:
space:
mode:
authorAndrea Mah <31675041+andreamah@users.noreply.github.com>2022-07-27 20:09:41 +0300
committerGitHub <noreply@github.com>2022-07-27 20:09:41 +0300
commit6fccf5d16e2359f6dde9f772166c6ff2f04872f0 (patch)
tree8b417a2d7df86a7ce1401f02c25071c04d86383f /src/vs
parent31266e21424152d9146f32ee74bc6a4bc6e91c0c (diff)
"To" shouldn't be capitalized in the command "Go to Running Cell" (#156471)
to should be capitalized in the command "Go to..." Fixes #156297
Diffstat (limited to 'src/vs')
-rw-r--r--src/vs/workbench/contrib/notebook/browser/controller/executeActions.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vs/workbench/contrib/notebook/browser/controller/executeActions.ts b/src/vs/workbench/contrib/notebook/browser/controller/executeActions.ts
index 7b190d89c14..70d6930241c 100644
--- a/src/vs/workbench/contrib/notebook/browser/controller/executeActions.ts
+++ b/src/vs/workbench/contrib/notebook/browser/controller/executeActions.ts
@@ -544,8 +544,8 @@ registerAction2(class RevealRunningCellAction extends NotebookAction {
constructor() {
super({
id: REVEAL_RUNNING_CELL,
- title: localize('revealRunningCell', "Go To Running Cell"),
- tooltip: localize('revealRunningCell', "Go To Running Cell"),
+ title: localize('revealRunningCell', "Go to Running Cell"),
+ tooltip: localize('revealRunningCell', "Go to Running Cell"),
shortTitle: localize('revealRunningCellShort', "Go To"),
precondition: NOTEBOOK_HAS_RUNNING_CELL,
menu: [