Skip to content

Commit 1437aad

Browse files
committed
feat(localization): Add localization support
Added zh translations Signed-off-by: Gordon Smith <[email protected]>
1 parent d8f48a6 commit 1437aad

30 files changed

+841
-2511
lines changed

.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
1+
/.eclcc
12
/dist
23
/grammar
4+
/images
35
/lib*
46
/node_modules
7+
/tests
8+
/tmp
59
/types
10+
tmp*.*
611
.vscode-test
712
*.vsix
813
*.log

.vscode/launch.json

+7-12
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,13 @@
1111
],
1212
"configurations": [
1313
{
14-
"name": "play-hthor-submit",
15-
"type": "ecl",
14+
"name": "NLS Util",
15+
"program": "${workspaceFolder}/lib-util/vscode-ecl/util/index.js",
1616
"request": "launch",
17-
"protocol": "https",
18-
"serverAddress": "play.hpccsystems.com",
19-
"port": 18010,
20-
"targetCluster": "hthor",
21-
"rejectUnauthorized": false,
22-
"resultLimit": 100,
23-
"timeoutSecs": 60,
24-
"user": "vscode_user",
25-
"password": ""
17+
"skipFiles": [
18+
"<node_internals>/**"
19+
],
20+
"type": "pwa-node"
2621
},
2722
{
2823
"name": "Launch Extension",
@@ -31,7 +26,7 @@
3126
// path to VSCode executable
3227
"runtimeExecutable": "${execPath}",
3328
"args": [
34-
//"--disable-extensions",
29+
"--disable-extensions",
3530
"--extensionDevelopmentPath=${workspaceRoot}",
3631
//"--enable-proposed-api",
3732
"C:\\Users\\gordon\\git\\tmp-ecl"

.vscodeignore

+1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,5 @@
1414
!kel.configuration.json
1515
!LICENSE
1616
!package.json
17+
!package.*.json
1718
!README.md

README.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,14 @@ This extension adds rich language support for [HPCC Systems](https://hpccsystems
1111

1212
## Recent Highlights
1313

14+
### v2.7.0
15+
16+
* Preliminary localisation support:
17+
* en
18+
* zh
19+
20+
![Version 2.7](resources/readme-v2_7.png)
21+
1422
### v2.6.0
1523

1624
* Added HPCC resources page:
@@ -152,7 +160,7 @@ The following Visual Studio Code settings are available for the ECL extension.
152160
// eclcc syntax check arguments.
153161
"ecl.eclccSyntaxArgs": [],
154162

155-
// Write eclcc logfile to specified file.
163+
// Write eclcc log file to specified file.
156164
"ecl.eclccLogFile": ""
157165

158166
// Run 'eclcc -syntax' on save.

0 commit comments

Comments
 (0)