mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-12 08:16:16 -07:00
Improve error message reported to user
Should not contain "file" or "folder", because it's not clear which type is selected.
This commit is contained in:
parent
51e3e5438b
commit
b18bf48014
1 changed files with 6 additions and 6 deletions
|
@ -681,18 +681,18 @@ void PropertiesWidget::renameSelectedFile()
|
||||||
|
|
||||||
// Ask for new name
|
// Ask for new name
|
||||||
bool ok = false;
|
bool ok = false;
|
||||||
QString new_name_last = AutoExpandableDialog::getText(this, tr("Rename the file"),
|
QString new_name_last = AutoExpandableDialog::getText(this, tr("Renaming"),
|
||||||
tr("New name:"), QLineEdit::Normal,
|
tr("New name:"), QLineEdit::Normal,
|
||||||
index.data().toString(), &ok).trimmed();
|
index.data().toString(), &ok).trimmed();
|
||||||
if (!ok || new_name_last.isEmpty())
|
if (!ok)
|
||||||
return;
|
return;
|
||||||
|
if (new_name_last.isEmpty() || !Utils::Fs::isValidFileSystemName(new_name_last)) {
|
||||||
if (!Utils::Fs::isValidFileSystemName(new_name_last)) {
|
MessageBoxRaised::warning(this, tr("Rename error"),
|
||||||
MessageBoxRaised::warning(this, tr("The file could not be renamed"),
|
tr("The name is empty or contains forbidden characters, please choose a different one."),
|
||||||
tr("This file name contains forbidden characters, please choose a different one."),
|
|
||||||
QMessageBox::Ok);
|
QMessageBox::Ok);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (PropListModel->itemType(index) == TorrentContentModelItem::FileType) {
|
if (PropListModel->itemType(index) == TorrentContentModelItem::FileType) {
|
||||||
// File renaming
|
// File renaming
|
||||||
const int file_index = PropListModel->getFileIndex(index);
|
const int file_index = PropListModel->getFileIndex(index);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue