diff --git a/electron/js/menu.js b/electron/js/menu.js index 257f8474d0..73251daf30 100644 --- a/electron/js/menu.js +++ b/electron/js/menu.js @@ -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') }, diff --git a/src/json/text.json b/src/json/text.json index 0449c41e80..fb0b3bf4c6 100644 --- a/src/json/text.json +++ b/src/json/text.json @@ -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", diff --git a/src/json/url.json b/src/json/url.json index e608f99dee..e4cfeeeb06 100644 --- a/src/json/url.json +++ b/src/json/url.json @@ -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" } diff --git a/src/ts/component/menu/help.tsx b/src/ts/component/menu/help.tsx index ae1f42d267..b4fd51d351 100644 --- a/src/ts/component/menu/help.tsx +++ b/src/ts/component/menu/help.tsx @@ -72,6 +72,7 @@ class MenuHelp extends React.Component { { 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 { break; }; + case 'gallery': case 'terms': case 'tutorial': case 'privacy': diff --git a/src/ts/lib/keyboard.ts b/src/ts/lib/keyboard.ts index 868f7617ae..90d25a11f6 100644 --- a/src/ts/lib/keyboard.ts +++ b/src/ts/lib/keyboard.ts @@ -472,6 +472,7 @@ class Keyboard { break; }; + case 'gallery': case 'terms': case 'tutorial': case 'privacy':