Uzbek language localization setup for website

Our company is engaged in the development, support and maintenance of sites of any complexity. From simple one-page sites to large-scale cluster systems built on micro services. Experience of developers is confirmed by certificates from vendors.
Development and maintenance of all types of websites:
Informational websites or web applications
Business card websites, landing pages, corporate websites, online catalogs, quizzes, promo websites, blogs, news resources, informational portals, forums, aggregators
E-commerce websites or web applications
Online stores, B2B portals, marketplaces, online exchanges, cashback websites, exchanges, dropshipping platforms, product parsers
Business process management web applications
CRM systems, ERP systems, corporate portals, production management systems, information parsers
Electronic service websites or web applications
Classified ads platforms, online schools, online cinemas, website builders, portals for electronic services, video hosting platforms, thematic portals

These are just some of the technical types of websites we work with, and each of them can have its own specific features and functionality, as well as be customized to meet the specific needs and goals of the client.

Our competencies:
Development stages
Latest works
  • image_website-b2b-advance_0.png
    B2B ADVANCE company website development
    1212
  • image_web-applications_feedme_466_0.webp
    Development of a web application for FEEDME
    1161
  • image_websites_belfingroup_462_0.webp
    Website development for BELFINGROUP
    852
  • image_ecommerce_furnoro_435_0.webp
    Development of an online store for the company FURNORO
    1041
  • image_crm_enviok_479_0.webp
    Development of a web application for Enviok
    822
  • image_bitrix-bitrix-24-1c_fixper_448_0.png
    Website development for FIXPER company
    815

Setting up website localization for Uzbek language

Uzbek language is the official language of Uzbekistan. Important feature: two writing systems exist — Latin (uz-Latn, official standard since 1993) and Cyrillic (uz-Cyrl, de facto used by majority of population). For commercial website, it's recommended to support both variants or choose based on target audience.

Basic setup

// config/app.php
// Latin — official standard
'locale' => 'uz',
'fallback_locale' => 'ru',
// resources/lang/uz/messages.php — Latin
return [
    'welcome'       => 'Saytimizga xush kelibsiz',
    'catalog'       => 'Katalog',
    'cart'          => 'Savat',
    'checkout'      => 'Buyurtmani rasmiylashtirish',
    'search'        => 'Qidirish',
    'add_to_cart'   => 'Savatga qo\'shish',
    'price'         => 'Narx',
    'in_stock'      => 'Mavjud',
    'out_of_stock'  => 'Mavjud emas',
    'order_placed'  => 'Buyurtma qabul qilindi',
];
// resources/lang/uz-cyrl/messages.php — Cyrillic
return [
    'welcome'       => 'Сайтимизга хуш келибсиз',
    'catalog'       => 'Каталог',
    'cart'          => 'Сават',
    'checkout'      => 'Буюртмани расмийлаштириш',
    'search'        => 'Қидириш',
    'add_to_cart'   => 'Саватга қўшиш',
    'price'         => 'Нарх',
    'in_stock'      => 'Мавжуд',
    'out_of_stock'  => 'Мавжуд эмас',
];

Numerals and plural

Uzbek is an agglutinative language of Turkic group. Like Kazakh, after numeral, noun stays singular:

// "5 mahsulot" — correct, not "5 mahsulotlar"
function pluralUz(int $n, string $word): string
{
    return "$n $word";
}

echo pluralUz(1, 'mahsulot'); // 1 mahsulot
echo pluralUz(5, 'mahsulot'); // 5 mahsulot
// Intl.PluralRules for Uzbek
const rules = new Intl.PluralRules('uz')
// Returns 'one' for 1, 'other' for others
// But semantically in Uzbek, after numeral always the base form

const pluralize = (n: number, word: string) => `${n} ${word}`

Date and currency formatting

// Date (Latin)
const df = new Intl.DateTimeFormat('uz-Latn-UZ', {
  day: 'numeric',
  month: 'long',
  year: 'numeric',
})
df.format(new Date()) // "28-mart, 2026"

// Uzbekistan currency — sum (UZS)
new Intl.NumberFormat('uz-Latn-UZ', {
  style: 'currency',
  currency: 'UZS',
  maximumFractionDigits: 0,
}).format(150000) // "150 000 сўм" or "UZS 150,000"

// Numbers
new Intl.NumberFormat('uz-Latn-UZ').format(1234567.89)
// "1 234 567,89"

// Relative time
const rtf = new Intl.RelativeTimeFormat('uz', { numeric: 'auto' })
rtf.format(-1, 'day')   // "kecha"
rtf.format(-3, 'day')   // "3 kun oldin"
rtf.format(1, 'hour')   // "1 soatdan keyin"

Latin specifics: apostrophe and diacritics

Uzbek Latin uses:

  • (o with hook, U+02BB) — not regular apostrophe
  • (g with hook)
  • sh, ch, ng — digraphs
// Typographically correct spelling
const word = 'qo\u02BBshish'  // qoʻshish (to add)
// NOT: qo'shish (ASCII apostrophe)

In practice, most websites use regular apostrophe due to keyboard issues. If audience is business-oriented, use correct Unicode.

Fonts

For Latin, any standard fonts work. For Cyrillic (Uzbek), specific glyphs: Ғ ғ, Қ қ, Ҳ ҳ, Ў ў, Ъ ъ.

body {
  font-family: 'Noto Sans', 'PT Sans', Roboto, Arial, sans-serif;
}

Switching between Latin and Cyrillic

type UzScript = 'latn' | 'cyrl'

function LanguageToggle() {
  const [script, setScript] = useState<UzScript>('latn')

  return (
    <div>
      <button
        onClick={() => setScript('latn')}
        aria-pressed={script === 'latn'}
      >
        O'zbek (lotin)
      </button>
      <button
        onClick={() => setScript('cyrl')}
        aria-pressed={script === 'cyrl'}
      >
        Ўзбек (кирилл)
      </button>
    </div>
  )
}
// In Laravel: store choice in session
Route::get('/locale/uz/{script}', function (string $script) {
    $locale = $script === 'cyrl' ? 'uz-Cyrl' : 'uz';
    session(['locale' => $locale]);
    return back();
});

SEO

<html lang="uz-Latn">
<!-- or lang="uz-Cyrl" for Cyrillic -->
<head>
  <meta charset="UTF-8">
  <meta property="og:locale" content="uz_UZ">
  <link rel="alternate" hreflang="uz" href="https://example.uz/uz/" />
  <link rel="alternate" hreflang="ru" href="https://example.uz/" />
</head>

Timeframe

Basic localization with one script — 1 working day. Supporting both variants (Latin + Cyrillic) with switcher — 2 days.