In my Rails 3 application, users may write messages in forum. I would like to identify what the language is for a given message. I'm interested in English, Russian, and Hebrew languages. Is there any built-in library in Ruby/Rails for such a task? If not, any ideas will be appreciated.

link|improve this question

feedback

5 Answers

up vote 2 down vote accepted

Use this: https://github.com/nashby/wtf_lang

"ruby is so awesome!".lang # => "en"
"ruby is so awesome!".full_lang # => "ENGLISH"
link|improve this answer
Thanks! Do you know if there is something similar that can translate one language to other and uses Google translator ? – Misha Moroshko May 8 '11 at 12:50
You are welcome! Check this out - github.com/jimmycuadra/to_lang – nash May 8 '11 at 14:00
Great, Thanks a lot! – Misha Moroshko May 9 '11 at 11:34
feedback

You can use the api provided by google to guess it with google translate.

See here for documentation : http://code.google.com/apis/language/translate/v1/using_rest_langdetect.html

link|improve this answer
There is no "Using Ruby" section there :( – Misha Moroshko May 5 '11 at 13:01
2  
Oh, in that case you'll have to use Java... Sorry, couldn't resist :). It has a JSON interface. You can generate and parse JSON easily with Ruby. – Matt May 5 '11 at 15:10
In fact, there are just examples, you have to anyway parse the JSON in every language. In ruby, you can use this : developer.yahoo.com/ruby/ruby-json.html – Hartator May 5 '11 at 15:41
feedback

Since you're concerned with languages with different character sets you could dig up the character codes that are predominantly in your strings. You could then see if they fall into the code sets that represent hebrew / cryllic characters.

link|improve this answer
feedback

Take a look at this blog
http://blog.kenweiner.com/2008/04/server-side-language-detection-with.html
This may be helpful

link|improve this answer
feedback

Perhaps you could look at the whatlanguage gem?

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.