
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
content-localizer
Advanced tools
A CLI tool for translating files contents at a specific folder path.
The content-localizer CLI tool is designed for replicating files and folders from a source directory to multiple locales. It simplifies content translation and localization processes for multi-locale projects. This tool can be particularly useful for translating pages in projects like VitePress.
You can install the content-localizer CLI tool via npm:
npm install -g content-localizer
After installing the content-localizer CLI tool, you can run it from the command line as follows:
content-localizer --source [sourcePath] --locales [locale1,locale2] --fileTypes [fileType1,fileType2] --from [fromLocale]
content-localizer --source src/en --locales no,sw --fileTypes .md,.txt --from en
This command will replicate the specified file type from the 'en' source directory to the 'no' and 'sw' locales.
Let's say you have a source directory structure like this:
en/
- introduction.md
- getting-started/
- installation/
- installation.txt
- usage/
- usage.md
- configuration/
- settings/
- settings.md
Running the replicateLocales function as shown in the usage example will replicate the Markdown files within the source directory to the specified locales. The resulting directory structure for each locale will be as follows:
For the 'no' locale:
no/
- introduction.md
- getting-started/
- installation/
- installation.txt
- usage/
- usage.md
- configuration/
- settings/
- settings.md
For the 'sw' locale:
sw/
- introduction.md
- getting-started/
- installation/
- installation.txt
- usage/
- usage.md
- configuration/
- settings/
- settings.md
The content-localizer CLI tool is released under the MIT License.
FAQs
A CLI tool for translating files contents at a specific folder path.
We found that content-localizer demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.