1
0
Fork 0
mirror of https://github.com/anyproto/anytype-ts.git synced 2025-06-10 18:10:54 +09:00

add gallery to menu

This commit is contained in:
Andrew Simachev 2023-12-18 13:54:01 +01:00
parent dbc6e414d8
commit 434e192f91
No known key found for this signature in database
GPG key ID: 49A163D0D14E6FD8
5 changed files with 8 additions and 1 deletions

View file

@ -151,6 +151,7 @@ class MenuManager {
Separator,
{ label: Util.translate('electronMenuGallery'), click: () => Util.send(this.win, 'commandGlobal', 'gallery') },
{ label: Util.translate('electronMenuCommunity'), click: () => Util.send(this.win, 'commandGlobal', 'community') },
{ label: Util.translate('electronMenuTutorial'), click: () => Util.send(this.win, 'commandGlobal', 'tutorial') },
{ label: Util.translate('electronMenuContact'), click: () => Util.send(this.win, 'commandGlobal', 'contact') },

View file

@ -179,6 +179,7 @@
"electronMenuReleaseNotes": "What's new",
"electronMenuShortcuts": "Shortcuts",
"electronMenuCommunity": "Report a Bug",
"electronMenuGallery": "ANY Experience Gallery",
"electronMenuTutorial": "Help and Tutorials",
"electronMenuContact": "Contact Us",
"electronMenuTech": "Technical Information",
@ -1210,6 +1211,7 @@
"menuHelpTech": "Technical Information",
"menuHelpTerms": "Terms of Use",
"menuHelpPrivacy": "Privacy Policy",
"menuHelpGallery": "ANY Experience Gallery",
"menuItemRelationViewFeaturedAdd": "Add to featured Relations",
"menuItemRelationViewFeaturedRemove": "Remove from featured Relations",

View file

@ -13,5 +13,6 @@
"terms": "https://anytype.io/terms_of_use/",
"privacy": "https://anytype.io/app_privacy/",
"contact": "mailto:support@anytype.io?subject=Support%20request%2C%20account%20%25accountId%25&body=%0A%0ATechnical%20information%0A----------------------------------------------%0ADevice%3A%20%25device%25%0AOS%20version%3A%20%25os%25%0AApp%20version%3A%20%25version%25%0ABuild%20number%3A%20%25build%25%0ALibrary%20version%3A%20%25middleware%25%0AAccount%20ID%3A%20%25accountId%25%0AAnalytics%20ID%3A%20%25analyticsId%25%0ADevice%20ID%3A%20%25deviceId%25",
"extendStorage": "mailto:storage@anytype.io?subject=Get%20more%20storage%2C%20account%20%25accountId%25&body=Hi%2C%20Anytype%20team.%20I%20am%20reaching%20out%20to%20request%20an%20increase%20in%20my%20file%20storage%20capacity%20as%20I%20have%20run%20out%20of%20storage.%20My%20current%20limit%20is%20%25storageLimit%25.%20My%20account%20id%20is%20%25accountId%25.%20Cheers%2C%20%25spaceName%25"
"extendStorage": "mailto:storage@anytype.io?subject=Get%20more%20storage%2C%20account%20%25accountId%25&body=Hi%2C%20Anytype%20team.%20I%20am%20reaching%20out%20to%20request%20an%20increase%20in%20my%20file%20storage%20capacity%20as%20I%20have%20run%20out%20of%20storage.%20My%20current%20limit%20is%20%25storageLimit%25.%20My%20account%20id%20is%20%25accountId%25.%20Cheers%2C%20%25spaceName%25",
"gallery": "https://gallery.any.coop"
}

View file

@ -72,6 +72,7 @@ class MenuHelp extends React.Component<I.Menu> {
{ id: 'shortcut', caption: 'Ctrl+Space' },
{ id: 'hints' },
{ isDiv: true },
{ id: 'gallery' },
{ id: 'community' },
{ id: 'tutorial' },
{ id: 'contact' },
@ -117,6 +118,7 @@ class MenuHelp extends React.Component<I.Menu> {
break;
};
case 'gallery':
case 'terms':
case 'tutorial':
case 'privacy':

View file

@ -472,6 +472,7 @@ class Keyboard {
break;
};
case 'gallery':
case 'terms':
case 'tutorial':
case 'privacy':