Skip to content

Commit b825a46

Browse files
committed
Provide a helpful link to sessioncommunities.online.
sessioncommunities.online is a semi-automated directory of Session open groups (a.k.a. communities). It has quickly become perhaps the best resource the Session community has for cataloguing the vast and growing resource of open groups. As such, sessioncommunities.online has also quickly become the de facto answer to the frequently asked question 'Where can I find more open groups?' Considering the above, the time would appear to be ripe to include a helpful link to the site from within Session itself.
1 parent b081925 commit b825a46

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

_locales/en/messages.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -451,6 +451,7 @@
451451
"recoveryPhraseRevealMessage": "Secure your account by saving your recovery phrase. Reveal the phrase now and store it safely to secure it.",
452452
"recoveryPhraseRevealButtonText": "Reveal Recovery Phrase",
453453
"notificationSubtitle": "Notifications - $setting$",
454+
"openGroupsTitle": "Find more (unofficial) Session communities.",
454455
"surveyTitle": "We'd Love Your Feedback",
455456
"faq": "FAQ",
456457
"support": "Support",

ts/components/settings/section/CategoryHelp.tsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ export const SettingsCategoryHelp = (props: { hasPassword: boolean | null }) =>
1818
title={window.i18n('reportIssue')}
1919
description={window.i18n('shareBugDetails')}
2020
/>
21+
<SessionSettingsTitleWithLink
22+
title={window.i18n('openGroupsTitle')}
23+
onClick={() => void shell.openExternal('https://sessioncommunities.online')}
24+
/>
2125
<SessionSettingsTitleWithLink
2226
title={window.i18n('surveyTitle')}
2327
onClick={() => void shell.openExternal('https://getsession.org/survey')}

ts/types/LocalizerKeys.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -522,4 +522,5 @@ export type LocalizerKeys =
522522
| 'messageFormattingTitle'
523523
| 'fetchMessagesSinceEpochDescription'
524524
| 'fetchMessagesSinceEpochTitle'
525-
| 'removeAll';
525+
| 'removeAll'
526+
| 'openGroupsTitle';

0 commit comments

Comments
 (0)