Skip to content
This repository was archived by the owner on Aug 1, 2021. It is now read-only.

Commit 2b80bc6

Browse files
updated el.json and fixed some files
1 parent 60c6b60 commit 2b80bc6

File tree

4 files changed

+108
-109
lines changed

4 files changed

+108
-109
lines changed

src/Frontend/Jp.AdminUI/e2e/app.po.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { browser, by, element } from "protractor";
22

33
export class JpProjectWebAppPage {
44
navigateTo() {
5-
return browser.get("http://localhost:4200/");
5+
return browser.get("/");
66
}
77

88
getUrl() {

src/Frontend/Jp.AdminUI/src/app/core/translator/translator.service.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,9 @@ import { TranslateService } from "@ngx-translate/core";
44
@Injectable()
55
export class TranslatorService {
66

7-
private defaultLanguage: string = "el";
7+
private defaultLanguage: string = "en";
88

99
private availablelangs = [
10-
{ code: "el", text: "Greek"},
1110
{ code: "en", text: "English" },
1211
{ code: "es", text: "Spanish" },
1312
{ code: "pt", text: "Portuguese" },
@@ -16,7 +15,7 @@ export class TranslatorService {
1615
{ code: "ru", text: "Russian" },
1716
{ code: "zh-cn", text: "Chinese Simplified" },
1817
{ code: "zh-tw", text: "Chinese Traditional" },
19-
18+
{ code: "el", text: "Greek"}
2019
];
2120

2221
constructor(public translate: TranslateService) {

0 commit comments

Comments
 (0)