|
|
@ -335,7 +335,7 @@ void AddNewTorrentDialog::updateDiskSpaceLabel() |
|
|
|
|
|
|
|
|
|
|
|
QString size_string = torrent_size ? Utils::Misc::friendlyUnit(torrent_size) : QString(tr("Not Available", "This size is unavailable.")); |
|
|
|
QString size_string = torrent_size ? Utils::Misc::friendlyUnit(torrent_size) : QString(tr("Not Available", "This size is unavailable.")); |
|
|
|
size_string += " ("; |
|
|
|
size_string += " ("; |
|
|
|
size_string += tr("Free disk space: %1").arg(Utils::Misc::friendlyUnit(Utils::Fs::freeDiskSpaceOnPath( |
|
|
|
size_string += tr("Free space on disk: %1").arg(Utils::Misc::friendlyUnit(Utils::Fs::freeDiskSpaceOnPath( |
|
|
|
ui->save_path_combo->itemData( |
|
|
|
ui->save_path_combo->itemData( |
|
|
|
ui->save_path_combo->currentIndex()).toString()))); |
|
|
|
ui->save_path_combo->currentIndex()).toString()))); |
|
|
|
size_string += ")"; |
|
|
|
size_string += ")"; |
|
|
@ -676,7 +676,7 @@ void AddNewTorrentDialog::setupTreeview() |
|
|
|
|
|
|
|
|
|
|
|
// Set torrent information
|
|
|
|
// Set torrent information
|
|
|
|
ui->comment_lbl->setText(Utils::Misc::parseHtmlLinks(m_torrentInfo.comment())); |
|
|
|
ui->comment_lbl->setText(Utils::Misc::parseHtmlLinks(m_torrentInfo.comment())); |
|
|
|
ui->date_lbl->setText(!m_torrentInfo.creationDate().isNull() ? m_torrentInfo.creationDate().toString(Qt::DefaultLocaleLongDate) : tr("Not available")); |
|
|
|
ui->date_lbl->setText(!m_torrentInfo.creationDate().isNull() ? m_torrentInfo.creationDate().toString(Qt::DefaultLocaleShortDate) : tr("Not available")); |
|
|
|
|
|
|
|
|
|
|
|
// Prepare content tree
|
|
|
|
// Prepare content tree
|
|
|
|
if (m_torrentInfo.filesCount() > 1) { |
|
|
|
if (m_torrentInfo.filesCount() > 1) { |
|
|
|