Skip to content

Serial-Monitor Path Description Updated Within Language Files #23

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 9 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ out
node_modules
.vscode-test/
*.vsix
package.json.bak
49 changes: 25 additions & 24 deletions i18n/eng/package.i18n.json
Original file line number Diff line number Diff line change
@@ -1,25 +1,26 @@
{
"commands.category": "Arduino-CLI",
"commands.title.chooseBoard": "Choose board",
"commands.title.chooseDeploymentMethod": "Choose deployment method",
"commands.title.compile": "Compile",
"commands.title.deploy": "Deploy",
"commands.title.flash": "Flash",
"commands.title.chooseMonitorBoardConnection": "Choose monitor board connection",
"commands.title.redetectBoardConnections": "Redetect board connections",
"configuration.title.board": "Board",
"configuration.title.arduinoCli": "Arduino-CLI",
"configuration.description.alwaysDetectBoardConnections": "By default, board connections are redetected every time the list is shown, causing a perceptible delay before it appears. If you disable this, detection will occur once at startup and the list will appear instantly. This is fine until you change USB ports. If that happens, press `F1` and run `Arduino-CLI: Redetect Board Connections`.",
"configuration.description.board": "The type of Arduino you are using",
"configuration.description.verboseCompile": "Apply the `--verbose` option when compiling",
"configuration.description.verboseDeploy": "Apply the `--verbose` option when deploying",
"configuration.description.monitorBoardConnection": "Monitor board connection",
"configuration.description.deploymentMethod": "The hardware programmer or the USB serial port that will deploy compiled code to your Arduino",
"configuration.description.showButtons": "Show Compile and Deploy buttons on the toolbar",
"configuration.description.arduinoCliPath": "Absolute path to the Arduino-CLI executable",
"configuration.description.libraryCatalogueRefreshIntervalMonths": "The number of months between refreshes of your library catalogue.",
"configuration.description.warnAboutDetectionLag": "On startup, if `always detect board connections` is enabled, warn about the delay it causes.",
"warning.detectionLag.message": "Your system is configured to scan hardware every time, causing a perceptible delay before the board connection list appears. If you disable this in settings, detection will occur once at startup and the list will appear instantly, but you will need to manually refresh if you you connect with a different USB port.",
"warning.detectionLag.stopTellingMe": "I know, stop telling me",
"warning.detectionLag.close": "Close"
{
"commands.category": "Arduino-CLI",
"commands.title.chooseBoard": "Choose board",
"commands.title.chooseDeploymentMethod": "Choose deployment method",
"commands.title.compile": "Compile",
"commands.title.deploy": "Deploy",
"commands.title.flash": "Flash",
"commands.title.chooseMonitorBoardConnection": "Choose monitor board connection",
"commands.title.redetectBoardConnections": "Redetect board connections",
"configuration.title.board": "Board",
"configuration.title.arduinoCli": "Arduino-CLI",
"configuration.description.alwaysDetectBoardConnections": "By default, board connections are redetected every time the list is shown, causing a perceptible delay before it appears. If you disable this, detection will occur once at startup and the list will appear instantly. This is fine until you change USB ports. If that happens, press `F1` and run `Arduino-CLI: Redetect Board Connections`.",
"configuration.description.board": "The type of Arduino you are using",
"configuration.description.verboseCompile": "Apply the `--verbose` option when compiling",
"configuration.description.verboseDeploy": "Apply the `--verbose` option when deploying",
"configuration.description.monitorBoardConnection": "Monitor board connection",
"configuration.description.deploymentMethod": "The hardware programmer or the USB serial port that will deploy compiled code to your Arduino",
"configuration.description.showButtons": "Show Compile and Deploy buttons on the toolbar",
"configuration.description.arduinoCliPath": "Absolute path to the Arduino-CLI executable",
"configuration.description.serialmonitorCliPath": "Absolute path to the Serial-Monitor executable",
"configuration.description.libraryCatalogueRefreshIntervalMonths": "The number of months between refreshes of your library catalogue.",
"configuration.description.warnAboutDetectionLag": "On startup, if `always detect board connections` is enabled, warn about the delay it causes.",
"warning.detectionLag.message": "Your system is configured to scan hardware every time, causing a perceptible delay before the board connection list appears. If you disable this in settings, detection will occur once at startup and the list will appear instantly, but you will need to manually refresh if you you connect with a different USB port.",
"warning.detectionLag.stopTellingMe": "I know, stop telling me",
"warning.detectionLag.close": "Close"
}
Loading