[Ann] Tempura, a Clj+Cljs i18n translations lib with support for React

2016-10-25 Thread Peter Taoussanis
Hi folks! So this is the 1st of 4 libs I’ve been meaning to publish for forever. Available at: https://github.com/ptaoussanis/tempura Other libs (as usual) at: https://www.taoensso.com/clojure Enjoy, cheers! :-) \- Peter Taoussanis, [@ptaoussanis](https://twitter.com/ptaoussanis) -- You recei

ANN: Tongue, DYI i18n library for Clojure/Script

2016-07-20 Thread Nikita Prokopov
Tongue is a do-it-yourself i18n library for Clojure and ClojureScript. Tongue is very simple yet capable: - Dictionaries are just Clojure maps. - Translations are either strings, template strings or arbitrary functions. - No additional build steps, no runtime resource loading. - It comes with no

Re: Quick library status updates (logging, Redis, i18n, etc.)

2013-12-05 Thread Peter Taoussanis
Have had some folks ask about the Carmine appender performance I quoted - the 50k/sec figure is conservative if we're talking about server hardware. If you're not logging awfully large arguments (large state maps, etc.) - you'll basically see standard [unpipelined] Redis write performance for y

Re: Quick library status updates (logging, Redis, i18n, etc.)

2013-12-04 Thread Peter Taoussanis
Hi Colin, Timbre looks quite cool but just a bit surprised to see it using spit. > Surely thats not particularly performant or is there something I'm missing? > Spit does alright in a lot of cases (certainly for prototyping, etc.). The example appenders are there mostly to show how appenders are

Re: Quick library status updates (logging, Redis, i18n, etc.)

2013-12-04 Thread coltnz
types are now covered. > > https://github.com/ptaoussanis/nippy > https://github.com/ptaoussanis/nippy/blob/master/CHANGELOG.md > http://ptaoussanis.github.io/nippy/ - API docs > > > *Tower v2.0.1 - 2013-11-06* > = > Internationalisation (i18n) and lo

Re: Quick library status updates (logging, Redis, i18n, etc.)

2013-12-04 Thread Peter Taoussanis
Thanks Baishampayan, Karsten - appreciate it! -- -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be patient with your first post. T

Re: Quick library status updates (logging, Redis, i18n, etc.)

2013-12-04 Thread Karsten Schmidt
ast as it's >> going to get. >> * LZMA2 very-high-compression compressor (ahem). >> * New Java Serializable fallback support. Basically serializes anything >> you can throw at it - will select the best available method. Notably >> Throwables of all types are now

Re: Quick library status updates (logging, Redis, i18n, etc.)

2013-12-04 Thread Baishampayan Ghose
s are now covered. > > https://github.com/ptaoussanis/nippy > https://github.com/ptaoussanis/nippy/blob/master/CHANGELOG.md > http://ptaoussanis.github.io/nippy/ - API docs > > > *Tower v2.0.1 - 2013-11-06* > = > Internationalisation (i18n) and localisation (L10n)

Quick library status updates (logging, Redis, i18n, etc.)

2013-12-04 Thread Peter Taoussanis
can throw at it - will select the best available method. Notably Throwables of all types are now covered. https://github.com/ptaoussanis/nippy https://github.com/ptaoussanis/nippy/blob/master/CHANGELOG.md http://ptaoussanis.github.io/nippy/ - API docs *Tower v2.0.1 - 2013-11-06* ====

Re: [ANN] Library updates (Redis & DynamoDB clients, logging+profiling, i18n+L10n, serialization, A/B testing)

2013-06-04 Thread Peter Taoussanis
Have had one or two people ask me about this - all libraries are under the EPL v1.0 , the same license as Clojure itself. Cheers! - Peter -- -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this

[ANN] Library updates (Redis & DynamoDB clients, logging+profiling, i18n+L10n, serialization, A/B testing)

2013-06-03 Thread Peter Taoussanis
g library (GitHub<https://github.com/ptaoussanis/touchstone> ) Current version: *1.0.0* - MAJOR RELEASE Clojure dependency: 1.4+ Recent changes: inherited test-config support, marked API as stable. *Tower* - i18n & L10n library (GitHub <https://github.com/ptaoussanis/tower> ) Current ver

Re: I18n

2013-05-26 Thread Peter Taoussanis
Since this thread seems to come up from time to time, just adding a quick pointer to Tower: https://github.com/ptaoussanis/tower This gives (among other things) a translation tool using standard Clojure maps for content, Markdown support, translation fallbacks, Ring localization middleware, and

Re: I18n

2013-05-25 Thread Rob Jens
source code, either in properties files or using a text > template system such as stringtemplate.org > > -SS > > > On Aug 28, 1:16 am, ngocdaothanh wrote: > > Hi all, > > > > Is there an i18n library for Clojure? What Java i18n library should I > >

Re: [ANN] Tower, simple i18n library for Clojure

2013-01-05 Thread Scott Thoman
On Saturday, January 5, 2013 3:12:43 PM UTC-5, Peter Taoussanis wrote: > > >> I will update and give the code a try. Thanks for the fast turnaround! >> > > No problem. > > >> As far as your first and last questions, they both sort of came from the >> same scenario I was pondering. I was thi

Re: [ANN] Tower, simple i18n library for Clojure

2013-01-05 Thread Peter Taoussanis
> I will update and give the code a try. Thanks for the fast turnaround! > No problem. > As far as your first and last questions, they both sort of came from the > same scenario I was pondering. I was thinking about an application made > with many small dependencies and maybe several of

Re: [ANN] Tower, simple i18n library for Clojure

2013-01-04 Thread Scott Thoman
On Friday, January 4, 2013 3:37:49 AM UTC-5, Peter Taoussanis wrote: > > Just pushed 1.2.0 with `merge-config!` and dictionary merging (rather than > resetting) on dev-mode changes. I will update and give the code a try. Thanks for the fast turnaround! As far as your first and last questions

Re: [ANN] Tower, simple i18n library for Clojure

2013-01-04 Thread Peter Taoussanis
Just pushed 1.2.0 with `merge-config!` and dictionary merging (rather than resetting) on dev-mode changes. -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members

Re: [ANN] Tower, simple i18n library for Clojure

2013-01-04 Thread Peter Taoussanis
Hi Scott, Happy to hear you're enjoying the library! 1. It seems useful to have the possibility for multiple > libraries/namespaces to manage their own i18n complete with unique > configurations (tower/config). I'm not in this situation right now but it > seems li

Re: [ANN] Tower, simple i18n library for Clojure

2013-01-03 Thread Scott Thoman
On Thursday, June 14, 2012 8:23:43 AM UTC-4, Peter Taoussanis wrote: > > Hi all, > > Just put up an early release of a little i18n library that some of you > might find useful. > > It's on Github (https://github.com/ptaoussanis/tower) and Clojars ( > https://clo

[ANN] Tower, simple i18n library for Clojure

2012-06-14 Thread Peter Taoussanis
Hi all, Just put up an early release of a little i18n library that some of you might find useful. It's on Github (https://github.com/ptaoussanis/tower) and Clojars ( https://clojars.org/tower). Features (taken from the readme): * Consistent, lightweight wrappers for standard Java localiz

Re: I18n

2009-08-28 Thread Stuart Sierra
My recommendation would be to keep your localized strings separate from your source code, either in properties files or using a text template system such as stringtemplate.org -SS On Aug 28, 1:16 am, ngocdaothanh wrote: > Hi all, > > Is there an i18n library for Clojure? What

Re: I18n

2009-08-28 Thread cody koeninger
On Aug 28, 12:16 am, ngocdaothanh wrote: > Hi all, > > Is there an i18n library for Clojure? What Java i18n library should I > use in a Clojure program (it suits Clojure syntax for example)? For > Ruby and Erlang I prefer Gettext, but for Java it seems > that .properties file

I18n

2009-08-27 Thread ngocdaothanh
Hi all, Is there an i18n library for Clojure? What Java i18n library should I use in a Clojure program (it suits Clojure syntax for example)? For Ruby and Erlang I prefer Gettext, but for Java it seems that .properties files are in major use. Thanks, Ngoc