X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fapp.module.ts;h=5c46161532442980ea9cb48d67cd4a66324e55f6;hb=b74911a0112fc63b047d8c60020ded99f6e709d3;hp=9698de275bc585b41ef7d50406a0d2208c480fae;hpb=f0b56fdd0ce063315dffdfb718204564834f7135;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/app.module.ts b/client/src/app/app.module.ts index 9698de275..5c4616153 100644 --- a/client/src/app/app.module.ts +++ b/client/src/app/app.module.ts @@ -5,7 +5,7 @@ import { BrowserModule } from '@angular/platform-browser' import { ServerService } from '@app/core' import localeOc from '@app/helpers/locales/oc' import { MetaLoader, MetaModule, MetaStaticLoader, PageTitlePositioning } from '@ngx-meta/core' -import { buildFileLocale, getCompleteLocale, isDefaultLocale } from '@shared/models' +import { buildFileLocale, getCompleteLocale, isDefaultLocale } from '@shared/core-utils/i18n' import { AppRoutingModule } from './app-routing.module' import { AppComponent } from './app.component' import { CoreModule } from './core' @@ -81,21 +81,7 @@ registerLocaleData(localeOc, 'oc') { provide: APP_BASE_HREF, useValue: '/' - }, - - { - provide: TRANSLATIONS, - useFactory: (locale: string) => { - // Default locale, nothing to translate - const completeLocale = getCompleteLocale(locale) - if (isDefaultLocale(completeLocale)) return '' - - const fileLocale = buildFileLocale(locale) - return require(`raw-loader!../locale/angular.${fileLocale}.xlf`).default - }, - deps: [ LOCALE_ID ] - }, - { provide: TRANSLATIONS_FORMAT, useValue: 'xlf' } + } ] }) export class AppModule {}