Compare commits
35 Commits
LIBGTOP_2_
...
LIBGTOP_2_
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8c5093a395 | ||
|
|
5ccd5980c0 | ||
|
|
60c8aae6d9 | ||
|
|
28a5db91d2 | ||
|
|
770e39d2d2 | ||
|
|
8ca47ad9e0 | ||
|
|
49f1de8217 | ||
|
|
63cc547156 | ||
|
|
fcfd0bd852 | ||
|
|
4b6c206598 | ||
|
|
e81e7db939 | ||
|
|
91adde3f3d | ||
|
|
ef95ef85ff | ||
|
|
ff160fa9f3 | ||
|
|
11f37815a3 | ||
|
|
16d9eebd1b | ||
|
|
71c1792637 | ||
|
|
6fc4a48c6f | ||
|
|
550b9743c7 | ||
|
|
36fe063384 | ||
|
|
42c697c37e | ||
|
|
91c53d4f22 | ||
|
|
878826c871 | ||
|
|
f9b9b8dbd9 | ||
|
|
d20bbf57fe | ||
|
|
6bbc66417a | ||
|
|
336d234bce | ||
|
|
a6df633a6f | ||
|
|
8cd69ad3df | ||
|
|
ab2881a412 | ||
|
|
bce095739f | ||
|
|
d872544eb7 | ||
|
|
03e96ce487 | ||
|
|
95dfedd71d | ||
|
|
4cda07c19c |
58
ChangeLog
58
ChangeLog
@@ -1,3 +1,61 @@
|
||||
2004-08-30 Benoît Dejean <tazforever@dlfp.org>
|
||||
|
||||
* NEWS: Released 2.7.92.
|
||||
|
||||
2004-08-28 Benoît Dejean <tazforever@dlfp.org>
|
||||
|
||||
* backends/server/command.c: (glibtop_call_i): Zeroed all args.
|
||||
|
||||
* configure.in: Bumped soname (thanks to seb128 and Dodji even if i've
|
||||
fully understand everything.
|
||||
|
||||
* include/glibtop/array.h:
|
||||
* include/glibtop/compat_10.h:
|
||||
* include/glibtop/glib-arrays.h:
|
||||
* include/glibtop/interfaces.h:
|
||||
* include/glibtop/proccwd.h:
|
||||
* lib/glib-arrays.c:
|
||||
* sysdeps/names/interfaces.c:
|
||||
* sysdeps/names/proccwd.c: Got rid of never-used / never-implemented files.
|
||||
|
||||
2004-08-28 Akagic Amila <bono@linux.org.ba>
|
||||
|
||||
* configure.in: Added 'bs' to ALL_LINGUAS.
|
||||
|
||||
2004-08-22 Benoît Dejean <tazforever@dlfp.org>
|
||||
|
||||
* lib/command.c: (glibtop_call_l): Zeroed all args.
|
||||
|
||||
2004-08-21 Kjartan Maraas <kmaraas@gnome.org>
|
||||
|
||||
* configure.in: Add «nb» to ALL_LINGUAS.
|
||||
|
||||
2004-08-15 Benoît Dejean <tazforever@dlfp.org>
|
||||
|
||||
* NEWS:
|
||||
* configure.in: LibGTop 2.7.91.
|
||||
|
||||
2004-08-09 Benoît Dejean <tazforever@dlfp.org>
|
||||
|
||||
* configure.in: Added HAVE_IFADDRS_H
|
||||
* sysdeps/linux/netload.c: (glibtop_get_netload_s): Disable IPv6
|
||||
support is ifaddrs.h is not available.
|
||||
|
||||
Closes #149376.
|
||||
|
||||
2004-08-09 Benoît Dejean <tazforever@dlfp.org>
|
||||
|
||||
* configure.in: Added -gnu89 to CFLAGS.
|
||||
|
||||
* examples/Makefile.am: Fixed LDFLAGS.
|
||||
|
||||
* sysdeps/common/fsusage.c: (glibtop_get_fsusage_s):
|
||||
* sysdeps/linux/fsusage.c: (linux_2_6_0):
|
||||
* sysdeps/linux/proctime.c: (glibtop_get_proc_time_s):
|
||||
* sysdeps/linux/sysinfo.c: (init_sysinfo): Fixed C89 issues.
|
||||
|
||||
Closes #149375.
|
||||
|
||||
2004-08-03 Benoît Dejean <tazforever@dlfp.org>
|
||||
|
||||
* NEWS:
|
||||
|
||||
11
NEWS
11
NEWS
@@ -1,3 +1,14 @@
|
||||
August 30, 2004:
|
||||
===============
|
||||
* Applied some *BSD patches.
|
||||
* Removed old files.
|
||||
|
||||
|
||||
August 15, 2004:
|
||||
===============
|
||||
* Fixed compilation with C89-only compilers and old libc.
|
||||
|
||||
|
||||
August 3, 2004:
|
||||
==============
|
||||
* Some cleanups.
|
||||
|
||||
@@ -1,3 +1,7 @@
|
||||
2004-08-22 Benoît Dejean <tazforever@dlfp.org>
|
||||
|
||||
* server.c: (handle_slave_connection): Replaced //comment by /*C89*/.
|
||||
|
||||
2004-03-09 Bastien Nocera <hadess@hadess.net>
|
||||
|
||||
* command.c: (glibtop_call_i):
|
||||
|
||||
@@ -34,14 +34,8 @@ glibtop_call_i (glibtop_server *server, backend_server_private *priv,
|
||||
size_t recv_size, void *recv_ptr,
|
||||
int *retval_ptr)
|
||||
{
|
||||
glibtop_command cmnd;
|
||||
glibtop_response resp;
|
||||
#if 0
|
||||
int retval;
|
||||
#endif
|
||||
|
||||
memset (&cmnd, 0, sizeof (glibtop_command));
|
||||
memset (&resp, 0, sizeof (glibtop_response));
|
||||
glibtop_command cmnd = {0};
|
||||
glibtop_response resp = {0};
|
||||
|
||||
cmnd.command = command;
|
||||
|
||||
|
||||
@@ -109,7 +109,7 @@ handle_slave_connection (int input, int output)
|
||||
glibtop_command _cmnd, *cmnd = &_cmnd;
|
||||
glibtop *server = glibtop_global_server;
|
||||
|
||||
// glibtop_send_version_i (glibtop_global_server, output);
|
||||
/* glibtop_send_version_i (glibtop_global_server, output); */
|
||||
|
||||
while (do_read (input, cmnd, sizeof (glibtop_command))) {
|
||||
size_t recv_size = 0, send_size = 0, recv_data_size = 0;
|
||||
|
||||
14
configure.in
14
configure.in
@@ -8,12 +8,12 @@ AC_CANONICAL_SYSTEM
|
||||
|
||||
LIBGTOP_MAJOR_VERSION=2
|
||||
LIBGTOP_MINOR_VERSION=7
|
||||
LIBGTOP_MICRO_VERSION=90
|
||||
LIBGTOP_MICRO_VERSION=92
|
||||
LIBGTOP_VERSION=$LIBGTOP_MAJOR_VERSION.$LIBGTOP_MINOR_VERSION.$LIBGTOP_MICRO_VERSION
|
||||
AM_INIT_AUTOMAKE(libgtop, $LIBGTOP_VERSION)
|
||||
|
||||
dnl increment if the interface has additions, changes, removals.
|
||||
LIBGTOP_CURRENT=3
|
||||
LIBGTOP_CURRENT=4
|
||||
|
||||
dnl increment any time the source changes; set to
|
||||
dnl 0 if you increment CURRENT
|
||||
@@ -22,7 +22,7 @@ LIBGTOP_REVISION=0
|
||||
dnl increment if any interfaces have been added; set to 0
|
||||
dnl if any interfaces have been removed. removal has
|
||||
dnl precedence over adding, so set to 0 if both happened.
|
||||
LIBGTOP_AGE=1
|
||||
LIBGTOP_AGE=0
|
||||
|
||||
# you can set this to `-snap' for instance to create
|
||||
# a `libgtop-1.x.y-snap.tar.gz' tarball.
|
||||
@@ -148,6 +148,11 @@ else
|
||||
AC_MSG_ERROR([libgtop requires the popt development libraries])
|
||||
fi
|
||||
|
||||
AC_CHECK_HEADER(ifaddrs.h, [HAVE_IFADDRS_H=yes], [HAVE_IFADDRS_H=no])
|
||||
if test x$HAVE_IFADDRS_H = xyes ; then
|
||||
AC_DEFINE(HAVE_IFADDRS_H, 1, [defined if you have ifaddrs.h])
|
||||
fi
|
||||
|
||||
dnl Checks for typedefs, structures, and compiler characteristics.
|
||||
AC_C_CONST
|
||||
AC_C_INLINE
|
||||
@@ -250,7 +255,7 @@ AC_TYPE_SIGNAL
|
||||
AC_FUNC_STRFTIME
|
||||
AC_CHECK_FUNCS(getcwd gettimeofday getwd putenv strdup strtoul uname)
|
||||
|
||||
ALL_LINGUAS="am ar az be bg bn ca cs cy da de el en_CA en_GB es et eu fa fi fr ga gl gu he hi hr hu id it ja ko lt lv mi mk ml mn ms nl nn no pa pl pt pt_BR ro ru sk sl sq sr sr@Latn sv ta tr uk vi zh_CN zh_TW"
|
||||
ALL_LINGUAS="am ar az be bg bn bs ca cs cy da de el en_CA en_GB es et eu fa fi fr ga gl gu he hi hr hu id it ja ko lt lv mi mk ml mn ms nb nl nn no pa pl pt pt_BR ro ru sk sl sq sr sr@Latn sv ta tr uk vi zh_CN zh_TW"
|
||||
|
||||
GETTEXT_PACKAGE=libgtop-2.0
|
||||
AC_SUBST(GETTEXT_PACKAGE)
|
||||
@@ -347,6 +352,7 @@ AC_SUBST(machine_incs)
|
||||
if test "$GCC" = "yes" ; then
|
||||
CFLAGS="\
|
||||
-Wall \
|
||||
-std=gnu89 \
|
||||
-Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes \
|
||||
-Wnested-externs -Wpointer-arith \
|
||||
-Wcast-align -Wsign-compare \
|
||||
|
||||
@@ -24,7 +24,7 @@ first_static_LDADD = $(first_LDADD)
|
||||
first_static_LDFLAGS = -static
|
||||
|
||||
second_SOURCES = second.c
|
||||
second_LDADD = $(top_builddir)/lib/libgtop-2.0.la
|
||||
second_LDADD = $(top_builddir)/lib/libgtop-2.0.la -lm
|
||||
|
||||
second_static_SOURCES = $(second_SOURCES)
|
||||
second_static_LDADD = $(second_LDADD)
|
||||
@@ -71,7 +71,7 @@ mountlist_static_LDFLAGS= -static
|
||||
|
||||
|
||||
smp_SOURCES = smp.c
|
||||
smp_LDADD = $(top_builddir)/lib/libgtop-2.0.la
|
||||
smp_LDADD = $(top_builddir)/lib/libgtop-2.0.la -lm
|
||||
|
||||
smp_static_SOURCES = $(smp_SOURCES)
|
||||
smp_static_LDADD = $(smp_LDADD)
|
||||
|
||||
@@ -1,50 +0,0 @@
|
||||
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 4 -*- */
|
||||
|
||||
/* $Id$ */
|
||||
|
||||
/* Copyright (C) 1998-99 Martin Baulig
|
||||
This file is part of LibGTop 1.0.
|
||||
|
||||
Contributed by Martin Baulig <martin@home-of-linux.org>, April 1998.
|
||||
|
||||
LibGTop is free software; you can redistribute it and/or modify it
|
||||
under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License,
|
||||
or (at your option) any later version.
|
||||
|
||||
LibGTop is distributed in the hope that it will be useful, but WITHOUT
|
||||
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with LibGTop; see the file COPYING. If not, write to the
|
||||
Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
||||
Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#ifndef __GLIBTOP_ARRAY_H__
|
||||
#define __GLIBTOP_ARRAY_H__
|
||||
|
||||
#include <glibtop.h>
|
||||
#include <glibtop/global.h>
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
#define GLIBTOP_ARRAY_NUMBER 0
|
||||
#define GLIBTOP_ARRAY_SIZE 1
|
||||
#define GLIBTOP_ARRAY_TOTAL 2
|
||||
|
||||
#define GLIBTOP_MAX_ARRAY 3
|
||||
|
||||
typedef struct _glibtop_array glibtop_array;
|
||||
|
||||
struct _glibtop_array
|
||||
{
|
||||
guint64 flags,
|
||||
number, /* GLIBTOP_ARRAY_NUMBER */
|
||||
size, /* GLIBTOP_ARRAY_SIZE */
|
||||
total; /* GLIBTOP_ARRAY_TOTAL */
|
||||
};
|
||||
|
||||
#endif
|
||||
@@ -1,91 +0,0 @@
|
||||
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 4 -*- */
|
||||
|
||||
/* $Id$ */
|
||||
|
||||
/* Copyright (C) 1998-99 Martin Baulig
|
||||
This file is part of LibGTop 1.0.
|
||||
|
||||
Contributed by Martin Baulig <martin@home-of-linux.org>, April 1998.
|
||||
|
||||
LibGTop is free software; you can redistribute it and/or modify it
|
||||
under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License,
|
||||
or (at your option) any later version.
|
||||
|
||||
LibGTop is distributed in the hope that it will be useful, but WITHOUT
|
||||
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with LibGTop; see the file COPYING. If not, write to the
|
||||
Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
||||
Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#ifndef __GLIBTOP_COMPAT10_H__
|
||||
#define __GLIBTOP_COMPAT10_H__
|
||||
|
||||
#include <glibtop.h>
|
||||
#include <glibtop/global.h>
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
/* glibtop_cpu */
|
||||
|
||||
#define GLIBTOP_XCPU_TOTAL GLIBTOP_CPU_XCPU_TOTAL
|
||||
#define GLIBTOP_XCPU_USER GLIBTOP_CPU_XCPU_USER
|
||||
#define GLIBTOP_XCPU_NICE GLIBTOP_CPU_XCPU_NICE
|
||||
#define GLIBTOP_XCPU_SYS GLIBTOP_CPU_XCPU_SYS
|
||||
#define GLIBTOP_XCPU_IDLE GLIBTOP_CPU_XCPU_IDLE
|
||||
#define GLIBTOP_XCPU_FLAGS GLIBTOP_CPU_XCPU_FLAGS
|
||||
|
||||
/* glibtop_proclist */
|
||||
|
||||
#define GLIBTOP_PROCLIST_NUMBER GLIBTOP_ARRAY_NUMBER
|
||||
#define GLIBTOP_PROCLIST_SIZE GLIBTOP_ARRAY_SIZE
|
||||
#define GLIBTOP_PROCLIST_TOTAL GLIBTOP_ARRAY_TOTAL
|
||||
|
||||
#define GLIBTOP_MAX_PROCLIST GLIBTOP_MAX_ARRAY
|
||||
|
||||
typedef struct _glibtop_array glibtop_proclist;
|
||||
|
||||
/* glibtop_mountlist */
|
||||
|
||||
#define GLIBTOP_MOUNTLIST_NUMBER GLIBTOP_ARRAY_NUMBER
|
||||
#define GLIBTOP_MOUNTLIST_SIZE GLIBTOP_ARRAY_SIZE
|
||||
#define GLIBTOP_MOUNTLIST_TOTAL GLIBTOP_ARRAY_TOTAL
|
||||
|
||||
#define GLIBTOP_MAX_MOUNTLIST GLIBTOP_MAX_ARRAY
|
||||
|
||||
typedef struct _glibtop_array glibtop_mountlist;
|
||||
|
||||
/* glibtop_proc_args */
|
||||
|
||||
#define GLIBTOP_PROC_ARGS_SIZE 0
|
||||
|
||||
#define GLIBTOP_MAX_PROC_ARGS 1
|
||||
|
||||
typedef struct _glibtop_array glibtop_proc_args;
|
||||
|
||||
/* glibtop_proc_map */
|
||||
|
||||
#define GLIBTOP_PROC_MAP_NUMBER GLIBTOP_ARRAY_NUMBER
|
||||
#define GLIBTOP_PROC_MAP_SIZE GLIBTOP_ARRAY_SIZE
|
||||
#define GLIBTOP_PROC_MAP_TOTAL GLIBTOP_ARRAY_TOTAL
|
||||
|
||||
#define GLIBTOP_MAX_PROC_MAP GLIBTOP_MAX_ARRAY
|
||||
|
||||
typedef struct _glibtop_array glibtop_proc_map;
|
||||
|
||||
/* glibtop_interface_names */
|
||||
|
||||
#define GLIBTOP_INTERFACE_NAMES_NUMBER GLIBTOP_ARRAY_NUMBER
|
||||
#define GLIBTOP_INTERFACE_NAMES_SIZE GLIBTOP_ARRAY_SIZE
|
||||
#define GLIBTOP_INTERFACE_NAMES_TOTAL GLIBTOP_ARRAY_TOTAL
|
||||
|
||||
#define GLIBTOP_MAX_INTERFACE_NAMES GLIBTOP_MAX_ARRAY
|
||||
|
||||
typedef struct _glibtop_array glibtop_interface_names;
|
||||
|
||||
#endif
|
||||
@@ -1,50 +0,0 @@
|
||||
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 4 -*- */
|
||||
|
||||
/* $Id$ */
|
||||
|
||||
/* Copyright (C) 1998-99 Martin Baulig
|
||||
This file is part of LibGTop 1.0.
|
||||
|
||||
Contributed by Martin Baulig <martin@home-of-linux.org>, April 1998.
|
||||
|
||||
LibGTop is free software; you can redistribute it and/or modify it
|
||||
under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License,
|
||||
or (at your option) any later version.
|
||||
|
||||
LibGTop is distributed in the hope that it will be useful, but WITHOUT
|
||||
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with LibGTop; see the file COPYING. If not, write to the
|
||||
Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
||||
Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#ifndef __GLIBTOP_GLIB_ARRAYS_H__
|
||||
#define __GLIBTOP_GLIB_ARRAYS_H__
|
||||
|
||||
#include <glibtop.h>
|
||||
#include <glibtop/array.h>
|
||||
#include <glibtop/global.h>
|
||||
|
||||
#include <glib.h>
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
GPtrArray *
|
||||
glibtop_get_proc_args_as_array_l (glibtop_client *client, pid_t pid);
|
||||
|
||||
GArray *
|
||||
glibtop_get_proclist_as_array_l (glibtop_client *client, gint64 which, gint64 arg);
|
||||
|
||||
GPtrArray *
|
||||
glibtop_get_proc_map_as_array_l (glibtop_client *client, pid_t pid);
|
||||
|
||||
GPtrArray *
|
||||
glibtop_get_mountlist_as_array_l (glibtop_client *client, int all_fs);
|
||||
|
||||
G_END_DECLS
|
||||
#endif
|
||||
@@ -1,203 +0,0 @@
|
||||
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 4 -*- */
|
||||
|
||||
/* $Id$ */
|
||||
|
||||
/* Copyright (C) 1998-99 Martin Baulig
|
||||
This file is part of LibGTop 1.0.
|
||||
|
||||
Contributed by Martin Baulig <martin@home-of-linux.org>, April 1998.
|
||||
|
||||
LibGTop is free software; you can redistribute it and/or modify it
|
||||
under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License,
|
||||
or (at your option) any later version.
|
||||
|
||||
LibGTop is distributed in the hope that it will be useful, but WITHOUT
|
||||
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with LibGTop; see the file COPYING. If not, write to the
|
||||
Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
||||
Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#ifndef __GLIBTOP_INTERFACES_H__
|
||||
#define __GLIBTOP_INTERFACES_H__
|
||||
|
||||
#include <glibtop.h>
|
||||
#include <glibtop/global.h>
|
||||
|
||||
#include <glibtop/compat_10.h>
|
||||
#include <glibtop/array.h>
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
#define GLIBTOP_INTERFACE_IF_FLAGS 0
|
||||
#define GLIBTOP_INTERFACE_TRANSPORT 1
|
||||
#define GLIBTOP_INTERFACE_TYPE 2
|
||||
#define GLIBTOP_INTERFACE_NUMBER 3
|
||||
#define GLIBTOP_INTERFACE_INSTANCE 4
|
||||
#define GLIBTOP_INTERFACE_NUM_LOGICAL 5
|
||||
#define GLIBTOP_INTERFACE_NAME 6
|
||||
|
||||
#define GLIBTOP_MAX_INTERFACE 7
|
||||
|
||||
#define GLIBTOP_IFADDR_TRANSPORT 0
|
||||
#define GLIBTOP_IFADDR_ADDR_LEN 1
|
||||
#define GLIBTOP_IFADDR_ADDRESS 2
|
||||
#define GLIBTOP_IFADDR_SUBNET 3
|
||||
#define GLIBTOP_IFADDR_SCOPE 4
|
||||
|
||||
#define GLIBTOP_MAX_IFADDR 5
|
||||
|
||||
typedef struct _glibtop_interface glibtop_interface;
|
||||
typedef struct _glibtop_ifaddr glibtop_ifaddr;
|
||||
|
||||
typedef enum _glibtop_interface_type glibtop_interface_type;
|
||||
typedef enum _glibtop_transport glibtop_transport;
|
||||
typedef enum _glibtop_protocol glibtop_protocol;
|
||||
|
||||
typedef enum _glibtop_ipv6_scope glibtop_ipv6_scope;
|
||||
|
||||
typedef enum _glibtop_strategy glibtop_strategy;
|
||||
typedef enum _glibtop_interface_flags glibtop_interface_flags;
|
||||
|
||||
enum _glibtop_protocol {
|
||||
GLIBTOP_PROTOCOL_OTHERS = 0,
|
||||
GLIBTOP_PROTOCOL_ICMP = 1 << 0,
|
||||
GLIBTOP_PROTOCOL_TCP = 1 << 1,
|
||||
GLIBTOP_PROTOCOL_UDP = 1 << 2,
|
||||
GLIBTOP_PROTOCOL_IGMP = 1 << 3,
|
||||
GLIBTOP_PROTOCOL_RAW = 1 << 4,
|
||||
GLIBTOP_PROTOCOL_ICMP6 = 1 << 5,
|
||||
GLIBTOP_PROTOCOL_TCP6 = 1 << 6,
|
||||
GLIBTOP_PROTOCOL_UDP6 = 1 << 7,
|
||||
GLIBTOP_PROTOCOL_IGMP6 = 1 << 8,
|
||||
GLIBTOP_PROTOCOL_RAW6 = 1 << 9
|
||||
};
|
||||
|
||||
enum _glibtop_transport {
|
||||
GLIBTOP_TRANSPORT_DEFAULT = 0,
|
||||
GLIBTOP_TRANSPORT_IPV4 = 1 << 0,
|
||||
GLIBTOP_TRANSPORT_IPV6 = 1 << 1,
|
||||
GLIBTOP_TRANSPORT_IPX = 1 << 2,
|
||||
GLIBTOP_TRANSPORT_X25 = 1 << 3,
|
||||
GLIBTOP_TRANSPORT_DECNET = 1 << 4,
|
||||
GLIBTOP_TRANSPORT_APPLETALK = 1 << 5,
|
||||
GLIBTOP_TRANSPORT_NETBEUI = 1 << 6
|
||||
};
|
||||
|
||||
#define GLIBTOP_TRANSPORT_ALL GLIBTOP_UNLIMITED
|
||||
#define GLIBTOP_PROTOCOL_ALL GLIBTOP_UNLIMITED
|
||||
|
||||
enum _glibtop_interface_type {
|
||||
GLIBTOP_INTERFACE_ALL = 0,
|
||||
GLIBTOP_INTERFACE_OTHER,
|
||||
/* Network interfaces */
|
||||
GLIBTOP_INTERFACE_ETHERNET = 101,
|
||||
GLIBTOP_INTERFACE_FDDI,
|
||||
GLIBTOP_INTERFACE_FRAME_RELAY,
|
||||
GLIBTOP_INTERFACE_TOKEN_RING,
|
||||
GLIBTOP_INTERFACE_ARCNET,
|
||||
GLIBTOP_INTERFACE_ATM,
|
||||
/* Dummy interfaces */
|
||||
GLIBTOP_INTERFACE_LOOPBACK = 501,
|
||||
GLIBTOP_INTERFACE_DUMMY,
|
||||
/* Dialup interfaces */
|
||||
GLIBTOP_INTERFACE_PARA = 801,
|
||||
GLIBTOP_INTERFACE_SLIP,
|
||||
GLIBTOP_INTERFACE_PPP,
|
||||
GLIBTOP_INTERFACE_ISDN
|
||||
};
|
||||
|
||||
enum _glibtop_ipv6_scope {
|
||||
GLIBTOP_IPV6_SCOPE_GLOBAL = 0,
|
||||
GLIBTOP_IPV6_SCOPE_LOOPBACK = 1 << 1,
|
||||
GLIBTOP_IPV6_SCOPE_LINKLOCAL = 1 << 2,
|
||||
GLIBTOP_IPV6_SCOPE_SITELOCAL = 1 << 3,
|
||||
GLIBTOP_IPV6_SCOPE_COMPATv4 = 1 << 4,
|
||||
GLIBTOP_IPV6_SCOPE_UNKNOWN = 1 << 5
|
||||
};
|
||||
|
||||
enum _glibtop_strategy {
|
||||
GLIBTOP_INTERFACES_ALL = 0,
|
||||
GLIBTOP_INTERFACES_BEST_MATCHING,
|
||||
GLIBTOP_INTERFACES_ONLY_THIS_ONE,
|
||||
GLIBTOP_INTERFACES_INCLUDE_LOGICAL = 1 << 7
|
||||
};
|
||||
|
||||
#define GLIBTOP_STRATEGY_FLAGS_MASK (1 << 7)
|
||||
|
||||
enum _glibtop_interface_flags {
|
||||
GLIBTOP_IF_FLAGS_UP = 1,
|
||||
GLIBTOP_IF_FLAGS_BROADCAST,
|
||||
GLIBTOP_IF_FLAGS_DEBUG,
|
||||
GLIBTOP_IF_FLAGS_LOOPBACK,
|
||||
GLIBTOP_IF_FLAGS_POINTOPOINT,
|
||||
GLIBTOP_IF_FLAGS_RUNNING,
|
||||
GLIBTOP_IF_FLAGS_NOARP,
|
||||
GLIBTOP_IF_FLAGS_PROMISC,
|
||||
GLIBTOP_IF_FLAGS_ALLMULTI,
|
||||
GLIBTOP_IF_FLAGS_OACTIVE,
|
||||
GLIBTOP_IF_FLAGS_SIMPLEX,
|
||||
GLIBTOP_IF_FLAGS_LINK0,
|
||||
GLIBTOP_IF_FLAGS_LINK1,
|
||||
GLIBTOP_IF_FLAGS_LINK2,
|
||||
GLIBTOP_IF_FLAGS_ALTPHYS,
|
||||
GLIBTOP_IF_FLAGS_MULTICAST
|
||||
};
|
||||
|
||||
struct _glibtop_ifaddr
|
||||
{
|
||||
guint64 flags,
|
||||
transport; /* GLIBTOP_IFADDR_TRANSPORT */
|
||||
u_int8_t addr_len, /* GLIBTOP_IFADDR_ADDR_LEN */
|
||||
address [GLIBTOP_IFADDR_LEN]; /* GLIBTOP_IFADDR_ADDRESS */
|
||||
guint64 subnet, /* GLIBTOP_IFADDR_SUBNET */
|
||||
scope; /* GLIBTOP_IFADDR_SCOPE */
|
||||
};
|
||||
|
||||
struct _glibtop_interface
|
||||
{
|
||||
guint64 flags,
|
||||
if_flags, /* GLIBTOP_INTERFACE_IF_FLAGS */
|
||||
transport, /* GLIBTOP_INTERFACE_TRANSPORT */
|
||||
type, /* GLIBTOP_INTERFACE_TYPE */
|
||||
number, /* GLIBTOP_INTERFACE_NUMBER */
|
||||
instance, /* GLIBTOP_INTERFACE_INSTANCE */
|
||||
num_logical; /* GLIBTOP_INTERFACE_NUM_LOGICAL */
|
||||
char name [GLIBTOP_INTERFACE_LEN];
|
||||
};
|
||||
|
||||
#if GLIBTOP_SUID_INTERFACE_NAMES
|
||||
#define glibtop_get_interface_names_r glibtop_get_interface_names_p
|
||||
#else
|
||||
#define glibtop_get_interface_names_r glibtop_get_interface_names_s
|
||||
#endif
|
||||
|
||||
glibtop_interface *glibtop_get_interface_names_l (glibtop_client *client, glibtop_array *array, guint64 interface, guint64 number, guint64 instance, guint64 strategy);
|
||||
|
||||
#if GLIBTOP_SUID_INTERFACE_NAMES
|
||||
int glibtop_init_interface_names_p (glibtop_server *server, glibtop_closure *closure);
|
||||
glibtop_interface *glibtop_get_interface_names_p (glibtop_server *server, glibtop_closure *closure, glibtop_array *array, guint64 interface, guint64 number, guint64 instance, guint64 strategy);
|
||||
#else
|
||||
int glibtop_init_interface_names_s (glibtop_server *server, glibtop_closure *closure);
|
||||
glibtop_interface *glibtop_get_interface_names_s (glibtop_server *server, glibtop_closure *closure, glibtop_array *array, guint64 interface, guint64 number, guint64 instance, guint64 strategy);
|
||||
#endif
|
||||
|
||||
#ifdef GLIBTOP_NAMES
|
||||
|
||||
/* You need to link with -lgtop_names to get this stuff here. */
|
||||
|
||||
extern const char *glibtop_names_interface_names [];
|
||||
extern const unsigned glibtop_types_interface_names [];
|
||||
extern const char *glibtop_labels_interface_names [];
|
||||
extern const char *glibtop_descriptions_interface_names [];
|
||||
|
||||
#endif
|
||||
|
||||
G_END_DECLS
|
||||
|
||||
#endif
|
||||
@@ -1,81 +0,0 @@
|
||||
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 4 -*- */
|
||||
|
||||
/* $Id$ */
|
||||
|
||||
/* Copyright (C) 1998-99 Martin Baulig
|
||||
This file is part of LibGTop 1.0.
|
||||
|
||||
Contributed by Martin Baulig <martin@home-of-linux.org>, April 1998.
|
||||
|
||||
LibGTop is free software; you can redistribute it and/or modify it
|
||||
under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License,
|
||||
or (at your option) any later version.
|
||||
|
||||
LibGTop is distributed in the hope that it will be useful, but WITHOUT
|
||||
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with LibGTop; see the file COPYING. If not, write to the
|
||||
Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
||||
Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#ifndef __GLIBTOP_PROCCWD_H__
|
||||
#define __GLIBTOP_PROCCWD_H__
|
||||
|
||||
#include <glibtop.h>
|
||||
#include <glibtop/global.h>
|
||||
|
||||
#include <glibtop/array.h>
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
#define GLIBTOP_PROC_CWD_SIZE 0
|
||||
#define GLIBTOP_PROC_CWD_DEVICE 1
|
||||
#define GLIBTOP_PROC_CWD_INODE 2
|
||||
|
||||
#define GLIBTOP_MAX_PROC_CWD 3
|
||||
|
||||
typedef struct _glibtop_proc_cwd glibtop_proc_cwd;
|
||||
|
||||
/* Cwd stuff */
|
||||
|
||||
struct _glibtop_proc_cwd
|
||||
{
|
||||
guint64 flags,
|
||||
size,
|
||||
device,
|
||||
inode;
|
||||
};
|
||||
|
||||
#if GLIBTOP_SUID_PROC_CWD
|
||||
#define glibtop_get_proc_cwd_r glibtop_get_proc_cwd_p
|
||||
#else
|
||||
#define glibtop_get_proc_cwd_r glibtop_get_proc_cwd_s
|
||||
#endif
|
||||
|
||||
char *glibtop_get_proc_cwd_l (glibtop_client *client, glibtop_proc_cwd *buf, pid_t pid);
|
||||
|
||||
#if GLIBTOP_SUID_PROC_CWD
|
||||
int glibtop_init_proc_cwd_p (glibtop_server *server, glibtop_closure *closure);
|
||||
char *glibtop_get_proc_cwd_p (glibtop_server *server, glibtop_closure *closure, glibtop_proc_cwd *buf, pid_t pid);
|
||||
#else
|
||||
int glibtop_init_proc_cwd_s (glibtop_server *server, glibtop_closure *closure);
|
||||
char *glibtop_get_proc_cwd_s (glibtop_server *server, glibtop_closure *closure, glibtop_proc_cwd *buf, pid_t pid);
|
||||
#endif
|
||||
|
||||
#ifdef GLIBTOP_NAMES
|
||||
|
||||
/* You need to link with -lgtop_names to get this stuff here. */
|
||||
|
||||
extern const char *glibtop_names_proc_cwd [];
|
||||
extern const unsigned glibtop_types_proc_cwd [];
|
||||
extern const char *glibtop_labels_proc_cwd [];
|
||||
extern const char *glibtop_descriptions_proc_cwd [];
|
||||
|
||||
#endif
|
||||
|
||||
#endif
|
||||
@@ -31,13 +31,11 @@ void *
|
||||
glibtop_call_l (glibtop *server, unsigned command, size_t send_size,
|
||||
const void *send_buf, size_t recv_size, void *recv_buf)
|
||||
{
|
||||
glibtop_command cmnd;
|
||||
glibtop_response response;
|
||||
glibtop_command cmnd = {0};
|
||||
glibtop_response response = {0};
|
||||
|
||||
glibtop_init_r (&server, 0, 0);
|
||||
|
||||
memset (&cmnd, 0, sizeof (glibtop_command));
|
||||
|
||||
cmnd.command = command;
|
||||
|
||||
/* If send_size is less than _GLIBTOP_PARAM_SIZE (normally 16 Bytes), we
|
||||
|
||||
@@ -1,120 +0,0 @@
|
||||
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 4 -*- */
|
||||
|
||||
/* $Id$ */
|
||||
|
||||
/* Copyright (C) 1998-99 Martin Baulig
|
||||
This file is part of LibGTop 1.0.
|
||||
|
||||
Contributed by Martin Baulig <martin@home-of-linux.org>, April 1998.
|
||||
|
||||
LibGTop is free software; you can redistribute it and/or modify it
|
||||
under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License,
|
||||
or (at your option) any later version.
|
||||
|
||||
LibGTop is distributed in the hope that it will be useful, but WITHOUT
|
||||
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with LibGTop; see the file COPYING. If not, write to the
|
||||
Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
||||
Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#include <glibtop.h>
|
||||
#include <glibtop/union.h>
|
||||
|
||||
#include <glibtop/glib-arrays.h>
|
||||
|
||||
GArray *
|
||||
glibtop_get_proclist_as_array_l (glibtop_client *client, gint64 which,
|
||||
gint64 arg)
|
||||
{
|
||||
glibtop_array array;
|
||||
GArray *retval;
|
||||
unsigned *ptr;
|
||||
int i;
|
||||
|
||||
ptr = glibtop_get_proclist_l (client, &array, which, arg);
|
||||
if (!ptr) return NULL;
|
||||
|
||||
retval = g_array_new (FALSE, TRUE, sizeof (guint));
|
||||
retval = g_array_set_size (retval, array.number);
|
||||
|
||||
for (i = 0; i < array.number; i++)
|
||||
g_array_index (retval, guint, i) = ptr [i];
|
||||
|
||||
g_free (ptr);
|
||||
|
||||
return retval;
|
||||
}
|
||||
|
||||
GPtrArray *
|
||||
glibtop_get_proc_args_as_array_l (glibtop_client *client, pid_t pid)
|
||||
{
|
||||
glibtop_array array;
|
||||
GPtrArray *retval;
|
||||
char **ptr;
|
||||
int i;
|
||||
|
||||
ptr = glibtop_get_proc_args_l (client, &array, pid);
|
||||
if (!ptr) return NULL;
|
||||
|
||||
retval = g_ptr_array_new ();
|
||||
g_ptr_array_set_size (retval, array.number);
|
||||
|
||||
for (i = 0; i < array.number; i++) {
|
||||
retval->pdata [i] = g_strdup (ptr [i]);
|
||||
g_free (ptr [i]);
|
||||
}
|
||||
|
||||
g_free (ptr);
|
||||
|
||||
return retval;
|
||||
}
|
||||
|
||||
GPtrArray *
|
||||
glibtop_get_proc_map_as_array_l (glibtop_client *client, pid_t pid)
|
||||
{
|
||||
glibtop_array array;
|
||||
GPtrArray *retval;
|
||||
glibtop_map_entry *ptr;
|
||||
int i;
|
||||
|
||||
ptr = glibtop_get_proc_map_l (client, &array, pid);
|
||||
if (!ptr) return NULL;
|
||||
|
||||
retval = g_ptr_array_new ();
|
||||
g_ptr_array_set_size (retval, array.number);
|
||||
|
||||
for (i = 0; i < array.number; i++)
|
||||
retval->pdata [i] = g_memdup (ptr+i, sizeof (glibtop_map_entry));
|
||||
|
||||
g_free (ptr);
|
||||
|
||||
return retval;
|
||||
}
|
||||
|
||||
GPtrArray *
|
||||
glibtop_get_mountlist_as_array_l (glibtop_client *client, int all_fs)
|
||||
{
|
||||
glibtop_array array;
|
||||
GPtrArray *retval;
|
||||
glibtop_mountentry *ptr;
|
||||
int i;
|
||||
|
||||
ptr = glibtop_get_mountlist_l (client, &array, all_fs);
|
||||
if (!ptr) return NULL;
|
||||
|
||||
retval = g_ptr_array_new ();
|
||||
g_ptr_array_set_size (retval, array.number);
|
||||
|
||||
for (i = 0; i < array.number; i++)
|
||||
retval->pdata [i] = g_memdup (ptr+i, sizeof (glibtop_mountentry));
|
||||
|
||||
g_free (ptr);
|
||||
|
||||
return retval;
|
||||
}
|
||||
77
po/ChangeLog
77
po/ChangeLog
@@ -1,3 +1,80 @@
|
||||
2004-08-30 Nikos Charonitakis <charosn@her.forthnet.gr>
|
||||
|
||||
* el.po: Updated Greek translation.
|
||||
|
||||
2004-08-28 Francisco Javier F. Serrador <serrador@cvs.gnome.org>
|
||||
|
||||
* es.po: Updated Spanish translation.
|
||||
|
||||
2004-08-28 Akagic Amila <bono@linux.org.ba>
|
||||
|
||||
* bs.po: Added Bosnian translation.
|
||||
|
||||
2004-08-26 Iñaki Larrañaga <dooteo@euskalgnu.org>
|
||||
|
||||
* eu.po: Updated Basque translation.
|
||||
|
||||
2004-08-23 Maxim Dziumanenko <mvd@mylinux.com.ua>
|
||||
|
||||
* uk.po: Updated Ukrainian translation.
|
||||
|
||||
2004-08-23 Martin Willemoes Hansen <mwh@sysrq.dk>
|
||||
|
||||
* da.po: Updated Danish translation.
|
||||
|
||||
2004-08-21 Jordi Mallach <jordi@sindominio.net>
|
||||
|
||||
* ca.po: Updated Catalan translation.
|
||||
|
||||
2004-08-21 Kjartan Maraas <kmaraas@gnome.org>
|
||||
|
||||
* nb.po: Add this.
|
||||
|
||||
2004-08-20 Laurent Dhima <laurenti@alblinux.net>
|
||||
|
||||
* sq.po: Updated Albanian translation.
|
||||
|
||||
2004-08-18 Pauli Virtanen <pauli.virtanen@hut.fi>
|
||||
|
||||
* fi.po: Updated Finnish translation.
|
||||
|
||||
2004-08-18 Laurent Dhima <laurenti@alblinux.net>
|
||||
|
||||
* sq.po: Updated Albanian translation.
|
||||
|
||||
2004-08-15 Duarte Loreto <happyguy_pt@hotmail.com>
|
||||
|
||||
* pt.po: Fixed typo in Portuguese translation.
|
||||
|
||||
2004-08-13 Tommi Vainikainen <thv@iki.fi>
|
||||
|
||||
* fi.po: Unified some fields in po headers for Finnish team.
|
||||
|
||||
2004-08-11 Dmitry G. Mastrukov <dmitry@taurussoft.org>
|
||||
|
||||
* ru.po: Updated Russian translation
|
||||
from Russian team <gnome-cyr@gnome.org>.
|
||||
|
||||
2004-08-10 Artur Flinta <aflinta@cvs.gnome.org>
|
||||
|
||||
* pl.po: Updated Polish translation by GNOME PL Team.
|
||||
|
||||
2004-08-08 Funda Wang <fundawang@linux.net.cn>
|
||||
|
||||
* zh_CN.po: Updated Simplified Chinese translation.
|
||||
|
||||
2004-08-07 Marcel Telka <marcel@telka.sk>
|
||||
|
||||
* sk.po: Updated Slovak translation.
|
||||
|
||||
2004-08-07 Danilo Šegan <dsegan@gmx.net>
|
||||
|
||||
* sr.po, sr@Latn.po: Updated Serbian translation.
|
||||
|
||||
2004-08-04 Christian Rose <menthos@menthos.com>
|
||||
|
||||
* sv.po: Updated Swedish translation.
|
||||
|
||||
2004-08-03 Benoît Dejean <tazforever@dlfp.org>
|
||||
|
||||
* am.po:
|
||||
|
||||
59
po/ca.po
59
po/ca.po
@@ -1,14 +1,14 @@
|
||||
# Catalan translation of libgtop.
|
||||
# Copyright © 2000, 2001, 2002 Free Software Foundation, Inc.
|
||||
# Copyright © 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
|
||||
# Softcatalà <gnome@softcatala.net>, 2000, 2001, 2002.
|
||||
# Jordi Mallach <jordi@sindominio.net>, 2002, 2003.
|
||||
# Jordi Mallach <jordi@sindominio.net>, 2002, 2003, 2004.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: libgtop 2.0.0\n"
|
||||
"Project-Id-Version: libgtop 2.7.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2004-08-03 14:09+0200\n"
|
||||
"PO-Revision-Date: 2003-11-03 15:17+0100\n"
|
||||
"POT-Creation-Date: 2004-08-21 18:36+0200\n"
|
||||
"PO-Revision-Date: 2004-08-21 18:41+0200\n"
|
||||
"Last-Translator: Jordi Mallach <jordi@sindominio.net>\n"
|
||||
"Language-Team: Catalan <tradgnome@softcatala.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -101,8 +101,8 @@ msgstr "Rotació:"
|
||||
#, c-format
|
||||
msgid "read %d byte"
|
||||
msgid_plural "read %d bytes"
|
||||
msgstr[0] "llegeix %d byte"
|
||||
msgstr[1] "llegeix %d bytes"
|
||||
msgstr[0] "llegeix %d octet"
|
||||
msgstr[1] "llegeix %d octets"
|
||||
|
||||
#: lib/read_data.c:51
|
||||
msgid "read data size"
|
||||
@@ -112,15 +112,15 @@ msgstr "llegeix la mida de les dades"
|
||||
#, c-format
|
||||
msgid "read data %d byte"
|
||||
msgid_plural "read data %d bytes"
|
||||
msgstr[0] "llegeix %d byte de les dades"
|
||||
msgstr[1] "llegeix els %d bytes de les dades"
|
||||
msgstr[0] "llegeix %d octet de les dades"
|
||||
msgstr[1] "llegeix els %d octets de les dades"
|
||||
|
||||
#: lib/write.c:51
|
||||
#, c-format
|
||||
msgid "write %d byte"
|
||||
msgid_plural "write %d bytes"
|
||||
msgstr[0] "escriu %d byte"
|
||||
msgstr[1] "escriu els %d bytes"
|
||||
msgstr[0] "escriu %d octet"
|
||||
msgstr[1] "escriu els %d octets"
|
||||
|
||||
#: src/daemon/gnuserv.c:456
|
||||
msgid "Enable debugging"
|
||||
@@ -264,9 +264,8 @@ msgid "Free file nodes"
|
||||
msgstr "Nodes d'arxiu lliures"
|
||||
|
||||
#: sysdeps/names/fsusage.c:45 sysdeps/names/fsusage.c:55
|
||||
#, fuzzy
|
||||
msgid "Block size"
|
||||
msgstr "Bloquejada"
|
||||
msgstr "Mida del bloc"
|
||||
|
||||
#: sysdeps/names/fsusage.c:51
|
||||
msgid "Free blocks available to the superuser"
|
||||
@@ -385,7 +384,7 @@ msgstr "La mida d'un element de la llista"
|
||||
|
||||
#: sysdeps/names/msg_limits.c:41 sysdeps/names/msg_limits.c:52
|
||||
msgid "Size in kilobytes of message pool"
|
||||
msgstr "Mida en kB de la bústia de missatges"
|
||||
msgstr "Mida en KB de la bústia de missatges"
|
||||
|
||||
#: sysdeps/names/msg_limits.c:42 sysdeps/names/msg_limits.c:53
|
||||
msgid "Number of entries in message map"
|
||||
@@ -420,14 +419,12 @@ msgid "MTU"
|
||||
msgstr "MTU"
|
||||
|
||||
#: sysdeps/names/netload.c:48 sysdeps/names/netload.c:69
|
||||
#, fuzzy
|
||||
msgid "IPv4 Subnet"
|
||||
msgstr "Subxarxa"
|
||||
msgstr "Subxarxa IPv4"
|
||||
|
||||
#: sysdeps/names/netload.c:49 sysdeps/names/netload.c:70
|
||||
#, fuzzy
|
||||
msgid "IPv4 Address"
|
||||
msgstr "Adreça"
|
||||
msgstr "Adreça IPv4"
|
||||
|
||||
#: sysdeps/names/netload.c:50 sysdeps/names/netload.c:71
|
||||
msgid "Packets In"
|
||||
@@ -443,15 +440,15 @@ msgstr "El total de paquets "
|
||||
|
||||
#: sysdeps/names/netload.c:53 sysdeps/names/netload.c:74
|
||||
msgid "Bytes In"
|
||||
msgstr "Bytes a dins"
|
||||
msgstr "Octets a dins"
|
||||
|
||||
#: sysdeps/names/netload.c:54 sysdeps/names/netload.c:75
|
||||
msgid "Bytes Out"
|
||||
msgstr "Bytes a fora"
|
||||
msgstr "Octets a fora"
|
||||
|
||||
#: sysdeps/names/netload.c:55 sysdeps/names/netload.c:76
|
||||
msgid "Bytes Total"
|
||||
msgstr "El total de bytes"
|
||||
msgstr "Total d'octets"
|
||||
|
||||
#: sysdeps/names/netload.c:56 sysdeps/names/netload.c:77
|
||||
msgid "Errors In"
|
||||
@@ -470,17 +467,16 @@ msgid "Collisions"
|
||||
msgstr "Col·lisions"
|
||||
|
||||
#: sysdeps/names/netload.c:60 sysdeps/names/netload.c:81
|
||||
#, fuzzy
|
||||
msgid "IPv6 Address"
|
||||
msgstr "Adreça"
|
||||
msgstr "Adreça IPv6"
|
||||
|
||||
#: sysdeps/names/netload.c:61 sysdeps/names/netload.c:82
|
||||
msgid "IPv6 Prefix"
|
||||
msgstr ""
|
||||
msgstr "Prefix IPv6"
|
||||
|
||||
#: sysdeps/names/netload.c:62 sysdeps/names/netload.c:83
|
||||
msgid "IPv6 Scope"
|
||||
msgstr ""
|
||||
msgstr "Àmbit IPv6"
|
||||
|
||||
#: sysdeps/names/netload.c:68
|
||||
msgid "Maximum Transfer Unit"
|
||||
@@ -492,19 +488,19 @@ msgstr "Estat del PPP"
|
||||
|
||||
#: sysdeps/names/ppp.c:40
|
||||
msgid "Input bytes"
|
||||
msgstr "Bytes d'entrada"
|
||||
msgstr "Octets d'entrada"
|
||||
|
||||
#: sysdeps/names/ppp.c:41
|
||||
msgid "Output bytes"
|
||||
msgstr "Bytes de sortida"
|
||||
msgstr "Octets de sortida"
|
||||
|
||||
#: sysdeps/names/ppp.c:47
|
||||
msgid "Number of input bytes"
|
||||
msgstr "Nombre de bytes d'entrada"
|
||||
msgstr "Nombre d'octets d'entrada"
|
||||
|
||||
#: sysdeps/names/ppp.c:48
|
||||
msgid "Number of output bytes"
|
||||
msgstr "Nombre de bytes de sortida"
|
||||
msgstr "Nombre d'octets de sortida"
|
||||
|
||||
#: sysdeps/names/procargs.c:39 sysdeps/names/procmem.c:48
|
||||
msgid "Size"
|
||||
@@ -512,7 +508,7 @@ msgstr "Mida"
|
||||
|
||||
#: sysdeps/names/procargs.c:44
|
||||
msgid "Length in bytes of the returned string."
|
||||
msgstr "Longitud en bytes de la cadena retornada"
|
||||
msgstr "Longitud en octets de la cadena retornada"
|
||||
|
||||
#: sysdeps/names/prockernel.c:43
|
||||
msgid "K_Flags"
|
||||
@@ -684,8 +680,7 @@ msgstr ""
|
||||
#: sysdeps/names/procmem.c:63
|
||||
msgid ""
|
||||
"Current limit in bytes on the rss of the process (usually 2,147,483,647)."
|
||||
msgstr ""
|
||||
"Límit actual en octets de la rss del procés (normalment 2.147.483.647)."
|
||||
msgstr "Límit actual en octets de la rss del procés (normalment 2.147.483.647)."
|
||||
|
||||
#: sysdeps/names/procsegment.c:43
|
||||
msgid "Text_RSS"
|
||||
|
||||
25
po/da.po
25
po/da.po
@@ -1,9 +1,10 @@
|
||||
# Danish translation of libgtop.
|
||||
# Copyright (C) 1998, 2002, 03 Free Software Foundation, Inc.
|
||||
# Copyright (C) 1998, 2002, 03, 04 Free Software Foundation, Inc.
|
||||
# This file is distributed under the same license as the libgtop package.
|
||||
# Kenneth Christiansen <kenneth@ripen.dk>, 1998, 1999.
|
||||
# Keld Simonsen <keld@dkuug.dk>, 2000.
|
||||
# Ole Laursen <olau@hardworking.dk>, 2002, 03.
|
||||
#
|
||||
# Martin Willemoes Hansen <mwh@sysrq.dk>, 2004.
|
||||
#
|
||||
# BEMÆRK: oversættelsen er overhovedet ikke blevet rettet igennem.
|
||||
#
|
||||
@@ -11,8 +12,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: libgtop\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2004-08-03 14:09+0200\n"
|
||||
"PO-Revision-Date: 2003-11-20 21:23+0100\n"
|
||||
"POT-Creation-Date: 2004-08-23 12:21+0200\n"
|
||||
"PO-Revision-Date: 2004-08-23 12:21+0200\n"
|
||||
"Last-Translator: Ole Laursen <olau@hardworking.dk>\n"
|
||||
"Language-Team: Danish <dansk@klid.dk>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -264,9 +265,8 @@ msgid "Free file nodes"
|
||||
msgstr "Ledige filknuder"
|
||||
|
||||
#: sysdeps/names/fsusage.c:45 sysdeps/names/fsusage.c:55
|
||||
#, fuzzy
|
||||
msgid "Block size"
|
||||
msgstr "Blokeret"
|
||||
msgstr "Blokstørrelse"
|
||||
|
||||
#: sysdeps/names/fsusage.c:51
|
||||
msgid "Free blocks available to the superuser"
|
||||
@@ -419,14 +419,12 @@ msgid "MTU"
|
||||
msgstr "MTU"
|
||||
|
||||
#: sysdeps/names/netload.c:48 sysdeps/names/netload.c:69
|
||||
#, fuzzy
|
||||
msgid "IPv4 Subnet"
|
||||
msgstr "Undernet"
|
||||
msgstr "IPv4-undernet"
|
||||
|
||||
#: sysdeps/names/netload.c:49 sysdeps/names/netload.c:70
|
||||
#, fuzzy
|
||||
msgid "IPv4 Address"
|
||||
msgstr "Adresse"
|
||||
msgstr "IPv4-adresse"
|
||||
|
||||
#: sysdeps/names/netload.c:50 sysdeps/names/netload.c:71
|
||||
msgid "Packets In"
|
||||
@@ -469,17 +467,16 @@ msgid "Collisions"
|
||||
msgstr "Kollisioner"
|
||||
|
||||
#: sysdeps/names/netload.c:60 sysdeps/names/netload.c:81
|
||||
#, fuzzy
|
||||
msgid "IPv6 Address"
|
||||
msgstr "Adresse"
|
||||
msgstr "IPv6-adresse"
|
||||
|
||||
#: sysdeps/names/netload.c:61 sysdeps/names/netload.c:82
|
||||
msgid "IPv6 Prefix"
|
||||
msgstr ""
|
||||
msgstr "IPv6-præfiks"
|
||||
|
||||
#: sysdeps/names/netload.c:62 sysdeps/names/netload.c:83
|
||||
msgid "IPv6 Scope"
|
||||
msgstr ""
|
||||
msgstr "IPv6-virkefelt"
|
||||
|
||||
#: sysdeps/names/netload.c:68
|
||||
msgid "Maximum Transfer Unit"
|
||||
|
||||
199
po/el.po
199
po/el.po
@@ -1,6 +1,6 @@
|
||||
# translation of el.po to Greek
|
||||
# libgtop greek .po file
|
||||
# Copyright (C) 2000-2001,2003 Free Software Foundation, Inc.
|
||||
# Copyright (C) 2000-2001,2003, 2004 Free Software Foundation, Inc.
|
||||
#
|
||||
# sarantis: ~134 messages, (unknown), initial translation.
|
||||
# simos: 240 messages, 19Feb2001, added more messages, still 65 left.
|
||||
@@ -8,23 +8,25 @@
|
||||
# simos: 310 messages, 07Nov2002, completed.
|
||||
# kostas: 322 messages,30Oct2003, update for Gnome 2.6
|
||||
# Nikos: add plurals, minor fixes, 21Feb2004.
|
||||
# Nikos: small update, 30Aug2004.
|
||||
# Sarantis Paskalis <paskalis@di.uoa.gr>, 2000.
|
||||
# Simos Xenitellis <simos@hellug.gr>, 2001.
|
||||
# Kostas Papadimas <pkst@gnome.org>, 2003.
|
||||
# Nikos Charonitakis <frolix68@yahoo.gr>, 2004.
|
||||
# Nikos Charonitakis <charosn@her.forthnet.gr>, 2004.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: el\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2004-08-03 14:09+0200\n"
|
||||
"PO-Revision-Date: 2004-02-21 12:47+0200\n"
|
||||
"Last-Translator: Nikos Charonitakis <frolix68@yahoo.gr>\n"
|
||||
"Language-Team: Greek <nls@tux.hellug.gr>\n"
|
||||
"POT-Creation-Date: 2004-08-30 11:19-0300\n"
|
||||
"PO-Revision-Date: 2004-08-30 11:20-0300\n"
|
||||
"Last-Translator: Nikos Charonitakis <charosn@her.forthnet.gr>\n"
|
||||
"Language-Team: <nls@tux.hellug.gr>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: KBabel 1.3.1\n"
|
||||
|
||||
#: examples/smp.c:76
|
||||
#, c-format
|
||||
@@ -174,8 +176,8 @@ msgid ""
|
||||
"Run '%s --help' to see a full list of available command line options.\n"
|
||||
msgstr ""
|
||||
"Σφάλμα στην επιλογή %s: %s.\n"
|
||||
"Εκτελέστε '%s --help' για να δείτε την πλήρη λίστα των διαθέσιμων επιλογών "
|
||||
"γραμμής εντολής.\n"
|
||||
"Εκτελέστε '%s --help' για να δείτε μια πλήρη λίστα των διαθέσιμων επιλογών "
|
||||
"της γραμμής εντολών.\n"
|
||||
|
||||
# sysdeps/names/cpu.c:45
|
||||
#: sysdeps/names/cpu.c:44
|
||||
@@ -250,8 +252,7 @@ msgstr "Αριθμός χτύπων ρολογιού που το σύστημα
|
||||
# sysdeps/names/cpu.c:63 sysdeps/names/cpu.c:69
|
||||
#: sysdeps/names/cpu.c:62 sysdeps/names/cpu.c:68
|
||||
msgid "Number of clock ticks the system spent in user mode (nice)"
|
||||
msgstr ""
|
||||
"Αριθμός χτύπων ρολογιού που το σύστημα κατανάλωσε σε τρόπο χρήστη (ευγενή)"
|
||||
msgstr "Αριθμός χτύπων ρολογιού που το σύστημα κατανάλωσε σε τρόπο χρήστη (ευγενή)"
|
||||
|
||||
# sysdeps/names/cpu.c:64 sysdeps/names/cpu.c:70
|
||||
#: sysdeps/names/cpu.c:63 sysdeps/names/cpu.c:69
|
||||
@@ -275,7 +276,7 @@ msgstr "Το πεδίο bit δείχνει ποιά CPU εργάζεται αυ
|
||||
# sysdeps/names/fsusage.c:41 sysdeps/names/fsusage.c:50
|
||||
#: sysdeps/names/fsusage.c:40 sysdeps/names/fsusage.c:50
|
||||
msgid "Total blocks"
|
||||
msgstr "Συνολικά μπλοκ"
|
||||
msgstr "Σύνολο μπλοκ"
|
||||
|
||||
# sysdeps/names/fsusage.c:42
|
||||
#: sysdeps/names/fsusage.c:41
|
||||
@@ -299,9 +300,8 @@ msgstr "Ελεύθεροι κόμβοι αρχείων"
|
||||
|
||||
# sysdeps/names/procsignal.c:42
|
||||
#: sysdeps/names/fsusage.c:45 sysdeps/names/fsusage.c:55
|
||||
#, fuzzy
|
||||
msgid "Block size"
|
||||
msgstr "Φραγμένο"
|
||||
msgstr "Μέγεθος μπλοκ"
|
||||
|
||||
# sysdeps/names/fsusage.c:51
|
||||
#: sysdeps/names/fsusage.c:51
|
||||
@@ -494,9 +494,8 @@ msgid "IPv4 Subnet"
|
||||
msgstr "Επίθεμα"
|
||||
|
||||
#: sysdeps/names/netload.c:49 sysdeps/names/netload.c:70
|
||||
#, fuzzy
|
||||
msgid "IPv4 Address"
|
||||
msgstr "Διεύθυνση"
|
||||
msgstr "Διεύθυνση IPv4"
|
||||
|
||||
#: sysdeps/names/netload.c:50 sysdeps/names/netload.c:71
|
||||
msgid "Packets In"
|
||||
@@ -520,7 +519,7 @@ msgstr "Byte Εξερχόμενα"
|
||||
|
||||
#: sysdeps/names/netload.c:55 sysdeps/names/netload.c:76
|
||||
msgid "Bytes Total"
|
||||
msgstr "Byte Συνολικά"
|
||||
msgstr "Bytes Συνολικά"
|
||||
|
||||
#: sysdeps/names/netload.c:56 sysdeps/names/netload.c:77
|
||||
msgid "Errors In"
|
||||
@@ -539,13 +538,12 @@ msgid "Collisions"
|
||||
msgstr "Συγκρούσεις"
|
||||
|
||||
#: sysdeps/names/netload.c:60 sysdeps/names/netload.c:81
|
||||
#, fuzzy
|
||||
msgid "IPv6 Address"
|
||||
msgstr "Διεύθυνση"
|
||||
msgstr "Διεύθυνση IPv6"
|
||||
|
||||
#: sysdeps/names/netload.c:61 sysdeps/names/netload.c:82
|
||||
msgid "IPv6 Prefix"
|
||||
msgstr ""
|
||||
msgstr "Πρόθεμα IPv6"
|
||||
|
||||
#: sysdeps/names/netload.c:62 sysdeps/names/netload.c:83
|
||||
msgid "IPv6 Scope"
|
||||
@@ -687,8 +685,7 @@ msgstr "Ο αριθμός ήσσονων λαθών που έχει κάνει
|
||||
#. CMaj_Flt
|
||||
#: sysdeps/names/prockernel.c:69
|
||||
msgid "The number of major faults that the process and its children have made."
|
||||
msgstr ""
|
||||
"Ο αριθμός των μείζονων λαθών που έχει κάνει η διεργασία και τα παιδιά της."
|
||||
msgstr "Ο αριθμός των μείζονων λαθών που έχει κάνει η διεργασία και τα παιδιά της."
|
||||
|
||||
# sysdeps/names/prockernel.c:73
|
||||
#. KStk_ESP
|
||||
@@ -786,8 +783,7 @@ msgstr ""
|
||||
|
||||
# sysdeps/names/procmem.c:64
|
||||
#: sysdeps/names/procmem.c:63
|
||||
msgid ""
|
||||
"Current limit in bytes on the rss of the process (usually 2,147,483,647)."
|
||||
msgid "Current limit in bytes on the rss of the process (usually 2,147,483,647)."
|
||||
msgstr "Τρέχον όριο σε bytes στο rss της διεργασίας (συνήθως 2.147.483.547)."
|
||||
|
||||
# sysdeps/names/procsegment.c:50
|
||||
@@ -1559,8 +1555,7 @@ msgstr ""
|
||||
# sysdeps/names/proctime.c:54
|
||||
#: sysdeps/names/uptime.c:48
|
||||
msgid "Time of last system boot in seconds since the epoch"
|
||||
msgstr ""
|
||||
"Χρόνος της τελευταίας εκκίνησης συστήματος σε δευτερόλεπτα από την εποχή"
|
||||
msgstr "Χρόνος της τελευταίας εκκίνησης συστήματος σε δευτερόλεπτα από την εποχή"
|
||||
|
||||
#: sysdeps/osf1/siglist.c:28 sysdeps/sun4/siglist.c:28
|
||||
msgid "Hangup"
|
||||
@@ -1572,7 +1567,7 @@ msgstr "Διακοπή"
|
||||
|
||||
#: sysdeps/osf1/siglist.c:30 sysdeps/sun4/siglist.c:30
|
||||
msgid "Quit"
|
||||
msgstr "Τερματισμός"
|
||||
msgstr "Έξοδος"
|
||||
|
||||
#: sysdeps/osf1/siglist.c:31 sysdeps/sun4/siglist.c:31
|
||||
msgid "Illegal instruction"
|
||||
@@ -1628,15 +1623,15 @@ msgstr "Επείγουσα συνθήκη σε υποδοχέα"
|
||||
|
||||
#: sysdeps/osf1/siglist.c:44 sysdeps/sun4/siglist.c:44
|
||||
msgid "Stop"
|
||||
msgstr "Σταμάτημα"
|
||||
msgstr "Διακοπή"
|
||||
|
||||
#: sysdeps/osf1/siglist.c:45 sysdeps/sun4/siglist.c:45
|
||||
msgid "Keyboard stop"
|
||||
msgstr "Σταμάτημα πληκτρολογίου"
|
||||
msgstr "Διακοπή πληκτρολογίου"
|
||||
|
||||
#: sysdeps/osf1/siglist.c:46 sysdeps/sun4/siglist.c:46
|
||||
msgid "Continue"
|
||||
msgstr "Συνέχιση"
|
||||
msgstr "Συνέχεια"
|
||||
|
||||
#: sysdeps/osf1/siglist.c:47 sysdeps/sun4/siglist.c:47
|
||||
msgid "Child status has changed"
|
||||
@@ -1688,149 +1683,3 @@ msgstr "Σήμα 1 οριζόμενο από το χρήστη"
|
||||
msgid "User defined signal 2"
|
||||
msgstr "Σήμα 2 οριζόμενο από το χρήστη"
|
||||
|
||||
# support/error.c:109
|
||||
#~ msgid "Unknown system error"
|
||||
#~ msgstr "Άγνωστο σφάλμα συστήματος"
|
||||
|
||||
# support/getopt.c:669
|
||||
#~ msgid "%s: option `%s' is ambiguous\n"
|
||||
#~ msgstr "%s: η επιλογή `%s' είναι ασαφής\n"
|
||||
|
||||
# support/getopt.c:693
|
||||
#~ msgid "%s: option `--%s' doesn't allow an argument\n"
|
||||
#~ msgstr "%s: η επιλογή `--%s' δεν επιτρέπει ορίσματα\n"
|
||||
|
||||
# support/getopt.c:698
|
||||
#~ msgid "%s: option `%c%s' doesn't allow an argument\n"
|
||||
#~ msgstr "%s: η επιλογή `%c%s' δεν επιτρέπει ορίσματα\n"
|
||||
|
||||
# support/getopt.c:715 support/getopt.c:888
|
||||
#~ msgid "%s: option `%s' requires an argument\n"
|
||||
#~ msgstr "%s: η επιλογή `%s' απαιτεί ένα όρισμα\n"
|
||||
|
||||
# support/getopt.c:744
|
||||
#~ msgid "%s: unrecognized option `--%s'\n"
|
||||
#~ msgstr "%s: μη αναγνωρίσιμη επιλογή `--%s'\n"
|
||||
|
||||
# support/getopt.c:748
|
||||
#~ msgid "%s: unrecognized option `%c%s'\n"
|
||||
#~ msgstr "%s: μη αναγνωρίσιμη επιλογή `%c%s'\n"
|
||||
|
||||
# support/getopt.c:774
|
||||
#~ msgid "%s: illegal option -- %c\n"
|
||||
#~ msgstr "%s: ακατάλληλη επιλογή -- %c\n"
|
||||
|
||||
# support/getopt.c:777
|
||||
#~ msgid "%s: invalid option -- %c\n"
|
||||
#~ msgstr "%s: μη έγκυρη επιλογή -- %c\n"
|
||||
|
||||
# support/getopt.c:807 support/getopt.c:937
|
||||
#~ msgid "%s: option requires an argument -- %c\n"
|
||||
#~ msgstr "%s: η επιλογή απαιτεί όρισμα -- %c\n"
|
||||
|
||||
# support/getopt.c:854
|
||||
#~ msgid "%s: option `-W %s' is ambiguous\n"
|
||||
#~ msgstr "%s: η επιλογή `-W %s' είναι αόριστη\n"
|
||||
|
||||
# support/getopt.c:872
|
||||
#~ msgid "%s: option `-W %s' doesn't allow an argument\n"
|
||||
#~ msgstr "%s: η επιλογή `-W %s' δεν επιτρέπει ορίσματα\n"
|
||||
|
||||
#~ msgid "Show this help message"
|
||||
#~ msgstr "Εμφάνιση αυτού του μηνύματος βοήθειας"
|
||||
|
||||
#~ msgid "Display brief usage message"
|
||||
#~ msgstr "Εμφάνιση σύντομου μηνύματος βοήθειας"
|
||||
|
||||
# sysdeps/names/procsegment.c:52
|
||||
#~ msgid "Start_Data"
|
||||
#~ msgstr "Αρχή_Δεδομένων"
|
||||
|
||||
# sysdeps/names/procsegment.c:52
|
||||
#~ msgid "End_Data"
|
||||
#~ msgstr "Τέλος_Δεδομένων"
|
||||
|
||||
# sysdeps/names/procsegment.c:52
|
||||
#, fuzzy
|
||||
#~ msgid "Start_Brk"
|
||||
#~ msgstr "Αρχή_Brk"
|
||||
|
||||
# sysdeps/names/procsegment.c:52
|
||||
#, fuzzy
|
||||
#~ msgid "Brk"
|
||||
#~ msgstr "Brk"
|
||||
|
||||
# sysdeps/names/procsegment.c:53
|
||||
#, fuzzy
|
||||
#~ msgid "Start_MMap"
|
||||
#~ msgstr "Αρχή_MMap"
|
||||
|
||||
# sysdeps/names/procsegment.c:53 sysdeps/names/procsegment.c:72
|
||||
#~ msgid "Arg_Start"
|
||||
#~ msgstr "Αρχή_Ορισμάτων"
|
||||
|
||||
# sysdeps/names/procsegment.c:54 sysdeps/names/procsegment.c:73
|
||||
#, fuzzy
|
||||
#~ msgid "Arg_End"
|
||||
#~ msgstr "Τέλος_Ορισμάτων"
|
||||
|
||||
# sysdeps/names/procsegment.c:54 sysdeps/names/procsegment.c:74
|
||||
#, fuzzy
|
||||
#~ msgid "Env_Start"
|
||||
#~ msgstr "Αρχή_Env"
|
||||
|
||||
# sysdeps/names/procsegment.c:54 sysdeps/names/procsegment.c:75
|
||||
#, fuzzy
|
||||
#~ msgid "Env_End"
|
||||
#~ msgstr "Τέλος_Env"
|
||||
|
||||
# sysdeps/names/procsegment.c:66
|
||||
#~ msgid "Address of beginning of data segment"
|
||||
#~ msgstr "Διεύθυνση αρχής του τμήματος δεδομένων"
|
||||
|
||||
# sysdeps/names/procsegment.c:67
|
||||
#~ msgid "Address of end of data segment"
|
||||
#~ msgstr "Διεύθυνση τέλους του τμήματος δεδομένων"
|
||||
|
||||
# sysdeps/names/procsegment.c:68
|
||||
#, fuzzy
|
||||
#~ msgid "Brk_Start"
|
||||
#~ msgstr "Brk_Start"
|
||||
|
||||
# sysdeps/names/procsegment.c:69
|
||||
#, fuzzy
|
||||
#~ msgid "Brk_End"
|
||||
#~ msgstr "Brk_End"
|
||||
|
||||
# sysdeps/names/procsegment.c:71
|
||||
#, fuzzy
|
||||
#~ msgid "Start of mmap()ed areas"
|
||||
#~ msgstr "Αρχή περιοχών mmap"
|
||||
|
||||
# sysdeps/names/procstate.c:45
|
||||
#~ msgid "RUID"
|
||||
#~ msgstr "RUID"
|
||||
|
||||
# sysdeps/names/procstate.c:46
|
||||
#~ msgid "RGID"
|
||||
#~ msgstr "RGID"
|
||||
|
||||
# sysdeps/names/procstate.c:54
|
||||
#~ msgid "effective UID of process"
|
||||
#~ msgstr "ουσιαστικό UID διεργασίας"
|
||||
|
||||
# sysdeps/names/procstate.c:55
|
||||
#~ msgid "effective GID of process"
|
||||
#~ msgstr "ουσιαστικό GID διεργασίας"
|
||||
|
||||
# sysdeps/names/procstate.c:58
|
||||
#~ msgid "has_cpu"
|
||||
#~ msgstr "έχει_cpu"
|
||||
|
||||
# sysdeps/names/procstate.c:59
|
||||
#~ msgid "processor"
|
||||
#~ msgstr "επεξεργαστής"
|
||||
|
||||
# sysdeps/names/procstate.c:60
|
||||
#~ msgid "last_processor"
|
||||
#~ msgstr "τελευταίος_επεξεργαστής"
|
||||
|
||||
25
po/es.po
25
po/es.po
@@ -1,3 +1,4 @@
|
||||
# traducción de es.po al Spanish
|
||||
# translation of libgtop.libgtop-GNOME-2-0-port.po to Spanish
|
||||
# Translation into spanish of glibtop
|
||||
# FIXME: the strings still left empty are the ones I've no idea how
|
||||
@@ -7,21 +8,22 @@
|
||||
# Pablo Saratxaga <srtxg@chanae.alphanet.ch>, 2002.
|
||||
# Juan Manuel García Molina <juanma_gm@wanadoo.es>, 2002.
|
||||
# Francisco Javier F. Serrador <serrador@arrakis.es>, 2003.
|
||||
# Francisco Javier F. Serrador <serrador@cvs.gnome.org>, 2004.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: libgtop.libgtop-GNOME-2-0-port\n"
|
||||
"Project-Id-Version: es\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2004-08-03 14:09+0200\n"
|
||||
"PO-Revision-Date: 2004-07-31 11:59+0200\n"
|
||||
"Last-Translator: Francisco Javier F. Serrador <serrador@arrakis.es>\n"
|
||||
"POT-Creation-Date: 2004-08-28 16:45+0200\n"
|
||||
"PO-Revision-Date: 2004-08-28 16:48+0200\n"
|
||||
"Last-Translator: Francisco Javier F. Serrador <serrador@cvs.gnome.org>\n"
|
||||
"Language-Team: Spanish <traductores@es.gnome.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"First-Translator: Pablo Saratxaga <srtxg@chanae.alphanet.ch>\n"
|
||||
"X-Generator: KBabel 1.0.2\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n == 1)\n"
|
||||
"X-Generator: KBabel 1.3.1\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: examples/smp.c:76
|
||||
#, c-format
|
||||
@@ -245,7 +247,7 @@ msgstr "Frecuencia del tick (frecuencia de base es 100)"
|
||||
|
||||
#: sysdeps/names/cpu.c:71
|
||||
msgid "Bit field indicating which CPU is currently running"
|
||||
msgstr "Campo de bits indicando qué CPU está ejecutándoe ahora"
|
||||
msgstr "Campo de bits indicando qué CPU está ejecutándose ahora"
|
||||
|
||||
#: sysdeps/names/fsusage.c:40 sysdeps/names/fsusage.c:50
|
||||
msgid "Total blocks"
|
||||
@@ -664,8 +666,7 @@ msgstr "Cantidad de páginas de memoria virtual"
|
||||
|
||||
#: sysdeps/names/procmem.c:56
|
||||
msgid "Number of resident set (non-swapped) pages"
|
||||
msgstr ""
|
||||
"Cantidad de páginas de conjuntos residentes (que no están en intercambio)"
|
||||
msgstr "Cantidad de páginas de conjuntos residentes (que no están en intercambio)"
|
||||
|
||||
#: sysdeps/names/procmem.c:57
|
||||
msgid "Number of pages of shared (mmap'd) memory"
|
||||
@@ -690,8 +691,7 @@ msgstr ""
|
||||
# otherwise it will default to es.po which uses the US format for numbers.
|
||||
#
|
||||
#: sysdeps/names/procmem.c:63
|
||||
msgid ""
|
||||
"Current limit in bytes on the rss of the process (usually 2,147,483,647)."
|
||||
msgid "Current limit in bytes on the rss of the process (usually 2,147,483,647)."
|
||||
msgstr ""
|
||||
"Límite actual en bytes de conjunto compartido (RSS) del proceso "
|
||||
"(habitualmente 2.147.483.647)."
|
||||
@@ -866,7 +866,7 @@ msgstr "Último procesador"
|
||||
|
||||
#: sysdeps/names/proctime.c:45
|
||||
msgid "Start_Time"
|
||||
msgstr "Tiempo_inicio"
|
||||
msgstr "T_iempo inicio"
|
||||
|
||||
#: sysdeps/names/proctime.c:45
|
||||
msgid "RTime"
|
||||
@@ -1479,3 +1479,4 @@ msgstr "Señal 2 definida por el usuario"
|
||||
|
||||
#~ msgid "Display brief usage message"
|
||||
#~ msgstr "Muestra el mensaje de uso breve"
|
||||
|
||||
|
||||
26
po/eu.po
26
po/eu.po
@@ -8,14 +8,14 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: eu\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2004-08-03 14:09+0200\n"
|
||||
"PO-Revision-Date: 2004-04-16 12:31+0200\n"
|
||||
"POT-Creation-Date: 2004-08-26 23:18+0200\n"
|
||||
"PO-Revision-Date: 2004-08-26 23:20+0200\n"
|
||||
"Last-Translator: Iñaki Larrañaga Murgoitio <dooteo@euskalgnu.org>\n"
|
||||
"Language-Team: Basque <itzulpena@euskalgnu.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"X-Generator: KBabel 1.0.2\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n == 1)\n"
|
||||
|
||||
@@ -264,9 +264,8 @@ msgid "Free file nodes"
|
||||
msgstr "Fitxategi-nodo libreak"
|
||||
|
||||
#: sysdeps/names/fsusage.c:45 sysdeps/names/fsusage.c:55
|
||||
#, fuzzy
|
||||
msgid "Block size"
|
||||
msgstr "Blokeatuta"
|
||||
msgstr "Bloke-tamaina"
|
||||
|
||||
#: sysdeps/names/fsusage.c:51
|
||||
msgid "Free blocks available to the superuser"
|
||||
@@ -421,14 +420,12 @@ msgid "MTU"
|
||||
msgstr "MTU"
|
||||
|
||||
#: sysdeps/names/netload.c:48 sysdeps/names/netload.c:69
|
||||
#, fuzzy
|
||||
msgid "IPv4 Subnet"
|
||||
msgstr "Azpisarea"
|
||||
msgstr "IPv4 azpisarea"
|
||||
|
||||
#: sysdeps/names/netload.c:49 sysdeps/names/netload.c:70
|
||||
#, fuzzy
|
||||
msgid "IPv4 Address"
|
||||
msgstr "Helbidea"
|
||||
msgstr "IPv4 helbidea"
|
||||
|
||||
#: sysdeps/names/netload.c:50 sysdeps/names/netload.c:71
|
||||
msgid "Packets In"
|
||||
@@ -471,17 +468,16 @@ msgid "Collisions"
|
||||
msgstr "Talkak"
|
||||
|
||||
#: sysdeps/names/netload.c:60 sysdeps/names/netload.c:81
|
||||
#, fuzzy
|
||||
msgid "IPv6 Address"
|
||||
msgstr "Helbidea"
|
||||
msgstr "IPv6 helbidea"
|
||||
|
||||
#: sysdeps/names/netload.c:61 sysdeps/names/netload.c:82
|
||||
msgid "IPv6 Prefix"
|
||||
msgstr ""
|
||||
msgstr "Ipv6 aurrizkiak"
|
||||
|
||||
#: sysdeps/names/netload.c:62 sysdeps/names/netload.c:83
|
||||
msgid "IPv6 Scope"
|
||||
msgstr ""
|
||||
msgstr "IPv6 esparrua"
|
||||
|
||||
#: sysdeps/names/netload.c:68
|
||||
msgid "Maximum Transfer Unit"
|
||||
@@ -682,8 +678,7 @@ msgstr ""
|
||||
"swap gailuan dauden orrialdeak."
|
||||
|
||||
#: sysdeps/names/procmem.c:63
|
||||
msgid ""
|
||||
"Current limit in bytes on the rss of the process (usually 2,147,483,647)."
|
||||
msgid "Current limit in bytes on the rss of the process (usually 2,147,483,647)."
|
||||
msgstr "Prozesuaren rss-en uneko limitea bytetan (normalean 2.147.483.647)."
|
||||
|
||||
#: sysdeps/names/procsegment.c:43
|
||||
@@ -1463,3 +1458,4 @@ msgstr "Erabiltzaileak zehaztutako 2. seinalea"
|
||||
|
||||
#~ msgid "Display brief usage message"
|
||||
#~ msgstr "Bistaratu erabilera-mezu laburra"
|
||||
|
||||
|
||||
24
po/fi.po
24
po/fi.po
@@ -9,10 +9,10 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: libgtop 1.90.1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2004-08-03 14:09+0200\n"
|
||||
"PO-Revision-Date: 2004-02-04 23:01+0200\n"
|
||||
"POT-Creation-Date: 2004-08-18 23:07+0300\n"
|
||||
"PO-Revision-Date: 2004-08-19 02:26+0300\n"
|
||||
"Last-Translator: Pauli Virtanen <pauli.virtanen@hut.fi>\n"
|
||||
"Language-Team: Finnish <fi@li.org>\n"
|
||||
"Language-Team: Finnish <gnome-fi-laatu@lists.sourceforge.net>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
@@ -262,9 +262,8 @@ msgid "Free file nodes"
|
||||
msgstr "Vapaita tiedostosolmuja"
|
||||
|
||||
#: sysdeps/names/fsusage.c:45 sysdeps/names/fsusage.c:55
|
||||
#, fuzzy
|
||||
msgid "Block size"
|
||||
msgstr "Estetty"
|
||||
msgstr "Lohkokoko"
|
||||
|
||||
#: sysdeps/names/fsusage.c:51
|
||||
msgid "Free blocks available to the superuser"
|
||||
@@ -419,14 +418,12 @@ msgid "MTU"
|
||||
msgstr "MTU"
|
||||
|
||||
#: sysdeps/names/netload.c:48 sysdeps/names/netload.c:69
|
||||
#, fuzzy
|
||||
msgid "IPv4 Subnet"
|
||||
msgstr "Aliverkko"
|
||||
msgstr "IPv4-aliverkko"
|
||||
|
||||
#: sysdeps/names/netload.c:49 sysdeps/names/netload.c:70
|
||||
#, fuzzy
|
||||
msgid "IPv4 Address"
|
||||
msgstr "Osoite"
|
||||
msgstr "IPv4-osoite"
|
||||
|
||||
#: sysdeps/names/netload.c:50 sysdeps/names/netload.c:71
|
||||
msgid "Packets In"
|
||||
@@ -469,17 +466,16 @@ msgid "Collisions"
|
||||
msgstr "Törmäykset"
|
||||
|
||||
#: sysdeps/names/netload.c:60 sysdeps/names/netload.c:81
|
||||
#, fuzzy
|
||||
msgid "IPv6 Address"
|
||||
msgstr "Osoite"
|
||||
msgstr "IPv6-osoite"
|
||||
|
||||
#: sysdeps/names/netload.c:61 sysdeps/names/netload.c:82
|
||||
msgid "IPv6 Prefix"
|
||||
msgstr ""
|
||||
msgstr "IPv6-etuliite"
|
||||
|
||||
#: sysdeps/names/netload.c:62 sysdeps/names/netload.c:83
|
||||
msgid "IPv6 Scope"
|
||||
msgstr ""
|
||||
msgstr "IPv6-näkyvyysalue"
|
||||
|
||||
#: sysdeps/names/netload.c:68
|
||||
msgid "Maximum Transfer Unit"
|
||||
@@ -820,7 +816,7 @@ msgstr "LPros"
|
||||
|
||||
#: sysdeps/names/procstate.c:49
|
||||
msgid "Basename of executable file in call to exec()"
|
||||
msgstr "Funktiolle exec() annettu ohjelmatiedoston nimi ilman hakemistopolkua."
|
||||
msgstr "Funktiolle exec() annettu ohjelmatiedoston nimi ilman kansiopolkua."
|
||||
|
||||
#: sysdeps/names/procstate.c:50
|
||||
msgid "Single-Char code for process state (S=sleeping)"
|
||||
|
||||
102
po/gu.po
102
po/gu.po
@@ -1,24 +1,27 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR Free Software Foundation, Inc.
|
||||
# MagNet <magnet@magnet-i.com>, 2004.
|
||||
# translation of libgtop.HEAD.gu.po to Gujarati
|
||||
# Copyright (C) 2004 Free Software Foundation, Inc.
|
||||
# MagNet <magnet@magnet-i.com>, 2004.
|
||||
# Ankit Patel <ankit@redhat.com>, 2004.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: libgtop-2.6\n"
|
||||
"Project-Id-Version: libgtop.HEAD.gu\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2004-08-03 14:09+0200\n"
|
||||
"PO-Revision-Date: 2004-02-29 20:47+0530\n"
|
||||
"Last-Translator: Nirav, Ankit, Ankur, Atit, Bhavin, Kartik, Khushbu, Sweta. "
|
||||
"<magnet@magnet-i.com>\n"
|
||||
"Language-Team: MagNet <magnet@magnet-i.com>\n"
|
||||
"POT-Creation-Date: 2004-08-18 12:10+0200\n"
|
||||
"PO-Revision-Date: 2004-08-20 15:47+0530\n"
|
||||
"Last-Translator: Ankit Patel <ankit@redhat.com>\n"
|
||||
"Language-Team: Gujarati\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"<magnet@magnet-i.com>\n"
|
||||
"Plural-Forms: Plural-Forms: nplurals=2; plural=(n!=1);\n\n"
|
||||
"\n"
|
||||
"X-Generator: KBabel 1.3.1\n"
|
||||
|
||||
#: examples/smp.c:76
|
||||
#, c-format
|
||||
msgid "Ticks (%ld per second):"
|
||||
msgstr "ટકોર (%ld પ્રતિ સેકન્ડ)"
|
||||
msgstr "ટકોર (%ld પ્રતિ સેકન્ડ):"
|
||||
|
||||
#: examples/smp.c:79
|
||||
msgid "Total"
|
||||
@@ -259,9 +262,8 @@ msgid "Free file nodes"
|
||||
msgstr "ખાલી ફાઈલ નોડ"
|
||||
|
||||
#: sysdeps/names/fsusage.c:45 sysdeps/names/fsusage.c:55
|
||||
#, fuzzy
|
||||
msgid "Block size"
|
||||
msgstr "અટકેલુ"
|
||||
msgstr "બ્લોક માપ"
|
||||
|
||||
#: sysdeps/names/fsusage.c:51
|
||||
msgid "Free blocks available to the superuser"
|
||||
@@ -414,14 +416,12 @@ msgid "MTU"
|
||||
msgstr "MTU"
|
||||
|
||||
#: sysdeps/names/netload.c:48 sysdeps/names/netload.c:69
|
||||
#, fuzzy
|
||||
msgid "IPv4 Subnet"
|
||||
msgstr "સબનેટ"
|
||||
msgstr "IPv4 સબનેટ"
|
||||
|
||||
#: sysdeps/names/netload.c:49 sysdeps/names/netload.c:70
|
||||
#, fuzzy
|
||||
msgid "IPv4 Address"
|
||||
msgstr "સરનામુ"
|
||||
msgstr "IPv4 સરનામુ"
|
||||
|
||||
#: sysdeps/names/netload.c:50 sysdeps/names/netload.c:71
|
||||
msgid "Packets In"
|
||||
@@ -464,17 +464,16 @@ msgid "Collisions"
|
||||
msgstr "અથડામણો"
|
||||
|
||||
#: sysdeps/names/netload.c:60 sysdeps/names/netload.c:81
|
||||
#, fuzzy
|
||||
msgid "IPv6 Address"
|
||||
msgstr "સરનામુ"
|
||||
msgstr "IPv6 સરનામુ"
|
||||
|
||||
#: sysdeps/names/netload.c:61 sysdeps/names/netload.c:82
|
||||
msgid "IPv6 Prefix"
|
||||
msgstr ""
|
||||
msgstr "IPv6 પૂર્વગ"
|
||||
|
||||
#: sysdeps/names/netload.c:62 sysdeps/names/netload.c:83
|
||||
msgid "IPv6 Scope"
|
||||
msgstr ""
|
||||
msgstr "IPv6 હદ"
|
||||
|
||||
#: sysdeps/names/netload.c:68
|
||||
msgid "Maximum Transfer Unit"
|
||||
@@ -506,7 +505,7 @@ msgstr "માપ"
|
||||
|
||||
#: sysdeps/names/procargs.c:44
|
||||
msgid "Length in bytes of the returned string."
|
||||
msgstr "પાછી મળેલી શબ્દમાળાની બાઇટોમાં લંબાઇ"
|
||||
msgstr "પાછી મળેલી શબ્દમાળાની બાઇટોમાં લંબાઇ."
|
||||
|
||||
#: sysdeps/names/prockernel.c:43
|
||||
msgid "K_Flags"
|
||||
@@ -566,16 +565,14 @@ msgstr ""
|
||||
msgid ""
|
||||
"The number of minor faults the process has made, those which have not "
|
||||
"required loading a memory page from disk."
|
||||
msgstr ""
|
||||
"પ્રક્રિયાએ કરેલ સૂક્ષ્મ ખામીઓ કે જેના માટે ડિસ્કમાંથી મૅમરી પાનાં લાવવાની જરુરિયાત નથી."
|
||||
msgstr "પ્રક્રિયાએ કરેલ સૂક્ષ્મ ખામીઓ કે જેના માટે ડિસ્કમાંથી મૅમરી પાનાં લાવવાની જરુરિયાત નથી."
|
||||
|
||||
#. Maj_Flt
|
||||
#: sysdeps/names/prockernel.c:63
|
||||
msgid ""
|
||||
"The number of major faults the process has made, those which have required "
|
||||
"loading a memory page from disk."
|
||||
msgstr ""
|
||||
"પ્રક્રિયાએ કરેલ મોટી ખામીઓ કે જેના માટે ડિસ્કમાંથી મૅમરી પાના લાવવાની જરુરિયાત છે."
|
||||
msgstr "પ્રક્રિયાએ કરેલ મોટી ખામીઓ કે જેના માટે ડિસ્કમાંથી મૅમરી પાના લાવવાની જરુરિયાત છે."
|
||||
|
||||
#. CMin_Flt
|
||||
#: sysdeps/names/prockernel.c:66
|
||||
@@ -592,8 +589,7 @@ msgstr "પ્રક્રિયાઓ અને તેની બાળ પ્
|
||||
msgid ""
|
||||
"The current value of esp (32-bit stack pointer), as found in the kernel "
|
||||
"stack page for the process."
|
||||
msgstr ""
|
||||
"esp (32-બિટ સ્ટેક દર્શક),ની વર્તમાન કિંમત કે જે પ્રક્રિયા માટે કર્નલ સ્ટેક પાનામાંથી શોધાઇ."
|
||||
msgstr "esp (32-બિટ સ્ટેક દર્શક),ની વર્તમાન કિંમત કે જે પ્રક્રિયા માટે કર્નલ સ્ટેક પાનામાંથી શોધાઇ."
|
||||
|
||||
#. KStk_EIP
|
||||
#: sysdeps/names/prockernel.c:75
|
||||
@@ -615,7 +611,7 @@ msgstr ""
|
||||
#. WChan
|
||||
#: sysdeps/names/prockernel.c:82
|
||||
msgid "This is the textual name of the `nwchan' field."
|
||||
msgstr "આ `nwchan' ક્ષેત્રનુ લેખિત નામ છે"
|
||||
msgstr "આ `nwchan' ક્ષેત્રનુ લેખિત નામ છે."
|
||||
|
||||
#: sysdeps/names/procmem.c:48
|
||||
msgid "Virtual"
|
||||
@@ -665,8 +661,7 @@ msgstr ""
|
||||
"નથી કરતુ કે જે માંગણી પ્રમાણે લાવવામાં આવ્યા ન હોય અને જેની અદલાબદલી થયેલી છે."
|
||||
|
||||
#: sysdeps/names/procmem.c:63
|
||||
msgid ""
|
||||
"Current limit in bytes on the rss of the process (usually 2,147,483,647)."
|
||||
msgid "Current limit in bytes on the rss of the process (usually 2,147,483,647)."
|
||||
msgstr "પ્રક્રિયાની rss ઉપરની વર્તમાન સીમા બાઈટોમાં (સામાન્ય રીતે ૨,૧૪૭,૪૮૩,૬૪૭)."
|
||||
|
||||
#: sysdeps/names/procsegment.c:43
|
||||
@@ -769,7 +764,7 @@ msgstr "પકડાયેલા સંકેતોનુ છૂપાવવુ"
|
||||
msgid "Cmd"
|
||||
msgstr "Cmd"
|
||||
|
||||
# gnome-session/gsm-client-list.c:111
|
||||
# gnome-session/gsm-client-list.c:111
|
||||
#: sysdeps/names/procstate.c:43
|
||||
msgid "State"
|
||||
msgstr "સ્થિતિ"
|
||||
@@ -914,7 +909,7 @@ msgstr "પ્રક્રિયાના બીજા સમય સમાપ્
|
||||
msgid ""
|
||||
"The time (in jiffies) before the next SIGALRM is sent to the process due to "
|
||||
"an interval timer."
|
||||
msgstr "સમાંયતર ઘડિયાળના લીધે બીજા SIGALRM પહેલા પ્રક્રિયાને પહોંચાડેલો સમય (જીફીમાં)"
|
||||
msgstr "સમાંયતર ઘડિયાળના લીધે બીજા SIGALRM પહેલા પ્રક્રિયાને પહોંચાડેલો સમય (જીફીમાં)."
|
||||
|
||||
#: sysdeps/names/proctime.c:61
|
||||
msgid "Tick frequency"
|
||||
@@ -1404,44 +1399,3 @@ msgstr "વપરાશકર્તા દ્વારા વ્યાખ્ય
|
||||
msgid "User defined signal 2"
|
||||
msgstr "વપરાશકર્તા દ્વારા વ્યાખ્યાયિત સંકેત ૨"
|
||||
|
||||
#~ msgid "Unknown system error"
|
||||
#~ msgstr "અજાણી સિસ્ટમ ભૂલ"
|
||||
|
||||
#~ msgid "%s: option `%s' is ambiguous\n"
|
||||
#~ msgstr "%s: વિકલ્પ `%s' ખામીયુક્ત છે\n"
|
||||
|
||||
#~ msgid "%s: option `--%s' doesn't allow an argument\n"
|
||||
#~ msgstr "%s: વિકલ્પ `--%s' દલીલને પરવાનગી અાપતુ નથી\n"
|
||||
|
||||
#~ msgid "%s: option `%c%s' doesn't allow an argument\n"
|
||||
#~ msgstr "%s: વિકલ્પ `%c%s' દલીલને પરવાનગી અાપતુ નથી\n"
|
||||
|
||||
#~ msgid "%s: option `%s' requires an argument\n"
|
||||
#~ msgstr "%s: વિકલ્પ `%s' ને દલીલ જરુરી છે\n"
|
||||
|
||||
#~ msgid "%s: unrecognized option `--%s'\n"
|
||||
#~ msgstr "%s: અજાણ્યો વિકલ્પ --%s'\n"
|
||||
|
||||
#~ msgid "%s: unrecognized option `%c%s'\n"
|
||||
#~ msgstr "%s: અજાણ્યો વિકલ્પ `%c%s'\n"
|
||||
|
||||
#~ msgid "%s: illegal option -- %c\n"
|
||||
#~ msgstr "%s: અમાન્ય વિકલ્પ -- %c\n"
|
||||
|
||||
#~ msgid "%s: invalid option -- %c\n"
|
||||
#~ msgstr "%s: અયોગ્ય વિકલ્પ -- %c\n"
|
||||
|
||||
#~ msgid "%s: option requires an argument -- %c\n"
|
||||
#~ msgstr "%s: વિકલ્પ માટે દલીલ જરુરી છે -- %c\n"
|
||||
|
||||
#~ msgid "%s: option `-W %s' is ambiguous\n"
|
||||
#~ msgstr "%s: વિકલ્પ `-W %s' ખામીયુક્ત છે\n"
|
||||
|
||||
#~ msgid "%s: option `-W %s' doesn't allow an argument\n"
|
||||
#~ msgstr "%s: વિકલ્પ `-W %s' દલીલને પરવાનગી અાપતુ નથી\n"
|
||||
|
||||
#~ msgid "Show this help message"
|
||||
#~ msgstr "અા મદદ સંદેશો બતાવો"
|
||||
|
||||
#~ msgid "Display brief usage message"
|
||||
#~ msgstr "ઉપયોગી સંદેશાઓ સંક્ષિપ્તમાં દર્શાવો"
|
||||
|
||||
20
po/pl.po
20
po/pl.po
@@ -1,4 +1,4 @@
|
||||
# Copyright (C) 2001-2002 Free Software Foundation, Inc.
|
||||
# Copyright (C) 2001-2004 Free Software Foundation, Inc.
|
||||
# -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
|
||||
# Aktualną wersję tego pliku możesz odnaleźć w repozytorium cvs.gnome.pl
|
||||
# (:pserver:anonymous@cvs.gnome.pl:/gnomepl, puste hasło)
|
||||
@@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: libgtop\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2004-08-03 14:09+0200\n"
|
||||
"POT-Creation-Date: 2004-08-10 19:46+0200\n"
|
||||
"PO-Revision-Date: 2002-07-05 19:13+0200\n"
|
||||
"Last-Translator: GNOME PL Team <translators@gnome.pl>\n"
|
||||
"Language-Team: Polish <translation-team-pl@lists.sourceforge.net>\n"
|
||||
@@ -267,9 +267,8 @@ msgid "Free file nodes"
|
||||
msgstr "Wolnych i-węzłów"
|
||||
|
||||
#: sysdeps/names/fsusage.c:45 sysdeps/names/fsusage.c:55
|
||||
#, fuzzy
|
||||
msgid "Block size"
|
||||
msgstr "Zablokowany"
|
||||
msgstr "Rozmiar bloku"
|
||||
|
||||
#: sysdeps/names/fsusage.c:51
|
||||
msgid "Free blocks available to the superuser"
|
||||
@@ -423,14 +422,12 @@ msgid "MTU"
|
||||
msgstr "MTU"
|
||||
|
||||
#: sysdeps/names/netload.c:48 sysdeps/names/netload.c:69
|
||||
#, fuzzy
|
||||
msgid "IPv4 Subnet"
|
||||
msgstr "Podsieć"
|
||||
msgstr "Podsieć IPv4"
|
||||
|
||||
#: sysdeps/names/netload.c:49 sysdeps/names/netload.c:70
|
||||
#, fuzzy
|
||||
msgid "IPv4 Address"
|
||||
msgstr "Adres"
|
||||
msgstr "Adres IPv4"
|
||||
|
||||
#: sysdeps/names/netload.c:50 sysdeps/names/netload.c:71
|
||||
msgid "Packets In"
|
||||
@@ -473,17 +470,16 @@ msgid "Collisions"
|
||||
msgstr "Kolizje"
|
||||
|
||||
#: sysdeps/names/netload.c:60 sysdeps/names/netload.c:81
|
||||
#, fuzzy
|
||||
msgid "IPv6 Address"
|
||||
msgstr "Adres"
|
||||
msgstr "Adres IPv6"
|
||||
|
||||
#: sysdeps/names/netload.c:61 sysdeps/names/netload.c:82
|
||||
msgid "IPv6 Prefix"
|
||||
msgstr ""
|
||||
msgstr "Przedrostek IPv6"
|
||||
|
||||
#: sysdeps/names/netload.c:62 sysdeps/names/netload.c:83
|
||||
msgid "IPv6 Scope"
|
||||
msgstr ""
|
||||
msgstr "Zakres IPv6"
|
||||
|
||||
#: sysdeps/names/netload.c:68
|
||||
msgid "Maximum Transfer Unit"
|
||||
|
||||
6
po/pt.po
6
po/pt.po
@@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 2.8\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2004-08-03 14:09+0200\n"
|
||||
"PO-Revision-Date: 2004-07-26 22:35+0000\n"
|
||||
"POT-Creation-Date: 2004-08-15 00:34+0100\n"
|
||||
"PO-Revision-Date: 2004-08-15 00:35+0000\n"
|
||||
"Last-Translator: Duarte Loreto <happyguy_pt@hotmail.com>\n"
|
||||
"Language-Team: Portuguese <gnome_pt@yahoogroups.com>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -1118,7 +1118,7 @@ msgstr "Valor máx de semáforo"
|
||||
|
||||
#: sysdeps/names/sem_limits.c:52 sysdeps/names/sem_limits.c:66
|
||||
msgid "Adjust on exit max value"
|
||||
msgstr "Ajustar valor máx à saida"
|
||||
msgstr "Ajustar valor máx à saída"
|
||||
|
||||
#: sysdeps/names/shm_limits.c:40 sysdeps/names/shm_limits.c:49
|
||||
msgid "Max segment size"
|
||||
|
||||
27
po/ru.po
27
po/ru.po
@@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: libgtop\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2004-08-03 14:09+0200\n"
|
||||
"PO-Revision-Date: 2004-03-11 12:29+0300\n"
|
||||
"POT-Creation-Date: 2004-08-11 10:48+0400\n"
|
||||
"PO-Revision-Date: 2004-08-11 10:50+0400\n"
|
||||
"Last-Translator: Dmitry G. Mastrukov <dmitry@taurussoft.org>\n"
|
||||
"Language-Team: Russian <gnome-cyr@gnome.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -266,9 +266,8 @@ msgid "Free file nodes"
|
||||
msgstr "Свободных inodes"
|
||||
|
||||
#: sysdeps/names/fsusage.c:45 sysdeps/names/fsusage.c:55
|
||||
#, fuzzy
|
||||
msgid "Block size"
|
||||
msgstr "Заблокировано"
|
||||
msgstr "Размер блока"
|
||||
|
||||
#: sysdeps/names/fsusage.c:51
|
||||
msgid "Free blocks available to the superuser"
|
||||
@@ -421,14 +420,12 @@ msgid "MTU"
|
||||
msgstr "MTU"
|
||||
|
||||
#: sysdeps/names/netload.c:48 sysdeps/names/netload.c:69
|
||||
#, fuzzy
|
||||
msgid "IPv4 Subnet"
|
||||
msgstr "Подсеть"
|
||||
msgstr "Подсеть IPv4"
|
||||
|
||||
#: sysdeps/names/netload.c:49 sysdeps/names/netload.c:70
|
||||
#, fuzzy
|
||||
msgid "IPv4 Address"
|
||||
msgstr "Адрес"
|
||||
msgstr "Адрес IPv4"
|
||||
|
||||
#: sysdeps/names/netload.c:50 sysdeps/names/netload.c:71
|
||||
msgid "Packets In"
|
||||
@@ -471,17 +468,16 @@ msgid "Collisions"
|
||||
msgstr "Коллизии"
|
||||
|
||||
#: sysdeps/names/netload.c:60 sysdeps/names/netload.c:81
|
||||
#, fuzzy
|
||||
msgid "IPv6 Address"
|
||||
msgstr "Адрес"
|
||||
msgstr "Адрес IPv6"
|
||||
|
||||
#: sysdeps/names/netload.c:61 sysdeps/names/netload.c:82
|
||||
msgid "IPv6 Prefix"
|
||||
msgstr ""
|
||||
msgstr "Префикс IPv6"
|
||||
|
||||
#: sysdeps/names/netload.c:62 sysdeps/names/netload.c:83
|
||||
msgid "IPv6 Scope"
|
||||
msgstr ""
|
||||
msgstr "Область IPv6"
|
||||
|
||||
#: sysdeps/names/netload.c:68
|
||||
msgid "Maximum Transfer Unit"
|
||||
@@ -551,7 +547,6 @@ msgstr "NWChan"
|
||||
msgid "WChan"
|
||||
msgstr "WChan"
|
||||
|
||||
#. K_Flags
|
||||
#: sysdeps/names/prockernel.c:51
|
||||
msgid ""
|
||||
"Kernel flags of the process.\n"
|
||||
@@ -575,7 +570,6 @@ msgstr ""
|
||||
"Бит math должен быть десятичным числом 4, и отслеживаемый бит - десятичное "
|
||||
"число 10."
|
||||
|
||||
#. Min_Flt
|
||||
#: sysdeps/names/prockernel.c:60
|
||||
msgid ""
|
||||
"The number of minor faults the process has made, those which have not "
|
||||
@@ -584,7 +578,6 @@ msgstr ""
|
||||
"Число мелких промахов, сделанных процессом, которые не требуют загрузки "
|
||||
"страницы памяти с диска."
|
||||
|
||||
#. Maj_Flt
|
||||
#: sysdeps/names/prockernel.c:63
|
||||
msgid ""
|
||||
"The number of major faults the process has made, those which have required "
|
||||
@@ -593,17 +586,14 @@ msgstr ""
|
||||
"Число крупных промахов, сделанных процессом, которые требуют загрузки "
|
||||
"страницы памяти с диска."
|
||||
|
||||
#. CMin_Flt
|
||||
#: sysdeps/names/prockernel.c:66
|
||||
msgid "The number of minor faults that the process and its children have made."
|
||||
msgstr "Число мелких промахов, сделанных процессом и его потомками."
|
||||
|
||||
#. CMaj_Flt
|
||||
#: sysdeps/names/prockernel.c:69
|
||||
msgid "The number of major faults that the process and its children have made."
|
||||
msgstr "Число крупных промахов, сделанных процессом и его потомками."
|
||||
|
||||
#. KStk_ESP
|
||||
#: sysdeps/names/prockernel.c:72
|
||||
msgid ""
|
||||
"The current value of esp (32-bit stack pointer), as found in the kernel "
|
||||
@@ -617,7 +607,6 @@ msgstr ""
|
||||
msgid "The current EIP (32-bit instruction pointer)."
|
||||
msgstr "Текущий EIP (32-битный указатель инструкции)."
|
||||
|
||||
#. NWChan
|
||||
#: sysdeps/names/prockernel.c:77
|
||||
msgid ""
|
||||
"This is the \"channel\" in which the process is waiting. This is the "
|
||||
|
||||
68
po/sk.po
68
po/sk.po
@@ -1,13 +1,15 @@
|
||||
# libgtop sk.po
|
||||
# Copyright (C) 2001, 2002, 2003 Free Software Foundation, Inc.
|
||||
# Marcel Telka <marcel@telka.sk>, 2001, 2002, 2003.
|
||||
# Copyright (C) 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
|
||||
# Marcel Telka <marcel@telka.sk>, 2001, 2002, 2003, 2004.
|
||||
#
|
||||
# $Id$
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: libgtop\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2004-08-03 14:09+0200\n"
|
||||
"PO-Revision-Date: 2003-11-01 07:43+0100\n"
|
||||
"POT-Creation-Date: 2004-08-07 17:09+0200\n"
|
||||
"PO-Revision-Date: 2004-08-07 17:11+0200\n"
|
||||
"Last-Translator: Marcel Telka <Marcel@telka.sk>\n"
|
||||
"Language-Team: Slovak <sk-i18n@lists.linux.sk>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -263,9 +265,8 @@ msgid "Free file nodes"
|
||||
msgstr "Voľných súborových uzlov"
|
||||
|
||||
#: sysdeps/names/fsusage.c:45 sysdeps/names/fsusage.c:55
|
||||
#, fuzzy
|
||||
msgid "Block size"
|
||||
msgstr "Blokovaný"
|
||||
msgstr "Veľkosť bloku"
|
||||
|
||||
#: sysdeps/names/fsusage.c:51
|
||||
msgid "Free blocks available to the superuser"
|
||||
@@ -418,14 +419,12 @@ msgid "MTU"
|
||||
msgstr "MTU"
|
||||
|
||||
#: sysdeps/names/netload.c:48 sysdeps/names/netload.c:69
|
||||
#, fuzzy
|
||||
msgid "IPv4 Subnet"
|
||||
msgstr "Podsieť"
|
||||
msgstr "IPv4 podsieť"
|
||||
|
||||
#: sysdeps/names/netload.c:49 sysdeps/names/netload.c:70
|
||||
#, fuzzy
|
||||
msgid "IPv4 Address"
|
||||
msgstr "Adresa"
|
||||
msgstr "IPv4 adresa"
|
||||
|
||||
#: sysdeps/names/netload.c:50 sysdeps/names/netload.c:71
|
||||
msgid "Packets In"
|
||||
@@ -468,17 +467,16 @@ msgid "Collisions"
|
||||
msgstr "Kolízie"
|
||||
|
||||
#: sysdeps/names/netload.c:60 sysdeps/names/netload.c:81
|
||||
#, fuzzy
|
||||
msgid "IPv6 Address"
|
||||
msgstr "Adresa"
|
||||
msgstr "IPv6 adresa"
|
||||
|
||||
#: sysdeps/names/netload.c:61 sysdeps/names/netload.c:82
|
||||
msgid "IPv6 Prefix"
|
||||
msgstr ""
|
||||
msgstr "IPv6 predpona"
|
||||
|
||||
#: sysdeps/names/netload.c:62 sysdeps/names/netload.c:83
|
||||
msgid "IPv6 Scope"
|
||||
msgstr ""
|
||||
msgstr "IPv6 rozsah"
|
||||
|
||||
#: sysdeps/names/netload.c:68
|
||||
msgid "Maximum Transfer Unit"
|
||||
@@ -1422,45 +1420,3 @@ msgstr "Používateľom definovaný signál 1"
|
||||
#: sysdeps/osf1/siglist.c:58 sysdeps/sun4/siglist.c:58
|
||||
msgid "User defined signal 2"
|
||||
msgstr "Používateľom definovaný signál 2"
|
||||
|
||||
#~ msgid "Unknown system error"
|
||||
#~ msgstr "Neznáma chyba systému"
|
||||
|
||||
#~ msgid "%s: option `%s' is ambiguous\n"
|
||||
#~ msgstr "%s: voľba `%s' je nejednoznačná\n"
|
||||
|
||||
#~ msgid "%s: option `--%s' doesn't allow an argument\n"
|
||||
#~ msgstr "%s: voľba `--%s' nepodporuje argumenty\n"
|
||||
|
||||
#~ msgid "%s: option `%c%s' doesn't allow an argument\n"
|
||||
#~ msgstr "%s: voľba `%c%s' nepodporuje argumenty\n"
|
||||
|
||||
#~ msgid "%s: option `%s' requires an argument\n"
|
||||
#~ msgstr "%s: voľba `%s' vyžaduje parameter\n"
|
||||
|
||||
#~ msgid "%s: unrecognized option `--%s'\n"
|
||||
#~ msgstr "%s: nerozoznaná voľba `--%s'\n"
|
||||
|
||||
#~ msgid "%s: unrecognized option `%c%s'\n"
|
||||
#~ msgstr "%s: nerozoznaná voľba `%c%s'\n"
|
||||
|
||||
#~ msgid "%s: illegal option -- %c\n"
|
||||
#~ msgstr "%s: nepovolená voľba -- %c\n"
|
||||
|
||||
#~ msgid "%s: invalid option -- %c\n"
|
||||
#~ msgstr "%s: chybná voľba -- %c\n"
|
||||
|
||||
#~ msgid "%s: option requires an argument -- %c\n"
|
||||
#~ msgstr "%s: voľba vyžaduje parameter -- %c\n"
|
||||
|
||||
#~ msgid "%s: option `-W %s' is ambiguous\n"
|
||||
#~ msgstr "%s: voľba `-W %s' je nejednoznačná\n"
|
||||
|
||||
#~ msgid "%s: option `-W %s' doesn't allow an argument\n"
|
||||
#~ msgstr "%s: voľba `-W %s' nepodporuje argumenty\n"
|
||||
|
||||
#~ msgid "Show this help message"
|
||||
#~ msgstr "Ukázať túto správu pomocníka"
|
||||
|
||||
#~ msgid "Display brief usage message"
|
||||
#~ msgstr "Zobraziť stručnú správu o používaní"
|
||||
|
||||
12
po/sq.po
12
po/sq.po
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: libgtop.HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2004-08-03 14:09+0200\n"
|
||||
"POT-Creation-Date: 2004-08-19 12:08+0200\n"
|
||||
"PO-Revision-Date: 2004-07-19 16:29+0200\n"
|
||||
"Last-Translator: Laurent Dhima <laurenti@alblinux.net>\n"
|
||||
"Language-Team: Albanian <gnome-albanian-perkthyesit@lists.sourceforge.net>\n"
|
||||
@@ -122,9 +122,10 @@ msgid_plural "write %d bytes"
|
||||
msgstr[0] "u shkrua %d byte"
|
||||
msgstr[1] "u shkruan %d bytes"
|
||||
|
||||
#. GRUT modified this item
|
||||
#: src/daemon/gnuserv.c:456
|
||||
msgid "Enable debugging"
|
||||
msgstr "Aktivo debug"
|
||||
msgstr "Aktivo proçesin e kontrollit"
|
||||
|
||||
#: src/daemon/gnuserv.c:456
|
||||
msgid "DEBUG"
|
||||
@@ -1296,9 +1297,10 @@ msgstr "Mbylle"
|
||||
msgid "Interrupt"
|
||||
msgstr "Ndërprit"
|
||||
|
||||
#. GRUT modified this item
|
||||
#: sysdeps/osf1/siglist.c:30 sysdeps/sun4/siglist.c:30
|
||||
msgid "Quit"
|
||||
msgstr "Dil"
|
||||
msgstr "Dalja"
|
||||
|
||||
#: sysdeps/osf1/siglist.c:31 sysdeps/sun4/siglist.c:31
|
||||
msgid "Illegal instruction"
|
||||
@@ -1352,9 +1354,10 @@ msgstr "Përfundimi"
|
||||
msgid "Urgent condition on socket"
|
||||
msgstr "Konditë urgjente në socket "
|
||||
|
||||
#. GRUT modified this item
|
||||
#: sysdeps/osf1/siglist.c:44 sysdeps/sun4/siglist.c:44
|
||||
msgid "Stop"
|
||||
msgstr "Ndalo"
|
||||
msgstr "Ndal"
|
||||
|
||||
#: sysdeps/osf1/siglist.c:45 sysdeps/sun4/siglist.c:45
|
||||
msgid "Keyboard stop"
|
||||
@@ -1411,3 +1414,4 @@ msgstr "Sinjal 1 i përcaktuar nga përdoruesi"
|
||||
#: sysdeps/osf1/siglist.c:58 sysdeps/sun4/siglist.c:58
|
||||
msgid "User defined signal 2"
|
||||
msgstr "Sinjal 2 i përcaktuar nga përdoruesi"
|
||||
|
||||
|
||||
33
po/sr.po
33
po/sr.po
@@ -1,23 +1,22 @@
|
||||
# Serbian translation of libgtop
|
||||
# Courtesy of Prevod.org team (http://www.prevod.org/) -- 2003.
|
||||
#
|
||||
# Courtesy of Prevod.org team (http://prevod.org/) -- 2003, 2004.
|
||||
#
|
||||
# This file is distributed under the same license as the libgtop package.
|
||||
#
|
||||
#
|
||||
# Maintainer: Бранко Ивановић <popeye@one.ekof.bg.ac.yu>
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: libgtop 2.2\n"
|
||||
"Project-Id-Version: libgtop\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2004-08-03 14:09+0200\n"
|
||||
"PO-Revision-Date: 2003-10-22 01:44+0200\n"
|
||||
"POT-Creation-Date: 2004-08-07 15:03+0200\n"
|
||||
"PO-Revision-Date: 2004-08-07 15:04+0200\n"
|
||||
"Last-Translator: Бранко Ивановић <popeye@one.ekof.bg.ac.yu>\n"
|
||||
"Language-Team: Serbian (sr) <serbiangnome-lista@nongnu.org>\n"
|
||||
"Language-Team: Serbian (sr) <gnom@prevod.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
||||
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
|
||||
#: examples/smp.c:76
|
||||
#, c-format
|
||||
@@ -266,9 +265,8 @@ msgid "Free file nodes"
|
||||
msgstr "Слободни датотечки чворови"
|
||||
|
||||
#: sysdeps/names/fsusage.c:45 sysdeps/names/fsusage.c:55
|
||||
#, fuzzy
|
||||
msgid "Block size"
|
||||
msgstr "Блокирано"
|
||||
msgstr "Величина блока"
|
||||
|
||||
#: sysdeps/names/fsusage.c:51
|
||||
msgid "Free blocks available to the superuser"
|
||||
@@ -421,14 +419,12 @@ msgid "MTU"
|
||||
msgstr "MTU"
|
||||
|
||||
#: sysdeps/names/netload.c:48 sysdeps/names/netload.c:69
|
||||
#, fuzzy
|
||||
msgid "IPv4 Subnet"
|
||||
msgstr "Подмрежа"
|
||||
msgstr "ИПв4 подмрежа"
|
||||
|
||||
#: sysdeps/names/netload.c:49 sysdeps/names/netload.c:70
|
||||
#, fuzzy
|
||||
msgid "IPv4 Address"
|
||||
msgstr "Адреса"
|
||||
msgstr "ИПв4 адреса"
|
||||
|
||||
#: sysdeps/names/netload.c:50 sysdeps/names/netload.c:71
|
||||
msgid "Packets In"
|
||||
@@ -471,17 +467,16 @@ msgid "Collisions"
|
||||
msgstr "Сукоба"
|
||||
|
||||
#: sysdeps/names/netload.c:60 sysdeps/names/netload.c:81
|
||||
#, fuzzy
|
||||
msgid "IPv6 Address"
|
||||
msgstr "Адреса"
|
||||
msgstr "ИПв6 адреса"
|
||||
|
||||
#: sysdeps/names/netload.c:61 sysdeps/names/netload.c:82
|
||||
msgid "IPv6 Prefix"
|
||||
msgstr ""
|
||||
msgstr "ИПв6 префикс"
|
||||
|
||||
#: sysdeps/names/netload.c:62 sysdeps/names/netload.c:83
|
||||
msgid "IPv6 Scope"
|
||||
msgstr ""
|
||||
msgstr "ИПв6 опсег"
|
||||
|
||||
#: sysdeps/names/netload.c:68
|
||||
msgid "Maximum Transfer Unit"
|
||||
|
||||
@@ -1,23 +1,22 @@
|
||||
# Serbian translation of libgtop
|
||||
# Courtesy of Prevod.org team (http://www.prevod.org/) -- 2003.
|
||||
#
|
||||
# Courtesy of Prevod.org team (http://prevod.org/) -- 2003, 2004.
|
||||
#
|
||||
# This file is distributed under the same license as the libgtop package.
|
||||
#
|
||||
#
|
||||
# Maintainer: Branko Ivanović <popeye@one.ekof.bg.ac.yu>
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: libgtop 2.2\n"
|
||||
"Project-Id-Version: libgtop\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2004-08-03 14:09+0200\n"
|
||||
"PO-Revision-Date: 2003-10-22 01:44+0200\n"
|
||||
"POT-Creation-Date: 2004-08-07 15:03+0200\n"
|
||||
"PO-Revision-Date: 2004-08-07 15:04+0200\n"
|
||||
"Last-Translator: Branko Ivanović <popeye@one.ekof.bg.ac.yu>\n"
|
||||
"Language-Team: Serbian (sr) <serbiangnome-lista@nongnu.org>\n"
|
||||
"Language-Team: Serbian (sr) <gnom@prevod.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
||||
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
|
||||
#: examples/smp.c:76
|
||||
#, c-format
|
||||
@@ -266,9 +265,8 @@ msgid "Free file nodes"
|
||||
msgstr "Slobodni datotečki čvorovi"
|
||||
|
||||
#: sysdeps/names/fsusage.c:45 sysdeps/names/fsusage.c:55
|
||||
#, fuzzy
|
||||
msgid "Block size"
|
||||
msgstr "Blokirano"
|
||||
msgstr "Veličina bloka"
|
||||
|
||||
#: sysdeps/names/fsusage.c:51
|
||||
msgid "Free blocks available to the superuser"
|
||||
@@ -421,14 +419,12 @@ msgid "MTU"
|
||||
msgstr "MTU"
|
||||
|
||||
#: sysdeps/names/netload.c:48 sysdeps/names/netload.c:69
|
||||
#, fuzzy
|
||||
msgid "IPv4 Subnet"
|
||||
msgstr "Podmreža"
|
||||
msgstr "IPv4 podmreža"
|
||||
|
||||
#: sysdeps/names/netload.c:49 sysdeps/names/netload.c:70
|
||||
#, fuzzy
|
||||
msgid "IPv4 Address"
|
||||
msgstr "Adresa"
|
||||
msgstr "IPv4 adresa"
|
||||
|
||||
#: sysdeps/names/netload.c:50 sysdeps/names/netload.c:71
|
||||
msgid "Packets In"
|
||||
@@ -471,17 +467,16 @@ msgid "Collisions"
|
||||
msgstr "Sukoba"
|
||||
|
||||
#: sysdeps/names/netload.c:60 sysdeps/names/netload.c:81
|
||||
#, fuzzy
|
||||
msgid "IPv6 Address"
|
||||
msgstr "Adresa"
|
||||
msgstr "IPv6 adresa"
|
||||
|
||||
#: sysdeps/names/netload.c:61 sysdeps/names/netload.c:82
|
||||
msgid "IPv6 Prefix"
|
||||
msgstr ""
|
||||
msgstr "IPv6 prefiks"
|
||||
|
||||
#: sysdeps/names/netload.c:62 sysdeps/names/netload.c:83
|
||||
msgid "IPv6 Scope"
|
||||
msgstr ""
|
||||
msgstr "IPv6 opseg"
|
||||
|
||||
#: sysdeps/names/netload.c:68
|
||||
msgid "Maximum Transfer Unit"
|
||||
@@ -625,8 +620,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Ovo je „kanal“ u kom proces čeka. To je adresa sistemskog poziva i može se "
|
||||
"pronaći u spisku imena ukoliko vam je potreban tekstualni naziv. (Ako "
|
||||
"posedujete ažuriran /etc/psdatabase, probajte „ps -l“ da vidite WCHAN polje "
|
||||
"u akciji)"
|
||||
"posedujete ažuriran /etc/psdatabase, probajte „ps -l“ da vidite WCHAN polje u "
|
||||
"akciji)"
|
||||
|
||||
#. WChan
|
||||
#: sysdeps/names/prockernel.c:82
|
||||
@@ -684,8 +679,7 @@ msgstr ""
|
||||
#: sysdeps/names/procmem.c:63
|
||||
msgid ""
|
||||
"Current limit in bytes on the rss of the process (usually 2,147,483,647)."
|
||||
msgstr ""
|
||||
"Trenutno ograničenje u bajtovima na RSS procesa (obično 2,147,483,647)."
|
||||
msgstr "Trenutno ograničenje u bajtovima na RSS procesa (obično 2,147,483,647)."
|
||||
|
||||
#: sysdeps/names/procsegment.c:43
|
||||
msgid "Text_RSS"
|
||||
|
||||
34
po/sv.po
34
po/sv.po
@@ -10,8 +10,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: libgtop\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2004-08-03 14:09+0200\n"
|
||||
"PO-Revision-Date: 2004-01-06 02:45+0100\n"
|
||||
"POT-Creation-Date: 2004-08-04 22:50+0200\n"
|
||||
"PO-Revision-Date: 2004-08-04 22:50+0200\n"
|
||||
"Last-Translator: Christian Rose <menthos@menthos.com>\n"
|
||||
"Language-Team: Swedish <sv@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -264,9 +264,8 @@ msgid "Free file nodes"
|
||||
msgstr "Fria filnoder"
|
||||
|
||||
#: sysdeps/names/fsusage.c:45 sysdeps/names/fsusage.c:55
|
||||
#, fuzzy
|
||||
msgid "Block size"
|
||||
msgstr "Blockerad"
|
||||
msgstr "Blockstorlek"
|
||||
|
||||
#: sysdeps/names/fsusage.c:51
|
||||
msgid "Free blocks available to the superuser"
|
||||
@@ -419,14 +418,12 @@ msgid "MTU"
|
||||
msgstr "MTU"
|
||||
|
||||
#: sysdeps/names/netload.c:48 sysdeps/names/netload.c:69
|
||||
#, fuzzy
|
||||
msgid "IPv4 Subnet"
|
||||
msgstr "Subnät"
|
||||
msgstr "IPv4-subnät"
|
||||
|
||||
#: sysdeps/names/netload.c:49 sysdeps/names/netload.c:70
|
||||
#, fuzzy
|
||||
msgid "IPv4 Address"
|
||||
msgstr "Adress"
|
||||
msgstr "IPv4-adress"
|
||||
|
||||
#: sysdeps/names/netload.c:50 sysdeps/names/netload.c:71
|
||||
msgid "Packets In"
|
||||
@@ -469,17 +466,17 @@ msgid "Collisions"
|
||||
msgstr "Kollisioner"
|
||||
|
||||
#: sysdeps/names/netload.c:60 sysdeps/names/netload.c:81
|
||||
#, fuzzy
|
||||
msgid "IPv6 Address"
|
||||
msgstr "Adress"
|
||||
msgstr "IPv6-adress"
|
||||
|
||||
#: sysdeps/names/netload.c:61 sysdeps/names/netload.c:82
|
||||
msgid "IPv6 Prefix"
|
||||
msgstr ""
|
||||
msgstr "IPv6-prefix"
|
||||
|
||||
# Osäker.
|
||||
#: sysdeps/names/netload.c:62 sysdeps/names/netload.c:83
|
||||
msgid "IPv6 Scope"
|
||||
msgstr ""
|
||||
msgstr "IPv6-omfattning"
|
||||
|
||||
#: sysdeps/names/netload.c:68
|
||||
msgid "Maximum Transfer Unit"
|
||||
@@ -1422,6 +1419,19 @@ msgstr "Användarsignal 1"
|
||||
msgid "User defined signal 2"
|
||||
msgstr "Användarsignal 2"
|
||||
|
||||
#~ msgid "Subnet"
|
||||
#~ msgstr "Subnät"
|
||||
|
||||
#~ msgid "Address"
|
||||
#~ msgstr "Adress"
|
||||
|
||||
#~ msgid "Prefix"
|
||||
#~ msgstr "Prefix"
|
||||
|
||||
# Osäker.
|
||||
#~ msgid "Scope"
|
||||
#~ msgstr "Omfattning"
|
||||
|
||||
#~ msgid "read %d bytes"
|
||||
#~ msgstr "läste %d byte"
|
||||
|
||||
|
||||
31
po/uk.po
31
po/uk.po
@@ -1,13 +1,14 @@
|
||||
# Copyright (C) 2000 Free Software Foundation, Inc.
|
||||
# Yuri Syrota <rasta@renome.rovno.ua>, 2000.
|
||||
# Maxim Dziumanenko <mvd@mylinux.com.ua>, 2004
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: libgtop 1.1.3\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2004-08-03 14:09+0200\n"
|
||||
"PO-Revision-Date: 2003-03-06 10:18--500\n"
|
||||
"Last-Translator: Yuriy Syrota <yuri@renome.rovno.ua>\n"
|
||||
"POT-Creation-Date: 2004-08-23 11:35+0300\n"
|
||||
"PO-Revision-Date: 2004-08-23 11:35+0300\n"
|
||||
"Last-Translator: Maxim Dziumanenko <mvd@mylinux.com.ua>\n"
|
||||
"Language-Team: Ukrainian <uk@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@@ -134,7 +135,7 @@ msgstr "НАЛАГОДЖЕННЯ"
|
||||
|
||||
#: src/daemon/gnuserv.c:458
|
||||
msgid "Enable verbose output"
|
||||
msgstr "Увімкнути детальний вивід"
|
||||
msgstr "Увімкнути докладний вивід"
|
||||
|
||||
#: src/daemon/gnuserv.c:458
|
||||
msgid "VERBOSE"
|
||||
@@ -265,9 +266,8 @@ msgid "Free file nodes"
|
||||
msgstr "Вільних i-вузлів"
|
||||
|
||||
#: sysdeps/names/fsusage.c:45 sysdeps/names/fsusage.c:55
|
||||
#, fuzzy
|
||||
msgid "Block size"
|
||||
msgstr "Блоковано"
|
||||
msgstr "Розмір блоку"
|
||||
|
||||
#: sysdeps/names/fsusage.c:51
|
||||
msgid "Free blocks available to the superuser"
|
||||
@@ -405,7 +405,7 @@ msgstr "Максимальна кількість черг в системі"
|
||||
|
||||
#: sysdeps/names/msg_limits.c:46 sysdeps/names/msg_limits.c:57
|
||||
msgid "Message segment size"
|
||||
msgstr "Розмір сегмента повідомлення"
|
||||
msgstr "Розмір сегменту повідомлення"
|
||||
|
||||
#: sysdeps/names/msg_limits.c:47 sysdeps/names/msg_limits.c:58
|
||||
msgid "Number of system message headers"
|
||||
@@ -420,14 +420,12 @@ msgid "MTU"
|
||||
msgstr "MTU"
|
||||
|
||||
#: sysdeps/names/netload.c:48 sysdeps/names/netload.c:69
|
||||
#, fuzzy
|
||||
msgid "IPv4 Subnet"
|
||||
msgstr "Підмережа"
|
||||
msgstr "Підмережа IPv4"
|
||||
|
||||
#: sysdeps/names/netload.c:49 sysdeps/names/netload.c:70
|
||||
#, fuzzy
|
||||
msgid "IPv4 Address"
|
||||
msgstr "Адреса"
|
||||
msgstr "Адреса IPv4"
|
||||
|
||||
#: sysdeps/names/netload.c:50 sysdeps/names/netload.c:71
|
||||
msgid "Packets In"
|
||||
@@ -470,17 +468,16 @@ msgid "Collisions"
|
||||
msgstr "Колізії"
|
||||
|
||||
#: sysdeps/names/netload.c:60 sysdeps/names/netload.c:81
|
||||
#, fuzzy
|
||||
msgid "IPv6 Address"
|
||||
msgstr "Адреса"
|
||||
msgstr "Адреса IPv6"
|
||||
|
||||
#: sysdeps/names/netload.c:61 sysdeps/names/netload.c:82
|
||||
msgid "IPv6 Prefix"
|
||||
msgstr ""
|
||||
msgstr "Префікс IPv6"
|
||||
|
||||
#: sysdeps/names/netload.c:62 sysdeps/names/netload.c:83
|
||||
msgid "IPv6 Scope"
|
||||
msgstr ""
|
||||
msgstr "Область IPv6"
|
||||
|
||||
#: sysdeps/names/netload.c:68
|
||||
msgid "Maximum Transfer Unit"
|
||||
@@ -924,7 +921,7 @@ msgstr ""
|
||||
#: sysdeps/names/proctime.c:57
|
||||
msgid "cumulative stime of process and reaped children"
|
||||
msgstr ""
|
||||
"Загальний час процесу і завершених спадкоємних процесів витрачаний в "
|
||||
"Загальний час процесу і завершених спадкоємних процесів витрачений в "
|
||||
"системному режимі"
|
||||
|
||||
#: sysdeps/names/proctime.c:58
|
||||
@@ -1365,7 +1362,7 @@ msgstr "Програмне завершення"
|
||||
|
||||
#: sysdeps/osf1/siglist.c:43 sysdeps/sun4/siglist.c:43
|
||||
msgid "Urgent condition on socket"
|
||||
msgstr "Критичний стан сокета"
|
||||
msgstr "Критичний стан сокету"
|
||||
|
||||
#: sysdeps/osf1/siglist.c:44 sysdeps/sun4/siglist.c:44
|
||||
msgid "Stop"
|
||||
|
||||
20
po/zh_CN.po
20
po/zh_CN.po
@@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: libgtop\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2004-08-03 14:09+0200\n"
|
||||
"PO-Revision-Date: 2004-03-07 19:10+0800\n"
|
||||
"POT-Creation-Date: 2004-08-07 20:06+0200\n"
|
||||
"PO-Revision-Date: 2004-08-08 02:49+0800\n"
|
||||
"Last-Translator: Funda Wang <fundawang@linux.net.cn>\n"
|
||||
"Language-Team: zh_CN <i18n-translation@lists.linux.net.cn>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -257,9 +257,8 @@ msgid "Free file nodes"
|
||||
msgstr "未用的文件结点"
|
||||
|
||||
#: sysdeps/names/fsusage.c:45 sysdeps/names/fsusage.c:55
|
||||
#, fuzzy
|
||||
msgid "Block size"
|
||||
msgstr "阻塞"
|
||||
msgstr "块大小"
|
||||
|
||||
#: sysdeps/names/fsusage.c:51
|
||||
msgid "Free blocks available to the superuser"
|
||||
@@ -412,14 +411,12 @@ msgid "MTU"
|
||||
msgstr "MTU"
|
||||
|
||||
#: sysdeps/names/netload.c:48 sysdeps/names/netload.c:69
|
||||
#, fuzzy
|
||||
msgid "IPv4 Subnet"
|
||||
msgstr "子网"
|
||||
msgstr "IPv4 子网"
|
||||
|
||||
#: sysdeps/names/netload.c:49 sysdeps/names/netload.c:70
|
||||
#, fuzzy
|
||||
msgid "IPv4 Address"
|
||||
msgstr "地址"
|
||||
msgstr "IPv4 地址"
|
||||
|
||||
#: sysdeps/names/netload.c:50 sysdeps/names/netload.c:71
|
||||
msgid "Packets In"
|
||||
@@ -462,17 +459,16 @@ msgid "Collisions"
|
||||
msgstr "冲突"
|
||||
|
||||
#: sysdeps/names/netload.c:60 sysdeps/names/netload.c:81
|
||||
#, fuzzy
|
||||
msgid "IPv6 Address"
|
||||
msgstr "地址"
|
||||
msgstr "IPv6 地址"
|
||||
|
||||
#: sysdeps/names/netload.c:61 sysdeps/names/netload.c:82
|
||||
msgid "IPv6 Prefix"
|
||||
msgstr ""
|
||||
msgstr "IPv6 前缀"
|
||||
|
||||
#: sysdeps/names/netload.c:62 sysdeps/names/netload.c:83
|
||||
msgid "IPv6 Scope"
|
||||
msgstr ""
|
||||
msgstr "IPv6 范围"
|
||||
|
||||
#: sysdeps/names/netload.c:68
|
||||
msgid "Maximum Transfer Unit"
|
||||
|
||||
@@ -1,3 +1,7 @@
|
||||
2004-08-22 Benoît Dejean <tazforever@dlfp.org>
|
||||
|
||||
* mountlist.c: (read_filesystem_list): Merged FreeBSD Marcus' patch.
|
||||
|
||||
2004-07-17 Benoît Dejean <tazforever@dlfp.org>
|
||||
|
||||
* fsusage.c: (glibtop_get_fsusage_s): Started implementation of read, write.
|
||||
|
||||
@@ -134,8 +134,8 @@ void _glibtop_linux_get_fsusage_read_write(glibtop *server,
|
||||
#define _glibtop_get_fsusage_read_write(S, B, P) \
|
||||
_glibtop_linux_get_fsusage_read_write(S, B, P)
|
||||
|
||||
|
||||
#else /* default fallback */
|
||||
#warning glibtop_get_fsusage .read .write are not implemented.
|
||||
#define _glibtop_get_fsusage_read_write(S, B, P) ((void)0)
|
||||
#endif
|
||||
|
||||
@@ -147,6 +147,20 @@ void
|
||||
glibtop_get_fsusage_s (glibtop *server, glibtop_fsusage *buf,
|
||||
const char *path)
|
||||
{
|
||||
#if defined STAT_STATFS3_OSF1
|
||||
struct statfs fsd;
|
||||
#elif defined STAT_STATFS2_FS_DATA /* Ultrix */
|
||||
struct fs_data fsd;
|
||||
#elif defined STAT_STATFS2_BSIZE /* 4.3BSD, SunOS 4, HP-UX, AIX */
|
||||
struct statfs fsd;
|
||||
#elif defined STAT_STATVFS /* SVR4 */
|
||||
struct statvfs fsd;
|
||||
#elif defined STAT_STATFS2_FSIZE /* 4.4BSD */
|
||||
struct statfs fsd;
|
||||
#elif defined STAT_STATFS4 /* SVR3, Dynix, Irix, AIX */
|
||||
struct stafs fsd;
|
||||
#endif
|
||||
|
||||
glibtop_init_r (&server, 0, 0);
|
||||
|
||||
memset (buf, 0, sizeof (glibtop_fsusage));
|
||||
@@ -155,8 +169,6 @@ glibtop_get_fsusage_s (glibtop *server, glibtop_fsusage *buf,
|
||||
|
||||
#ifdef STAT_STATFS3_OSF1
|
||||
|
||||
struct statfs fsd;
|
||||
|
||||
if (statfs (path, &fsd, sizeof (struct statfs)) != 0)
|
||||
return;
|
||||
|
||||
@@ -166,8 +178,6 @@ glibtop_get_fsusage_s (glibtop *server, glibtop_fsusage *buf,
|
||||
|
||||
#ifdef STAT_STATFS2_FS_DATA /* Ultrix */
|
||||
|
||||
struct fs_data fsd;
|
||||
|
||||
if (statfs (path, &fsd) != 1)
|
||||
return;
|
||||
|
||||
@@ -175,7 +185,7 @@ glibtop_get_fsusage_s (glibtop *server, glibtop_fsusage *buf,
|
||||
buf->blocks = PROPAGATE_ALL_ONES (fsd.fd_req.btot);
|
||||
buf->bfree = PROPAGATE_ALL_ONES (fsd.fd_req.bfree);
|
||||
buf->bavail = PROPAGATE_TOP_BIT (fsd.fd_req.bfreen);
|
||||
// buf->bavail_top_bit_set = EXTRACT_TOP_BIT (fsd.fd_req.bfreen) != 0;
|
||||
/* buf->bavail_top_bit_set = EXTRACT_TOP_BIT (fsd.fd_req.bfreen) != 0; */
|
||||
buf->files = PROPAGATE_ALL_ONES (fsd.fd_req.gtot);
|
||||
buf->ffree = PROPAGATE_ALL_ONES (fsd.fd_req.gfree);
|
||||
|
||||
@@ -183,8 +193,6 @@ glibtop_get_fsusage_s (glibtop *server, glibtop_fsusage *buf,
|
||||
|
||||
#ifdef STAT_STATFS2_BSIZE /* 4.3BSD, SunOS 4, HP-UX, AIX */
|
||||
|
||||
struct statfs fsd;
|
||||
|
||||
if (statfs (path, &fsd) < 0)
|
||||
return;
|
||||
|
||||
@@ -209,8 +217,6 @@ glibtop_get_fsusage_s (glibtop *server, glibtop_fsusage *buf,
|
||||
|
||||
#ifdef STAT_STATFS2_FSIZE /* 4.4BSD */
|
||||
|
||||
struct statfs fsd;
|
||||
|
||||
if (statfs (path, &fsd) < 0)
|
||||
return;
|
||||
|
||||
@@ -224,8 +230,6 @@ glibtop_get_fsusage_s (glibtop *server, glibtop_fsusage *buf,
|
||||
# define f_bavail f_bfree
|
||||
# endif
|
||||
|
||||
struct statfs fsd;
|
||||
|
||||
if (statfs (path, &fsd, sizeof fsd, 0) < 0)
|
||||
return;
|
||||
|
||||
@@ -242,8 +246,6 @@ glibtop_get_fsusage_s (glibtop *server, glibtop_fsusage *buf,
|
||||
|
||||
#ifdef STAT_STATVFS /* SVR4 */
|
||||
|
||||
struct statvfs fsd;
|
||||
|
||||
if (statvfs (path, &fsd) < 0)
|
||||
return;
|
||||
|
||||
@@ -260,7 +262,7 @@ glibtop_get_fsusage_s (glibtop *server, glibtop_fsusage *buf,
|
||||
buf->blocks = PROPAGATE_ALL_ONES (fsd.f_blocks);
|
||||
buf->bfree = PROPAGATE_ALL_ONES (fsd.f_bfree);
|
||||
buf->bavail = PROPAGATE_TOP_BIT (fsd.f_bavail);
|
||||
// buf->bavail_top_bit_set = EXTRACT_TOP_BIT (fsd.f_bavail) != 0;
|
||||
/* buf->bavail_top_bit_set = EXTRACT_TOP_BIT (fsd.f_bavail) != 0; */
|
||||
buf->files = PROPAGATE_ALL_ONES (fsd.f_files);
|
||||
buf->ffree = PROPAGATE_ALL_ONES (fsd.f_ffree);
|
||||
|
||||
|
||||
@@ -95,7 +95,7 @@ static struct mount_entry *read_filesystem_list (gboolean need_fs_type);
|
||||
#endif
|
||||
|
||||
|
||||
#if defined (MOUNTED_GETMNTINFO) && !defined (__NetBSD__) && !defined (__OpenBSD__)
|
||||
#if defined (MOUNTED_GETMNTINFO) && !defined (__NetBSD__) && !defined (__OpenBSD__) && !defined(__FreeBSD__)
|
||||
static const char *
|
||||
fstype_to_string (short t)
|
||||
{
|
||||
@@ -300,7 +300,7 @@ read_filesystem_list (gboolean need_fs_type)
|
||||
me = (struct mount_entry *) g_malloc (sizeof (struct mount_entry));
|
||||
me->me_devname = g_strdup (fsp->f_mntfromname);
|
||||
me->me_mountdir = g_strdup (fsp->f_mntonname);
|
||||
#if defined(__NetBSD__) || defined(__OpenBSD__)
|
||||
#if defined(__NetBSD__) || defined(__OpenBSD__) || defined(__FreeBSD__)
|
||||
me->me_type = g_strdup (fsp->f_fstypename);
|
||||
#else
|
||||
me->me_type = g_strdup (fstype_to_string (fsp->f_type));
|
||||
|
||||
@@ -1,3 +1,17 @@
|
||||
2004-08-28 Benoît Dejean <tazforever@dlfp.org>
|
||||
|
||||
* mem.c: (glibtop_get_mem_p):
|
||||
* ppp.c:
|
||||
* swap.c: (glibtop_init_swap_p), (glibtop_get_swap_p):
|
||||
* uptime.c: (glibtop_get_uptime_p): Merge a bunch of trivial OpenBSD
|
||||
patchs. To *BSD maintainers : please report bugs ! don't be selfish, share
|
||||
your patchs.
|
||||
|
||||
2004-08-22 Benoît Dejean <tazforever@dlfp.org>
|
||||
|
||||
* procstate.c:
|
||||
* uptime.c: (glibtop_get_uptime_p): Merged Marcus' patches.
|
||||
|
||||
2004-07-15 Benoît Dejean <tazforever@dlfp.org>
|
||||
|
||||
* procstate.c: (glibtop_get_proc_state_p): Fixed copy/paste error
|
||||
|
||||
@@ -33,7 +33,7 @@
|
||||
#include <vm/vm_param.h>
|
||||
#endif
|
||||
|
||||
#if defined(__NetBSD__) && (__NetBSD_Version__ >= 104000000)
|
||||
#if defined(__NetBSD__) && (__NetBSD_Version__ >= 104000000) || defined(__OpenBSD__)
|
||||
#include <uvm/uvm_extern.h>
|
||||
#endif
|
||||
|
||||
@@ -59,7 +59,7 @@ static int pageshift; /* log base 2 of the pagesize */
|
||||
|
||||
/* nlist structure for kernel access */
|
||||
static struct nlist nlst [] = {
|
||||
#if defined(__NetBSD__) && (__NetBSD_Version__ >= 104000000)
|
||||
#if defined(__NetBSD__) && (__NetBSD_Version__ >= 104000000) || defined(__OpenBSD__)
|
||||
{ "_bufpages" },
|
||||
{ 0 }
|
||||
#else
|
||||
@@ -82,7 +82,7 @@ static int mib [] = { CTL_VM, VM_TOTAL };
|
||||
static int mib [] = { CTL_VM, VM_METER };
|
||||
#endif
|
||||
|
||||
#if defined(__NetBSD__) && (__NetBSD_Version__ >= 104000000)
|
||||
#if defined(__NetBSD__) && (__NetBSD_Version__ >= 104000000) || defined(__OpenBSD__)
|
||||
static int mib_uvmexp [] = { CTL_VM, VM_UVMEXP };
|
||||
#endif
|
||||
|
||||
@@ -118,7 +118,7 @@ glibtop_get_mem_p (glibtop *server, glibtop_mem *buf)
|
||||
{
|
||||
struct vmtotal vmt;
|
||||
size_t length_vmt;
|
||||
#if defined(__NetBSD__) && (__NetBSD_Version__ >= 104000000)
|
||||
#if defined(__NetBSD__) && (__NetBSD_Version__ >= 104000000) || defined(__OpenBSD__)
|
||||
struct uvmexp uvmexp;
|
||||
size_t length_uvmexp;
|
||||
#else
|
||||
@@ -147,7 +147,7 @@ glibtop_get_mem_p (glibtop *server, glibtop_mem *buf)
|
||||
return;
|
||||
}
|
||||
|
||||
#if defined(__NetBSD__) && (__NetBSD_Version__ >= 104000000)
|
||||
#if defined(__NetBSD__) && (__NetBSD_Version__ >= 104000000) || defined(__OpenBSD__)
|
||||
length_uvmexp = sizeof (uvmexp);
|
||||
if (sysctl (mib_uvmexp, 2, &uvmexp, &length_uvmexp, NULL, 0)) {
|
||||
glibtop_warn_io_r (server, "sysctl (uvmexp)");
|
||||
@@ -173,7 +173,7 @@ glibtop_get_mem_p (glibtop *server, glibtop_mem *buf)
|
||||
#if defined(__FreeBSD__)
|
||||
v_total_count = vmm.v_page_count;
|
||||
#else
|
||||
#if defined(__NetBSD__) && (__NetBSD_Version__ >= 104000000)
|
||||
#if defined(__NetBSD__) && (__NetBSD_Version__ >= 104000000) || defined(__OpenBSD__)
|
||||
v_total_count = uvmexp.reserve_kernel +
|
||||
uvmexp.reserve_pagedaemon +
|
||||
uvmexp.free + uvmexp.wired + uvmexp.active +
|
||||
@@ -185,7 +185,7 @@ glibtop_get_mem_p (glibtop *server, glibtop_mem *buf)
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if defined(__NetBSD__) && (__NetBSD_Version__ >= 104000000)
|
||||
#if defined(__NetBSD__) && (__NetBSD_Version__ >= 104000000) || defined(__OpenBSD__)
|
||||
v_used_count = uvmexp.active + uvmexp.inactive;
|
||||
v_free_count = uvmexp.free;
|
||||
#else
|
||||
@@ -201,7 +201,7 @@ glibtop_get_mem_p (glibtop *server, glibtop_mem *buf)
|
||||
buf->cached = (guint64) pagetok (vmm.v_cache_count) << LOG1024;
|
||||
#endif
|
||||
|
||||
#if defined(__NetBSD__) && (__NetBSD_Version__ >= 104000000)
|
||||
#if defined(__NetBSD__) && (__NetBSD_Version__ >= 104000000) || defined(__OpenBSD__)
|
||||
buf->locked = (guint64) pagetok (uvmexp.wired) << LOG1024;
|
||||
#else
|
||||
buf->locked = (guint64) pagetok (vmm.v_wire_count) << LOG1024;
|
||||
|
||||
@@ -39,7 +39,7 @@
|
||||
#include <net/netisr.h>
|
||||
#include <net/route.h>
|
||||
|
||||
#if defined(__FreeBSD__) || defined(__NetBSD__)
|
||||
#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__)
|
||||
#include <net/if_sppp.h>
|
||||
#else
|
||||
#include <i4b/sppp/if_sppp.h>
|
||||
|
||||
@@ -28,7 +28,7 @@
|
||||
#include <glibtop_suid.h>
|
||||
|
||||
#if !defined(__OpenBSD__)
|
||||
//&& (!defined __bsdi__)
|
||||
/* && (!defined __bsdi__) */
|
||||
#include <sys/user.h>
|
||||
#endif
|
||||
|
||||
|
||||
@@ -67,9 +67,9 @@ static struct nlist nlst [] = {
|
||||
};
|
||||
#endif
|
||||
|
||||
#elif defined(__NetBSD__)
|
||||
#elif defined(__NetBSD__) || defined(__OpenBSD__)
|
||||
|
||||
#if (__NetBSD_Version__ >= 104000000)
|
||||
#if (__NetBSD_Version__ >= 104000000) || defined(__OpenBSD__)
|
||||
#include <uvm/uvm_extern.h>
|
||||
#include <sys/swap.h>
|
||||
#else
|
||||
@@ -78,7 +78,7 @@ static struct nlist nlst [] = {
|
||||
|
||||
#endif
|
||||
|
||||
#if defined(__NetBSD__) && (__NetBSD_Version__ >= 104000000)
|
||||
#if defined(__NetBSD__) && (__NetBSD_Version__ >= 104000000) || defined(__OpenBSD__)
|
||||
static int mib_uvmexp [] = { CTL_VM, VM_UVMEXP };
|
||||
#else
|
||||
/* nlist structure for kernel access */
|
||||
@@ -109,7 +109,7 @@ glibtop_init_swap_p (glibtop *server)
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if !(defined(__NetBSD__) && (__NetBSD_Version__ >= 104000000))
|
||||
#if !(defined(__NetBSD__) && (__NetBSD_Version__ >= 104000000)) && !defined(__OpenBSD__)
|
||||
if (kvm_nlist (server->machine.kd, nlst2) < 0) {
|
||||
glibtop_warn_io_r (server, "kvm_nlist (cnt)");
|
||||
return;
|
||||
@@ -149,14 +149,14 @@ glibtop_get_swap_p (glibtop *server, glibtop_swap *buf)
|
||||
|
||||
#elif defined(__bsdi__)
|
||||
struct swapstats swap;
|
||||
#elif defined(__NetBSD__)
|
||||
#elif defined(__NetBSD__) || defined(__OpenBSD__)
|
||||
struct swapent *swaplist;
|
||||
#endif
|
||||
|
||||
int nswap, i;
|
||||
int avail = 0, inuse = 0;
|
||||
|
||||
#if defined(__NetBSD__) && (__NetBSD_Version__ >= 104000000)
|
||||
#if defined(__NetBSD__) && (__NetBSD_Version__ >= 104000000) || defined(__OpenBSD__)
|
||||
struct uvmexp uvmexp;
|
||||
size_t length_uvmexp;
|
||||
#else
|
||||
@@ -173,7 +173,7 @@ glibtop_get_swap_p (glibtop *server, glibtop_swap *buf)
|
||||
if (server->sysdeps.swap == 0)
|
||||
return;
|
||||
|
||||
#if defined(__NetBSD__) && (__NetBSD_Version__ >= 104000000)
|
||||
#if defined(__NetBSD__) && (__NetBSD_Version__ >= 104000000) || defined(__OpenBSD__)
|
||||
length_uvmexp = sizeof (uvmexp);
|
||||
if (sysctl (mib_uvmexp, 2, &uvmexp, &length_uvmexp, NULL, 0)) {
|
||||
glibtop_warn_io_r (server, "sysctl (uvmexp)");
|
||||
@@ -197,7 +197,7 @@ glibtop_get_swap_p (glibtop *server, glibtop_swap *buf)
|
||||
buf->pagein = vmm.v_swappgsin - swappgsin;
|
||||
buf->pageout = vmm.v_swappgsout - swappgsout;
|
||||
#else
|
||||
#if defined(__NetBSD__) && (__NetBSD_Version__ >= 104000000)
|
||||
#if defined(__NetBSD__) && (__NetBSD_Version__ >= 104000000) || defined(__OpenBSD__)
|
||||
buf->pagein = uvmexp.swapins - swappgsin;
|
||||
buf->pageout = uvmexp.swapouts - swappgsout;
|
||||
#else
|
||||
@@ -211,7 +211,7 @@ glibtop_get_swap_p (glibtop *server, glibtop_swap *buf)
|
||||
swappgsin = vmm.v_swappgsin;
|
||||
swappgsout = vmm.v_swappgsout;
|
||||
#else
|
||||
#if defined(__NetBSD__) && (__NetBSD_Version__ >= 104000000)
|
||||
#if defined(__NetBSD__) && (__NetBSD_Version__ >= 104000000) || defined(__OpenBSD__)
|
||||
swappgsin = uvmexp.swapins;
|
||||
swappgsout = uvmexp.swapouts;
|
||||
#else
|
||||
@@ -391,7 +391,7 @@ glibtop_get_swap_p (glibtop *server, glibtop_swap *buf)
|
||||
|
||||
buf->total = swap.swap_total;
|
||||
|
||||
#elif defined(__NetBSD__)
|
||||
#elif defined(__NetBSD__) || defined(__OpenBSD__)
|
||||
|
||||
nswap = swapctl (SWAP_NSWAP, NULL, 0);
|
||||
if (nswap < 0) {
|
||||
|
||||
@@ -49,7 +49,7 @@ glibtop_init_uptime_p (glibtop *server)
|
||||
void
|
||||
glibtop_get_uptime_p (glibtop *server, glibtop_uptime *buf)
|
||||
{
|
||||
#ifdef __NetBSD__
|
||||
#if defined(__NetBSD__) || defined(__OpenBSD__)
|
||||
time_t now;
|
||||
time_t uptime;
|
||||
int mib[2];
|
||||
@@ -68,8 +68,6 @@ glibtop_get_uptime_p (glibtop *server, glibtop_uptime *buf)
|
||||
buf->flags = _glibtop_sysdeps_uptime;
|
||||
}
|
||||
#else
|
||||
buf->flags = _glibtop_sysdeps_uptime;
|
||||
|
||||
glibtop_cpu cpu;
|
||||
|
||||
glibtop_init_p (server, (1L << GLIBTOP_SYSDEPS_UPTIME), 0);
|
||||
|
||||
@@ -30,7 +30,8 @@ static void linux_2_6_0(glibtop *server, glibtop_fsusage *buf, const char *path)
|
||||
{
|
||||
if(strcmp(emnt->mnt_dir, path) != 0)
|
||||
continue;
|
||||
|
||||
else
|
||||
{
|
||||
char filename[64]; /* magic */
|
||||
|
||||
char buffer[1024]; /* magic */
|
||||
@@ -75,6 +76,7 @@ static void linux_2_6_0(glibtop *server, glibtop_fsusage *buf, const char *path)
|
||||
buf->read = strtoull(p, &p, 0);
|
||||
p = skip_token(p);
|
||||
buf->write = strtoull(p, &p, 0);
|
||||
}
|
||||
}
|
||||
|
||||
endmntent(mtab);
|
||||
|
||||
@@ -47,7 +47,9 @@
|
||||
#include <linux/udp.h>
|
||||
#endif
|
||||
|
||||
/* IPV6 */
|
||||
|
||||
#ifdef HAVE_IFADDRS_H
|
||||
/* needed for IPV6 support */
|
||||
|
||||
#include <ifaddrs.h>
|
||||
|
||||
@@ -56,7 +58,8 @@
|
||||
(((((__const uint8_t *) (a))[0] & 0xff) == 0x3f \
|
||||
|| (((__const uint8_t *) (a))[0] & 0xff) == 0x20))
|
||||
#endif
|
||||
/* IPV6 */
|
||||
#endif /* HAVE_IFADDRS_H */
|
||||
|
||||
|
||||
#define _GLIBTOP_IP_FW_ACCTIN 0x1000 /* Account incoming packets only. */
|
||||
#define _GLIBTOP_IP_FW_ACCTOUT 0x2000 /* Account outgoing packets only. */
|
||||
@@ -374,6 +377,7 @@ glibtop_get_netload_s (glibtop *server, glibtop_netload *buf,
|
||||
fclose (f);
|
||||
|
||||
|
||||
#ifdef HAVE_IFADDRS_H
|
||||
/* IPv6 */
|
||||
{
|
||||
struct ifaddrs *ifa0, *ifr6;
|
||||
@@ -421,4 +425,5 @@ glibtop_get_netload_s (glibtop *server, glibtop_netload *buf,
|
||||
free_ipv6:
|
||||
freeifaddrs(ifa0);
|
||||
} /* IPV6 */
|
||||
#endif /* HAVE_IFADDRS_H */
|
||||
}
|
||||
|
||||
@@ -74,9 +74,10 @@ glibtop_get_proc_time_s (glibtop *server, glibtop_proc_time *buf, pid_t pid)
|
||||
|
||||
p = skip_multiple_token (p, 3);
|
||||
|
||||
// timeout is 0 on 2.4 and "thread_number" on 2.6
|
||||
// lets skip it (using previous skip_multiple_token)
|
||||
// buf->timeout = strtoull (p, &p, 0);
|
||||
/* timeout is 0 on 2.4 and "thread_number" on 2.6
|
||||
lets skip it (using previous skip_multiple_token)
|
||||
buf->timeout = strtoull (p, &p, 0);
|
||||
*/
|
||||
buf->it_real_value = strtoull (p, &p, 0);
|
||||
|
||||
/* seconds since epoch */
|
||||
|
||||
@@ -37,6 +37,7 @@ static void
|
||||
init_sysinfo (glibtop *server)
|
||||
{
|
||||
char buffer [BUFSIZ];
|
||||
gchar ** processors;
|
||||
|
||||
if(G_LIKELY(sysinfo.flags)) return;
|
||||
|
||||
@@ -45,8 +46,7 @@ init_sysinfo (glibtop *server)
|
||||
file_to_buffer(server, buffer, FILENAME);
|
||||
|
||||
/* cpuinfo records are seperated by a blank line */
|
||||
gchar ** const processors = g_strsplit(buffer, "\n\n", 0);
|
||||
|
||||
processors = g_strsplit(buffer, "\n\n", 0);
|
||||
|
||||
for(sysinfo.ncpu = 0;
|
||||
sysinfo.ncpu < GLIBTOP_NCPU && processors[sysinfo.ncpu] && *processors[sysinfo.ncpu];
|
||||
|
||||
@@ -1,34 +0,0 @@
|
||||
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 4 -*- */
|
||||
|
||||
/* $Id$ */
|
||||
|
||||
/* Copyright (C) 1998-99 Martin Baulig
|
||||
This file is part of LibGTop 1.0.
|
||||
|
||||
Contributed by Martin Baulig <martin@home-of-linux.org>, April 1998.
|
||||
|
||||
LibGTop is free software; you can redistribute it and/or modify it
|
||||
under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License,
|
||||
or (at your option) any later version.
|
||||
|
||||
LibGTop is distributed in the hope that it will be useful, but WITHOUT
|
||||
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with LibGTop; see the file COPYING. If not, write to the
|
||||
Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
||||
Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#include <glibtop/interfaces.h>
|
||||
|
||||
const char *glibtop_names_interface_names[] = { 0 };
|
||||
|
||||
const unsigned glibtop_types_interface_names[] = { 0 };
|
||||
|
||||
const char *glibtop_labels_interface_names[] = { 0 };
|
||||
|
||||
const char *glibtop_descriptions_interface_names[] = { 0 };
|
||||
@@ -1,48 +0,0 @@
|
||||
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 4 -*- */
|
||||
|
||||
/* $Id$ */
|
||||
|
||||
/* Copyright (C) 1998-99 Martin Baulig
|
||||
This file is part of LibGTop 1.0.
|
||||
|
||||
Contributed by Martin Baulig <martin@home-of-linux.org>, April 1998.
|
||||
|
||||
LibGTop is free software; you can redistribute it and/or modify it
|
||||
under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License,
|
||||
or (at your option) any later version.
|
||||
|
||||
LibGTop is distributed in the hope that it will be useful, but WITHOUT
|
||||
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with LibGTop; see the file COPYING. If not, write to the
|
||||
Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
||||
Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#include <glibtop.h>
|
||||
#include <glibtop/proccwd.h>
|
||||
#include "libgtop-i18n.h"
|
||||
|
||||
const char *glibtop_names_proc_cwd[GLIBTOP_MAX_PROC_CWD] =
|
||||
{
|
||||
"size", "device", "inode"
|
||||
};
|
||||
|
||||
const unsigned glibtop_types_proc_cwd[GLIBTOP_MAX_PROC_CWD] =
|
||||
{
|
||||
GLIBTOP_TYPE_ULONG, GLIBTOP_TYPE_ULONG, GLIBTOP_TYPE_ULONG
|
||||
};
|
||||
|
||||
const char *glibtop_labels_proc_cwd[GLIBTOP_MAX_PROC_CWD] =
|
||||
{
|
||||
N_ ("Size"), N_ ("Device"), N_ ("Inode")
|
||||
};
|
||||
|
||||
const char *glibtop_descriptions_proc_cwd[GLIBTOP_MAX_PROC_CWD] =
|
||||
{
|
||||
N_ ("Size"), N_ ("Device"), N_ ("Inode")
|
||||
};
|
||||
Reference in New Issue
Block a user