mirror of
https://github.com/estruyf/vscode-front-matter.git
synced 2026-06-12 01:14:53 +02:00
6 lines
154 B
TypeScript
6 lines
154 B
TypeScript
import * as l10n from '@vscode/l10n';
|
|
|
|
export const localize = (key: string, ...args: (string | number)[]): string => {
|
|
return l10n.t(key, ...args);
|
|
};
|