Right to Left (RTL) refers to the scripts of natural languages that are written and read from the right to the left instead from the left to the right, such as Hebrew and Arabic.

learn more… | top users | synonyms

2
votes
2answers
110 views

right-to-left (RTL) support in SASS project

I'm wondering if it's possible to make a mixin that handles multiple arguments as properties that should be converted to rtl. I want to do something like .css-selector { width: 300px; height: ...
1
vote
5answers
348 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 ...
1
vote
0answers
148 views

RTL issue in IE affecting whole page

I'm developing a website in hebrew, and everything is fine in Chrome and Firefox (as expected), but I have an issue with IE. When I place direction:RTL; unicode-bidi:embed; the whole page gets ...
2
votes
1answer
113 views

simulate TinyMCE RTL button click after toolbar is instantiated

Is there any way to change the directionality of a textarea that is connected to a TinyMCE toolbar, by directly using the same commands that are created in plugins? What I mean is, I want to ...
0
votes
1answer
179 views

Ext , Grid , scrolling after edit cell with RTL

I have a RTL webpage with a Ext.Net c# Grid control. I allow scrolling for the grid. This all works fine. After I change value of a cell in RTL "Ext grid" , scroll bar lose correct size.
0
votes
0answers
106 views

Writing right to left text with phpRTFLite Class

I use phpRTFLite for creating doc file with PHP, and haven't any problem with it. I want to convert right to left text (in Arabic language) to RTF with the class but I can't set the direction of text ...
1
vote
1answer
259 views

change html dir attribute using jquery

I want to change HTML dir attibute once the page loads,How can I do that. Do i need to use the .ready() function? Currently it looks like jQuery("html[lang=ar]").attr("dir", "rtl") ...
1
vote
2answers
509 views

handling LTR and RTL for Arabic Sites (internationalization) [closed]

I am creating a site in Wordpress,It is basically an english site but when user clicks on translate it translate it into Arabic.There is problem of ltr and rtl,How can I solve that.I am using ...
0
votes
2answers
473 views

Changing to right to left wordpress theme css

I have a wordpress theme containing style.css & rtl.css, beside other theme files. I want to change the theme to Right to Left for Arabic. What should I do? Use @import in style.css? Or replacing ...
0
votes
1answer
79 views

CodeMirror show 2 scroll

I want to use CodeMirror in my project. It's load but editor show 2 scroll, one in right by CodeMirror and one in left by css overflow-y: scroll. Is this problem because page direction or something ...
0
votes
0answers
130 views

PHP - detect text direction (ltr/rtl) from UA string or external service, is it possible?

I would like to detect not only the client language (which I already do using a combination of different methods, from UA string extraction to geolocation services) but I would also like to detect the ...
1
vote
1answer
137 views

RTL arabic support in flash xml as3

i have flash xml template i buy from activeden but i cant show the arabic text from right to left and after a lot of research i find that textfield do not support rtl correctly and i need to convert ...
7
votes
1answer
216 views

How to detect that text typed in text-area is RTL

I have a textarea in which the user can enter text in english (or any other left-to-right language) or in a language that is RTL. When the user writes in RTL, the user must press Right-shift + ctrl ...
3
votes
1answer
124 views

Correction RTL alignment in Android

I have rtl (same as arabic) sentence in textview the bracket "[" don't place in correct place and I have problem in number too In my content I have 1344 for year and in phone the number alignment ...
-1
votes
1answer
288 views

How To Display Breadcrumbs from Right to Left using JS?

How can I display a breadcrumbs navigation menu from right to left? e.g.: document.title «myPage «Home I am using the script below that displays left to right but I am unable to ...
-1
votes
2answers
73 views

Text displayed differently in HTML5

I am building an HTML5 app that works with iPhone and Android. When I display text in this form: "the number is between 10%-15% 2. the number between 25%-35% 3.the number between 25%-35%...." In ...
3
votes
2answers
245 views

How to draw the element part in right to left (RTL) direction when drawing with DrawThemeBackground?

I'm trying to draw the ttGlyphClosed element of Explorer::Treeview class in right to left direction (like when the BiDiMode would be bdLeftToRight). I have a problem, that I don't know how to make my ...
2
votes
0answers
321 views

RTL mode in IE makes field labels align incorrectly in ExtJS 3.3.0 Window Form

I am working with ExtJS 3.3.0 with an RTL fix, and I have an override on all of the required classes to align the fields correctly. I keep having an issue with floating forms, though, where my field ...
3
votes
2answers
346 views

Screen flickers when running on Android 4.2. (Activity gets restarted continuously)

Some users reported that my app screen sometimes flickers when running on Android 4.2 (only!) I tried on my device, and after putting logs, the activity is restarted and restarted again, about 3 ...
8
votes
1answer
169 views

Last Harka is showing before the first character of the line in Arabic Reshaper on Android

I am using this Amazing Arabic Reshaper for my app on Android, Every thing works fine, but there is a little problem with it that it always shows last Harka (Harki) before the first character of the ...
1
vote
2answers
207 views

Automatically align text in UILabel according to text language

I'm interested in setting some text into a UILabel, and depending on the directionality of the language (e.g., Hebrew - right-to-left [RTL], English - left-to-right [LTR]) set the alignment of the ...
2
votes
1answer
193 views

How do I persist TListView.Items (TListItems) in the external file (or TStream)?

It has something to do with TListItems.DefineProperties... Here is my writing attempt: Stream := TFileStream.Create('ListView.dat', fmCreate); Writer := TWriter.Create(Stream, 4096); ...
2
votes
1answer
93 views

can I get the text direction from the culture code?

If I have the culture code for a country/language combination, is it possible to from this, find the text direction. For example for en-US how can I get from this that the text direction is left to ...
2
votes
1answer
641 views

Reporting Services - aligning a right-to-left matrix

In a RS report I have a matrix whose LayoutDirection property is set to RTL (because it's in Hebrew). I created a column group by dragging a field form the dataset field list and dropping it in the ...
3
votes
2answers
401 views

Testing my HDL Code (Verilog/VHDL) without an FPGA?

I've written a module in Verilog using vi as my editor and now I want to test it. What are my options if I have no board? How can I give my module inputs? Where can I see the results? I have access to ...
1
vote
2answers
182 views

Best practices to minimize duplicate css with compass for rtl and ltr

Is there any way that compass/sass can assist in minimizing the amount of duplicate css code when making your layout work both for rtl and ltr languages?
2
votes
2answers
228 views

alt text appears backwards

I am using a right-to-left language with dir='rtl' on the body element. So the whole page flows as it should from right to left. For some reason alt text within images are displayed backwards. ...
0
votes
1answer
317 views

Float right and hover event on ul, li menu

I dont know why, when I add direction:"rtl" to body tag and float:"right" to my Main Menu Container the submenu items get invisible and on hover event submenu container appeared but whenever mouse ...
0
votes
2answers
330 views

Change Layout direction in Mono for Android

How can I change the layout direction from ltr to rtl ?
0
votes
1answer
267 views

Orchard - Contact Form rtl

I wonder how to convert "Contact Form - 0.9.4" module or "oForms - 1.8.1." or "Custom Forms" to right to left script?
5
votes
3answers
1k views

HTML5 page language, direction and encoding

What is the correct way of declaring a HTML5 page to be in Hebrew, RTL and utf-8 encoded? I haven't done it in a while, but I remember that in HTML4 it involved 3 or 4 tags and attributes that seemed ...
0
votes
0answers
119 views

How to use a style sheet with RTL text in TLFTextField?

Apparently, despite the Adobe Actionscript 3.0 documentation, Flash Pro CS5.5 supports the TLFTextField.styleSheet property. But here's the rub: If assign a stylesheet to a TLFTextField that is RTL, ...
0
votes
0answers
71 views

Retrieving TrueType outlines from glyph index returned by ScriptShape (Uniscribe)

I call ScriptShape to get the glyph indices, Now I want to get the TrueType outlines corresponding to these "glyph indices". I tried searching but could not find any information. Could somebody ...
1
vote
0answers
326 views

Setting right-to-left direction for Hebrew in an android app

I write an application in Hebrew but there is a problem with the direction of the words: This is the code: textView2.setText("יצרן: " + company + "\n"); textView2.append("דגם: " + degem + "\n"); ...
0
votes
0answers
105 views

Change the iphone screen layout to rtl for Arabic

I am a novice developer on the iOS platform. I have a sample app made in English. I also have the localisation files that display the Arabic strings when the user clicks on a button to change the ...
0
votes
0answers
98 views

JSTree with “RTL” returns “Resource Not Found Error”

I'm initlizing JSTree with a custom Theme URI. here is a sample of the theme section themes: { theme: "default", dots: true, icons: true, url: ...
0
votes
1answer
144 views

Creating an objective-C preprocessor directive that determines if the current language is RTL or LTR

I'm trying to build an Objective-C preprocessor directive, that will determine if the current user's preferred language is RTL or LTR - instead of checking it every time I want to display a ...
3
votes
1answer
107 views

Determining what text exists in an area of a JTextArea when the text is right to left

I have some code which tries to determine what text is within a given vertical slice of a text area where the vertical slice is specified as Y coordinates instead of lines. Converting to using line ...
1
vote
4answers
598 views

Parsing through Arabic / RTL text from left to right

Let's say I have a string in an RTL language such as Arabic with some English chucked in: string s = "Test:لطيفة;اليوم;a;b" Notice there are semicolons in the string. When I use the Split command ...
0
votes
0answers
264 views

TrueType RTL fonts doesn't work in jasperreport exported PDFs

I'm making a report includes a chart using jasperreports 4.7 in iReport. My report contains some persian RTL text which uses a persian TTF font (& I've configured jasperreport to embed this font ...
0
votes
1answer
89 views

joomla RTL parameter do not work

I have Joomla 2.5.6 on my localhost , i use template that supported by Gantry framework so it most support RTL ( Right to Left ) languages like Arabic and Hebrew , to do that we have to enter the file ...
1
vote
3answers
627 views

Direction ltr in a rtl HTML page

I am trying to display a negative number in a rtl HTML page. The label doesn't seem to respond to my direction: ltr I have written a jsFiddle to display the opposite scenario (trying to display from ...
2
votes
0answers
153 views

Switching between StoryBoards programmatically based on locale

I have two storyBoards one for LTR(Left to Right Scripts like english , german etc) and one for arabic RTL(Right to left scripts). I want to switch between these two storyboards based on the user ...
5
votes
3answers
680 views

Flexslider and Right-To-Left language support

I installed a template on WordPress that contains Flexslider. My language is written Right-To-Left (RTL). When the page is RTL, the Flexslider stops and no images appear. How can I resolve this issue? ...
0
votes
0answers
62 views

Switching between RTL and LTR UIViews in iOS5

I want to know how to switch between RTL and LTR UIViews on iOS5 storyboard. In android there are two different layout dir's eg: layout-ar (for arabic) and layout (for all other language LTR) . So can ...
2
votes
1answer
404 views

Load RTL (right-to-left language text) XML in flash (AS3)

i'm new to flash and want to load an xml file in flash as3 and Flash player 10. I don't want to use TLF! (TextLayoutFramework) because it throws an error when compiling When I load my XML in utf-8 ...
0
votes
1answer
90 views

Is there a working RTL example of Dynatree

Trying to work with Dynatree to display an RTL tree with dragndrop. tried playing around with the css but it obviously requires more than that. Does anyone have a working example?
4
votes
1answer
418 views

Do any browsers support CSS4 language/direction selectors yet? RTL TTB

I know that the working draft from the W3C is not finalised yet (at the time of writing this) but a lot of non standardised CSS has often been taken up by vendor ahead of formalisation. I'm finding ...
4
votes
1answer
314 views

What is the effect of changing the “Dynamic RTL” setting for a static library?

In Embarcadero RAD Studio 2010, there is a setting in the Project Options for for static libraries called "Dynamic RTL". (It's in the TLib section.) I was under the impression that the decision ...
0
votes
2answers
104 views

Background shows to the right of the border in IE9

I have a div with a background-color, and a 3 pixel white border. When I set the html element to direction:rtl and overflow-y: scroll, I get a pixel of the background to the right of the border - ...

1 2 3 4 5 7