HomeSandboxShowcaseAppDocBlog
    • EnglishEnglish
      EN
    • русскийRussian
      RU
    • 日本語Japanese
      JA
    • françaisFrench
      FR
    • 한국어Korean
      KO
    • 中文Chinese
      ZH
    • españolSpanish
      ES
    • DeutschGerman
      DE
    • العربيةArabic
      AR
    • italianoItalian
      IT
    • British EnglishBritish English
      EN-GB
    • portuguêsPortuguese
      PT
    • हिन्दीHindi
      HI
    • TürkçeTurkish
      TR
    • polskiPolish
      PL
    • IndonesiaIndonesian
      ID
    • Tiếng ViệtVietnamese
      VI
    • українськаUkrainian
      UK
    /
    Filter docs by framework
    Alt+←
    Why Intlayer ?
    Get Started
    Concept
    • How Intlayer Works
    • Configuration
    • TestFillBuildWatchExtractLoginPushPullConfigurationListVersionEditorLiveDebugDoc ReviewDoc TranslateSDK
    • Visual Editor
    • CMS
    • CI/CD Integration
    • TranslationPluralEnumerationConditionGenderInsertionFileNestingMarkdownHTMLFunction Fetching
    • Per Locale File
    • Compiler
    • Auto Fill
    • Testing
    • Bundle Optimization
    Environment
    • Next.js 14 and App Router
      Next.js 15
      Next.js no locale path
      Next.js and Page Router
      Compiler
    • Tanstack Start Solid
    • Astro and React
      Astro and Svelte
      Astro and Vue
      Astro and Solid
      Astro and Preact
      Astro and Lit
      Astro and Vanilla JS
    • React Router v7
      React Router v7 (fs-routes)
      Compiler
    • Nuxt and Vue
    • Vite and Solid
    • SvelteKit
    • Vite and Preact
    • Vite and Vanilla JS
    • Vite and Lit
    • Angular 19 (Webpack)
      Analog
    • React CRA
    • React Native and Expo
    • Express.js
      NestJS
      Fastify
      Hono
      Adonis
    • Lynx and React
    Plugins
    • JSON
    • gettext (.po)
    VS Code Extension
    Agent
    • MCP Server
    • Agent skills
    Releases
    • v8
    • v7
    • v6
    Benchmark
    • Next.js
    • TanStack
    • Vue
    • Solid
    • Svelte
    Blog
    Ask a question
    1. Documentation
    2. Packages
    3. Intlayer
    4. GetLocaleName
    Creation:2025-08-23Last update:2025-08-23
    Reference this doc to your favorite AI assistant
    ChatGPT
    Claude
    DeepSeek
    Google AI mode
    Gemini
    Perplexity
    Mistral
    Grok

    Ask your question and get a summary of the document by referencing this page and the AI provider of your choice

    Version History

    1. "Add polyfills for React Native and older environments"
      v7.5.012/18/2025
    2. "Init history"
      v5.5.106/29/2025
    Edit this doc

    If you have an idea for improving this documentation, please feel free to contribute by submitting a pull request on GitHub.

    GitHub link to the documentation
    Copy

    Copy doc Markdown to clipboard

    Documentation: getLocaleName Function in intlayer

    Description

    The getLocaleName function returns the localized name of a given locale (targetLocale) in the display locale (displayLocale). If no targetLocale is provided, it returns the name of the displayLocale in its own language.

    Parameters

    • displayLocale: Locales

      • Description: The locale in which the name of the target locale will be displayed.
      • Type: Enum or string representing valid locales.
    • targetLocale?: Locales

      • Description: The locale whose name is to be localized.
      • Type: Optional. Enum or string representing valid locales.

    Returns

    • Type: string
    • Description: The localized name of the targetLocale in the displayLocale, or the displayLocale's own name if targetLocale is not provided. If no translation is found, it returns "Unknown locale".

    Example Usage

    typescript
    Copy code

    Copy the code to the clipboard

    import { Locales, getLocaleName } from "intlayer";
    
    getLocaleName(Locales.ENGLISH); // Output: "English"
    getLocaleName(Locales.ENGLISH, Locales.FRENCH); // Output: "Anglais"
    getLocaleName(Locales.ENGLISH, Locales.ESPANOL); // Output: "Inglés"
    getLocaleName(Locales.ENGLISH, Locales.ENGLISH); // Output: "English"
    
    getLocaleName(Locales.FRENCH); // Output: "Français"
    getLocaleName(Locales.FRENCH, Locales.FRENCH); // Output: "Français"
    getLocaleName(Locales.FRENCH, Locales.ESPANOL); // Output: "Francés"
    getLocaleName(Locales.FRENCH, Locales.ENGLISH); // Output: "French"
    
    getLocaleName(Locales.CHINESE); // Output: "中文"
    getLocaleName(Locales.CHINESE, Locales.FRENCH); // Output: "Chinois"
    getLocaleName(Locales.CHINESE, Locales.ESPANOL); // Output: "Chino"
    getLocaleName(Locales.CHINESE, Locales.ENGLISH); // Output: "Chinese"
    
    getLocaleName("unknown-locale"); // Output: "Unknown locale"

    Edge Cases

    • No targetLocale provided:
      • The function defaults to returning the displayLocale's own name.
    • Missing translations:
      • If localeNameTranslations does not contain an entry for the targetLocale or the specific displayLocale, the function falls back to the ownLocalesName or returns "Unknown locale".

    Polyfills for React Native and Older Environments

    The getLocaleName function relies on the Intl.DisplayNames API, which is not available in React Native or older JavaScript environments. If you're using getLocaleName in these environments, you need to add polyfills.

    Import the polyfills early in your application, ideally in your entry point file (e.g., index.js, App.tsx, or main.tsx):

    typescript
    Copy code

    Copy the code to the clipboard

    import "intl";import "@formatjs/intl-locale/polyfill";import "@formatjs/intl-displaynames/polyfill";

    For more details, see the FormatJS polyfills documentation.

    Why Intlayer ?
    Alt+→

    In this page

      Discussions are anonymous and regularly reviewed to address common issues. Feel free to share feature ideas, feedback on the documentation, or anything related to Intlayer, we use this input to shape our roadmap and improve the product.

      import "intl";import "@formatjs/intl-locale/polyfill";import "@formatjs/intl-displaynames/polyfill";