Help
Elixir app internationalization and localization
Elixir leverages the Erlang VM, known for running low-latency, distributed and fault-tolerant systems, while also being successfully used in web development, and the embedded software domain.
- Created by
- José Valim
- Released
- September 8, 2014
- Links
-
https://elixir-lang.org
Wikipedia
🔗Elixir applications are usually translated using
🔗Best way to localize Elixir apps
The first step is to extract the text to translate into language files. This process is called internationalization. The puppetlabs/clj-i18n library can be used to extract the text to translate into Gettext PO files.
Once you have internationalized your Elixir app, use a translation software localization tool such as WebTranslateIt to manage your localization workflow.
It is easy to translate a Elixir app with WebTranslateIt. Create a project, upload your source language file in the File Manager and translate it on the Translation Interface.
The tools included in WebTranslateIt, such as Batch Operations, the Translation Memory or Machine Translation can help you translate that file automatically, faster and cost effectively.
🔗Links of interest
- WebTranslateIt’s CLI to help sync language files.
- elixir-gettext/gettext i18n library to support Gettext .po files in Elixir
- orisons/y18n i18n librarty to support YAML files in Elixir