mirror of
https://github.com/arduino/arduino-ide.git
synced 2025-07-14 14:56:33 +00:00
Correct minor typos in UI text and documentation
This commit is contained in:
parent
a5891f9884
commit
bc365f4a8d
@ -127,7 +127,7 @@ git add . \
|
|||||||
git tag -a 0.2.0 -m "0.2.0" \
|
git tag -a 0.2.0 -m "0.2.0" \
|
||||||
&& git push origin 0.2.0
|
&& git push origin 0.2.0
|
||||||
```
|
```
|
||||||
- The release build starts automatically and uploads the artifacts with the changelog to the [release page](https://github.com/arduino/arduino-ide/releases).
|
- The release build starts automatically and uploads the artifacts with the changelog to the [release page](https://github.com/arduino/arduino-ide/releases).
|
||||||
- If you do not want to release the `EXE` and `MSI` installers, wipe them manually.
|
- If you do not want to release the `EXE` and `MSI` installers, wipe them manually.
|
||||||
- If you do not like the generated changelog, modify it and update the GH release.
|
- If you do not like the generated changelog, modify it and update the GH release.
|
||||||
|
|
||||||
|
@ -84,7 +84,7 @@ export class BoardsConfigDialog extends AbstractDialog<BoardsConfig.Config> {
|
|||||||
),
|
),
|
||||||
nls.localize(
|
nls.localize(
|
||||||
'arduino/board/configDialog2',
|
'arduino/board/configDialog2',
|
||||||
'If you only select a Board you will be able just to compile, but not to upload your sketch.'
|
'If you only select a Board you will be able to compile, but not to upload your sketch.'
|
||||||
),
|
),
|
||||||
]) {
|
]) {
|
||||||
const p = document.createElement('div');
|
const p = document.createElement('div');
|
||||||
|
@ -190,7 +190,7 @@ export class OpenSketch extends SketchContribution {
|
|||||||
],
|
],
|
||||||
message: nls.localize(
|
message: nls.localize(
|
||||||
'arduino/sketch/movingMsg',
|
'arduino/sketch/movingMsg',
|
||||||
'The file "{0}" needs to be inside a sketch folder named as "{1}".\nCreate this folder, move the file, and continue?',
|
'The file "{0}" needs to be inside a sketch folder named "{1}".\nCreate this folder, move the file, and continue?',
|
||||||
nameWithExt,
|
nameWithExt,
|
||||||
name
|
name
|
||||||
),
|
),
|
||||||
|
@ -45,7 +45,7 @@ export namespace UploadFirmware {
|
|||||||
id: 'arduino-upload-firmware-open',
|
id: 'arduino-upload-firmware-open',
|
||||||
label: nls.localize(
|
label: nls.localize(
|
||||||
'arduino/firmware/updater',
|
'arduino/firmware/updater',
|
||||||
'WiFi101 / WiFiNINA Firmware Updater'
|
'WiFi101 / WiFiNINA Firmware Updater'
|
||||||
),
|
),
|
||||||
category: 'Arduino',
|
category: 'Arduino',
|
||||||
};
|
};
|
||||||
|
@ -201,7 +201,7 @@ export const FirmwareUploaderComponent = ({
|
|||||||
<i className="fa fa-info status-icon" />
|
<i className="fa fa-info status-icon" />
|
||||||
{nls.localize(
|
{nls.localize(
|
||||||
'arduino/firmware/successfullyInstalled',
|
'arduino/firmware/successfullyInstalled',
|
||||||
'Firmware succesfully installed.'
|
'Firmware successfully installed.'
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
|
@ -80,7 +80,7 @@ export class SerialMonitorSendInput extends React.Component<
|
|||||||
const { board, port } = serialConfig;
|
const { board, port } = serialConfig;
|
||||||
return nls.localize(
|
return nls.localize(
|
||||||
'arduino/serial/message',
|
'arduino/serial/message',
|
||||||
"Message ({0} + Enter to send message to '{1}' on '{2}'",
|
"Message ({0} + Enter to send message to '{1}' on '{2}')",
|
||||||
isOSX ? '⌘' : nls.localize('vscode/keybindingLabels/ctrlKey', 'Ctrl'),
|
isOSX ? '⌘' : nls.localize('vscode/keybindingLabels/ctrlKey', 'Ctrl'),
|
||||||
board
|
board
|
||||||
? Board.toString(board, {
|
? Board.toString(board, {
|
||||||
|
@ -6,7 +6,7 @@ Arduino IDE provides a Remote Sketchbook feature that can be used to upload sket
|
|||||||
|
|
||||||
|
|
||||||
In order to use this feature, a user must be registered on [Arduino Cloud](https://store.arduino.cc/digital/create) and logged in.
|
In order to use this feature, a user must be registered on [Arduino Cloud](https://store.arduino.cc/digital/create) and logged in.
|
||||||
This feature is completely optional and can be disabled in the IDE via _"File > Advanced > Hide Remote Sketchbook"_ menu item.
|
This feature is completely optional and can be disabled in the IDE via the _"File > Advanced > Hide Remote Sketchbook"_ menu item.
|
||||||
|
|
||||||
## Developer guide
|
## Developer guide
|
||||||
A developer could use the content of this repo to create a customized version of this feature and implement a different remote storage as follows:
|
A developer could use the content of this repo to create a customized version of this feature and implement a different remote storage as follows:
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Building the Pro IDE on Linux `armv7l` (aka `armhf`) and `aarch64` (aka `arm64`):
|
Building the Pro IDE on Linux `armv7l` (aka `armhf`) and `aarch64` (aka `arm64`):
|
||||||
|
|
||||||
1. Install Node.js 10.x with [nvm](https://github.com/nvm-sh/nvm#install--update-script):
|
1. Install Node.js 12.x with [nvm](https://github.com/nvm-sh/nvm#install--update-script):
|
||||||
```
|
```
|
||||||
wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash
|
wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash
|
||||||
```
|
```
|
||||||
|
10
i18n/en.json
10
i18n/en.json
@ -108,7 +108,7 @@
|
|||||||
"installNow": "The \"{0} {1}\" core has to be installed for the currently selected \"{2}\" board. Do you want to install it now?",
|
"installNow": "The \"{0} {1}\" core has to be installed for the currently selected \"{2}\" board. Do you want to install it now?",
|
||||||
"configDialogTitle": "Select Other Board & Port",
|
"configDialogTitle": "Select Other Board & Port",
|
||||||
"configDialog1": "Select both a Board and a Port if you want to upload a sketch.",
|
"configDialog1": "Select both a Board and a Port if you want to upload a sketch.",
|
||||||
"configDialog2": "If you only select a Board you will be able just to compile, but not to upload your sketch.",
|
"configDialog2": "If you only select a Board you will be able to compile, but not to upload your sketch.",
|
||||||
"pleasePickBoard": "Please pick a board connected to the port you have selected.",
|
"pleasePickBoard": "Please pick a board connected to the port you have selected.",
|
||||||
"showAllAvailablePorts": "Shows all available ports when enabled",
|
"showAllAvailablePorts": "Shows all available ports when enabled",
|
||||||
"programmer": "Programmer",
|
"programmer": "Programmer",
|
||||||
@ -173,7 +173,7 @@
|
|||||||
"showFolder": "Show Sketch Folder",
|
"showFolder": "Show Sketch Folder",
|
||||||
"sketch": "Sketch",
|
"sketch": "Sketch",
|
||||||
"moving": "Moving",
|
"moving": "Moving",
|
||||||
"movingMsg": "The file \"{0}\" needs to be inside a sketch folder named as \"{1}\".\nCreate this folder, move the file, and continue?",
|
"movingMsg": "The file \"{0}\" needs to be inside a sketch folder named \"{1}\".\nCreate this folder, move the file, and continue?",
|
||||||
"cantOpen": "A folder named \"{0}\" already exists. Can't open sketch.",
|
"cantOpen": "A folder named \"{0}\" already exists. Can't open sketch.",
|
||||||
"saveFolderAs": "Save sketch folder as...",
|
"saveFolderAs": "Save sketch folder as...",
|
||||||
"sketchbook": "Sketchbook",
|
"sketchbook": "Sketchbook",
|
||||||
@ -243,14 +243,14 @@
|
|||||||
"noSupportedBoardConnected": "No supported board connected"
|
"noSupportedBoardConnected": "No supported board connected"
|
||||||
},
|
},
|
||||||
"firmware": {
|
"firmware": {
|
||||||
"updater": "WiFi101 / WiFiNINA Firmware Updater",
|
"updater": "WiFi101 / WiFiNINA Firmware Updater",
|
||||||
"selectBoard": "Select Board",
|
"selectBoard": "Select Board",
|
||||||
"checkUpdates": "Check Updates",
|
"checkUpdates": "Check Updates",
|
||||||
"selectVersion": "Select firmware version",
|
"selectVersion": "Select firmware version",
|
||||||
"install": "Install",
|
"install": "Install",
|
||||||
"overwriteSketch": "Installation will overwrite the Sketch on the board.",
|
"overwriteSketch": "Installation will overwrite the Sketch on the board.",
|
||||||
"installingFirmware": "Installing firmware.",
|
"installingFirmware": "Installing firmware.",
|
||||||
"successfullyInstalled": "Firmware succesfully installed.",
|
"successfullyInstalled": "Firmware successfully installed.",
|
||||||
"failedInstall": "Installation failed. Please try again."
|
"failedInstall": "Installation failed. Please try again."
|
||||||
},
|
},
|
||||||
"dialog": {
|
"dialog": {
|
||||||
@ -269,7 +269,7 @@
|
|||||||
"carriageReturn": "Carriage Return",
|
"carriageReturn": "Carriage Return",
|
||||||
"newLineCarriageReturn": "Both NL & CR",
|
"newLineCarriageReturn": "Both NL & CR",
|
||||||
"notConnected": "Not connected. Select a board and a port to connect automatically.",
|
"notConnected": "Not connected. Select a board and a port to connect automatically.",
|
||||||
"message": "Message ({0} + Enter to send message to '{1}' on '{2}'",
|
"message": "Message ({0} + Enter to send message to '{1}' on '{2}')",
|
||||||
"connectionBusy": "Connection failed. Serial port is busy: {0}",
|
"connectionBusy": "Connection failed. Serial port is busy: {0}",
|
||||||
"disconnected": "Disconnected {0} from {1}.",
|
"disconnected": "Disconnected {0} from {1}.",
|
||||||
"unexpectedError": "Unexpected error. Reconnecting {0} on port {1}.",
|
"unexpectedError": "Unexpected error. Reconnecting {0} on port {1}.",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user