```json //[doc-seo] { "Description": "Learn how to effectively implement localization in your ABP Framework project using the Localization Pipe and Service for seamless multilingual support." } ``` # Localization Before exploring _the localization pipe_ and _the localization service_, you should go over the localization keys. The localization key format consists of two sections which are **Resource Name** and **Key**. `ResourceName::Key` > If you do not specify the resource name, the `defaultResourceName` will be used. The value is first retrieved from the backend API response. If the backend does not provide a `defaultResourceName`, the value declared in `environment.ts` will be used as a fallback. ```ts const environment = { // ... localization: { defaultResourceName: "MyProjectName", }, }; ``` So, these two will give the same results: ```html

{%{{{ '::Key' | abpLocalization }}}%}

{%{{{ 'MyProjectName::Key' | abpLocalization }}}%}

``` ## Using the Localization Pipe You can use the `abpLocalization` pipe to get localized text as in this example: ```html

{%{{{ 'Resource::Key' | abpLocalization }}}%}

``` This pipe will replace the key with the localized text. You can also specify a default value as shown below: ```html

{%{{{ { key: 'Resource::Key', defaultValue: 'Default Value' } | abpLocalization }}}%}

``` In order to use the interpolation, you must give the parameters for the pipe, as an example: Localization data is stored in key-value pairs: ```ts { // ... AbpAccount: { // AbpAccount is the resource name Key: "Value", PagerInfo: "Showing {0} to {1} of {2} entries" } } ``` Then, we can use this key like this: ```html

{%{{{ 'AbpAccount::PagerInfo' | abpLocalization:'20':'30':'50' }}}%}

``` ### Using the Async Localization Pipe Use `abpAsyncLocalization` when the template must wait for the application localization state before resolving a key. The pipe returns an observable, so combine it with Angular's `async` pipe: ```ts import { AsyncPipe } from '@angular/common'; import { Component } from '@angular/core'; import { AsyncLocalizationPipe } from '@abp/ng.core'; @Component({ selector: 'app-greeting', imports: [AsyncPipe, AsyncLocalizationPipe], template: `

{%{{{ 'MyProjectName::Greeting' | abpAsyncLocalization | async }}}%}

`, }) export class GreetingComponent {} ``` The observable initially emits an empty string. After the localization configuration is available, it emits the localized value. It also emits an empty string when the key cannot be resolved. Interpolation parameters can be passed in the same way as with `abpLocalization`. ### Using the Localization Service First of all, you should import the `LocalizationService` from **@abp/ng.core** ```js import { LocalizationService } from '@abp/ng.core'; import { inject } from '@angular/core'; class MyClass { private localizationService = inject(LocalizationService); } ``` After that, you will be able to use the localization service. > You can add interpolation parameters as arguments to `instant()` and `get()` methods. ```ts this.localizationService.instant( "AbpIdentity::UserDeletionConfirmation", "John" ); // with fallback value this.localizationService.instant( { key: "AbpIdentity::UserDeletionConfirmation", defaultValue: "Default Value", }, "John" ); // Output // User 'John' will be deleted. Do you confirm that? ``` To get a localized text as [_Observable_](https://rxjs.dev/guide/observable) use `get` method instead of `instant`: ```ts this.localizationService.get("Resource::Key"); // with fallback value this.localizationService.get({ key: "Resource::Key", defaultValue: "Default Value", }); ``` ## UI Localizations Localizations can be determined on the backend side. Therefore, Angular UI gets the localization resources from the `application-localization` API's response then merges these resources with `configuration state` in [`ConfigStateService`](config-state-service.md). You can also determine localizations on the UI side. See an example: ```ts import { provideAbpCore, withOptions } from "@abp/ng.core"; export const appConfig: ApplicationConfig = { providers: [ // ... provideAbpCore( withOptions({ // ..., localizations: [ { culture: "en", resources: [ { resourceName: "MyProjectName", texts: { Administration: "Administration", HomePage: "Home", }, }, ], }, { culture: "de", resources: [ { resourceName: "MyProjectName", texts: { Administration: "Verwaltung", HomePage: "Startseite", }, }, ], }, ], }) ), ], }; ``` You can also declare the localizations in a feature provider configuration: ```ts // your feature configuration export function provideFeatureConfiguration(): EnvironmentProviders { return provideAbpCoreChild({ localizations: [ { culture: "en", resources: [ { resourceName: "MyProjectName", texts: { Administration: "Administration", HomePage: "Home", }, }, ], }, { culture: "de-DE", resources: [ { resourceName: "MyProjectName", texts: { Administration: "Verwaltung", HomePage: "Startseite", }, }, ], }, ], }); } ``` The localizations above can be used like this: ```html
{%{{{ 'MyProjectName::Administration' | abpLocalization }}}%}
{%{{{ 'MyProjectName::HomePage' | abpLocalization }}}%}
``` > **Note:** If the same localization key is specified in the UI and backend, the UI localization overrides the backend localization. ## RTL Support As of v2.9 ABP supports RTL. If you are generating a new project with v2.9 and above, everything is set, there is no need to make any changes. If you are migrating your project from an earlier version, please follow the 2 steps below: ### Step 1. Create Chunks for Bootstrap LTR and RTL Find [styles configuration in angular.json](https://angular.dev/reference/configs/workspace-config) and make sure the chunks in your project has `bootstrap-rtl.min` and `bootstrap-ltr.min` as shown below. ```json { "projects": { "MyProjectName": { "architect": { "build": { "options": { "styles": [ { "input": "node_modules/@fortawesome/fontawesome-free/css/all.min.css", "inject": true, "bundleName": "fontawesome-all.min" }, { "input": "node_modules/@fortawesome/fontawesome-free/css/v4-shims.min.css", "inject": true, "bundleName": "fontawesome-v4-shims.min" }, { "input": "node_modules/@abp/ng.theme.shared/styles/bootstrap-rtl.min.css", "inject": false, "bundleName": "bootstrap-rtl.min" }, { "input": "node_modules/bootstrap/dist/css/bootstrap.min.css", "inject": true, "bundleName": "bootstrap-ltr.min" }, "apps/dev-app/src/styles.scss" ] } } } } } } ``` ### Step 2. Clear Lazy Loaded Fontawesome in AppComponent If you have created and injected chunks for Fontawesome as seen above, you no longer need the lazy loading in the `AppComponent` which was implemented before v2.9. Simply remove them. The `AppComponent` in the template of the new version looks like this: ```ts import { Component } from "@angular/core"; @Component({ selector: "app-root", template: ` `, }) export class AppComponent {} ``` ## Registering a New Locale ABP loads Angular locale data lazily and registers it with Angular's [`registerLocaleData`](https://angular.dev/api/common/registerLocaleData) function. The registration function depends on the Angular builder used by your application: | Builder | Registration function | | --- | --- | | Angular application builder (`@angular/build:application`) | `registerLocaleForEsBuild()` | | Webpack builder | `registerLocale()` | Pass the selected function as `registerLocaleFn` to `provideAbpCore(withOptions({...}))`. ### Application Builder (EsBuild) Current ABP Angular application templates use the Angular application builder. Configure them with `registerLocaleForEsBuild`: ```ts import { provideAbpCore, withOptions } from '@abp/ng.core'; import { registerLocaleForEsBuild } from '@abp/ng.core/locale'; import { ApplicationConfig } from '@angular/core'; import { environment } from '../environments/environment'; export const appConfig: ApplicationConfig = { providers: [ provideAbpCore( withOptions({ environment, registerLocaleFn: registerLocaleForEsBuild({ cultureNameLocaleFileMap: { 'pt-BR': 'pt' }, }), }), ), ], }; ``` `registerLocaleForEsBuild` uses a fixed list of supported Angular locale imports so the application builder can include them in the bundle. ### Webpack Builder The `registerLocale` function, exported from the `@abp/ng.core/locale` package, is a **higher-order function**. It accepts the following parameters: - **`cultureNameLocaleFileMap`** – an object that maps culture names to their corresponding locale files. - **`errorHandlerFn`** – a function that handles any errors that occur during locale loading. It returns a **Webpack `import` function**. Use it only when the application is built with Webpack. You should use `registerLocale` within the `withOptions` function of `provideAbpCore`, as shown in the example below: ```ts import { provideAbpCore, withOptions } from "@abp/ng.core"; import { registerLocale } from "@abp/ng.core/locale"; export const appConfig: ApplicationConfig = { providers: [ // ... provideAbpCore( withOptions({ // ..., registerLocaleFn: registerLocale( // you can pass the cultureNameLocaleFileMap and errorHandlerFn as optionally { cultureNameLocaleFileMap: { "pt-BR": "pt" }, errorHandlerFn: ({ resolve, reject, locale, error }) => { // the error can be handled here }, } ), }) ), // ... ], }; ``` ### Mapping of Culture Name to Angular Locale File Name Some of the culture names defined in .NET do not match Angular locales. In such cases, the Angular app throws an error like below at runtime: ![locale-error](./images/locale-error.png) If you see an error like this, pass the `cultureNameLocaleFileMap` property to the registration function selected for your builder. The following example uses the Angular application builder: ```ts // app.config.ts import { registerLocaleForEsBuild } from "@abp/ng.core/locale"; // If you use the Language Management module, replace the import above with: // import { registerLocale as registerLocaleForEsBuild } from '@volo/abp.ng.language-management/locale'; export const appConfig: ApplicationConfig = { providers: [ // ... provideAbpCore( withOptions({ // ..., registerLocaleFn: registerLocaleForEsBuild({ cultureNameLocaleFileMap: { DotnetCultureName: "AngularLocaleFileName", "pt-BR": "pt", // example }, }), }) ), ], }; ``` For a Webpack project, pass the same option object to `registerLocale()` instead. See [all locale files in Angular](https://github.com/angular/angular/tree/master/packages/common/locales). ### Adding a New Culture If you want to register a new language, you can add the code below to the `app.config.ts` by replacing `your-locale` placeholder with a correct locale name. ```ts //app.config.ts import { storeLocaleData } from "@abp/ng.core/locale"; import( /* webpackChunkName: "_locale-your-locale-js"*/ /* webpackMode: "eager" */ "@angular/common/locales/your-locale.js" ).then((m) => storeLocaleData(m.default, "your-locale")); ``` In a Webpack project, you can also configure a custom `registerLocale` function and pass it to the ABP Core provider options: ```ts // register-locale.ts import { differentLocales } from "@abp/ng.core"; export function registerLocale(locale: string) { return import( /* webpackChunkName: "_locale-[request]"*/ /* webpackInclude: /[/\\](en|fr).js/ */ /* webpackExclude: /[/\\]global|extra/ */ `@angular/common/locales/${differentLocales[locale] || locale}.js` ); } // app.config.ts import { registerLocale } from "./register-locale"; export const appConfig: ApplicationConfig = { providers: [ // ... provideAbpCore( withOptions({ // ..., registerLocaleFn: registerLocale, }) ), //... ], }; ``` After adding a custom `registerLocale` function, only the **`en`** and **`fr`** locale files will be created as separate chunks. This happens because only these locales are included in the **`webpackInclude`** configuration. ![locale chunks](https://user-images.githubusercontent.com/34455572/98203212-acaa2100-1f44-11eb-85af-4eb66d296326.png) The locale files that you added to the `webpackInclude` magic comment will be included in the bundle. ## See Also - [Localization in ASP.NET Core](../../fundamentals/localization.md) - [Video tutorial](https://abp.io/video-courses/essentials/localization)