Skip to content

Russian (ru)

Complete reference for the ru locale — live Intl API output, CLDR plural rules, and framework config snippets.

Locale reference

Russian

Locale metadata

BCP 47 coderu
Native nameРусский
English nameRussian
Languageru
RegionNone (base locale)
ScriptCyrl
Text directionLeft-to-right (LTR)
CLDR plural categoriesone, few, many, other
Estimated speakers~260,000,000

Intl API Live Output

DateTimeFormat

Short14.09.2026
Medium14 сент. 2026 г.
Long14 сентября 2026 г.
Fullпонедельник, 14 сентября 2026 г.

NumberFormat

Decimal1 234 567,89
Currency (USD)9,99 $
Percent75 %
Compact1,2 млн

RelativeTimeFormat

3 дня назад

Output for: -3 days ago

ListFormat

apples, oranges и bananas

Conjunction list: apples, oranges, bananas

CLDR Plural Rules

Categories supported by ru: one, few, many, other

oneExample number: 1
one
fewExample number: 3
few
manyExample number: 11
many
otherExample number: 100
many

Framework Config Snippets

next-intl
// next-intl configuration
// next.config.ts
import createNextIntlPlugin from 'next-intl/plugin';
const withNextIntl = createNextIntlPlugin();
export default withNextIntl({});

// i18n/routing.ts
import { defineRouting } from 'next-intl/routing';
export const routing = defineRouting({
  locales: ['ru', 'en'],
  defaultLocale: 'en',
});
react-intl
// react-intl configuration
import { IntlProvider } from 'react-intl';
import messages from './messages/ru.json';

function App() {
  return (
    <IntlProvider locale="ru" messages={messages}>
      {/* your app */}
    </IntlProvider>
  );
}
i18next
// i18next configuration
import i18n from 'i18next';
import { initReactI18next } from 'react-i18next';

i18n
  .use(initReactI18next)
  .init({
    lng: 'ru',
    fallbackLng: 'en',
    resources: {
      'ru': {
        translation: require('./locales/ru/translation.json'),
      },
    },
  });

export default i18n;

Related Locales

Russian is supported by Better I18N

Add ru to your project in seconds — no manual config required.

Start free trial

More tools

Free tools for the rest of your i18n workflow: locale data, ICU messages, file formats and hreflang.

Ready to ship globally?

Join hundreds of teams using Better I18N to deliver faster, context-aware translations.

Already shipping with Better I18N