填写这份《一分钟调查》,帮我们(开发组)做得更好!去填写Home

TRANSLATIONS_FORMAT

在引导程序中提供此令牌以设置 TRANSLATIONS的格式: xtbxlfxlf2

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' }]
});