|
@@ -1,5 +1,6 @@
|
|
|
import {Injectable} from '@angular/core';
|
|
import {Injectable} from '@angular/core';
|
|
|
|
|
|
|
|
|
|
+import {HsLanguageService} from 'hslayers-ng/components/language/language.service';
|
|
|
import {HsLayoutService} from 'hslayers-ng/components/layout/layout.service';
|
|
import {HsLayoutService} from 'hslayers-ng/components/layout/layout.service';
|
|
|
import {HsPanelContainerService} from 'hslayers-ng/components/layout/panels/panel-container.service';
|
|
import {HsPanelContainerService} from 'hslayers-ng/components/layout/panels/panel-container.service';
|
|
|
import {HsSidebarService} from 'hslayers-ng/components/sidebar/sidebar.service';
|
|
import {HsSidebarService} from 'hslayers-ng/components/sidebar/sidebar.service';
|
|
@@ -9,10 +10,12 @@ import {AdjusterComponent} from './adjuster/adjuster.component';
|
|
|
@Injectable({providedIn: 'root'})
|
|
@Injectable({providedIn: 'root'})
|
|
|
export class AppService {
|
|
export class AppService {
|
|
|
constructor(
|
|
constructor(
|
|
|
|
|
+ public hsLanguageService: HsLanguageService,
|
|
|
public hsLayoutService: HsLayoutService,
|
|
public hsLayoutService: HsLayoutService,
|
|
|
public hsPanelContainerService: HsPanelContainerService,
|
|
public hsPanelContainerService: HsPanelContainerService,
|
|
|
public hsSidebarService: HsSidebarService
|
|
public hsSidebarService: HsSidebarService
|
|
|
) {
|
|
) {
|
|
|
|
|
+ this.hsLanguageService.setLanguage('cs');
|
|
|
this.init();
|
|
this.init();
|
|
|
}
|
|
}
|
|
|
|
|
|