X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fapp.module.ts;h=f790a684865295559747f4144913ee6c51ef1689;hb=83e74670419d8faf005d36ef2e8b8ac3166012d7;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..f790a6848 100644 --- a/client/src/app/app.module.ts +++ b/client/src/app/app.module.ts @@ -1,18 +1,19 @@ import 'focus-visible' +import { environment } from 'src/environments/environment' import { APP_BASE_HREF, registerLocaleData } from '@angular/common' -import { LOCALE_ID, NgModule, TRANSLATIONS, TRANSLATIONS_FORMAT } from '@angular/core' +import { NgModule } from '@angular/core' import { BrowserModule } from '@angular/platform-browser' +import { ServiceWorkerModule } from '@angular/service-worker' 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 { AppRoutingModule } from './app-routing.module' import { AppComponent } from './app.component' import { CoreModule } from './core' import { EmptyComponent } from './empty.component' import { HeaderComponent, SearchTypeaheadComponent, SuggestionComponent } from './header' import { HighlightPipe } from './header/highlight.pipe' -import { AvatarNotificationComponent, LanguageChooserComponent, MenuComponent } from './menu' +import { LanguageChooserComponent, MenuComponent, NotificationComponent } from './menu' import { ConfirmComponent } from './modal/confirm.component' import { CustomModalComponent } from './modal/custom-modal.component' import { InstanceConfigWarningModalComponent } from './modal/instance-config-warning-modal.component' @@ -36,7 +37,7 @@ registerLocaleData(localeOc, 'oc') MenuComponent, LanguageChooserComponent, QuickSettingsModalComponent, - AvatarNotificationComponent, + NotificationComponent, HeaderComponent, SearchTypeaheadComponent, SuggestionComponent, @@ -50,6 +51,7 @@ registerLocaleData(localeOc, 'oc') imports: [ BrowserModule, + ServiceWorkerModule.register('ngsw-worker.js', { enabled: environment.production }), CoreModule, SharedMainModule, @@ -81,21 +83,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 {}