Skip to content
Snippets Groups Projects
Commit 1f8422eb authored by Mathias Chouet's avatar Mathias Chouet Committed by mathias.chouet
Browse files

Fix missing translation

parent 9b464d4d
No related branches found
No related tags found
1 merge request!99Devel - PAR
......@@ -77,7 +77,11 @@ describe("ngHyd − check translation of all calculators", () => {
}
// check absence of "*** message not found" in whole DOM
expect(await browser.getPageSource()).not.toContain("*** message not found");
const ps = await browser.getPageSource();
expect(ps).not.toContain("*** message not found");
/* const pos = ps.indexOf("*** message not found");
const bout = ps.substring(pos - 50, pos + 50);
console.log("------------ BOUT ---------------", bout); */
// empty session
await navBar.clickMenuButton();
......
......@@ -814,7 +814,7 @@ export class GenericCalculatorComponent implements OnInit, DoCheck, AfterViewChe
public get uitextGenerateRuSpTitle(): string {
if (! this.generateRuSpEnabled) {
return this.intlService.localizeText("INFO_CALCULER_D_ABORD");
return this.intlService.localizeText("INFO_CALCULATE_FIRST");
} else {
return "";
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment