Please add support for Right-to-Left text direction in chat responses. This is a critical feature for Arabic users.
RTL support is only needed for chat responses, not for the overall UI.
I let AI explain the issue since I’m not a technical guy
When Arabic text (RTL language) contains English words (LTR language) and the interface doesn't properly support RTL, the text becomes confusing and hard to read because:
Without RTL support (WRONG):
.Python programming language ال أنا أحب The sentence reads incorrectly - English words appear in wrong positions.
With RTL support (CORRECT):
أنا أحب ال Python programming language. The sentence flows naturally from right to left, with English embedded correctly.
Arabic reads right-to-left (←)
English reads left-to-right (→)
Without proper RTL support, the browser/app doesn't know how to handle bidirectional text (BiDi)
Text alignment, punctuation, and word order get scrambled
Readability: Users can't understand responses properly
Professionalism: Looks broken and unprofessional
User experience: Frustrating to parse jumbled text
Code/technical terms: English variable names, commands, or technical terms appear in wrong places
/* Add this to the chat message container */ .chatbot-message { direction: rtl; text-align: right; unicode-bidi: embed; } Or detect the language and apply dir="rtl" attribute dynamically to Arabic messages.
Bottom line: Without RTL support, Arabic responses with English words look like scrambled nonsense to Arabic users. 🔄
Thank you
Please authenticate to join the conversation.
Open
Feature Request
3 months ago
Get notified by email when there are changes.
Open
Feature Request
3 months ago
Get notified by email when there are changes.