Compare commits

..

12 Commits

Author SHA1 Message Date
Martin Baulig
d8871029eb Merged everything since May 31 from HEAD and released LibGTop 1.0.3.
1999-09-16  Martin Baulig  <martin@home-of-linux.org>

	Merged everything since May 31 from HEAD and released
 	LibGTop 1.0.3.
1999-09-16 21:49:18 +00:00
Martin Baulig
6799ce187b **** Merged from HEAD **** 1999-09-16 21:38:03 +00:00
Tomas Ogren
2b6b2578be Synced
1999-09-16  Tomas Ogren  <stric@ing.umu.se>

* sv.po: Synced
1999-09-16 21:37:45 +00:00
Martin Baulig
1b0a9fd291 Should be ok now. 1999-09-16 21:37:20 +00:00
Martin Baulig
43e070dd8b make update-po. 1999-09-16 21:33:27 +00:00
Martin Baulig
b0d18119ff **** Merged from HEAD **** 1999-09-16 21:31:36 +00:00
Kjartan Maraas
be05f8163a Updated translation.
1999-07-11  Kjartan Maraas  <kmaraas@online.no>

		* no.po: Updated translation.
1999-07-11 12:27:13 +00:00
Tomas Ogren
d6cdf95d83 New file
1999-07-11  Tomas Ogren  <stric@ing.umu.se>

* sv.po: New file
1999-07-11 01:41:44 +00:00
Tomas Ögren
2256a9127f darn typo 1999-07-11 01:41:01 +00:00
Tomas Ögren
e6507a80be 1999-07-11 Tomas Ogren <stric@ing.umu.se>e
* configure.in: Added sv to ALL_LINGUAS
1999-07-11 01:40:47 +00:00
Tomas Ogren
8411e566b4 Fixed a tyop
1999-07-11  Tomas Ogren  <stric@ing.umu.se>

* sysdeps/names/procmem.c: Fixed a tyop
1999-07-11 01:35:40 +00:00
Martin Baulig
40854f4179 Set version number to 1.0.3 binary age 2, interface age 2.
1999-05-31  Martin Baulig  <martin@home-of-linux.org>

	* LIBGTOP-VERSION: Set version number to 1.0.3 binary age 2,
	interface age 2.
1999-05-31 14:11:07 +00:00
42 changed files with 1897 additions and 443 deletions

View File

@@ -1,2 +1,2 @@
Martin Baulig (martin@home-of-linux.org)
Josh Sled <jsled@scam.XCF.Berkeley.EDU>
Drazen Kacar (dave@srce.hr)

View File

@@ -1,3 +1,21 @@
1999-09-16 Martin Baulig <martin@home-of-linux.org>
Merged everything since May 31 from HEAD and released
LibGTop 1.0.3.
1999-07-11 Tomas Ogren <stric@ing.umu.se>
* configure.in: Added sv to ALL_LINGUAS
1999-07-11 Tomas Ogren <stric@ing.umu.se>
* sysdeps/names/procmem.c: Fixed a tyop
1999-05-31 Martin Baulig <martin@home-of-linux.org>
* LIBGTOP-VERSION: Set version number to 1.0.3 binary age 2,
interface age 2.
1999-05-31 Martin Baulig <martin@home-of-linux.org>
Released LibGTop 1.0.2.

View File

@@ -8,10 +8,10 @@
#
LIBGTOP_MAJOR_VERSION=1
LIBGTOP_MINOR_VERSION=0
LIBGTOP_MICRO_VERSION=2
LIBGTOP_MICRO_VERSION=3
LIBGTOP_INTERFACE_AGE=1
LIBGTOP_BINARY_AGE=1
LIBGTOP_INTERFACE_AGE=2
LIBGTOP_BINARY_AGE=2
# Increase each time you change the client/server protocol.
LIBGTOP_SERVER_VERSION=5

View File

@@ -31,6 +31,8 @@ confexecdir = $(libdir)
confexec_DATA = $(top_builddir)/libgtopConf.sh \
$(top_builddir)/libgtop-features.def
CLEANFILES=libgtopConf.sh
bin_SCRIPTS = $(top_builddir)/libgtop-config
## to automatically rebuild aclocal.m4 if any of the macros in

View File

@@ -158,6 +158,9 @@ else
static_targets=""
fi
AM_CONDITIONAL(ENABLE_STATIC, test x$enable_static = xyes)
AM_CONDITIONAL(ENABLE_SHARED, test x$enable_static = xyes)
AC_SUBST(static_targets)
AC_SUBST(smp_examples)
AC_SUBST(guile_examples)
@@ -226,7 +229,7 @@ AC_FUNC_STRFTIME
AC_CHECK_FUNCS(getcwd gettimeofday getwd putenv strdup strtoul uname)
dnl ## all 'es_??' are only needed for format numbers different of 'es'
ALL_LINGUAS="de es es_DO es_GT es_HN es_MX es_PA es_PE es_SV fr ko no ja"
ALL_LINGUAS="de es es_DO es_GT es_HN es_MX es_PA es_PE es_SV fr ko no ja sv"
AM_GNOME_GETTEXT
AC_PATH_XTRA

View File

@@ -43,7 +43,7 @@ int
main (int argc, char *argv [])
{
glibtop_netload netload;
unsigned method, count, port, i;
unsigned method, count, port;
struct in_addr addr, subnet;
char *address_string, *subnet_string;
char buffer [BUFSIZ];

View File

@@ -31,8 +31,6 @@
#include <glibtop/union.h>
#include <glibtop/sysdeps.h>
#include <math.h>
static void
output (pid_t pid)
{

View File

@@ -27,8 +27,6 @@
#include <glibtop/cpu.h>
#include <glibtop/xmalloc.h>
#include <math.h>
int
main (int argc, char *argv [])
{
@@ -67,7 +65,7 @@ main (int argc, char *argv [])
memset (separator, '-', 91);
separator [92] = '\0';
sprintf (buffer, _("Ticks (%d per second):"), frequency);
sprintf (buffer, _("Ticks (%ld per second):"), frequency);
printf ("\n\n%-26s %12s %12s %12s %12s %12s\n%s\n", buffer,
_("Total"), _("User"), _("Nice"), _("Sys"), _("Idle"), separator);

View File

@@ -38,7 +38,7 @@ int
main (int argc, char *argv [])
{
glibtop_sysdeps sysdeps;
unsigned method, count, port, i;
unsigned method, count, port;
char buffer [BUFSIZ];
count = PROFILE_COUNT;

View File

@@ -70,14 +70,11 @@ int
main (int argc, char *argv [])
{
glibtop_union data;
glibtop_sysdeps sysdeps;
unsigned c, count, port, i, *ptr;
unsigned c, count, *ptr;
struct rusage total_start, total_end;
struct rusage rusage_start, rusage_end;
struct timeval elapsed_utime, elapsed_stime;
char buffer [BUFSIZ];
pid_t pid, ppid;
char *args;
pid_t pid;
count = PROFILE_COUNT;

View File

@@ -28,13 +28,22 @@
BEGIN_LIBGTOP_DECLS
#ifndef G_GNUC_UNUSED
#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ > 4)
#define G_GNUC_UNUSED \
__attribute__((unused))
#else /* !__GNUC__ */
#define G_GNUC_UNUSED
#endif /* !__GNUC__ */
#endif /* defined G_GNUC_UNUSED */
void glibtop_error_vr (glibtop *server, char *format, va_list args);
void glibtop_warn_vr (glibtop *server, char *format, va_list args);
void glibtop_error_io_vr (glibtop *server, char *format, int, va_list args);
void glibtop_warn_io_vr (glibtop *server, char *format, int, va_list args);
static void
static void G_GNUC_UNUSED
glibtop_error_r (glibtop *server, char *format, ...)
{
va_list args;
@@ -44,7 +53,7 @@ glibtop_error_r (glibtop *server, char *format, ...)
va_end (args);
}
static void
static void G_GNUC_UNUSED
glibtop_warn_r (glibtop *server, char *format, ...)
{
va_list args;
@@ -54,7 +63,7 @@ glibtop_warn_r (glibtop *server, char *format, ...)
va_end (args);
}
static void
static void G_GNUC_UNUSED
glibtop_error_io_r (glibtop *server, char *format, ...)
{
va_list args;
@@ -64,7 +73,7 @@ glibtop_error_io_r (glibtop *server, char *format, ...)
va_end (args);
}
static void
static void G_GNUC_UNUSED
glibtop_warn_io_r (glibtop *server, char *format, ...)
{
va_list args;

View File

@@ -1,6 +1,7 @@
# Note that this is NOT a relocatable package
%define ver @VERSION@
%define rel SNAP
%define RELEASE SNAP
%define rel %{?CUSTOM_RELEASE} %{!?CUSTOM_RELEASE:%RELEASE}
%define prefix /usr
Summary: LibGTop library
@@ -118,8 +119,9 @@ rm -rf $RPM_BUILD_ROOT
%{prefix}/lib/*.sh
%{prefix}/lib/*.def
%{prefix}/include/*
%{prefix}/lib/libgtop
%files examples
%defattr(-,root,root)
%{prefix}/libexec/libgtop/*
%{prefix}/libexec/libgtop

View File

@@ -1,3 +1,15 @@
1999-09-16 Tomas Ogren <stric@ing.umu.se>
* sv.po: Synced
1999-07-11 Kjartan Maraas <kmaraas@online.no>
* no.po: Updated translation.
1999-07-11 Tomas Ogren <stric@ing.umu.se>
* sv.po: New file
1999-01-27 Kjartan Maraas <kmaraas@fib.hl.no>
* no.po: Updated translation

279
po/de.po
View File

@@ -1,12 +1,11 @@
# libgtop de.po
# Copyright (C) 1998 Free Software Foundation, Inc.
# Martin Baulig <martin@home-of-linux.org>, 1998.
#
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Free Software Foundation, Inc.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
msgid ""
msgstr ""
"Project-Id-Version: libgtop VERSION\n"
"POT-Creation-Date: 1999-05-28 01:39+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"POT-Creation-Date: 1999-09-16 23:16+0200\n"
"PO-Revision-Date: 1999-07-11 12:44+02:00\n"
"Last-Translator: Martin Baulig <martin@home-of-linux.org>\n"
"Language-Team: Martin Baulig <martin@home-of-linux.org>\n"
"MIME-Version: 1.0\n"
@@ -297,6 +296,17 @@ msgid ""
"\n"
"The math bit should be a decimal 4, and the traced bit is decimal 10."
msgstr ""
"Kernelflags des Prozesses.\n"
"\n"
"Auf Linux hat momentan jedes Flag ein gesetztes Math-Bit, da crt0.s\n"
"auf Mathematikemulation pr<70>ft, also wird dies in der Ausgabe nicht\n"
"ausgegeben.\n"
"\n"
"Dies ist wahrscheinlich ein Fehler, da nicht jeder Prozess ein\n"
"compiliertes C-Programm ist.\n"
"\n"
"Das Math-Bit sollte eine dezimale 4 sein, und das Traced-Bit ist\n"
"dezimal 10. "
#. Min_Flt
#: sysdeps/names/prockernel.c:59
@@ -396,8 +406,8 @@ msgid "Number of pages of virtual memory"
msgstr "Anzahl virtueller Speicherseiten"
#: sysdeps/names/procmem.c:55
msgid "Number of residnet set (non-swapped) pages"
msgstr "Anzahl nichtausgelagerter Speicherseiten"
msgid "Number of resident set (non-swapped) pages"
msgstr "Anzahl residenter (nicht ausgelagerter) Speicherseiten"
#: sysdeps/names/procmem.c:56
msgid "Number of pages of shared (mmap'd) memory"
@@ -544,11 +554,11 @@ msgstr "Prozessstatus (S=schl
#: sysdeps/names/procstate.c:47
msgid "UID of process"
msgstr "UID des Prozesses"
msgstr "echte UID des Prozesses"
#: sysdeps/names/procstate.c:48
msgid "GID of process"
msgstr "GID des Prozesses"
msgstr "echte GID des Prozesses"
#: sysdeps/names/proctime.c:44
msgid "Start_Time"
@@ -588,11 +598,11 @@ msgstr "Frequenz"
#: sysdeps/names/proctime.c:46
msgid "XCPU_UTime"
msgstr ""
msgstr "XCPU_UTime"
#: sysdeps/names/proctime.c:46
msgid "XCPU_STime"
msgstr ""
msgstr "XCPU_STime"
#: sysdeps/names/proctime.c:51
msgid "Start time of process in seconds since the epoch"
@@ -745,63 +755,63 @@ msgstr "Standard UNIX 'nice' Wert des Prozesses"
#: sysdeps/names/sem_limits.c:42 sysdeps/names/sem_limits.c:56
msgid "Number of entries in semaphore map"
msgstr ""
msgstr "Anzahl Eintr<74>ge in der Semaphortabelle"
#: sysdeps/names/sem_limits.c:43 sysdeps/names/sem_limits.c:57
msgid "Max number of arrays"
msgstr ""
msgstr "Maximale Anzahl Arrays"
#: sysdeps/names/sem_limits.c:44 sysdeps/names/sem_limits.c:58
msgid "Max semaphores system wide"
msgstr ""
msgstr "Maximale Anzahl Semaphore im System"
#: sysdeps/names/sem_limits.c:45 sysdeps/names/sem_limits.c:59
msgid "Number of undo structures system wide"
msgstr ""
msgstr "Anzahl Undo-Strukturen im System"
#: sysdeps/names/sem_limits.c:46 sysdeps/names/sem_limits.c:60
msgid "Max semaphores per array"
msgstr ""
msgstr "Maximale Anzahl Semaphore pro Array"
#: sysdeps/names/sem_limits.c:47 sysdeps/names/sem_limits.c:61
msgid "Max ops per semop call"
msgstr ""
msgstr "Maximale Anzahl Operationen pro semop-Aufruf"
#: sysdeps/names/sem_limits.c:48 sysdeps/names/sem_limits.c:62
msgid "Max number of undo entries per process"
msgstr ""
msgstr "Maximale Anzahl Undo-Eintr<74>ge pro Prozess"
#: sysdeps/names/sem_limits.c:49 sysdeps/names/sem_limits.c:63
msgid "sizeof struct sem_undo"
msgstr ""
msgstr "sizeof struct sem_undo"
#: sysdeps/names/sem_limits.c:50 sysdeps/names/sem_limits.c:64
msgid "Semaphore max value"
msgstr ""
msgstr "Semaphor-Maximalwert"
#: sysdeps/names/sem_limits.c:51 sysdeps/names/sem_limits.c:65
msgid "Adjust on exit max value"
msgstr ""
msgstr "Maximaler Adjust-on-Exit-Wert"
#: sysdeps/names/shm_limits.c:39 sysdeps/names/shm_limits.c:48
msgid "Max segment size"
msgstr ""
msgstr "Maximale Segmentgr<67><72>e"
#: sysdeps/names/shm_limits.c:40 sysdeps/names/shm_limits.c:49
msgid "Min segment size"
msgstr ""
msgstr "Minimale Segmentgr<67><72>e"
#: sysdeps/names/shm_limits.c:41 sysdeps/names/shm_limits.c:50
msgid "Max number of segments"
msgstr ""
msgstr "Maximale Anzahl Segmente"
#: sysdeps/names/shm_limits.c:42 sysdeps/names/shm_limits.c:51
msgid "Max shared segments per process"
msgstr ""
msgstr "Maximale Anzahl gemeinsame Segmente pro Prozess"
#: sysdeps/names/shm_limits.c:43 sysdeps/names/shm_limits.c:52
msgid "Max total shared memory"
msgstr ""
msgstr "Maximaler gesamter gemeinsamer Speicher"
#: sysdeps/names/swap.c:39 sysdeps/names/swap.c:48
msgid "Total Swap Space"
@@ -869,7 +879,7 @@ msgstr "Limits f
#: sysdeps/names/sysdeps.c:57 sysdeps/names/sysdeps.c:84
msgid "Semaphore Set Limits"
msgstr ""
msgstr "Semaphor-Setzbegrenzungen"
#: sysdeps/names/sysdeps.c:58 sysdeps/names/sysdeps.c:85
msgid "List of running Processes"
@@ -889,36 +899,35 @@ msgstr "Speicherbelegung des Prozesses"
#: sysdeps/names/sysdeps.c:62 sysdeps/names/sysdeps.c:89
msgid "Process Time information"
msgstr ""
msgstr "Prozess-Zeitinformation"
#: sysdeps/names/sysdeps.c:63 sysdeps/names/sysdeps.c:90
msgid "Process Signal information"
msgstr ""
msgstr "Prozess-Signalinformation"
#: sysdeps/names/sysdeps.c:64 sysdeps/names/sysdeps.c:91
msgid "Process Kernel Data information"
msgstr ""
msgstr "Prozess-Kerneldateninformation"
#: sysdeps/names/sysdeps.c:65 sysdeps/names/sysdeps.c:92
msgid "Process Segment information"
msgstr ""
msgstr "Prozess-Segmentinformation"
#: sysdeps/names/sysdeps.c:66
#, fuzzy
msgid "Process Arguments"
msgstr "Prozessgruppen-ID"
msgstr "Prozessargumente"
#: sysdeps/names/sysdeps.c:67 sysdeps/names/sysdeps.c:94
msgid "Process Memory Map"
msgstr ""
msgstr "Prozess-Speicherplan"
#: sysdeps/names/sysdeps.c:68
msgid "Mount List"
msgstr ""
msgstr "Mountliste"
#: sysdeps/names/sysdeps.c:69 sysdeps/names/sysdeps.c:96
msgid "File System Usage"
msgstr ""
msgstr "Dateisystemnutzung"
#: sysdeps/names/sysdeps.c:70 sysdeps/names/sysdeps.c:97
msgid "Network Load"
@@ -938,7 +947,7 @@ msgstr "Liste gegenw
#: sysdeps/names/uptime.c:38
msgid "Uptime"
msgstr ""
msgstr "Uptime"
#: sysdeps/names/uptime.c:39
msgid "Idletime"
@@ -951,6 +960,7 @@ msgstr "Zeit in Sekunden seit System-Boot"
#: sysdeps/names/uptime.c:45
msgid "Time in seconds the system spent in the idle task since system boot"
msgstr ""
"Zeit in Sekunden, die das System seit dem Booten im Leerlauf verbracht hat"
#: support/error.c:109
msgid "Unknown system error"
@@ -959,116 +969,245 @@ msgstr "Unbekannter Systemfehler"
#: support/getopt.c:669
#, c-format
msgid "%s: option `%s' is ambiguous\n"
msgstr ""
msgstr "%s: option `%s' ist mehrdeutig\n"
#: support/getopt.c:693
#, c-format
msgid "%s: option `--%s' doesn't allow an argument\n"
msgstr ""
msgstr "%s: option `--%s' erlaubt kein Argument\n"
#: support/getopt.c:698
#, c-format
msgid "%s: option `%c%s' doesn't allow an argument\n"
msgstr ""
msgstr "%s: option `%c%s' erlaubt kein Argument\n"
#: support/getopt.c:715 support/getopt.c:888
#, c-format
msgid "%s: option `%s' requires an argument\n"
msgstr ""
msgstr "%s: option `%s' ben<65>tigt ein Argument\n"
#. --option
#: support/getopt.c:744
#, c-format
msgid "%s: unrecognized option `--%s'\n"
msgstr ""
msgstr "%s: unbekannte Option: `--%s'\n"
#. +option or -option
#: support/getopt.c:748
#, c-format
msgid "%s: unrecognized option `%c%s'\n"
msgstr ""
msgstr "%s: unbekannte Option: `%c%s'\n"
#. 1003.2 specifies the format of this message.
#: support/getopt.c:774
#, c-format
msgid "%s: illegal option -- %c\n"
msgstr ""
msgstr "%s: illegale Option -- %c\n"
#: support/getopt.c:777
#, c-format
msgid "%s: invalid option -- %c\n"
msgstr ""
msgstr "%s: ung<6E>ltige Option -- %c\n"
#. 1003.2 specifies the format of this message.
#: support/getopt.c:807 support/getopt.c:937
#, c-format
msgid "%s: option requires an argument -- %c\n"
msgstr ""
msgstr "%s: option ben<65>tigt ein Argument -- %c\n"
#: support/getopt.c:854
#, c-format
msgid "%s: option `-W %s' is ambiguous\n"
msgstr ""
msgstr "%s: Option `-W %s' ist mehrdeutig\n"
#: support/getopt.c:872
#, c-format
msgid "%s: option `-W %s' doesn't allow an argument\n"
msgstr ""
msgstr "%s: Option `-W %s' erlaubt kein Argument\n"
#: lib/read.c:75
#, c-format
msgid "read %d bytes"
msgstr ""
msgstr "%d bytes gelesen"
#: lib/read_data.c:49
msgid "read data size"
msgstr ""
msgstr "lese Datenmenge"
#: lib/read_data.c:66
#, c-format
msgid "read data %d bytes"
msgstr ""
msgstr "%d Datenbytes gelesen"
#: lib/write.c:48
#, c-format
msgid "write %d bytes"
msgstr ""
msgstr "schreibe %d bytes"
#: src/daemon/gnuserv.c:445
#: src/daemon/gnuserv.c:446
msgid "Enable debugging"
msgstr ""
msgstr "Fehlerdiagnose einschalten"
#: src/daemon/gnuserv.c:445
#: src/daemon/gnuserv.c:446
msgid "DEBUG"
msgstr ""
msgstr "DIAGNOSE"
#: src/daemon/gnuserv.c:447
#: src/daemon/gnuserv.c:448
msgid "Enable verbose output"
msgstr ""
msgstr "Gespr<EFBFBD>chige Ausgabe einschalten"
#: src/daemon/gnuserv.c:447
#: src/daemon/gnuserv.c:448
msgid "VERBOSE"
msgstr ""
msgstr "GESPRAECHIG"
#: src/daemon/gnuserv.c:449
#: src/daemon/gnuserv.c:450
msgid "Don't fork into background"
msgstr ""
msgstr "Nicht in den Hintergrund abforken"
#: src/daemon/gnuserv.c:449
#: src/daemon/gnuserv.c:450
msgid "NO-DAEMON"
msgstr ""
msgstr "KEIN-D<>MON"
#: src/daemon/gnuserv.c:451
#: src/daemon/gnuserv.c:452
msgid "Invoked from inetd"
msgstr ""
msgstr "Durch inetd aufgerufen"
#: src/daemon/gnuserv.c:451
#: src/daemon/gnuserv.c:452
msgid "INETD"
msgstr ""
msgstr "INETD"
#: src/daemon/gnuserv.c:485
#: src/daemon/gnuserv.c:486
#, c-format
msgid ""
"Error on option %s: %s.\n"
"Run '%s --help' to see a full list of available command line options.\n"
msgstr ""
"Fehler bei Option %s: %s.\n"
"F<>hren Sie `%s --help' aus, um eine volle Liste der verf<72>gbaren Optionen zu "
"sehen.\n"
#~ msgid "SMP CPU Flags"
#~ msgstr "SMP-CPU-Flags"
#~ msgid "Start_Data"
#~ msgstr "Start_Daten"
#~ msgid "End_Data"
#~ msgstr "Ende_Daten"
#~ msgid "Start_Brk"
#~ msgstr "Start_Brk"
#~ msgid "Brk"
#~ msgstr "Brk"
#~ msgid "Start_MMap"
#~ msgstr "Start_MMap"
#~ msgid "Arg_Start"
#~ msgstr "Arg_Start"
#~ msgid "Arg_End"
#~ msgstr "Arg_Ende"
#~ msgid "Env_Start"
#~ msgstr "Env_Start"
#~ msgid "Env_End"
#~ msgstr "Env_Ende"
#~ msgid "Address of beginning of data segment"
#~ msgstr "Adresse, an der das Datensegment anf<6E>ngt"
#~ msgid "Address of end of data segment"
#~ msgstr "Addresse, an der das Datensegment aufh<66>rt"
#~ msgid "Brk_Start"
#~ msgstr "Brk_Start"
#~ msgid "Brk_End"
#~ msgstr "Brk_Ende"
#~ msgid "Start of mmap()ed areas"
#~ msgstr "Start der mmap()-Zonen"
#~ msgid "RUID"
#~ msgstr "RUID"
#~ msgid "RGID"
#~ msgstr "RGID"
#~ msgid "Has CPU"
#~ msgstr "Hat CPU"
#~ msgid "Processor"
#~ msgstr "Prozessor"
#~ msgid "Last Processor"
#~ msgstr "Letzter Prozessor"
#~ msgid "effective UID of process"
#~ msgstr "effektive UID des Prozesses"
#~ msgid "effective GID of process"
#~ msgstr "effektive GID des Prozesses"
#~ msgid "has_cpu"
#~ msgstr "has_cpu"
#~ msgid "processor"
#~ msgstr "processor"
#~ msgid "last_processor"
#~ msgstr "last_processor"
#~ msgid "XCPU_Flags"
#~ msgstr "XCPU_Flags"
#~ msgid "SUid"
#~ msgstr "SUid"
#~ msgid "SGid"
#~ msgstr "SGid"
#~ msgid "FsUid"
#~ msgstr "FsUid"
#~ msgid "FsGid"
#~ msgstr "FsGid"
#~ msgid "NGroups"
#~ msgstr "NGruppen"
#~ msgid "Groups"
#~ msgstr "Gruppen"
#~ msgid "Saved User ID"
#~ msgstr "Gespeicherte Benutzer-ID"
#~ msgid "Saved Group ID"
#~ msgstr "Gespeicherte Gruppen-ID"
#~ msgid "Filesystem User ID"
#~ msgstr "Dateisystem-Benutzer-ID"
#~ msgid "Filesystem Group ID"
#~ msgstr "Dateisystem-Gruppen-ID"
#~ msgid "Number of additional process groups"
#~ msgstr "Anzahl zus<75>tzlicher Proze<7A>gruppen"
#~ msgid "Additional process groups"
#~ msgstr "Zus<75>tzliche Prozessgruppen"
#~ msgid "Pointer Size"
#~ msgstr "Zeigergr<67><72>e"
#~ msgid "Pointer Size on the Server (in bits)"
#~ msgstr "Zeigergr<67><72>e auf dem Server (in Bits)"
#~ msgid "Boot time"
#~ msgstr "Startzeit"
#~ msgid "Boot time (seconds sice epoch)"
#~ msgstr "Startzeit (Sekunden seit Epoche)"

View File

@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: glibtop 1.0.0\n"
"POT-Creation-Date: 1999-05-28 01:39+0200\n"
"POT-Creation-Date: 1999-09-16 23:16+0200\n"
"PO-Revision-Date: 1998-12-13 04:38+0100\n"
"Last-Translator: Pablo Saratxaga <srtxg@chanae.alphanet.ch>\n"
"Language-Team: Pablo Saratxaga <srtxg@chanae.alphanet.ch>\n"
@@ -442,7 +442,8 @@ msgid "Number of pages of virtual memory"
msgstr "Cantidad de p<>ginas de memoria virtual"
#: sysdeps/names/procmem.c:55
msgid "Number of residnet set (non-swapped) pages"
#, fuzzy
msgid "Number of resident set (non-swapped) pages"
msgstr "Cantidad de p<>ginas de conjuntos compartidos (que no estan en swap)"
#: sysdeps/names/procmem.c:56
@@ -1076,39 +1077,39 @@ msgstr "le
msgid "write %d bytes"
msgstr "escritos %d bytes"
#: src/daemon/gnuserv.c:445
#: src/daemon/gnuserv.c:446
msgid "Enable debugging"
msgstr "Activar depuraci<63>n"
#: src/daemon/gnuserv.c:445
#: src/daemon/gnuserv.c:446
msgid "DEBUG"
msgstr "DEPURACI<43>N"
#: src/daemon/gnuserv.c:447
#: src/daemon/gnuserv.c:448
msgid "Enable verbose output"
msgstr "Activa salida detallada"
#: src/daemon/gnuserv.c:447
#: src/daemon/gnuserv.c:448
msgid "VERBOSE"
msgstr ""
#: src/daemon/gnuserv.c:449
#: src/daemon/gnuserv.c:450
msgid "Don't fork into background"
msgstr "No abrir un proceso de fondo"
#: src/daemon/gnuserv.c:449
#: src/daemon/gnuserv.c:450
msgid "NO-DAEMON"
msgstr ""
#: src/daemon/gnuserv.c:451
#: src/daemon/gnuserv.c:452
msgid "Invoked from inetd"
msgstr "Invocado desde inetd"
#: src/daemon/gnuserv.c:451
#: src/daemon/gnuserv.c:452
msgid "INETD"
msgstr "INETD"
#: src/daemon/gnuserv.c:485
#: src/daemon/gnuserv.c:486
#, c-format
msgid ""
"Error on option %s: %s.\n"

View File

@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 1999-05-28 01:39+0200\n"
"POT-Creation-Date: 1999-09-16 23:16+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -380,7 +380,7 @@ msgid "Number of pages of virtual memory"
msgstr ""
#: sysdeps/names/procmem.c:55
msgid "Number of residnet set (non-swapped) pages"
msgid "Number of resident set (non-swapped) pages"
msgstr ""
#: sysdeps/names/procmem.c:56
@@ -1011,39 +1011,39 @@ msgstr ""
msgid "write %d bytes"
msgstr ""
#: src/daemon/gnuserv.c:445
#: src/daemon/gnuserv.c:446
msgid "Enable debugging"
msgstr ""
#: src/daemon/gnuserv.c:445
#: src/daemon/gnuserv.c:446
msgid "DEBUG"
msgstr ""
#: src/daemon/gnuserv.c:447
#: src/daemon/gnuserv.c:448
msgid "Enable verbose output"
msgstr ""
#: src/daemon/gnuserv.c:447
#: src/daemon/gnuserv.c:448
msgid "VERBOSE"
msgstr ""
#: src/daemon/gnuserv.c:449
#: src/daemon/gnuserv.c:450
msgid "Don't fork into background"
msgstr ""
#: src/daemon/gnuserv.c:449
#: src/daemon/gnuserv.c:450
msgid "NO-DAEMON"
msgstr ""
#: src/daemon/gnuserv.c:451
#: src/daemon/gnuserv.c:452
msgid "Invoked from inetd"
msgstr ""
#: src/daemon/gnuserv.c:451
#: src/daemon/gnuserv.c:452
msgid "INETD"
msgstr ""
#: src/daemon/gnuserv.c:485
#: src/daemon/gnuserv.c:486
#, c-format
msgid ""
"Error on option %s: %s.\n"

View File

@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 1999-05-28 01:39+0200\n"
"POT-Creation-Date: 1999-09-16 23:16+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -380,7 +380,7 @@ msgid "Number of pages of virtual memory"
msgstr ""
#: sysdeps/names/procmem.c:55
msgid "Number of residnet set (non-swapped) pages"
msgid "Number of resident set (non-swapped) pages"
msgstr ""
#: sysdeps/names/procmem.c:56
@@ -1011,39 +1011,39 @@ msgstr ""
msgid "write %d bytes"
msgstr ""
#: src/daemon/gnuserv.c:445
#: src/daemon/gnuserv.c:446
msgid "Enable debugging"
msgstr ""
#: src/daemon/gnuserv.c:445
#: src/daemon/gnuserv.c:446
msgid "DEBUG"
msgstr ""
#: src/daemon/gnuserv.c:447
#: src/daemon/gnuserv.c:448
msgid "Enable verbose output"
msgstr ""
#: src/daemon/gnuserv.c:447
#: src/daemon/gnuserv.c:448
msgid "VERBOSE"
msgstr ""
#: src/daemon/gnuserv.c:449
#: src/daemon/gnuserv.c:450
msgid "Don't fork into background"
msgstr ""
#: src/daemon/gnuserv.c:449
#: src/daemon/gnuserv.c:450
msgid "NO-DAEMON"
msgstr ""
#: src/daemon/gnuserv.c:451
#: src/daemon/gnuserv.c:452
msgid "Invoked from inetd"
msgstr ""
#: src/daemon/gnuserv.c:451
#: src/daemon/gnuserv.c:452
msgid "INETD"
msgstr ""
#: src/daemon/gnuserv.c:485
#: src/daemon/gnuserv.c:486
#, c-format
msgid ""
"Error on option %s: %s.\n"

View File

@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 1999-05-28 01:39+0200\n"
"POT-Creation-Date: 1999-09-16 23:16+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -380,7 +380,7 @@ msgid "Number of pages of virtual memory"
msgstr ""
#: sysdeps/names/procmem.c:55
msgid "Number of residnet set (non-swapped) pages"
msgid "Number of resident set (non-swapped) pages"
msgstr ""
#: sysdeps/names/procmem.c:56
@@ -1011,39 +1011,39 @@ msgstr ""
msgid "write %d bytes"
msgstr ""
#: src/daemon/gnuserv.c:445
#: src/daemon/gnuserv.c:446
msgid "Enable debugging"
msgstr ""
#: src/daemon/gnuserv.c:445
#: src/daemon/gnuserv.c:446
msgid "DEBUG"
msgstr ""
#: src/daemon/gnuserv.c:447
#: src/daemon/gnuserv.c:448
msgid "Enable verbose output"
msgstr ""
#: src/daemon/gnuserv.c:447
#: src/daemon/gnuserv.c:448
msgid "VERBOSE"
msgstr ""
#: src/daemon/gnuserv.c:449
#: src/daemon/gnuserv.c:450
msgid "Don't fork into background"
msgstr ""
#: src/daemon/gnuserv.c:449
#: src/daemon/gnuserv.c:450
msgid "NO-DAEMON"
msgstr ""
#: src/daemon/gnuserv.c:451
#: src/daemon/gnuserv.c:452
msgid "Invoked from inetd"
msgstr ""
#: src/daemon/gnuserv.c:451
#: src/daemon/gnuserv.c:452
msgid "INETD"
msgstr ""
#: src/daemon/gnuserv.c:485
#: src/daemon/gnuserv.c:486
#, c-format
msgid ""
"Error on option %s: %s.\n"

View File

@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 1999-05-28 01:39+0200\n"
"POT-Creation-Date: 1999-09-16 23:16+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -380,7 +380,7 @@ msgid "Number of pages of virtual memory"
msgstr ""
#: sysdeps/names/procmem.c:55
msgid "Number of residnet set (non-swapped) pages"
msgid "Number of resident set (non-swapped) pages"
msgstr ""
#: sysdeps/names/procmem.c:56
@@ -1011,39 +1011,39 @@ msgstr ""
msgid "write %d bytes"
msgstr ""
#: src/daemon/gnuserv.c:445
#: src/daemon/gnuserv.c:446
msgid "Enable debugging"
msgstr ""
#: src/daemon/gnuserv.c:445
#: src/daemon/gnuserv.c:446
msgid "DEBUG"
msgstr ""
#: src/daemon/gnuserv.c:447
#: src/daemon/gnuserv.c:448
msgid "Enable verbose output"
msgstr ""
#: src/daemon/gnuserv.c:447
#: src/daemon/gnuserv.c:448
msgid "VERBOSE"
msgstr ""
#: src/daemon/gnuserv.c:449
#: src/daemon/gnuserv.c:450
msgid "Don't fork into background"
msgstr ""
#: src/daemon/gnuserv.c:449
#: src/daemon/gnuserv.c:450
msgid "NO-DAEMON"
msgstr ""
#: src/daemon/gnuserv.c:451
#: src/daemon/gnuserv.c:452
msgid "Invoked from inetd"
msgstr ""
#: src/daemon/gnuserv.c:451
#: src/daemon/gnuserv.c:452
msgid "INETD"
msgstr ""
#: src/daemon/gnuserv.c:485
#: src/daemon/gnuserv.c:486
#, c-format
msgid ""
"Error on option %s: %s.\n"

View File

@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 1999-05-28 01:39+0200\n"
"POT-Creation-Date: 1999-09-16 23:16+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -380,7 +380,7 @@ msgid "Number of pages of virtual memory"
msgstr ""
#: sysdeps/names/procmem.c:55
msgid "Number of residnet set (non-swapped) pages"
msgid "Number of resident set (non-swapped) pages"
msgstr ""
#: sysdeps/names/procmem.c:56
@@ -1011,39 +1011,39 @@ msgstr ""
msgid "write %d bytes"
msgstr ""
#: src/daemon/gnuserv.c:445
#: src/daemon/gnuserv.c:446
msgid "Enable debugging"
msgstr ""
#: src/daemon/gnuserv.c:445
#: src/daemon/gnuserv.c:446
msgid "DEBUG"
msgstr ""
#: src/daemon/gnuserv.c:447
#: src/daemon/gnuserv.c:448
msgid "Enable verbose output"
msgstr ""
#: src/daemon/gnuserv.c:447
#: src/daemon/gnuserv.c:448
msgid "VERBOSE"
msgstr ""
#: src/daemon/gnuserv.c:449
#: src/daemon/gnuserv.c:450
msgid "Don't fork into background"
msgstr ""
#: src/daemon/gnuserv.c:449
#: src/daemon/gnuserv.c:450
msgid "NO-DAEMON"
msgstr ""
#: src/daemon/gnuserv.c:451
#: src/daemon/gnuserv.c:452
msgid "Invoked from inetd"
msgstr ""
#: src/daemon/gnuserv.c:451
#: src/daemon/gnuserv.c:452
msgid "INETD"
msgstr ""
#: src/daemon/gnuserv.c:485
#: src/daemon/gnuserv.c:486
#, c-format
msgid ""
"Error on option %s: %s.\n"

View File

@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 1999-05-28 01:39+0200\n"
"POT-Creation-Date: 1999-09-16 23:16+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -380,7 +380,7 @@ msgid "Number of pages of virtual memory"
msgstr ""
#: sysdeps/names/procmem.c:55
msgid "Number of residnet set (non-swapped) pages"
msgid "Number of resident set (non-swapped) pages"
msgstr ""
#: sysdeps/names/procmem.c:56
@@ -1011,39 +1011,39 @@ msgstr ""
msgid "write %d bytes"
msgstr ""
#: src/daemon/gnuserv.c:445
#: src/daemon/gnuserv.c:446
msgid "Enable debugging"
msgstr ""
#: src/daemon/gnuserv.c:445
#: src/daemon/gnuserv.c:446
msgid "DEBUG"
msgstr ""
#: src/daemon/gnuserv.c:447
#: src/daemon/gnuserv.c:448
msgid "Enable verbose output"
msgstr ""
#: src/daemon/gnuserv.c:447
#: src/daemon/gnuserv.c:448
msgid "VERBOSE"
msgstr ""
#: src/daemon/gnuserv.c:449
#: src/daemon/gnuserv.c:450
msgid "Don't fork into background"
msgstr ""
#: src/daemon/gnuserv.c:449
#: src/daemon/gnuserv.c:450
msgid "NO-DAEMON"
msgstr ""
#: src/daemon/gnuserv.c:451
#: src/daemon/gnuserv.c:452
msgid "Invoked from inetd"
msgstr ""
#: src/daemon/gnuserv.c:451
#: src/daemon/gnuserv.c:452
msgid "INETD"
msgstr ""
#: src/daemon/gnuserv.c:485
#: src/daemon/gnuserv.c:486
#, c-format
msgid ""
"Error on option %s: %s.\n"

View File

@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 1999-05-28 01:39+0200\n"
"POT-Creation-Date: 1999-09-16 23:16+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -380,7 +380,7 @@ msgid "Number of pages of virtual memory"
msgstr ""
#: sysdeps/names/procmem.c:55
msgid "Number of residnet set (non-swapped) pages"
msgid "Number of resident set (non-swapped) pages"
msgstr ""
#: sysdeps/names/procmem.c:56
@@ -1011,39 +1011,39 @@ msgstr ""
msgid "write %d bytes"
msgstr ""
#: src/daemon/gnuserv.c:445
#: src/daemon/gnuserv.c:446
msgid "Enable debugging"
msgstr ""
#: src/daemon/gnuserv.c:445
#: src/daemon/gnuserv.c:446
msgid "DEBUG"
msgstr ""
#: src/daemon/gnuserv.c:447
#: src/daemon/gnuserv.c:448
msgid "Enable verbose output"
msgstr ""
#: src/daemon/gnuserv.c:447
#: src/daemon/gnuserv.c:448
msgid "VERBOSE"
msgstr ""
#: src/daemon/gnuserv.c:449
#: src/daemon/gnuserv.c:450
msgid "Don't fork into background"
msgstr ""
#: src/daemon/gnuserv.c:449
#: src/daemon/gnuserv.c:450
msgid "NO-DAEMON"
msgstr ""
#: src/daemon/gnuserv.c:451
#: src/daemon/gnuserv.c:452
msgid "Invoked from inetd"
msgstr ""
#: src/daemon/gnuserv.c:451
#: src/daemon/gnuserv.c:452
msgid "INETD"
msgstr ""
#: src/daemon/gnuserv.c:485
#: src/daemon/gnuserv.c:486
#, c-format
msgid ""
"Error on option %s: %s.\n"

569
po/fr.po

File diff suppressed because it is too large Load Diff

View File

@@ -4,7 +4,7 @@
msgid ""
msgstr ""
"Project-Id-Version: libgtop VERSION\n"
"POT-Creation-Date: 1999-05-28 01:39+0200\n"
"POT-Creation-Date: 1999-09-16 23:16+0200\n"
"PO-Revision-Date: 1998-12-11 06:53+09:00\n"
"Last-Translator: Eiichiro ITANI <emu@ceres.dti.ne.jp>\n"
"Language-Team: <gnome@lists.hypercore.co.jp>\n"
@@ -396,7 +396,8 @@ msgid "Number of pages of virtual memory"
msgstr "<22><><EFBFBD>ۥ<EFBFBD><DBA5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Υڡ<CEA5><DAA1><EFBFBD><EFBFBD><EFBFBD>"
#: sysdeps/names/procmem.c:55
msgid "Number of residnet set (non-swapped) pages"
#, fuzzy
msgid "Number of resident set (non-swapped) pages"
msgstr "<22><><EFBFBD>󥻥å<F3A5BBA5>(<28><><EFBFBD><EFBFBD><EFBFBD>åפ<C3A5><D7A4><EFBFBD><EFBFBD>ʤ<EFBFBD>)<29>ڡ<EFBFBD><DAA1><EFBFBD><EFBFBD><EFBFBD>"
#: sysdeps/names/procmem.c:56
@@ -1023,39 +1024,39 @@ msgstr ""
msgid "write %d bytes"
msgstr ""
#: src/daemon/gnuserv.c:445
#: src/daemon/gnuserv.c:446
msgid "Enable debugging"
msgstr ""
#: src/daemon/gnuserv.c:445
#: src/daemon/gnuserv.c:446
msgid "DEBUG"
msgstr ""
#: src/daemon/gnuserv.c:447
#: src/daemon/gnuserv.c:448
msgid "Enable verbose output"
msgstr ""
#: src/daemon/gnuserv.c:447
#: src/daemon/gnuserv.c:448
msgid "VERBOSE"
msgstr ""
#: src/daemon/gnuserv.c:449
#: src/daemon/gnuserv.c:450
msgid "Don't fork into background"
msgstr ""
#: src/daemon/gnuserv.c:449
#: src/daemon/gnuserv.c:450
msgid "NO-DAEMON"
msgstr ""
#: src/daemon/gnuserv.c:451
#: src/daemon/gnuserv.c:452
msgid "Invoked from inetd"
msgstr ""
#: src/daemon/gnuserv.c:451
#: src/daemon/gnuserv.c:452
msgid "INETD"
msgstr ""
#: src/daemon/gnuserv.c:485
#: src/daemon/gnuserv.c:486
#, c-format
msgid ""
"Error on option %s: %s.\n"

View File

@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: libgtop VERSION\n"
"POT-Creation-Date: 1999-05-28 01:39+0200\n"
"POT-Creation-Date: 1999-09-16 23:16+0200\n"
"PO-Revision-Date: 1999-02-04 14:31:38+0900\n"
"Last-Translator: Sung-Hyun Nam <namsh@lgic.co.kr>\n"
"Language-Team: Korean <ko@li.org>\n"
@@ -379,7 +379,7 @@ msgid "Number of pages of virtual memory"
msgstr ""
#: sysdeps/names/procmem.c:55
msgid "Number of residnet set (non-swapped) pages"
msgid "Number of resident set (non-swapped) pages"
msgstr ""
#: sysdeps/names/procmem.c:56
@@ -999,39 +999,39 @@ msgstr ""
msgid "write %d bytes"
msgstr ""
#: src/daemon/gnuserv.c:445
#: src/daemon/gnuserv.c:446
msgid "Enable debugging"
msgstr ""
#: src/daemon/gnuserv.c:445
#: src/daemon/gnuserv.c:446
msgid "DEBUG"
msgstr ""
#: src/daemon/gnuserv.c:447
#: src/daemon/gnuserv.c:448
msgid "Enable verbose output"
msgstr ""
#: src/daemon/gnuserv.c:447
#: src/daemon/gnuserv.c:448
msgid "VERBOSE"
msgstr ""
#: src/daemon/gnuserv.c:449
#: src/daemon/gnuserv.c:450
msgid "Don't fork into background"
msgstr ""
#: src/daemon/gnuserv.c:449
#: src/daemon/gnuserv.c:450
msgid "NO-DAEMON"
msgstr ""
#: src/daemon/gnuserv.c:451
#: src/daemon/gnuserv.c:452
msgid "Invoked from inetd"
msgstr ""
#: src/daemon/gnuserv.c:451
#: src/daemon/gnuserv.c:452
msgid "INETD"
msgstr ""
#: src/daemon/gnuserv.c:485
#: src/daemon/gnuserv.c:486
#, c-format
msgid ""
"Error on option %s: %s.\n"

View File

@@ -1,13 +1,13 @@
# Norwegian translation for Libgtop (bokm<6B>l dialect)
# Copyright (C) 1998 Free Software Foundation, Inc.
# Kjartan Maraas <kmaraas@fib.hl.no>, 1998,1999.
# Kjartan Maraas <kmaraas@online.no>, 1998,1999.
#
msgid ""
msgstr ""
"Project-Id-Version: libgtop 0.99.3\n"
"POT-Creation-Date: 1999-05-28 01:39+0200\n"
"PO-Revision-Date: 1999-01-27 23:22+0100\n"
"Last-Translator: Kjartan Maraas <kmaraas@fib.hl.no>\n"
"POT-Creation-Date: 1999-09-16 23:16+0200\n"
"PO-Revision-Date: 1999-07-11 14:25+0200\n"
"Last-Translator: Kjartan Maraas <kmaraas@online.no>\n"
"Language-Team: Norwegian <no@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-1\n"
@@ -397,7 +397,7 @@ msgid "Number of pages of virtual memory"
msgstr "Antall sider virtuelt minne"
#: sysdeps/names/procmem.c:55
msgid "Number of residnet set (non-swapped) pages"
msgid "Number of resident set (non-swapped) pages"
msgstr "Antallet resident sett (ikke swappete) sider"
#: sysdeps/names/procmem.c:56
@@ -1023,39 +1023,39 @@ msgstr "les data %d bytes"
msgid "write %d bytes"
msgstr "skriv %d bytes"
#: src/daemon/gnuserv.c:445
#: src/daemon/gnuserv.c:446
msgid "Enable debugging"
msgstr "Sl<53> p<> avlusing"
#: src/daemon/gnuserv.c:445
#: src/daemon/gnuserv.c:446
msgid "DEBUG"
msgstr "DEBUG"
#: src/daemon/gnuserv.c:447
#: src/daemon/gnuserv.c:448
msgid "Enable verbose output"
msgstr "Sl<53> p<> utfyllende utskrift"
#: src/daemon/gnuserv.c:447
#: src/daemon/gnuserv.c:448
msgid "VERBOSE"
msgstr "VERBOSE"
#: src/daemon/gnuserv.c:449
#: src/daemon/gnuserv.c:450
msgid "Don't fork into background"
msgstr "Ikke forgren til bakgrunnen"
#: src/daemon/gnuserv.c:449
#: src/daemon/gnuserv.c:450
msgid "NO-DAEMON"
msgstr "NO-DAEMON"
#: src/daemon/gnuserv.c:451
#: src/daemon/gnuserv.c:452
msgid "Invoked from inetd"
msgstr "Kalt fra inetd"
#: src/daemon/gnuserv.c:451
#: src/daemon/gnuserv.c:452
msgid "INETD"
msgstr "INETD"
#: src/daemon/gnuserv.c:485
#: src/daemon/gnuserv.c:486
#, c-format
msgid ""
"Error on option %s: %s.\n"

1068
po/sv.po Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -1,3 +1,8 @@
1999-07-29 Martin Baulig <martin@home-of-linux.org>
* Makefile.am: Link the `libgtop_daemon' and the `libgtop_server'
statically if possible.
1999-05-07 Martin Baulig <martin@home-of-linux.org>
* server.c (main): There's some problem with uname () - some systems

View File

@@ -41,11 +41,19 @@ libgtop_daemon_LDADD = $(top_builddir)/lib/libgtop.la \
$(GLIB_LIBS)\
@LIBSUPPORT@ @INTLLIBS@ @libs_xauth@
if ENABLE_STATIC
libgtop_daemon_LDFLAGS = -static
endif
libgtop_server_SOURCES = server.c slave.c io.c version.c daemon.h
libgtop_server_LDADD = $(top_builddir)/sysdeps/@sysdeps_dir@/libgtop_sysdeps_suid.la \
$(top_builddir)/sysdeps/common/libgtop_suid_common.la \
@LIBSUPPORT@
if ENABLE_STATIC
libgtop_server_LDFLAGS = -static
endif
EXTRA_DIST = server_config.h.in server_config.pl
install-exec-hook:

View File

@@ -219,7 +219,7 @@ permitted (u_long host_addr, int fd)
* GNU_SECURE protocol....
*/
if (verbose_output)
if (verbose_output) {
if (changed_uid || invoked_from_inetd)
syslog_message (LOG_WARNING,
"Xauth authentication not allowed, "
@@ -228,6 +228,7 @@ permitted (u_long host_addr, int fd)
syslog_message (LOG_WARNING,
"Xauth authentication failed, "
"trying GNU_SECURE auth...");
}
}
/* Other auth protocols go here, and should execute only if
@@ -243,7 +244,7 @@ permitted (u_long host_addr, int fd)
if (enable_debug)
syslog_message (LOG_DEBUG, "Trying %lx - %lx",
host_addr, permitted_hosts [i]);
if (permitted_hosts [i] == NULL)
if (permitted_hosts [i] == 0L)
return (FALSE);
if (host_addr == permitted_hosts [i])
return (TRUE);

View File

@@ -26,12 +26,12 @@
void
handle_slave_connection (int input, int output)
{
glibtop *server = glibtop_global_server;
int64_t *param_ptr;
const void *ptr;
glibtop *server G_GNUC_UNUSED = glibtop_global_server;
int64_t *param_ptr G_GNUC_UNUSED;
const void *ptr G_GNUC_UNUSED;
unsigned short max_len;
pid_t pid;
unsigned short max_len G_GNUC_UNUSED;
pid_t pid G_GNUC_UNUSED;
glibtop_response _resp, *resp = &_resp;
glibtop_command _cmnd, *cmnd = &_cmnd;
@@ -119,8 +119,8 @@ handle_slave_command (glibtop_command *cmnd, glibtop_response *resp,
const void *parameter)
{
glibtop *server = glibtop_global_server;
unsigned device;
pid_t pid;
unsigned device G_GNUC_UNUSED;
pid_t pid G_GNUC_UNUSED;
switch (cmnd->command) {
case GLIBTOP_CMND_SYSDEPS:

View File

@@ -1 +1,2 @@
Josh Sled <jsled@scam.XCF.Berkeley.EDU>
Martin Baulig (martin@home-of-linux.org)
Josh Sled (jsled@scam.XCF.Berkeley.EDU)

View File

@@ -1,3 +1,15 @@
1999-07-29 Martin Baulig <martin@home-of-linux.org>
* proctime.c (glibtop_get_proc_time_p): Fix bug reported by
Takis Psarogiannakopoulos: `start_time' are seconds since the
epoch as it is stated in the manual.
Tue Jun 15 16:04:10 1999 Timur Bakeyev <mc@bat.ru>
* procuid.c: A fix to a ommitted case, when nor NetBSD, nor
LibGTop >= 1.1.0. This should be investigated closely to cover
more cases....
1999-05-26 Martin Baulig <martin@home-of-linux.org>
More NetBSD 1.4 fixes.

View File

@@ -188,7 +188,7 @@ glibtop_get_proc_time_p (glibtop *server, glibtop_proc_time *buf,
buf->cutime = tv2sec (pstats.p_cru.ru_utime);
buf->cstime = tv2sec (pstats.p_cru.ru_stime);
buf->start_time = tv2sec (pstats.p_start);
buf->start_time = (u_int64_t) pstats.p_start.tv_sec;
buf->flags |= _glibtop_sysdeps_proc_time_user;
#else

View File

@@ -38,9 +38,11 @@ static const unsigned long _glibtop_sysdeps_proc_uid_groups =
#if LIBGTOP_VERSION_CODE >= 1001000
#if defined(__NetBSD__) && (__NetBSD_Version__ >= 104000000)
(1L << GLIBTOP_PROC_UID_NGROUPS) + (1L << GLIBTOP_PROC_UID_GROUPS);
#endif
#else
0;
0L;
#endif
#else /* LIBGTOP_VERSION_CODE < 1001000 */
0L;
#endif
/* Init function. */

View File

@@ -113,7 +113,6 @@ sub output {
print 'static SCM';
print 'glibtop_guile_types_' . $feature . ' (void)';
print '{';
print "\tint i;";
print "\tSCM list;";
print '';

View File

@@ -1,3 +1,8 @@
1999-07-29 Martin Baulig <martin@home-of-linux.org>
* proctime.c (glibtop_get_proctime_s): Don't provide `rtime'
any longer since we must not use `rtime = utime + stime'.
1999-02-20 Martin Baulig <martin@home-of-linux.org>
* netload.c: Don't include <linux/ip_fw.h> for libc5 systems

View File

@@ -55,6 +55,7 @@ glibtop_get_cpu_s (glibtop *server, glibtop_cpu *buf)
{
char buffer [BUFSIZ], *p;
int fd, len, i;
u_int64_t total;
glibtop_init_s (&server, GLIBTOP_SYSDEPS_CPU, 0);
@@ -79,7 +80,11 @@ glibtop_get_cpu_s (glibtop *server, glibtop_cpu *buf)
buf->sys = strtoul (p, &p, 0);
buf->idle = strtoul (p, &p, 0);
buf->total = buf->user + buf->nice + buf->sys + buf->idle;
total = buf->user;
total += buf->nice;
total += buf->sys;
total += buf->idle;
buf->total = total;
buf->frequency = 100;
buf->flags = _glibtop_sysdeps_cpu;
@@ -94,8 +99,12 @@ glibtop_get_cpu_s (glibtop *server, glibtop_cpu *buf)
buf->xcpu_sys [i] = strtoul (p, &p, 0);
buf->xcpu_idle [i] = strtoul (p, &p, 0);
buf->xcpu_total [i] = buf->xcpu_user [i] + buf->xcpu_nice [i] +
buf->xcpu_sys [i] + buf->xcpu_idle [i];
total = buf->xcpu_user [i];
total += buf->xcpu_nice [i];
total += buf->xcpu_sys [i];
total += buf->xcpu_idle [i];
buf->xcpu_total [i] = total;
}
buf->flags |= _glibtop_sysdeps_cpu_smp;

View File

@@ -112,8 +112,6 @@ glibtop_get_netload_s (glibtop *server, glibtop_netload *buf,
skfd = socket (AF_INET, SOCK_DGRAM, 0);
if (skfd) {
struct ifreq ifr;
struct sockaddr_in addr;
char *address;
unsigned flags;
strcpy (ifr.ifr_name, interface);

View File

@@ -31,6 +31,8 @@
#include <sys/stat.h>
#include <fcntl.h>
#include <ctype.h>
#include <glib.h>
static const unsigned long _glibtop_sysdeps_ppp =

View File

@@ -28,9 +28,8 @@
static const unsigned long _glibtop_sysdeps_proc_time =
(1L << GLIBTOP_PROC_TIME_UTIME) + (1L << GLIBTOP_PROC_TIME_CUTIME) +
(1L << GLIBTOP_PROC_TIME_STIME) + (1L << GLIBTOP_PROC_TIME_CSTIME) +
(1L << GLIBTOP_PROC_TIME_RTIME) + (1L << GLIBTOP_PROC_TIME_FREQUENCY) +
(1L << GLIBTOP_PROC_TIME_TIMEOUT) + (1L << GLIBTOP_PROC_TIME_IT_REAL_VALUE) +
(1L << GLIBTOP_PROC_TIME_START_TIME);
(1L << GLIBTOP_PROC_TIME_FREQUENCY) + (1L << GLIBTOP_PROC_TIME_TIMEOUT) +
(1L << GLIBTOP_PROC_TIME_IT_REAL_VALUE) + (1L << GLIBTOP_PROC_TIME_START_TIME);
static const unsigned long _glibtop_sysdeps_proc_time_smp =
(1L << GLIBTOP_PROC_TIME_XCPU_UTIME) + (1L << GLIBTOP_PROC_TIME_XCPU_STIME);
@@ -71,8 +70,6 @@ glibtop_get_proc_time_s (glibtop *server, glibtop_proc_time *buf, pid_t pid)
buf->cutime = strtoul (p, &p, 0);
buf->cstime = strtoul (p, &p, 0);
buf->rtime = buf->utime + buf->stime;
p = skip_multiple_token (p, 2);
buf->timeout = strtoul (p, &p, 0);

View File

@@ -52,7 +52,7 @@ const char *glibtop_descriptions_proc_mem [GLIBTOP_MAX_PROC_MEM] =
{
N_("Total # of pages of memory"),
N_("Number of pages of virtual memory"),
N_("Number of residnet set (non-swapped) pages"),
N_("Number of resident set (non-swapped) pages"),
N_("Number of pages of shared (mmap'd) memory"),
N_("Number of pages the process has in real memory, minus 3 "
"for administrative purposes. This is just the pages which "