Skip to content

Commit

Permalink
fix 3130 : missing translations for Transifex
Browse files Browse the repository at this point in the history
Signed-off-by: Sebastien Marinier <seb@smarinier.net>
  • Loading branch information
smarinier authored and backportbot[bot] committed Sep 10, 2024
1 parent 1b9f524 commit e41d629
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/settings/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -283,15 +283,15 @@ export class App extends Component<{}, AppState> implements OC.Plugin<OC.Search.
onChange={this.setQuota.bind(this, folder)}/>
</td>
<td className="acl">
<input id={`acl-${folder.id}`} type="checkbox" className="checkbox" checked={folder.acl} disabled={!App.supportACL()}
<input id={'acl-' + folder.id} type="checkbox" className="checkbox" checked={folder.acl} disabled={!App.supportACL()}
title={
App.supportACL()
? t('groupfolders', 'Advanced permissions allows setting permissions on a per-file basis but comes with a performance overhead')
: t('groupfolders', 'Advanced permissions are only supported with Nextcloud 16 and up')
}
onChange={(event) => this.setAcl(folder, event.target.checked)}
/>
<label htmlFor={`acl-${folder.id}`}></label>
<label htmlFor={'acl-' + folder.id}></label>
{folder.acl
&& <ManageAclSelect
folder={folder}
Expand Down

0 comments on commit e41d629

Please sign in to comment.