Languine supports iOS Localizable.strings files, the standard localization format for iOS applications. This format handles basic key-value string pairs and supports comments for providing context to translators.
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": { "ios": { "include": ["[locale].lproj/Localizable.strings"] } } }
With your config set, run:
npx languine@latest translate
When you run this command, Languine will: