-
Notifications
You must be signed in to change notification settings - Fork 141
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
89 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"Show all background commands.": "backgroundのすべてのコマンドを表示します。", | ||
"Background extension has been uninstalled. See you next time!": "Backgroundはアンインストールされています。また今度!", | ||
"Restart vscode": "重启 vscode", | ||
"Welcome to use background@{version}!": "ようこそbackground@{version}!", | ||
"More": "詳細", | ||
"Background has been disabled! Please restart.": "Backgroundは無効になっています!再起動してください。", | ||
"Configuration has been changed, click to update.": "構成が変更されたので、更新をクリックします。", | ||
"Update and restart": "更新と再起動", | ||
"Backup files failed to save.": "Backup files failed to save.", | ||
"Background has been changed! Please restart.": "Backgroundは変わった!再起動してください。" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"Show all background commands.": "Show all background commands.", | ||
"Background extension has been uninstalled. See you next time!": "Background extension has been uninstalled. See you next time!", | ||
"Restart vscode": "Restart vscode", | ||
"Welcome to use background@{version}!": "Welcome to use background@{version}!", | ||
"More": "More", | ||
"Background has been disabled! Please restart.": "Background has been disabled! Please restart.", | ||
"Configuration has been changed, click to update.": "Configuration has been changed, click to update.", | ||
"Update and restart": "Update and restart", | ||
"Backup files failed to save.": "Backup files failed to save.", | ||
"Background has been changed! Please restart.": "Background has been changed! Please restart." | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"Show all background commands.": "查看 background 所有命令。", | ||
"Background extension has been uninstalled. See you next time!": "Background 已经卸载,下次见!", | ||
"Restart vscode": "重启 vscode", | ||
"Welcome to use background@{version}!": "欢迎使用 background@{version}!", | ||
"More": "更多", | ||
"Background has been disabled! Please restart.": "Background 已经禁用! 请重启。", | ||
"Configuration has been changed, click to update.": "配置已改变,点击更新。", | ||
"Update and restart": "更新并重启", | ||
"Backup files failed to save.": "Backup files failed to save.", | ||
"Background has been changed! Please restart.": "Background 已经改变!请重启。" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,6 +34,7 @@ | |
"workspace" | ||
], | ||
"main": "./out/extension", | ||
"l10n": "./l10n", | ||
"contributes": { | ||
"commands": [ | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,16 @@ | ||
{ | ||
"compilerOptions": { | ||
"module": "Node16", | ||
"target": "ES2022", | ||
"outDir": "out", | ||
"lib": [ | ||
"ES2022" | ||
], | ||
"sourceMap": true, | ||
"rootDir": "src", | ||
"esModuleInterop": true, | ||
"strict": true /* enable all strict type-checking options */ | ||
/* Additional Checks */ | ||
// "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */ | ||
// "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */ | ||
// "noUnusedParameters": true, /* Report errors on unused parameters. */ | ||
} | ||
"compilerOptions": { | ||
"module": "Node16", | ||
"target": "ES2022", | ||
"outDir": "out", | ||
"lib": ["ES2022"], | ||
"sourceMap": true, | ||
"rootDir": "src", | ||
"esModuleInterop": true, | ||
"strict": true /* enable all strict type-checking options */ | ||
/* Additional Checks */ | ||
// "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */ | ||
// "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */ | ||
// "noUnusedParameters": true, /* Report errors on unused parameters. */ | ||
} | ||
} |