An interface to the gettext internationalization/translation interface.
Within Julia, run Pkg.update()
and then Pkg.add("Gettext")
A simple string can be translated as follows:
using Gettext
bindtextdomain("sample", "po/")
textdomain("sample")
println(_"Hello, world!")
In fact, such a sample program can be run from the toplevel directory of this repository as follows:
$ LANGUAGE=fr julia helloworld.jl
Bonjour le monde !
For string interpolation, you will need to use a runtime method (e.g. Formatting.jl) rather than Julia's built-in compile-time interpolation syntax. If using Formatting.jl, it probably makes sense to use the "Python" formatting style, as it allows the translations to have different argument orders than the original strings. For example,
using Gettext
using Formatting
bindtextdomain("sample", "po/")
textdomain("sample")
daystr(n) = format(ngettext("{1} day", "{1} days", n), n)
println(daystr(1))
println(daystr(3))
When run, this gives
$ LANGUAGE=fr julia daystr.jl
1 jour
3 jours
Currently this library relies on Python's built-in gettext.py implementation via PyCall. In the future, it may make sense to port this code into a Julia-native version (see issue #1).