From 9c88346fc757fd1dc54b3fca151a2a610159d8cf Mon Sep 17 00:00:00 2001 From: zautrix Date: Wed, 27 Oct 2004 21:34:55 +0000 Subject: several fixes --- (limited to 'kmicromail/editaccounts.cpp') diff --git a/kmicromail/editaccounts.cpp b/kmicromail/editaccounts.cpp index 7ad4ec8..c931e45 100644 --- a/kmicromail/editaccounts.cpp +++ b/kmicromail/editaccounts.cpp @@ -102,7 +102,7 @@ void EditAccounts::slotNewMail() void EditAccounts::slotNewAccount( const QString &type ) { - if ( type.compare( "IMAP" ) == 0 ) + if ( type.compare( i18n("IMAP") ) == 0 ) { IMAPaccount *account = new IMAPaccount(); IMAPconfig imap( account, this, 0, true ); @@ -118,7 +118,7 @@ void EditAccounts::slotNewAccount( const QString &type ) account->remove(); } } - else if ( type.compare( "POP3" ) == 0 ) + else if ( type.compare( i18n("POP3") ) == 0 ) { POP3account *account = new POP3account(); POP3config pop3( account, this, 0, true, WStyle_ContextHelp ); @@ -133,7 +133,7 @@ void EditAccounts::slotNewAccount( const QString &type ) account->remove(); } } - else if ( type.compare( "SMTP" ) == 0 ) + else if ( type.compare( i18n("SMTP") ) == 0 ) { SMTPaccount *account = new SMTPaccount(); SMTPconfig smtp( account, this, 0, true, WStyle_ContextHelp ); @@ -149,7 +149,7 @@ void EditAccounts::slotNewAccount( const QString &type ) account->remove(); } } - else if ( type.compare( "NNTP" ) == 0 ) + else if ( type.compare( i18n("NNTP") ) == 0 ) { NNTPaccount *account = new NNTPaccount(); NNTPconfig nntp( account, this, 0, true, WStyle_ContextHelp ); -- cgit v0.9.0.2