Skip to content

Commit 05b1eaf

Browse files
committed
Improve casing of environment changes actions
Fixes microsoft#218118
1 parent fdec5a0 commit 05b1eaf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/vs/workbench/contrib/terminal/browser/environmentVariableInfo.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export class EnvironmentVariableInfoStale implements IEnvironmentVariableInfo {
3939

4040
private _getActions(): ITerminalStatusHoverAction[] {
4141
return [{
42-
label: localize('relaunchTerminalLabel', "Relaunch terminal"),
42+
label: localize('relaunchTerminalLabel', "Relaunch Terminal"),
4343
run: () => this._terminalService.getInstanceFromId(this._terminalId)?.relaunch(),
4444
commandId: TerminalCommandId.Relaunch
4545
}];
@@ -77,7 +77,7 @@ export class EnvironmentVariableInfoChangesActive implements IEnvironmentVariabl
7777

7878
private _getActions(scope: EnvironmentVariableScope | undefined): ITerminalStatusHoverAction[] {
7979
return [{
80-
label: localize('showEnvironmentContributions', "Show environment contributions"),
80+
label: localize('showEnvironmentContributions', "Show Environment Contributions"),
8181
run: () => this._commandService.executeCommand(TerminalCommandId.ShowEnvironmentContributions, scope),
8282
commandId: TerminalCommandId.ShowEnvironmentContributions
8383
}];

0 commit comments

Comments
 (0)