Tagged Questions
The transliteration tag has no wiki summary.
8
votes
3answers
581 views
Python and character normalization
Hello
I retrieve text based utf8 data from a foreign source which contains special chars such as u"ıöüç" while I want to normalize them to English such as "ıöüç" -> "iouc" . What would be the best way ...
7
votes
4answers
1k views
Slugify and Character Transliteration in C#
I'm trying to translate the following slugify method from PHP to C#:
http://snipplr.com/view/22741/slugify-a-string-in-php/
Edit: For the sake of convenience, here the code from above:
/**
* ...
6
votes
3answers
1k views
How to transliterate accented characters into plain ASCII characters?
What is the most efficient way to remove accents from a string e.g. ÈâuÑ becomes Eaun?
Is there a simple, built in way that I'm missing or a regular expression?
5
votes
2answers
146 views
Efficient data structure/algorithm for transliteration based word lookup
I'm looking for a efficient data structure/algorithm for storing and searching transliteration based word lookup (like google do: http://www.google.com/transliterate/ but I'm not trying to use google ...
5
votes
2answers
553 views
Hindi text to english transliteration for C#
I am searching for a c# code that can be used to get Hindi text to English transliteration.
Also tell me if there is any api available for c#.
4
votes
3answers
4k views
PHP Transliteration
Are there any solutions that will convert all foreign characters to A-z equivalents? I have searched extensively on Google and could not find a solution or even a list of characters and equivalents. ...
3
votes
2answers
472 views
persian transliteration java api
I need transliterate ENglish to Persian and I want to use it in offline mode , is there any free api that I use offline ?
3
votes
4answers
634 views
Is there any free opensource PHP translit lib?
so I have lots of users posting articles with names in different languages. I need some lib to translate thouse article names to english letters for example turn russian 'р' into eng 'r' and so on for ...
3
votes
2answers
153 views
Can I use the y operator to do a non-one-to-one transliteration in Perl?
The y operator in Perl does character-by-character transliteration. For example, if we do y/abc/dfg to the string "foobar", we get "foofdr". But what if I want to transliterate "ā" to "ei" and "ä" to ...
2
votes
3answers
292 views
Cyrillic transliteration in PHP
How to transliterate cyrillic characters into latin letters?
E.g. Главная страница -> Glavnaja stranica
This Transliteration PHP Extension would do this very well, but I can't install it on my ...
2
votes
1answer
465 views
Transliteration with Iconv in Ruby
When I'm trying to transliterate cyrillic utf-8 string with
Iconv.iconv('ascii//ignore//translit', 'utf-8', string).to_s
(see questions/1726404/transliteration-in-ruby)
I'm getting everything but ...
2
votes
1answer
157 views
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 ...
2
votes
5answers
414 views
Python - to check if a char is in dictionary and if not to deal with it
I am going about transliteration from one source language(input file) to a target language(target file) so I am checking for equivalent mappings in a dictionary in my source code, certain characters ...
2
votes
4answers
2k views
How to transliterate Cyrillic to Latin text
I have a method which turns any Latin text (e.g. English, French, German, Polish) into its slug form,
e.g. "Alpha Bravo Charlie" => "alpha-bravo-charlie"
But it can't work for Cyrillic text (e.g. ...
2
votes
2answers
747 views
Transliteration in ruby
What is the simplest way for transliteration of non English characters in ruby. That is conversion such as:
translit "Gévry"
#=> "Gevry"
2
votes
5answers
3k views
UTF-8 to ASCII using ICU Library
I have a std::string with UTF-8 characters in it.
I want to convert the string to its closest equivalent with ASCII characters.
For example:
Łódź => Lodz
Assunção => Assuncao
Schloß => Schloss
...
1
vote
0answers
101 views
Emacs codepage problems: Terminus font, utf-8 and cyrillic-translit input
I love the cyrillic-translit input method for Emacs. However, after I set the wonderful Terminus as my default font, the Russian characters appear in Arial or something (in any case it's not ...
1
vote
2answers
147 views
Transliteration on Unicode LATIN LETTERS “WITH STROKE”
Feeding the rule "NFD; [:Nonspacing Mark:] Remove; NFC" into the ICU Transliterator demo, the character Ø (\u00d8 == LATIN CAPITAL LETTER O WITH STROKE) remains as-is (i.e. the STROKE is not ...
1
vote
1answer
170 views
ICU custom transliteration
I am looking to utilize the ICU library for transliteration, but I would like to provide a custom transliteration file for a set of specific custom transliterations, to be incorporated into the ICU ...
1
vote
2answers
249 views
Google Transliteration in Rich Text Editor
I need to use Google Transliteration along with rich-text editing support.
The Google Transliteration API docs recommend the rich text-editor offered by Closure library or Yahoo! UI Library.
But, I ...
1
vote
3answers
234 views
replace special characters by its phoenetic similar character (in php - utf8)
you know that there are many characters like è or é. There are many more, like ö,ä,ì,á,ù,...
i want to replace those characters with its "phoenetic partner"-character, but i don't want to do it for ...
1
vote
2answers
398 views
icu4j cyrillic to latin
I'm trying to get cyrillic words to be in latin so I can have them in urls. I use icu4j transliterator, but it still gives weird characters like this: Vilʹândimaa. It should be more like viljandimaa. ...
1
vote
0answers
69 views
What's the limit of google transliteration?
I've used google transliteration API experimentally. It's working fine and I've noticed that it allows only five words at a time. Is there any method to send more words? and is there any daily limit? ...
1
vote
3answers
164 views
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);
...
1
vote
0answers
187 views
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 ...
1
vote
2answers
186 views
Transliteration from Ethiopic (and others) to ASCII (ሀ -> ha; ü -> ue)
I am not yet so good with reading Amharic (Geez / Ethiopic) letters.
If I have a text in Ge'ez (Ethiopia) letters ( http://en.wikipedia.org/wiki/Ge%27ez_language ) I want to transliterate them to ...
1
vote
1answer
886 views
iconv utf-8 to ascii transliteration in mod_php/apache2
I need to compare strings and match names to one another even if they are not spelled the same way.
For example DÉSIRÉ-Smith should match Desireesmith as well as Desiree or Desi'ree Smith
So i had ...
1
vote
3answers
179 views
Perl's tr/// is not doing what I want
EDIT: tr/// does not support variable interpolation, so I went with s/\Q$_\E//g; instead
Or, more likely, I'm not doing something right...
I have the following code:
#!/usr/bin/perl
use strict;
...
1
vote
1answer
388 views
Google AJAX Transliteration API: Is it possible to make all input fields in the page transliteratable?
I've used "Google AJAX Transliteration API" and it's going well with me.
http://code.google.com/apis/ajaxlanguage/documentation/referenceTransliteration.html
Currently I've a project that I need all ...
1
vote
1answer
183 views
pear php translit gives error
hi i'm working on a multilanguage project and. and i'm having some problemsi with iconv's //TRANSLIT. so i found this package. i succesfuly installed that package to my linux box but when i tried to ...
0
votes
0answers
291 views
Google transliterate API problem in Firefox
I am trying to use Google Transliterate API helloWorld in Firefox 4.0.1 and WindowsXP
I am using node.js 0.4.7 to serve the page
When I load the page through node.js, i get the following error: ...
0
votes
0answers
34 views
font not displaying in google transliteration
i am using google transliteration to type regional language. in one machine by default it works, in my home system it shows rectangles. i dont remember anywhere installing fonts. how to troubleshoot ?
...
0
votes
1answer
153 views
Latin<->Han Conversion in ICU?
I am just getting started implementing ICU transforms using ICU4C in a C++ program. I am particularly looking at transliteration to and from Chinese.
According to this document, the package ...
0
votes
1answer
215 views
stuck in the for c# loop!
i have two xml files which have devanagri to itrans mapping, these files are dev.xml
and gujarati.xml. The xml file contents are as follows:
for guj.xml it is:
<mapping>
...
0
votes
1answer
384 views
Google Transliteration API: How to take the input & save the output in a text file?
Greetings All;
I need to use google translitrate api in a java application.
What I have done till now is to import the sample in the library "gwt-language-1.1.0" that called "hellolanguage" in the ...
0
votes
1answer
928 views
How to use Google transliteration API in my java web application?
How to use Google Transliteration API in my Java application.
If i give a String (either in English or Arabic) as input, the Google Transliterator API then it should translate it into the ...
0
votes
4answers
812 views
Python - codec encoding ascii to unicode: error
:) I am trying to go about the process of reversing transliteration of an input file(currently in english) back to its original form(in hindi)
A sample or a part of the input file looks like this:
...
0
votes
4answers
925 views
Problem in returning values from javascript function to flex
In the attached flex code, I am trying to call a javascript function in its HTML wrapper.
The example is also live at :
http://www.cse.epicenterlabs.com/mbm/ajax_api.html
The problem I am facing is, ...
0
votes
3answers
983 views
Using google transliteration in Flex
Attached code is an example of how to use Google transliteration
feature in certain html textboxes. I need to enable the same
transliteration feature for a flex application. Is there a way
I could ...
-1
votes
2answers
782 views
Search for Transliteration tables
So If your native language is not EN_US or you know any other spoken language just fine you can esely contribute!)
The Arabic Alphabet and Its Transliteration
The Bulgarian Alphabet and Its ...
-5
votes
1answer
105 views
How to Convert English To Gujarati in C#.Net Window Based Applicaiton [closed]
I want to make C# .Net application which can convert English to Gujarati
Is there a way to have a text box that accepts a name in English and then automatically converts it to Gujarati like this
...