惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
T
Tailwind CSS Blog
J
Java Code Geeks
Microsoft Azure Blog
Microsoft Azure Blog
GbyAI
GbyAI
爱范儿
爱范儿
量子位
Martin Fowler
Martin Fowler
V
V2EX
博客园 - 三生石上(FineUI控件)
I
InfoQ
MongoDB | Blog
MongoDB | Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
N
Netflix TechBlog - Medium
D
DataBreaches.Net
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Last Week in AI
Last Week in AI
U
Unit 42
Apple Machine Learning Research
Apple Machine Learning Research
H
Help Net Security
T
The Blog of Author Tim Ferriss
Hugging Face - Blog
Hugging Face - Blog
美团技术团队
Engineering at Meta
Engineering at Meta

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Building a Multi-Language SaaS in Central Asia: Lessons L...
Azma Finance · 2026-05-13 · via DEV Community

Azma Finance

When we started building Azma Finance — an online accounting platform for small businesses in Uzbekistan — we knew localization would be important. We didn't know it would become one of our biggest engineering and product challenges.

Here's what we learned after shipping in four languages: Uzbek, Russian, English, and Chinese.

Why four languages?

Uzbekistan is genuinely multilingual. Most people over 35 are comfortable in Russian. The younger generation prefers Uzbek. Foreign investors and expats need English. And with a growing wave of Chinese businesses entering the Central Asian market, Mandarin became a real business need — not a nice-to-have.

Skip any of these, and you're leaving a meaningful chunk of users behind.

Lesson 1: Language is not just translation

The hardest part wasn't translating strings — it was context. In Uzbek, formal and informal address completely change the tone of UI copy. In Russian, nouns have grammatical gender that affects button labels. In Chinese, the same concept can require a completely different explanation because the business culture around accounting is different.

We learned quickly: don't hand a spreadsheet of strings to a translator and call it done. You need someone who understands your product and the language.

Lesson 2: RTL isn't your only layout problem

We didn't have RTL to deal with, but we did have text expansion. Russian strings are typically 30–40% longer than their English equivalents. Uzbek in Latin script is closer to English in length, but Uzbek in Cyrillic (still used by many) is longer again.

Buttons that look clean in English break in Russian. Modals overflow. Tables wrap awkwardly.

Fix: Design with Russian as your "stress test" language. If a UI element holds in Russian, it'll hold in everything else.

Lesson 3: Locale goes deeper than language

Date formats, number formats, currency display — these all differ. In Uzbekistan, the currency is UZS (Uzbek soum), and large numbers are written differently than in Western contexts. Tax reporting has its own terminology that doesn't map cleanly to international accounting language.

We had to build a locale layer that handled not just i18n strings, but business logic formatting too.

Lesson 4: Let users switch language instantly — no page reload

This sounds obvious but it's easy to get wrong early on. We initially built language switching as a full page reload with a URL prefix (/ru, /uz, /en). It worked, but it felt sluggish and lost form state.

Moving to in-memory locale switching (with the URL update happening silently) made the experience feel much more native.

Lesson 5: English opens unexpected doors

We added English primarily for foreign-owned businesses in Uzbekistan. But English content also helped us reach the diaspora — Uzbek entrepreneurs living abroad who want to register and manage a business back home remotely.

It also made our product legible to international investors. Sometimes EN is less about language and more about signal.

  • Start with a proper i18n library from day one (we refactored mid-build)
  • Build a translation management system early — spreadsheets don't scale past two languages
  • Involve native speakers in UX review, not just translation

Building for a multilingual market in Central Asia is genuinely interesting engineering. The region is growing fast, the problems are real, and the solutions can't just be copy-pasted from Western SaaS playbooks.

If you're building something similar — or thinking about expanding into this market — happy to talk -> https://azmafinance.com/talk-to-expert