Skip to content

Commit

Permalink
Fix placeholder.
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastianStehle committed May 11, 2024
1 parent f31399e commit e821f9f
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 1 deletion.
1 change: 1 addition & 0 deletions backend/i18n/source/backend_en.json
Original file line number Diff line number Diff line change
Expand Up @@ -349,6 +349,7 @@
"users.lockYourselfError": "You cannot lock yourself.",
"users.login.askAdmin": "",
"users.login.custom": "Enter your E-Mail Address to login with your Company Account and single sign on (SSO).",
"users.login.emailBusinessPlaceholder": "Enter Business Email",
"users.login.emailPlaceholder": "Enter Email",
"users.login.error": "Email or password not correct",
"users.login.loginWith": "{action} with <strong>{provider}</strong>",
Expand Down
3 changes: 3 additions & 0 deletions backend/src/Squidex.Shared/Texts.fr.resx
Original file line number Diff line number Diff line change
Expand Up @@ -1132,6 +1132,9 @@
<data name="users.login.custom" xml:space="preserve">
<value>Enter your E-Mail Address to login with your Company Account and single sign on (SSO).</value>
</data>
<data name="users.login.emailBusinessPlaceholder" xml:space="preserve">
<value>Enter Business Email</value>
</data>
<data name="users.login.emailPlaceholder" xml:space="preserve">
<value>Entrez l'e-mail</value>
</data>
Expand Down
3 changes: 3 additions & 0 deletions backend/src/Squidex.Shared/Texts.it.resx
Original file line number Diff line number Diff line change
Expand Up @@ -1132,6 +1132,9 @@
<data name="users.login.custom" xml:space="preserve">
<value>Enter your E-Mail Address to login with your Company Account and single sign on (SSO).</value>
</data>
<data name="users.login.emailBusinessPlaceholder" xml:space="preserve">
<value>Enter Business Email</value>
</data>
<data name="users.login.emailPlaceholder" xml:space="preserve">
<value>Inserisci l'email</value>
</data>
Expand Down
3 changes: 3 additions & 0 deletions backend/src/Squidex.Shared/Texts.nl.resx
Original file line number Diff line number Diff line change
Expand Up @@ -1132,6 +1132,9 @@
<data name="users.login.custom" xml:space="preserve">
<value>Enter your E-Mail Address to login with your Company Account and single sign on (SSO).</value>
</data>
<data name="users.login.emailBusinessPlaceholder" xml:space="preserve">
<value>Enter Business Email</value>
</data>
<data name="users.login.emailPlaceholder" xml:space="preserve">
<value>E-mailadres invoeren</value>
</data>
Expand Down
3 changes: 3 additions & 0 deletions backend/src/Squidex.Shared/Texts.pt.resx
Original file line number Diff line number Diff line change
Expand Up @@ -1132,6 +1132,9 @@
<data name="users.login.custom" xml:space="preserve">
<value>Enter your E-Mail Address to login with your Company Account and single sign on (SSO).</value>
</data>
<data name="users.login.emailBusinessPlaceholder" xml:space="preserve">
<value>Enter Business Email</value>
</data>
<data name="users.login.emailPlaceholder" xml:space="preserve">
<value>Introduzir Email</value>
</data>
Expand Down
3 changes: 3 additions & 0 deletions backend/src/Squidex.Shared/Texts.resx
Original file line number Diff line number Diff line change
Expand Up @@ -1132,6 +1132,9 @@
<data name="users.login.custom" xml:space="preserve">
<value>Enter your E-Mail Address to login with your Company Account and single sign on (SSO).</value>
</data>
<data name="users.login.emailBusinessPlaceholder" xml:space="preserve">
<value>Enter Business Email</value>
</data>
<data name="users.login.emailPlaceholder" xml:space="preserve">
<value>Enter Email</value>
</data>
Expand Down
3 changes: 3 additions & 0 deletions backend/src/Squidex.Shared/Texts.zh.resx
Original file line number Diff line number Diff line change
Expand Up @@ -1132,6 +1132,9 @@
<data name="users.login.custom" xml:space="preserve">
<value>Enter your E-Mail Address to login with your Company Account and single sign on (SSO).</value>
</data>
<data name="users.login.emailBusinessPlaceholder" xml:space="preserve">
<value>Enter Business Email</value>
</data>
<data name="users.login.emailPlaceholder" xml:space="preserve">
<value>输入邮箱</value>
</data>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@

<div class="form-group">
<div error-for="DynamicEmail"></div>
<input asp-for="DynamicEmail" type="email" class="form-control" placeholder="@T.Get("users.login.emailPlaceholder")" />
<input asp-for="DynamicEmail" type="email" class="form-control" placeholder="@T.Get("users.login.emailBusinessPlaceholder")" />
</div>

<button type="submit" data-testid="dynamic-button" class="btn btn-block btn-primary">@action</button>
Expand Down

0 comments on commit e821f9f

Please sign in to comment.