Fix typo (for translation)

Missing lang()
Prevented the correct translation.
This commit is contained in:
StefanU 2023-12-29 21:40:44 +01:00 committed by GitHub
parent dfc8b95cff
commit 9c8a159078
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -152,7 +152,7 @@ class filemanager_shares extends filemanager_ui
'delete' => array( 'delete' => array(
'caption' => lang('Delete'), 'caption' => lang('Delete'),
'group' => ++$group, 'group' => ++$group,
'confirm' => 'Delete these shares?', 'confirm' => lang('Delete these shares?'),
), ),
); );
return $actions; return $actions;
@ -229,4 +229,4 @@ class filemanager_shares extends filemanager_ui
$tpl->set_dom_id($tpl->name . ($content['nm']['admin'] ? '-admin' : '')); $tpl->set_dom_id($tpl->name . ($content['nm']['admin'] ? '-admin' : ''));
$tpl->exec('filemanager.filemanager_shares.index', $content, $sel_options, null, $content); $tpl->exec('filemanager.filemanager_shares.index', $content, $sel_options, null, $content);
} }
} }