[ADF-2484] moved translation into the context menu action (#3092)

This commit is contained in:
Vito
2018-03-19 15:57:37 +00:00
committed by Eugenio Romano
parent 1c2a959a23
commit 8ead17685a
4 changed files with 16 additions and 12 deletions

View File

@@ -18,6 +18,7 @@
import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { MaterialModule } from '../material.module';
import { TranslateModule } from '@ngx-translate/core';
import { ContextMenuHolderComponent } from './context-menu-holder.component';
import { ContextMenuDirective } from './context-menu.directive';
@@ -26,7 +27,8 @@ import { ContextMenuService } from './context-menu.service';
@NgModule({
imports: [
CommonModule,
MaterialModule
MaterialModule,
TranslateModule
],
declarations: [
ContextMenuHolderComponent,