-rw-r--r-- | kmicromail/opiemail.cpp | 41 |
1 files changed, 21 insertions, 20 deletions
diff --git a/kmicromail/opiemail.cpp b/kmicromail/opiemail.cpp index 164988c..3aa7905 100644 --- a/kmicromail/opiemail.cpp +++ b/kmicromail/opiemail.cpp | |||
@@ -12,4 +12,5 @@ | |||
12 | #include "accountitem.h" | 12 | #include "accountitem.h" |
13 | #include "koprefsdialog.h" | 13 | #include "koprefsdialog.h" |
14 | #include "klocale.h" | ||
14 | 15 | ||
15 | #include <qmessagebox.h> | 16 | #include <qmessagebox.h> |
@@ -177,5 +178,5 @@ void OpieMail::slotSendQueued() | |||
177 | if (smtpList.count()==0) | 178 | if (smtpList.count()==0) |
178 | { | 179 | { |
179 | QMessageBox::information(0,tr("Info"),tr("Define a smtp account first!\n")); | 180 | QMessageBox::information(0,i18n("Info"),i18n("Define a smtp account first!\n")); |
180 | return; | 181 | return; |
181 | } | 182 | } |
@@ -200,5 +201,5 @@ void OpieMail::slotSendQueued() | |||
200 | if ( wrap->flushOutbox() ) | 201 | if ( wrap->flushOutbox() ) |
201 | { | 202 | { |
202 | QMessageBox::information(0,tr("Info"),tr("Mail queue flushed")); | 203 | QMessageBox::information(0,i18n("Info"),i18n("Mail queue flushed")); |
203 | } | 204 | } |
204 | delete wrap; | 205 | delete wrap; |
@@ -274,5 +275,5 @@ void OpieMail::slotDeleteMail() | |||
274 | if (!mailView->currentItem()) return; | 275 | if (!mailView->currentItem()) return; |
275 | RecMailP mail = ((MailListViewItem*)mailView->currentItem() )->data(); | 276 | RecMailP mail = ((MailListViewItem*)mailView->currentItem() )->data(); |
276 | if ( QMessageBox::warning(this, tr("Delete Mail"), QString( tr("<p>Do you really want to delete this mail? <br><br>" ) + mail->getFrom() + " - " + mail->getSubject() ) , QMessageBox::Yes, QMessageBox::No ) == QMessageBox::Yes ) | 277 | if ( QMessageBox::warning(this, i18n("Delete Mail"), QString( i18n("<p>Do you really want to delete this mail? <br><br>" ) + mail->getFrom() + " - " + mail->getSubject() ) , QMessageBox::Yes, QMessageBox::No ) == QMessageBox::Yes ) |
277 | { | 278 | { |
278 | mail->Wrapper()->deleteMail( mail ); | 279 | mail->Wrapper()->deleteMail( mail ); |
@@ -284,5 +285,5 @@ void OpieMail::slotDeleteAllMail() | |||
284 | 285 | ||
285 | QValueList<RecMailP> t; | 286 | QValueList<RecMailP> t; |
286 | if ( QMessageBox::warning(this, tr("Delete All Mails"), tr("Do you really want to delete\nall selected mails?" ) , QMessageBox::Yes, QMessageBox::No ) == QMessageBox::Yes ) | 287 | if ( QMessageBox::warning(this, i18n("Delete All Mails"), i18n("Do you really want to delete\nall selected mails?" ) , QMessageBox::Yes, QMessageBox::No ) == QMessageBox::Yes ) |
287 | { | 288 | { |
288 | MailListViewItem* item = (MailListViewItem*)mailView->firstChild (); | 289 | MailListViewItem* item = (MailListViewItem*)mailView->firstChild (); |
@@ -321,20 +322,20 @@ void OpieMail::mailHold(int button, QListViewItem *item,const QPoint&,int ) | |||
321 | { | 322 | { |
322 | if (mailtype==MAILLIB::A_NNTP) { | 323 | if (mailtype==MAILLIB::A_NNTP) { |
323 | m->insertItem(tr("Read this posting"),this,SLOT(displayMail())); | 324 | m->insertItem(i18n("Read this posting"),this,SLOT(displayMail())); |
324 | m->insertItem(tr("Copy this posting"),this,SLOT(slotMoveCopyMail())); | 325 | m->insertItem(i18n("Copy this posting"),this,SLOT(slotMoveCopyMail())); |
325 | m->insertSeparator(); | 326 | m->insertSeparator(); |
326 | m->insertItem(tr("Copy all selected postings"),this,SLOT(slotMoveCopyAllMail())); | 327 | m->insertItem(i18n("Copy all selected postings"),this,SLOT(slotMoveCopyAllMail())); |
327 | m->insertItem(tr("Clear selection"),this,SLOT(clearSelection())); | 328 | m->insertItem(i18n("Clear selection"),this,SLOT(clearSelection())); |
328 | } else { | 329 | } else { |
329 | if (folderView->currentisDraft()) { | 330 | if (folderView->currentisDraft()) { |
330 | m->insertItem(tr("Edit this mail"),this,SLOT(reEditMail())); | 331 | m->insertItem(i18n("Edit this mail"),this,SLOT(reEditMail())); |
331 | } | 332 | } |
332 | m->insertItem(tr("Read this mail"),this,SLOT(displayMail())); | 333 | m->insertItem(i18n("Read this mail"),this,SLOT(displayMail())); |
333 | m->insertItem(tr("Move/Copy this mail"),this,SLOT(slotMoveCopyMail())); | 334 | m->insertItem(i18n("Move/Copy this mail"),this,SLOT(slotMoveCopyMail())); |
334 | m->insertItem(tr("Delete this mail"),this,SLOT(slotDeleteMail())); | 335 | m->insertItem(i18n("Delete this mail"),this,SLOT(slotDeleteMail())); |
335 | m->insertSeparator(); | 336 | m->insertSeparator(); |
336 | m->insertItem(tr("Move/Copy all selected mail"),this,SLOT(slotMoveCopyAllMail())); | 337 | m->insertItem(i18n("Move/Copy all selected mail"),this,SLOT(slotMoveCopyAllMail())); |
337 | m->insertItem(tr("Delete all selected mails"),this,SLOT(slotDeleteAllMail())); | 338 | m->insertItem(i18n("Delete all selected mails"),this,SLOT(slotDeleteAllMail())); |
338 | m->insertItem(tr("Clear selection"),this,SLOT(clearSelection())); | 339 | m->insertItem(i18n("Clear selection"),this,SLOT(clearSelection())); |
339 | } | 340 | } |
340 | m->setFocus(); | 341 | m->setFocus(); |
@@ -401,6 +402,6 @@ void OpieMail::slotMoveCopyMail() | |||
401 | if (sels.newFolder() && !targetMail->createMbox(targetFolder)) | 402 | if (sels.newFolder() && !targetMail->createMbox(targetFolder)) |
402 | { | 403 | { |
403 | QMessageBox::critical(0,tr("Error creating new Folder"), | 404 | QMessageBox::critical(0,i18n("Error creating new Folder"), |
404 | tr("<center>Error while creating<br>new folder - breaking.</center>")); | 405 | i18n("<center>Error while creating<br>new folder - breaking.</center>")); |
405 | return; | 406 | return; |
406 | } | 407 | } |
@@ -417,5 +418,5 @@ void OpieMail::slotMoveCopyAllMail() | |||
417 | if (!mailView->currentItem()) return; | 418 | if (!mailView->currentItem()) return; |
418 | QValueList<RecMailP> t; | 419 | QValueList<RecMailP> t; |
419 | // if ( QMessageBox::warning(this, tr("Move/Copy all selected mails"), tr("Do you really want to copy/move\nall selected mails?" ) , QMessageBox::Yes, QMessageBox::No ) == QMessageBox::Yes ) | 420 | // if ( QMessageBox::warning(this, i18n("Move/Copy all selected mails"), i18n("Do you really want to copy/move\nall selected mails?" ) , QMessageBox::Yes, QMessageBox::No ) == QMessageBox::Yes ) |
420 | { | 421 | { |
421 | MailListViewItem* item = (MailListViewItem*)mailView->firstChild (); | 422 | MailListViewItem* item = (MailListViewItem*)mailView->firstChild (); |
@@ -446,6 +447,6 @@ void OpieMail::slotMoveCopyAllMail() | |||
446 | if (sels.newFolder() && !targetMail->createMbox(targetFolder)) | 447 | if (sels.newFolder() && !targetMail->createMbox(targetFolder)) |
447 | { | 448 | { |
448 | QMessageBox::critical(0,tr("Error creating new Folder"), | 449 | QMessageBox::critical(0,i18n("Error creating new Folder"), |
449 | tr("<center>Error while creating<br>new folder - breaking.</center>")); | 450 | i18n("<center>Error while creating<br>new folder - breaking.</center>")); |
450 | return; | 451 | return; |
451 | } | 452 | } |