Blog · Engineering

What it actually takes to build a CRM that works right-to-left

Adding Arabic is not a translation job. It is a layout job, a data job, and a long tail of small assumptions that only surface when the page flips.

29 July 2026 · 7 min read

Pointof-CRM ships in 0 languages: English, Arabic and Urdu. Two of those read right to left, and supporting them properly took considerably more work than translating strings.

Translation is the easy half

Extracting copy into locale files is mechanical. You do it once, you keep it tidy, and a test tells you when a key is missing from one of the three. That part is solved.

The hard half is that a right-to-left layout is not a mirror image of a left-to-right one. It is the same layout expressed in directions rather than sides — and most CSS is written in sides.

Sides versus directions

Every `margin-left`, `padding-right`, `left: 0` and `translateX(20px)` in a codebase is an assumption that text flows one way. In an RTL layout each of them is wrong, and none of them will throw an error.

The fix is logical properties, applied consistently:

/* breaks in Arabic */
.card { margin-left: 12px; border-right: 1px solid; }

/* works in every direction */
.card { margin-inline-start: 12px; border-inline-end: 1px solid; }

Animations need the same treatment. A marquee that translates negatively runs the wrong way in RTL; a sliding panel opens from the wrong edge. Those are the bugs that survive review, because the reviewer is reading in English.

The things nobody warns you about

Why bother

Because the alternative is what most CRMs do: ship an English product, add a language switcher that translates labels, and leave the layout untouched. The result is technically multilingual and genuinely unusable.

Sales teams in the Gulf and South Asia are not underserved because software cannot be translated. They are underserved because translating it properly is unglamorous work that rarely gets prioritised.

Close more deals. Starting today.

Pipeline, email, calendar, AI, and automation — connected and ready on day one. No extra tools. No stitching.

Create your free account
  • 14-day free trial
  • Setup in minutes
  • Cancel anytime