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?

link|improve this question
feedback

3 Answers

The easiest way is to replace all your localized strings with a function calls like:

(i18n lang "help")

And implement that function to read localized string from a .properties file determined by lang parameter.

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 def into a map named loaded-property-files where, lang is the key and the value is a map of message keys and appropriate localized messages.

This can be done like this:

(defn load-property-files [langs]
  (let [default (into {} (read-properties "locale.properties"))]
      (apply merge 
       (for [lang langs] 
        (assoc {} lang
         (merge default 
          (into {} (read-properties (str "locale_" lang ".properties")))))))))

(def loaded-property-files 
      (load-property-files ["en" "es" "de"]))

using function read-properties from clojure.contrib.properties.

The localization string from default file would be used whenever that key isn't found in the specified map, i.e. new string that has just been added, and no one translated it in Spanish yet, would be shown in language from default locale.properties

Then your i18n function looks like this:

(defn i18n [lang code]
  ((loaded-property-files lang) code))
link|improve this answer
3  
It might be reasonable to reuse the existing JVM resource bundle infrastructure inside this function. It ain't pretty, but at least it defines mechanisms for well-known naming schemes and how to find bundles with a series of fallback choices so you can degrade gracefully and reduce overlap. – Alex Miller Dec 21 '10 at 21:24
@Alex: I agree, but I'm not very familiar with direct use of built-in bundle support. Most of the time I either used a framework to do it or parsed the text file myself, like here. – Goran Jovic Dec 24 '10 at 17:25
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.

link|improve this answer
feedback

kotarak's j18n (note that there is another j18n library for Java but they are different ones) seems good.

https://bitbucket.org/kotarak/j18n

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.