@codingame/monaco-vscode-localization-service-override 26.0.1 → 26.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codingame/monaco-vscode-localization-service-override",
|
|
3
|
-
"version": "26.0
|
|
3
|
+
"version": "26.1.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "VSCode public API plugged on the monaco editor - localization service-override",
|
|
6
6
|
"keywords": [],
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
},
|
|
16
16
|
"type": "module",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@codingame/monaco-vscode-api": "26.0
|
|
18
|
+
"@codingame/monaco-vscode-api": "26.1.0"
|
|
19
19
|
},
|
|
20
20
|
"main": "index.js",
|
|
21
21
|
"module": "index.js",
|
|
@@ -25,16 +25,16 @@ let AbstractLocaleService = class AbstractLocaleService {
|
|
|
25
25
|
const restartDialog = await this.dialogService.confirm({
|
|
26
26
|
type: "info",
|
|
27
27
|
message: ( localize(
|
|
28
|
-
|
|
28
|
+
14575,
|
|
29
29
|
"To change the display language, {0} needs to reload",
|
|
30
30
|
this.productService.nameLong
|
|
31
31
|
)),
|
|
32
32
|
detail: ( localize(
|
|
33
|
-
|
|
33
|
+
14576,
|
|
34
34
|
"Press the reload button to refresh the page and set the display language to {0}.",
|
|
35
35
|
languagePackItem.label
|
|
36
36
|
)),
|
|
37
|
-
primaryButton: ( localize(
|
|
37
|
+
primaryButton: ( localize(14577, "&&Reload"))
|
|
38
38
|
});
|
|
39
39
|
if (restartDialog.confirmed) {
|
|
40
40
|
this.hostService.restart();
|
|
@@ -48,15 +48,15 @@ let AbstractLocaleService = class AbstractLocaleService {
|
|
|
48
48
|
const restartDialog = await this.dialogService.confirm({
|
|
49
49
|
type: "info",
|
|
50
50
|
message: ( localize(
|
|
51
|
-
|
|
51
|
+
14578,
|
|
52
52
|
"To change the display language, {0} needs to reload",
|
|
53
53
|
this.productService.nameLong
|
|
54
54
|
)),
|
|
55
55
|
detail: ( localize(
|
|
56
|
-
|
|
56
|
+
14579,
|
|
57
57
|
"Press the reload button to refresh the page and use your browser's language."
|
|
58
58
|
)),
|
|
59
|
-
primaryButton: ( localize(
|
|
59
|
+
primaryButton: ( localize(14577, "&&Reload"))
|
|
60
60
|
});
|
|
61
61
|
if (restartDialog.confirmed) {
|
|
62
62
|
this.hostService.restart();
|