diff options
author | Chris <xchrisx@uber.space> | 2019-07-17 22:17:51 +0200 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2019-07-19 17:32:51 +0900 |
commit | da985729241c535097b35614c779569339d8a7ab (patch) | |
tree | ea062c2de49326f7985bbcaa83439244ddb82698 /kopete/protocols | |
parent | feed0e513bf682301520b329650c9480a41ac0e5 (diff) | |
download | tdenetwork-da985729241c535097b35614c779569339d8a7ab.tar.gz tdenetwork-da985729241c535097b35614c779569339d8a7ab.zip |
Fix branding of kopete and make it promoting TDE.
Signed-off-by: Chris <xchrisx@uber.space>
(cherry picked from commit be39705ebd9f706fab3b2d5e7326697322db0d0f)
Diffstat (limited to 'kopete/protocols')
-rw-r--r-- | kopete/protocols/irc/ircaccount.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kopete/protocols/irc/ircaccount.cpp b/kopete/protocols/irc/ircaccount.cpp index e586dd6a..ac9bcfd0 100644 --- a/kopete/protocols/irc/ircaccount.cpp +++ b/kopete/protocols/irc/ircaccount.cpp @@ -79,7 +79,7 @@ IRCAccount::IRCAccount(IRCProtocol *protocol, const TQString &accountId, const T for( TQMap< TQString, TQString >::ConstIterator it = replies.begin(); it != replies.end(); ++it ) m_engine->addCustomCtcp( it.key(), it.data() ); - TQString version=i18n("Kopete IRC Plugin %1 [http://kopete.kde.org]").arg(kapp->aboutData()->version()); + TQString version=i18n("Kopete IRC Plugin %1 [http://trinitydesktop.org]").arg(kapp->aboutData()->version()); m_engine->setVersionString( version ); TQObject::connect(m_engine, TQT_SIGNAL(successfullyChangedNick(const TQString &, const TQString &)), @@ -352,7 +352,7 @@ const TQString IRCAccount::defaultPart() const { TQString partMsg = configGroup()->readEntry(TQString::fromLatin1("defaultPart")); if( partMsg.isEmpty() ) - return TQString::fromLatin1("Kopete %1 : http://kopete.kde.org").arg( kapp->aboutData()->version() ); + return TQString::fromLatin1("Kopete %1 : http://trinitydesktop.org").arg( kapp->aboutData()->version() ); return partMsg; } @@ -360,7 +360,7 @@ const TQString IRCAccount::defaultQuit() const { TQString quitMsg = configGroup()->readEntry(TQString::fromLatin1("defaultQuit")); if( quitMsg.isEmpty() ) - return TQString::fromLatin1("Kopete %1 : http://kopete.kde.org").arg(kapp->aboutData()->version()); + return TQString::fromLatin1("Kopete %1 : http://trinitydesktop.org").arg(kapp->aboutData()->version()); return quitMsg; } |