Languine supports CSV (Comma-Separated Values) files for simple translation management. This format is ideal for spreadsheet-based workflows and easy integration with external translation tools.
First, make sure you've got a languine.json config file in your project root. Here's an example:
{ "locale": { "source": "en", "targets": ["sv", "de", "fr"] }, "files": { "csv": { "include": ["translations/[locale].csv"] } } }
With your config set, run:
npx languine@latest translate
When you run this command, Languine will: