]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+videos/+video-edit/shared/video-edit.module.ts
Update build steps for localization
[github/Chocobozzz/PeerTube.git] / client / src / app / +videos / +video-edit / shared / video-edit.module.ts
1 import { CalendarModule } from 'primeng/calendar'
2 import { NgModule } from '@angular/core'
3 import { SharedFormModule } from '@app/shared/shared-forms'
4 import { SharedGlobalIconModule } from '@app/shared/shared-icons'
5 import { SharedMainModule } from '@app/shared/shared-main'
6 import { I18nPrimengCalendarService } from './i18n-primeng-calendar.service'
7 import { VideoCaptionAddModalComponent } from './video-caption-add-modal.component'
8 import { VideoEditComponent } from './video-edit.component'
9
10 @NgModule({
11 imports: [
12 CalendarModule,
13
14 SharedMainModule,
15 SharedFormModule,
16 SharedGlobalIconModule
17 ],
18
19 declarations: [
20 VideoEditComponent,
21 VideoCaptionAddModalComponent
22 ],
23
24 exports: [
25 CalendarModule,
26
27 SharedMainModule,
28 SharedFormModule,
29 SharedGlobalIconModule,
30
31 VideoEditComponent
32 ],
33
34 providers: [
35 I18nPrimengCalendarService
36 ]
37 })
38 export class VideoEditModule { }