Skip to content

Commit

Permalink
Fix script as alter/execute capitalization (microsoft#349)
Browse files Browse the repository at this point in the history
  • Loading branch information
MattIrv authored Dec 18, 2017
1 parent a602c7f commit 67aac4e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sql/workbench/common/actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ export class ScriptSelectAction extends Action {

export class ScriptExecuteAction extends Action {
public static ID = 'scriptExecute';
public static LABEL = nls.localize('scriptExecute', 'Script As Execute');
public static LABEL = nls.localize('scriptExecute', 'Script as Execute');

constructor(
id: string, label: string,
Expand Down Expand Up @@ -139,7 +139,7 @@ export class ScriptExecuteAction extends Action {

export class ScriptAlterAction extends Action {
public static ID = 'scriptAlter';
public static LABEL = nls.localize('scriptAlter', 'Script As Alter');
public static LABEL = nls.localize('scriptAlter', 'Script as Alter');

constructor(
id: string, label: string,
Expand Down

0 comments on commit 67aac4e

Please sign in to comment.