TRANSLATIONS_FORMAT
Provide this token at bootstrap to set the format of your TRANSLATIONS
: xtb
, xlf
or xlf2
.
const TRANSLATIONS_FORMAT: InjectionToken<string>;
说明
See the i18n guide for more information.
使用说明
Example
import { TRANSLATIONS_FORMAT } from '@angular/core';
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
import { AppModule } from './app/app.module';
platformBrowserDynamic().bootstrapModule(AppModule, {
providers: [{provide: TRANSLATIONS_FORMAT, useValue: 'xlf' }]
});