Back to browse
Messagevisor – Git-based internationalization and l10n management

Messagevisor – Git-based internationalization and l10n management

by fahad19·Jun 9, 2026·1 point·0 comments

AI Analysis

●●SolidSolve My ProblemShip It

Git-native i18n with segment overrides for A/B testing, competing with Lokalise.

Strengths
  • CLI-first workflow with lint, test, and build commands in CI.
  • Segment overrides enable audience targeting without separate translation files.
  • Tiny ~5kB SDK with ICU syntax support built in.
Weaknesses
  • Crowded i18n space with established players like Lokalise and Transifex.
  • iOS and Android SDKs still in development, not yet available.
Target Audience

Development teams managing internationalization

Similar To

Lokalise · Transifex · Phrase

Post Description

hi folks,

sharing my latest open source project here. I built it because I wanted to fly at the speed of LLMs shipping out UI + translations at the same time, while still having a sense of structure and review process when humans need to get involved more closely.

highly summarized list of what it does:

- define messages (ui copy, strings) as definitions (YAML, JSON, TOML, etc)

- define locales that messages are supposed to translate against (with hierarchical inheritance)

- everything CLI based

- generate targeted datafiles (JSON files) that can be served from a CDN

- fetch those JSON files and consume with SDKs

- allowing custom overrides for copy variants (think audience targeting, and a/b tests)

- full ICU syntax support

because it's all in a repo as structured definitions, letting AI agents loose on it for translations (paired up with the skills) works like a charm.

early release, and will be focusing on getting the l10n side of things very solid, before expanding to cover iOS and Android SDKs.

(this is a continuation of building a previous similar tool called Featurevisor: https://featurevisor.com/)

GitHub: https://github.com/messagevisor/messagevisor

Similar Projects