I'm trying to figure out how to create a Compojure-based web-site with multilingual support. Is there any solutions like i18n or something like that?
|
feedback
|
|
The easiest way is to replace all your localized strings with a function calls like:
And implement that function to read localized string from a For that you don't need any libraries. It's a simple function. To avoid reading files all the time you could read them in memory during your applications start with a This can be done like this:
using function The localization string from Then your
| |||||||
feedback
|
|
I created clji18n for this, but I had to switch to other project before completing it. It's "almost" usable, you can give it a try. | |||
|
feedback
|
|
kotarak's j18n (note that there is another j18n library for Java but they are different ones) seems good. | |||
|
feedback
|