| createdAt | 2025-03-17 | |||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| updatedAt | 2025-09-30 | |||||||||||||||||||||||||||||||||||
| title | Official VS Code Extension | |||||||||||||||||||||||||||||||||||
| description | Learn how to use the Intlayer extension in VS Code to enhance your development workflow. Quickly navigate between localized content and manage your dictionaries efficiently. | |||||||||||||||||||||||||||||||||||
| keywords |
|
|||||||||||||||||||||||||||||||||||
| slugs |
|
|||||||||||||||||||||||||||||||||||
| history |
|
Intlayer is the official Visual Studio Code extension for Intlayer, designed to improve the developer experience when working with localized content in your projects.
- Extract Content – Extract content from your React / Vue / Svelte components
- Instant Navigation – Quickly jump to the correct content file when clicking on a
useIntlayerkey. - Fill Dictionaries – Fill dictionaries with content from your project.
- Easy access to Intlayer Commands – Build, push, pull, fill, test content dictionaries with ease.
- Content Declaration Generator – Create dictionary content files in various formats (
.ts,.esm,.cjs,.json).
- Test Dictionaries – Test dictionaries for missing translations.
- Keep your dictionaries up to date – Keep your dictionaries up to date with the latest content from your project.
- Intlayer Tab (Activity Bar) – Browse and search dictionaries from a dedicated side tab with toolbar and context actions (Build, Pull, Push, Fill, Refresh, Test, Create File).
-
Open a project using react-intlayer.
-
Locate a call to
useIntlayer(), such as:const content = useIntlayer("app");
-
Command-click (
⌘+Clickon macOS) or Ctrl+Click (on Windows/Linux) on the key (e.g.,"app"). -
VS Code will automatically open the corresponding dictionary file, e.g.,
src/app.content.ts.
Use the side tab to browse and manage dictionaries:
- Open the Intlayer icon in the Activity Bar.
- In Search, type to filter dictionaries and entries in real time.
- In Dictionaries, browse environments, dictionaries, and files. Use the toolbar for Build, Pull, Push, Fill, Refresh, Test, and Create Dictionary File. Right‑click for context actions (Pull/Push on dictionaries, Fill on files). The current editor file auto‑reveals in the tree when applicable.
You can access the commands from the Command Palette.
Cmd + Shift + P (macOS) / Ctrl + Shift + P (Windows/Linux)- Build Dictionaries
- Push Dictionaries
- Pull Dictionaries
- Fill Dictionaries
- Test Dictionaries
- Create Dictionary File
Intlayer recommand to store your AI API keys, as well as Intlayer client ID and secret in environment variables.
The extension can load environment variables from your workspace to run Intlayer commands with the correct context.
- Load order (by priority):
.env.<env>.local→.env.<env>→.env.local→.env - Non-destructive: existing
process.envvalues are not overridden. - Scope: files are resolved from the configured base directory (defaults to the workspace root).
- Command Palette: open the palette and run
Intlayer: Select Environment, then choose the environment (e.g.,development,staging,production). The extension will attempt to load the first available file in the priority list above and show a notification like “Loaded env from.env.<env>.local”. - Settings: go to
Settings → Extensions → Intlayer, and set:- Environment: the environment name used to resolve
.env.<env>*files. - (Optional) Env File: an explicit path to a
.envfile. When provided, it takes precedence over the inferred list.
- Environment: the environment name used to resolve
If your .env files live outside the workspace root, set the Base Directory in Settings → Extensions → Intlayer. The loader will look for .env files relative to that directory.







