diff --git a/web/i18n/defaults/active.en.toml b/web/i18n/defaults/active.en.toml index 00978904..d625df45 100644 --- a/web/i18n/defaults/active.en.toml +++ b/web/i18n/defaults/active.en.toml @@ -109,6 +109,18 @@ NoticeNews = "News" NoticeDescription = "Description" NoticePrivacyPolicy = "Privacy Policy" +ModeOpen = "Open" +ModeCommunity = "Community" +ModeRestricted = "Restricted" + +PrivacyModesTitle = "Privacy Modes" +RoomsSpecification = "rooms 2 specification" +ExplanationPrivacyModes = "The privacy mode of this room determines who can create invites and who can connect to the room. For more information, see the" +ExplanationOpen = "Open invite codes, anyone may connect" +ExplanationCommunity = "Members can create invites, anyone may connect" +ExplanationRestricted = "Only admins/Mods can create invites, only members may connect" + + [MemberCount] description = "Number of members" one = "1 member" @@ -127,4 +139,4 @@ other = "There are {{.Count}} people in the Room" [AdminInvitesCount] description = "the number of invites that are not yet claimed" one = "1 invite still unclaimed" -other = "{{.Count}} invites still unclaimed" \ No newline at end of file +other = "{{.Count}} invites still unclaimed" diff --git a/web/templates/admin/dashboard.tmpl b/web/templates/admin/dashboard.tmpl index 562a7509..d60ce432 100644 --- a/web/templates/admin/dashboard.tmpl +++ b/web/templates/admin/dashboard.tmpl @@ -86,19 +86,21 @@ {{end}}
-

Privacy Modes

-

The privacy mode of this room determines who can create invites and who can connect to the - room. For more information, see the rooms 2 specification.

+

{{i18n "PrivacyModesTitle"}}

+

+ {{i18n "ExplanationPrivacyModes"}} + {{ i18n "RoomsSpecification" }}. +

Open
-
Open invite codes, anyone may connect
+
{{ i18n "ExplanationOpen" }}
Community
-
Members can create invites, anyone may connect
+
{{ i18n "ExplanationCommunity" }}
Restricted
-
Only admins/Mods can create invites, only members may connect
+
{{ i18n "ExplanationRestricted" }}