diff --git a/web/i18n/en/translation.json b/web/i18n/en/translation.json index e0cc0ea5d..126eb79ab 100644 --- a/web/i18n/en/translation.json +++ b/web/i18n/en/translation.json @@ -71,6 +71,8 @@ "Banned Users": "Banned Users", "IP Bans": "IP Bans", "Moderators": "Moderators", + "Bring in moderators to help keep your chat in order": "Bring in moderators to help keep your chat in order.", + "Learn more about chat moderation here": "Learn more about chat moderation here.", "Hardware Info": "Hardware Info", "Please wait": "Please wait", "No hardware details have been collected yet": "No hardware details have been collected yet.", diff --git a/web/pages/admin/chat/users.tsx b/web/pages/admin/chat/users.tsx index d8e942ec1..58175bdca 100644 --- a/web/pages/admin/chat/users.tsx +++ b/web/pages/admin/chat/users.tsx @@ -1,6 +1,8 @@ import React, { useState, useEffect, useContext, ReactElement } from 'react'; import { Tabs } from 'antd'; import { useTranslation } from 'next-export-i18n'; +import Link from 'antd/lib/typography/Link'; +import Text from 'antd/lib/typography/Text'; import { ServerStatusContext } from '../../../utils/server-status-context'; import { CONNECTED_CLIENTS, @@ -117,7 +119,21 @@ export default function ChatUsers() { {t('Moderators')} ({moderators.length}) ); - const moderatorTable = ; + const moderatorTable = ( + <> +

+ {t('Bring in moderators to help keep your chat in order.')} + + {t('Learn more about chat moderation here.')} + +

+ + + ); const items = [ { label: connectedUserTabTitle, key: '1', children: connectedUsers },