Questions tagged [rtl-language]

Register transfer language (RTL) is a kind of intermediate representation (IR) that is very close to assembly language

RTL is also the name of a specific IR used in the GNU Compiler Collection (GCC), and several other compilers, such as Zephyr or the European compiler projects CerCo and CompCert.

In GCC, RTL is generated from the GIMPLE representation, transformed by various passes in the GCC 'middle-end', and then converted to assembly language.

link http://en.wikipedia.org/wiki/Register_transfer_language

14 questions
29
votes
6 answers

RTL language with Sublime Text editor

The RTL languages are not supported in the sublime text editor I tried this plug-in Bidirectional text support on windows os Copied all files from the zip Sublime-Text-2-BIDI-master to the ST3 folder and changed the font type and size. then I…
Dania Delbani
  • 816
  • 1
  • 11
  • 27
11
votes
1 answer

How to handle mixed RTL & LTR languages in notifications?

Background Android 4.3 has added a lot of support for RTL (Right-To-Left) languages, such as Hebrew and Arabic. The problem Even though there is "textDirection", "layoutDirection" and "gravity", I can't find the equivalents for the notification…
10
votes
3 answers

Disable auto change layout direction while using android:supportsRTL="true"

My application must support both RTL and LTR languages in the future but for now just RTLs. When I use android:supportsRTL="true" with android:layoutDirection="end" in each layout, NavigationView and Toolbar and everything else are fine. But the…
Abolfazl
  • 315
  • 1
  • 2
  • 12
4
votes
1 answer

Implement Apple Sign in button for different language in app RTL

My app has 2 languages English And Arabic which the user chooses when he enters the app for the first time. I do not use the device locale. In the case of RTL language, I also have to change the text "Continue with Apple" to Arabic manually and also…
Aditya Ahuja
  • 316
  • 3
  • 17
2
votes
0 answers

RTL input for kivy/ Persian input in kivy and kivymd

I am using kivy to develop .apk for android, and I am having trouble set RTL language ( Persian so to speak) to be suitably used as user input. Instead I am observing characters are shown as  that are unrecognizable characters. Just note that I…
2
votes
0 answers

Android RTL layout with Arabic language is not working in Xiomi devices

In my application which supports 2 languages English and Arabic, the below code is used to set the locale for the selected language. Both LTR and RTL layouts work fine with all the devices except the Xiaomi, Redmi devices. In the Xiaomi devices, the…
Guru
  • 4,693
  • 3
  • 25
  • 45
1
vote
2 answers

How to support multi language including RtL in android apps with Kotlin?

private fun setLocale(lang: String) { val language = Locale(lang) val res: Resources = resources val dm: DisplayMetrics = res.displayMetrics val conf: Configuration = res.configuration conf.locale = language …
MohamadMF
  • 35
  • 6
1
vote
2 answers

Display the icon at the right of the text in navigation view

sorry for my bad English. I have a navigation drawer in some activities, I want the icon of each navigation view item to be placed to the right of that item's text and the whole item get right gravity. Because I only used Persian in my app, I can…
danial abadi ghadim
  • 395
  • 1
  • 3
  • 10
0
votes
1 answer

How to build string that contains RTL(Hebrew) word in the middle?

I've tried to create a string that contains a month in the middle of the date for example: 2020 במרץ 30 This word I want to locate in the middle: 'במרץ' I know that I can create a label or textbox and located where I want it. but I want to find a…
ISTech
  • 183
  • 2
  • 13
0
votes
1 answer

RTL SlideShow For React native

i need to RTL react native slideshow. testing react native snap carousel but this library have error in RTL. i testing bellow Library: react-native-swiper react native snap carousel
0
votes
1 answer

scroll view's leading and trailing constraint messed up in rtl language

Scroll view showing correct layout with ltr(English) while I switched the language to rtl(arabic) scroll view's leading and trailing constraint are distorted, they are more shifted towards left
0
votes
1 answer

How to change layout direction (LTR & RTL) inside iOS app?

My app supports both English and Arabic. If I change the system language from English to Arabic, the layout automatically becomes right-to-left. However, I want to add a feature that users can change language from inside my app. Apparently, the…
P. Tsin
  • 435
  • 4
  • 14
0
votes
2 answers

Add class by Javascript or jQuery if paragraph arabic language

I would add class when I have different language on paragraph or div like arabic language to make anther font and direction and I would make it automatic .

عربي لغة عربية تغير الاتجاه هنا

Hefm
  • 61
  • 3
  • 13
-1
votes
4 answers

how to turn a Persian (Farsi) paragraph into its list of words in Javascript

I am trying to make an object out of a paragraph that shows words with their frequencies. var pattern = /\w+/g, //the farsi paragraph string = "من امروز در مورد مهر خروج مشمولین اطلاعات جدیدی از سفارت ایران در مالزی گرفتم", matchedWords =…
Mahanmeh
  • 89
  • 2
  • 11