Skip to content

Commit 207d1e9

Browse files
author
Akos Kitta
committed
fix: remote -> cloud
Signed-off-by: Akos Kitta <[email protected]>
1 parent cd050c4 commit 207d1e9

File tree

4 files changed

+25
-20
lines changed

4 files changed

+25
-20
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
export const REMOTE_SKETCHBOOK_FOLDER = 'RemoteSketchbook';
2-
export const ARDUINO_CLOUD_FOLDER = 'ArduinoCloud';
2+
export const ARDUINO_CLOUD_FOLDER = 'ArduinoCloud';

arduino-ide-extension/src/browser/widgets/cloud-sketchbook/cloud-sketchbook-composite-widget.tsx

+4-4
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ export class CloudSketchbookCompositeWidget extends BaseSketchbookCompositeWidge
2626
super();
2727
this.id = 'cloud-sketchbook-composite-widget';
2828
this.title.caption = nls.localize(
29-
'arduino/cloud/remoteSketchbook',
30-
'Remote Sketchbook'
29+
'arduino/cloud/cloudSketchbook',
30+
'Cloud Sketchbook'
3131
);
3232
this.title.iconClass = 'cloud-sketchbook-tree-icon';
3333
}
@@ -55,8 +55,8 @@ export class CloudSketchbookCompositeWidget extends BaseSketchbookCompositeWidge
5555
{this._session && (
5656
<CreateNew
5757
label={nls.localize(
58-
'arduino/sketchbook/newRemoteSketch',
59-
'New Remote Sketch'
58+
'arduino/sketchbook/newCloudSketch',
59+
'New Cloud Sketch'
6060
)}
6161
onClick={this.onDidClickCreateNew}
6262
/>

docs/README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
1-
# Remote Sketchbook
1+
# Cloud Sketchbook
22

3-
Arduino IDE provides a Remote Sketchbook feature that can be used to upload sketches to Arduino Cloud.
3+
Arduino IDE provides a Cloud Sketchbook feature that can be used to upload sketches to Arduino Cloud.
44
![](assets/remote.png)
55

66

77

88
In order to use this feature, a user must be registered on [Arduino Cloud](https://store.arduino.cc/digital/create) and logged in.
9-
This feature is completely optional and can be disabled in the IDE via the _"File > Advanced > Hide Remote Sketchbook"_ menu item.
9+
This feature is completely optional and can be disabled in the IDE via the _"File > Advanced > Hide Cloud Sketchbook"_ menu item.
1010

1111
## Developer guide
1212
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:
1313

1414
### 1. Changing remote connection parameters in the Preferences panel (be careful while editing the Preferences panel!)
1515
Here a screenshot of the Preferences panel
1616
![](assets/preferences.png)
17-
- The settings under _Arduino > Auth_ should be edited to match the OAuth2 configuration of your custom remote sketchbook storage
18-
- The setting under _Arduino > Sketch Sync Endpoint_ should be edited to point to your custom remote sketchbook storage service
19-
### 2. Implementing the Arduino Cloud Store APIs for your custom remote sketchbook storage
17+
- The settings under _Arduino > Auth_ should be edited to match the OAuth2 configuration of your custom cloud sketchbook storage
18+
- The setting under _Arduino > Sketch Sync Endpoint_ should be edited to point to your custom cloud sketchbook storage service
19+
### 2. Implementing the Arduino Cloud Store APIs for your custom cloud sketchbook storage
2020
Following the API Reference below:
2121

2222
| API Call | OpenAPI documentation |

i18n/en.json

+14-9
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@
8484
"cloud": {
8585
"account": "Account",
8686
"chooseSketchVisibility": "Choose visibility of your Sketch:",
87+
"cloudSketchbook": "Cloud Sketchbook",
8788
"connected": "Connected",
8889
"continue": "Continue",
8990
"donePulling": "Done pulling ‘{0}’.",
@@ -108,10 +109,9 @@
108109
"pushSketch": "Push Sketch",
109110
"pushSketchMsg": "This is a Public Sketch. Before pushing, make sure any sensitive information is defined in arduino_secrets.h files. You can make a Sketch private from the Share panel.",
110111
"remote": "Remote",
111-
"remoteSketchbook": "Remote Sketchbook",
112112
"share": "Share...",
113113
"shareSketch": "Share Sketch",
114-
"showHideRemoveSketchbook": "Show/Hide Remote Sketchbook",
114+
"showHideSketchbook": "Show/Hide Cloud Sketchbook",
115115
"signIn": "SIGN IN",
116116
"signInToCloud": "Sign in to Arduino Cloud",
117117
"signOut": "Sign Out",
@@ -120,9 +120,13 @@
120120
"visitArduinoCloud": "Visit Arduino Cloud to create Cloud Sketches."
121121
},
122122
"cloudSketch": {
123-
"creating": "Creating remote sketch '{0}'...",
124-
"new": "New Remote Sketch",
125-
"synchronizing": "Synchronizing sketchbook, pulling '{0}'..."
123+
"creating": "Creating cloud sketch '{0}'...",
124+
"new": "New Cloud Sketch",
125+
"notFound": "Could not pull the cloud sketch '{0}'. It does not exist.",
126+
"pulling": "Synchronizing sketchbook, pulling '{0}'...",
127+
"pushing": "Synchronizing sketchbook, pushing '{0}'...",
128+
"renaming": "Renaming cloud sketch '{0}'...",
129+
"sketchAlreadyExists": "Cloud sketch '{0}' already exists."
126130
},
127131
"common": {
128132
"all": "All",
@@ -311,9 +315,7 @@
311315
"unableToConnectToWebSocket": "Unable to connect to websocket"
312316
},
313317
"newCloudSketch": {
314-
"newSketchTitle": "Name of a new Remote Sketch",
315-
"notFound": "Could not pull the remote sketch '{0}'. It does not exist.",
316-
"sketchAlreadyExists": "Remote sketch '{0}' already exists."
318+
"newSketchTitle": "Name of the new Cloud Sketch"
317319
},
318320
"portProtocol": {
319321
"network": "Network",
@@ -381,6 +383,9 @@
381383
"deprecationMessage": "Deprecated. Use 'window.zoomLevel' instead."
382384
}
383385
},
386+
"renameCloudSketch": {
387+
"renameSketchTitle": "New name of the Cloud Sketch"
388+
},
384389
"replaceMsg": "Replace the existing version of {0}?",
385390
"selectZip": "Select a zip file containing the library you'd like to add",
386391
"serial": {
@@ -431,7 +436,7 @@
431436
"verifyOrCompile": "Verify/Compile"
432437
},
433438
"sketchbook": {
434-
"newRemoteSketch": "New Remote Sketch",
439+
"newCloudSketch": "New Cloud Sketch",
435440
"newSketch": "New Sketch"
436441
},
437442
"survey": {

0 commit comments

Comments
 (0)