Browse Source

chore: Change more "user" strings to "account"

Signed-off-by: Christopher Ng <chrng8@gmail.com>
pull/45315/head
Christopher Ng 1 year ago
parent
commit
6b583f73b7
  1. 10
      apps/settings/src/components/Users/UserListFooter.vue
  2. 2
      apps/settings/src/components/Users/UserListHeader.vue
  3. 2
      apps/settings/src/components/Users/UserRow.vue

10
apps/settings/src/components/Users/UserListFooter.vue

@ -28,7 +28,7 @@
</th>
<td class="footer__cell footer__cell--loading">
<NcLoadingIcon v-if="loading"
:title="t('settings', 'Loading users …')"
:title="t('settings', 'Loading accounts …')"
:size="32" />
</td>
<td class="footer__cell footer__cell--count footer__cell--multiline">
@ -73,8 +73,8 @@ export default Vue.extend({
if (this.loading) {
return this.n(
'settings',
'{userCount} user …',
'{userCount} users …',
'{userCount} account …',
'{userCount} accounts …',
this.filteredUsers.length,
{
userCount: this.filteredUsers.length,
@ -83,8 +83,8 @@ export default Vue.extend({
}
return this.n(
'settings',
'{userCount} user',
'{userCount} users',
'{userCount} account',
'{userCount} accounts',
this.filteredUsers.length,
{
userCount: this.filteredUsers.length,

2
apps/settings/src/components/Users/UserListHeader.vue

@ -104,7 +104,7 @@
data-cy-user-list-header-actions
scope="col">
<span class="hidden-visually">
{{ t('settings', 'User actions') }}
{{ t('settings', 'Account actions') }}
</span>
</th>
</tr>

2
apps/settings/src/components/Users/UserRow.vue

@ -120,7 +120,7 @@
<template v-if="editing">
<label class="hidden-visually"
:for="'groups' + uniqueId">
{{ t('settings', 'Add user to group') }}
{{ t('settings', 'Add account to group') }}
</label>
<NcSelect data-cy-user-list-input-groups
:data-loading="loading.groups || undefined"

Loading…
Cancel
Save