mirror of
https://github.com/microsoft/vscode-extension-samples.git
synced 2026-04-27 16:55:44 +08:00
feat(lang): replace German with English in showQuickPick function
This commit is contained in:
@ -10,8 +10,8 @@ import { window } from 'vscode';
|
||||
*/
|
||||
export async function showQuickPick() {
|
||||
let i = 0;
|
||||
const result = await window.showQuickPick(['eins', 'zwei', 'drei'], {
|
||||
placeHolder: 'eins, zwei or drei',
|
||||
const result = await window.showQuickPick(['one', 'two', 'three'], {
|
||||
placeHolder: 'one, two or three',
|
||||
onDidSelectItem: item => window.showInformationMessage(`Focus ${++i}: ${item}`)
|
||||
});
|
||||
window.showInformationMessage(`Got: ${result}`);
|
||||
|
||||
Reference in New Issue
Block a user