show information about demo account if enabled

This commit is contained in:
Athou
2022-08-13 18:00:07 +02:00
parent 198d9fb17e
commit 5cb09bc4c6
7 changed files with 15 additions and 1 deletions

View File

@@ -160,6 +160,7 @@ export interface ServerInfo {
allowRegistrations: boolean
googleAnalyticsCode?: string
smtpEnabled: boolean
demoAccountEnabled: boolean
}
export interface Settings {

View File

@@ -468,6 +468,10 @@ msgstr "The URL for the feed you want to subscribe to. You can also use the webs
msgid "Theme"
msgstr "Theme"
#: src/pages/auth/LoginPage.tsx
msgid "Try out CommaFeed with the demo account: demo/demo"
msgstr "Try out CommaFeed with the demo account: demo/demo"
#: src/components/header/Header.tsx
msgid "Unread"
msgstr "Unread"

View File

@@ -468,6 +468,10 @@ msgstr "L'URL du flux auquel vous souhaitez vous abonner. Vous pouvez aussi util
msgid "Theme"
msgstr "Thème"
#: src/pages/auth/LoginPage.tsx
msgid "Try out CommaFeed with the demo account: demo/demo"
msgstr "Essayez CommaFeed avec le compte de démonstration : demo/demo"
#: src/components/header/Header.tsx
msgid "Unread"
msgstr "Non lu"

View File

@@ -51,6 +51,7 @@ export function LoginPage() {
label={t`User Name or E-mail`}
placeholder={t`User Name or E-mail`}
{...form.getInputProps("name")}
description={serverInfos?.demoAccountEnabled ? t`Try out CommaFeed with the demo account: demo/demo` : ""}
size="md"
required
/>