CVS_SILENT i18n style guide fixes

svn path=/trunk/kdepim/; revision=262437
wilder-work
Stephan Binner 23 years ago
parent c69b6c7046
commit cb094cce12
  1. 2
      kmcommands.cpp
  2. 2
      kmcomposewin.cpp
  3. 2
      kmfoldermgr.cpp
  4. 2
      kmgroupware.cpp
  5. 2
      kmkernel.cpp

@ -698,7 +698,7 @@ void KMSaveMsgCommand::slotSaveResult(KIO::Job *job)
{
if (KMessageBox::warningContinueCancel(0,
i18n("File %1 exists.\nDo you want to replace it?")
.arg(mUrl.prettyURL()), i18n("Save to file"), i18n("&Replace"))
.arg(mUrl.prettyURL()), i18n("Save to File"), i18n("&Replace"))
== KMessageBox::Continue) {
mMsgListIndex = 0;

@ -1734,7 +1734,7 @@ bool KMComposeWin::applyChanges( bool backgroundMode )
"<p>Should this message also be "
"encrypted?</p></qt>"),
i18n("Encrypt Message?"),
KGuiItem( i18n("Sign and &Encrypt") ),
KGuiItem( i18n("Sign && &Encrypt") ),
KGuiItem( i18n("&Sign Only") ) );
else
ret = KMessageBox::questionYesNoCancel( this,

@ -62,7 +62,7 @@ void KMFolderMgr::expireAll() {
if (config->readBoolEntry("warn-before-expire", true)) {
ret = KMessageBox::warningContinueCancel(KMainWindow::memberList->first(),
i18n("Are you sure you want to expire old messages?"),
i18n("Expire old messages?"), i18n("Expire"));
i18n("Expire Old Messages?"), i18n("Expire"));
}
if (ret == KMessageBox::Continue) {

@ -335,7 +335,7 @@ void KMGroupware::processVCalRequest( const QCString& receiver,
if( fromAddress.isEmpty() ) {
bool bOk;
fromAddress = KInputDialog::getItem( i18n( "Select Address" ),
i18n( "In order to let Outlook(tm) recognize you as the receiver, you need to indicate which one of the following addresses is your email address" ),
i18n( "In order to let Outlook(tm) recognize you as the receiver, you need to indicate which one of the following addresses is your email address:" ),
toAddresses, 0, false, &bOk,
kmkernel->mainWin() );
if( !bOk )

@ -1297,7 +1297,7 @@ void KMKernel::slotResult(KIO::Job *job)
{
if (KMessageBox::warningContinueCancel(0,
i18n("File %1 exists.\nDo you want to replace it?")
.arg((*it).url.prettyURL()), i18n("Save to file"), i18n("&Replace"))
.arg((*it).url.prettyURL()), i18n("Save to File"), i18n("&Replace"))
== KMessageBox::Continue)
byteArrayToRemoteFile((*it).data, (*it).url, TRUE);
}

Loading…
Cancel
Save