UNPKG

pretty-ngx-translate

Version:

The internationalization (i18n) library for Angular 2+

80 lines (79 loc) 3.6 kB
import { NgModule } from "@angular/core"; import { TranslateLoader, TranslateFakeLoader } from "./src/translate.loader"; import { TranslateService } from "./src/translate.service"; import { MissingTranslationHandler, FakeMissingTranslationHandler } from "./src/missing-translation-handler"; import { TranslateParser, TranslateDefaultParser } from "./src/translate.parser"; import { TranslateCompiler, TranslateFakeCompiler } from "./src/translate.compiler"; import { TranslateDirective } from "./src/translate.directive"; import { TranslatePipe } from "./src/translate.pipe"; import { TranslateStore } from "./src/translate.store"; import { USE_STORE } from "./src/translate.service"; import { USE_DEFAULT_LANG } from "./src/translate.service"; export * from "./src/translate.loader"; export * from "./src/translate.service"; export * from "./src/missing-translation-handler"; export * from "./src/translate.parser"; export * from "./src/translate.compiler"; export * from "./src/translate.directive"; export * from "./src/translate.pipe"; var TranslateModule = (function () { function TranslateModule() { } /** * Use this method in your root module to provide the TranslateService * @param {TranslateModuleConfig} config * @returns {ModuleWithProviders} */ TranslateModule.forRoot = function (config) { if (config === void 0) { config = {}; } return { ngModule: TranslateModule, providers: [ config.loader || { provide: TranslateLoader, useClass: TranslateFakeLoader }, config.compiler || { provide: TranslateCompiler, useClass: TranslateFakeCompiler }, config.parser || { provide: TranslateParser, useClass: TranslateDefaultParser }, config.missingTranslationHandler || { provide: MissingTranslationHandler, useClass: FakeMissingTranslationHandler }, TranslateStore, { provide: USE_STORE, useValue: config.isolate }, { provide: USE_DEFAULT_LANG, useValue: config.useDefaultLang }, TranslateService ] }; }; /** * Use this method in your other (non root) modules to import the directive/pipe * @param {TranslateModuleConfig} config * @returns {ModuleWithProviders} */ TranslateModule.forChild = function (config) { if (config === void 0) { config = {}; } return { ngModule: TranslateModule, providers: [ config.loader || { provide: TranslateLoader, useClass: TranslateFakeLoader }, config.compiler || { provide: TranslateCompiler, useClass: TranslateFakeCompiler }, config.parser || { provide: TranslateParser, useClass: TranslateDefaultParser }, config.missingTranslationHandler || { provide: MissingTranslationHandler, useClass: FakeMissingTranslationHandler }, { provide: USE_STORE, useValue: config.isolate }, { provide: USE_DEFAULT_LANG, useValue: config.useDefaultLang }, TranslateService ] }; }; return TranslateModule; }()); export { TranslateModule }; TranslateModule.decorators = [ { type: NgModule, args: [{ declarations: [ TranslatePipe, TranslateDirective ], exports: [ TranslatePipe, TranslateDirective ] },] }, ]; /** @nocollapse */ TranslateModule.ctorParameters = function () { return []; };