|
|
@@ -5,6 +5,9 @@ import { AppComponent } from './app.component';
|
|
|
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
|
|
|
|
|
|
import { SharedModule } from './components/resources/shared/shared.module';
|
|
|
+import { MatPaginatorIntl } from '@angular/material/paginator';
|
|
|
+import { getSpanishPaginatorIntl } from '../app/components/resources/shared/spanish-paginator';
|
|
|
+
|
|
|
import { APP_ROUTING } from 'src/app/app.routes';
|
|
|
import { HashLocationStrategy, LocationStrategy } from '@angular/common';
|
|
|
|
|
|
@@ -108,7 +111,8 @@ import { MESMHSFORMDAYSComponent } from './components/mes/mesmhs/mesmhs-form-day
|
|
|
],
|
|
|
providers: [
|
|
|
[{ provide: DEFAULT_TIMEOUT, useValue: 5000 }],
|
|
|
- {provide: LocationStrategy, useClass: HashLocationStrategy}
|
|
|
+ { provide: LocationStrategy, useClass: HashLocationStrategy},
|
|
|
+ { provide: MatPaginatorIntl, useValue: getSpanishPaginatorIntl() }
|
|
|
],
|
|
|
bootstrap: [AppComponent]
|
|
|
})
|