Apply patch from Álvaro Lopes to fix CPU usage per task, with more then 1 CPU.

Added a THANKS file.
Remove some svn executable properties and add svn keywords.
Added LINGUAS support and removed the configure.ac > configure.in.in file.
Improved the configure.in.in and Makefiles.


(Old svn revision: 2350)
This commit is contained in:
Nick Schermer
2007-01-13 10:12:31 +00:00
parent 774a48f60a
commit b452b402fe
33 changed files with 895 additions and 479 deletions

View File

@@ -1,23 +1,33 @@
2007-01-12 Nick Schermer <nick@xfce.org> 2007-01-12 Nick Schermer <nick@xfce.org>
* Apply patch from Álvaro Lopes to fix CPU usage per task, with
more then 1 CPU.
* Added a THANKS file.
* Remove some svn executable properties and add svn keywords.
* Added LINGUAS support and removed the configure.ac > configure.in.in file.
* Improved the configure.in.in and Makefiles.
2007-01-12 Nick Schermer <nick@xfce.org>
* Apply patch from bug 2714. * Apply patch from bug 2714.
* Fix all typo and compiler warnings. * Fix all typo and compiler warnings.
2006-06-26 20:20 Johannes 2006-06-26 Johannes Zellner <webmaster@nebulon.de>
* rewrite of the taskmanager ;) * rewrite of the taskmanager ;)
* now using seperate files for each os to get the processinfos * now using seperate files for each os to get the processinfos
2005-07-05 19:38 Johannes 2005-07-05 Johannes Zellner <webmaster@nebulon.de>
* added finnish translation * added finnish translation
* fixed a memory leak in functions.c * fixed a memory leak in functions.c
2005-06-30 23:47 Johannes 2005-06-30 Johannes Zellner <webmaster@nebulon.de>
* bugfix in the sorting function * bugfix in the sorting function
* name of about-dialog changed * name of about-dialog changed
* scrollbars only showed when needed * scrollbars only showed when needed
2005-06-30 22:09 Johannes 2005-06-30 Johannes Zellner <webmaster@nebulon.de>
* started completly new ;) * started completly new ;)

View File

@@ -1,13 +1,19 @@
# $Id$
SUBDIRS = \
po \
src
distclean-local:
rm -rf *.cache *~
rpm: dist
rpmbuild -ta $(PACKAGE)-$(VERSION).tar.gz
@rm -f $(PACKAGE)-$(VERSION).tar.gz
EXTRA_DIST = \ EXTRA_DIST = \
AUTHORS \ intltool-extract.in \
COPYING \ intltool-merge.in \
ChangeLog \
INSTALL \
NEWS \
README \
TODO \
intltool-extract.in \
intltool-merge.in \
intltool-update.in intltool-update.in
DISTCLEANFILES = \ DISTCLEANFILES = \
@@ -15,8 +21,5 @@ DISTCLEANFILES = \
intltool-merge \ intltool-merge \
intltool-update intltool-update
SUBDIRS = po src
DIST_SUBDIRS = src po
dist-bz2: dist # vi:set ts=8 sw=8 noet ai nocindent syntax=automake:
zcat $(PACKAGE)-$(VERSION).tar.gz | bzip2 --best -c > $(PACKAGE)-$(VERSION).tar.bz2

3
THANKS Normal file
View File

@@ -0,0 +1,3 @@
Patches:
========
Álvaro Lopes <alvieboy@alvie.com>

View File

@@ -2,11 +2,9 @@
# #
# $Id$ # $Id$
# #
# Copyright (c) 2002-2005 # Copyright (c) 2002-2007
# The Xfce development team. All rights reserved. # The Xfce development team. All rights reserved.
# #
# Written for Xfce by Benedikt Meurer <benny@xfce.org>.
#
(type xdt-autogen) >/dev/null 2>&1 || { (type xdt-autogen) >/dev/null 2>&1 || {
cat >&2 <<EOF cat >&2 <<EOF
@@ -18,6 +16,20 @@ EOF
exit 1 exit 1
} }
exec xdt-autogen $@ # verify that po/LINGUAS is present
(test -f po/LINGUAS) >/dev/null 2>&1 || {
cat >&2 <<EOF
autogen.sh: The file po/LINGUAS could not be found. Please check your snapshot
or try to checkout again.
EOF
exit 1
}
# vi:set ts=2 sw=2 et ai: # substitute revision and linguas
linguas=`sed -e '/^#/d' po/LINGUAS`
revision=`LC_ALL=C svn info $0 | awk '/^Revision: / {printf "%05d\n", $2}'`
sed -e "s/@LINGUAS@/${linguas}/g" \
-e "s/@REVISION@/${revision}/g" \
< "configure.in.in" > "configure.in"
exec xdt-autogen $@

View File

@@ -1,46 +0,0 @@
dnl Process this file with autoconf to produce a configure script.
AC_INIT([xfce4-taskmanager], [0.4.0-rc2], [xfce4-taskmanger@nebulon.de])
AM_CONFIG_HEADER([config.h])
AM_INIT_AUTOMAKE([AC_PACKAGE_TARNAME()], [AC_PACKAGE_VERSION()])
AM_MAINTAINER_MODE
AM_INIT_AUTOMAKE(dist-bzip2)
dnl Check for UNIX variants
AC_AIX
AC_ISC_POSIX
AC_MINIX
dnl Check for basic programs
AC_PROG_CC
AC_PROG_INSTALL
dnl Checks for header files.
AC_HEADER_STDC
AC_DISABLE_STATIC
AC_PROG_LIBTOOL
AC_PROG_INTLTOOL
XDT_CHECK_PACKAGE([XFCE4_GUI], [libxfcegui4-1.0], [4.2.0])
XDT_CHECK_PACKAGE([XFCE4_UTIL], [libxfce4util-1.0], [4.2.0])
XDT_CHECK_PACKAGE([GTK], [gtk+-2.0], [2.2.0])
dnl Check for i18n support
XDT_I18N([cs de eu fi fr gl hu ja nl pl pt_BR ru vi zh_TW])
dnl Check for debugging support
BM_DEBUG_SUPPORT()
dnl Checks for library functions.
dnl Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
AC_OUTPUT([
Makefile
src/Makefile
po/Makefile.in
])

79
configure.in.in Normal file
View File

@@ -0,0 +1,79 @@
dnl $Id$
dnl
dnl xfce4-taskmanager - A small taskmanager based on the Xfce 4 libraries.
dnl
dnl 2005-2007 Johannes Zellner <webmaster@nebulon.de>
dnl ***************************
dnl *** Version information ***
dnl ***************************
m4_define([taskmanager_version], [0.4.0-rc2])
dnl ***************************
dnl *** Initialize autoconf ***
dnl ***************************
AC_COPYRIGHT([Copyright (c) 2006-2007
The Xfce development team. All rights reserved.])
AC_INIT([xfce4-taskmanager], [taskmanager_version()], [http://bugzilla.xfce.org/], [xfce4-taskmanager])
AC_PREREQ([2.50])
AC_CANONICAL_TARGET()
AC_REVISION([$Id])
dnl ***************************
dnl *** Initialize automake ***
dnl ***************************
AM_INIT_AUTOMAKE([1.8 dist-bzip2 tar-ustar])
AM_CONFIG_HEADER([config.h])
AM_MAINTAINER_MODE()
dnl *******************************
dnl *** Check for UNIX variants ***
dnl *******************************
AC_AIX()
AC_ISC_POSIX()
AC_MINIX()
dnl ********************************
dnl *** Check for basic programs ***
dnl ********************************
AC_PROG_CC()
AC_PROG_LD()
AC_PROG_INSTALL()
AC_PROG_INTLTOOL()
dnl ************************************
dnl *** Checks for library functions ***
dnl ************************************
AC_DISABLE_STATIC()
AC_C_CONST()
dnl **********************************
dnl *** Check for standard headers ***
dnl **********************************.
AC_HEADER_STDC()
AC_CHECK_HEADERS([dirent.h pwd.h sys/types.h sys/stat.h sys/param.h \
stdio.h stdlib.h string.h unistd.h stdlib.h signal.h])
dnl ******************************
dnl *** Check for i18n support ***
dnl ******************************
XDT_I18N([@LINGUAS@])
dnl ***********************************
dnl *** Check for required packages ***
dnl ***********************************
XDT_CHECK_PACKAGE([LIBXFCEGUI4], [libxfcegui4-1.0], [4.2.0])
XDT_CHECK_PACKAGE([LIBXFCE4UTIL], [libxfce4util-1.0], [4.2.0])
XDT_CHECK_PACKAGE([GTK], [gtk+-2.0], [2.2.0])
dnl ***********************************
dnl *** Check for debugging support ***
dnl ***********************************
BM_DEBUG_SUPPORT()
AC_OUTPUT([
Makefile
src/Makefile
po/Makefile.in
])

View File

@@ -1,3 +1,8 @@
2007-01-13 Nick Schermer <nick@xfce.org>
* LINGUAS: Added LINGUAS support.
* *.po: Regenerated po files.
2006-11-11 Maximilian Schleiss <maxschleiss@bluewin.ch> 2006-11-11 Maximilian Schleiss <maxschleiss@bluewin.ch>
* de.po: Updated the German translation * de.po: Updated the German translation

3
po/LINGUAS Normal file
View File

@@ -0,0 +1,3 @@
# set of available languages (in alphabetic order)
cs de eu fi fr gl hu ja nl pl pt_BR ru vi zh_TW

View File

@@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: xfce4-taskmanager 0.4.0-rc2\n" "Project-Id-Version: xfce4-taskmanager 0.4.0-rc2\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-09-10 21:29+0200\n" "POT-Creation-Date: 2007-01-13 11:01+0100\n"
"PO-Revision-Date: 2006-09-17 09:48+0100\n" "PO-Revision-Date: 2006-09-17 09:48+0100\n"
"Last-Translator: Michal Várady <miko.vaji@gmail.com>\n" "Last-Translator: Michal Várady <miko.vaji@gmail.com>\n"
"Language-Team: Czech <translation-team-cs@lists.sourceforge.net>\n" "Language-Team: Czech <translation-team-cs@lists.sourceforge.net>\n"
@@ -16,80 +16,100 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
#: ../src/interface.c:43 #: ../src/callbacks.c:60
#: ../src/interface.c:257 msgid "Really kill the task?"
msgstr ""
#: ../src/callbacks.c:61
msgid "Really terminate the task?"
msgstr ""
#: ../src/functions.c:124
#, c-format
msgid "%d kB of %d kB used"
msgstr ""
#: ../src/functions.c:129
#, c-format
msgid "%0.0f %%"
msgstr ""
#: ../src/interface.c:45 ../src/interface.c:272
msgid "xfce4-taskmanager" msgid "xfce4-taskmanager"
msgstr "xfce4-taskmanager" msgstr "xfce4-taskmanager"
#: ../src/interface.c:56 #: ../src/interface.c:59
msgid "cpu usage" msgid "cpu usage"
msgstr "využití procesoru" msgstr "využití procesoru"
#: ../src/interface.c:61 #: ../src/interface.c:67
msgid "memory usage" msgid "memory usage"
msgstr "využití paměti" msgstr "využití paměti"
#: ../src/interface.c:91 #: ../src/interface.c:99
msgid "more details" msgid "more details"
msgstr "více podrobností" msgstr "více podrobností"
#: ../src/interface.c:117 #: ../src/interface.c:125
msgid "Command" msgid "Command"
msgstr "Příkaz" msgstr "Příkaz"
#: ../src/interface.c:123 #: ../src/interface.c:131
msgid "PID" msgid "PID"
msgstr "PID" msgstr "PID"
#: ../src/interface.c:129 #: ../src/interface.c:137
msgid "PPID" msgid "PPID"
msgstr "PPID" msgstr "PPID"
#: ../src/interface.c:135 #: ../src/interface.c:143
msgid "State" msgid "State"
msgstr "Stav" msgstr "Stav"
#: ../src/interface.c:141 #: ../src/interface.c:149
msgid "VM-Size" msgid "VM-Size"
msgstr "Velikost virtuální paměti" msgstr "Velikost virtuální paměti"
#: ../src/interface.c:147 #: ../src/interface.c:155
msgid "RSS" msgid "RSS"
msgstr "RSS" msgstr "RSS"
#: ../src/interface.c:153 #: ../src/interface.c:161
msgid "User" msgid "User"
msgstr "Uživatel" msgstr "Uživatel"
#: ../src/interface.c:159 #: ../src/interface.c:167
msgid "CPU%" msgid "CPU%"
msgstr "CPU%" msgstr "CPU%"
#: ../src/interface.c:175 #: ../src/interface.c:183
msgid "Stop" msgid "Stop"
msgstr "Zastavit" msgstr "Zastavit"
#: ../src/interface.c:180 #: ../src/interface.c:188
msgid "Continue" msgid "Continue"
msgstr "Pokračovat" msgstr "Pokračovat"
#: ../src/interface.c:185 #: ../src/interface.c:193
msgid "Term" msgid "Term"
msgstr "Ukončit signálem TERM" msgstr "Ukončit signálem TERM"
#: ../src/interface.c:190 #: ../src/interface.c:198
msgid "Kill" msgid "Kill"
msgstr "Ukončit signálem KILL" msgstr "Ukončit signálem KILL"
#: ../src/interface.c:221 #: ../src/interface.c:230
msgid "Show user tasks" msgid "Show user tasks"
msgstr "Zobrazit úlohy uživatele" msgstr "Zobrazit úlohy uživatele"
#: ../src/interface.c:226 #: ../src/interface.c:235
msgid "Show root tasks" msgid "Show root tasks"
msgstr "Zobrazit úlohy uživatele root" msgstr "Zobrazit úlohy uživatele root"
#: ../src/interface.c:231 #: ../src/interface.c:240
msgid "Show other tasks" msgid "Show other tasks"
msgstr "Zobrazit jiné úlohy" msgstr "Zobrazit jiné úlohy"
#: ../src/interface.c:245
msgid "Show memory used by cache as free"
msgstr ""

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: xfce4-taskmanager 0.4.0-rc1\n" "Project-Id-Version: xfce4-taskmanager 0.4.0-rc1\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-11-11 14:40+0100\n" "POT-Creation-Date: 2007-01-13 11:01+0100\n"
"PO-Revision-Date: 2006-11-11 14:41+0100\n" "PO-Revision-Date: 2006-11-11 14:41+0100\n"
"Last-Translator: Enrico Tröger <enrico.troeger@uvena.de>\n" "Last-Translator: Enrico Tröger <enrico.troeger@uvena.de>\n"
"Language-Team: German <xfce4-dev@xfce.org>\n" "Language-Team: German <xfce4-dev@xfce.org>\n"
@@ -24,77 +24,77 @@ msgstr "Prozess wirklich töten?"
msgid "Really terminate the task?" msgid "Really terminate the task?"
msgstr "Prozess wirklich beenden?" msgstr "Prozess wirklich beenden?"
#: ../src/functions.c:112 #: ../src/functions.c:124
#, c-format #, c-format
msgid "%d kB of %d kB used" msgid "%d kB of %d kB used"
msgstr "%d kB of %d kB benutzt" msgstr "%d kB of %d kB benutzt"
#: ../src/functions.c:117 #: ../src/functions.c:129
#, c-format #, c-format
msgid "%0.0f %%" msgid "%0.0f %%"
msgstr "%0.0f %%" msgstr "%0.0f %%"
#: ../src/interface.c:46 ../src/interface.c:266 #: ../src/interface.c:45 ../src/interface.c:272
msgid "xfce4-taskmanager" msgid "xfce4-taskmanager"
msgstr "xfce4-taskmanager" msgstr "xfce4-taskmanager"
#: ../src/interface.c:60 #: ../src/interface.c:59
msgid "cpu usage" msgid "cpu usage"
msgstr "CPU-Auslastung" msgstr "CPU-Auslastung"
#: ../src/interface.c:68 #: ../src/interface.c:67
msgid "memory usage" msgid "memory usage"
msgstr "Speicherauslastung" msgstr "Speicherauslastung"
#: ../src/interface.c:100 #: ../src/interface.c:99
msgid "more details" msgid "more details"
msgstr "Mehr Info" msgstr "Mehr Info"
#: ../src/interface.c:126 #: ../src/interface.c:125
msgid "Command" msgid "Command"
msgstr "Befehl" msgstr "Befehl"
#: ../src/interface.c:132 #: ../src/interface.c:131
msgid "PID" msgid "PID"
msgstr "PID" msgstr "PID"
#: ../src/interface.c:138 #: ../src/interface.c:137
msgid "PPID" msgid "PPID"
msgstr "PPID" msgstr "PPID"
#: ../src/interface.c:144 #: ../src/interface.c:143
msgid "State" msgid "State"
msgstr "Status" msgstr "Status"
#: ../src/interface.c:150 #: ../src/interface.c:149
msgid "VM-Size" msgid "VM-Size"
msgstr "Speicher" msgstr "Speicher"
#: ../src/interface.c:156 #: ../src/interface.c:155
msgid "RSS" msgid "RSS"
msgstr "RSS" msgstr "RSS"
#: ../src/interface.c:162 #: ../src/interface.c:161
msgid "User" msgid "User"
msgstr "Benutzer" msgstr "Benutzer"
#: ../src/interface.c:168 #: ../src/interface.c:167
msgid "CPU%" msgid "CPU%"
msgstr "CPU%" msgstr "CPU%"
#: ../src/interface.c:184 #: ../src/interface.c:183
msgid "Stop" msgid "Stop"
msgstr "Stop" msgstr "Stop"
#: ../src/interface.c:189 #: ../src/interface.c:188
msgid "Continue" msgid "Continue"
msgstr "Fortsetzen" msgstr "Fortsetzen"
#: ../src/interface.c:194 #: ../src/interface.c:193
msgid "Term" msgid "Term"
msgstr "Beenden" msgstr "Beenden"
#: ../src/interface.c:199 #: ../src/interface.c:198
msgid "Kill" msgid "Kill"
msgstr "Kill" msgstr "Kill"
@@ -109,3 +109,7 @@ msgstr "Zeige System Prozesse"
#: ../src/interface.c:240 #: ../src/interface.c:240
msgid "Show other tasks" msgid "Show other tasks"
msgstr "Zeige Andere Prozesse" msgstr "Zeige Andere Prozesse"
#: ../src/interface.c:245
msgid "Show memory used by cache as free"
msgstr ""

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: eu\n" "Project-Id-Version: eu\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-09-10 21:29+0200\n" "POT-Creation-Date: 2007-01-13 11:01+0100\n"
"PO-Revision-Date: 2006-09-12 22:31+0200\n" "PO-Revision-Date: 2006-09-12 22:31+0200\n"
"Last-Translator: Piarres Beobide <pi@beobide.net>\n" "Last-Translator: Piarres Beobide <pi@beobide.net>\n"
"Language-Team: librezale <librezale@librezale.org>\n" "Language-Team: librezale <librezale@librezale.org>\n"
@@ -18,79 +18,100 @@ msgstr ""
"X-Generator: KBabel 1.11.4\n" "X-Generator: KBabel 1.11.4\n"
"Plural-Forms: nplurals=2; plural=(n != 1)\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n"
#: ../src/interface.c:43 ../src/interface.c:257 #: ../src/callbacks.c:60
msgid "Really kill the task?"
msgstr ""
#: ../src/callbacks.c:61
msgid "Really terminate the task?"
msgstr ""
#: ../src/functions.c:124
#, c-format
msgid "%d kB of %d kB used"
msgstr ""
#: ../src/functions.c:129
#, c-format
msgid "%0.0f %%"
msgstr ""
#: ../src/interface.c:45 ../src/interface.c:272
msgid "xfce4-taskmanager" msgid "xfce4-taskmanager"
msgstr "xfce4-atazakudeatzailea" msgstr "xfce4-atazakudeatzailea"
#: ../src/interface.c:56 #: ../src/interface.c:59
msgid "cpu usage" msgid "cpu usage"
msgstr "cpu erabilera" msgstr "cpu erabilera"
#: ../src/interface.c:61 #: ../src/interface.c:67
msgid "memory usage" msgid "memory usage"
msgstr "memoria erabilera" msgstr "memoria erabilera"
#: ../src/interface.c:91 #: ../src/interface.c:99
msgid "more details" msgid "more details"
msgstr "xehetasun gehiago" msgstr "xehetasun gehiago"
#: ../src/interface.c:117 #: ../src/interface.c:125
msgid "Command" msgid "Command"
msgstr "Komandoa" msgstr "Komandoa"
#: ../src/interface.c:123 #: ../src/interface.c:131
msgid "PID" msgid "PID"
msgstr "PID-a" msgstr "PID-a"
#: ../src/interface.c:129 #: ../src/interface.c:137
msgid "PPID" msgid "PPID"
msgstr "PPID-a" msgstr "PPID-a"
#: ../src/interface.c:135 #: ../src/interface.c:143
msgid "State" msgid "State"
msgstr "Egoera" msgstr "Egoera"
#: ../src/interface.c:141 #: ../src/interface.c:149
msgid "VM-Size" msgid "VM-Size"
msgstr "VM-Tamaina" msgstr "VM-Tamaina"
#: ../src/interface.c:147 #: ../src/interface.c:155
msgid "RSS" msgid "RSS"
msgstr "RSS-a" msgstr "RSS-a"
#: ../src/interface.c:153 #: ../src/interface.c:161
msgid "User" msgid "User"
msgstr "Erabiltzailea" msgstr "Erabiltzailea"
#: ../src/interface.c:159 #: ../src/interface.c:167
msgid "CPU%" msgid "CPU%"
msgstr "CPU%" msgstr "CPU%"
#: ../src/interface.c:175 #: ../src/interface.c:183
msgid "Stop" msgid "Stop"
msgstr "Gelditu" msgstr "Gelditu"
#: ../src/interface.c:180 #: ../src/interface.c:188
msgid "Continue" msgid "Continue"
msgstr "Jarraitu" msgstr "Jarraitu"
#: ../src/interface.c:185 #: ../src/interface.c:193
msgid "Term" msgid "Term"
msgstr "Terminala" msgstr "Terminala"
#: ../src/interface.c:190 #: ../src/interface.c:198
msgid "Kill" msgid "Kill"
msgstr "Hil" msgstr "Hil"
#: ../src/interface.c:221 #: ../src/interface.c:230
msgid "Show user tasks" msgid "Show user tasks"
msgstr "Erabiltzaile atazak bistarazi" msgstr "Erabiltzaile atazak bistarazi"
#: ../src/interface.c:226 #: ../src/interface.c:235
msgid "Show root tasks" msgid "Show root tasks"
msgstr "Root atazak bistarazi" msgstr "Root atazak bistarazi"
#: ../src/interface.c:231 #: ../src/interface.c:240
msgid "Show other tasks" msgid "Show other tasks"
msgstr "Beste atazak bistarazi" msgstr "Beste atazak bistarazi"
#: ../src/interface.c:245
msgid "Show memory used by cache as free"
msgstr ""

View File

@@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: xfce4-taskmanager 0.4.0-rc1\n" "Project-Id-Version: xfce4-taskmanager 0.4.0-rc1\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-09-13 15:30+0300\n" "POT-Creation-Date: 2007-01-13 11:01+0100\n"
"PO-Revision-Date: 2006-09-13 15:33+0300\n" "PO-Revision-Date: 2006-09-13 15:33+0300\n"
"Last-Translator: Jari Rahkonen <jari.rahkonen@pp1.inet.fi>\n" "Last-Translator: Jari Rahkonen <jari.rahkonen@pp1.inet.fi>\n"
"Language-Team: Finnish <translation-team-fi@lists.sourceforge.net>\n" "Language-Team: Finnish <translation-team-fi@lists.sourceforge.net>\n"
@@ -17,78 +17,100 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
#: ../src/interface.c:43 ../src/interface.c:257 #: ../src/callbacks.c:60
msgid "Really kill the task?"
msgstr ""
#: ../src/callbacks.c:61
msgid "Really terminate the task?"
msgstr ""
#: ../src/functions.c:124
#, c-format
msgid "%d kB of %d kB used"
msgstr ""
#: ../src/functions.c:129
#, c-format
msgid "%0.0f %%"
msgstr ""
#: ../src/interface.c:45 ../src/interface.c:272
msgid "xfce4-taskmanager" msgid "xfce4-taskmanager"
msgstr "xfce4-prosessienhallinta" msgstr "xfce4-prosessienhallinta"
#: ../src/interface.c:56 #: ../src/interface.c:59
msgid "cpu usage" msgid "cpu usage"
msgstr "prosessorin käyttö" msgstr "prosessorin käyttö"
#: ../src/interface.c:61 #: ../src/interface.c:67
msgid "memory usage" msgid "memory usage"
msgstr "muistin käyttö" msgstr "muistin käyttö"
#: ../src/interface.c:91 #: ../src/interface.c:99
msgid "more details" msgid "more details"
msgstr "Lisätiedot" msgstr "Lisätiedot"
#: ../src/interface.c:117 #: ../src/interface.c:125
msgid "Command" msgid "Command"
msgstr "Komento" msgstr "Komento"
#: ../src/interface.c:123 #: ../src/interface.c:131
msgid "PID" msgid "PID"
msgstr "PID" msgstr "PID"
#: ../src/interface.c:129 #: ../src/interface.c:137
msgid "PPID" msgid "PPID"
msgstr "PPID" msgstr "PPID"
#: ../src/interface.c:135 #: ../src/interface.c:143
msgid "State" msgid "State"
msgstr "Tila" msgstr "Tila"
#: ../src/interface.c:141 #: ../src/interface.c:149
msgid "VM-Size" msgid "VM-Size"
msgstr "VM-koko" msgstr "VM-koko"
#: ../src/interface.c:147 #: ../src/interface.c:155
msgid "RSS" msgid "RSS"
msgstr "RSS" msgstr "RSS"
#: ../src/interface.c:153 #: ../src/interface.c:161
msgid "User" msgid "User"
msgstr "Käyttäjä" msgstr "Käyttäjä"
#: ../src/interface.c:159 #: ../src/interface.c:167
msgid "CPU%" msgid "CPU%"
msgstr "CPU%" msgstr "CPU%"
#: ../src/interface.c:175 #: ../src/interface.c:183
msgid "Stop" msgid "Stop"
msgstr "Pysäytä" msgstr "Pysäytä"
#: ../src/interface.c:180 #: ../src/interface.c:188
msgid "Continue" msgid "Continue"
msgstr "Jatka" msgstr "Jatka"
#: ../src/interface.c:185 #: ../src/interface.c:193
msgid "Term" msgid "Term"
msgstr "Lopeta" msgstr "Lopeta"
#: ../src/interface.c:190 #: ../src/interface.c:198
msgid "Kill" msgid "Kill"
msgstr "Tapa" msgstr "Tapa"
#: ../src/interface.c:221 #: ../src/interface.c:230
msgid "Show user tasks" msgid "Show user tasks"
msgstr "Näytä käyttäjän prosessit" msgstr "Näytä käyttäjän prosessit"
#: ../src/interface.c:226 #: ../src/interface.c:235
msgid "Show root tasks" msgid "Show root tasks"
msgstr "Näytä pääkäyttäjän prosessit" msgstr "Näytä pääkäyttäjän prosessit"
#: ../src/interface.c:231 #: ../src/interface.c:240
msgid "Show other tasks" msgid "Show other tasks"
msgstr "Näytä muut prosessit" msgstr "Näytä muut prosessit"
#: ../src/interface.c:245
msgid "Show memory used by cache as free"
msgstr ""

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: xfce4-taskmanager 0.4.0-rc1\n" "Project-Id-Version: xfce4-taskmanager 0.4.0-rc1\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-09-10 21:29+0200\n" "POT-Creation-Date: 2007-01-13 11:01+0100\n"
"PO-Revision-Date: 2006-09-11 17:51+0100\n" "PO-Revision-Date: 2006-09-11 17:51+0100\n"
"Last-Translator: Maximilian Schleiss <maxschleiss@bluewin.ch>\n" "Last-Translator: Maximilian Schleiss <maxschleiss@bluewin.ch>\n"
"Language-Team: French <xfce-i18n@xfce.org>\n" "Language-Team: French <xfce-i18n@xfce.org>\n"
@@ -16,80 +16,100 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n" "Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
#: ../src/interface.c:43 #: ../src/callbacks.c:60
#: ../src/interface.c:257 msgid "Really kill the task?"
msgstr ""
#: ../src/callbacks.c:61
msgid "Really terminate the task?"
msgstr ""
#: ../src/functions.c:124
#, c-format
msgid "%d kB of %d kB used"
msgstr ""
#: ../src/functions.c:129
#, c-format
msgid "%0.0f %%"
msgstr ""
#: ../src/interface.c:45 ../src/interface.c:272
msgid "xfce4-taskmanager" msgid "xfce4-taskmanager"
msgstr "Gestionnaire de tâches Xfce4" msgstr "Gestionnaire de tâches Xfce4"
#: ../src/interface.c:56 #: ../src/interface.c:59
msgid "cpu usage" msgid "cpu usage"
msgstr "Utilisation du processeur" msgstr "Utilisation du processeur"
#: ../src/interface.c:61 #: ../src/interface.c:67
msgid "memory usage" msgid "memory usage"
msgstr "Mémoire utilisée" msgstr "Mémoire utilisée"
#: ../src/interface.c:91 #: ../src/interface.c:99
msgid "more details" msgid "more details"
msgstr "Plus de détails" msgstr "Plus de détails"
#: ../src/interface.c:117 #: ../src/interface.c:125
msgid "Command" msgid "Command"
msgstr "Processus" msgstr "Processus"
#: ../src/interface.c:123 #: ../src/interface.c:131
msgid "PID" msgid "PID"
msgstr "PID" msgstr "PID"
#: ../src/interface.c:129 #: ../src/interface.c:137
msgid "PPID" msgid "PPID"
msgstr "PPID" msgstr "PPID"
#: ../src/interface.c:135 #: ../src/interface.c:143
msgid "State" msgid "State"
msgstr "État" msgstr "État"
#: ../src/interface.c:141 #: ../src/interface.c:149
msgid "VM-Size" msgid "VM-Size"
msgstr "Mémoire" msgstr "Mémoire"
#: ../src/interface.c:147 #: ../src/interface.c:155
msgid "RSS" msgid "RSS"
msgstr "RSS" msgstr "RSS"
#: ../src/interface.c:153 #: ../src/interface.c:161
msgid "User" msgid "User"
msgstr "Utilisateur" msgstr "Utilisateur"
#: ../src/interface.c:159 #: ../src/interface.c:167
msgid "CPU%" msgid "CPU%"
msgstr "CPU%" msgstr "CPU%"
#: ../src/interface.c:175 #: ../src/interface.c:183
msgid "Stop" msgid "Stop"
msgstr "Stop" msgstr "Stop"
#: ../src/interface.c:180 #: ../src/interface.c:188
msgid "Continue" msgid "Continue"
msgstr "Continue" msgstr "Continue"
#: ../src/interface.c:185 #: ../src/interface.c:193
msgid "Term" msgid "Term"
msgstr "Terminer" msgstr "Terminer"
#: ../src/interface.c:190 #: ../src/interface.c:198
msgid "Kill" msgid "Kill"
msgstr "Tuer" msgstr "Tuer"
#: ../src/interface.c:221 #: ../src/interface.c:230
msgid "Show user tasks" msgid "Show user tasks"
msgstr "Processus utilisateur" msgstr "Processus utilisateur"
#: ../src/interface.c:226 #: ../src/interface.c:235
msgid "Show root tasks" msgid "Show root tasks"
msgstr "Processus système" msgstr "Processus système"
#: ../src/interface.c:231 #: ../src/interface.c:240
msgid "Show other tasks" msgid "Show other tasks"
msgstr "Autres processus" msgstr "Autres processus"
#: ../src/interface.c:245
msgid "Show memory used by cache as free"
msgstr ""

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: xfce4-taskmanager\n" "Project-Id-Version: xfce4-taskmanager\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-09-10 21:29+0200\n" "POT-Creation-Date: 2007-01-13 11:01+0100\n"
"PO-Revision-Date: 2006-08-17 19:43+0000\n" "PO-Revision-Date: 2006-08-17 19:43+0000\n"
"Last-Translator: Leandro Regueiro <leandro.regueiro@gmail.com>\n" "Last-Translator: Leandro Regueiro <leandro.regueiro@gmail.com>\n"
"Language-Team: Galician <gl@li.org>\n" "Language-Team: Galician <gl@li.org>\n"
@@ -16,78 +16,100 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
#: ../src/interface.c:43 ../src/interface.c:257 #: ../src/callbacks.c:60
msgid "Really kill the task?"
msgstr ""
#: ../src/callbacks.c:61
msgid "Really terminate the task?"
msgstr ""
#: ../src/functions.c:124
#, c-format
msgid "%d kB of %d kB used"
msgstr ""
#: ../src/functions.c:129
#, c-format
msgid "%0.0f %%"
msgstr ""
#: ../src/interface.c:45 ../src/interface.c:272
msgid "xfce4-taskmanager" msgid "xfce4-taskmanager"
msgstr "" msgstr ""
#: ../src/interface.c:56 #: ../src/interface.c:59
msgid "cpu usage" msgid "cpu usage"
msgstr "" msgstr ""
#: ../src/interface.c:61 #: ../src/interface.c:67
msgid "memory usage" msgid "memory usage"
msgstr "" msgstr ""
#: ../src/interface.c:91 #: ../src/interface.c:99
msgid "more details" msgid "more details"
msgstr "" msgstr ""
#: ../src/interface.c:117 #: ../src/interface.c:125
msgid "Command" msgid "Command"
msgstr "" msgstr ""
#: ../src/interface.c:123 #: ../src/interface.c:131
msgid "PID" msgid "PID"
msgstr "PID" msgstr "PID"
#: ../src/interface.c:129 #: ../src/interface.c:137
msgid "PPID" msgid "PPID"
msgstr "PPID" msgstr "PPID"
#: ../src/interface.c:135 #: ../src/interface.c:143
msgid "State" msgid "State"
msgstr "Estado" msgstr "Estado"
#: ../src/interface.c:141 #: ../src/interface.c:149
msgid "VM-Size" msgid "VM-Size"
msgstr "" msgstr ""
#: ../src/interface.c:147 #: ../src/interface.c:155
msgid "RSS" msgid "RSS"
msgstr "" msgstr ""
#: ../src/interface.c:153 #: ../src/interface.c:161
msgid "User" msgid "User"
msgstr "Usuario" msgstr "Usuario"
#: ../src/interface.c:159 #: ../src/interface.c:167
msgid "CPU%" msgid "CPU%"
msgstr "" msgstr ""
#: ../src/interface.c:175 #: ../src/interface.c:183
msgid "Stop" msgid "Stop"
msgstr "" msgstr ""
#: ../src/interface.c:180 #: ../src/interface.c:188
msgid "Continue" msgid "Continue"
msgstr "" msgstr ""
#: ../src/interface.c:185 #: ../src/interface.c:193
msgid "Term" msgid "Term"
msgstr "" msgstr ""
#: ../src/interface.c:190 #: ../src/interface.c:198
msgid "Kill" msgid "Kill"
msgstr "" msgstr ""
#: ../src/interface.c:221 #: ../src/interface.c:230
msgid "Show user tasks" msgid "Show user tasks"
msgstr "Amosar as tarefas do usuario" msgstr "Amosar as tarefas do usuario"
#: ../src/interface.c:226 #: ../src/interface.c:235
msgid "Show root tasks" msgid "Show root tasks"
msgstr "Amosar as tarefas de root" msgstr "Amosar as tarefas de root"
#: ../src/interface.c:231 #: ../src/interface.c:240
msgid "Show other tasks" msgid "Show other tasks"
msgstr "Amosar outras tarefas" msgstr "Amosar outras tarefas"
#: ../src/interface.c:245
msgid "Show memory used by cache as free"
msgstr ""

View File

@@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: xfce4-taskmanager\n" "Project-Id-Version: xfce4-taskmanager\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-09-10 21:29+0200\n" "POT-Creation-Date: 2007-01-13 11:01+0100\n"
"PO-Revision-Date: 2006-11-26 17:43+0100\n" "PO-Revision-Date: 2006-11-26 17:43+0100\n"
"Last-Translator: SZERVÁC Attila <sas@321.hu>\n" "Last-Translator: SZERVÁC Attila <sas@321.hu>\n"
"Language-Team: Hungarian <hu@li.org>\n" "Language-Team: Hungarian <hu@li.org>\n"
@@ -15,80 +15,100 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
#: ../src/interface.c:43 #: ../src/callbacks.c:60
#: ../src/interface.c:257 msgid "Really kill the task?"
msgstr ""
#: ../src/callbacks.c:61
msgid "Really terminate the task?"
msgstr ""
#: ../src/functions.c:124
#, c-format
msgid "%d kB of %d kB used"
msgstr ""
#: ../src/functions.c:129
#, c-format
msgid "%0.0f %%"
msgstr ""
#: ../src/interface.c:45 ../src/interface.c:272
msgid "xfce4-taskmanager" msgid "xfce4-taskmanager"
msgstr "xfce4-folyamatkezelő" msgstr "xfce4-folyamatkezelő"
#: ../src/interface.c:56 #: ../src/interface.c:59
msgid "cpu usage" msgid "cpu usage"
msgstr "cpu használat" msgstr "cpu használat"
#: ../src/interface.c:61 #: ../src/interface.c:67
msgid "memory usage" msgid "memory usage"
msgstr "memória használat" msgstr "memória használat"
#: ../src/interface.c:91 #: ../src/interface.c:99
msgid "more details" msgid "more details"
msgstr "részletek" msgstr "részletek"
#: ../src/interface.c:117 #: ../src/interface.c:125
msgid "Command" msgid "Command"
msgstr "Parancs" msgstr "Parancs"
#: ../src/interface.c:123 #: ../src/interface.c:131
msgid "PID" msgid "PID"
msgstr "PID" msgstr "PID"
#: ../src/interface.c:129 #: ../src/interface.c:137
msgid "PPID" msgid "PPID"
msgstr "PPID" msgstr "PPID"
#: ../src/interface.c:135 #: ../src/interface.c:143
msgid "State" msgid "State"
msgstr "Állapot" msgstr "Állapot"
#: ../src/interface.c:141 #: ../src/interface.c:149
msgid "VM-Size" msgid "VM-Size"
msgstr "VM-méret" msgstr "VM-méret"
#: ../src/interface.c:147 #: ../src/interface.c:155
msgid "RSS" msgid "RSS"
msgstr "RSS" msgstr "RSS"
#: ../src/interface.c:153 #: ../src/interface.c:161
msgid "User" msgid "User"
msgstr "Felhasználó" msgstr "Felhasználó"
#: ../src/interface.c:159 #: ../src/interface.c:167
msgid "CPU%" msgid "CPU%"
msgstr "CPU%" msgstr "CPU%"
#: ../src/interface.c:175 #: ../src/interface.c:183
msgid "Stop" msgid "Stop"
msgstr "Megállítás" msgstr "Megállítás"
#: ../src/interface.c:180 #: ../src/interface.c:188
msgid "Continue" msgid "Continue"
msgstr "Folytatás" msgstr "Folytatás"
#: ../src/interface.c:185 #: ../src/interface.c:193
msgid "Term" msgid "Term"
msgstr "Leállítás" msgstr "Leállítás"
#: ../src/interface.c:190 #: ../src/interface.c:198
msgid "Kill" msgid "Kill"
msgstr "Kilövés" msgstr "Kilövés"
#: ../src/interface.c:221 #: ../src/interface.c:230
msgid "Show user tasks" msgid "Show user tasks"
msgstr "Felhasználói folyamatok megjelenítése" msgstr "Felhasználói folyamatok megjelenítése"
#: ../src/interface.c:226 #: ../src/interface.c:235
msgid "Show root tasks" msgid "Show root tasks"
msgstr "Root folyamatok megjelenítése" msgstr "Root folyamatok megjelenítése"
#: ../src/interface.c:231 #: ../src/interface.c:240
msgid "Show other tasks" msgid "Show other tasks"
msgstr "Más folyamatok megjelenítése" msgstr "Más folyamatok megjelenítése"
#: ../src/interface.c:245
msgid "Show memory used by cache as free"
msgstr ""

View File

@@ -10,7 +10,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: xfce4-taskmanager 0.4.0-rc1\n" "Project-Id-Version: xfce4-taskmanager 0.4.0-rc1\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-09-10 21:29+0200\n" "POT-Creation-Date: 2007-01-13 11:01+0100\n"
"PO-Revision-Date: 2006-04-01 17:57+0900\n" "PO-Revision-Date: 2006-04-01 17:57+0900\n"
"Last-Translator: Daichi Kawahata <daichi@xfce.org>\n" "Last-Translator: Daichi Kawahata <daichi@xfce.org>\n"
"Language-Team: Japanese <xfce-users-jp@ml.fdiary.net>\n" "Language-Team: Japanese <xfce-users-jp@ml.fdiary.net>\n"
@@ -18,78 +18,100 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
#: ../src/interface.c:43 ../src/interface.c:257 #: ../src/callbacks.c:60
msgid "Really kill the task?"
msgstr ""
#: ../src/callbacks.c:61
msgid "Really terminate the task?"
msgstr ""
#: ../src/functions.c:124
#, c-format
msgid "%d kB of %d kB used"
msgstr ""
#: ../src/functions.c:129
#, c-format
msgid "%0.0f %%"
msgstr ""
#: ../src/interface.c:45 ../src/interface.c:272
msgid "xfce4-taskmanager" msgid "xfce4-taskmanager"
msgstr "xfce4-taskmanager" msgstr "xfce4-taskmanager"
#: ../src/interface.c:56 #: ../src/interface.c:59
msgid "cpu usage" msgid "cpu usage"
msgstr "" msgstr ""
#: ../src/interface.c:61 #: ../src/interface.c:67
msgid "memory usage" msgid "memory usage"
msgstr "" msgstr ""
#: ../src/interface.c:91 #: ../src/interface.c:99
msgid "more details" msgid "more details"
msgstr "さらに詳しく" msgstr "さらに詳しく"
#: ../src/interface.c:117 #: ../src/interface.c:125
msgid "Command" msgid "Command"
msgstr "コマンド" msgstr "コマンド"
#: ../src/interface.c:123 #: ../src/interface.c:131
msgid "PID" msgid "PID"
msgstr "PID" msgstr "PID"
#: ../src/interface.c:129 #: ../src/interface.c:137
msgid "PPID" msgid "PPID"
msgstr "PPID" msgstr "PPID"
#: ../src/interface.c:135 #: ../src/interface.c:143
msgid "State" msgid "State"
msgstr "状態" msgstr "状態"
#: ../src/interface.c:141 #: ../src/interface.c:149
msgid "VM-Size" msgid "VM-Size"
msgstr "VMサイズ" msgstr "VMサイズ"
#: ../src/interface.c:147 #: ../src/interface.c:155
msgid "RSS" msgid "RSS"
msgstr "RSS" msgstr "RSS"
#: ../src/interface.c:153 #: ../src/interface.c:161
msgid "User" msgid "User"
msgstr "ユーザー" msgstr "ユーザー"
#: ../src/interface.c:159 #: ../src/interface.c:167
msgid "CPU%" msgid "CPU%"
msgstr "" msgstr ""
#: ../src/interface.c:175 #: ../src/interface.c:183
msgid "Stop" msgid "Stop"
msgstr "中止" msgstr "中止"
#: ../src/interface.c:180 #: ../src/interface.c:188
msgid "Continue" msgid "Continue"
msgstr "続行" msgstr "続行"
#: ../src/interface.c:185 #: ../src/interface.c:193
msgid "Term" msgid "Term"
msgstr "中断" msgstr "中断"
#: ../src/interface.c:190 #: ../src/interface.c:198
msgid "Kill" msgid "Kill"
msgstr "Kill" msgstr "Kill"
#: ../src/interface.c:221 #: ../src/interface.c:230
msgid "Show user tasks" msgid "Show user tasks"
msgstr "ユーザータスクを表示" msgstr "ユーザータスクを表示"
#: ../src/interface.c:226 #: ../src/interface.c:235
msgid "Show root tasks" msgid "Show root tasks"
msgstr "ルートタスクを表示" msgstr "ルートタスクを表示"
#: ../src/interface.c:231 #: ../src/interface.c:240
msgid "Show other tasks" msgid "Show other tasks"
msgstr "その他のタスクを表示" msgstr "その他のタスクを表示"
#: ../src/interface.c:245
msgid "Show memory used by cache as free"
msgstr ""

View File

@@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: xfce 4-taskmanager\n" "Project-Id-Version: xfce 4-taskmanager\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-09-10 21:29+0200\n" "POT-Creation-Date: 2007-01-13 11:01+0100\n"
"PO-Revision-Date: 2007-01-08 13:13+0100\n" "PO-Revision-Date: 2007-01-08 13:13+0100\n"
"Last-Translator: Stephan Arts <stephan@xfce.org>\n" "Last-Translator: Stephan Arts <stephan@xfce.org>\n"
"Language-Team: Dutch <vertaling@vrijschrift.org>\n" "Language-Team: Dutch <vertaling@vrijschrift.org>\n"
@@ -16,78 +16,100 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: ../src/interface.c:43 ../src/interface.c:257 #: ../src/callbacks.c:60
msgid "Really kill the task?"
msgstr ""
#: ../src/callbacks.c:61
msgid "Really terminate the task?"
msgstr ""
#: ../src/functions.c:124
#, c-format
msgid "%d kB of %d kB used"
msgstr ""
#: ../src/functions.c:129
#, c-format
msgid "%0.0f %%"
msgstr ""
#: ../src/interface.c:45 ../src/interface.c:272
msgid "xfce4-taskmanager" msgid "xfce4-taskmanager"
msgstr "xfce4-taakbeheer" msgstr "xfce4-taakbeheer"
#: ../src/interface.c:56 #: ../src/interface.c:59
msgid "cpu usage" msgid "cpu usage"
msgstr "cpu gebruik" msgstr "cpu gebruik"
#: ../src/interface.c:61 #: ../src/interface.c:67
msgid "memory usage" msgid "memory usage"
msgstr "geheugen gebruik" msgstr "geheugen gebruik"
#: ../src/interface.c:91 #: ../src/interface.c:99
msgid "more details" msgid "more details"
msgstr "meer details" msgstr "meer details"
#: ../src/interface.c:117 #: ../src/interface.c:125
msgid "Command" msgid "Command"
msgstr "Commando" msgstr "Commando"
#: ../src/interface.c:123 #: ../src/interface.c:131
msgid "PID" msgid "PID"
msgstr "PID" msgstr "PID"
#: ../src/interface.c:129 #: ../src/interface.c:137
msgid "PPID" msgid "PPID"
msgstr "PPID" msgstr "PPID"
#: ../src/interface.c:135 #: ../src/interface.c:143
msgid "State" msgid "State"
msgstr "Status" msgstr "Status"
#: ../src/interface.c:141 #: ../src/interface.c:149
msgid "VM-Size" msgid "VM-Size"
msgstr "VM-Grootte" msgstr "VM-Grootte"
#: ../src/interface.c:147 #: ../src/interface.c:155
msgid "RSS" msgid "RSS"
msgstr "RSS" msgstr "RSS"
#: ../src/interface.c:153 #: ../src/interface.c:161
msgid "User" msgid "User"
msgstr "Gebruiker" msgstr "Gebruiker"
#: ../src/interface.c:159 #: ../src/interface.c:167
msgid "CPU%" msgid "CPU%"
msgstr "CPU%" msgstr "CPU%"
#: ../src/interface.c:175 #: ../src/interface.c:183
msgid "Stop" msgid "Stop"
msgstr "Stop" msgstr "Stop"
#: ../src/interface.c:180 #: ../src/interface.c:188
msgid "Continue" msgid "Continue"
msgstr "Verder" msgstr "Verder"
#: ../src/interface.c:185 #: ../src/interface.c:193
msgid "Term" msgid "Term"
msgstr "Term" msgstr "Term"
#: ../src/interface.c:190 #: ../src/interface.c:198
msgid "Kill" msgid "Kill"
msgstr "Kill" msgstr "Kill"
#: ../src/interface.c:221 #: ../src/interface.c:230
msgid "Show user tasks" msgid "Show user tasks"
msgstr "Toon gebruikers taken" msgstr "Toon gebruikers taken"
#: ../src/interface.c:226 #: ../src/interface.c:235
msgid "Show root tasks" msgid "Show root tasks"
msgstr "Toon root taken" msgstr "Toon root taken"
#: ../src/interface.c:231 #: ../src/interface.c:240
msgid "Show other tasks" msgid "Show other tasks"
msgstr "Toon andere taken" msgstr "Toon andere taken"
#: ../src/interface.c:245
msgid "Show memory used by cache as free"
msgstr ""

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: xfce4-taskmanager 0.4.0-rc1\n" "Project-Id-Version: xfce4-taskmanager 0.4.0-rc1\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-09-10 21:29+0200\n" "POT-Creation-Date: 2007-01-13 11:01+0100\n"
"PO-Revision-Date: 2006-04-08 13:19+0900\n" "PO-Revision-Date: 2006-04-08 13:19+0900\n"
"Last-Translator: Piotr Maliński <admin@rk.edu.pl>\n" "Last-Translator: Piotr Maliński <admin@rk.edu.pl>\n"
"Language-Team: Polish <translation-team-pl@lists.sourceforge.net>\n" "Language-Team: Polish <translation-team-pl@lists.sourceforge.net>\n"
@@ -16,78 +16,100 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
#: ../src/interface.c:43 ../src/interface.c:257 #: ../src/callbacks.c:60
msgid "Really kill the task?"
msgstr ""
#: ../src/callbacks.c:61
msgid "Really terminate the task?"
msgstr ""
#: ../src/functions.c:124
#, c-format
msgid "%d kB of %d kB used"
msgstr ""
#: ../src/functions.c:129
#, c-format
msgid "%0.0f %%"
msgstr ""
#: ../src/interface.c:45 ../src/interface.c:272
msgid "xfce4-taskmanager" msgid "xfce4-taskmanager"
msgstr "xfce4-taskmanager" msgstr "xfce4-taskmanager"
#: ../src/interface.c:56 #: ../src/interface.c:59
msgid "cpu usage" msgid "cpu usage"
msgstr "wykorzystanie procesora" msgstr "wykorzystanie procesora"
#: ../src/interface.c:61 #: ../src/interface.c:67
msgid "memory usage" msgid "memory usage"
msgstr "wykorzystanie pamięci" msgstr "wykorzystanie pamięci"
#: ../src/interface.c:91 #: ../src/interface.c:99
msgid "more details" msgid "more details"
msgstr "więcej szczegółów" msgstr "więcej szczegółów"
#: ../src/interface.c:117 #: ../src/interface.c:125
msgid "Command" msgid "Command"
msgstr "Polecenie" msgstr "Polecenie"
#: ../src/interface.c:123 #: ../src/interface.c:131
msgid "PID" msgid "PID"
msgstr "PID" msgstr "PID"
#: ../src/interface.c:129 #: ../src/interface.c:137
msgid "PPID" msgid "PPID"
msgstr "PPID" msgstr "PPID"
#: ../src/interface.c:135 #: ../src/interface.c:143
msgid "State" msgid "State"
msgstr "Stan" msgstr "Stan"
#: ../src/interface.c:141 #: ../src/interface.c:149
msgid "VM-Size" msgid "VM-Size"
msgstr "VM-Rozmiar" msgstr "VM-Rozmiar"
#: ../src/interface.c:147 #: ../src/interface.c:155
msgid "RSS" msgid "RSS"
msgstr "RSS" msgstr "RSS"
#: ../src/interface.c:153 #: ../src/interface.c:161
msgid "User" msgid "User"
msgstr "Użytkownik" msgstr "Użytkownik"
#: ../src/interface.c:159 #: ../src/interface.c:167
msgid "CPU%" msgid "CPU%"
msgstr "CPU%" msgstr "CPU%"
#: ../src/interface.c:175 #: ../src/interface.c:183
msgid "Stop" msgid "Stop"
msgstr "Zatrzymaj" msgstr "Zatrzymaj"
#: ../src/interface.c:180 #: ../src/interface.c:188
msgid "Continue" msgid "Continue"
msgstr "Kontynuuj" msgstr "Kontynuuj"
#: ../src/interface.c:185 #: ../src/interface.c:193
msgid "Term" msgid "Term"
msgstr "Konsola" msgstr "Konsola"
#: ../src/interface.c:190 #: ../src/interface.c:198
msgid "Kill" msgid "Kill"
msgstr "Zabij" msgstr "Zabij"
#: ../src/interface.c:221 #: ../src/interface.c:230
msgid "Show user tasks" msgid "Show user tasks"
msgstr "Pokaż procesy użytkownika" msgstr "Pokaż procesy użytkownika"
#: ../src/interface.c:226 #: ../src/interface.c:235
msgid "Show root tasks" msgid "Show root tasks"
msgstr "Pokaż procesy roota" msgstr "Pokaż procesy roota"
#: ../src/interface.c:231 #: ../src/interface.c:240
msgid "Show other tasks" msgid "Show other tasks"
msgstr "Pokaż inne procesy" msgstr "Pokaż inne procesy"
#: ../src/interface.c:245
msgid "Show memory used by cache as free"
msgstr ""

View File

@@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: xfce4-taskmanager 0.4.0-rc1\n" "Project-Id-Version: xfce4-taskmanager 0.4.0-rc1\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-09-10 21:29+0200\n" "POT-Creation-Date: 2007-01-13 11:01+0100\n"
"PO-Revision-Date: 2006-10-22 15:22-0200\n" "PO-Revision-Date: 2006-10-22 15:22-0200\n"
"Last-Translator: Adriano Winter Bess <adriano@xfce.org>\n" "Last-Translator: Adriano Winter Bess <adriano@xfce.org>\n"
"Language-Team: Brazilian Portuguese <xfce-i18n@xfce.org>\n" "Language-Team: Brazilian Portuguese <xfce-i18n@xfce.org>\n"
@@ -17,78 +17,100 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n" "Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
#: ../src/interface.c:43 ../src/interface.c:257 #: ../src/callbacks.c:60
msgid "Really kill the task?"
msgstr ""
#: ../src/callbacks.c:61
msgid "Really terminate the task?"
msgstr ""
#: ../src/functions.c:124
#, c-format
msgid "%d kB of %d kB used"
msgstr ""
#: ../src/functions.c:129
#, c-format
msgid "%0.0f %%"
msgstr ""
#: ../src/interface.c:45 ../src/interface.c:272
msgid "xfce4-taskmanager" msgid "xfce4-taskmanager"
msgstr "xfce4-taskmanager" msgstr "xfce4-taskmanager"
#: ../src/interface.c:56 #: ../src/interface.c:59
msgid "cpu usage" msgid "cpu usage"
msgstr "uso de cpu" msgstr "uso de cpu"
#: ../src/interface.c:61 #: ../src/interface.c:67
msgid "memory usage" msgid "memory usage"
msgstr "uso de memória" msgstr "uso de memória"
#: ../src/interface.c:91 #: ../src/interface.c:99
msgid "more details" msgid "more details"
msgstr "mais detalhes" msgstr "mais detalhes"
#: ../src/interface.c:117 #: ../src/interface.c:125
msgid "Command" msgid "Command"
msgstr "Comando" msgstr "Comando"
#: ../src/interface.c:123 #: ../src/interface.c:131
msgid "PID" msgid "PID"
msgstr "PID" msgstr "PID"
#: ../src/interface.c:129 #: ../src/interface.c:137
msgid "PPID" msgid "PPID"
msgstr "PPID" msgstr "PPID"
#: ../src/interface.c:135 #: ../src/interface.c:143
msgid "State" msgid "State"
msgstr "Status" msgstr "Status"
#: ../src/interface.c:141 #: ../src/interface.c:149
msgid "VM-Size" msgid "VM-Size"
msgstr "Tamanho VM" msgstr "Tamanho VM"
#: ../src/interface.c:147 #: ../src/interface.c:155
msgid "RSS" msgid "RSS"
msgstr "RSS" msgstr "RSS"
#: ../src/interface.c:153 #: ../src/interface.c:161
msgid "User" msgid "User"
msgstr "Usuario" msgstr "Usuario"
#: ../src/interface.c:159 #: ../src/interface.c:167
msgid "CPU%" msgid "CPU%"
msgstr "CPU%" msgstr "CPU%"
#: ../src/interface.c:175 #: ../src/interface.c:183
msgid "Stop" msgid "Stop"
msgstr "Parar" msgstr "Parar"
#: ../src/interface.c:180 #: ../src/interface.c:188
msgid "Continue" msgid "Continue"
msgstr "Continuar" msgstr "Continuar"
#: ../src/interface.c:185 #: ../src/interface.c:193
msgid "Term" msgid "Term"
msgstr "Terminar" msgstr "Terminar"
#: ../src/interface.c:190 #: ../src/interface.c:198
msgid "Kill" msgid "Kill"
msgstr "Matar" msgstr "Matar"
#: ../src/interface.c:221 #: ../src/interface.c:230
msgid "Show user tasks" msgid "Show user tasks"
msgstr "Exibir processos do usuario" msgstr "Exibir processos do usuario"
#: ../src/interface.c:226 #: ../src/interface.c:235
msgid "Show root tasks" msgid "Show root tasks"
msgstr "Exibir processos do root" msgstr "Exibir processos do root"
#: ../src/interface.c:231 #: ../src/interface.c:240
msgid "Show other tasks" msgid "Show other tasks"
msgstr "Exibir outros processos" msgstr "Exibir outros processos"
#: ../src/interface.c:245
msgid "Show memory used by cache as free"
msgstr ""

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: xfce4-taskmanager 0.4.0-rc1\n" "Project-Id-Version: xfce4-taskmanager 0.4.0-rc1\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-09-10 21:29+0200\n" "POT-Creation-Date: 2007-01-13 11:01+0100\n"
"PO-Revision-Date: 2006-03-24 21:52+0500\n" "PO-Revision-Date: 2006-03-24 21:52+0500\n"
"Last-Translator: Andrey Fedoseev <andrey.fedoseev@gmail.com>\n" "Last-Translator: Andrey Fedoseev <andrey.fedoseev@gmail.com>\n"
"Language-Team: Russian <ru@li.org>\n" "Language-Team: Russian <ru@li.org>\n"
@@ -16,78 +16,100 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
#: ../src/interface.c:43 ../src/interface.c:257 #: ../src/callbacks.c:60
msgid "Really kill the task?"
msgstr ""
#: ../src/callbacks.c:61
msgid "Really terminate the task?"
msgstr ""
#: ../src/functions.c:124
#, c-format
msgid "%d kB of %d kB used"
msgstr ""
#: ../src/functions.c:129
#, c-format
msgid "%0.0f %%"
msgstr ""
#: ../src/interface.c:45 ../src/interface.c:272
msgid "xfce4-taskmanager" msgid "xfce4-taskmanager"
msgstr "Диспетчер задач Xfce 4" msgstr "Диспетчер задач Xfce 4"
#: ../src/interface.c:56 #: ../src/interface.c:59
msgid "cpu usage" msgid "cpu usage"
msgstr "" msgstr ""
#: ../src/interface.c:61 #: ../src/interface.c:67
msgid "memory usage" msgid "memory usage"
msgstr "" msgstr ""
#: ../src/interface.c:91 #: ../src/interface.c:99
msgid "more details" msgid "more details"
msgstr "подробнее" msgstr "подробнее"
#: ../src/interface.c:117 #: ../src/interface.c:125
msgid "Command" msgid "Command"
msgstr "Команда" msgstr "Команда"
#: ../src/interface.c:123 #: ../src/interface.c:131
msgid "PID" msgid "PID"
msgstr "PID" msgstr "PID"
#: ../src/interface.c:129 #: ../src/interface.c:137
msgid "PPID" msgid "PPID"
msgstr "PPID" msgstr "PPID"
#: ../src/interface.c:135 #: ../src/interface.c:143
msgid "State" msgid "State"
msgstr "Состояние" msgstr "Состояние"
#: ../src/interface.c:141 #: ../src/interface.c:149
msgid "VM-Size" msgid "VM-Size"
msgstr "Память" msgstr "Память"
#: ../src/interface.c:147 #: ../src/interface.c:155
msgid "RSS" msgid "RSS"
msgstr "RSS" msgstr "RSS"
#: ../src/interface.c:153 #: ../src/interface.c:161
msgid "User" msgid "User"
msgstr "Пользователь" msgstr "Пользователь"
#: ../src/interface.c:159 #: ../src/interface.c:167
msgid "CPU%" msgid "CPU%"
msgstr "" msgstr ""
#: ../src/interface.c:175 #: ../src/interface.c:183
msgid "Stop" msgid "Stop"
msgstr "Остановить" msgstr "Остановить"
#: ../src/interface.c:180 #: ../src/interface.c:188
msgid "Continue" msgid "Continue"
msgstr "Продолжить" msgstr "Продолжить"
#: ../src/interface.c:185 #: ../src/interface.c:193
msgid "Term" msgid "Term"
msgstr "Завершить" msgstr "Завершить"
#: ../src/interface.c:190 #: ../src/interface.c:198
msgid "Kill" msgid "Kill"
msgstr "Убить" msgstr "Убить"
#: ../src/interface.c:221 #: ../src/interface.c:230
msgid "Show user tasks" msgid "Show user tasks"
msgstr "Показать задачи пользователя" msgstr "Показать задачи пользователя"
#: ../src/interface.c:226 #: ../src/interface.c:235
msgid "Show root tasks" msgid "Show root tasks"
msgstr "Показать задачи суперпользователя" msgstr "Показать задачи суперпользователя"
#: ../src/interface.c:231 #: ../src/interface.c:240
msgid "Show other tasks" msgid "Show other tasks"
msgstr "Показать другие задачи" msgstr "Показать другие задачи"
#: ../src/interface.c:245
msgid "Show memory used by cache as free"
msgstr ""

View File

@@ -6,7 +6,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: xfce4-taskmanager 0.4.0-rc1\n" "Project-Id-Version: xfce4-taskmanager 0.4.0-rc1\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-09-10 21:29+0200\n" "POT-Creation-Date: 2007-01-13 11:01+0100\n"
"PO-Revision-Date: 2006-02-19 22:52+0300\n" "PO-Revision-Date: 2006-02-19 22:52+0300\n"
"Last-Translator: Phan Vĩnh Thịnh <teppi@vnlinux.org>\n" "Last-Translator: Phan Vĩnh Thịnh <teppi@vnlinux.org>\n"
"Language-Team: Vietnamese <none@li.org>\n" "Language-Team: Vietnamese <none@li.org>\n"
@@ -15,78 +15,100 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.9.1\n" "X-Generator: KBabel 1.9.1\n"
#: ../src/interface.c:43 ../src/interface.c:257 #: ../src/callbacks.c:60
msgid "Really kill the task?"
msgstr ""
#: ../src/callbacks.c:61
msgid "Really terminate the task?"
msgstr ""
#: ../src/functions.c:124
#, c-format
msgid "%d kB of %d kB used"
msgstr ""
#: ../src/functions.c:129
#, c-format
msgid "%0.0f %%"
msgstr ""
#: ../src/interface.c:45 ../src/interface.c:272
msgid "xfce4-taskmanager" msgid "xfce4-taskmanager"
msgstr "xfce4-taskmanager" msgstr "xfce4-taskmanager"
#: ../src/interface.c:56 #: ../src/interface.c:59
msgid "cpu usage" msgid "cpu usage"
msgstr "" msgstr ""
#: ../src/interface.c:61 #: ../src/interface.c:67
msgid "memory usage" msgid "memory usage"
msgstr "" msgstr ""
#: ../src/interface.c:91 #: ../src/interface.c:99
msgid "more details" msgid "more details"
msgstr "chi tiết hơn" msgstr "chi tiết hơn"
#: ../src/interface.c:117 #: ../src/interface.c:125
msgid "Command" msgid "Command"
msgstr "Câu lệnh" msgstr "Câu lệnh"
#: ../src/interface.c:123 #: ../src/interface.c:131
msgid "PID" msgid "PID"
msgstr "PID" msgstr "PID"
#: ../src/interface.c:129 #: ../src/interface.c:137
msgid "PPID" msgid "PPID"
msgstr "PPID" msgstr "PPID"
#: ../src/interface.c:135 #: ../src/interface.c:143
msgid "State" msgid "State"
msgstr "Trạng thái" msgstr "Trạng thái"
#: ../src/interface.c:141 #: ../src/interface.c:149
msgid "VM-Size" msgid "VM-Size"
msgstr "Kích cỡ-VM" msgstr "Kích cỡ-VM"
#: ../src/interface.c:147 #: ../src/interface.c:155
msgid "RSS" msgid "RSS"
msgstr "RSS" msgstr "RSS"
#: ../src/interface.c:153 #: ../src/interface.c:161
msgid "User" msgid "User"
msgstr "Người dùng" msgstr "Người dùng"
#: ../src/interface.c:159 #: ../src/interface.c:167
msgid "CPU%" msgid "CPU%"
msgstr "" msgstr ""
#: ../src/interface.c:175 #: ../src/interface.c:183
msgid "Stop" msgid "Stop"
msgstr "Dừng" msgstr "Dừng"
#: ../src/interface.c:180 #: ../src/interface.c:188
msgid "Continue" msgid "Continue"
msgstr "Tiếp tục" msgstr "Tiếp tục"
#: ../src/interface.c:185 #: ../src/interface.c:193
msgid "Term" msgid "Term"
msgstr "Thoát" msgstr "Thoát"
#: ../src/interface.c:190 #: ../src/interface.c:198
msgid "Kill" msgid "Kill"
msgstr "Diệt" msgstr "Diệt"
#: ../src/interface.c:221 #: ../src/interface.c:230
msgid "Show user tasks" msgid "Show user tasks"
msgstr "Hiển thị công việc người dùng" msgstr "Hiển thị công việc người dùng"
#: ../src/interface.c:226 #: ../src/interface.c:235
msgid "Show root tasks" msgid "Show root tasks"
msgstr "Hiển thị công việc của root" msgstr "Hiển thị công việc của root"
#: ../src/interface.c:231 #: ../src/interface.c:240
msgid "Show other tasks" msgid "Show other tasks"
msgstr "Hiển thị những công việc khác" msgstr "Hiển thị những công việc khác"
#: ../src/interface.c:245
msgid "Show memory used by cache as free"
msgstr ""

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-09-10 21:29+0200\n" "POT-Creation-Date: 2007-01-13 11:01+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,78 +16,100 @@ msgstr ""
"Content-Type: text/plain; charset=CHARSET\n" "Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
#: ../src/interface.c:43 ../src/interface.c:257 #: ../src/callbacks.c:60
msgid "Really kill the task?"
msgstr ""
#: ../src/callbacks.c:61
msgid "Really terminate the task?"
msgstr ""
#: ../src/functions.c:124
#, c-format
msgid "%d kB of %d kB used"
msgstr ""
#: ../src/functions.c:129
#, c-format
msgid "%0.0f %%"
msgstr ""
#: ../src/interface.c:45 ../src/interface.c:272
msgid "xfce4-taskmanager" msgid "xfce4-taskmanager"
msgstr "" msgstr ""
#: ../src/interface.c:56 #: ../src/interface.c:59
msgid "cpu usage" msgid "cpu usage"
msgstr "" msgstr ""
#: ../src/interface.c:61 #: ../src/interface.c:67
msgid "memory usage" msgid "memory usage"
msgstr "" msgstr ""
#: ../src/interface.c:91 #: ../src/interface.c:99
msgid "more details" msgid "more details"
msgstr "" msgstr ""
#: ../src/interface.c:117 #: ../src/interface.c:125
msgid "Command" msgid "Command"
msgstr "" msgstr ""
#: ../src/interface.c:123 #: ../src/interface.c:131
msgid "PID" msgid "PID"
msgstr "" msgstr ""
#: ../src/interface.c:129 #: ../src/interface.c:137
msgid "PPID" msgid "PPID"
msgstr "" msgstr ""
#: ../src/interface.c:135 #: ../src/interface.c:143
msgid "State" msgid "State"
msgstr "" msgstr ""
#: ../src/interface.c:141 #: ../src/interface.c:149
msgid "VM-Size" msgid "VM-Size"
msgstr "" msgstr ""
#: ../src/interface.c:147 #: ../src/interface.c:155
msgid "RSS" msgid "RSS"
msgstr "" msgstr ""
#: ../src/interface.c:153 #: ../src/interface.c:161
msgid "User" msgid "User"
msgstr "" msgstr ""
#: ../src/interface.c:159 #: ../src/interface.c:167
msgid "CPU%" msgid "CPU%"
msgstr "" msgstr ""
#: ../src/interface.c:175 #: ../src/interface.c:183
msgid "Stop" msgid "Stop"
msgstr "" msgstr ""
#: ../src/interface.c:180 #: ../src/interface.c:188
msgid "Continue" msgid "Continue"
msgstr "" msgstr ""
#: ../src/interface.c:185 #: ../src/interface.c:193
msgid "Term" msgid "Term"
msgstr "" msgstr ""
#: ../src/interface.c:190 #: ../src/interface.c:198
msgid "Kill" msgid "Kill"
msgstr "" msgstr ""
#: ../src/interface.c:221 #: ../src/interface.c:230
msgid "Show user tasks" msgid "Show user tasks"
msgstr "" msgstr ""
#: ../src/interface.c:226 #: ../src/interface.c:235
msgid "Show root tasks" msgid "Show root tasks"
msgstr "" msgstr ""
#: ../src/interface.c:231 #: ../src/interface.c:240
msgid "Show other tasks" msgid "Show other tasks"
msgstr "" msgstr ""
#: ../src/interface.c:245
msgid "Show memory used by cache as free"
msgstr ""

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: xfce4-taskmanager 0.4.0-rc1\n" "Project-Id-Version: xfce4-taskmanager 0.4.0-rc1\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-09-10 21:29+0200\n" "POT-Creation-Date: 2007-01-13 11:01+0100\n"
"PO-Revision-Date: 2006-07-29 00:09+0800\n" "PO-Revision-Date: 2006-07-29 00:09+0800\n"
"Last-Translator: Cosmo Chene <cosmolax@ubuntu.org.tw>\n" "Last-Translator: Cosmo Chene <cosmolax@ubuntu.org.tw>\n"
"Language-Team: Tradictional Chinese <zh-l10n@linux.org.tw>\n" "Language-Team: Tradictional Chinese <zh-l10n@linux.org.tw>\n"
@@ -16,78 +16,100 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
#: ../src/interface.c:43 ../src/interface.c:257 #: ../src/callbacks.c:60
msgid "Really kill the task?"
msgstr ""
#: ../src/callbacks.c:61
msgid "Really terminate the task?"
msgstr ""
#: ../src/functions.c:124
#, c-format
msgid "%d kB of %d kB used"
msgstr ""
#: ../src/functions.c:129
#, c-format
msgid "%0.0f %%"
msgstr ""
#: ../src/interface.c:45 ../src/interface.c:272
msgid "xfce4-taskmanager" msgid "xfce4-taskmanager"
msgstr "xfce4-工作管理員" msgstr "xfce4-工作管理員"
#: ../src/interface.c:56 #: ../src/interface.c:59
msgid "cpu usage" msgid "cpu usage"
msgstr "" msgstr ""
#: ../src/interface.c:61 #: ../src/interface.c:67
msgid "memory usage" msgid "memory usage"
msgstr "" msgstr ""
#: ../src/interface.c:91 #: ../src/interface.c:99
msgid "more details" msgid "more details"
msgstr "更多細節" msgstr "更多細節"
#: ../src/interface.c:117 #: ../src/interface.c:125
msgid "Command" msgid "Command"
msgstr "命令" msgstr "命令"
#: ../src/interface.c:123 #: ../src/interface.c:131
msgid "PID" msgid "PID"
msgstr "PID" msgstr "PID"
#: ../src/interface.c:129 #: ../src/interface.c:137
msgid "PPID" msgid "PPID"
msgstr "PPID" msgstr "PPID"
#: ../src/interface.c:135 #: ../src/interface.c:143
msgid "State" msgid "State"
msgstr "狀態" msgstr "狀態"
#: ../src/interface.c:141 #: ../src/interface.c:149
msgid "VM-Size" msgid "VM-Size"
msgstr "虛擬記憶體容量" msgstr "虛擬記憶體容量"
#: ../src/interface.c:147 #: ../src/interface.c:155
msgid "RSS" msgid "RSS"
msgstr "RSS" msgstr "RSS"
#: ../src/interface.c:153 #: ../src/interface.c:161
msgid "User" msgid "User"
msgstr "使用者" msgstr "使用者"
#: ../src/interface.c:159 #: ../src/interface.c:167
msgid "CPU%" msgid "CPU%"
msgstr "CPU%" msgstr "CPU%"
#: ../src/interface.c:175 #: ../src/interface.c:183
msgid "Stop" msgid "Stop"
msgstr "停止" msgstr "停止"
#: ../src/interface.c:180 #: ../src/interface.c:188
msgid "Continue" msgid "Continue"
msgstr "繼續" msgstr "繼續"
#: ../src/interface.c:185 #: ../src/interface.c:193
msgid "Term" msgid "Term"
msgstr "Term" msgstr "Term"
#: ../src/interface.c:190 #: ../src/interface.c:198
msgid "Kill" msgid "Kill"
msgstr "強行中止" msgstr "強行中止"
#: ../src/interface.c:221 #: ../src/interface.c:230
msgid "Show user tasks" msgid "Show user tasks"
msgstr "顯示使用者工作" msgstr "顯示使用者工作"
#: ../src/interface.c:226 #: ../src/interface.c:235
msgid "Show root tasks" msgid "Show root tasks"
msgstr "顯示 root 工作" msgstr "顯示 root 工作"
#: ../src/interface.c:231 #: ../src/interface.c:240
msgid "Show other tasks" msgid "Show other tasks"
msgstr "顯示其他工作" msgstr "顯示其他工作"
#: ../src/interface.c:245
msgid "Show memory used by cache as free"
msgstr ""

View File

@@ -1,27 +1,33 @@
@SET_MAKE@ # $Id$
INCLUDES = -I$(top_srcdir)/include INCLUDES = \
-I$(top_srcdir)/include \
-DG_LOG_DOMAIN=\"xfce4-taskmanager\" \
-DPACKAGE_LOCALE_DIR=\"$(localedir)\"
bin_PROGRAMS = xfce4-taskmanager bin_PROGRAMS = \
xfce4-taskmanager
xfce4_taskmanager_SOURCES = \ xfce4_taskmanager_SOURCES = \
main.c \ main.c \
callbacks.c callbacks.h \ callbacks.c \
functions.c functions.h \ callbacks.h \
interface.c interface.h \ functions.c \
xfce-taskmanager-linux.c xfce-taskmanager-linux.h \ functions.h \
interface.c \
interface.h \
xfce-taskmanager-linux.c \
xfce-taskmanager-linux.h \
types.h types.h
xfce4_taskmanager_CFLAGS = \ xfce4_taskmanager_CFLAGS = \
-DPACKAGE_LOCALE_DIR=\"$(localedir)\" \ $(LIBXFCEGUI4_CFLAGS) \
@XFCE4_GUI_CFLAGS@ \ $(LIBXFCE4UTIL_CFLAGS) \
@GTK_CFLAGS@ $(GTK_CFLAGS)
xfce4_taskmanager_LDADD = \ xfce4_taskmanager_LDADD = \
@XFCE4_GUI_LIBS@ \ $(LIBXFCEGUI4_LIBS) \
@GTK_LIBS@ $(LIBXFCE4UTIL_LIBS) \
$(GTK_LIBS)
ACLOCAL_AMFLAGS = -I m4 # vi:set ts=8 sw=8 noet ai nocindent syntax=automake:
dist-bz2: dist
zcat $(PACKAGE)-$(VERSION).tar.gz | bzip2 --best -c > $(PACKAGE)-$(VERSION).tar.bz2

View File

@@ -11,7 +11,7 @@
* This program is distributed in the hope that it will be useful, * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Library General Public License for more details. * GNU Library General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software * along with this program; if not, write to the Free Software

View File

@@ -1,21 +1,20 @@
/* /* $Id$
* xfce4-taskmanager - very simple taskmanger
* *
* Copyright (c) 2006 Johannes Zellner, <webmaster@nebulon.de> * Copyright (c) 2006 Johannes Zellner, <webmaster@nebulon.de>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Library General Public License for more details. * GNU Library General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
#include "functions.h" #include "functions.h"
@@ -29,8 +28,14 @@ gboolean refresh_task_list(void)
GArray *new_task_list; GArray *new_task_list;
gchar *cpu_tooltip, *mem_tooltip; gchar *cpu_tooltip, *mem_tooltip;
gdouble cpu_usage; gdouble cpu_usage;
guint num_cpus;
guint memory_used; guint memory_used;
if (sys_stat!=NULL)
num_cpus = sys_stat->cpu_count;
else
num_cpus = 1;
/* gets the new task list */ /* gets the new task list */
new_task_list = (GArray*) get_task_list(); new_task_list = (GArray*) get_task_list();
@@ -50,8 +55,7 @@ gboolean refresh_task_list(void)
tmp->time = new_tmp->time; tmp->time = new_tmp->time;
tmp->time_percentage = (gdouble)(tmp->time - tmp->old_time) * (gdouble)(1000.0 / (REFRESH_INTERVAL*num_cpus));
tmp->time_percentage = (gdouble)(tmp->time - tmp->old_time) * (gdouble)(1000.0 / REFRESH_INTERVAL);
if((gint)tmp->ppid != (gint)new_tmp->ppid || strcmp(tmp->state,new_tmp->state) || (unsigned int)tmp->size != (unsigned int)new_tmp->size || (unsigned int)tmp->rss != (unsigned int)new_tmp->rss || (unsigned int)tmp->time != (unsigned int)tmp->old_time) if((gint)tmp->ppid != (gint)new_tmp->ppid || strcmp(tmp->state,new_tmp->state) || (unsigned int)tmp->size != (unsigned int)new_tmp->size || (unsigned int)tmp->rss != (unsigned int)new_tmp->rss || (unsigned int)tmp->time != (unsigned int)tmp->old_time)
{ {
tmp->ppid = new_tmp->ppid; tmp->ppid = new_tmp->ppid;

View File

@@ -1,21 +1,20 @@
/* /* $Id$
* xfce4-taskmanager - very simple taskmanger
* *
* Copyright (c) 2005 Johannes Zellner, <webmaster@nebulon.de> * Copyright (c) 2006 Johannes Zellner, <webmaster@nebulon.de>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Library General Public License for more details. * GNU Library General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
#ifndef FUNCTIONS_H #ifndef FUNCTIONS_H

View File

@@ -1,21 +1,20 @@
/* /* $Id$
* xfce4-taskmanager - very simple taskmanger
* *
* Copyright (c) 2006 Johannes Zellner, <webmaster@nebulon.de> * Copyright (c) 2006 Johannes Zellner, <webmaster@nebulon.de>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Library General Public License for more details. * GNU Library General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
#include "interface.h" #include "interface.h"

View File

@@ -1,21 +1,20 @@
/* /* $Id$
* xfce4-taskmanager - very simple taskmanger
* *
* Copyright (c) 2006 Johannes Zellner, <webmaster@nebulon.de> * Copyright (c) 2006 Johannes Zellner, <webmaster@nebulon.de>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Library General Public License for more details. * GNU Library General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
#ifndef INTERFACE_H #ifndef INTERFACE_H

View File

@@ -1,21 +1,20 @@
/* /* $Id$
* xfce4-taskmanager - very simple taskmanger
* *
* Copyright (c) 2006 Johannes Zellner, <webmaster@nebulon.de> * Copyright (c) 2006 Johannes Zellner, <webmaster@nebulon.de>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Library General Public License for more details. * GNU Library General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H

View File

@@ -1,21 +1,20 @@
/* /* $Id$
* xfce4-taskmanager - very simple taskmanger
* *
* Copyright (c) 2006 Johannes Zellner, <webmaster@nebulon.de> * Copyright (c) 2006 Johannes Zellner, <webmaster@nebulon.de>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Library General Public License for more details. * GNU Library General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
#ifndef TYPES_H #ifndef TYPES_H

18
src/xfce-taskmanager-linux.c Executable file → Normal file
View File

@@ -1,3 +1,21 @@
/* $Id$
*
* Copyright (c) 2006 Johannes Zellner, <webmaster@nebulon.de>
*
* This program 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.
*
* This program 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 Library General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include "xfce-taskmanager-linux.h" #include "xfce-taskmanager-linux.h"

21
src/xfce-taskmanager-linux.h Executable file → Normal file
View File

@@ -1,3 +1,22 @@
/* $Id$
*
* Copyright (c) 2006 Johannes Zellner, <webmaster@nebulon.de>
*
* This program 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.
*
* This program 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 Library General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#ifndef LINUX_H #ifndef LINUX_H
#define LINUX_H #define LINUX_H
@@ -12,7 +31,7 @@
#include "types.h" #include "types.h"
struct task get_task_details(gint pid); struct task get_task_details(gint pid);
GArray *get_task_list(void); GArray *get_task_list(void);
gboolean get_system_status(system_status *sys_stat); gboolean get_system_status(system_status *sys_stat);
gboolean get_cpu_usage_from_proc(system_status *sys_stat); gboolean get_cpu_usage_from_proc(system_status *sys_stat);