From edbdd8c8df7ff99f4273ae0296386fecf4f3b189 Mon Sep 17 00:00:00 2001 From: llornkcor Date: Sun, 06 Apr 2003 18:09:49 +0000 Subject: add some tr to status messages --- (limited to 'noncore/unsupported') diff --git a/noncore/unsupported/mailit/popclient.cpp b/noncore/unsupported/mailit/popclient.cpp index a406af2..2f14ed2 100644 --- a/noncore/unsupported/mailit/popclient.cpp +++ b/noncore/unsupported/mailit/popclient.cpp @@ -97,12 +97,12 @@ void PopClient::setSelectedMails(MailList *list) void PopClient::connectionEstablished() { - emit updateStatus("Connection established"); + emit updateStatus(tr("Connection established")); } void PopClient::errorHandling(int status) { - emit updateStatus("Error Occured"); + emit updateStatus(tr("Error Occured")); emit errorOccurred(status); socket->close(); receiving = FALSE; @@ -212,19 +212,19 @@ void PopClient::incomingData() temp2.setNum(newMessages - lastSync); temp.setNum(messageCount - lastSync); if (!selected) { - emit updateStatus("Retrieving " + temp + "/" + temp2); + emit updateStatus(tr("Retrieving ") + temp + "/" + temp2); } else { //completing a previously closed transfer if ( (messageCount - lastSync) <= 0) { temp.setNum(messageCount); - emit updateStatus("Previous message " + temp); + emit updateStatus(tr("Previous message ") + temp); } else { - emit updateStatus("Completing message " + temp); + emit updateStatus(tr("Completing message ") + temp); } } break; } else { - emit updateStatus("No new Messages"); + emit updateStatus(tr("No new Messages")); status = Quit; } } @@ -300,10 +300,10 @@ void PopClient::incomingData() //completing a previously closed transfer if ( (messageCount - lastSync) <= 0) { temp.setNum(messageCount); - emit updateStatus("Previous message " + temp); + emit updateStatus(tr("Previous message ") + temp); } else { temp.setNum(messageCount - lastSync); - emit updateStatus("Completing message " + temp); + emit updateStatus(tr("Completing message ") + temp); } break; } else { @@ -315,7 +315,7 @@ void PopClient::incomingData() status = Size; temp2.setNum(newMessages - lastSync); temp.setNum(messageCount - lastSync); - emit updateStatus("Retrieving " + temp + "/" + temp2); + emit updateStatus(tr("Retrieving ") + temp + "/" + temp2); break; } @@ -331,9 +331,9 @@ void PopClient::incomingData() int newM = newMessages - lastSync; if (newM > 0) { temp.setNum(newM); - emit updateStatus(temp + " new messages"); + emit updateStatus(temp + tr(" new messages")); } else { - emit updateStatus("No new messages"); + emit updateStatus(tr("No new messages")); } socket->close(); diff --git a/noncore/unsupported/mailit/smtpclient.cpp b/noncore/unsupported/mailit/smtpclient.cpp index 7bb7933..3bdc072 100644 --- a/noncore/unsupported/mailit/smtpclient.cpp +++ b/noncore/unsupported/mailit/smtpclient.cpp @@ -50,7 +50,7 @@ void SmtpClient::newConnection(QString target, int port) sending = TRUE; socket->connectToHost(target, port); - emit updateStatus("DNS lookup"); + emit updateStatus(tr("DNS lookup")); } void SmtpClient::addMail(QString from, QString subject, QStringList to, QString body) @@ -67,7 +67,7 @@ void SmtpClient::addMail(QString from, QString subject, QStringList to, QString void SmtpClient::connectionEstablished() { - emit updateStatus("Connection established"); + emit updateStatus(tr("Connection established")); } @@ -129,7 +129,7 @@ void SmtpClient::incomingData() if (response[0] == '2') { *stream << "DATA\r\n"; status = Body; - emit updateStatus("Sending: " + mailPtr->subject); + emit updateStatus(tr("Sending: ") + mailPtr->subject); } else errorHandling(ErrUnknownResponse); break; } @@ -151,7 +151,7 @@ void SmtpClient::incomingData() status = Done; QString temp; temp.setNum(mailList.count()); - emit updateStatus("Sent " + temp + " messages"); + emit updateStatus(tr("Sent ") + temp + tr(" messages")); emit mailSent(); mailList.clear(); sending = FALSE; -- cgit v0.9.0.2