]> source.dussan.org Git - nextcloud-server.git/commitdiff
chore: Change more "user" strings to "account"
authorChristopher Ng <chrng8@gmail.com>
Fri, 24 May 2024 16:46:59 +0000 (09:46 -0700)
committerChristopher Ng <chrng8@gmail.com>
Thu, 30 May 2024 22:32:20 +0000 (15:32 -0700)
Signed-off-by: Christopher Ng <chrng8@gmail.com>
apps/settings/src/components/Users/UserListFooter.vue
apps/settings/src/components/Users/UserListHeader.vue
apps/settings/src/components/Users/UserRow.vue

index d89746583541588e07e09a3c093792c231e74efe..ad2374cc07b2e299c17a6dc27c0bedc7a49e4f24 100644 (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,
index 66e1d244e865ea2aa6e77a43a3a92fb109b90802..36ee43244942adcd2a1ee0f9cf10762ae140ba87 100644 (file)
                        data-cy-user-list-header-actions
                        scope="col">
                        <span class="hidden-visually">
-                               {{ t('settings', 'User actions') }}
+                               {{ t('settings', 'Account actions') }}
                        </span>
                </th>
        </tr>
index 76241a3118ef005e9ecf32512eb59335cb816584..3d6b4c3af76fda35c50e961c9ddb95ba1edef72a 100644 (file)
                        <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"