[ADF-1356] Single configuration of i18n service per project (#2199)

* rework i18n layer init

* fix unit tests

* fix tests

* test fixes

* remove obsolete tests
This commit is contained in:
Denys Vuika
2017-08-11 10:55:52 +01:00
committed by Mario Romano
parent bb53844f92
commit 003b0c133b
85 changed files with 333 additions and 431 deletions

View File

@@ -16,7 +16,7 @@
*/
import { ModuleWithProviders, NgModule } from '@angular/core';
import { CoreModule } from 'ng2-alfresco-core';
import { CoreModule, TRANSLATION_PROVIDER } from 'ng2-alfresco-core';
import { DataTableModule } from 'ng2-alfresco-datatable';
import { BreadcrumbComponent } from './src/components/breadcrumb/breadcrumb.component';
@@ -94,7 +94,15 @@ export const DOCUMENT_LIST_PROVIDERS: any[] = [
...DOCUMENT_LIST_DIRECTIVES
],
providers: [
...DOCUMENT_LIST_PROVIDERS
...DOCUMENT_LIST_PROVIDERS,
{
provide: TRANSLATION_PROVIDER,
multi: true,
useValue: {
name: 'ng2-alfresco-documentlist',
source: 'assets/ng2-alfresco-documentlist'
}
}
],
entryComponents: [
ContentNodeSelectorComponent