TRANSLATIONS_FORMAT
在引导程序中提供此令牌以设置 TRANSLATIONS
的格式: xtb
、xlf
或 xlf2
。
Provide this token at bootstrap to set the format of your TRANSLATIONS
: xtb
, xlf
or xlf2
.
const TRANSLATIONS_FORMAT: InjectionToken<string>;
说明
有关更多信息,请参见《i18n 指南》。
See the i18n guide for more information.
Further information available in the Usage Notes...
使用说明
例子
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' }]
});