OMG this gem is interesting to a fan of many languages like me. i'm looking forward to reading it / gem update process took me a long time right now (need to update 88 gems)
---------- Forwarded message ---------- From: Sharon Rosner <[EMAIL PROTECTED]> Date: 14 Jan 2008 04:28 Subject: ANN: Babel 0.1.1 Released To: ruby-talk ML <[EMAIL PROTECTED]> Babel 0.1.1 has just been released. Babel is a tiny library for translating between languages using Google's automatic language translation. More information about Google's automatic translation can be found here: http://www.google.com/intl/en/help/faq_translation.html === Installation sudo gem install babel === Usage Babel.translate("hello", :en, :fr) #=> "Bonjour" You can also translate a text into multiple languages by supplying multiple destination languages: Babel.translate("hello", :en, :fr, :it) #=> ["Bonjour", "Ciao"] There's also a shorthand version using String#translate: "your socks are sexy".translate(:en, :de) #=> "Ihre Socken sind sexy" === Supported languages For a list of supported languages please visit the Google translation FAQ: http://www.google.com/intl/en/help/faq_translation.html#langpairs === More info Babel RDOC: http://babel.rubyforge.org/ Babel source code: http://babel.rubyforge.org/svn/trunk/ -- r9 = { name: Rie!, ym: riyari3, skype: rubyninja, li: http://linkedin.com/in/ariekeren, fb: http://profile.to/ariekeren, blog: http://tinyurl.com/2bjgvn }

