From c3ab7e1045fba3ff97ac8e58cd8c1872309dca5a Mon Sep 17 00:00:00 2001 From: "mathias.chouet" <mathias.chouet@irstea.fr> Date: Tue, 24 Sep 2019 17:35:56 +0200 Subject: [PATCH] Fix translation in jet-chart --- .../jet-trajectory-chart.component.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/components/jet-trajectory-chart/jet-trajectory-chart.component.ts b/src/app/components/jet-trajectory-chart/jet-trajectory-chart.component.ts index e71fc2cd8..7143ca68a 100644 --- a/src/app/components/jet-trajectory-chart/jet-trajectory-chart.component.ts +++ b/src/app/components/jet-trajectory-chart/jet-trajectory-chart.component.ts @@ -214,19 +214,19 @@ export class JetTrajectoryChartComponent extends ResultsComponent { } public get uitextResetZoomTitle() { - return this.intlService.localizeText("INFO_GRAPH_BUTTON_TITLE_RESET_ZOOM"); + return this.intlService.localizeText("INFO_CHART_BUTTON_TITLE_RESET_ZOOM"); } public get uitextExportImageTitle() { - return this.intlService.localizeText("INFO_GRAPH_BUTTON_TITLE_EXPORT_IMAGE"); + return this.intlService.localizeText("INFO_CHART_BUTTON_TITLE_EXPORT_IMAGE"); } public get uitextEnterFSTitle() { - return this.intlService.localizeText("INFO_GRAPH_BUTTON_TITLE_ENTER_FS"); + return this.intlService.localizeText("INFO_CHART_BUTTON_TITLE_ENTER_FS"); } public get uitextExitFSTitle() { - return this.intlService.localizeText("INFO_GRAPH_BUTTON_TITLE_EXIT_FS"); + return this.intlService.localizeText("INFO_CHART_BUTTON_TITLE_EXIT_FS"); } private getYSeries(): IYSeries[] { -- GitLab