Help Angular by taking a 1 minute survey!Go to surveyHome

TRANSLATIONS

Use this token at bootstrap to provide the content of your translation file (xtb, xlf or xlf2) when you want to translate your application in another language.

See more...

const TRANSLATIONS: InjectionToken<string>;
      
      const TRANSLATIONS: InjectionToken<string>;
    

Description

See the i18n guide for more information.

Usage notes

Example

import { TRANSLATIONS } from '@angular/core'; import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; import { AppModule } from './app/app.module'; // content of your translation file const translations = '....'; platformBrowserDynamic().bootstrapModule(AppModule, { providers: [{provide: TRANSLATIONS, useValue: translations }] });
      
      import { TRANSLATIONS } from '@angular/core';
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
import { AppModule } from './app/app.module';

// content of your translation file
const translations = '....';

platformBrowserDynamic().bootstrapModule(AppModule, {
  providers: [{provide: TRANSLATIONS, useValue: translations }]
});