description
parent
0c2cf8b12e
commit
d4ef8194d5
|
@ -27,8 +27,10 @@
|
||||||
"action": "Aktion",
|
"action": "Aktion",
|
||||||
"username": "Anzeigename",
|
"username": "Anzeigename",
|
||||||
"usernamePlaceholder": "Geben Sie Ihren Anzeigename ein",
|
"usernamePlaceholder": "Geben Sie Ihren Anzeigename ein",
|
||||||
|
"usernameInfo": "Der Anzeigename wird verwendet, um Sie im Dashboard anzuzeigen.",
|
||||||
"accountName": "Benutzername",
|
"accountName": "Benutzername",
|
||||||
"accountNamePlaceholder": "Geben Sie Ihren Benutzernamen ein",
|
"accountNamePlaceholder": "Geben Sie Ihren Benutzernamen ein",
|
||||||
|
"accountNameInfo": "Der Benutzername wird verwendet, um sich anzumelden.",
|
||||||
"password": "Passwort",
|
"password": "Passwort",
|
||||||
"passwordPlaceholder": "Geben Sie Ihr Passwort ein",
|
"passwordPlaceholder": "Geben Sie Ihr Passwort ein",
|
||||||
"noDataFound": "Keine Einträge gefunden",
|
"noDataFound": "Keine Einträge gefunden",
|
||||||
|
|
|
@ -27,8 +27,10 @@
|
||||||
"action": "Action",
|
"action": "Action",
|
||||||
"username": "Username",
|
"username": "Username",
|
||||||
"usernamePlaceholder": "Enter your username",
|
"usernamePlaceholder": "Enter your username",
|
||||||
|
"usernameInfo": "The display name is used to display you in the dashboard.",
|
||||||
"accountName": "Account name",
|
"accountName": "Account name",
|
||||||
"accountNamePlaceholder": "Enter your account name",
|
"accountNamePlaceholder": "Enter your account name",
|
||||||
|
"accountNameInfo": "The account name is used to log in.",
|
||||||
"password": "Password",
|
"password": "Password",
|
||||||
"passwordPlaceholder": "Enter your password",
|
"passwordPlaceholder": "Enter your password",
|
||||||
"noDataFound": "No data found",
|
"noDataFound": "No data found",
|
||||||
|
|
|
@ -379,9 +379,14 @@ function SignUp({ notificationApi }) {
|
||||||
>
|
>
|
||||||
<MyCompanyNameFormInput />
|
<MyCompanyNameFormInput />
|
||||||
|
|
||||||
<MyUsernameFormInput />
|
<MyUsernameFormInput
|
||||||
|
propsFormItem={{ extra: t("common.usernameInfo") }}
|
||||||
|
/>
|
||||||
|
|
||||||
<MyAccountNameFormInput hasFeedback={true} />
|
<MyAccountNameFormInput
|
||||||
|
hasFeedback={true}
|
||||||
|
propsFormItem={{ extra: t("common.accountNameInfo") }}
|
||||||
|
/>
|
||||||
|
|
||||||
<MyPasswordFormInput />
|
<MyPasswordFormInput />
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue