Lara Cli automates translation of your i18n files with a single command, preserving structure and formatting while integrating with a professional translation API. Given a source language, it translates your content to selected target languages based on your source i18n files.
Supports multiple file formats including JSON, PO (gettext), TypeScript, Vue I18n single-file components, Markdown and MDX files, and Android XML string resource files. See Supported Formats for details.
- Installation
- Setting Up Your Project
- Local Development Setup
- Technology Stack
- Supported Locales
- Documentation
- Node.js v18 or higher
The easiest way to get started is to install Lara CLI globally via npm:
npm install -g @translated/lara-cliOnce installed, you can use it from any directory:
# Get help with available commands
lara-cli --help
# Initialize a new Lara project
lara-cli init --help
# Translate your localization files
lara-cli translate --helpCreate a .env file (or add the following lines to an existing .env) in the project where you want to run translations.
💡 Tip: If you don't have API keys yet, visit Lara's API key documentation.
LARA_ACCESS_KEY_ID=<YOUR_ACCESS_KEY_ID>
LARA_ACCESS_KEY_SECRET=<YOUR_ACCESS_KEY_SECRET>Replace the placeholders with your actual credentials.
🔑 Need to update credentials? If your API keys expire or need updating, run
lara-cli init --reset-credentialsto safely update them in your.envfile.
In your project directory, run:
lara-cli initThis will start the interactive initialization process.
The CLI will automatically detect your localization directories and target locales from your existing project files, then guide you through a few questions. These will be used to generate the configuration file: lara.yaml.
Key features:
- 🔍 Auto-detection: Scans your project for existing locale files and automatically suggests target locales
- 📊 Smart display: For enterprise projects with many locales, uses formatted tables for better readability
- ⚙️ Flexible configuration: Choose detected locales or manually add/remove as needed
- 🎯 Project instructions: Optionally provide instructions to improve translation quality (e.g., tone, style, terminology)
Providing project instructions (optional but recommended):
During initialization, you can provide instructions to help improve translation quality. Instructions guide the translation service on tone, style, and terminology. This is especially useful for:
- Tone requirements (formal, casual, professional, friendly)
- Domain-specific terminology (medical, legal, technical, etc.)
- Style preferences (concise, creative, detailed)
Providing glossaries (optional but recommended):
Lara's glossary system lets you define exactly how specific terms should be translated, across any text or document. Whether you work with technical terms, product names, or recurring brand phrases, glossaries are your best tool to ensure consistency and precision.
💡 Tip: For more information about glossaries, visit Lara's Glossary documentation.
To translate your files into the target locales, run:
lara-cli translateThat's it – you're ready to go!
📖 Documentation: For detailed information about commands, see Init Command and Translate Command.
If you want to contribute to Lara CLI or run it from source, follow these steps.
- Node.js v18 or higher
- pnpm v8 or higher
- Clone the repository
git clone https://github.com/translated/lara-cli.git- Navigate to the cloned repository
cd lara-cli- Install dependencies and build
Note: This project uses pnpm. If you don't have it installed, run:
npm install -g pnpm. Verify the installation withpnpm -vbefore proceeding with the following commands.
pnpm install
pnpm run build- Setup pnpm global bin directory (first time only)
pnpm setupThis command configures your shell to add the pnpm global bin directory to your PATH. After running it, you'll see output similar to:
Appended new lines to /Users/<username>/.zshrc
Next configuration changes were made:
export PNPM_HOME="/Users/<username>/Library/pnpm"
case ":$PATH:" in
*":$PNPM_HOME:"*) ;;
*) export PATH="$PNPM_HOME:$PATH" ;;
esacAdd these lines to your shell profile (.zshrc, .bashrc, etc.) or restart your terminal to apply the changes. This ensures you can run globally installed pnpm packages.
- Link globally
pnpm link --globalNote: If you experience an error like
ERR_PNPM_NO_GLOBAL_BIN_DIR, you may need to manually copy and paste the lines added bypnpm setupinto your shell profile. After doing so, restart your terminal or source your profile file, and you should be able to proceed.
After running this command, the project will be successfully linked to the pnpm global library. You should see a response similar to:
/Users/username/Library/pnpm/global/5:
+ lara-cli version <- ../../../../Projects/translated/lara-cli- Development Complete - Use anywhere
Now that Lara CLI is linked globally, you can use it from any directory on your system:
# Get help with available commands
lara-cli --help
# Initialize a new Lara project
lara-cli init --help
# Translate your localization files
lara-cli translate --helpNote: After making changes to the source code, run pnpm run build to update the global command.
Lara CLI is built with modern technologies to ensure reliability, performance, and maintainability:
- TypeScript - For type safety and developer experience
- Commander.js - For CLI argument parsing and command structure
- Zod - For robust schema validation
- Inquirer.js - For interactive command-line user interfaces
- Lara Translation API - For high-quality, context-aware translations
The codebase follows a modular architecture with clear separation of concerns, making it easy to extend and maintain.
Lara CLI supports translations using different locale codes, following two main standards:
See the full list of supported locales.
For detailed documentation on using Lara CLI:
- Init Command - Initialize your project
- Translate Command - Translate your files
- Memory Command - List available Translation Memories
- Glossary Command - List available Glossaries
- Configuration Overview - Configuration system overview
- Supported Formats - Supported file formats (JSON, PO, etc.)
- Locales Configuration - Configure source and target languages
- Files Configuration - Configure file paths and patterns
- Instructions - Configure translation instructions
- Translation Memories - Configure Translation Memories
- Glossaries - Configure Glossaries
- TS Files Guide - Complete guide for TypeScript files
- PO Files Guide - Complete guide for gettext PO files
- Vue Files Guide - Complete guide for Vue I18n single-file components
- Markdown Files Guide - Complete guide for Markdown and MDX files
- Android XML Files Guide - Complete guide for Android XML string resource files