Skip to content

Commit

Permalink
Merge pull request #2373 from nextcloud/transUserGroup
Browse files Browse the repository at this point in the history
Translate User and Group strings
  • Loading branch information
susnux authored Aug 12, 2023
2 parents beb2e41 + 5d58c12 commit 96f6f34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/settings/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ function ManageAclSelect({onChange, onSearch, folder}: ManageAclSelectProps) {
}

const typeLabel = (item) => {
return item.type === 'user' ? 'User' : 'Group'
return item.type === 'user' ? t('groupfolders', 'User') : t('groupfolders', 'Group')
}
return <AsyncSelect
loadOptions={handleSearch}
Expand Down

0 comments on commit 96f6f34

Please sign in to comment.