The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
34 views

Ruby character transliteration

What's the current best way to transliterate characters to 7-bit ASCII in Ruby? Most of questions I've seen on SO are 3 or 4 years old and the solutions don't fully work. I want a method that will ...
0
votes
0answers
8 views

Search .net library using transliteration

I need search in Russian or English text using .NET C# but I want to search entities with titlies on English by query that contains only Russian characters. Example: I want to find entity with title ...
0
votes
2answers
24 views

Transliteration and fuzzy search, like Google suggestions

I need to do a fuzzy search with transliteration of the characters, for example: I have an ASP.NET application, database, which has a table with a list of Spanish words (200,000 entries), I also have ...
-3
votes
0answers
22 views

how to generate permutation of list of strings from List<String> [closed]

I have a list of Strings eg: {"blue", "sky", "Nepal", "home"} and its nepali transliterated list {"Nilo", "Aakash", "Nepal", "ghar"}. What I want is to generate combination like:" {"Blue", "Aakash", ...
1
vote
1answer
20 views

Where can I find a list of IDs or rules for the PHP transliterator (Intl)?

Transliterator::listIDs() will list IDs, but apparently it's not a complete list. In the example from this page, the ID looks like: Any-Latin; NFD; [:Nonspacing Mark:] Remove; NFC; [:Punctuation:] ...
0
votes
1answer
53 views

Transliteration in Android Using GoogleAPI

Need Help..! I am working on Android Transliteration and I'm getting following 3 errors in my code. 1)GoogleAPI cannot be resolved 2)Translate cannot be resolved 3)Language cannot be resolved I ...
0
votes
0answers
226 views

Marathi/Hindi Devnagari Transliteration in Unicode using asp.net web

Enter Unicode Marathi,hindi text using System keyboard thr’ aspnet web application. I am developing aspnet web application. I used AspNet textbox. And below the textbox I used two radio buttons ...
1
vote
0answers
154 views

Translation/Transliteration problems

I am working on a translation/transliteration program, that reads an english story, and translates it to elvish, using an english/elvish dictionary. After the code shown below, i explain the error ...
0
votes
0answers
103 views

Using JavaScript/Jquery Virtual keyboard but Ajax AutoCompleteExtender's ServiceMethod won't execute

I am developing a web application. I used Ajax’s Auto complete Extender control for nearest matching functionality. And I implemented Unicode Hindi/Marathi virtual keyboard using JavaScript and ...
0
votes
4answers
114 views

C++ Copying from an array to a an array

I have tried alot of suggestion solutions to this problem with no success. I have a const char array, of length 1000, called english_line which containing words seperated by whitespace. This array is ...
-1
votes
1answer
51 views

Transliteration issue [closed]

La> ila>ha illAlla>hu wah}dahu> la> shari>ka lahu, lahul mulku wa lahul h}amdu, wa huwa ‘ala> kulli shai’in nadir. This is transliteration of ayah. The font used is Times New Arabic . After applying ...
0
votes
1answer
59 views

Rails I18n transliteration rules configuration

So, I wanted to pre-load the transliteration rules for many locales I have. I've included the following code in one of my initializers files (app/config/initializers/locales.rb): ...
1
vote
0answers
55 views

Transliteration from Cyrillic to Latin ICU4j java

I need to do something rather simple but without hash mapping hard coding. I have a String s and it is in Cyrillic I need some sort of example on how to turn it into Latin characters using a custom ...
0
votes
2answers
123 views

Can some one explain how transliteration works?

I am new to programming, and I am trying to understand transliteration - like the Google Input Tools that will allow the user to type from one language to another language. How does transliteration ...
0
votes
1answer
32 views

dyve autocomplete transliteration

I am using dyve autocomplete jquery plugin.The plugin works really well, but when i try to do some transliteration the plugin doesn't work. Some details: *The results from the database are always in ...
0
votes
1answer
253 views

Convert special character to simple character in XML node value and save as XML file

This is my code: <?php $dom = new DOMDocument(); $dom->load('http://services.gisgraphy.com/geoloc/search?lat=22.298569900000000000&lng=70.794301799999970000&radius=7000', true); ...
0
votes
1answer
43 views

Should I transliterate for localizing profile information / website content

I want to implement localization in my website, which is in JSP. How should I localize the content that is stored in table? Should I store data in different languages itself in table If yes how ...
0
votes
0answers
115 views

PHP iconv method produces question marks on linux server

I'm using the following PHP code to perform character conversion: setlocale(LC_ALL, 'en_US.utf8'); $result = @iconv('UTF-8', 'ASCII//TRANSLIT', $input); When running on my local machine, the ...
0
votes
1answer
72 views

Transliteration Script — Strange Errors [closed]

This HTML script transliterates every word, phrase or letter entered into it. Essentially, it is an unofficial translator. When testing the code using jsFiddle, I'm presented with the following ...
0
votes
2answers
462 views

Converting Unicode characters into the equivalent ASCII ones

I need to "flatten out" a number of Unicode strings for the purposes of indexing and searching. For example, I need to convert GötheФ€ into ASCII. The last two characters have no close representations ...
1
vote
3answers
219 views

Ruby 1.9.x replace sets of characters with specific cleaned up characters in a string

I'm looking for a way to do the following PHP code in Ruby in a succinct and efficient manner: $normalizeChars = array('Š'=>'S', 'š'=>'s', 'Ð'=>'Dj','Ž'=>'Z', 'ž'=>'z', 'À'=>'A', ...
1
vote
1answer
542 views

use string.translate in Python to transliterate Cyrillic?

I'm getting UnicodeEncodeError: 'ascii' codec can't encode characters in position 0-51: ordinal not in range(128) exception trying to use string.maketrans in Python. I'm kinda discouraged with this ...
2
votes
2answers
219 views

php preg_grep and umlaut/accent

I have an array that consists of terms, some of them contain accented characters. I do a preg grep like this $data= array('Napoléon','Café'); $result = preg_grep('~' . $input . '~i', $data); So if ...
0
votes
1answer
72 views

How to add native language support in website for different mobile operators?

It is already very tough to show native language support (Hindi, Bengali, Urdu etc) in web browsers like Internet Explorer. But how do we give support in mobile browsers like opera mini, windows ...
4
votes
1answer
624 views

Transliterate any convertible utf8 char into ascii equivalent

Is there any good solution out there that does this transliteration in a good manner? I've tried using iconv(), but is very annoying and it does not behave as one might expect. Using //TRANSLIT ...
5
votes
1answer
179 views

Convert accented characters into ascii character

What is the optimal way to to remove German (or French) accents from a vector of 16 million string variables. e.g., 'Sjögren's syndrome' into 'Sjogren's syndrome' Converstion of single character ...
0
votes
2answers
178 views

Word Segmentation using ICU

I am using ICU4C to transliterate CJK. I am wondering whether it is possible to have word segmentation in ICU, to split Chinese text into a sequence of words, defined according to some word ...
0
votes
1answer
159 views

Transliterate CJK to Latin — preferably in C++ [closed]

I am trying to write a program that can transliterate CJK to Latin (i.e Pinyin, Romaji, etc.). For example you give a Chinese, Japanese or Korean document as input and then you get the transliterated ...
0
votes
1answer
78 views

Why isn't transliteration from Urdu to Latin working properly in icu4c?

I'm trying to convert this line of Urdu to Latin, and then converting the Latin characters to ASCII (by removing the accents, etc) but it seems to be missing some characters. Why are there non latin ...
0
votes
0answers
41 views

how to correct conversion of space into box character when we use trasliteration? [closed]

I have implemented Google Transliteration API in my website http://jateengadhiya.in/papers?pid=Oct3153. This stored data well in database. But when I am access it and display on webpage it put box ...
3
votes
1answer
152 views

how to detect if a mobile supports unicode of a particular language in J2ME

I am designing an application in J2me, where I just have to give interface in a Particular language, say Urdu. What I am doing is using Unicode characters to print labels, like "Welcome" into my ...
3
votes
1answer
224 views

Transliteration of Unicode in Java without using of Google Api?

Is there any solution from English unicode to Gujarati unicode? Suppose unicode for a = \u0061 then it will translate અ = u0095
0
votes
0answers
173 views

Transliteration javascript help from Russian to English

Could someone give me a hint how to modify a script? I have a javascript that converts text from a textarea into cyrillic. Yeap, it does instant transliteration. The script is ok but it converts from ...
1
vote
3answers
2k views

how to convert a hindi meanig written in english to Hindi or English using java

How to convert a hindi meanig written in english alphabet to Hindi using Java? eg. Input text is: anil NE lath marke apko Ganga me hi Fenk diya. in Hindi Output text is: अनिल ने लात मार्के ...
4
votes
2answers
681 views

What to use instead of Google Transliterate API

Since Google Transliterate API is deprecated, any idea what to use instead of it?
0
votes
4answers
1k views

transliterating cyrillic to latin with javascript function

I made this function: function transliterate(word){ var answer = ""; A = new Array(); ...
0
votes
0answers
112 views

Prevent unidentified character in ActiveSupport::Inflector.transliterate being replaced by ? (or the replacement character)

The documentation of ActiveSupport::Inflector.transliterate states: Replaces non-ASCII characters with an ASCII approximation, or if none exists, a replacement character which defaults to "?". I ...
-1
votes
1answer
70 views

Transliteration words match [closed]

I am making a transliteration in java, as we know there are different combinations of words in the language when written in Roman Script the same thing is with the language I am working on. For that a ...
1
vote
0answers
260 views

Transliteration for my language (Urdu) in Java [closed]

I want to design a java application (non commercial use) which can do the same as google transliteration done in different languages. I don't want to use the prepared API of google for some web etc. I ...
1
vote
3answers
339 views

Get user input in other than English language

I have installed fonts of Urdu on server... It is ok for the contents of the website... But there is a problem in getting a user input... it displays English when type in the textbox... So, how will ...
4
votes
5answers
655 views

How do you map-replace characters in Javascript similar to the 'tr' function in Perl?

I've been trying to figure out how to map a set of characters in a string to another set similar to the tr function in Perl. I found this site that shows equivalent functions in JS and Perl, but ...
0
votes
4answers
336 views

Can I use Google Transliteration in Python? [closed]

I am aware that Google allows transliteration from English to several languages (www.google.com/transliterate). I have an English word-list. I would like to transliterate (not translate) every word ...
1
vote
1answer
454 views

Does .NET transliteration library exists?

Does .NET Transliteration library exists ? Note that this is not translation, something like this Perl lib : http://www.lingua-systems.com/transliteration/Lingua-Translit-Perl-module/ I just find : ...
7
votes
4answers
573 views

Romanization of Unicode text

I am looking for a way to transliterate Unicode letter characters from any language into accented Latin letters. The intent is to allow foreigners to gain insight into the pronunciation of names and ...
0
votes
1answer
83 views

AppleScript “translit” function

i trying to find a solution to write russian, but with latin characters (it works like translit.ru) My idea is to write an applescript where i can say -> selected text -> translit it Maybe it is the ...
0
votes
1answer
135 views

Any ruby gems to do (Chinese) Transliterate (Romanization), especially for URL?

Generally spoken, it takes Unicode text and tries to represent it in US-ASCII characters (universally displayable, unaccented characters) by attempting to transliterate the pronunciation ...
0
votes
3answers
476 views

Convert filenames to use only latin characters

I have a ton of filenames in Russian (and some Slovenian & Greek). To play them in my car the song titles must use only Western European characters. Is there a program that can do this file ...
1
vote
5answers
363 views

remove all non-ASCII from string

My question is general - I want to ask if there is any special modules in programming languages or a ready program which will allow me to accomplish my task. Is there any convenient way (other than ...
0
votes
1answer
380 views

Deserializing Google transliteration in C# using Newtonsoft.Json

As a beginner I tried to deserialize Google transliterator return array. It's a JSON array like this: [{"ew" : "namaste","hws" : ["नमस्ते","नमसते","नमास्ते",]},] pretty awesome! This is my c# ...
-3
votes
3answers
540 views

Processing Unicode characters in C++

I have a file that contains Unicode text in an unstated encoding. I want to scan through this file looking for any Arabic code points in the range U+0600 through U+06FF, and map each applicable ...

1 2