Kazakh 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 Kazakh language

Kazakh language (kk / kk-KZ) uses Cyrillic in Kazakhstan. The language is agglutinative: case endings, number and possession are expressed through suffixes, which significantly impacts localization approach — template strings with substitution often need to be redone into complete phrases.

Basic setup

// config/app.php
'locale' => 'kk',
'fallback_locale' => 'ru',
// resources/lang/kk/messages.php
return [
    'welcome'       => 'Сайтымызға қош келдіңіз',
    'catalog'       => 'Каталог',
    'cart'          => 'Себет',
    'checkout'      => 'Тапсырысты рәсімдеу',
    'search'        => 'Іздеу',
    'add_to_cart'   => 'Себетке қосу',
    'price'         => 'Баға',
    'in_stock'      => 'Қоймада бар',
    'out_of_stock'  => 'Қоймада жоқ',
    'order_placed'  => 'Тапсырыс берілді',
    'items_in_cart' => 'Себетте :count тауар',
];

Specifics of Kazakh grammar for developers

Kazakh has no grammatical gender. Noun number: singular (explicit or without ending) and plural (suffix -лар/-лер/-дар/-дер/-тар/-тер — choice depends on the last sound of the stem by vowel harmony law).

// Numerals in Kazakh — simpler than in Russian
// Only two forms are used: singular and plural
function pluralKk(int $n, string $singular, string $plural): string
{
    return $n === 1 ? "$n $singular" : "$n $plural";
}

echo pluralKk(1, 'тауар', 'тауар');   // 1 тауар
echo pluralKk(5, 'тауар', 'тауар');   // 5 тауар
// In Kazakh, after numeral, noun stays singular!
// "5 тауар" — correct, not "5 тауарлар"

Intl.PluralRules for Kazakh:

const rules = new Intl.PluralRules('kk')
// kk returns 'one' for 1 and 'other' for others
// BUT: in Kazakh, after numeral — always singular
// So for "N goods" just use one form
const pluralize = (n: number) => `${n} тауар`

Date and currency formatting

// Date
const df = new Intl.DateTimeFormat('kk-KZ', {
  day: 'numeric',
  month: 'long',
  year: 'numeric',
})
df.format(new Date()) // "28 наурыз 2026 ж."

// Kazakhstan currency — tenge (KZT)
new Intl.NumberFormat('kk-KZ', {
  style: 'currency',
  currency: 'KZT',
  maximumFractionDigits: 0,
}).format(14990) // "14 990 ₸"

// Numbers
new Intl.NumberFormat('kk-KZ').format(1234567.89)
// "1 234 567,89"

// Relative time
const rtf = new Intl.RelativeTimeFormat('kk', { numeric: 'auto' })
rtf.format(-1, 'day')   // "кеше"
rtf.format(-3, 'day')   // "3 күн бұрын"
rtf.format(1, 'hour')   // "1 сағаттан кейін"

Fonts

Kazakh Cyrillic contains unique letters: Ә ә, Ғ ғ, Қ қ, Ң ң, Ө ө, Ұ ұ, Ү ү, Һ һ, І і. Check glyph presence:

body {
  /* Noto Sans supports all Cyrillic languages including Kazakh */
  font-family: 'Noto Sans', 'PT Sans', Roboto, Arial, sans-serif;
}

Google Fonts: filter by Kazakh or Cyrillic Extended — finds compatible fonts.

Kazakh in Next.js i18n

// next.config.js
module.exports = {
  i18n: {
    locales: ['ru', 'kk', 'en'],
    defaultLocale: 'ru',
    localeDetection: true,
  },
}
pages/
  index.tsx              → /
  [locale]/
    index.tsx            → /kk/, /en/

SEO

<html lang="kk">
<head>
  <meta charset="UTF-8">
  <meta property="og:locale" content="kk_KZ">
  <link rel="alternate" hreflang="kk" href="https://example.kz/kk/" />
  <link rel="alternate" hreflang="ru" href="https://example.kz/" />
  <link rel="alternate" hreflang="x-default" href="https://example.kz/" />
</head>

Yandex indexes Kazakh content. Google does as well. Share of Kazakh-language searches is growing: according to Yandex, about 30% of search queries from Kazakhstan are in Kazakh.

Timeframe

Connecting locale, configuring formatting, basic UI translations — 1 working day.