CI/CD Pipeline Translation
Automate localization as part of your build process. New or changed strings are detected, translated, and committed back — no manual intervention.
Best for: SaaS products with frequent releases, mobile apps, documentation sites.
:::note
Use the flixu-ci agent skill to generate these configs automatically: "Create a GitHub Action that translates my i18n files on push"
:::
CMS Content Localization
Translate CMS content on-demand when editors publish new pages or articles.
Pattern:
- Editor publishes content in your CMS (Contentful, Sanity, Strapi)
- Webhook triggers your translation service
POST /v1/translatetranslates the content- API writes translated content back to CMS in target locales
Best for: Marketing teams, documentation platforms, editorial workflows.
Mobile App Localization
Translate iOS .strings and Android XML resource files as part of your mobile CI.
Pattern:
- Developer adds strings to base locale file
- CI runs:
POST /v1/translate/documentwith the strings file - Translated files saved to
*.lproj/(iOS) orvalues-*/(Android) directories - App build includes all locale variants
Best for: iOS and Android apps shipping to multiple markets.
E-commerce Product Catalog
Translate product descriptions, categories, and metadata at scale using batch translation.
Pattern:
- Export product catalog as key-value JSON
POST /v1/translate/batchwith all product strings × target locales- Import translations back into your product database
Best for: Shopify, WooCommerce, custom e-commerce platforms.
Documentation & Knowledge Base
Translate entire markdown or HTML documentation sets while preserving structure and links.
Pattern:
- Source docs in
docs/en/ POST /v1/translate/documentfor each file- Output to
docs/de/,docs/fr/, etc. - Static site generator builds all locales
Best for: Developer docs (Mintlify, Docusaurus, GitBook), help centers, wikis.
Real-time Chat Translation
Translate user messages in real-time for multilingual support channels.
Pattern:
- User sends message in their language
POST /v1/translate(latency: ~800ms for short text)- Agent sees translated text
- Agent’s reply translated back to user’s language
Best for: Customer support, community platforms, live chat.