Skip to content

Commit

Permalink
fix(MemberPicker): Rename "users" to "accounts"
Browse files Browse the repository at this point in the history
Signed-off-by: Jonas <[email protected]>
  • Loading branch information
mejo- committed Nov 9, 2023
1 parent a19740e commit 6b4b1ed
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/components/Member/MemberPicker.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
:value.sync="searchQuery"
type="text"
:show-trailing-button="isSearching"
:label="t('collectives', 'Search users, groups, circles…')"
:label="t('collectives', 'Search accounts, groups, circles…')"
@trailing-button-click="clearSearch"
@input="onSearch">
<MagnifyIcon :size="16" />
Expand Down Expand Up @@ -35,7 +35,7 @@

<!-- No search results -->
<template v-else-if="currentUserIsAdmin && !showCurrentSkeleton">
<NcAppNavigationCaption class="member-picker-caption" :title="t('collectives', 'Add users, groups or circles…')" />
<NcAppNavigationCaption class="member-picker-caption" :title="t('collectives', 'Add accounts, groups or circles…')" />
<Hint v-if="!isSearching" :hint="t('collectives', 'Search for members to add.')" />
<Hint v-else-if="isSearchLoading" :hint="t('collectives', 'Loading…')" />
<Hint v-else :hint="t('collectives', 'No search results')" />
Expand Down
2 changes: 1 addition & 1 deletion src/components/Member/MemberSearchResults.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<div class="member-search-results">
<template v-if="addableUsers.length !== 0">
<NcAppNavigationCaption :title="t('collectives', 'Add users')"
<NcAppNavigationCaption :title="t('collectives', 'Add accounts')"
class="member-picker-caption" />
<Member v-for="item in addableUsers"
:key="generateKey(item)"
Expand Down

0 comments on commit 6b4b1ed

Please sign in to comment.