Update bug reports url to bugs.trinitydesktop.org

Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
(cherry picked from commit 8f29964ae8)
r14.0.x
Slávek Banko 6 years ago
parent 334a80a625
commit d22abc346a

@ -193,7 +193,7 @@ it's very welcome!).
</para>
<para>Another place to check is the &tde; bug list at <ulink
url="http://bugs.kde.org">http://bugs.kde.org</ulink>. This is usually
url="http://bugs.trinitydesktop.org">http://bugs.trinitydesktop.org</ulink>. This is usually
more detailed than the wiki, and provides a place to list specific small
changes that are needed to documents. These are often nice small jobs
to get you started contributing. A set of quick links to ready made
@ -2062,12 +2062,12 @@ holders.</para>
</sect1>
<sect1 id="bugs-kde-org">
<title>Using bugs.kde.org</title>
<title>Using bugs.trinitydesktop.org</title>
<para>Note how we use b.k.o (general to-do items). Also point to Carlos'
guide on quality.k.o</para>
<para>The &tde; bug tracking system, located at <ulink
url="http://bugs.kde.org">http://bugs.kde.org</ulink>, is now part of
url="http://bugs.trinitydesktop.org">http://bugs.trinitydesktop.org</ulink>, is now part of
the documentation team's toolkit. Issues with the &tde; documentation
can be filed in the <quote>docs</quote>
product of the bug tracker. Incorrect or outdated content, missing

@ -223,7 +223,7 @@ void KSample::readSample()
"different file format than expected.\n"
"Maybe your version of the proc filesystem is "
"incompatible with supported versions. "
"Please contact the developer at http://bugs.kde.org/ who will try to sort this out.").arg(MEMINFO_NAME));
"Please contact the developer at http://bugs.trinitydesktop.org/ who will try to sort this out.").arg(MEMINFO_NAME));
l++;
}
@ -309,7 +309,7 @@ void KSample::readSample()
fatal(i18n("Unable to find any entries for CPU statistics "
"in the 'kstat' library. Are you running a non-standard "
"version of Solaris?\n"
"Please contact the maintainer via http://bugs.kde.org/ who will try to sort this out."));
"Please contact the maintainer via http://bugs.trinitydesktop.org/ who will try to sort this out."));
sample.user = sample.nice = sample.kernel = sample.iowait = sample.idle = 0;
sample.stotal = sample.sfree = 0;
@ -324,7 +324,7 @@ void KSample::readSample()
kstat_read(kc, ksp, &cstat) == -1) // and read into buffer
fatal(i18n("Unable to read the CPU statistics entry "
"from the 'kstat' library. The diagnostics are '%1'.\n"
"Please contact the maintainer via http://bugs.kde.org/ who will try to sort this out.").arg(strerror(errno)));
"Please contact the maintainer via http://bugs.trinitydesktop.org/ who will try to sort this out.").arg(strerror(errno)));
// fields are: idle user kernel iowait (no nice info?)
sample.user += cstat.cpu_sysinfo.cpu[1] / sample.cpus;
@ -338,7 +338,7 @@ void KSample::readSample()
fatal(i18n("The number of CPUs appears to have changed at "
"very short notice, or the 'kstat' library returns "
"inconsistent results (%1 vs. %2 CPUs).\n"
"Please contact the maintainer via http://bugs.kde.org/ who will try to sort this out.").arg(sample.cpus).arg(cpus));
"Please contact the maintainer via http://bugs.trinitydesktop.org/ who will try to sort this out.").arg(sample.cpus).arg(cpus));
// availrmem = pages of core for user-proc ( == physmem - kernelmem)
// freemem = no of free pages
@ -350,7 +350,7 @@ void KSample::readSample()
fatal(i18n("Unable to read the memory statistics entry "
"from the 'kstat' library. The diagnostics are '%1'\n"
"You might want to contact the maintainer at "
"http://bugs.kde.org/ who will try to sort this out.").arg(strerror(errno)));
"http://bugs.trinitydesktop.org/ who will try to sort this out.").arg(strerror(errno)));
int i;
unsigned long physmem = 0, freemem = 0, availrmem = 0;
@ -378,7 +378,7 @@ void KSample::readSample()
if ((swapentries = swapctl(SC_GETNSWP, 0)) == -1)
fatal(i18n("Unable to determine the number of "
"swap spaces. The diagnostics are '%1'.\n"
"Please contact the maintainer at http://bugs.kde.org/ who will try to sort this out.").arg(strerror(errno)));
"Please contact the maintainer at http://bugs.trinitydesktop.org/ who will try to sort this out.").arg(strerror(errno)));
if (swapentries != 0) {
// 2* to get some space for padding??
@ -388,7 +388,7 @@ void KSample::readSample()
fatal(i18n("KTimeMon ran out of memory while "
"trying to determine the swap usage.\n"
"Attempted to allocate %1 bytes of memory (2 * %2 + %3 * %4).\n"
"Please contact the maintainer at http://bugs.kde.org/ who will try to sort this out.")
"Please contact the maintainer at http://bugs.trinitydesktop.org/ who will try to sort this out.")
.arg(2 * sizeof(int) + swapentries * sizeof(struct swapent))
.arg(sizeof(int)).arg(swapentries).arg(sizeof(struct swapent)));
@ -399,7 +399,7 @@ void KSample::readSample()
if ((swapentries = swapctl(SC_LIST, stbl)) == -1)
fatal(i18n("Unable to determine the swap usage.\n"
"The diagnostics are '%1'.\n"
"Please contact the maintainer at http://bugs.kde.org/ who will try to sort this out.").arg(strerror(errno)));
"Please contact the maintainer at http://bugs.trinitydesktop.org/ who will try to sort this out.").arg(strerror(errno)));
if (!warned && swapentries != stbl->swt_n) {
@ -407,7 +407,7 @@ void KSample::readSample()
nonfatal(i18n("Information was requested for "
"%1 swap spaces, but only %2 swap entries were returned.\n"
"KTimeMon will attempt to continue.\n"
"Please contact the maintainer at http://bugs.kde.org/ who will try to sort this out.").arg(stbl->swt_n).arg(swapentries));
"Please contact the maintainer at http://bugs.trinitydesktop.org/ who will try to sort this out.").arg(stbl->swt_n).arg(swapentries));
}
for (i = 0; i < swapentries; i++) {

Loading…
Cancel
Save