Clojure app internationalization and localization
Clojure is a functional, dynamic, general-purpose programming language. It provides built-in concurrency support via software transactional memory and asynchronous agents, and offers a rich set of immutable, persistent data structures. Clojure runs on JVM, JavaScript VMs, and Common Language Runtime.
- Created by
- Rich Hickey
- Released
- October 16, 2007
- Links
-
https://clojure.org
Wikipedia
🔗Clojure applications are usually translated using
🔗Best way to localize Clojure 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 Clojure app, use a translation software localization tool such as WebTranslateIt to manage your localization workflow.
It is easy to translate a Clojure 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.
- puppetlabs/clj-i18n i18n library to support Gettext .po files in Clojure
- ptaoussanis/tower i18n & L10n library for Clojure/Script