|
|
@@ -69,8 +69,11 @@ export class AppService {
|
|
|
module: 'pra.adjuster',
|
|
|
order: 0,
|
|
|
title: () =>
|
|
|
- this.hsLanguageService.getTranslation('ADJUSTER.adjustFactors'),
|
|
|
- description: 'Attractiveness',
|
|
|
+ this.hsLanguageService.getTranslation('ADJUSTER.adjustFactorsSimple'),
|
|
|
+ description: () =>
|
|
|
+ this.hsLanguageService.getTranslation(
|
|
|
+ 'ADJUSTER.adjustFactorsSimpleDescription'
|
|
|
+ ),
|
|
|
icon: 'icon-analytics-piechart',
|
|
|
});
|
|
|
this.hsPanelContainerService.create(AdjusterSimplePanelComponent, {});
|
|
|
@@ -80,7 +83,10 @@ export class AppService {
|
|
|
order: 0,
|
|
|
title: () =>
|
|
|
this.hsLanguageService.getTranslation('ADJUSTER.adjustFactors'),
|
|
|
- description: 'Play with attractiveness factors',
|
|
|
+ description: () =>
|
|
|
+ this.hsLanguageService.getTranslation(
|
|
|
+ 'ADJUSTER.adjustFactorsDescription'
|
|
|
+ ),
|
|
|
icon: 'icon-settingsandroid',
|
|
|
});
|
|
|
this.hsPanelContainerService.create(AdjusterAdvancedPanelComponent, {});
|