Very minor issue. As the program has officially named as "PeerGuardian" (here, for example), would it be better to have corresponding naming policy in the program itself, too?
--- a/pglgui/src/pglgui.cpp
+++ b/pglgui/src/pglgui.cpp
@@ -927,7 +927,7 @@
{
QString message;
- message += QString("<b><i>Peerguardian Linux version %1</b><br>A Graphical User Interface for Peerguardian Linux<br><br>").arg( VERSION_NUMBER );
+ message += QString("<b><i>PeerGuardian Linux version %1</b><br>A Graphical User Interface for PeerGuardian Linux<br><br>").arg( VERSION_NUMBER );
message += "Copyright (C) 2007-2008 Dimitris Palyvos-Giannas<br>";
message += "Copyright (C) 2011-2013 Carlos Pais <br><br>";
message += "pgl is licensed under the GNU General Public License v3, or (at\
@@ -939,7 +939,7 @@
message += "I would also like to thank Art_Fowl from e-pcmag.gr for providing valuable help with Qt4 and for helping me with the project's development. <br>";
message += "Special credit goes to Evangelos Foutras for developing the old project's website, <a href=http://mobloquer.sourceforge.net>mobloquer.foutrelis.com</a></font></i>";
- QMessageBox::about( this, tr( "About Peerguardian Linux GUI" ), tr( message.toUtf8() ));
+ QMessageBox::about( this, tr( "About PeerGuardian Linux GUI" ), tr( message.toUtf8() ));
}
@@ -1082,7 +1082,7 @@
return;
if (! m_Info->daemonState()) {
- QMessageBox::information(this, tr("Peerguardian is not running"), tr("It's not possible to whitelist while Peerguardian is not running."));
+ QMessageBox::information(this, tr("PeerGuardian is not running"), tr("It's not possible to whitelist while PeerGuardian is not running."));
return;
}
--- a/pglgui/src/pglcmd.cpp
+++ b/pglgui/src/pglcmd.cpp
@@ -59,7 +59,7 @@
}
SuperUser::executeCommand( QStringList() << m_FileName << "start" );
- emit actionMessage( tr( "Starting Peerguardian..." ), MESSAGE_TIMEOUT );
+ emit actionMessage( tr( "Starting PeerGuardian..." ), MESSAGE_TIMEOUT );
}
@@ -73,7 +73,7 @@
}
SuperUser::executeCommand( QStringList() << m_FileName << "restart" );
- emit actionMessage( tr( "Restarting Peerguardian..." ), MESSAGE_TIMEOUT );
+ emit actionMessage( tr( "Restarting PeerGuardian..." ), MESSAGE_TIMEOUT );
}
void PglCmd::stop()
@@ -86,7 +86,7 @@
}
SuperUser::executeCommand( QStringList() << m_FileName << "stop" );
- emit actionMessage( tr( "Stopping Peerguardian..." ), MESSAGE_TIMEOUT );
+ emit actionMessage( tr( "Stopping PeerGuardian..." ), MESSAGE_TIMEOUT );
}
@@ -100,7 +100,7 @@
}
SuperUser::executeCommand( QStringList() << m_FileName << "reload" );
- emit actionMessage( tr( "Reloading Peerguardian..." ), MESSAGE_TIMEOUT );
+ emit actionMessage( tr( "Reloading PeerGuardian..." ), MESSAGE_TIMEOUT );
}
@@ -114,7 +114,7 @@
}
SuperUser::executeCommand( QStringList() << m_FileName << "update" );
- emit actionMessage( tr( "Updating Peerguardian..." ), MESSAGE_TIMEOUT );
+ emit actionMessage( tr( "Updating PeerGuardian..." ), MESSAGE_TIMEOUT );
}
@@ -129,7 +129,7 @@
}
SuperUser::executeCommand( QStringList() << m_FileName << "status" );
- emit actionMessage( tr( "Getting status for Peerguardian..." ), MESSAGE_TIMEOUT );
+ emit actionMessage( tr( "Getting status for PeerGuardian..." ), MESSAGE_TIMEOUT );
}
--- a/pglgui/src/pglgui.h
+++ b/pglgui/src/pglgui.h
@@ -62,7 +62,7 @@
#include "whitelist_manager.h"
#define VERSION_NUMBER VERSION
-#define DEFAULT_WINDOW_TITLE "Peerguardian Linux"
+#define DEFAULT_WINDOW_TITLE "PeerGuardian Linux"
//Time related defines
#define INFOMSG_DELAY 5000