From kde-commits Mon Apr 09 15:14:44 2007 From: Thomas Zander Date: Mon, 09 Apr 2007 15:14:44 +0000 To: kde-commits Subject: koffice/libs/kofficecore Message-Id: <1176131684.922844.30241.nullmailer () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=117613143610930 SVN commit 651868 by zander: Never use contracted words; so replace "Don't" with "Do not". Also remove the & as the kdelibs will auto add them, so no need unless there is a special need to choose one key. M +4 -4 KoDocumentInfoDlg.cpp --- trunk/koffice/libs/kofficecore/KoDocumentInfoDlg.cpp #651867:651868 @@ -157,7 +157,7 @@ QPixmap p = KIconLoader::global()->loadIcon( "decrypted", K3Icon::Small ); d->m_aboutUi->lblEncrypted->setText( i18n( "This document will be decrypted" ) ); d->m_aboutUi->lblEncryptedPic->setPixmap( p ); - d->m_aboutUi->pbEncrypt->setText( i18n( "Don't d&ecrypt" ) ); + d->m_aboutUi->pbEncrypt->setText( i18n( "Do not decrypt" ) ); } else { QPixmap p = KIconLoader::global()->loadIcon( "encrypted", K3Icon::Small ); @@ -171,7 +171,7 @@ QPixmap p = KIconLoader::global()->loadIcon( "encrypted", K3Icon::Small ); d->m_aboutUi->lblEncrypted->setText( i18n( "This document will be encrypted." ) ); d->m_aboutUi->lblEncryptedPic->setPixmap( p ); - d->m_aboutUi->pbEncrypt->setText( i18n( "Don't &encrypt" ) ); + d->m_aboutUi->pbEncrypt->setText( i18n( "Do not encrypt" ) ); } else { QPixmap p = KIconLoader::global()->loadIcon( "decrypted", K3Icon::Small ); @@ -295,7 +295,7 @@ QPixmap p = KIconLoader::global()->loadIcon( "decrypted", K3Icon::Small ); d->m_aboutUi->lblEncrypted->setText( i18n( "This document will be decrypted" ) ); d->m_aboutUi->lblEncryptedPic->setPixmap( p ); - d->m_aboutUi->pbEncrypt->setText( i18n( "Don't d&ecrypt" ) ); + d->m_aboutUi->pbEncrypt->setText( i18n( "Do not decrypt" ) ); } else { QPixmap p = KIconLoader::global()->loadIcon( "encrypted", K3Icon::Small ); @@ -309,7 +309,7 @@ QPixmap p = KIconLoader::global()->loadIcon( "encrypted", K3Icon::Small ); d->m_aboutUi->lblEncrypted->setText( i18n( "This document will be encrypted." ) ); d->m_aboutUi->lblEncryptedPic->setPixmap( p ); - d->m_aboutUi->pbEncrypt->setText( i18n( "Don't &encrypt" ) ); + d->m_aboutUi->pbEncrypt->setText( i18n( "Do not encrypt" ) ); } else { QPixmap p = KIconLoader::global()->loadIcon( "decrypted", K3Icon::Small );