Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

6 Answers

up vote 4 down vote accepted

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

"ruby is so awesome!".lang # => "en"
"ruby is so awesome!".full_lang # => "ENGLISH"
share|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

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

share|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

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.

share|improve this answer

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

share|improve this answer

Perhaps you could look at the whatlanguage gem?

share|improve this answer

Just a quick demo of WhatLanguage for anyone interested : http://www.youtube.com/watch?v=lNqZ2cqOReo&list=UUJ_3fstMOH-g4yBxtvgAWkw&index=0&feature=plcp

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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