Skip to content

Commit

Permalink
localize string
Browse files Browse the repository at this point in the history
  • Loading branch information
ElinorW committed May 27, 2024
1 parent fe57457 commit d14cdab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vscode/microsoft-kiota/src/workspaceTreeProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export class WorkspaceTreeProvider implements vscode.TreeDataProvider<vscode.Tre

getTreeItem(element: vscode.TreeItem): vscode.TreeItem {
if (element) {
element.command = { command: 'kiota.workspace.openWorkspaceFile', title: "Open File", arguments: [vscode.Uri.file(workspaceJsonPath)], };
element.command = { command: 'kiota.workspace.openWorkspaceFile', title: vscode.l10n.t("Open File"), arguments: [vscode.Uri.file(workspaceJsonPath)], };
element.contextValue = 'file';
}
return element;
Expand Down

0 comments on commit d14cdab

Please sign in to comment.