diff --git a/app/src/assets/i18n/en.json b/app/src/assets/i18n/en.json index 0a1b4c345..6fd65726e 100644 --- a/app/src/assets/i18n/en.json +++ b/app/src/assets/i18n/en.json @@ -395,6 +395,7 @@ }, "INFO_DRAWER": { "TITLE": "Details", + "DATA_LOADING": "Data is loading", "TABS": { "PROPERTIES": "Properties", "LIBRARY_PROPERTIES": "About", diff --git a/projects/aca-shared/src/lib/components/info-drawer/info-drawer.component.html b/projects/aca-shared/src/lib/components/info-drawer/info-drawer.component.html index 8cc64ea86..954d5bc62 100644 --- a/projects/aca-shared/src/lib/components/info-drawer/info-drawer.component.html +++ b/projects/aca-shared/src/lib/components/info-drawer/info-drawer.component.html @@ -1,5 +1,5 @@
- +
diff --git a/projects/aca-shared/src/lib/components/info-drawer/shared-info-drawer.module.ts b/projects/aca-shared/src/lib/components/info-drawer/shared-info-drawer.module.ts index c47857c19..88c46838f 100644 --- a/projects/aca-shared/src/lib/components/info-drawer/shared-info-drawer.module.ts +++ b/projects/aca-shared/src/lib/components/info-drawer/shared-info-drawer.module.ts @@ -30,9 +30,10 @@ import { InfoDrawerModule, ToolbarModule } from '@alfresco/adf-core'; import { ExtensionsModule } from '@alfresco/adf-extensions'; import { MatProgressBarModule } from '@angular/material/progress-bar'; import { SharedToolbarModule } from '../tool-bar/shared-toolbar.module'; +import { TranslateModule } from '@ngx-translate/core'; @NgModule({ - imports: [CommonModule, InfoDrawerModule, MatProgressBarModule, ExtensionsModule, ToolbarModule, SharedToolbarModule], + imports: [CommonModule, InfoDrawerModule, MatProgressBarModule, ExtensionsModule, ToolbarModule, SharedToolbarModule, TranslateModule], declarations: [InfoDrawerComponent], exports: [InfoDrawerComponent] })