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. GetLocalizedUrl
    Creation:2025-08-23Last update:2025-11-16
    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. "Refactored to use options parameter with mode instead of prefixDefault"
      v7.1.011/16/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: getLocalizedUrl Function in intlayer

    Description

    The getLocalizedUrl function generates a localized URL by prefixing the given URL with the specified locale. It handles both absolute and relative URLs, ensuring that the correct locale prefix is applied based on the configuration.

    Key Features:

    • Only 2 parameters are required: url and currentLocale
    • Optional options object with locales, defaultLocale, and mode
    • Uses your project's internationalization configuration as defaults
    • Can be used with minimal parameters for simple cases or fully customized for complex scenarios
    • Supports multiple routing modes: prefix-no-default, prefix-all, no-prefix, and search-params

    Function Signature

    typescript
    Copy code

    Copy the code to the clipboard

    getLocalizedUrl(  url: string,                   // Required  currentLocale: Locales,        // Required  options?: {                    // Optional    locales?: Locales[];    defaultLocale?: Locales;    mode?: 'prefix-no-default' | 'prefix-all' | 'no-prefix' | 'search-params';  }): string

    Parameters

    Required Parameters

    • url: string

      • Description: The original URL string to be prefixed with a locale.
      • Type: string
      • Required: Yes
    • currentLocale: Locales

      • Description: The current locale for which the URL is being localized.
      • Type: Locales
      • Required: Yes

    Optional Parameters

    • options?: object

      • Description: Configuration object for URL localization behavior.
      • Type: object
      • Required: No (Optional)

      • options.locales?: Locales[]

        • Description: Array of supported locales. If not provided, uses the configured locales from your project configuration.
        • Type: Locales[]
        • Default: Project Configuration
      • options.defaultLocale?: Locales

        • Description: The default locale for the application. If not provided, uses the configured default locale from your project configuration.
        • Type: Locales
        • Default: Project Configuration
      • options.mode?: 'prefix-no-default' | 'prefix-all' | 'no-prefix' | 'search-params'

        • Description: The URL routing mode for locale handling. If not provided, uses the configured mode from your project configuration.
        • Type: 'prefix-no-default' | 'prefix-all' | 'no-prefix' | 'search-params'
        • Default: Project Configuration
        • Modes:
          • prefix-no-default: No prefix for default locale, prefix for all others
          • prefix-all: Prefix for all locales including default
          • no-prefix: No locale prefix in URL
          • search-params: Use query parameters for locale (e.g., ?locale=fr)

    Returns

    • Type: string
    • Description: The localized URL for the specified locale.

    Example Usage

    Basic Usage (Only Required Parameters)

    When you have configured your project with internationalization settings, you can use the function with just the required parameters:

    typescript
    Copy code

    Copy the code to the clipboard

    import { getLocalizedUrl, Locales } from "intlayer";
    
    // Uses your project's configuration for locales, defaultLocale, and mode
    getLocalizedUrl("/about", Locales.FRENCH);
    // Output: "/fr/about" (assuming French is supported and mode is 'prefix-no-default')
    
    getLocalizedUrl("/about", Locales.ENGLISH);
    // Output: "/about" or "/en/about" (depending on your mode setting)

    Advanced Usage (With Optional Parameters)

    You can override the default configuration by providing the optional options parameter:

    Relative URLs (All Options Specified)

    typescript
    Copy code

    Copy the code to the clipboard

    import { getLocalizedUrl, Locales } from "intlayer";
    
    // Explicitly providing all optional parameters
    getLocalizedUrl("/about", Locales.FRENCH, {
      locales: [Locales.ENGLISH, Locales.FRENCH],
      defaultLocale: Locales.ENGLISH,
      mode: "prefix-no-default",
    });
    // Output: "/fr/about" for the French locale
    
    getLocalizedUrl("/about", Locales.ENGLISH, {
      locales: [Locales.ENGLISH, Locales.FRENCH],
      defaultLocale: Locales.ENGLISH,
      mode: "prefix-no-default",
    });
    // Output: "/about" for the default (English) locale

    Partial Configuration Override

    You can also provide only some of the optional parameters. The function will use your project configuration for any parameters you don't specify:

    typescript
    Copy code

    Copy the code to the clipboard

    import { getLocalizedUrl, Locales } from "intlayer";// Only override the locales, use project config for defaultLocale and modegetLocalizedUrl("/about", Locales.SPANISH, {  locales: [Locales.ENGLISH, Locales.FRENCH, Locales.SPANISH],});// Only override mode, use project config for locales and defaultLocalegetLocalizedUrl("/about", Locales.ENGLISH, {  mode: "prefix-all", // Force prefix for all locales including default});// Override multiple optionsgetLocalizedUrl("/about", Locales.FRENCH, {  defaultLocale: Locales.ENGLISH,  mode: "search-params", // Use query parameters: /about?locale=fr});

    Absolute URLs

    typescript
    Copy code

    Copy the code to the clipboard

    getLocalizedUrl("https://example.com/about", Locales.FRENCH, {  locales: [Locales.ENGLISH, Locales.FRENCH],  defaultLocale: Locales.ENGLISH,  mode: "prefix-no-default",});// Output: "https://example.com/fr/about" for the FrenchgetLocalizedUrl("https://example.com/about", Locales.ENGLISH, {  locales: [Locales.ENGLISH, Locales.FRENCH],  defaultLocale: Locales.ENGLISH,  mode: "prefix-no-default",});// Output: "https://example.com/about" for the English (no prefix for default)getLocalizedUrl("https://example.com/about", Locales.ENGLISH, {  locales: [Locales.ENGLISH, Locales.FRENCH],  defaultLocale: Locales.ENGLISH,  mode: "prefix-all",});// Output: "https://example.com/en/about" for the English (prefix for all)getLocalizedUrl("https://example.com/about", Locales.FRENCH, {  locales: [Locales.ENGLISH, Locales.FRENCH],  defaultLocale: Locales.ENGLISH,  mode: "search-params",});// Output: "https://example.com/about?locale=fr" (using query parameters)

    Unsupported Locale

    typescript
    Copy code

    Copy the code to the clipboard

    getLocalizedUrl("/about", Locales.ITALIAN, {  locales: [Locales.ENGLISH, Locales.FRENCH],  defaultLocale: Locales.ENGLISH,  mode: "prefix-no-default",});// Output: "/about" (no prefix applied for unsupported locale)

    Edge Cases

    • No Locale Segment:

      • If the URL does not contain any locale segment, the function safely prefixes the appropriate locale based on the routing mode.
    • Default Locale:

      • When mode is 'prefix-no-default', the function does not prefix the URL for the default locale.
      • When mode is 'prefix-all', the function prefixes all locales including the default.
    • Unsupported Locales:

      • For locales not listed in locales, the function does not apply any prefix.
    • Routing Modes:

      • 'prefix-no-default': Default locale has no prefix, others do (e.g., /about, /fr/about)
      • 'prefix-all': All locales have prefixes (e.g., /en/about, /fr/about)
      • 'no-prefix': No locale prefixes in URLs (locale handled elsewhere)
      • 'search-params': Locale specified via query parameter (e.g., /about?locale=fr)

    Usage in Applications

    In a multilingual application, configuring the internationalization settings with locales and defaultLocale is critical for ensuring the correct language is displayed. Below is an example of how getLocalizedUrl can be used in an application setup:

    tsx
    Copy code

    Copy the code to the clipboard

    import { Locales, type IntlayerConfig } from "intlayer";
    
    // Configuration for supported locales and default locale
    export default {
      internationalization: {
        locales: [Locales.ENGLISH, Locales.FRENCH, Locales.SPANISH],
        defaultLocale: Locales.ENGLISH,
      },
    } satisfies IntlayerConfig;
    
    export default config;

    The above configuration ensures that the application recognizes ENGLISH, FRENCH, and SPANISH as supported languages and uses ENGLISH as the fallback language.

    Using this configuration, the getLocalizedUrl function can dynamically generate localized URLs based on the user's language preference:

    typescript
    Copy code

    Copy the code to the clipboard

    getLocalizedUrl("/about", Locales.FRENCH); // Output: "/fr/about"getLocalizedUrl("/about", Locales.SPANISH); // Output: "/es/about"getLocalizedUrl("/about", Locales.ENGLISH); // Output: "/about"

    By integrating getLocalizedUrl, developers can maintain consistent URL structures across multiple languages, enhancing both user experience and SEO.

    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.

      getLocalizedUrl(  url: string,                   // Required  currentLocale: Locales,        // Required  options?: {                    // Optional    locales?: Locales[];    defaultLocale?: Locales;    mode?: 'prefix-no-default' | 'prefix-all' | 'no-prefix' | 'search-params';  }): string
      import { getLocalizedUrl, Locales } from "intlayer";// Only override the locales, use project config for defaultLocale and modegetLocalizedUrl("/about", Locales.SPANISH, {  locales: [Locales.ENGLISH, Locales.FRENCH, Locales.SPANISH],});// Only override mode, use project config for locales and defaultLocalegetLocalizedUrl("/about", Locales.ENGLISH, {  mode: "prefix-all", // Force prefix for all locales including default});// Override multiple optionsgetLocalizedUrl("/about", Locales.FRENCH, {  defaultLocale: Locales.ENGLISH,  mode: "search-params", // Use query parameters: /about?locale=fr});
      getLocalizedUrl("https://example.com/about", Locales.FRENCH, {  locales: [Locales.ENGLISH, Locales.FRENCH],  defaultLocale: Locales.ENGLISH,  mode: "prefix-no-default",});// Output: "https://example.com/fr/about" for the FrenchgetLocalizedUrl("https://example.com/about", Locales.ENGLISH, {  locales: [Locales.ENGLISH, Locales.FRENCH],  defaultLocale: Locales.ENGLISH,  mode: "prefix-no-default",});// Output: "https://example.com/about" for the English (no prefix for default)getLocalizedUrl("https://example.com/about", Locales.ENGLISH, {  locales: [Locales.ENGLISH, Locales.FRENCH],  defaultLocale: Locales.ENGLISH,  mode: "prefix-all",});// Output: "https://example.com/en/about" for the English (prefix for all)getLocalizedUrl("https://example.com/about", Locales.FRENCH, {  locales: [Locales.ENGLISH, Locales.FRENCH],  defaultLocale: Locales.ENGLISH,  mode: "search-params",});// Output: "https://example.com/about?locale=fr" (using query parameters)
      getLocalizedUrl("/about", Locales.ITALIAN, {  locales: [Locales.ENGLISH, Locales.FRENCH],  defaultLocale: Locales.ENGLISH,  mode: "prefix-no-default",});// Output: "/about" (no prefix applied for unsupported locale)
      getLocalizedUrl("/about", Locales.FRENCH); // Output: "/fr/about"getLocalizedUrl("/about", Locales.SPANISH); // Output: "/es/about"getLocalizedUrl("/about", Locales.ENGLISH); // Output: "/about"