Skip to content

Commit

Permalink
Add note about built-in extensions (microsoft#164601)
Browse files Browse the repository at this point in the history
  • Loading branch information
TylerLeonhardt authored and formigoni committed Oct 27, 2022
1 parent 72c6a85 commit 5e4a204
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/vscode-dts/vscode.d.ts
Expand Up @@ -15638,9 +15638,13 @@ declare module 'vscode' {

/**
* Namespace for localization-related functionality in the extension API. To use this properly,
* you must have `l10n` defined in your `package.json` and have bundle.l10n.<language>.json files.
* you must have `l10n` defined in your extension manifest and have bundle.l10n.<language>.json files.
* For more information on how to generate bundle.l10n.<language>.json files, check out the
* [vscode-l10n repo](https://github.com/microsoft/vscode-l10n).
*
* Note: Built-in extensions (for example, Git, TypeScript Language Features, GitHub Authentication)
* are excluded from the `l10n` property requirement. In other words, they do not need to specify
* a `l10n` in the extension manifest because their translated strings come from Language Packs.
*/
export namespace l10n {
/**
Expand Down

0 comments on commit 5e4a204

Please sign in to comment.