Skip to content

[Loc]"Override settings applied" not localized #3864

Description

@PhoebeTf

Brief Issue Summary

Environment:
VSCode 1.90.1+ CMake Tools v1.19.13(pre-release)

More info:
Repro Language: All loc languages
Repro platform: Windows, Linux, Mac

Repro steps:

  1. Open VScode and change the display language to CHS
  2. Create a new folder named 'Test' and open it with vscode.
  3. Create a file named CMakeLists.txt under test with the following content:
cmake_minimum_required (VERSION 3.8) 
project ("test") 
add_executable (test "test.cpp" ) 
  1. Create a file named test.cpp under test with the following content:
#include <iostream> 
int main(int argc, char **argv) 
{ 
std::cout << "Hello World" << std::endl; 
return 0; 
} 
  1. Create "CMakePresets.json" file and copy the following code into the file, then save it
{
"version": 3,
"configurePresets": [
{
"name": "windows-base",
"hidden": true,
"generator": "Ninja",
"binaryDir": "${sourceDir}/out/build/${presetName}",
"installDir": "${sourceDir}/out/install/${presetName}",
"cacheVariables": {
"CMAKE_C_COMPILER": "cl.exe",
"CMAKE_CXX_COMPILER": "cl.exe"
},
"condition": {
"type": "equals",
"lhs": "${hostSystemName}",
"rhs": "Windows"
}
}
]
}

  1. Click on the CMake button in the side bar
  2. Navigate to "Configure" Options and click "select a kit",
  3. Select [Unspecified] in the drop-down menu

Expected result:
"Override settings applied" localized

Actual result:
"Override settings applied" not localized
override_notLoc

Whole process:
MakefileTools_Override_Notloc

CMake Tools Diagnostics

No response

Debug Log

No response

Additional Information

No response

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Labels

buga bug in the product

Type

No type

Projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions