Tagged Questions

The Arabic tag is for issues relating to displaying user interfaces in Arabic language.

learn more… | top users | synonyms

14
votes
5answers
1k views

set JFrame Orientation from right to left!

To align my JFrame from righ-to-left, I use: setComponentOrientation(ComponentOrientation.RIGHT_TO_LEFT); but this works only if I use the following style (decoration) of the JFrame: public class ...
13
votes
1answer
143 views

why are arabic numbers (١٢٣) not accepted in textboxes as real numbers?

while developing one of my sites, i noticed that if I enter arabic numbers (١٢٣), they are not interpreted as real number values. Then, I tested a few other sites only to find that they also don't ...
10
votes
2answers
101 views

Disable digit substitution

How can I disable the digit substitution (for example for Hindi numerals instead of Arabic ones) for my application (native c++) completely? I want all the numbers displayed with 0123 instead of ٠١٢٣ ...
9
votes
2answers
215 views

Inserting HTML tag in the middle of Arabic word breaks word connection (cursive)

From wikipedia: Cursive (from Latin curro, currere, cucurri, cursum, to run, hasten) is any style of handwriting that is designed for writing notes and letters quickly by hand. In the Arabic, ...
9
votes
4answers
742 views

CharInSet doesn't work with non English letters?

I have updated an application from Delphi 2007 to Delphi 2010, everything went fine, except one statement that compiled fine but not working which is: If Edit1.Text[1] in ['S','س'] then ...
8
votes
1answer
408 views

How to create a regex for parsing Arabic Dates

I'm working on a program that is running a series of regexs to attempt to find a date within the DOM from a webpage. For example, in www.engadget.com/2010/07/19/windows-phone-7-in-depth-preview/, I ...
7
votes
3answers
709 views

Text align problem when using Arabic font

The screenshot below displays my problem. The first EditText shows a hint in Arabic which is shifted upwards, now the second EditText is just for reference which shows the English version completely ...
7
votes
3answers
1k views

Where exactly in the Android OS is text renderred?

Let me first state what I am trying to achieve: To create a patch for the Android OS to enable it to display Arabic/Hebrew correctly. Both of these languages are Right-to-Left (RTL) and their script ...
6
votes
2answers
229 views

searchDisplayController does not display results if the iphone language is non English

I have a searchDisplayController which works perfectly when searching for English and Arabic words using a method as follows: - (void)filterContentForSearchText:(NSString*)searchText ...
6
votes
1answer
116 views

Arabic Characters in URL

I have created a website using DNN. The site has arabic characters in URL after the domain name. For example: http://www.example.com/اسعارالعملات.aspx. My questions are: Is this URL read by non ...
6
votes
2answers
716 views

How important is mirroring the _entire_ user interface for Arabic speakers?

I've been researching about adding Arabic localisation into our software. I understand that mirroring of some controls is essential, such as the relationship of labels and textboxes: any labels that ...
5
votes
4answers
416 views

String concatenation containing Arabic and Western characters

I'm trying to concatenate several strings containing both arabic and western characters (mixed in the same string). The problem is that the result is a String that is, most likely, semantically ...
5
votes
2answers
2k views

What is Alef Hamza? [closed]

I found this one, in the Find box (as Search criteria) of the document viewer. What is supposed to match?
5
votes
2answers
313 views

I18n and calendars - Can the calendar system remain as the Gregorian Calendar?

This is a follow up question (and possibly should have been asked before it) to this question: Subclasses of java.util.Calendar. I'm internationalising a large Java app that uses dates fairly ...
4
votes
3answers
709 views

How to support Arabic text in Android?

I am getting Arabic text from server successfully. Retrieved text I want display in code but its showing boxes instead of Arabic text. Assume that t array values are Arabic text from server. string[] ...
4
votes
1answer
147 views

Python Arabic NLP

I'm in the process of assessing the capabilities of the NLTK in processing Arabic text in a research to analyze and extract sentiments. Question is as follows: Is the NTLK capable of handling and ...
4
votes
1answer
371 views

Creating custom JFileChooser

To create an Arabic JFileChooser (RTL) I use the following: MyFileChooser: import javax.swing.JOptionPane; import javax.swing.UIManager; import javax.swing.JFileChooser; import ...
4
votes
3answers
427 views

Android Translating To Arabic

I am working with an Arabic translator who is translating my strings.xml from english to arabic. I realize that only Honeycomb or Cyanogen roms will support arabic rendering, but that is ok. Our ...
4
votes
1answer
316 views

Xcode .strings File does not seem to support Arabic Text

I created an app that I envisioned being localizable. So, I created a .strings resource file to keep my menu and alert message text, etc. When the time came for me to say: "MyStringKey" = "السلم" ...
4
votes
3answers
553 views

Open-source OCR library for Arabic

I was looking around for an OCR library - optimally it would be open-source - that I could use on some Arabic pdfs. Googling it didn't result in anything useful. I was wondering if anyone knows a ...
4
votes
2answers
452 views

Postgresql full text search in postgresql - japanese, chinese, arabic

I'm designing a fulltext search function in postgresql for my current project. It works ok with ispell/myspell dictionaries so far. Now I need to add support for chinese, japanese and arabic search. ...
4
votes
6answers
645 views

How to make a text file have more than one encoding?

I have a file which is ANSI encoded. However it shows Arabic letters inside it. this text file was generated by some program (I have no info on) but it seems like there is some kind of internal ...
4
votes
6answers
3k views

How to handle right to left languages in Flash (pre version 10)?

We are currently working with Flex creating a web application. We are having trouble taking Arabic text from the user and displaying correctly (like in a chat feature). While presumably Flash 10 will ...
3
votes
1answer
66 views

Parse Arabic XML in Android

I need to parse an XML. The problem is that the XML is in Arabic. eg: <?xml version="1.0"?> <ROWSET> <ROW> <شهر>1</شهر> <فصل>20111</فصل> ...
3
votes
1answer
79 views

Using Eclipse with Arabic and English on the same line

I just noticed as I was doing a string compare in Eclipse that when I place an Arabic character in a line it completely throws off Eclipse. How can I interchange English and Arabic on a single line ...
3
votes
1answer
83 views

write arabic to image error

i watch the previous question about my question but my problem was if i want to write احمد in image apper د م ح ا i fix it and now write like ا ح م د using this function function arab($word){ ...
3
votes
2answers
193 views

How to Join Arabic letters to form words

I have to read arabic letters from xml file and display them as a word input :س ع ا د ة output :سعادة look like that .. I dont know how do that in any language , what algorithm to read, I need some ...
3
votes
3answers
411 views

How I can solve my PHP web page file language encoding?

I have a problem in Language Encoding in PHP as my php file should display both English and Arabic Characters. Some web page parts are static and others are dynamic (data comes from a Sybase ...
3
votes
1answer
296 views

Matching two or three words after Different Arabic Regex Patterns in Java

Greetings All; I am a beginner in using regex. What I want to do is to extract 2 or 3 arabic words after a certain pattern. for example: If I have an arabic string inputtext = "تكريم الدكتور احمد ...
3
votes
2answers
168 views

How do I define a libpcre regexp for arabic charachters?

I need to define a PCRE regexp for certain spam-ish words in Arabic/Persian alphabet to be used in drupal spam module. The problem is that the usual PCRE regexp is apparently unable to find patters in ...
3
votes
2answers
2k views

Java BufferedReader arabic text file problem

Problem: Arabic words in my text files read by java show as series of question marks : ?????? Here is the code: File[] fileList = mainFolder.listFiles(); BufferedReader bufferReader ...
3
votes
1answer
765 views

How can i Match arabic letters using regexp in php

How can i Match arabic letters with regexp in php My Code $name = $_GET("name"); if (arabic letters only and spaces) // using regexp
3
votes
2answers
500 views

Regular Expression for arabic numbers

I have this form that has a validation JQuery function, I have a problem with the telephone field, all I want is for the users to enter numbers only ... Its working great on the English form, but on ...
3
votes
1answer
489 views

How to render a standalone Unicode character (Arabic) as it would look if it was being rendered within a word?

In written Arabic, characters look differently depending on where they stand in a word. For example, the letter ta might look like this: ـثـ inside a word but look like this: ﺙ if it stands by itself. ...
3
votes
1answer
259 views

How do I write Arabic in Perl source files?

I need to write Arabic words as labels inside a .pm file. It is not working for me. I tried ASCII letters and they worked. Is there a better way to do so? I tried something like: <span dir="rtl" ...
3
votes
1answer
1k views

custom arabic font in ios

Dears, I 'm a novice in iphone programming. I am trying to make an iphone App that displays mainly Arabic language content. I want to use a custom arabic font for displaying that content, not the ...
3
votes
1answer
290 views

Right to left language support in php

I am developing a site where people will put their comments, in arabic. my website is built in php. does any body know a way how to add right-to- left language support to write text in english?
3
votes
3answers
600 views

Lucene 2.2 arabic analyzer

Is it possible to modify Lucene 2.2 to add Arabic analyzer and if anyone have done this already where can I get source/jar
3
votes
1answer
2k views

How to insert arabic characters into sql database?

How can I insert arabic characters into sql database? I tried to insert arabic data into a table and the arabic characters in the insert script were inserted as '??????' in the table. I tried to ...
3
votes
1answer
199 views

what localization changes are needed for Arabic with Java Applet

How big task is it to implement support for Arabic localization, our Java 1.5 Applet was designed as fully localizable (european languages) but now we plan to add also arabic as a new language. We ...
3
votes
3answers
4k views

Why is Java BufferedReader() not reading Arabic and Chinese characters correctly?

I'm trying to read a file which contain English & Arabic characters on each line and another file which contains English & Chinese characters on each line. However the characters of the Arabic ...
3
votes
3answers
928 views

Multilanguage UTF-8 website with Arabic

I will be coding a website that will have Arabic as a supported language. With UTF8 unicode I believe I can cover Arabic alphabet. I've also read that it reads right to left so I guess I should align ...
3
votes
5answers
474 views

In Unicode, why are there two representations for the Arabic digits?

I was reading the specification of Unicode @ Wikipedia link text and I see that each of the Arabic digits has 2 Unicode codepoints. For example 1 is defined as U+0661 and as U+06F1 Which one should I ...
3
votes
5answers
2k views

Convert from English Digits to Arabic ones in html page

I need to convert all English numbers that appear in a given HTML page to Arabic ones (to be independent from the user browser encoding). I prefer to use javascript or it will be great if this can be ...
3
votes
2answers
749 views

Delphi 2009: Search skipping diacritics in unicode utf-8

I am having utf-8 encoded file containing arabic text and I have to search it. My problem are diacritics, how to search skipping them? Like if you load that text in Internet Explorer (converting ...
3
votes
3answers
1k views

writing arabic text in opengl

I want to write arabic text in my opengl program using freetype 2 how I can do it any one can send me asource code or show me the way or even any modification on nehe lesson 43 to write arabic in ...
2
votes
2answers
39 views

Javascript code to detect arabic translation and choose arabic stylesheet

I'm working on a website with country maps see here: http://defenddefenders.huritech.org/ The challenge is in that it has an arabic translation option, and this when chosen seriously distorts my css ...
2
votes
3answers
62 views

Detect Non-English KeyPress in VB.NET

When a user types into a VB.Net textbox, I want to detect the key press (assuming I cannot read the text from the textbox after its written). This is easy for English (by using e.KeyChar or Keys.[A, ...
2
votes
2answers
75 views

How to convert Arabic text to Hex using PHP

Kindly I need to convert the Arabic text to and from Hexadecimal like the following example Using PHP مرحبا 06450631062D06280627 Regards, Eco
2
votes
3answers
95 views

what is the principle of displaying different languages(Arabic and English) together?

Such as this sentence: عفواً يبدو أن النظام لا يستطيع تحديد أنك من عملاء STC أم لا، فإذا كنت عميل STC الرجاء الضغط على زر "إعادة المحاولة"، وإذا لم تكن من عملاء STC الرجاء الضغط على زر " لست عميل ...

1 2 3 4 5 7