right to left - Where should my brackets be in relation to the text for Arabic languages? -
our application automatically modifies layout of arabic text when followed bracket , wondering whether correct behaviour or not?
the application shows items in following format:
[id of structure](version)
so version 1.5 of english structure "stackoverflow" displayed as:
stackoverflow(1.5)
note: brackets need displayed. there no space between id , first bracket. brackets encompass version. brackets have been character it's far late switch different character now!
this works fine left right languages, arabic languages structures appear in form:
ستاكوفيرفلوو(1.0)
i not arabic speaker , need know if correct. arabic format equivalent of english format or has gone horribly wrong?
the text in arabic should shown like:
ستاكوفيرفلوو(1.0)
i added html entity of rlm / right-to-left mark ‏
in order fix text. should if application doesn't support bidi native-ly. can add rlm these ways:
html entity (decimal) ‏ html entity (hex) ‏ html entity (named) ‏ how type in microsoft windows alt +200f utf-8 (hex) 0xe2 0x80 0x8f (e2808f) utf-8 (binary) 11100010:10000000:10001111 utf-16 (hex) 0x200f (200f) utf-16 (decimal) 8,207 utf-32 (hex) 0x0000200f (200f) utf-32 (decimal) 8,207 c/c++/java source code "\u200f" python source code u"\u200f"
(note: stackoverflow right transliteration ستاك-أوفرفلو)
Comments
Post a Comment