diff options
author | Michele Calgaro <[email protected]> | 2018-07-26 22:01:52 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2018-07-26 22:01:52 +0900 |
commit | 74686afc04d02cc0a9abe245eb9c47113a9c238f (patch) | |
tree | 34876f4bbfb067e6b2439f63c6174d0c07bd5605 /tdeio/misc/tdesendbugmail/main.cpp | |
parent | 02639199e2eec94a1d2741f6ba9823267cb39a62 (diff) | |
download | tdelibs-74686afc04d02cc0a9abe245eb9c47113a9c238f.tar.gz tdelibs-74686afc04d02cc0a9abe245eb9c47113a9c238f.zip |
Revert "Revert "Fix bug reports link in about dialog""
The reversion was done by mistake and inadvertently. Sorry for the
mess :-(
This reverts commit dcb480334c2e8a53fd5ca421b6bd686ea594d4ac.
Diffstat (limited to 'tdeio/misc/tdesendbugmail/main.cpp')
-rw-r--r-- | tdeio/misc/tdesendbugmail/main.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tdeio/misc/tdesendbugmail/main.cpp b/tdeio/misc/tdesendbugmail/main.cpp index 32465039d..bf3099094 100644 --- a/tdeio/misc/tdesendbugmail/main.cpp +++ b/tdeio/misc/tdesendbugmail/main.cpp @@ -20,7 +20,7 @@ static TDECmdLineOptions options[] = { { "subject <argument>", I18N_NOOP("Subject line"), 0 }, - { "recipient <argument>", I18N_NOOP("Recipient"), "[email protected]" }, + { "recipient <argument>", I18N_NOOP("Recipient"), "[email protected]" }, TDECmdLineLastOption }; @@ -60,7 +60,7 @@ int main(int argc, char **argv) { TDELocale::setMainCatalogue("tdelibs"); TDEAboutData d("tdesendbugmail", I18N_NOOP("KSendBugMail"), "1.0", - I18N_NOOP("Sends a short bug report to [email protected]"), + I18N_NOOP("Sends a short bug report to [email protected]"), TDEAboutData::License_GPL, "(c) 2000 Stephan Kulow"); d.addAuthor("Stephan Kulow", I18N_NOOP("Author"), "[email protected]"); @@ -72,7 +72,7 @@ int main(int argc, char **argv) { TQCString recipient = args->getOption("recipient"); if (recipient.isEmpty()) - recipient = "[email protected]"; + recipient = "[email protected]"; else { if (recipient.at(0) == '\'') { recipient = recipient.mid(1).left(recipient.length() - 2); @@ -117,7 +117,7 @@ int main(int argc, char **argv) { TQString server = emailConfig.getSetting(KEMailSettings::OutServer); if (server.isEmpty()) - server=TQString::fromLatin1("bugs.kde.org"); + server=TQString::fromLatin1("bugs.trinitydesktop.org"); SMTP *sm = new SMTP; BugMailer bm(sm); |