transliteration

Emacs transliteration?

Is there some way to get transliteration to work in Emacs, sort of like it does in Gmail now? I am particularly interested in getting it to work in Cyrillic. For reference, Gmail does something like the following: I can type svoboda and it will output свобода. This allows somebody like me who speaks Russian but cannot type to easily inp...

google transliteration api is throwing exception on use with gwt

I'm trying to use the google transliteration api with gwt but it is throwing an exception on runtime and the exception is: '$wnd.google.language' is null or not an object I'm using the following piece of code in the 'onClick' handler in the entrypoint class. Transliteration.transliterate(charList, LanguageCode.ENGLISH, LanguageCode.HIN...

How can I replace aeiou with bfjpv in Perl?

I want to replace aeiou with bfjpv in user inputted string. Here is the code which is not working :- print "Enter any String :"; while(($string = <>) ne "\n"){ @arr = split(//,$string); for($i = 0 ; $i < $#arr ; $i++){ $char = $arr[$i]; if($char eq 'a' || $char eq 'e' || $char eq 'i' || $char eq 'o' || $char e...