mirror of
https://github.com/nextcloud/server.git
synced 2026-02-18 18:28:50 -05:00
chore: Change more "user" strings to "account"
Signed-off-by: Christopher Ng <chrng8@gmail.com>
This commit is contained in:
parent
fad49e6aee
commit
6b583f73b7
3 changed files with 7 additions and 7 deletions
|
|
@ -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,
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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…
Reference in a new issue