Correct i18n call. Thanks for reporting

BUGS: 115278
Stephan you should improve your scripts that do the Yes/No changing ;-)
CCMAIL: binner@kde.org

svn path=/branches/KDE/3.5/kdegraphics/kpdf/; revision=475346
remotes/origin/kpdf-3.5
Albert Astals Cid 21 years ago
parent 7c11ffa29c
commit 08f3d4e90e
  1. 2
      part.cpp

@ -692,7 +692,7 @@ void Part::slotSaveFileAs()
{
if ( KIO::NetAccess::exists( saveURL, false, widget() ) )
{
if (KMessageBox::warningContinueCancel( widget(), i18n("A file named \"%1\" already exists. Are you sure you want to overwrite it?").arg(saveURL.filename(), QString::null, i18n("Overwrite"))) != KMessageBox::Continue)
if (KMessageBox::warningContinueCancel( widget(), i18n("A file named \"%1\" already exists. Are you sure you want to overwrite it?").arg(saveURL.filename()), QString::null, i18n("Overwrite")) != KMessageBox::Continue)
return;
}

Loading…
Cancel
Save