description
parent
0c2cf8b12e
commit
d4ef8194d5
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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 />
|
||||
|
||||
|
|
Loading…
Reference in New Issue