mirror of
https://github.com/haiwen/seahub.git
synced 2025-10-27 06:59:53 +00:00
remove useless translation (#8305)
This commit is contained in:
@@ -43,7 +43,7 @@ class DeleteFolderDialog extends Component {
|
||||
const { path, toggleDialog } = this.props;
|
||||
const folderName = Utils.getFileName(path);
|
||||
const opTarget = '<span class="op-target">' + Utils.HTMLescape(folderName) + '</span>';
|
||||
const message = gettext('Are you sure you want to delete %s ?').replace('%s', opTarget);
|
||||
const message = gettext('Are you sure you want to delete {placeholder} ?').replace('{placeholder}', opTarget);
|
||||
|
||||
let alert_message = '';
|
||||
if (sharedToUserCount > 0 || sharedToGroupCount > 0) {
|
||||
|
||||
Reference in New Issue
Block a user