1
0
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:
Michael An
2025-10-13 18:10:53 +08:00
committed by GitHub
parent 821cbf1ec3
commit 77fa9e1ca1
2 changed files with 3 additions and 3 deletions

View File

@@ -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) {