Skip to content

Commit ed7c51f

Browse files
committed
localize
1 parent bac433a commit ed7c51f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/workbench/contrib/codeEditor/browser/outline/documentSymbolsTree.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export class DocumentSymbolAccessibilityProvider implements IListAccessibilityPr
4949
if (element instanceof OutlineGroup) {
5050
return element.label;
5151
} else {
52-
return SymbolKinds.asAriaLabel(element.symbol.name, element.symbol.kind);
52+
return localize('document-symbol-aria-label', "{0}", SymbolKinds.asAriaLabel(element.symbol.name, element.symbol.kind));
5353
}
5454
}
5555
}

0 commit comments

Comments
 (0)