Skip to content

Commit

Permalink
Translate User and Group strings
Browse files Browse the repository at this point in the history
Signed-off-by: Git'Fellow <12234510+solracsf@users.noreply.github.com>
  • Loading branch information
solracsf authored May 7, 2023
1 parent 1c4acdb commit 5d58c12
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 5d58c12

Please sign in to comment.