Hola Juan Manuel,

I don't have a public project I can point you at but I can share my current 
strategy:

1. I use https://github.com/kawasima/tower-cljs and save all my strings in a 
data structure called `i18n`.
2. I wrap the library with a function like this one:

(defn l
  "Wrapper around tower's t adding the configuration map"
  [language & args]
  (apply t language i18n args))

3. And then I call `l` with the desired language in the om component I'm using.

Currently English is hardcoded, but a good next step would be to follow Colin's 
advice and put it as part of the cursor. A refcursor might be a good fit as 
well.

Hope this helps

Sebastian



-- 
Note that posts from new members are moderated - please be patient with your 
first post.
--- 
You received this message because you are subscribed to the Google Groups 
"ClojureScript" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/clojurescript.

Reply via email to