Questions tagged [indic]

Indic scripts are the writing systems that are used by languages spoken by about two billion people in India and its neighboring countries, as well is Southeast Asian countries such as Thailand, Burma, Laos, Cambodia and Indonesia. These scripts developed from the ancient Brahmic script and share similar features, which make them challenging for use in computers: many ligatures, complex letter ordering rules and partial support in common operating systems.

66 questions
1
vote
2 answers

Javascript / jQuery replace last word in input box in tamil language?

I need to replace last word from input value Im using this code, Get_value =$(input).val(); new_word= "new word"; function ReplaceLastWord(Get_value, new_word) { return Get_value.replace(/\w*$/,…
Dhamu
  • 1,694
  • 5
  • 22
  • 47
0
votes
1 answer

Increase charset="utf-8" Font size in php/mysql site

Please see www.favoritebd.com. Here you can see two language (1) Bangla and (2) English. So to enable Bangla Language I used.. header('Content-Type: text/html; charset=utf-8'); Issue is Bangla font size, it's smaller than English fonts. So is there…
Shibbir Ahmed
  • 77
  • 1
  • 2
  • 11
0
votes
1 answer

Inltk setup "ImportError: cannot import name 'Iterable' from 'collections' (C:\Program Files\Python311\Lib\collections\__init__.py)"

While using iNltk package i ran into this error ImportError: cannot import name 'Iterable' from 'collections' (C:\Program Files\Python311\Lib\collections\__init__.py) I was trying to setup the hindi language from inltk.inltk import…
0
votes
0 answers

How to correctly print Indic (Telugu) text in QB64 on Windows 64-bit?

QB64phoenix edition on windows 64 bit is unable to correctly print indic (telugu) . No problem printing telugu text in notepad, mspaint and Libre Office . Is text shaping handled by QB64 or Windows ? how to know ? QB64 3.7 has _uprintstring with an…
ccsiva
  • 1
0
votes
0 answers

Phonetic support for indian language in English

I am working on developing phonetic support for search, where the users typically type indian language text in English to search for a relevant result. I am not able to find the phonetic rules for generating this phonetics. I can use the Norvig…
Aks
  • 183
  • 2
  • 11
0
votes
0 answers

Javascript includes behavior for non ASCII text based on browser (Mozilla Vs Chrome)

I am writing a simple app where text comes in, certain words are to be replaced and the text is sent out again. It all works well as long as I am working with ASCII characters. I now want to do the same for Indic text. I was initially using…
ACBlue
  • 71
  • 1
  • 7
0
votes
1 answer

custom Indic keyboard transliteration : how to

Here's the thing. You type and gets printed. where is a character in English keyboard, is a character in (Odia) Indic language. -> A-> ଅ kh->ଖ jif -> ଜୀ bharq -> ଭାରତ ahmerika-> ଆମେରିକା prhqhibif ->…
amrut
  • 64
  • 8
0
votes
1 answer

Transliterate sentence written in 2 different scripts to a single script

I am able to convert an Hindi script written in English back to Hindi import codecs,string from indic_transliteration import sanscript from indic_transliteration.sanscript import SchemeMap, SCHEMES, transliterate def is_hindi(character): …
0
votes
1 answer

Can anyone suggest the best transliteration library to Marathi from English or Marathi written in English?

I tried using indic-transliteration library but it doesnt work with marathi and the only other possible option I found was google translate API which has a lot of time lag. I tried using this but my output is different with a "B" import…
0
votes
0 answers

Php preg_replace substitute not working as expected using Devanagar Unicode string

I want to replace Devanagari Unicode characters of specific sequence. $re = '/(कर(?![ािीुूृॄॅेैॉोौ्ऱ्]))/m'; $str = 'समर साकाकरुन भरुन करमरकर'; $subst = '****'; $result = preg_replace($re, $subst, $str); echo "The result of the substitution is…
Silkograph
  • 85
  • 2
  • 12
0
votes
1 answer

A Flutter TextField and Google Indic Keyboard related problem

I am new to Flutter and am building an app that supports Malayalam language. I test the TextField Malayalam entry using Google Indic Keyboard. The TextField is set to take textInputAction as newline. While the action works fine in English, the…
suranju
  • 25
  • 7
0
votes
0 answers

Removing the dotted circle from Indic vowel signs

In windows 10, combining NSBP with Bengali vowel signs to remove the dotted circle doesn't seem to work. I tried with different fonts and even with Devanagari vowel signs. But none of them could omit the dotted circle. It works for android though.…
0
votes
1 answer

I want to convert decimal numbers from western arabic (0,1,2,3,4,5,6) to eastern arabic(٠, ١, ٢, ٣))

Is there any way available in python that I can convert decimal numbers (99.3) to (٩ ٩ .٣ ) I can convert the simple integers to eastern Arabic but the issue is with decimal. devanagari_nums = ('۰', '۱', '۲', '۳', '۴', '۵', '۶', '۷', '۸',…
Zaman Afzal
  • 2,009
  • 17
  • 23
0
votes
0 answers

Separating vowels and consonants in indic/abugida scripts using python

I am trying to build a programme that will help me convert unicode abugida script into a list of vowels and consonants. I have achieved separation of phonetic sounds using the following script taken from Playing around with Devanagari…
Echchama Nayak
  • 971
  • 3
  • 23
  • 44
0
votes
1 answer

How can I use whole android project inside a new android project

I have source code of indic-keyboard, and I want to use functionality of this project in my app, I have tried converting indic-project into a library, but that seems tough, so I am looking for some other workaround for this thing. What can/have I…
Manjeet Singh
  • 4,382
  • 4
  • 26
  • 39