X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fapp.module.ts;h=37119944227d427107d979862c023594f84fac76;hb=14d1b7b95a096b933ea353a715f4868a89dc5822;hp=77d68a4ec1ad5a236b16d684a2b2f56b00aade64;hpb=63ac2857aa6550232a1727a395c40e722c32710d;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/app.module.ts b/client/src/app/app.module.ts index 77d68a4ec..371199442 100644 --- a/client/src/app/app.module.ts +++ b/client/src/app/app.module.ts @@ -1,12 +1,11 @@ -import { NgModule } from '@angular/core' +import { LOCALE_ID, NgModule, TRANSLATIONS, TRANSLATIONS_FORMAT } from '@angular/core' import { BrowserModule } from '@angular/platform-browser' -import { AboutModule } from '@app/about' import { ServerService } from '@app/core' import { ResetPasswordModule } from '@app/reset-password' import { MetaLoader, MetaModule, MetaStaticLoader, PageTitlePositioning } from '@ngx-meta/core' - -import { AccountModule } from './account' +import { ClipboardModule } from 'ngx-clipboard' +import 'focus-visible' import { AppRoutingModule } from './app-routing.module' import { AppComponent } from './app.component' @@ -17,6 +16,10 @@ import { MenuComponent } from './menu' import { SharedModule } from './shared' import { SignupModule } from './signup' import { VideosModule } from './videos' +import { buildFileLocale, getCompleteLocale, isDefaultLocale } from '../../../shared/models/i18n' +import { getDevLocale, isOnDevLocale } from '@app/shared/i18n/i18n-utils' +import { LanguageChooserComponent } from '@app/menu/language-chooser.component' +import { SearchModule } from '@app/search' export function metaFactory (serverService: ServerService): MetaLoader { return new MetaStaticLoader({ @@ -36,31 +39,53 @@ export function metaFactory (serverService: ServerService): MetaLoader { AppComponent, MenuComponent, + LanguageChooserComponent, HeaderComponent ], imports: [ BrowserModule, + // FIXME: https://github.com/maxisam/ngx-clipboard/issues/133 + ClipboardModule, CoreModule, SharedModule, - AppRoutingModule, - - AccountModule, CoreModule, LoginModule, ResetPasswordModule, SignupModule, + SearchModule, SharedModule, VideosModule, - AboutModule, MetaModule.forRoot({ provide: MetaLoader, useFactory: (metaFactory), deps: [ ServerService ] - }) + }), + + AppRoutingModule // Put it after all the module because it has the 404 route ], - providers: [ ] + providers: [ + { + provide: TRANSLATIONS, + useFactory: (locale: string) => { + // On dev mode, test localization + if (isOnDevLocale()) { + locale = buildFileLocale(getDevLocale()) + return require(`raw-loader!../locale/target/angular_${locale}.xml`) + } + + // Default locale, nothing to translate + const completeLocale = getCompleteLocale(locale) + if (isDefaultLocale(completeLocale)) return '' + + const fileLocale = buildFileLocale(locale) + return require(`raw-loader!../locale/target/angular_${fileLocale}.xml`) + }, + deps: [ LOCALE_ID ] + }, + { provide: TRANSLATIONS_FORMAT, useValue: 'xlf' } + ] }) export class AppModule {}