diff --git a/part.cpp b/part.cpp --- a/part.cpp +++ b/part.cpp @@ -1624,11 +1624,11 @@ bool goAheadWithPresentationMode = true; if ( !m_cliPresentation ) { - const QString text = i18n( "The document requested to be launched in presentation mode.\n" - "Do you want to allow it?" ); + const QString text = i18n( "This document wants to be shown in presentation mode.\n" + "Enter presentation mode now?" ); const QString caption = i18n( "Presentation Mode" ); - const KGuiItem yesItem = KGuiItem( i18n( "Allow" ), QStringLiteral("dialog-ok"), i18n( "Allow the presentation mode" ) ); - const KGuiItem noItem = KGuiItem( i18n( "Do Not Allow" ), QStringLiteral("process-stop"), i18n( "Do not allow the presentation mode" ) ); + const KGuiItem yesItem = KGuiItem( i18n( "Enter presentation mode" ), QStringLiteral("dialog-ok") ); + const KGuiItem noItem = KGuiItem( i18n( "Stay here" ), QStringLiteral("dialog-cancel") ); const int result = KMessageBox::questionYesNo( widget(), text, caption, yesItem, noItem ); if ( result == KMessageBox::No ) goAheadWithPresentationMode = false;