Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Users view: Add fallback texts #11465

Merged
merged 1 commit into from
Oct 25, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions src/Umbraco.Web.UI.Client/src/views/users/views/users/users.html
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@
<umb-empty-state
ng-if="!vm.loading && !vm.users.length && vm.usersOptions.filter.length > 0"
position="center">
<localize key="general_searchNoResult"></localize>
<localize key="general_searchNoResult">Sorry, we can not find what you are looking for.</localize>
</umb-empty-state>

<!-- Layout: Cards -->
Expand Down Expand Up @@ -305,15 +305,15 @@ <h3 class="bold" style="margin-bottom: 0;">
<localize key="user_inviteUser">Invite User</localize>
</h3>
<p style="line-height: 1.6em; margin-bottom: 15px;">
<localize key="user_inviteUserHelp"></localize>
<localize key="user_inviteUserHelp">Invite new users to give them access to Umbraco. An invite email will be sent to the user with information on how to log in to Umbraco. Invites last for 72 hours.</localize>
</p>
</div>
<div ng-if="vm.usersViewState === 'createUser'">
<h3 class="bold" style="margin-bottom: 0;">
<localize key="user_createUser">Create user</localize>
</h3>
<p style="line-height: 1.6em; margin-bottom: 15px;">
<localize key="user_createUserHelp"></localize>
<localize key="user_createUserHelp">Create new users to give them access to Umbraco. When a new user is created a password will be generated that you can share with the user.</localize>
</p>
</div>
</div>
Expand Down Expand Up @@ -437,7 +437,7 @@ <h3 class="bold" style="margin: 0 0 0 10px;">
</h3>
</div>

<p style="line-height: 1.6em; margin-bottom: 20px;"><localize key="user_userCreatedSuccessHelp"></localize></p>
<p style="line-height: 1.6em; margin-bottom: 20px;"><localize key="user_userCreatedSuccessHelp">The new user has successfully been created. To log in to Umbraco use the password below.</localize></p>

<!-- New password -->
<div>
Expand Down Expand Up @@ -520,7 +520,7 @@ <h3 class="bold" style="margin: 0 0 0 10px;">
</h3>
</div>

<p style="line-height: 1.6em; margin-bottom: 20px;"><localize key="user_userInvitedSuccessHelp"></localize></p>
<p style="line-height: 1.6em; margin-bottom: 20px;"><localize key="user_userInvitedSuccessHelp">An invitation has been sent to the new user with details about how to log in to Umbraco.</localize></p>

<!-- actions -->
<div>
Expand Down