description

master
alex 2024-01-28 20:37:47 +01:00
parent 0c2cf8b12e
commit d4ef8194d5
3 changed files with 11 additions and 2 deletions

View File

@ -27,8 +27,10 @@
"action": "Aktion",
"username": "Anzeigename",
"usernamePlaceholder": "Geben Sie Ihren Anzeigename ein",
"usernameInfo": "Der Anzeigename wird verwendet, um Sie im Dashboard anzuzeigen.",
"accountName": "Benutzername",
"accountNamePlaceholder": "Geben Sie Ihren Benutzernamen ein",
"accountNameInfo": "Der Benutzername wird verwendet, um sich anzumelden.",
"password": "Passwort",
"passwordPlaceholder": "Geben Sie Ihr Passwort ein",
"noDataFound": "Keine Einträge gefunden",

View File

@ -27,8 +27,10 @@
"action": "Action",
"username": "Username",
"usernamePlaceholder": "Enter your username",
"usernameInfo": "The display name is used to display you in the dashboard.",
"accountName": "Account name",
"accountNamePlaceholder": "Enter your account name",
"accountNameInfo": "The account name is used to log in.",
"password": "Password",
"passwordPlaceholder": "Enter your password",
"noDataFound": "No data found",

View File

@ -379,9 +379,14 @@ function SignUp({ notificationApi }) {
>
<MyCompanyNameFormInput />
<MyUsernameFormInput />
<MyUsernameFormInput
propsFormItem={{ extra: t("common.usernameInfo") }}
/>
<MyAccountNameFormInput hasFeedback={true} />
<MyAccountNameFormInput
hasFeedback={true}
propsFormItem={{ extra: t("common.accountNameInfo") }}
/>
<MyPasswordFormInput />