mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-11 15:27:54 +00:00
Improve wordings in "Auto download torrent" section
This commit is contained in:
parent
140016c068
commit
6ea89bf621
@ -153,10 +153,10 @@ QVariant ScanFoldersModel::headerData(int section, Qt::Orientation orientation,
|
||||
|
||||
switch (section) {
|
||||
case WATCH:
|
||||
title = tr("Watched Folder");
|
||||
title = tr("Monitored Folder");
|
||||
break;
|
||||
case DOWNLOAD:
|
||||
title = tr("Save Files to");
|
||||
title = tr("Override Save Location");
|
||||
break;
|
||||
}
|
||||
|
||||
|
@ -1248,7 +1248,7 @@
|
||||
<item>
|
||||
<widget class="QPushButton" name="addScanFolderButton">
|
||||
<property name="text">
|
||||
<string>Add folder...</string>
|
||||
<string>Add entry</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
@ -1258,7 +1258,7 @@
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Remove folder</string>
|
||||
<string>Remove entry</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
|
@ -63,8 +63,8 @@ QWidget *ScanFoldersDelegate::createEditor(QWidget *parent, const QStyleOptionVi
|
||||
QComboBox* editor = new QComboBox(parent);
|
||||
|
||||
editor->setFocusPolicy(Qt::StrongFocus);
|
||||
editor->addItem(tr("Watch Folder"));
|
||||
editor->addItem(tr("Default Folder"));
|
||||
editor->addItem(tr("Same as monitored folder"));
|
||||
editor->addItem(tr("Default save location"));
|
||||
editor->addItem(tr("Browse..."));
|
||||
if (index.data(Qt::UserRole).toInt() == ScanFoldersModel::CUSTOM_LOCATION) {
|
||||
editor->insertSeparator(3);
|
||||
@ -99,7 +99,7 @@ void ScanFoldersDelegate::setModelData(QWidget *editor, QAbstractItemModel *mode
|
||||
model->setData(
|
||||
index,
|
||||
QFileDialog::getExistingDirectory(
|
||||
0, tr("Choose save path"),
|
||||
0, tr("Select save location"),
|
||||
index.data(Qt::UserRole).toInt() == ScanFoldersModel::CUSTOM_LOCATION ?
|
||||
index.data().toString() :
|
||||
BitTorrent::Session::instance()->defaultSavePath()),
|
||||
|
Loading…
Reference in New Issue
Block a user