Questions tagged [bidi]

Bidi is short for "bi-directional" and means text containing text in both text directionalities, both right-to-left (RTL) and left-to-right (LTR). It generally involves text containing different types of alphabets, but may also refer to boustrophedon, which is changing text directionality in each row. See also the tag `right-to-left`

See also:

Wikipedia: https://en.wikipedia.org/wiki/Bi-directional_text

189 questions
0
votes
0 answers

Read Visual-ordered RTL Text File

I have to read some csv text files into a C# program. The files have hebrew text in them stored in visual ordering. ie: שלום 123 is stored as: םולש 123 what is the best way to flip the hebrew to logical ordering, In php i could use the…
bsagal
  • 591
  • 1
  • 4
  • 10
0
votes
1 answer

Xcode LTR and RTL text mixed from database

I had the same problem when I tried implementing the same scenario in a Android studio app here Android studio question and answer Now I have the same issue in Xcode, I'm using data from a database and displaying it in a textview, whenever a list…
FDupie
  • 59
  • 12
0
votes
1 answer

Unicode BIDI (UBA): R RLI R; Why should RLI stay on level 0

implementing isolater logic for the BIDI got me stuck again. Given the following test case. @Levels: 1 0 1 @Reorder: 0 1 2 R RLI R ; 2 # LTR flag \____/ \_/ (my run sequences) Here is my current understanding: After processing rules X1-X8 you…
butterbrot
  • 980
  • 6
  • 10
0
votes
1 answer

Unicode BIDI (UBA): Test = RLE ES LRE -> Difficulties following the specs

This is quite a specific bidi algorithm question, I am hoping someone out there can help my understanding of the algorithm. I am having a hard time with the the following test from the BidiTest-10.0.0d5.txt @Levels x, 1, x @Reorder 1 RLE ES LRE;…
butterbrot
  • 980
  • 6
  • 10
0
votes
0 answers

RLO unicode character not working for windows1255

Is there another character like \u202e that results in the same functionality - a right to left override that is supported in windows1255 as well? I've used \u202e so far but now, when sending a text to a system encoded with windows1255 the text…
user5326354
0
votes
1 answer

TListView scrolling bug when using VCL Styles - Delphi XE8

I've tried to set TListView control's direction to RTL by following function: procedure RTL_LV(lv:TListView); const LVM_FIRST = $1000; LVM_GETHEADER = LVM_FIRST + 31; var header: THandle; begin header:= SendMessage (lv.Handle, LVM_GETHEADER,…
smartiz
  • 151
  • 7
0
votes
1 answer

Direction rtl/lrt in safari

I wrote a webpage and its direction is rtl (right to left). Here is my tag : I need 2 parts of the webpage to be written ltr (left to write), so I added dir attribute for this div
It works on Google…
user5303752
0
votes
1 answer

How to save text direction default in web sites?

I wonder if there a way to save text direction default- right to left (RTL) or vise versa (left to right-LTR) in different web pages. So when i open specific web site the text direction will be automatically LTR or RTL. I use google chrome so i…
newGIS
  • 598
  • 3
  • 10
  • 26
0
votes
1 answer

What are the differences in for RTL bidi (Arabic/Hebrew) support in different versions of Android?

I am looking at supporting RTL in Android and trying to figure out how much effort it would take to support multiple Android OS versions. I know that 4.2 started limited bidirectional (bidi) support. And I know before that, bidi support was much…
gidgets
  • 1
  • 1
0
votes
2 answers

Delphi Canvas Textout with RightToLeft BidiMode

I want to print Right-to-left Unicode strings on a Canvas. I can't find a BidiMode property or something like that to get it done. currently the symbols which are located at the end of strings, appear before the first character of the text which is…
VafaK
  • 514
  • 1
  • 6
  • 22
0
votes
1 answer

WPF is not support bid unicode?

I have a WPF application. I want to display Hebrew sentence that involved numbers and words. I read about Unicode bidi and write little code for that as following: const string PDF = "\u202C"; const string LRO = "\u202D"; const string RLO =…
David Michaeli
  • 367
  • 5
  • 26
0
votes
1 answer

CSS direction:rtl and top to bottom?

I'm using the following CSS to read a text from right to left: .rtl { unicode-bidi:bidi-override;direction:rtl;width:300px;} .tfel οt thgir mοrf daer si txet sihT It's part of an experimental site that would display all…
bidouillages
  • 20
  • 1
  • 7
0
votes
1 answer

Thaana font on mobile web browsers

I'm working with fonts for a small language called Dhivehi (Maldivian). The alphabet is called "Thaana". There are a number of Unicode fonts available for it (such as Microsoft's MV Boli). It is written right-to-left. While it appears perfectly on…
arkate
  • 501
  • 8
  • 23
0
votes
2 answers

hypothetical: how would you implement bidirectional language support in Sublime text editor, and what features would you like it to have?

Maybe this question is too open-ended and someone will kill it --- however: I am building systems (web apps and native) requiring multiple language support, including rtl languages like Arabic and Hebrew. Currently I have no need to be able to…
Wylie Kulik
  • 696
  • 5
  • 17
0
votes
2 answers

CKEDITOR bidi buttons disabled

When adding the bidi plugin to the ckeditor I manage to add the rtl and trl buttons on the toolbar but they are disabled. Does anyone know how to enable them? Thank you!
Nomz
  • 151
  • 1
  • 2
  • 13
1 2 3
12
13