2020-08-13 Fred Gleason <fredg@paravelsystems.com>

* Changed the word 'podcast' to 'item' in the item deletion
	confirmation in the 'Podcast Item List' dialog in rdcastmanager(1).

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason
2020-08-13 17:27:28 -04:00
parent 104b48cf56
commit 70bbfb63e8
2 changed files with 6 additions and 3 deletions

View File

@@ -372,15 +372,15 @@ void ListCasts::deleteData()
return;
}
unsigned cast_id=item->id();
if(QMessageBox::question(this,"RDCastManager - "+tr("Delete Podcast"),
tr("Are you sure you want to delete this podcast?"),
if(QMessageBox::question(this,"RDCastManager - "+tr("Delete Item"),
tr("Are you sure you want to delete this item?"),
QMessageBox::Yes,QMessageBox::No)==
QMessageBox::No) {
return;
}
QProgressDialog *pd=
new QProgressDialog(tr("Deleting Podcast..."),"Cancel",0,2,this);
new QProgressDialog(tr("Deleting Item..."),"Cancel",0,2,this);
pd->setWindowTitle(tr("Progress"));
pd->setCancelButton(NULL);
pd->setMinimumDuration(0);