Transloco Locale L10N
This plugin provides localization(l10n) support for Transloco.
Localization refers to the adaptation of a product, application or document content to meet the language, cultural and other requirements of a specific target market (a locale).
Table of Contents
Installation
npm i @ngneat/transloco-locale
Setup
Inject TranslocoLocaleModule
along with TranslocoModule
into AppModule
:
import { TranslocoLocaleModule } from '@ngneat/transloco-locale';
@NgModule({
imports: [TranslocoModule, TranslocoLocaleModule.init()],
bootstrap: [AppComponent]
})
export class AppModule {}
Localization Pipes
The library provides localization pipes base on the native Javascript's API.
Date Pipe
Transform a date into the locale's date format.
The date expression could be: a Date
object, a number
(milliseconds since UTC epoch), or an ISO string.
<span> {{ date | translocoDate }} </span>
<span>
{{ date | translocoDate: { dateStyle: 'medium', timeStyle: 'medium' }}
</span>
<span>
{{ date | translocoDate: { timeZone: 'UTC', timeStyle: 'full' } }}
</span>
<span>
{{ 1 | translocoDate: { dateStyle: 'medium' } }}
</span>
<span>
{{ '2019-02-08' | translocoDate: { dateStyle: 'medium' } }}
</span>
Currency Pipe
Transform a given number into the locale's currency format.
The library comes out of the box with locale currency mapping, so once the locale is change the currency will automatically display the right currency.
The currency mapping could be customise if needed through the config, and could be provided by LOCALE_CURRENCY_MAPPING
token.
<span> {{ 1000000 | translocoCurrency }} </span>
<span>
{{ 1000000 | translocoCurrency: 'name' }}
</span>
<span>
{{ 1000000 | translocoCurrency: 'symbol' : { minimumFractionDigits: 0 } }}
</span>
Decimal Pipe
Transform a given number into current locale's decimal number format.
<span>
{{ 1234567890 | translocoDecimal }}
</span>
<span>
{{ 1234567890 | translocoDecimal: {useGrouping: false} }}
</span>
Percent Pipe
Transform a given number into current locale's percent number format.
<span> 1 | translocoPercent </span>
<span> "1" | translocoPercent </span>
Browser Support
Setting Locale
The library provides three different ways to set the locale.
Translation file names:
Using locale format for the translation files will automatically declare the locale on langChanges$
event:
├─ i18n/
├─ en-US.json
├─ en-GB.json
├─ es-ES.json
Language Locale Mapping:
Users who don't have more than one locale per language
could provide a language to locale mapping object using the config's langToLocaleMapping
:
@NgModule({
imports: [
TranslocoLocaleModule.init({
langToLocaleMapping: {
en: 'en-US',
es: 'es-ES'
}
})
],
bootstrap: [AppComponent]
})
export class AppModule {}
Manually Setting Locale:
The third option in manually setting the locale, this could be done by calling setLocale
method from localeService
:
export class AppComponent {
constructor(private service: TranslocoLocaleService) {}
ngOnInit() {
this.service.setLocale('en-US');
}
}
Configuration Options
Let's go over each one of the config
options:
localeConfig?
: Declare the default configuration of the locale's formatting. A general configuration could be set using the global
property, for a configuration by locale use localeBased
property (default value determine by the native Javascript's API).defaultLocale?
: The default locale formatted in BCP 47 (default value: en-US
),langToLocaleMapping?
: A key value object
that maps Transloco language to it's Locale (default value: {}
).localeToCurrencyMapping?
: A key value object
that maps the Locale to it's currency (formatted in ISO 4217) (the library provide a default value with all of the existing mapping).
Locale Format Options
There are two types of formatting options, one for date
and one for number
.
The formatted options could be declared in three levels
- In the module's configuration (as mentioned above):
import { TranslocoLocaleModule } from '@ngneat/transloco-locale';
const globalFormatConfig = {
date: {
dateStyle: 'long',
timeStyle: 'long'
}
};
const esESFormatConfig = {
date: {
timeStyle: 'medium'
},
currency: {
minimumFractionDigits: 0
}
};
@NgModule({
imports: [
TranslocoLocaleModule.init({
localeConfig: {
global: globalFormatConfig,
localeBased: {
'es-ES': esESFormatConfig
}
}
})
]
})
export class AppModule {}
- It could be set in the component's providers using
LOCALE_CONFIG
token:
@Component({
selector: 'my-comp',
templateUrl: './my-comp.component.html',
providers: [
{
provide: LOCALE_CONFIG,
useValue: localeConfig
}
]
})
export class MyComponent {}
- We can pass it to each pipe in the HTML template:
<span>
{{ date | translocoDate: { dateStyle: 'medium', timeStyle: 'medium' }}
</span>
<span>
{{ number | translocoDecimal: {useGrouping: false} }}
</span>
Note the format option of the global, locale's format and the one's being passed in the template, will be merged. While the template is the stronger one and then the locale and the global.
Number Format Options
useGrouping
- Whether to use grouping separators, such as thousands separators or thousand/lakh/crore separators. Possible values are true and false; the (default is true).minimumIntegerDigits
- The minimum number of integer digits to use. Possible values are from 1 to 21 (default is 1).minimumFractionDigits
- The minimum number of fraction digits to use. Possible values are from 0 to 20 (default is 0).maximumFractionDigits
- The maximum number of fraction digits to use. Possible values are from 0 to 20 (default is 3).minimumSignificantDigits
- The minimum number of significant digits to use. Possible values are from 1 to 21 (default is 1).maximumSignificantDigits
- The maximum number of significant digits to use. Possible values are from 1 to 21 (default is 21).
Date Format Options
dateStyle
- The date formatting style.timeStyle
- The time formatting style.timeZone
- The time zone to use. The only value implementations must recognize is "UTC"; the default is the runtime's default time zone. Implementations may also recognize the time zone names of the IANA time zone database, such as "Asia/Shanghai", "Asia/Kolkata", "America/New_York".
Service API
localeChanges$
- Observable of the active locale.getLocale
- Gets the active locale.setLocale
- Sets the active locale.