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

Commit 3a112a3

Browse files
add chrome dedug task
1 parent b58b1e8 commit 3a112a3

3 files changed

Lines changed: 484 additions & 2 deletions

File tree

src/Frontend/Jp.AdminUI/.vscode/tasks.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@
77
"type": "npm",
88
"script": "e2e",
99
"problemMatcher": []
10-
}
10+
},
11+
{
12+
"type": "npm",
13+
"script": "start",
14+
"problemMatcher": []
15+
},
1116
]
1217
}

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

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

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

99
private availablelangs = [
10+
{ code: "el", text: "Greek"},
1011
{ code: "en", text: "English" },
1112
{ code: "es", text: "Spanish" },
1213
{ code: "pt", text: "Portuguese" },
@@ -15,6 +16,7 @@ export class TranslatorService {
1516
{ code: "ru", text: "Russian" },
1617
{ code: "zh-cn", text: "Chinese Simplified" },
1718
{ code: "zh-tw", text: "Chinese Traditional" },
19+
1820
];
1921

2022
constructor(public translate: TranslateService) {

0 commit comments

Comments
 (0)