Skip to content

Commit 9544908

Browse files
Fix 'Workspace Is' localization (#4392)
1 parent 0ff6da1 commit 9544908

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ Bug Fixes:
1717
- Fix displaying "Go to Test" in the Test Explorer when the DEF_SOURCE_LINE property is set, but there is no backtrace information present. [4321](https://github.com/microsoft/vscode-cmake-tools/pull/4321) [@rjaegers](https://github.com/rjaegers)
1818
- Fix gnuld error parsing false positive on make errors, false negative due to trailing \r, and false parsing of new "multiple definitions" error [#2864](https://github.com/microsoft/vscode-cmake-tools/issues/2864) [@0xemgy](https://github.com/0xemgy)
1919
- Fixes for small bug string bugs. [#4319](https://github.com/microsoft/vscode-cmake-tools/issues/4319), [#4317](https://github.com/microsoft/vscode-cmake-tools/issues/4317), [#4312](https://github.com/microsoft/vscode-cmake-tools/issues/4312)
20+
- Fixes localization for "workspace is" string. [#4374](https://github.com/microsoft/vscode-cmake-tools/issues/4374)
2021
- Make tooltips for selecting Launch/Debug Target. [#4373](https://github.com/microsoft/vscode-cmake-tools/issues/4373)
2122

2223
## 1.20.53

src/cmakeTaskProvider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -471,7 +471,7 @@ export class CustomBuildTaskTerminal implements vscode.Pseudoterminal, proc.Outp
471471
private async getProject(): Promise<CMakeProject | undefined> {
472472
let project: CMakeProject | undefined = getActiveProject();
473473
if (this.workspaceFolder !== undefined) {
474-
this.writeEmitter.fire("Workspace is " + this.workspaceFolder.uri.path + endOfLine);
474+
this.writeEmitter.fire(localize("workspace.is", "Workspace is {0}", this.workspaceFolder.uri.path + endOfLine));
475475
project = await extensionManager?.getProjectForFolder(this.workspaceFolder);
476476
}
477477
if (!project) {

0 commit comments

Comments
 (0)