KMessageBox::sorry(0,i18n("The selected encoder was not found.\nThe wav file has been removed. Command was: %1").tqarg(job->errorString),i18n("Encoding Failed"));
KMessageBox::sorry(0,i18n("The selected encoder was not found.\nThe wav file has been removed. Command was: %1").arg(job->errorString),i18n("Encoding Failed"));
if(item->percentDone<100&&item->percentDone>-1&&(prompt&&KMessageBox::questionYesNo(this,i18n("KAudioCreator has not finished %1. Remove anyway?").tqarg(item->text(HEADER_DESCRIPTION)),i18n("Unfinished Job in Queue"),KStdGuiItem::del(),i18n("Keep"))
if(item->percentDone<100&&item->percentDone>-1&&(prompt&&KMessageBox::questionYesNo(this,i18n("KAudioCreator has not finished %1. Remove anyway?").arg(item->text(HEADER_DESCRIPTION)),i18n("Unfinished Job in Queue"),KStdGuiItem::del(),i18n("Keep"))
i18n("Part of the album is not set: %1.\n (To change album information click the \"Edit Information\" button.)\n Would you like to rip the selected tracks anyway?").tqarg(list.join(", ")),i18n("Album Information Incomplete"),i18n("Rip"),KStdGuiItem::cancel());
i18n("Part of the album is not set: %1.\n (To change album information click the \"Edit Information\" button.)\n Would you like to rip the selected tracks anyway?").arg(list.join(", ")),i18n("Album Information Incomplete"),i18n("Rip"),KStdGuiItem::cancel());
if(r==KMessageBox::No)
return;
@ -417,7 +417,7 @@ void TracksImp::startSession( int encoder )
KMessageBox::information(this,
i18n("%1 Job(s) have been started. You can watch their progress in the "
"jobs section.").tqarg(selected.count()),
"jobs section.").arg(selected.count()),
i18n("Jobs have started"),i18n("Jobs have started"));
KRecGlobal::the()->message(i18n("Saving \"%1\" was successful.").tqarg(filename()));
KRecGlobal::the()->message(i18n("Saving \"%1\" was successful.").arg(filename()));
_saved=true;
}
@ -429,7 +429,7 @@ void KRecBuffer::setActive( bool n ) {
}
voidKRecBuffer::deleteBuffer(){
if(KMessageBox::warningContinueCancel(KRecGlobal::the()->mainWidget(),i18n("Do you really want to delete the selected part '%1'?").tqarg(filename()),i18n("Delete Part?"),KStdGuiItem::del())==KMessageBox::Continue)
if(KMessageBox::warningContinueCancel(KRecGlobal::the()->mainWidget(),i18n("Do you really want to delete the selected part '%1'?").arg(filename()),i18n("Delete Part?"),KStdGuiItem::del())==KMessageBox::Continue)
intchoice=KMessageBox::questionYesNoCancel(_impl,i18n("The document \"%1\" has been modified.\nDo you want to save it?").tqarg(_currentFile->filename()),TQString(),KStdGuiItem::save(),KStdGuiItem::discard());
intchoice=KMessageBox::questionYesNoCancel(_impl,i18n("The document \"%1\" has been modified.\nDo you want to save it?").arg(_currentFile->filename()),TQString(),KStdGuiItem::save(),KStdGuiItem::discard());
KMessageBox::information(this,i18n("<qt>Press %1 to show the menubar.</qt>").tqarg(menubarAction->shortcut().toString()),TQString(),"Hide Menu warning");
KMessageBox::information(this,i18n("<qt>Press %1 to show the menubar.</qt>").arg(menubarAction->shortcut().toString()),TQString(),"Hide Menu warning");