Skip to content

Commit 962e72c

Browse files
authored
Merge pull request microsoft#218400 from microsoft/tyriar/218118
Improve casing of environment changes actions
2 parents da06c08 + 05b1eaf commit 962e72c

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)