[PC-BSD Commits] r5774 - pcbsd/trunk/kcmPBSystem
svn at pcbsd.org
svn at pcbsd.org
Mon Jan 4 13:09:10 PST 2010
Author: kris
Date: 2010-01-04 13:09:10 -0800 (Mon, 04 Jan 2010)
New Revision: 5774
Modified:
pcbsd/trunk/kcmPBSystem/cvsupprogress.cpp
Log:
Cleanup a few more problematic "tr" strings
Modified: pcbsd/trunk/kcmPBSystem/cvsupprogress.cpp
===================================================================
--- pcbsd/trunk/kcmPBSystem/cvsupprogress.cpp 2010-01-04 21:04:35 UTC (rev 5773)
+++ pcbsd/trunk/kcmPBSystem/cvsupprogress.cpp 2010-01-04 21:09:10 UTC (rev 5774)
@@ -141,7 +141,7 @@
}
else if (cancelBut->text() == tr("&Start"))
{
- if (getServer() == "UNSET") { KMessageBox::information(this, tr("CVSup server not set. To set your CVSup server, please click the 'Find Fastest...' button and follow the instructions.\n\nAlternatively, the CVSup server for this operation may be set manually from the following file") + ":\n" + supfile, tr("Please set CVSup server before proceeding")); }
+ if (getServer() == "UNSET") { KMessageBox::information(this, tr("CVSup server not set. To set your CVSup server, please click the 'Find Fastest...' button and follow the instructions. Alternatively, the CVSup server for this operation may be set manually from the following file") + ":\n" + supfile, tr("Please set CVSup server before proceeding")); }
else { start(); }
return;
}
@@ -160,7 +160,7 @@
void CVSUpProgress::setCvsupServer( QString *server )
{
- int question = KMessageBox::questionYesNo(this, tr("PC-BSD has detected the fastest server to be:\n") + *server + tr("\n\nWould you like to use this server in future?"), tr("Confirm server selection"));
+ int question = KMessageBox::questionYesNo(this, tr("PC-BSD has detected the fastest server to be:") + "\n" + *server + "\n\n" + tr("Would you like to use this server in future?"), tr("Confirm server selection"));
if (question == KMessageBox::Yes)
{
writeServer(*server);
More information about the Commits
mailing list