Skip to content

Commit bd6bc13

Browse files
Remote sketchbook tooltips (#1088)
* rename Cloud Sketchbook in Remote Sketchbook * add tooltips for Sync and Account buttons
1 parent 4611381 commit bd6bc13

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ export class CloudSketchbookCompositeWidget extends BaseWidget {
3131
this.compositeNode.appendChild(this.cloudUserStatusNode);
3232
this.node.appendChild(this.compositeNode);
3333
this.title.caption = nls.localize(
34-
'arduino/cloud/cloudSketchbook',
35-
'Cloud Sketchbook'
34+
'arduino/cloud/remoteSketchbook',
35+
'Remote Sketchbook'
3636
);
3737
this.title.iconClass = 'cloud-sketchbook-tree-icon';
3838
this.title.closable = false;

arduino-ide-extension/src/browser/widgets/cloud-sketchbook/cloud-user-status.tsx

+2
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ export class UserStatus extends React.Component<
6565
</div>
6666
<div className="actions item flex-line">
6767
<div
68+
title={nls.localize('arduino/cloud/sync', 'Sync')}
6869
className={`fa fa-reload ${
6970
(this.state.refreshing && 'rotating') || ''
7071
}`}
@@ -74,6 +75,7 @@ export class UserStatus extends React.Component<
7475
</div>
7576
<div className="account item flex-line">
7677
<div
78+
title={nls.localize('arduino/cloud/account', 'Account')}
7779
className="account-icon"
7880
style={{ cursor: 'pointer' }}
7981
onClick={(event) => {

i18n/en.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,8 @@
7575
"udpMessage": "As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to EthernetUdp."
7676
},
7777
"cloud": {
78+
"account": "Account",
7879
"chooseSketchVisibility": "Choose visibility of your Sketch:",
79-
"cloudSketchbook": "Cloud Sketchbook",
8080
"connected": "Connected",
8181
"continue": "Continue",
8282
"donePulling": "Done pulling ‘{0}’.",
@@ -100,12 +100,14 @@
100100
"pushSketch": "Push Sketch",
101101
"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.",
102102
"remote": "Remote",
103+
"remoteSketchbook": "Remote Sketchbook",
103104
"share": "Share...",
104105
"shareSketch": "Share Sketch",
105106
"showHideRemoveSketchbook": "Show/Hide Remote Sketchbook",
106107
"signIn": "SIGN IN",
107108
"signInToCloud": "Sign in to Arduino Cloud",
108109
"signOut": "Sign Out",
110+
"sync": "Sync",
109111
"syncEditSketches": "Sync and edit your Arduino Cloud Sketches",
110112
"visitArduinoCloud": "Visit Arduino Cloud to create Cloud Sketches."
111113
},

0 commit comments

Comments
 (0)