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

Signed-off-by: Christopher Ng <chrng8@gmail.com>
This commit is contained in:
Christopher Ng 2024-05-24 09:46:59 -07:00
parent fad49e6aee
commit 6b583f73b7
3 changed files with 7 additions and 7 deletions

View file

@ -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,

View file

@ -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>

View file

@ -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"