aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorChristopher Ng <chrng8@gmail.com>2024-05-24 09:46:59 -0700
committerChristopher Ng <chrng8@gmail.com>2024-05-30 15:32:20 -0700
commit6b583f73b724c2fa3ccb223f893343add4667068 (patch)
treea6d1c199e24264c284c088a18f399e3ab95b5e9a /apps
parentfad49e6aee61fc415296ac70430bd2181d033c76 (diff)
downloadnextcloud-server-6b583f73b724c2fa3ccb223f893343add4667068.tar.gz
nextcloud-server-6b583f73b724c2fa3ccb223f893343add4667068.zip
chore: Change more "user" strings to "account"
Signed-off-by: Christopher Ng <chrng8@gmail.com>
Diffstat (limited to 'apps')
-rw-r--r--apps/settings/src/components/Users/UserListFooter.vue10
-rw-r--r--apps/settings/src/components/Users/UserListHeader.vue2
-rw-r--r--apps/settings/src/components/Users/UserRow.vue2
3 files changed, 7 insertions, 7 deletions
diff --git a/apps/settings/src/components/Users/UserListFooter.vue b/apps/settings/src/components/Users/UserListFooter.vue
index d8974658354..ad2374cc07b 100644
--- a/apps/settings/src/components/Users/UserListFooter.vue
+++ b/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,
diff --git a/apps/settings/src/components/Users/UserListHeader.vue b/apps/settings/src/components/Users/UserListHeader.vue
index 66e1d244e86..36ee4324494 100644
--- a/apps/settings/src/components/Users/UserListHeader.vue
+++ b/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>
diff --git a/apps/settings/src/components/Users/UserRow.vue b/apps/settings/src/components/Users/UserRow.vue
index 76241a3118e..3d6b4c3af76 100644
--- a/apps/settings/src/components/Users/UserRow.vue
+++ b/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"