Skip to content

Commit

Permalink
Most recent -> last link
Browse files Browse the repository at this point in the history
Fixes #141419
  • Loading branch information
Tyriar committed Jan 25, 2022
1 parent c5ab188 commit ee37c0b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/vs/workbench/contrib/terminal/browser/terminalActions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1919,7 +1919,7 @@ export function registerTerminalActions() {
constructor() {
super({
id: TerminalCommandId.OpenDetectedLink,
title: { value: localize('workbench.action.terminal.OpenDetectedLink', "Open Detected Link"), original: 'Open Detected Link' },
title: { value: localize('workbench.action.terminal.openDetectedLink', "Open Detected Link"), original: 'Open Detected Link' },
f1: true,
category,
precondition: ContextKeyExpr.or(TerminalContextKeys.processSupported, TerminalContextKeys.terminalHasBeenCreated),
Expand All @@ -1934,7 +1934,7 @@ export function registerTerminalActions() {
constructor() {
super({
id: TerminalCommandId.OpenWebLink,
title: { value: localize('workbench.action.terminal.openWebLink', "Open Most Recent Web Link"), original: 'Open Most Recent Web Link' },
title: { value: localize('workbench.action.terminal.openLastWebLink', "Open Last Web Link"), original: 'Open Last Web Link' },
f1: true,
category,
precondition: ContextKeyExpr.or(TerminalContextKeys.processSupported, TerminalContextKeys.terminalHasBeenCreated),
Expand All @@ -1949,7 +1949,7 @@ export function registerTerminalActions() {
constructor() {
super({
id: TerminalCommandId.OpenFileLink,
title: { value: localize('workbench.action.terminal.openFileLink', "Open Most Recent File Link"), original: 'Open Most Recent File Link' },
title: { value: localize('workbench.action.terminal.openLastFileLink', "Open Last File Link"), original: 'Open Last File Link' },
f1: true,
category,
precondition: ContextKeyExpr.or(TerminalContextKeys.processSupported, TerminalContextKeys.terminalHasBeenCreated),
Expand Down

0 comments on commit ee37c0b

Please sign in to comment.