CLI Quickstart
Introductionโ
A powerful command-line interface for managing translations with Frenglish.ai. This CLI tool helps you manage your translation projects, configure settings, and generate translations for your localization files all in your terminal.
Featuresโ
- ๐ Secure authentication with Frenglish.ai
- ๐ฆ Project management (create new projects or use existing ones)
- ๐ Multi-language support
- ๐ Interactive directory navigation for file selection
- โ๏ธ Flexible configuration options
- ๐ Support for both full and incremental translations
- ๐งช Test mode with mock data support
- ๐พ Local configuration persistence. All your configuration and project changes will appear the same on Frenglish.ai
Installationโ
npm install -g @frenglish/cli
Usageโ
Basic Commandsโ
# Login to Frenglish.ai
frenglish login
# Translate files
frenglish translate
Translation Optionsโ
When running frenglish translate
, you can use the following options:
--apiKey <key> # Frenglish API key (or set via FRENGLISH_API_KEY)
--path <path> # Custom path for translation
--isFullTranslation # Perform a full translation (overwrites existing translations)
--partialConfig <json> # Partial config as JSON string or file path
Configurationโ
The CLI supports configuration through:
- Interactive prompts
- Local configuration file (
frenglish.config.json
) - Environment variables
- Command-line arguments
Environment Variables [OPTIONAL]โ
The reason this is optional is because if you don't change your .env file, we will create a frenglish.config.json in your root directory that will store all your configuration settings.
FRENGLISH_API_KEY=<your_api_key>
TRANSLATION_PATH=<path_to_source_files>
TRANSLATION_OUTPUT_PATH=<path_for_translated_files>
EXCLUDED_TRANSLATION_PATH=<json_array_of_excluded_paths>
Interactive Flowโ
When you run frenglish login
, you'll be guided through an interactive setup process [optional] or you may proceed with running Frenglish CLI commands on your own:
- Authentication: Opens your browser for secure login
- Project Selection: Choose to create a new project or use an existing one
- Configuration: Set up your translation preferences:
- Project name
- Origin language
- Target languages
- Translation paths
- Translation rules
- Translation: Option to start translation immediately
Directory Navigationโ
The CLI provides an intuitive directory navigation interface:
- Use arrow keys to navigate through directories
- Select directories to enter them
- Use "../" to go up one level
- Enter custom paths when needed
- Confirm your selection before proceeding
Command Examples if you do not want the interactive experienceโ
# Basic translation with default settings
frenglish translate
# Translation with custom path
frenglish translate --path ./src/locales
# Full translation with custom configuration
frenglish translate --isFullTranslation --partialConfig '{"targetLanguages":["fr","es"]}'
# Translation using a configuration file
frenglish translate --partialConfig "./config.json"
Local Configurationโ
The CLI saves your configuration in frenglish.config.json
in your project root. This includes:
- Project name
- Translation paths
- Language settings
- Translation rules
Supportโ
For more information, visit https://www.frenglish.ai