0
votes
1answer
108 views

Arabic Language works in Window 7 but in Windows XP reversed again- WinForms

I have an application in c# that is multi lingual. Now the second language is arabic. Problem: In resource file i added the string as say: Hello. It is displayed as Hello in XP While ...
0
votes
2answers
47 views

Pitfalls when performing internationalization / localization with numbers?

When developing an application that will need to work with a variety of localizations, particularly with "right to left" text, is there a possibility of a case where numbers would need to be converted ...
1
vote
5answers
346 views

CSS reverse a whole website (mirror effect)

I am building a multi-lingual website. Some languages (like Hebrew) read from right-to-left. Besides the actual text, those users are used to having navigation and other visual clues reversed. For ...
0
votes
1answer
204 views

RTL with SetProcessDefaultLayout API?

I'm having a problem implementing the obscure mirroring API SetProcessDefaultLayout in VB6.0. The problem is that it should be declared as: Private Declare Function SetProcessDefaultLayout Lib ...
2
votes
2answers
1k views

use text-align smartly (if english dir=ltr if arabic dir=rtl)

I have a community web site and I want that users write English posts with direction LTR / text-align: left) and Arabic posts with direction RTL / text-align: right. E.g. Google+ and twitter ...
0
votes
0answers
88 views

Arabic text (RTL) in Silverlight datagrid alignment forced by prepended char?

Using a DevExpress Silverlight datagrid, I've found that if I prepend the following to a string: Convert.ToChar(Int32.Parse("05", System.Globalization.NumberStyles.HexNumber)) the string is ...
2
votes
1answer
135 views

MonoTouch.Dialog: Arabic Elements

Is there a way to have the text in a StyledStringElement be RTL so that Arabic and Farsi and Hebrew can render correctly? I create an StyledStringElement: var eBahai = new StyledStringElement ...
0
votes
1answer
162 views

FlowDirection.RightToLeft messes strings up

Switching to RightToLeft (by altering MainWindow.FlowDirection) changes strings which have a round (closing) paranthesis at the end by placing it as an opening paranthesis at the start. Is something ...
3
votes
3answers
2k views

html direction by language? (if english dir=ltr if arabic dir=rtl)

Can I do that? I mean if, for example, the contents of the <div> is Hebrew or Arabic, float the <div> right and give it a dir="rtl" attribute. And, if the contents of the <div> is ...
4
votes
1answer
565 views

Is there any way to detect an RTL language in Java?

I need to be able to detect whether the current language my user is viewing is an RTL (Right To Left) language like Arabic. At the moment I'm just detecting this based on the language code from the ...
10
votes
2answers
141 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 ٠١٢٣ ...