Fix missing localized string

This commit is contained in:
Matt Bierner
2025-09-22 15:54:48 -07:00
parent f554e3c480
commit 76f5e55dae

View File

@@ -367,7 +367,7 @@ class TypeScriptQuickFixProvider implements vscode.CodeActionProvider<VsCodeCode
let title = action.description;
if (action.fixName === fixNames.classIncorrectlyImplementsInterface) {
title = vscode.l10n.t('{0} with AI', action.description);
message = `Implement the stubbed-out class members for ${document.getText(diagnostic.range)} with a useful implementation.`;
message = vscode.l10n.t(`Implement the stubbed-out class members for ${document.getText(diagnostic.range)} with a useful implementation.`);
expand = { kind: 'code-action', action };
} else if (action.fixName === fixNames.fixClassDoesntImplementInheritedAbstractMember) {
title = vscode.l10n.t('{0} with AI', action.description);