Skip to content

Commit 35c35b1

Browse files
committed
Update GUI Help Menu & HDDapps Text
1 parent 1e30865 commit 35c35b1

File tree

2 files changed

+22
-3
lines changed

2 files changed

+22
-3
lines changed

hddcoin-blockchain-gui/src/components/hddapps/HDDappsUtility.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export default function HDDappsUtility() {
3939

4040
<Typography variant="body1">
4141
<Trans>
42-
{'Prefer to work in command line? Open a Terminal window with the HDDcoin executable conveniently loaded for your Opearting System. Want to examine your HDDcoin Client log? Open a window within the Client with your recent logs loaded and updated in real time. '}
42+
{'Prefer to work in Command Line? Open a Terminal within the Client with the HDDcoin executable conveniently loaded for your Operating System. Want to examine your Client logs? Open a Window with your recent logs loaded and updated in real time.'}
4343
</Trans>
4444
</Typography>
4545

hddcoin-blockchain-gui/src/electron/main.tsx

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -450,13 +450,32 @@ if (!handleSquirrelEvent()) {
450450
type: 'separator',
451451
},
452452
{
453-
label: i18n._(/* i18n */ { id: 'Visit HDDcoin Website' }),
453+
label: i18n._(/* i18n */ { id: 'HDDcoin Website' }),
454454
click: () => {
455455
openExternal(
456456
'https://hddcoin.org',
457457
);
458458
},
459-
},
459+
},
460+
{
461+
label: i18n._(/* i18n */ { id: 'HDDcoin Blockchain Explorer' }),
462+
click: () => {
463+
openExternal(
464+
'http://explorer.hddcoin.org',
465+
);
466+
},
467+
},
468+
{
469+
label: i18n._(/* i18n */ { id: 'HDDcoin Online Store' }),
470+
click: () => {
471+
openExternal(
472+
'https://store.hddcoin.org',
473+
);
474+
},
475+
},
476+
{
477+
type: 'separator',
478+
},
460479
{
461480
label: i18n._(/* i18n */ { id: 'Join our Discord Server' }),
462481
click: () => {

0 commit comments

Comments
 (0)