Skip to content

Commit fea88a1

Browse files
committed
chore: Change more "user" strings to "account"
Signed-off-by: Christopher Ng <chrng8@gmail.com>
1 parent 4d030e2 commit fea88a1

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
</th>
2929
<td class="footer__cell footer__cell--loading">
3030
<NcLoadingIcon v-if="loading"
31-
:title="t('settings', 'Loading users …')"
31+
:title="t('settings', 'Loading accounts …')"
3232
:size="32" />
3333
</td>
3434
<td class="footer__cell footer__cell--count footer__cell--multiline">
@@ -73,8 +73,8 @@ export default Vue.extend({
7373
if (this.loading) {
7474
return this.n(
7575
'settings',
76-
'{userCount} user',
77-
'{userCount} users',
76+
'{userCount} account',
77+
'{userCount} accounts',
7878
this.filteredUsers.length,
7979
{
8080
userCount: this.filteredUsers.length,
@@ -83,8 +83,8 @@ export default Vue.extend({
8383
}
8484
return this.n(
8585
'settings',
86-
'{userCount} user',
87-
'{userCount} users',
86+
'{userCount} account',
87+
'{userCount} accounts',
8888
this.filteredUsers.length,
8989
{
9090
userCount: this.filteredUsers.length,

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@
104104
data-cy-user-list-header-actions
105105
scope="col">
106106
<span class="hidden-visually">
107-
{{ t('settings', 'User actions') }}
107+
{{ t('settings', 'Account actions') }}
108108
</span>
109109
</th>
110110
</tr>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@
120120
<template v-if="editing">
121121
<label class="hidden-visually"
122122
:for="'groups' + uniqueId">
123-
{{ t('settings', 'Add user to group') }}
123+
{{ t('settings', 'Add account to group') }}
124124
</label>
125125
<NcSelect data-cy-user-list-input-groups
126126
:data-loading="loading.groups || undefined"

0 commit comments

Comments
 (0)