mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-09-08 16:39:56 +02:00
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:
parent
104b48cf56
commit
70bbfb63e8
@ -20233,3 +20233,6 @@
|
||||
2020-08-13 Fred Gleason <fredg@paravelsystems.com>
|
||||
* Changed the name of the 'List Log' dialog in rdcastmanager(1)
|
||||
to 'List Log Events'.
|
||||
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).
|
||||
|
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user