[Goodies-commits] r3299 - in xfce4-fsguard-plugin/trunk: . panel-plugin po

Mike Massonnet mmassonnet at xfce.org
Thu Oct 4 18:01:07 CEST 2007


Author: mmassonnet
Date: 2007-10-04 16:01:07 +0000 (Thu, 04 Oct 2007)
New Revision: 3299

Added:
   xfce4-fsguard-plugin/trunk/TODO
Modified:
   xfce4-fsguard-plugin/trunk/AUTHORS
   xfce4-fsguard-plugin/trunk/README
   xfce4-fsguard-plugin/trunk/autogen.sh
   xfce4-fsguard-plugin/trunk/configure.in.in
   xfce4-fsguard-plugin/trunk/panel-plugin/Makefile.am
   xfce4-fsguard-plugin/trunk/panel-plugin/fsguard.c
   xfce4-fsguard-plugin/trunk/po/ChangeLog
   xfce4-fsguard-plugin/trunk/po/LINGUAS
   xfce4-fsguard-plugin/trunk/po/ca.po
   xfce4-fsguard-plugin/trunk/po/cs.po
   xfce4-fsguard-plugin/trunk/po/de.po
   xfce4-fsguard-plugin/trunk/po/en_GB.po
   xfce4-fsguard-plugin/trunk/po/eu.po
   xfce4-fsguard-plugin/trunk/po/fr.po
   xfce4-fsguard-plugin/trunk/po/gl.po
   xfce4-fsguard-plugin/trunk/po/hu.po
   xfce4-fsguard-plugin/trunk/po/ja.po
   xfce4-fsguard-plugin/trunk/po/ko.po
   xfce4-fsguard-plugin/trunk/po/lt.po
   xfce4-fsguard-plugin/trunk/po/nb_NO.po
   xfce4-fsguard-plugin/trunk/po/pl.po
   xfce4-fsguard-plugin/trunk/po/pt_BR.po
   xfce4-fsguard-plugin/trunk/po/pt_PT.po
   xfce4-fsguard-plugin/trunk/po/sq.po
   xfce4-fsguard-plugin/trunk/po/sv.po
   xfce4-fsguard-plugin/trunk/po/uk.po
   xfce4-fsguard-plugin/trunk/po/vi.po
   xfce4-fsguard-plugin/trunk/po/xfce4-fsguard-plugin.pot
   xfce4-fsguard-plugin/trunk/po/zh_TW.po
Log:
	* fsguard.c: Code cleaning in general.
	* fsguard.c(typedef struct FsGuard): Dropped size and
	  orientation, and renamed some properties.  Added 3 new
	  widgets: a progress bar, a box for the progress bar, and a
	  label for the free space.
	* fsguard.c(fsguard_check_fs): Add total size in the tooltip.
	* fsguard.c(setup_fsguard): Renamed to fsguard_new.  Read the
	  config there to create a new plugin with better default
	  values.  Create the widget for the name and avoid to destroy
	  it in fsguard_recreate_gui.
	* fsguard.c(fsguard_recreate_gui): Renamed to 
	  fsguard_refresh_name.
	* fsguard.c(setup_fsguard), fsguard.c(fsguard_set_orientation):
	  Replace orientation code with an XfceHVBox widget.
	* fsguard.c(fsguard_create_options): String modifications.  Two
	  new checkboxes to display the size and progress bar.
	* po/: Run make update-po and update fuzzy strings.


Modified: xfce4-fsguard-plugin/trunk/AUTHORS
===================================================================
--- xfce4-fsguard-plugin/trunk/AUTHORS	2007-10-04 13:24:02 UTC (rev 3298)
+++ xfce4-fsguard-plugin/trunk/AUTHORS	2007-10-04 16:01:07 UTC (rev 3299)
@@ -1,3 +1,4 @@
 Stefan Ott <stefan at desire.ch>
 Andre Lerche <a.lerche at gmx.net>
 Benedikt Meurer <benedikt.meurer at unix-ag.uni-siegen.de>
+Mike Massonnet <mmassonnet at xfce.org>

Modified: xfce4-fsguard-plugin/trunk/README
===================================================================
--- xfce4-fsguard-plugin/trunk/README	2007-10-04 13:24:02 UTC (rev 3298)
+++ xfce4-fsguard-plugin/trunk/README	2007-10-04 16:01:07 UTC (rev 3299)
@@ -1,5 +1,45 @@
-This is a little XFce Plugin, which checks the free space on the chosen mountpoint frequently.
-If free space <= alarm limit it displays a red icon and a warning message.
-If free space >= alarm limit and <= warn limit it displays a yellow icon.
-Otherwise it displays a green icon.
-<Button 1> click starts xffm on the chosen mountpoint.
+ FSGuard
+=========
+
+The FSGuard panel plugin checks free space on a chosen mount point
+frequently and displays a message when a limit is reached.  There are
+two limits: a warning limit, and an urgent limit.
+
+The icon button can be clicked to open the chosen mount point.
+
+
+ Homepage
+----------
+
+http://goodies.xfce.org/projects/panel-plugins/xfce4-fsguard-plugin
+
+
+ Dependencies
+--------------
+
+* libgtk+2 2.6
+* libxfcegui4 4.4.0
+* libxfce4util 4.4.0
+* libxfce4panel 4.4.0
+
+ Install
+---------
+
+% tar xf xfce4-fsguard-plugin-<version>.tar.gz
+% ./configure
+% make
+% make install
+
+See the INSTALL file for more instructions.
+
+
+ Report bugs
+-------------
+You can report bugs and feature requests on http://bugzilla.xfce.org/.
+Select the product “Xfce Panel Plugins” and the component “fsguard”.
+
+Feature requests are always welcome.
+
+You can also join the Xfce Goodies mailing-list at this address:
+http://foo-projects.org/mailman/listinfo/goodies-dev.
+

Added: xfce4-fsguard-plugin/trunk/TODO
===================================================================
--- xfce4-fsguard-plugin/trunk/TODO	                        (rev 0)
+++ xfce4-fsguard-plugin/trunk/TODO	2007-10-04 16:01:07 UTC (rev 3299)
@@ -0,0 +1,4 @@
+- Use a nicer icon (work in progress)
+- Mix the two labels name+size, separate them with \n
+? Possibility to hide the icon so it fits the same gui as netload,
+  systemload, ...

Modified: xfce4-fsguard-plugin/trunk/autogen.sh
===================================================================
--- xfce4-fsguard-plugin/trunk/autogen.sh	2007-10-04 13:24:02 UTC (rev 3298)
+++ xfce4-fsguard-plugin/trunk/autogen.sh	2007-10-04 16:01:07 UTC (rev 3299)
@@ -27,6 +27,13 @@
   exit 1
 }
 
+# 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 $@
 
 # vi:set ts=2 sw=2 et ai:

Modified: xfce4-fsguard-plugin/trunk/configure.in.in
===================================================================
--- xfce4-fsguard-plugin/trunk/configure.in.in	2007-10-04 13:24:02 UTC (rev 3298)
+++ xfce4-fsguard-plugin/trunk/configure.in.in	2007-10-04 16:01:07 UTC (rev 3299)
@@ -1,17 +1,24 @@
-dnl configure.ac
+dnl $Id$
 dnl
 dnl xfce4-fsguard-plugin - <Plugin for xfce4-panel>
 dnl
 dnl 2003 Benedikt Meurer <benedikt.meurer at unix-ag.uni-siegen.de>
-dnl 2006 Mike Massonnet <mmassonnet at gmail.com>
+dnl 2007 Mike Massonnet <mmassonnet at gmail.com>
 dnl
 
-m4_define([fsguard_version],[0.3.99])
+m4_define([xfce4_fsguard_plugin_version_major], [0])
+m4_define([xfce4_fsguard_plugin_version_minor], [3])
+m4_define([xfce4_fsguard_plugin_version_micro], [99])
+m4_define([xfce4_fsguard_plugin_version_nano], [1])
+m4_define([xfce4_fsguard_plugin_version_build], [r at REVISION@])
+m4_define([xfce4_fsguard_plugin_version_tag], [svn]) # Leave empty for releases
+m4_define([xfce4_fsguard_plugin_version], [xfce4_fsguard_plugin_version_major().xfce4_fsguard_plugin_version_minor().xfce4_fsguard_plugin_version_micro()ifelse(xfce4_fsguard_plugin_version_nano(), [], [], [.xfce4_fsguard_plugin_version_nano()])ifelse(xfce4_fsguard_plugin_version_tag(), [svn], [xfce4_fsguard_plugin_version_tag()-xfce4_fsguard_plugin_version_build()], [xfce4_fsguard_plugin_version_tag()])])
 
-AC_INIT([xfce4-fsguard-plugin], [fsguard_version()],
+
+AC_INIT([xfce4-fsguard-plugin], [xfce4_fsguard_plugin_version()],
         [goodies-dev at xfce.org])
 
-AM_INIT_AUTOMAKE([xfce4-fsguard-plugin], [fsguard_version()])
+AM_INIT_AUTOMAKE([xfce4-fsguard-plugin], [xfce4_fsguard_plugin_version()])
 AM_CONFIG_HEADER([config.h])
 AM_MAINTAINER_MODE
 
@@ -38,7 +45,10 @@
 XDT_CHECK_LIBX11_REQUIRE
 
 dnl configure the panel plugin
-XDT_CHECK_PACKAGE([LIBXFCE4PANEL], [libxfce4panel-1.0], [4.3.99])
+XDT_CHECK_PACKAGE([GTK], [gtk+-2.0], [2.6.0])
+XDT_CHECK_PACKAGE([LIBXFCEGUI4], [libxfcegui4-1.0], [4.4.0])
+XDT_CHECK_PACKAGE([LIBXFCE4UTIL], [libxfce4util-1.0], [4.4.0])
+XDT_CHECK_PACKAGE([LIBXFCE4PANEL], [libxfce4panel-1.0], [4.4.0])
 
 dnl check for i18n support
 XDT_I18N([@LINGUAS@])

Modified: xfce4-fsguard-plugin/trunk/panel-plugin/Makefile.am
===================================================================
--- xfce4-fsguard-plugin/trunk/panel-plugin/Makefile.am	2007-10-04 13:24:02 UTC (rev 3298)
+++ xfce4-fsguard-plugin/trunk/panel-plugin/Makefile.am	2007-10-04 16:01:07 UTC (rev 3299)
@@ -5,7 +5,7 @@
 	-DPACKAGE_LOCALE_DIR=\"$(localedir)\"						\
 	@LIBXFCE4PANEL_CFLAGS@
 
-xfce4_fsguard_plugin_LDFLAGS =									\
+xfce4_fsguard_plugin_LDADD =									\
 	@LIBXFCE4PANEL_LIBS@
 
 xfce4_fsguard_plugin_SOURCES =									\

Modified: xfce4-fsguard-plugin/trunk/panel-plugin/fsguard.c
===================================================================
--- xfce4-fsguard-plugin/trunk/panel-plugin/fsguard.c	2007-10-04 13:24:02 UTC (rev 3298)
+++ xfce4-fsguard-plugin/trunk/panel-plugin/fsguard.c	2007-10-04 16:01:07 UTC (rev 3299)
@@ -48,6 +48,7 @@
 #include <libxfce4util/libxfce4util.h>
 #include <libxfcegui4/libxfcegui4.h>
 #include <libxfce4panel/xfce-panel-plugin.h>
+#include <libxfce4panel/xfce-hvbox.h>
 
 #include "icons.h"
 
@@ -72,21 +73,24 @@
 
 typedef struct
 {
-    XfcePanelPlugin *plugin;
+    XfcePanelPlugin    *plugin;
+    gboolean            seen;
+    gint                timeout;
+    gint                limit_warning;
+    gint                limit_urgent;
+    gboolean            show_size;
+    gboolean            show_progress_bar;
+    gchar              *name;
+    gchar              *path;
+    gchar              *filemanager;
 
-    GtkWidget	    *fs;
-    GtkWidget       *box;
-    GtkWidget	    *ebox;
-    GtkWidget       *lab;
-    gboolean        seen;
-    gint            size;
-    gint            timeout;
-    gint            yellow;
-    gint            red;
-    GtkOrientation  orientation;
-    gchar           *label;
-    gchar           *mnt;
-    gchar 	    *filemanager;
+    GtkWidget          *ebox;
+    GtkWidget          *box;
+    GtkWidget          *lab_name;
+    GtkWidget          *btn_panel;
+    GtkWidget          *pb_box;
+    GtkWidget          *progress_bar;
+    GtkWidget          *lab_size;
 } FsGuard;
 
 static GtkTooltips *tooltips = NULL;
@@ -96,23 +100,13 @@
 // all functions {{{
 
 static void
-fsguard_recreate_gui (gpointer data)
+fsguard_refresh_name (FsGuard *fsguard)
 {
-    FsGuard *fsguard = data;
-    if (fsguard->label != NULL && (strlen (fsguard->label) > 0)) {
-        if (fsguard->lab == NULL) {
-            fsguard->lab = gtk_label_new (fsguard->label);
-	    gtk_widget_show (fsguard->lab);
-            gtk_box_pack_start (GTK_BOX(fsguard->box), fsguard->lab, FALSE, FALSE, 0);
-	    gtk_box_reorder_child (GTK_BOX(fsguard->box), fsguard->lab, 0);
-	} 
-
-        gtk_label_set_text (GTK_LABEL(fsguard->lab), fsguard->label);
+    if (fsguard->name != NULL && (strlen (fsguard->name) > 0)) {
+        gtk_label_set_text (GTK_LABEL(fsguard->lab_name), fsguard->name);
+        gtk_widget_show (fsguard->lab_name);
     } else {
-        if (GTK_IS_WIDGET (fsguard->lab)) {
-            gtk_widget_destroy (fsguard->lab);
-	    fsguard->lab = NULL;
-	}
+        gtk_widget_hide (fsguard->lab_name);
     }
 }
 
@@ -125,120 +119,192 @@
         return;
     }
     cmd = g_string_new (fsguard->filemanager);
-    if (fsguard->mnt != NULL && (strcmp(fsguard->mnt, ""))) {
+    if (fsguard->path != NULL && (strcmp(fsguard->path, ""))) {
         g_string_append (cmd, " ");
-        g_string_append (cmd, fsguard->mnt);
+        g_string_append (cmd, fsguard->path);
     }
     xfce_exec (cmd->str, FALSE, FALSE, NULL);
     g_string_free (cmd, TRUE);
 }
 
 static gboolean
-fsguard_check_fs (gpointer data)
+fsguard_check_fs (FsGuard *fsguard)
 {
-    GdkPixbuf *pb;
-    float size = 0;
-    float freeblocks = 0;
-    long blocksize;
-    int err;
-    gchar msg[100];
+    GdkPixbuf          *pb;
+    float               size = 0;
+    float               total = 0;
+    float               freeblocks = 0;
+    float               totalblocks = 0;
+    long                blocksize;
+    int                 err;
+    gchar               msg_size[100], msg_total_size[100], msg[100];
     static struct statfs fsd;
-    FsGuard *fsguard = data;
 
-    err = statfs (fsguard->mnt, &fsd);
+    err = statfs (fsguard->path, &fsd);
     
     if (err != -1) {
         blocksize = fsd.f_bsize;
         freeblocks = fsd.f_bavail;
+        totalblocks = fsd.f_blocks;
         size = (freeblocks * blocksize) / 1048576;
-        if (size <= fsguard->red) {
+        total = (totalblocks * blocksize) / 1048576;
+
+        if (total > 1024) {
+            g_snprintf (msg_total_size, sizeof (msg_total_size), _("%.2f GB"), total/1024);
+        } else {
+            g_snprintf (msg_total_size, sizeof (msg_total_size), _("%.2f MB"), total);
+        }
+        if (size > 1024) {
+            g_snprintf (msg_size, sizeof (msg_size), _("%.2f GB"), size/1024);
+        } else {
+            g_snprintf (msg_size, sizeof (msg_size), _("%.2f MB"), size);
+        }
+        gtk_label_set_text (GTK_LABEL(fsguard->lab_size), msg_size);
+        gtk_progress_bar_set_fraction (GTK_PROGRESS_BAR(fsguard->progress_bar), size / total);
+
+        if (size <= fsguard->limit_urgent) {
             pb = gdk_pixbuf_new_from_inline (sizeof(icon_red), icon_red, FALSE, NULL);
 	    if (!fsguard->seen) {
-                if (fsguard->label != NULL && (strcmp(fsguard->label,"")) && (strcmp(fsguard->mnt, fsguard->label))) {
-		    if (size > 1024) {
-                        xfce_warn (_("Only %.2f GB space left on %s (%s)!"), size/1024, fsguard->mnt, fsguard->label);
-		    } else {
-                        xfce_warn (_("Only %.2f MB space left on %s (%s)!"), size, fsguard->mnt, fsguard->label);
-		    }
+                if (fsguard->name != NULL && (strcmp(fsguard->name,"")) && (strcmp(fsguard->path, fsguard->name))) {
+                    xfce_warn (_("Only %s space left on %s (%s)!"), msg_size, fsguard->path, fsguard->name);
                 } else {
-		    if (size > 1024) {
-                        xfce_warn (_("Only %.2f GB space left on %s!"), size/1024, fsguard->mnt);
-		    } else {
-                        xfce_warn (_("Only %.2f MB space left on %s!"), size, fsguard->mnt);
-		    }
+                    xfce_warn (_("Only %s space left on %s!"), msg_size, fsguard->path);
 		}
 		fsguard->seen = TRUE;
 	    }
-        } else if (size >= fsguard->red && size <= fsguard->yellow) {
+        } else if (size >= fsguard->limit_urgent && size <= fsguard->limit_warning) {
             pb = gdk_pixbuf_new_from_inline (sizeof(icon_yellow), icon_yellow, FALSE, NULL);
         } else {
             pb = gdk_pixbuf_new_from_inline (sizeof(icon_green), icon_green, FALSE, NULL);
         }
-        if (fsguard->label != NULL && (strcmp(fsguard->label,"")) && (strcmp(fsguard->mnt, fsguard->label))) {
-	    if (size > 1024) {
-                g_snprintf (msg, sizeof (msg), _("%.2f GB space left on %s (%s)"), size/1024, fsguard->mnt, fsguard->label);
-	    } else {
-                g_snprintf (msg, sizeof (msg), _("%.2f MB space left on %s (%s)"), size, fsguard->mnt, fsguard->label);
-	    }
-        } else if (fsguard->mnt != NULL && (strcmp(fsguard->mnt, ""))) {
-	    if (size > 1024) {
-                g_snprintf (msg, sizeof (msg), _("%.2f GB space left on %s"), size/1024, fsguard->mnt);
-	    } else {
-                g_snprintf (msg, sizeof (msg), _("%.2f MB space left on %s"), size, fsguard->mnt);
-	    }
+
+        if (fsguard->name != NULL && (strcmp(fsguard->name,"")) && (strcmp(fsguard->path, fsguard->name))) {
+            g_snprintf (msg, sizeof (msg), _("%s/%s space left on %s (%s)"), msg_size, msg_total_size, fsguard->path, fsguard->name);
+        } else if (fsguard->path != NULL && (strcmp(fsguard->path, ""))) {
+            g_snprintf (msg, sizeof (msg), _("%s/%s space left on %s"), msg_size, msg_total_size, fsguard->path);
         } 
     } else {
+        gtk_label_set_text (GTK_LABEL(fsguard->lab_size), "0.0 MB");
+        gtk_progress_bar_set_fraction (GTK_PROGRESS_BAR(fsguard->progress_bar), 0.0);
         pb = gdk_pixbuf_new_from_inline (sizeof(icon_unknown), icon_unknown, FALSE, NULL);
-        g_snprintf (msg, sizeof (msg), _("could not check mountpoint %s, please check your config"), fsguard->mnt);
+        g_snprintf (msg, sizeof (msg), _("could not check mountpoint %s, please check your config"), fsguard->path);
     }
     
-    gtk_tooltips_set_tip (tooltips, fsguard->fs, msg, NULL);
+    gtk_tooltips_set_tip (tooltips, fsguard->ebox, msg, NULL);
        
-    xfce_iconbutton_set_pixbuf(XFCE_ICONBUTTON(fsguard->fs), pb);
+    xfce_iconbutton_set_pixbuf(XFCE_ICONBUTTON(fsguard->btn_panel), pb);
     g_object_unref (G_OBJECT(pb));
     return TRUE;
 }
 
+static void
+fsguard_read_config (FsGuard *fsguard)
+{
+    char               *file;
+    XfceRc             *rc;
+
+    file = xfce_panel_plugin_save_location (fsguard->plugin, TRUE);
+    DBG ("Lookup rc file `%s'", file);
+    rc = xfce_rc_simple_open (file, FALSE);
+    g_free (file);
+
+    fsguard->name               = g_strdup (xfce_rc_read_entry (rc, "label", ""));
+    fsguard->path               = g_strdup (xfce_rc_read_entry (rc, "mnt", "/"));
+    fsguard->filemanager        = g_strdup (xfce_rc_read_entry (rc, "filemanager", "Thunar"));
+    fsguard->show_size          = xfce_rc_read_bool_entry (rc, "lab_size_visible", TRUE);
+    fsguard->show_progress_bar  = xfce_rc_read_bool_entry (rc, "progress_bar_visible", TRUE);
+    fsguard->limit_warning      = xfce_rc_read_int_entry (rc, "yellow", 0);
+    fsguard->limit_urgent       = xfce_rc_read_int_entry (rc, "red", 0);
+
+    xfce_rc_close (rc);
+}
+
+static void
+fsguard_write_config (XfcePanelPlugin *plugin, FsGuard *fsguard)
+{
+    char               *file;
+    XfceRc             *rc;
+
+    if (!(file = xfce_panel_plugin_save_location (plugin, TRUE)))
+        return;
+    
+    rc = xfce_rc_simple_open (file, FALSE);
+    g_free (file);
+
+    if (!rc)
+        return;
+    
+    xfce_rc_write_int_entry (rc, "yellow", fsguard->limit_warning);
+    xfce_rc_write_int_entry (rc, "red", fsguard->limit_urgent);
+    xfce_rc_write_bool_entry (rc, "lab_size_visible", fsguard->show_size);
+    xfce_rc_write_bool_entry (rc, "progress_bar_visible", fsguard->show_progress_bar);
+    xfce_rc_write_entry (rc, "label", fsguard->name);
+    xfce_rc_write_entry (rc, "mnt", fsguard->path);
+    xfce_rc_write_entry (rc, "filemanager", fsguard->filemanager);
+
+    xfce_rc_close (rc);
+}    
+
 static FsGuard *
-create_fsguard_control (XfcePanelPlugin *plugin)
+fsguard_new (XfcePanelPlugin *plugin)
 {
-    FsGuard *fsguard;
+    FsGuard *fsguard = g_new0(FsGuard, 1);
+    fsguard->plugin = plugin;
+
+    fsguard_read_config (fsguard);
+
     tooltips = gtk_tooltips_new ();
-    fsguard = g_new(FsGuard, 1);
 
-    fsguard->plugin = plugin;
-    fsguard->orientation = xfce_panel_plugin_get_orientation(plugin);
-    
     fsguard->ebox = gtk_event_box_new();
-    gtk_widget_show (fsguard->ebox);
 
-    if (fsguard->orientation == GTK_ORIENTATION_VERTICAL) {
-	fsguard->box = gtk_vbox_new (FALSE, 2);
-    } else {
-	fsguard->box = gtk_hbox_new (FALSE, 2);
-    }
-    gtk_widget_show (fsguard->box);
+    GtkOrientation orientation = xfce_panel_plugin_get_orientation (plugin);
+    fsguard->box =
+      xfce_hvbox_new (orientation == GTK_ORIENTATION_HORIZONTAL ?
+                      GTK_ORIENTATION_HORIZONTAL : GTK_ORIENTATION_VERTICAL,
+                      FALSE, 2);
 
-    fsguard->fs = xfce_iconbutton_new ();
-    gtk_widget_show (fsguard->fs);
-    g_signal_connect (G_OBJECT(fsguard->fs), "clicked", G_CALLBACK(fsguard_open_mnt), fsguard);
-    
-    gtk_button_set_relief (GTK_BUTTON(fsguard->fs), GTK_RELIEF_NONE);
-    gtk_container_add (GTK_CONTAINER(fsguard->box), fsguard->fs);
+    fsguard->lab_name = gtk_label_new (fsguard->name);
+
+    fsguard->btn_panel = xfce_iconbutton_new ();
+    gtk_button_set_relief (GTK_BUTTON (fsguard->btn_panel), GTK_RELIEF_NONE);
+
+    fsguard->progress_bar = gtk_progress_bar_new ();
+    gtk_progress_bar_set_fraction (GTK_PROGRESS_BAR(fsguard->progress_bar), 0.0);
+    gtk_progress_bar_set_orientation (GTK_PROGRESS_BAR(fsguard->progress_bar),
+                                      orientation == GTK_ORIENTATION_HORIZONTAL ?
+                                      GTK_PROGRESS_BOTTOM_TO_TOP : GTK_PROGRESS_LEFT_TO_RIGHT);
+
+    fsguard->pb_box =
+      xfce_hvbox_new (orientation == GTK_ORIENTATION_HORIZONTAL ?
+                      GTK_ORIENTATION_HORIZONTAL : GTK_ORIENTATION_VERTICAL,
+                      FALSE, 0);
+    gtk_container_set_border_width (GTK_CONTAINER (fsguard->pb_box), 2);
+
+    fsguard->lab_size = gtk_label_new (NULL);
+
+    g_signal_connect (G_OBJECT(fsguard->btn_panel),
+                      "clicked",
+                      G_CALLBACK(fsguard_open_mnt),
+                      fsguard);
+
     gtk_container_add (GTK_CONTAINER(fsguard->ebox), fsguard->box);
+    gtk_container_add (GTK_CONTAINER(fsguard->box), fsguard->lab_name);
+    gtk_container_add (GTK_CONTAINER(fsguard->box), fsguard->btn_panel);
+    gtk_container_add (GTK_CONTAINER(fsguard->box), fsguard->lab_size);
+    gtk_box_pack_start (GTK_BOX (fsguard->box), fsguard->pb_box, TRUE, TRUE, 0);
+    gtk_container_add (GTK_CONTAINER(fsguard->pb_box), fsguard->progress_bar);
 
     xfce_panel_plugin_add_action_widget (plugin, fsguard->ebox);
-    xfce_panel_plugin_add_action_widget (plugin, fsguard->fs);
-    
-    fsguard->size = ICONSIZETINY;
-    fsguard->lab = NULL;
-    fsguard->label = NULL;
-    fsguard->mnt = NULL;
-    fsguard->filemanager = g_strdup ("exo-open");
-    fsguard->yellow = 0;
-    fsguard->red = 0;
-    fsguard->timeout = 0;
-    
+    xfce_panel_plugin_add_action_widget (plugin, fsguard->btn_panel);
+
+    gtk_widget_set_size_request(fsguard->ebox, -1, -1);
+    gtk_widget_show_all (fsguard->ebox);
+    fsguard_refresh_name (fsguard);
+    if (fsguard->show_size != TRUE)
+        gtk_widget_hide (fsguard->lab_size);
+    if (fsguard->show_progress_bar != TRUE)
+        gtk_widget_hide (fsguard->pb_box);
+
     return fsguard;
 }
 
@@ -249,8 +315,8 @@
         g_source_remove (fsguard->timeout);
     }
 
-    g_free (fsguard->label);
-    g_free (fsguard->mnt);
+    g_free (fsguard->name);
+    g_free (fsguard->path);
     g_free (fsguard->filemanager);
 
     g_free(fsguard);
@@ -259,135 +325,90 @@
 static void
 fsguard_set_orientation (XfcePanelPlugin *plugin, GtkOrientation orientation, FsGuard *fsguard)
 {
-    GtkWidget* box;
+    DBG ("Set orientation to `%s'", orientation == GTK_ORIENTATION_HORIZONTAL ?
+                                    "Horizontal" : "Vertical");
 
-    fsguard->orientation = orientation;
-    if (fsguard->orientation == GTK_ORIENTATION_VERTICAL) {
-	box = gtk_vbox_new (FALSE, 2);
-        gtk_widget_reparent (fsguard->lab, box);
-        gtk_widget_reparent (fsguard->fs, box);
-    } else {
-        box = gtk_hbox_new (FALSE, 2);
-        gtk_widget_reparent (fsguard->lab, box);
-        gtk_widget_reparent (fsguard->fs, box);
-    }
-    gtk_widget_destroy (fsguard->box);
-    fsguard->box = box;
-    gtk_container_add (GTK_CONTAINER(fsguard->ebox), fsguard->box);
-    gtk_widget_show (fsguard->box);
+    xfce_hvbox_set_orientation (XFCE_HVBOX (fsguard->box), orientation);
+    xfce_hvbox_set_orientation (XFCE_HVBOX (fsguard->pb_box), orientation);
+    gtk_progress_bar_set_orientation (GTK_PROGRESS_BAR(fsguard->progress_bar),
+                                      orientation == GTK_ORIENTATION_HORIZONTAL ?
+                                      GTK_PROGRESS_BOTTOM_TO_TOP : GTK_PROGRESS_LEFT_TO_RIGHT);
 }
 
 static gboolean
 fsguard_set_size (XfcePanelPlugin *plugin, int size, FsGuard *fsguard)
 {
-    fsguard->size = size;
-    fsguard_check_fs (fsguard);
-    gtk_widget_set_size_request (fsguard->fs, fsguard->size, fsguard->size);
+    DBG ("Set size to `%d'", size);
 
+    gtk_widget_set_size_request (fsguard->btn_panel, size, size);
+
+    GtkOrientation orientation = xfce_panel_plugin_get_orientation (plugin);
+    if (orientation == GTK_ORIENTATION_HORIZONTAL) {
+        gtk_widget_set_size_request (GTK_WIDGET(fsguard->progress_bar), BORDER, -1);
+    } else {
+        gtk_widget_set_size_request (GTK_WIDGET(fsguard->progress_bar), -1, BORDER);
+    }
+
+    gtk_widget_set_size_request (GTK_WIDGET(plugin), -1, -1);
+
     return TRUE;
 }
 
 static void
-fsguard_read_config (XfcePanelPlugin *plugin, FsGuard *fsguard)
+fsguard_ent1_changed (GtkWidget *widget, FsGuard *fsguard)
 {
-    const char *value;
-    char *file;
-    XfceRc *rc;
-    
-    if (!(file = xfce_panel_plugin_lookup_rc_file (plugin)))
-        return;
-    
-    rc = xfce_rc_simple_open (file, TRUE);
-    g_free (file);
-
-    if (!rc)
-        return;
-    
-    fsguard->yellow = xfce_rc_read_int_entry (rc, "yellow", 0);
-
-    fsguard->red = xfce_rc_read_int_entry (rc, "red", 0);
-
-    if ((value = xfce_rc_read_entry (rc, "label", ""))) {
-        fsguard->label = g_strdup(value);
-    }
-    
-    if ((value = xfce_rc_read_entry (rc, "mnt", ""))) {
-        fsguard->mnt = g_strdup(value);
-    }
-    
-    if ((value = xfce_rc_read_entry (rc, "filemanager", "exo-open"))) {
-        fsguard->filemanager = g_strdup(value);
-    }
-
-    xfce_rc_close (rc);
+    g_free (fsguard->name);
+    fsguard->name = g_strdup (gtk_entry_get_text (GTK_ENTRY(widget)));
+    fsguard_refresh_name (fsguard);
 }
 
 static void
-fsguard_write_config (XfcePanelPlugin *plugin, FsGuard *fsguard)
+fsguard_ent2_changed (GtkWidget *widget, FsGuard *fsguard)
 {
-    XfceRc *rc;
-    char *file;
+    g_free (fsguard->path);
+    fsguard->path = g_strdup (gtk_entry_get_text (GTK_ENTRY(widget)));
+    fsguard->seen = FALSE;
+    fsguard_check_fs (fsguard);
+}
 
-    if (!(file = xfce_panel_plugin_save_location (plugin, TRUE)))
-        return;
-    
-    rc = xfce_rc_simple_open (file, FALSE);
-    g_free (file);
-
-    if (!rc)
-        return;
-    
-    xfce_rc_write_int_entry (rc, "yellow", fsguard->yellow);
-    
-    xfce_rc_write_int_entry (rc, "red", fsguard->red);
-    
-    xfce_rc_write_entry (rc, "label", fsguard->label ? fsguard->label : "");
-    
-    xfce_rc_write_entry (rc, "mnt", fsguard->mnt ? fsguard->mnt : "");
-    
-    xfce_rc_write_entry (rc, "filemanager", 
-                         fsguard->filemanager ? fsguard->filemanager : "");
-
-    xfce_rc_close (rc);
-}    
-
 static void
-fsguard_ent1_changed (GtkWidget *widget, gpointer user_data)
+fsguard_ent3_changed (GtkWidget *widget, FsGuard *fsguard)
 {
-    FsGuard *fsguard = user_data;
-    fsguard->label = g_strdup (gtk_entry_get_text (GTK_ENTRY(widget)));
-    fsguard_recreate_gui (fsguard);
+    g_free (fsguard->filemanager);
+    fsguard->filemanager = g_strdup (gtk_entry_get_text (GTK_ENTRY(widget)));
 }
 
 static void
-fsguard_ent2_changed (GtkWidget *widget, gpointer user_data)
+fsguard_spin1_changed (GtkWidget *widget, FsGuard *fsguard)
 {
-    FsGuard *fsguard = user_data;
-    fsguard->mnt = g_strdup (gtk_entry_get_text (GTK_ENTRY(widget)));
+    fsguard->limit_urgent = gtk_spin_button_get_value_as_int (GTK_SPIN_BUTTON(widget));
     fsguard->seen = FALSE;
-    fsguard_check_fs (fsguard);
 }
 
 static void
-fsguard_ent3_changed (GtkWidget *widget, gpointer user_data)
+fsguard_spin2_changed (GtkWidget *widget, FsGuard *fsguard)
 {
-    FsGuard *fsguard = user_data;
-    fsguard->filemanager = g_strdup (gtk_entry_get_text (GTK_ENTRY(widget)));
+    fsguard->limit_warning = gtk_spin_button_get_value_as_int (GTK_SPIN_BUTTON(widget));
 }
 
 static void
-fsguard_spin1_changed (GtkWidget *widget, gpointer user_data)
+fsguard_check1_changed (GtkWidget *widget, FsGuard *fsguard)
 {
-    FsGuard *fsguard = user_data;
-    fsguard->red = gtk_spin_button_get_value_as_int (GTK_SPIN_BUTTON(widget));
-    fsguard->seen = FALSE;
+    fsguard->show_size = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON(widget));
+    if (fsguard->show_size)
+        gtk_widget_show (fsguard->lab_size);
+    else
+        gtk_widget_hide (fsguard->lab_size);
 }
 
 static void
-fsguard_spin2_changed (GtkWidget *widget, gpointer user_data)
+fsguard_check2_changed (GtkWidget *widget, FsGuard *fsguard)
 {
-    FsGuard *fsguard = user_data;
-    fsguard->yellow = gtk_spin_button_get_value_as_int (GTK_SPIN_BUTTON(widget));
+    fsguard->show_progress_bar = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON(widget));
+    if (fsguard->show_progress_bar)
+        gtk_widget_show (fsguard->pb_box);
+    else
+        gtk_widget_hide (fsguard->pb_box);
 }
 
 static void
@@ -396,7 +417,6 @@
     gtk_widget_destroy (dlg);
     xfce_panel_plugin_unblock_menu (fsguard->plugin);
     fsguard_write_config (fsguard->plugin, fsguard);
-    fsguard_recreate_gui (fsguard);
 }
 
 static void
@@ -404,13 +424,17 @@
 {
     GtkWidget *dlg;
     GtkWidget *hbox, *vbox1, *vbox2, *spin1, *spin2;
-    GtkWidget *lab1, *lab2, *lab3, *lab4, *lab5, *ent1, *ent2, *ent3;
+    GtkWidget *lab1, *lab2, *lab3, *lab4, *lab5, *lab6, *lab7;
+    GtkWidget *ent1, *ent2, *ent3;
+    GtkWidget *check1, *check2;
     gchar *text[] = {
-	     N_("label"),
-	     N_("mountpoint"),
-             N_("high alarm limit (MB)"),
-	     N_("high warn limit (MB)"),
-	     N_("filemanager"),
+	     N_("Name"),
+	     N_("Mount point"),
+             N_("Warning limit (MB)"),
+	     N_("Urgent limit (MB)"),
+	     N_("File manager"),
+	     N_("Display size"),
+	     N_("Display progress bar"),
     };
     xfce_panel_plugin_block_menu (plugin);
     
@@ -442,51 +466,60 @@
     lab3 = gtk_label_new (_(text[2]));
     lab4 = gtk_label_new (_(text[3]));
     lab5 = gtk_label_new (_(text[4]));
+    lab6 = gtk_label_new (NULL);
+    lab7 = gtk_label_new (NULL);
 
     ent1 = gtk_entry_new ();
     gtk_entry_set_max_length (GTK_ENTRY(ent1), 16);
-    if (fsguard->label != NULL) {
-        gtk_entry_set_text (GTK_ENTRY(ent1), fsguard->label);
-    }
+    gtk_entry_set_text (GTK_ENTRY(ent1), fsguard->name);
+
     ent2 = gtk_entry_new ();
     gtk_entry_set_max_length (GTK_ENTRY(ent2), 32);
-    if (fsguard->mnt != NULL) {
-        gtk_entry_set_text (GTK_ENTRY(ent2), fsguard->mnt);
-    }
+    gtk_entry_set_text (GTK_ENTRY(ent2), fsguard->path);
+
     ent3 = gtk_entry_new ();
     gtk_entry_set_max_length (GTK_ENTRY(ent3), 16);
-    if (fsguard->filemanager != NULL) {
-        gtk_entry_set_text (GTK_ENTRY(ent3), fsguard->filemanager);
-    }
+    gtk_entry_set_text (GTK_ENTRY(ent3), fsguard->filemanager);
+
+    check1 = gtk_check_button_new_with_label (_(text[5]));
+    gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON(check1), fsguard->show_size);
  
+    check2 = gtk_check_button_new_with_label (_(text[6]));
+    gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON(check2), fsguard->show_progress_bar);
+
     spin1 = gtk_spin_button_new_with_range (0, 1000000, 10);
-    gtk_spin_button_set_value (GTK_SPIN_BUTTON(spin1), fsguard->red);
+    gtk_spin_button_set_value (GTK_SPIN_BUTTON(spin1), fsguard->limit_urgent);
     spin2 = gtk_spin_button_new_with_range (0, 1000000, 10);
-    gtk_spin_button_set_value (GTK_SPIN_BUTTON(spin2), fsguard->yellow);
+    gtk_spin_button_set_value (GTK_SPIN_BUTTON(spin2), fsguard->limit_warning);
 
     g_signal_connect (ent1, "changed", G_CALLBACK(fsguard_ent1_changed), fsguard);
     g_signal_connect (ent2, "changed", G_CALLBACK(fsguard_ent2_changed), fsguard);
     g_signal_connect (ent3, "changed", G_CALLBACK(fsguard_ent3_changed), fsguard);
     g_signal_connect (spin1, "value-changed", G_CALLBACK(fsguard_spin1_changed), fsguard);
     g_signal_connect (spin2, "value-changed", G_CALLBACK(fsguard_spin2_changed), fsguard);
+    g_signal_connect (check1, "toggled", G_CALLBACK(fsguard_check1_changed), fsguard);
+    g_signal_connect (check2, "toggled", G_CALLBACK(fsguard_check2_changed), fsguard);
 
     gtk_box_pack_start (GTK_BOX(vbox1), lab1, TRUE, FALSE, 1);
     gtk_box_pack_start (GTK_BOX(vbox1), lab2, TRUE, FALSE, 1);
     gtk_box_pack_start (GTK_BOX(vbox1), lab5, TRUE, FALSE, 1);
     gtk_box_pack_start (GTK_BOX(vbox1), lab3, TRUE, FALSE, 1);
     gtk_box_pack_start (GTK_BOX(vbox1), lab4, TRUE, FALSE, 1);
+    gtk_box_pack_start (GTK_BOX(vbox1), lab6, TRUE, FALSE, 1);
+    gtk_box_pack_start (GTK_BOX(vbox1), lab7, TRUE, FALSE, 1);
 
     gtk_box_pack_start (GTK_BOX(vbox2), ent1, TRUE, FALSE, 1);
     gtk_box_pack_start (GTK_BOX(vbox2), ent2, TRUE, FALSE, 1);
     gtk_box_pack_start (GTK_BOX(vbox2), ent3, TRUE, FALSE, 1);
     gtk_box_pack_start (GTK_BOX(vbox2), spin1, TRUE, FALSE, 1);
     gtk_box_pack_start (GTK_BOX(vbox2), spin2, TRUE, FALSE, 1);
+    gtk_box_pack_start (GTK_BOX(vbox2), check1, TRUE, FALSE, 1);
+    gtk_box_pack_start (GTK_BOX(vbox2), check2, TRUE, FALSE, 1);
 
-    gtk_widget_show_all (hbox);
     gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dlg)->vbox), hbox,
                         TRUE, TRUE, 0);
 
-    gtk_widget_show (dlg);
+    gtk_widget_show_all (dlg);
 }
 
 // }}}
@@ -495,37 +528,38 @@
 static void
 fsguard_construct (XfcePanelPlugin *plugin)
 {
-    FsGuard *fsguard;
-    
     xfce_textdomain(GETTEXT_PACKAGE, PACKAGE_LOCALE_DIR, "UTF-8");
  
-    fsguard = create_fsguard_control (plugin);
-
-    fsguard_read_config (plugin, fsguard);
-    
-    fsguard_recreate_gui (fsguard);
+    FsGuard *fsguard = fsguard_new (plugin);
     fsguard_check_fs (fsguard);
     fsguard->seen = FALSE;
+    fsguard->timeout =
+      g_timeout_add (8192, (GSourceFunc) fsguard_check_fs, fsguard);
 
-    fsguard->timeout = 
-        g_timeout_add (8192, (GSourceFunc) fsguard_check_fs, fsguard);
-
     gtk_container_add (GTK_CONTAINER (plugin), fsguard->ebox);
 
-    g_signal_connect (plugin, "free-data", G_CALLBACK (fsguard_free), fsguard);
-    
-    g_signal_connect (plugin, "save", G_CALLBACK (fsguard_write_config), 
+    g_signal_connect (plugin,
+                      "free-data",
+                      G_CALLBACK (fsguard_free),
                       fsguard);
-    
-    g_signal_connect (plugin, "size-changed", G_CALLBACK (fsguard_set_size), 
+    g_signal_connect (plugin,
+                      "save",
+                      G_CALLBACK (fsguard_write_config),
                       fsguard);
-    
-    g_signal_connect (plugin, "orientation-changed", 
-                      G_CALLBACK (fsguard_set_orientation), fsguard);
-	
+    g_signal_connect (plugin,
+                      "size-changed",
+                      G_CALLBACK (fsguard_set_size),
+                      fsguard);
+    g_signal_connect (plugin,
+                      "orientation-changed",
+                      G_CALLBACK (fsguard_set_orientation),
+                      fsguard);
+    g_signal_connect (plugin,
+                      "configure-plugin",
+                      G_CALLBACK (fsguard_create_options),
+                      fsguard);
+
     xfce_panel_plugin_menu_show_configure (plugin);
-    g_signal_connect (plugin, "configure-plugin", 
-                      G_CALLBACK (fsguard_create_options), fsguard);
 }
 
 XFCE_PANEL_PLUGIN_REGISTER_EXTERNAL (fsguard_construct);

Modified: xfce4-fsguard-plugin/trunk/po/ChangeLog
===================================================================
--- xfce4-fsguard-plugin/trunk/po/ChangeLog	2007-10-04 13:24:02 UTC (rev 3298)
+++ xfce4-fsguard-plugin/trunk/po/ChangeLog	2007-10-04 16:01:07 UTC (rev 3299)
@@ -1,7 +1,12 @@
+2007-10-04  Mike Massonnet <mmassonnet at xfce.org>
+
+	* *.po, *.pot: make update-po
+	* *.po: Correct fuzzy strings
+
 2007-09-07  Og Maciel <ogmaciel at gnome.org>
 
-»···* pt_BR.po: Brazilian Protuguese translation added
-»···by Fábio Nogueira <deb-user-ba at ubuntu.com>
+	* pt_BR.po: Brazilian Protuguese translation added
+	by Fábio Nogueira <deb-user-ba at ubuntu.com>
 
 2007-07-08  Maximilian Schleiss <maximilian at xfce.org>
 

Modified: xfce4-fsguard-plugin/trunk/po/LINGUAS
===================================================================
--- xfce4-fsguard-plugin/trunk/po/LINGUAS	2007-10-04 13:24:02 UTC (rev 3298)
+++ xfce4-fsguard-plugin/trunk/po/LINGUAS	2007-10-04 16:01:07 UTC (rev 3299)
@@ -1,2 +1,2 @@
 # set of available languages (in alphabetic order)
-ca cs de en_GB eu fr gl hu ja ko lt nb_NO pl pt_BR pt_PT sv uk vi zh_TW
+ca cs de en_GB eu fr gl hu ja ko lt nb_NO pl pt_BR pt_PT sq sv uk vi zh_TW

Modified: xfce4-fsguard-plugin/trunk/po/ca.po
===================================================================
--- xfce4-fsguard-plugin/trunk/po/ca.po	2007-10-04 13:24:02 UTC (rev 3298)
+++ xfce4-fsguard-plugin/trunk/po/ca.po	2007-10-04 16:01:07 UTC (rev 3299)
@@ -9,9 +9,9 @@
 msgstr ""
 "Project-Id-Version: xfce4-fsguard-plugin 0.3.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-20 23:05+0100\n"
-"PO-Revision-Date: 2007-03-29 20:08+0100\n"
-"Last-Translator: Ivà Burgos <debian.public at gmail.com>\n"
+"POT-Creation-Date: 2007-10-04 15:56+0200\n"
+"PO-Revision-Date: 2007-10-04 17:30+0100\n"
+"Last-Translator: Mike Massonnet <mmassonnet at gmail.com>\n"
 "Language-Team: catalan\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
@@ -20,74 +20,73 @@
 "X-Poedit-Language: Catalan\n"
 "X-Poedit-SourceCharset: utf-8\n"
 
-#: ../panel-plugin/fsguard.c:159
+#: ../panel-plugin/fsguard.c:153
+#: ../panel-plugin/fsguard.c:158
 #, c-format
-msgid "Only %.2f GB space left on %s (%s)!"
-msgstr "Només queden %.2f GB d'espai a %s (%s)!"
+msgid "%.2f GB"
+msgstr "%.2f GB"
 
-#: ../panel-plugin/fsguard.c:161
+#: ../panel-plugin/fsguard.c:155
+#: ../panel-plugin/fsguard.c:160
 #, c-format
-msgid "Only %.2f MB space left on %s (%s)!"
-msgstr "Només queden %.2f MB d'espai a %s (%s)!"
+msgid "%.2f MB"
+msgstr "%.2f MB"
 
-#: ../panel-plugin/fsguard.c:165
+#: ../panel-plugin/fsguard.c:169
 #, c-format
-msgid "Only %.2f GB space left on %s!"
-msgstr "Només queden %.2f GB d'espai a %s!"
+msgid "Only %s space left on %s (%s)!"
+msgstr "Només queden %s d'espai a %s (%s)!"
 
-#: ../panel-plugin/fsguard.c:167
+#: ../panel-plugin/fsguard.c:171
 #, c-format
-msgid "Only %.2f MB space left on %s!"
-msgstr "Només queden %.2f MB d'espai a %s!"
+msgid "Only %s space left on %s!"
+msgstr "Només queden %s d'espai a %s!"
 
-#: ../panel-plugin/fsguard.c:179
+#: ../panel-plugin/fsguard.c:182
 #, c-format
-msgid "%.2f GB space left on %s (%s)"
-msgstr "Queden %.2f GB d'espai a %s (%s)"
+msgid "%s/%s space left on %s (%s)"
+msgstr "Queden %s/%s d'espai a %s (%s)"
 
-#: ../panel-plugin/fsguard.c:181
+#: ../panel-plugin/fsguard.c:184
 #, c-format
-msgid "%.2f MB space left on %s (%s)"
-msgstr "Queden %.2f MB d'espai a %s (%s)"
+msgid "%s/%s space left on %s"
+msgstr "Queden %s/%s d'espai a %s"
 
-#: ../panel-plugin/fsguard.c:185
+#: ../panel-plugin/fsguard.c:190
 #, c-format
-msgid "%.2f GB space left on %s"
-msgstr "Queden %.2f GB d'espai a %s"
-
-#: ../panel-plugin/fsguard.c:187
-#, c-format
-msgid "%.2f MB space left on %s"
-msgstr "Queden %.2f MB d'espai a %s"
-
-#: ../panel-plugin/fsguard.c:192
-#, c-format
 msgid "could not check mountpoint %s, please check your config"
 msgstr "no s'ha pogut verificar el punt de muntatge %s, hauríeu de comprovar la vostra configuració"
 
-#: ../panel-plugin/fsguard.c:412
-msgid "label"
-msgstr "etiqueta"
+#: ../panel-plugin/fsguard.c:431
+msgid "Name"
+msgstr ""
 
-#: ../panel-plugin/fsguard.c:413
-msgid "mountpoint"
-msgstr "punt de muntatge"
+#: ../panel-plugin/fsguard.c:432
+msgid "Mount point"
+msgstr "Punt de muntatge"
 
-#: ../panel-plugin/fsguard.c:414
-msgid "high alarm limit (MB)"
-msgstr "límit superior per a l'alarma (MB)"
+#: ../panel-plugin/fsguard.c:433
+msgid "Warning limit (MB)"
+msgstr "Espai mínim per l'advertència (MB)"
 
-#: ../panel-plugin/fsguard.c:415
-msgid "high warn limit (MB)"
-msgstr "límit superior per a l'advertència (MB)"
+#: ../panel-plugin/fsguard.c:434
+#, fuzzy
+msgid "Urgent limit (MB)"
+msgstr "Límit superior per a l'alarma (MB)"
 
-#: ../panel-plugin/fsguard.c:416
-msgid "filemanager"
-msgstr "gestor de fitxers"
+#: ../panel-plugin/fsguard.c:435
+msgid "File manager"
+msgstr "Gestor de fitxers"
 
-#. }}}
-#. vim600: set foldmethod=marker: foldmarker={{{,}}}
-#: ../panel-plugin/fsguard.c:421
+#: ../panel-plugin/fsguard.c:436
+msgid "Display size"
+msgstr ""
+
+#: ../panel-plugin/fsguard.c:437
+msgid "Display progress bar"
+msgstr ""
+
+#: ../panel-plugin/fsguard.c:442
 #: ../panel-plugin/fsguard.desktop.in.in.h:1
 msgid "Free Space Checker"
 msgstr "Verificador de l'espai lliure"
@@ -96,6 +95,18 @@
 msgid "Monitor free disk space"
 msgstr "Monitoritza l'espai lliure del disc"
 
+#~ msgid "Only %.2f MB space left on %s (%s)!"
+#~ msgstr "Només queden %.2f MB d'espai a %s (%s)!"
+#~ msgid "Only %.2f MB space left on %s!"
+#~ msgstr "Només queden %.2f MB d'espai a %s!"
+#~ msgid "%.2f MB space left on %s (%s)"
+#~ msgstr "Queden %.2f MB d'espai a %s (%s)"
+#~ msgid "%.2f MB space left on %s"
+#~ msgstr "Queden %.2f MB d'espai a %s"
+#~ msgid "label"
+#~ msgstr "etiqueta"
+#~ msgid "high alarm limit (MB)"
+#~ msgstr "Espai mínim per l'alarma (MB):"
 #~ msgid "Properties"
 #~ msgstr "Propietats"
 

Modified: xfce4-fsguard-plugin/trunk/po/cs.po
===================================================================
--- xfce4-fsguard-plugin/trunk/po/cs.po	2007-10-04 13:24:02 UTC (rev 3298)
+++ xfce4-fsguard-plugin/trunk/po/cs.po	2007-10-04 16:01:07 UTC (rev 3299)
@@ -7,83 +7,83 @@
 msgstr ""
 "Project-Id-Version: xfce4-fsguard-plugin 0.3.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-20 23:05+0100\n"
-"PO-Revision-Date: 2006-08-26 22:28+0100\n"
-"Last-Translator: Michal Várady <miko.vaji at gmail.com>\n"
+"POT-Creation-Date: 2007-10-04 15:56+0200\n"
+"PO-Revision-Date: 2007-10-04 17:30+0100\n"
+"Last-Translator: Mike Massonnet <mmassonnet at gmail.com>\n"
 "Language-Team: Czech <translation-team-cs at lists.sourceforge.net>\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==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
 
-#: ../panel-plugin/fsguard.c:159
+#: ../panel-plugin/fsguard.c:153
+#: ../panel-plugin/fsguard.c:158
 #, c-format
-msgid "Only %.2f GB space left on %s (%s)!"
-msgstr "Pouze %.2f GB místa zbývá na disku %s (%s)!"
+msgid "%.2f GB"
+msgstr "%.2f GB"
 
-#: ../panel-plugin/fsguard.c:161
+#: ../panel-plugin/fsguard.c:155
+#: ../panel-plugin/fsguard.c:160
 #, c-format
-msgid "Only %.2f MB space left on %s (%s)!"
-msgstr "Pouze %.2f MB místa zbývá na disku %s (%s)!"
+msgid "%.2f MB"
+msgstr "%.2f MB"
 
-#: ../panel-plugin/fsguard.c:165
+#: ../panel-plugin/fsguard.c:169
 #, c-format
-msgid "Only %.2f GB space left on %s!"
-msgstr "Pouze %.2f GB místa zbývá na disku %s!"
+msgid "Only %s space left on %s (%s)!"
+msgstr "Pouze %s místa zbývá na disku %s (%s)!"
 
-#: ../panel-plugin/fsguard.c:167
+#: ../panel-plugin/fsguard.c:171
 #, c-format
-msgid "Only %.2f MB space left on %s!"
-msgstr "Pouze %.2f MB místa zbývá na disku %s!"
+msgid "Only %s space left on %s!"
+msgstr "Pouze %s místa zbývá na disku %s!"
 
-#: ../panel-plugin/fsguard.c:179
+#: ../panel-plugin/fsguard.c:182
 #, c-format
-msgid "%.2f GB space left on %s (%s)"
-msgstr "%.2f GB zbývá na disku %s (%s)"
+msgid "%s/%s space left on %s (%s)"
+msgstr "%s/%s zbývá na disku %s (%s)"
 
-#: ../panel-plugin/fsguard.c:181
+#: ../panel-plugin/fsguard.c:184
 #, c-format
-msgid "%.2f MB space left on %s (%s)"
-msgstr "%.2f MB zbývá na disku %s (%s)"
+msgid "%s/%s space left on %s"
+msgstr "%s/%s zbývá na disku %s"
 
-#: ../panel-plugin/fsguard.c:185
+#: ../panel-plugin/fsguard.c:190
 #, c-format
-msgid "%.2f GB space left on %s"
-msgstr "%.2f GB zbývá na disku %s"
+msgid "could not check mountpoint %s, please check your config"
+msgstr "Nelze ověřit místo připojení %s, zkontrolujte Vaši konfiguraci"
 
-#: ../panel-plugin/fsguard.c:187
-#, c-format
-msgid "%.2f MB space left on %s"
-msgstr "%.2f MB zbývá na disku %s"
+#: ../panel-plugin/fsguard.c:431
+msgid "Name"
+msgstr ""
 
-#: ../panel-plugin/fsguard.c:192
-#, c-format
-msgid "could not check mountpoint %s, please check your config"
-msgstr "nelze ověřit místo připojení %s, zkontrolujte Vaši konfiguraci"
+#: ../panel-plugin/fsguard.c:432
+msgid "Mount point"
+msgstr "Místo připojení"
 
-#: ../panel-plugin/fsguard.c:412
-msgid "label"
-msgstr "popisek"
+#: ../panel-plugin/fsguard.c:433
+msgid "Warning limit (MB)"
+msgstr "Limit pro zobrazení varování (MB)"
 
-#: ../panel-plugin/fsguard.c:413
-msgid "mountpoint"
-msgstr "místo připojení"
+#: ../panel-plugin/fsguard.c:434
+#, fuzzy
+msgid "Urgent limit (MB)"
+msgstr "Limit pro zobrazení výstrahy (MB)"
 
-#: ../panel-plugin/fsguard.c:414
-msgid "high alarm limit (MB)"
-msgstr "limit pro zobrazení výstrahy (MB)"
+#: ../panel-plugin/fsguard.c:435
+msgid "File manager"
+msgstr "Správce souborů"
 
-#: ../panel-plugin/fsguard.c:415
-msgid "high warn limit (MB)"
-msgstr "limit pro zobrazení varování (MB)"
+#: ../panel-plugin/fsguard.c:436
+msgid "Display size"
+msgstr ""
 
-#: ../panel-plugin/fsguard.c:416
-msgid "filemanager"
-msgstr "správce souborů"
+#: ../panel-plugin/fsguard.c:437
+msgid "Display progress bar"
+msgstr ""
 
-#. }}}
-#. vim600: set foldmethod=marker: foldmarker={{{,}}}
-#: ../panel-plugin/fsguard.c:421 ../panel-plugin/fsguard.desktop.in.in.h:1
+#: ../panel-plugin/fsguard.c:442
+#: ../panel-plugin/fsguard.desktop.in.in.h:1
 msgid "Free Space Checker"
 msgstr "Kontrola volného prostoru"
 
@@ -91,5 +91,18 @@
 msgid "Monitor free disk space"
 msgstr "Sledování volného prostoru na disku"
 
+#~ msgid "Only %.2f MB space left on %s (%s)!"
+#~ msgstr "Pouze %.2f MB místa zbývá na disku %s (%s)!"
+#~ msgid "Only %.2f MB space left on %s!"
+#~ msgstr "Pouze %.2f MB místa zbývá na disku %s!"
+#~ msgid "%.2f MB space left on %s (%s)"
+#~ msgstr "%.2f MB zbývá na disku %s (%s)"
+#~ msgid "%.2f MB space left on %s"
+#~ msgstr "%.2f MB zbývá na disku %s"
+#~ msgid "label"
+#~ msgstr "popisek"
+#~ msgid "high alarm limit (MB)"
+#~ msgstr "limit pro zobrazení výstrahy (MB)"
 #~ msgid "Properties"
 #~ msgstr "Vlastnosti"
+

Modified: xfce4-fsguard-plugin/trunk/po/de.po
===================================================================
--- xfce4-fsguard-plugin/trunk/po/de.po	2007-10-04 13:24:02 UTC (rev 3298)
+++ xfce4-fsguard-plugin/trunk/po/de.po	2007-10-04 16:01:07 UTC (rev 3299)
@@ -4,92 +4,90 @@
 # This file is distributed under the same license as the xfce4-fsguard-plugin package.
 # Andre Lerche <a.lerche at gmx.net>, 2003.
 # Fabian Nowak <timystery at arcor.de>, 2007.
-# 
+#
 msgid ""
 msgstr ""
 "Project-Id-Version: xfce4-fsguard-plugin 0.3.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-20 23:05+0100\n"
-"PO-Revision-Date: 2007-01-18 08:41+0100\n"
-"Last-Translator: Fabian Nowak <timystery at arcor.de>\n"
+"POT-Creation-Date: 2007-10-04 15:56+0200\n"
+"PO-Revision-Date: 2007-10-04 17:30+0100\n"
+"Last-Translator: Mike Massonnet <mmassonnet at gmail.com>\n"
 "Language-Team: German <de at li.org>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../panel-plugin/fsguard.c:159
+#: ../panel-plugin/fsguard.c:153
+#: ../panel-plugin/fsguard.c:158
 #, c-format
-msgid "Only %.2f GB space left on %s (%s)!"
-msgstr "Nur noch %.2f GB freier Speicher auf %s (%s)!"
+msgid "%.2f GB"
+msgstr "%.2f GB"
 
-#: ../panel-plugin/fsguard.c:161
+#: ../panel-plugin/fsguard.c:155
+#: ../panel-plugin/fsguard.c:160
 #, c-format
-msgid "Only %.2f MB space left on %s (%s)!"
-msgstr "Nur noch %.2f MB freier Speicher auf %s (%s)!"
+msgid "%.2f MB"
+msgstr "%.2f MB"
 
-#: ../panel-plugin/fsguard.c:165
+#: ../panel-plugin/fsguard.c:169
 #, c-format
-msgid "Only %.2f GB space left on %s!"
-msgstr "Nur noch %.2f GB freier Speicher auf %s!"
+msgid "Only %s space left on %s (%s)!"
+msgstr "Nur noch %s freier Speicher auf %s (%s)!"
 
-#: ../panel-plugin/fsguard.c:167
+#: ../panel-plugin/fsguard.c:171
 #, c-format
-msgid "Only %.2f MB space left on %s!"
-msgstr "Nur noch %.2f MB freier Speicher auf %s!"
+msgid "Only %s space left on %s!"
+msgstr "Nur noch %s freier Speicher auf %s!"
 
-#: ../panel-plugin/fsguard.c:179
+#: ../panel-plugin/fsguard.c:182
 #, c-format
-msgid "%.2f GB space left on %s (%s)"
-msgstr "%.2f GB frei auf %s (%s)"
+msgid "%s/%s space left on %s (%s)"
+msgstr "%s/%s frei auf %s (%s)"
 
-#: ../panel-plugin/fsguard.c:181
+#: ../panel-plugin/fsguard.c:184
 #, c-format
-msgid "%.2f MB space left on %s (%s)"
-msgstr "%.2f MB frei auf %s (%s)"
+msgid "%s/%s space left on %s"
+msgstr "%s/%s frei auf %s"
 
-#: ../panel-plugin/fsguard.c:185
+#: ../panel-plugin/fsguard.c:190
 #, c-format
-msgid "%.2f GB space left on %s"
-msgstr "%.2f GB frei auf %s"
-
-#: ../panel-plugin/fsguard.c:187
-#, c-format
-msgid "%.2f MB space left on %s"
-msgstr "%.2f MB frei auf %s"
-
-#: ../panel-plugin/fsguard.c:192
-#, c-format
 msgid "could not check mountpoint %s, please check your config"
-msgstr ""
-"Der Einhängepunkt »%s« konnte nicht geprüft werden, bitte prüfen Sie Ihre "
-"Konfiguration."
+msgstr "Der Einhängepunkt »%s« konnte nicht geprüft werden, bitte prüfen Sie Ihre Konfiguration."
 
-#: ../panel-plugin/fsguard.c:412
-msgid "label"
-msgstr "Beschriftung"
+#: ../panel-plugin/fsguard.c:431
+msgid "Name"
+msgstr "Name"
 
-#: ../panel-plugin/fsguard.c:413
-msgid "mountpoint"
+#: ../panel-plugin/fsguard.c:432
+msgid "Mount point"
 msgstr "Einhängepunkt"
 
-#: ../panel-plugin/fsguard.c:414
-msgid "high alarm limit (MB)"
-msgstr "Alarm ab (MB)"
-
-#: ../panel-plugin/fsguard.c:415
-msgid "high warn limit (MB)"
+#: ../panel-plugin/fsguard.c:433
+msgid "Warning limit (MB)"
 msgstr "Warnung ab (MB)"
 
-#: ../panel-plugin/fsguard.c:416
-msgid "filemanager"
+#: ../panel-plugin/fsguard.c:434
+msgid "Urgent limit (MB)"
+msgstr "Kritisch ab (MB)"
+
+#: ../panel-plugin/fsguard.c:435
+msgid "File manager"
 msgstr "Dateimanager"
 
-#. }}}
-#. vim600: set foldmethod=marker: foldmarker={{{,}}}
-#: ../panel-plugin/fsguard.c:421 ../panel-plugin/fsguard.desktop.in.in.h:1
+#: ../panel-plugin/fsguard.c:436
+msgid "Display size"
+msgstr "Freier Speicher anzeigen"
+
+#: ../panel-plugin/fsguard.c:437
+msgid "Display progress bar"
+msgstr ""
+
+#: ../panel-plugin/fsguard.c:442
+#: ../panel-plugin/fsguard.desktop.in.in.h:1
 msgid "Free Space Checker"
 msgstr "Speicherplatz-Prüfung"
 
 #: ../panel-plugin/fsguard.desktop.in.in.h:2
 msgid "Monitor free disk space"
 msgstr "Freien Festplattenplatz überwachen"
+

Modified: xfce4-fsguard-plugin/trunk/po/en_GB.po
===================================================================
--- xfce4-fsguard-plugin/trunk/po/en_GB.po	2007-10-04 13:24:02 UTC (rev 3298)
+++ xfce4-fsguard-plugin/trunk/po/en_GB.po	2007-10-04 16:01:07 UTC (rev 3299)
@@ -3,88 +3,91 @@
 # This file is distributed under the same license as the xfce4-fsguard-plugin package.
 # Jeff Bailes <thepizzaking at gmail.com>, 2007.
 # , fuzzy
-# 
-# 
+#
+#
 msgid ""
 msgstr ""
 "Project-Id-Version: xfce4-fsguard-plugin\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-20 23:05+0100\n"
-"PO-Revision-Date: 2007-03-30 22:24+1000\n"
-"Last-Translator: Jeff Bailes <thepizzaking at gmail.com>\n"
+"POT-Creation-Date: 2007-10-04 15:56+0200\n"
+"PO-Revision-Date: 2007-10-04 17:30+0100\n"
+"Last-Translator: Mike Massonnet <mmassonnet at gmail.com>\n"
 "Language-Team: English/GB\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit"
+"Content-Transfer-Encoding: 8bit\n"
 
-#: ../panel-plugin/fsguard.c:159
+#: ../panel-plugin/fsguard.c:153
+#: ../panel-plugin/fsguard.c:158
 #, c-format
-msgid "Only %.2f GB space left on %s (%s)!"
-msgstr "Only %.2f GB space left on %s (%s)!"
+msgid "%.2f GB"
+msgstr "%.2f GB"
 
-#: ../panel-plugin/fsguard.c:161
+#: ../panel-plugin/fsguard.c:155
+#: ../panel-plugin/fsguard.c:160
 #, c-format
-msgid "Only %.2f MB space left on %s (%s)!"
-msgstr "Only %.2f MB space left on %s (%s)!"
+msgid "%.2f MB"
+msgstr "%.2f MB"
 
-#: ../panel-plugin/fsguard.c:165
+#: ../panel-plugin/fsguard.c:169
 #, c-format
-msgid "Only %.2f GB space left on %s!"
-msgstr "Only %.2f GB space left on %s!"
+msgid "Only %s space left on %s (%s)!"
+msgstr "Only %s space left on %s (%s)!"
 
-#: ../panel-plugin/fsguard.c:167
+#: ../panel-plugin/fsguard.c:171
 #, c-format
-msgid "Only %.2f MB space left on %s!"
-msgstr "Only %.2f MB space left on %s!"
+msgid "Only %s space left on %s!"
+msgstr "Only %s space left on %s!"
 
-#: ../panel-plugin/fsguard.c:179
+#: ../panel-plugin/fsguard.c:182
 #, c-format
-msgid "%.2f GB space left on %s (%s)"
-msgstr "%.2f GB space left on %s (%s)"
+msgid "%s/%s space left on %s (%s)"
+msgstr "%s/%s space left on %s (%s)"
 
-#: ../panel-plugin/fsguard.c:181
+#: ../panel-plugin/fsguard.c:184
 #, c-format
-msgid "%.2f MB space left on %s (%s)"
-msgstr "%.2f MB space left on %s (%s)"
+msgid "%s/%s space left on %s"
+msgstr "%s/%s space left on %s"
 
-#: ../panel-plugin/fsguard.c:185
+#: ../panel-plugin/fsguard.c:190
 #, c-format
-msgid "%.2f GB space left on %s"
-msgstr "%.2f GB space left on %s"
-
-#: ../panel-plugin/fsguard.c:187
-#, c-format
-msgid "%.2f MB space left on %s"
-msgstr "%.2f MB space left on %s"
-
-#: ../panel-plugin/fsguard.c:192
-#, c-format
 msgid "could not check mountpoint %s, please check your config"
 msgstr "could not check mountpoint %s, please check your config"
 
-#: ../panel-plugin/fsguard.c:412
-msgid "label"
-msgstr "label"
+#: ../panel-plugin/fsguard.c:431
+msgid "Name"
+msgstr ""
 
-#: ../panel-plugin/fsguard.c:413
-msgid "mountpoint"
+#: ../panel-plugin/fsguard.c:432
+#, fuzzy
+msgid "Mount point"
 msgstr "mountpoint"
 
-#: ../panel-plugin/fsguard.c:414
-msgid "high alarm limit (MB)"
-msgstr "high alarm limit (MB)"
+#: ../panel-plugin/fsguard.c:433
+#, fuzzy
+msgid "Warning limit (MB)"
+msgstr "high warn limit (MB)"
 
-#: ../panel-plugin/fsguard.c:415
-msgid "high warn limit (MB)"
+#: ../panel-plugin/fsguard.c:434
+#, fuzzy
+msgid "Urgent limit (MB)"
 msgstr "high warn limit (MB)"
 
-#: ../panel-plugin/fsguard.c:416
-msgid "filemanager"
+#: ../panel-plugin/fsguard.c:435
+#, fuzzy
+msgid "File manager"
 msgstr "filemanager"
 
-#. }}}
-#. vim600: set foldmethod=marker: foldmarker={{{,}}}
-#: ../panel-plugin/fsguard.c:421 ../panel-plugin/fsguard.desktop.in.in.h:1
+#: ../panel-plugin/fsguard.c:436
+msgid "Display size"
+msgstr ""
+
+#: ../panel-plugin/fsguard.c:437
+msgid "Display progress bar"
+msgstr ""
+
+#: ../panel-plugin/fsguard.c:442
+#: ../panel-plugin/fsguard.desktop.in.in.h:1
 msgid "Free Space Checker"
 msgstr "Free Space Checker"
 
@@ -92,3 +95,16 @@
 msgid "Monitor free disk space"
 msgstr "Monitor free disk space"
 
+#~ msgid "Only %.2f MB space left on %s (%s)!"
+#~ msgstr "Only %.2f MB space left on %s (%s)!"
+#~ msgid "Only %.2f MB space left on %s!"
+#~ msgstr "Only %.2f MB space left on %s!"
+#~ msgid "%.2f MB space left on %s (%s)"
+#~ msgstr "%.2f MB space left on %s (%s)"
+#~ msgid "%.2f MB space left on %s"
+#~ msgstr "%.2f MB space left on %s"
+#~ msgid "label"
+#~ msgstr "label"
+#~ msgid "high alarm limit (MB)"
+#~ msgstr "high alarm limit (MB)"
+

Modified: xfce4-fsguard-plugin/trunk/po/eu.po
===================================================================
--- xfce4-fsguard-plugin/trunk/po/eu.po	2007-10-04 13:24:02 UTC (rev 3298)
+++ xfce4-fsguard-plugin/trunk/po/eu.po	2007-10-04 16:01:07 UTC (rev 3299)
@@ -9,82 +9,82 @@
 msgstr ""
 "Project-Id-Version: xfce4-fsguard-plugin 0.3.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-20 23:05+0100\n"
-"PO-Revision-Date: 2006-03.12 13:24+0100\n"
-"Last-Translator: Piarres Beobide <pi at beobide.net>\n"
+"POT-Creation-Date: 2007-10-04 15:56+0200\n"
+"PO-Revision-Date: 2007-10-04 17:30+0100\n"
+"Last-Translator: Mike Massonnet <mmassonnet at gmail.com>\n"
 "Language-Team: Euskara <Librezale at librezale.org>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../panel-plugin/fsguard.c:159
+#: ../panel-plugin/fsguard.c:153
+#: ../panel-plugin/fsguard.c:158
 #, c-format
-msgid "Only %.2f GB space left on %s (%s)!"
-msgstr "%.2f GB leku libre bakarrik dago %s-(e)n (%s)!"
+msgid "%.2f GB"
+msgstr "%.2f GB"
 
-#: ../panel-plugin/fsguard.c:161
+#: ../panel-plugin/fsguard.c:155
+#: ../panel-plugin/fsguard.c:160
 #, c-format
-msgid "Only %.2f MB space left on %s (%s)!"
-msgstr "%.2f MB leku libre bakarrik dago %s-(e)n (%s)!"
+msgid "%.2f MB"
+msgstr "%.2f MB"
 
-#: ../panel-plugin/fsguard.c:165
+#: ../panel-plugin/fsguard.c:169
 #, c-format
-msgid "Only %.2f GB space left on %s!"
-msgstr "%.2f GB leku libre bakarrik dago %s-(e)n!"
+msgid "Only %s space left on %s (%s)!"
+msgstr "%s/%s leku libre bakarrik dago %s-(e)n (%s)!"
 
-#: ../panel-plugin/fsguard.c:167
+#: ../panel-plugin/fsguard.c:171
 #, c-format
-msgid "Only %.2f MB space left on %s!"
-msgstr "%.2f MB leku libre bakarrik dago %s-(e)n!"
+msgid "Only %s space left on %s!"
+msgstr "%s/%s leku libre bakarrik dago %s-(e)n!"
 
-#: ../panel-plugin/fsguard.c:179
+#: ../panel-plugin/fsguard.c:182
 #, c-format
-msgid "%.2f GB space left on %s (%s)"
-msgstr "%.2f GB leku libre dago %s-(e)n (%s)"
+msgid "%s/%s space left on %s (%s)"
+msgstr "%s/%s leku libre dago %s-(e)n (%s)"
 
-#: ../panel-plugin/fsguard.c:181
+#: ../panel-plugin/fsguard.c:184
 #, c-format
-msgid "%.2f MB space left on %s (%s)"
-msgstr "%.2f MB leku libre dago %s-(e)n (%s)"
+msgid "%s/%s space left on %s"
+msgstr "%s/%s leku libre dago %s-(e)n"
 
-#: ../panel-plugin/fsguard.c:185
+#: ../panel-plugin/fsguard.c:190
 #, c-format
-msgid "%.2f GB space left on %s"
-msgstr "%.2f GB leku libre dago %s-(e)n"
+msgid "could not check mountpoint %s, please check your config"
+msgstr "Ezin da %s muntatze puntua egiaztatau, konfigurazio egiaztatu"
 
-#: ../panel-plugin/fsguard.c:187
-#, c-format
-msgid "%.2f MB space left on %s"
-msgstr "%.2f MB leku libre dago %s-(e)n"
+#: ../panel-plugin/fsguard.c:431
+msgid "Name"
+msgstr ""
 
-#: ../panel-plugin/fsguard.c:192
-#, c-format
-msgid "could not check mountpoint %s, please check your config"
-msgstr "ezin da %s muntatze puntua egiaztatau, konfigurazio egiaztatu"
+#: ../panel-plugin/fsguard.c:432
+msgid "Mount point"
+msgstr "Muntatze-puntua"
 
-#: ../panel-plugin/fsguard.c:412
-msgid "label"
-msgstr "etiketa"
+#: ../panel-plugin/fsguard.c:433
+msgid "Warning limit (MB)"
+msgstr "Abisu muga altua (MB)"
 
-#: ../panel-plugin/fsguard.c:413
-msgid "mountpoint"
-msgstr "muntatze-puntua"
-
-#: ../panel-plugin/fsguard.c:414
-msgid "high alarm limit (MB)"
+#: ../panel-plugin/fsguard.c:434
+#, fuzzy
+msgid "Urgent limit (MB)"
 msgstr "Alarma muga altua (MB)"
 
-#: ../panel-plugin/fsguard.c:415
-msgid "high warn limit (MB)"
-msgstr "Abisu muga altua (MB)"
+#: ../panel-plugin/fsguard.c:435
+msgid "File manager"
+msgstr "Fitxategi-kudeatzailea"
 
-#: ../panel-plugin/fsguard.c:416
-msgid "filemanager"
-msgstr "fitxategi-kudeatzailea"
+#: ../panel-plugin/fsguard.c:436
+msgid "Display size"
+msgstr ""
 
-#. }}}
-#. vim600: set foldmethod=marker: foldmarker={{{,}}}
-#: ../panel-plugin/fsguard.c:421 ../panel-plugin/fsguard.desktop.in.in.h:1
+#: ../panel-plugin/fsguard.c:437
+msgid "Display progress bar"
+msgstr ""
+
+#: ../panel-plugin/fsguard.c:442
+#: ../panel-plugin/fsguard.desktop.in.in.h:1
 msgid "Free Space Checker"
 msgstr "Leku Libre Egiaztatzailea"
 
@@ -92,5 +92,18 @@
 msgid "Monitor free disk space"
 msgstr "Disko leku librea monitorizatu"
 
+#~ msgid "Only %.2f MB space left on %s (%s)!"
+#~ msgstr "%.2f MB leku libre bakarrik dago %s-(e)n (%s)!"
+#~ msgid "Only %.2f MB space left on %s!"
+#~ msgstr "%.2f MB leku libre bakarrik dago %s-(e)n!"
+#~ msgid "%.2f MB space left on %s (%s)"
+#~ msgstr "%.2f MB leku libre dago %s-(e)n (%s)"
+#~ msgid "%.2f MB space left on %s"
+#~ msgstr "%.2f MB leku libre dago %s-(e)n"
+#~ msgid "label"
+#~ msgstr "etiketa"
+#~ msgid "high alarm limit (MB)"
+#~ msgstr "Alarma muga altua (MB)"
 #~ msgid "Properties"
 #~ msgstr "Propietateak"
+

Modified: xfce4-fsguard-plugin/trunk/po/fr.po
===================================================================
--- xfce4-fsguard-plugin/trunk/po/fr.po	2007-10-04 13:24:02 UTC (rev 3298)
+++ xfce4-fsguard-plugin/trunk/po/fr.po	2007-10-04 16:01:07 UTC (rev 3299)
@@ -3,89 +3,87 @@
 # Copyright (C) 2005 Stefan Ott <stefan at desire.ch>.
 # This file is distributed under the same license as the xfce4-fsguard-plugin package.
 # Stephane Roy <sroy at j2n.net>, 2006.
+# Mike Massonnet <mmassonnet at xfce.org>, 2007.
 #
 msgid ""
 msgstr ""
 "Project-Id-Version: xfce4-fsguard-plugin 0.3.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-20 23:05+0100\n"
-"PO-Revision-Date: 2006-07-22 13:27+0100\n"
-"Last-Translator: Maximilian Schleiss <maximilian at xfce.org>\n"
+"POT-Creation-Date: 2007-10-04 15:56+0200\n"
+"PO-Revision-Date: 2007-10-04 17:30+0100\n"
+"Last-Translator: Mike Massonnet <mmassonnet at gmail.com>\n"
 "Language-Team: French <xfce-i18n at xfce.org>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../panel-plugin/fsguard.c:159
+#: ../panel-plugin/fsguard.c:153
+#: ../panel-plugin/fsguard.c:158
 #, c-format
-msgid "Only %.2f GB space left on %s (%s)!"
-msgstr "Seulement %.2f Go d'espace restant sur %s (%s) !"
+msgid "%.2f GB"
+msgstr "%.2f Go"
 
-#: ../panel-plugin/fsguard.c:161
+#: ../panel-plugin/fsguard.c:155
+#: ../panel-plugin/fsguard.c:160
 #, c-format
-msgid "Only %.2f MB space left on %s (%s)!"
-msgstr "Seulement %.2f Mo d'espace restant sur %s (%s) !"
+msgid "%.2f MB"
+msgstr "%.2f Mo"
 
-#: ../panel-plugin/fsguard.c:165
+#: ../panel-plugin/fsguard.c:169
 #, c-format
-msgid "Only %.2f GB space left on %s!"
-msgstr "Seulement %.2f Go d'espace restant sur %s !"
+msgid "Only %s space left on %s (%s)!"
+msgstr "Seulement %s d'espace disque libre sur %s (%s) !"
 
-#: ../panel-plugin/fsguard.c:167
+#: ../panel-plugin/fsguard.c:171
 #, c-format
-msgid "Only %.2f MB space left on %s!"
-msgstr "Seulement %.2f Mo d'espace restant sur %s !"
+msgid "Only %s space left on %s!"
+msgstr "Seulement %s d'espace disque libre sur %s !"
 
-#: ../panel-plugin/fsguard.c:179
+#: ../panel-plugin/fsguard.c:182
 #, c-format
-msgid "%.2f GB space left on %s (%s)"
-msgstr "%.2f Go d'espace restant sur %s (%s)"
+msgid "%s/%s space left on %s (%s)"
+msgstr "%s/%s d'espace disque libre sur %s (%s)"
 
-#: ../panel-plugin/fsguard.c:181
+#: ../panel-plugin/fsguard.c:184
 #, c-format
-msgid "%.2f MB space left on %s (%s)"
-msgstr "%.2f Mo d'espace restant sur %s (%s)"
+msgid "%s/%s space left on %s"
+msgstr "%s/%s d'espace disque libre sur %s"
 
-#: ../panel-plugin/fsguard.c:185
+#: ../panel-plugin/fsguard.c:190
 #, c-format
-msgid "%.2f GB space left on %s"
-msgstr "%.2f Go d'espace restant sur %s"
-
-#: ../panel-plugin/fsguard.c:187
-#, c-format
-msgid "%.2f MB space left on %s"
-msgstr "%.2f Mo d'espace restant sur %s"
-
-#: ../panel-plugin/fsguard.c:192
-#, c-format
 msgid "could not check mountpoint %s, please check your config"
-msgstr ""
-"échec du contrôle du point de montage %s, veuillez vérifier votre "
-"configuration"
+msgstr "Échec du contrôle du point de montage %s, veuillez vérifier votre configuration"
 
-#: ../panel-plugin/fsguard.c:412
-msgid "label"
+#: ../panel-plugin/fsguard.c:431
+msgid "Name"
 msgstr "Nom"
 
-#: ../panel-plugin/fsguard.c:413
-msgid "mountpoint"
+#: ../panel-plugin/fsguard.c:432
+msgid "Mount point"
 msgstr "Point de montage"
 
-#: ../panel-plugin/fsguard.c:414
-msgid "high alarm limit (MB)"
-msgstr "Seuil d'alarme (Mo)"
+#: ../panel-plugin/fsguard.c:433
+msgid "Warning limit (MB)"
+msgstr "Seuil d'alerte (Mo)"
 
-#: ../panel-plugin/fsguard.c:415
-msgid "high warn limit (MB)"
-msgstr "Seuil d'avertissement (Mo)"
+#: ../panel-plugin/fsguard.c:434
+msgid "Urgent limit (MB)"
+msgstr "Seuil d'urgence (Mo)"
 
-#: ../panel-plugin/fsguard.c:416
-msgid "filemanager"
+#: ../panel-plugin/fsguard.c:435
+msgid "File manager"
 msgstr "Gestionnaire de fichiers"
 
-#. }}}
-#. vim600: set foldmethod=marker: foldmarker={{{,}}}
-#: ../panel-plugin/fsguard.c:421 ../panel-plugin/fsguard.desktop.in.in.h:1
+#: ../panel-plugin/fsguard.c:436
+msgid "Display size"
+msgstr "Afficher la taille"
+
+#: ../panel-plugin/fsguard.c:437
+msgid "Display progress bar"
+msgstr "Afficher la barre de progression"
+
+#: ../panel-plugin/fsguard.c:442
+#: ../panel-plugin/fsguard.desktop.in.in.h:1
 msgid "Free Space Checker"
 msgstr "Contrôle d'espace disque libre"
 
@@ -93,5 +91,3 @@
 msgid "Monitor free disk space"
 msgstr "Contrôler l'espace disque libre"
 
-#~ msgid "Properties"
-#~ msgstr "Propriétés"

Modified: xfce4-fsguard-plugin/trunk/po/gl.po
===================================================================
--- xfce4-fsguard-plugin/trunk/po/gl.po	2007-10-04 13:24:02 UTC (rev 3298)
+++ xfce4-fsguard-plugin/trunk/po/gl.po	2007-10-04 16:01:07 UTC (rev 3299)
@@ -3,87 +3,85 @@
 # This file is distributed under the same license as the xfce4-fsguard-plugin package.
 # FIRST AUTHOR <EMAIL at ADDRESS>, 2006.
 #
-#, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: xfce4-fsguard-plugin\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-20 23:05+0100\n"
-"PO-Revision-Date: 2006-08-17 19:31+0000\n"
-"Last-Translator: Leandro Regueiro <leandro.regueiro at gmail.com>\n"
+"POT-Creation-Date: 2007-10-04 15:56+0200\n"
+"PO-Revision-Date: 2007-10-04 17:30+0100\n"
+"Last-Translator: Mike Massonnet <mmassonnet at gmail.com>\n"
 "Language-Team: Galician <gl at li.org>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../panel-plugin/fsguard.c:159
+#: ../panel-plugin/fsguard.c:153
+#: ../panel-plugin/fsguard.c:158
 #, c-format
-msgid "Only %.2f GB space left on %s (%s)!"
+msgid "%.2f GB"
 msgstr ""
 
-#: ../panel-plugin/fsguard.c:161
+#: ../panel-plugin/fsguard.c:155
+#: ../panel-plugin/fsguard.c:160
 #, c-format
-msgid "Only %.2f MB space left on %s (%s)!"
+msgid "%.2f MB"
 msgstr ""
 
-#: ../panel-plugin/fsguard.c:165
+#: ../panel-plugin/fsguard.c:169
 #, c-format
-msgid "Only %.2f GB space left on %s!"
+msgid "Only %s space left on %s (%s)!"
 msgstr ""
 
-#: ../panel-plugin/fsguard.c:167
+#: ../panel-plugin/fsguard.c:171
 #, c-format
-msgid "Only %.2f MB space left on %s!"
+msgid "Only %s space left on %s!"
 msgstr ""
 
-#: ../panel-plugin/fsguard.c:179
+#: ../panel-plugin/fsguard.c:182
 #, c-format
-msgid "%.2f GB space left on %s (%s)"
+msgid "%s/%s space left on %s (%s)"
 msgstr ""
 
-#: ../panel-plugin/fsguard.c:181
+#: ../panel-plugin/fsguard.c:184
 #, c-format
-msgid "%.2f MB space left on %s (%s)"
+msgid "%s/%s space left on %s"
 msgstr ""
 
-#: ../panel-plugin/fsguard.c:185
+#: ../panel-plugin/fsguard.c:190
 #, c-format
-msgid "%.2f GB space left on %s"
+msgid "could not check mountpoint %s, please check your config"
 msgstr ""
 
-#: ../panel-plugin/fsguard.c:187
-#, c-format
-msgid "%.2f MB space left on %s"
+#: ../panel-plugin/fsguard.c:431
+msgid "Name"
 msgstr ""
 
-#: ../panel-plugin/fsguard.c:192
-#, c-format
-msgid "could not check mountpoint %s, please check your config"
+#: ../panel-plugin/fsguard.c:432
+msgid "Mount point"
 msgstr ""
 
-#: ../panel-plugin/fsguard.c:412
-msgid "label"
-msgstr "etiqueta"
+#: ../panel-plugin/fsguard.c:433
+msgid "Warning limit (MB)"
+msgstr ""
 
-#: ../panel-plugin/fsguard.c:413
-msgid "mountpoint"
+#: ../panel-plugin/fsguard.c:434
+msgid "Urgent limit (MB)"
 msgstr ""
 
-#: ../panel-plugin/fsguard.c:414
-msgid "high alarm limit (MB)"
+#: ../panel-plugin/fsguard.c:435
+msgid "File manager"
 msgstr ""
 
-#: ../panel-plugin/fsguard.c:415
-msgid "high warn limit (MB)"
+#: ../panel-plugin/fsguard.c:436
+msgid "Display size"
 msgstr ""
 
-#: ../panel-plugin/fsguard.c:416
-msgid "filemanager"
+#: ../panel-plugin/fsguard.c:437
+msgid "Display progress bar"
 msgstr ""
 
-#. }}}
-#. vim600: set foldmethod=marker: foldmarker={{{,}}}
-#: ../panel-plugin/fsguard.c:421 ../panel-plugin/fsguard.desktop.in.in.h:1
+#: ../panel-plugin/fsguard.c:442
+#: ../panel-plugin/fsguard.desktop.in.in.h:1
 msgid "Free Space Checker"
 msgstr ""
 
@@ -91,5 +89,8 @@
 msgid "Monitor free disk space"
 msgstr ""
 
+#~ msgid "label"
+#~ msgstr "etiqueta"
 #~ msgid "Properties"
 #~ msgstr "Propiedades"
+

Modified: xfce4-fsguard-plugin/trunk/po/hu.po
===================================================================
--- xfce4-fsguard-plugin/trunk/po/hu.po	2007-10-04 13:24:02 UTC (rev 3298)
+++ xfce4-fsguard-plugin/trunk/po/hu.po	2007-10-04 16:01:07 UTC (rev 3299)
@@ -8,9 +8,9 @@
 msgstr ""
 "Project-Id-Version: xfce4-fsguard-plugin 0.3.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-20 23:05+0100\n"
-"PO-Revision-Date: 2006-07-08 01:02+0100\n"
-"Last-Translator: SZERVÁC Attila <sas at 321.hu>\n"
+"POT-Creation-Date: 2007-10-04 15:56+0200\n"
+"PO-Revision-Date: 2007-10-04 17:29+0100\n"
+"Last-Translator: Mike Massonnet <mmassonnet at gmail.com>\n"
 "Language-Team: Hungarian <hu at li.org>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -19,74 +19,74 @@
 "X-Poedit-Language: Hungarian\n"
 "X-Poedit-Country: HUNGARY\n"
 
-#: ../panel-plugin/fsguard.c:159
+#: ../panel-plugin/fsguard.c:153
+#: ../panel-plugin/fsguard.c:158
 #, c-format
-msgid "Only %.2f GB space left on %s (%s)!"
-msgstr "Csak %.2f GB szabad itt: %s (%s)!"
+msgid "%.2f GB"
+msgstr "%.2f GB"
 
-#: ../panel-plugin/fsguard.c:161
+#: ../panel-plugin/fsguard.c:155
+#: ../panel-plugin/fsguard.c:160
 #, c-format
-msgid "Only %.2f MB space left on %s (%s)!"
-msgstr "Csak %.2f MB szabad itt: %s (%s)!"
+msgid "%.2f MB"
+msgstr "%.2f MB"
 
-#: ../panel-plugin/fsguard.c:165
+#: ../panel-plugin/fsguard.c:169
 #, c-format
-msgid "Only %.2f GB space left on %s!"
-msgstr "Csak %.2f GB szabat itt: %s!"
+msgid "Only %s space left on %s (%s)!"
+msgstr "Csak %s szabad itt: %s (%s)!"
 
-#: ../panel-plugin/fsguard.c:167
+#: ../panel-plugin/fsguard.c:171
 #, c-format
-msgid "Only %.2f MB space left on %s!"
-msgstr "Csak %.2f MB szabat itt: %s!"
+msgid "Only %s space left on %s!"
+msgstr "Csak %s szabat itt: %s!"
 
-#: ../panel-plugin/fsguard.c:179
+#: ../panel-plugin/fsguard.c:182
 #, c-format
-msgid "%.2f GB space left on %s (%s)"
-msgstr "%.2f GB szabad itt: %s (%s)"
+msgid "%s/%s space left on %s (%s)"
+msgstr "%s/%s szabad itt: %s (%s)"
 
-#: ../panel-plugin/fsguard.c:181
+#: ../panel-plugin/fsguard.c:184
 #, c-format
-msgid "%.2f MB space left on %s (%s)"
-msgstr "%.2f MB szabad itt: %s (%s)"
+msgid "%s/%s space left on %s"
+msgstr "%s/%s szabad itt: %s"
 
-#: ../panel-plugin/fsguard.c:185
+#: ../panel-plugin/fsguard.c:190
 #, c-format
-msgid "%.2f GB space left on %s"
-msgstr "%.2f GB szabad itt: %s"
-
-#: ../panel-plugin/fsguard.c:187
-#, c-format
-msgid "%.2f MB space left on %s"
-msgstr "%.2f MB szabad itt: %s"
-
-#: ../panel-plugin/fsguard.c:192
-#, c-format
 msgid "could not check mountpoint %s, please check your config"
 msgstr "Nem ellenőrizhető e csatolópont: %s, ellenőrizd a beállítást"
 
-#: ../panel-plugin/fsguard.c:412
-msgid "label"
-msgstr "cím"
+#: ../panel-plugin/fsguard.c:431
+msgid "Name"
+msgstr ""
 
-#: ../panel-plugin/fsguard.c:413
-msgid "mountpoint"
-msgstr "csatolópont"
+#: ../panel-plugin/fsguard.c:432
+msgid "Mount point"
+msgstr "Csatolópont"
 
-#: ../panel-plugin/fsguard.c:414
-msgid "high alarm limit (MB)"
+#: ../panel-plugin/fsguard.c:433
+msgid "Warning limit (MB)"
+msgstr "Figyelmeztetés (MB)"
+
+#: ../panel-plugin/fsguard.c:434
+#, fuzzy
+msgid "Urgent limit (MB)"
 msgstr "Veszélyszint (MB)"
 
-#: ../panel-plugin/fsguard.c:415
-msgid "high warn limit (MB)"
-msgstr "Figyelmeztetés (MB)"
+#: ../panel-plugin/fsguard.c:435
+msgid "File manager"
+msgstr "Fájlkezelő"
 
-#: ../panel-plugin/fsguard.c:416
-msgid "filemanager"
-msgstr "fájlkezelő"
+#: ../panel-plugin/fsguard.c:436
+msgid "Display size"
+msgstr ""
 
-#. }}}
-#. vim600: set foldmethod=marker: foldmarker={{{,}}}
-#: ../panel-plugin/fsguard.c:421 ../panel-plugin/fsguard.desktop.in.in.h:1
+#: ../panel-plugin/fsguard.c:437
+msgid "Display progress bar"
+msgstr ""
+
+#: ../panel-plugin/fsguard.c:442
+#: ../panel-plugin/fsguard.desktop.in.in.h:1
 msgid "Free Space Checker"
 msgstr "Szabad hely figyelő"
 
@@ -94,5 +94,18 @@
 msgid "Monitor free disk space"
 msgstr "Szabad lemezhely figyelése"
 
+#~ msgid "Only %.2f MB space left on %s (%s)!"
+#~ msgstr "Csak %.2f MB szabad itt: %s (%s)!"
+#~ msgid "Only %.2f MB space left on %s!"
+#~ msgstr "Csak %.2f MB szabat itt: %s!"
+#~ msgid "%.2f MB space left on %s (%s)"
+#~ msgstr "%.2f MB szabad itt: %s (%s)"
+#~ msgid "%.2f MB space left on %s"
+#~ msgstr "%.2f MB szabad itt: %s"
+#~ msgid "label"
+#~ msgstr "cím"
+#~ msgid "high alarm limit (MB)"
+#~ msgstr "Veszélyszint (MB)"
 #~ msgid "Properties"
 #~ msgstr "Tulajdonságok"
+

Modified: xfce4-fsguard-plugin/trunk/po/ja.po
===================================================================
--- xfce4-fsguard-plugin/trunk/po/ja.po	2007-10-04 13:24:02 UTC (rev 3298)
+++ xfce4-fsguard-plugin/trunk/po/ja.po	2007-10-04 16:01:07 UTC (rev 3299)
@@ -11,82 +11,82 @@
 msgstr ""
 "Project-Id-Version: xfce4-fsguard-plugin 0.3.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-20 23:05+0100\n"
-"PO-Revision-Date: 2006-02-11 19:39+0900\n"
-"Last-Translator: Daichi Kawahata <daichi at xfce.org>\n"
+"POT-Creation-Date: 2007-10-04 15:56+0200\n"
+"PO-Revision-Date: 2007-10-04 17:29+0100\n"
+"Last-Translator: Mike Massonnet <mmassonnet at gmail.com>\n"
 "Language-Team: Japanese <xfce-users-jp at ml.fdiary.net>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../panel-plugin/fsguard.c:159
+#: ../panel-plugin/fsguard.c:153
+#: ../panel-plugin/fsguard.c:158
 #, c-format
-msgid "Only %.2f GB space left on %s (%s)!"
-msgstr "%2$s (%3$s) には %1$.2f GB の空き容量しかありません!"
+msgid "%.2f GB"
+msgstr "%.2f GB"
 
-#: ../panel-plugin/fsguard.c:161
+#: ../panel-plugin/fsguard.c:155
+#: ../panel-plugin/fsguard.c:160
 #, c-format
-msgid "Only %.2f MB space left on %s (%s)!"
-msgstr "%2$s (%3$s) には %1$.2f MB の空き容量しかありません!"
+msgid "%.2f MB"
+msgstr "%.2f MB"
 
-#: ../panel-plugin/fsguard.c:165
+#: ../panel-plugin/fsguard.c:169
 #, c-format
-msgid "Only %.2f GB space left on %s!"
-msgstr "%2$s には %1$.2f GB の空き容量しかありません!"
+msgid "Only %s space left on %s (%s)!"
+msgstr "%2$s (%3$s) には %1$s の空き容量しかありません!"
 
-#: ../panel-plugin/fsguard.c:167
+#: ../panel-plugin/fsguard.c:171
 #, c-format
-msgid "Only %.2f MB space left on %s!"
-msgstr "%2$s には %1$.2f MB の空き容量しかありません!"
+msgid "Only %s space left on %s!"
+msgstr "%2$s には %1$s の空き容量しかありません!"
 
-#: ../panel-plugin/fsguard.c:179
+#: ../panel-plugin/fsguard.c:182
 #, c-format
-msgid "%.2f GB space left on %s (%s)"
-msgstr "%2$s (%3$s) には %1$.2f GB の空き容量があります"
+msgid "%s/%s space left on %s (%s)"
+msgstr "%3$s (%4$s) には %1$s/%2$s の空き容量があります"
 
-#: ../panel-plugin/fsguard.c:181
+#: ../panel-plugin/fsguard.c:184
 #, c-format
-msgid "%.2f MB space left on %s (%s)"
-msgstr "%2$s (%3$s) には %1$.2f MB の空き容量があります"
+msgid "%s/%s space left on %s"
+msgstr "%3$s には %1$s/%2$s の空き容量があります"
 
-#: ../panel-plugin/fsguard.c:185
+#: ../panel-plugin/fsguard.c:190
 #, c-format
-msgid "%.2f GB space left on %s"
-msgstr "%2$s には %1$.2f GB の空き容量があります"
-
-#: ../panel-plugin/fsguard.c:187
-#, c-format
-msgid "%.2f MB space left on %s"
-msgstr "%2$s には %1$.2f MB の空き容量があります"
-
-#: ../panel-plugin/fsguard.c:192
-#, c-format
 msgid "could not check mountpoint %s, please check your config"
 msgstr "マウント位置 (%s) を確認できませんでした、設定を確かめて下さい"
 
-#: ../panel-plugin/fsguard.c:412
-msgid "label"
-msgstr "ラベル"
+#: ../panel-plugin/fsguard.c:431
+msgid "Name"
+msgstr ""
 
-#: ../panel-plugin/fsguard.c:413
-msgid "mountpoint"
+#: ../panel-plugin/fsguard.c:432
+msgid "Mount point"
 msgstr "マウント位置"
 
-#: ../panel-plugin/fsguard.c:414
-msgid "high alarm limit (MB)"
+#: ../panel-plugin/fsguard.c:433
+msgid "Warning limit (MB)"
+msgstr "警告を出す上限値 (MB)"
+
+#: ../panel-plugin/fsguard.c:434
+#, fuzzy
+msgid "Urgent limit (MB)"
 msgstr "注意を促す上限値 (MB)"
 
-#: ../panel-plugin/fsguard.c:415
-msgid "high warn limit (MB)"
-msgstr "警告を出す上限値 (MB)"
-
-#: ../panel-plugin/fsguard.c:416
-msgid "filemanager"
+#: ../panel-plugin/fsguard.c:435
+msgid "File manager"
 msgstr "ファイルマネージャー"
 
-#. }}}
-#. vim600: set foldmethod=marker: foldmarker={{{,}}}
-#: ../panel-plugin/fsguard.c:421 ../panel-plugin/fsguard.desktop.in.in.h:1
+#: ../panel-plugin/fsguard.c:436
+msgid "Display size"
+msgstr ""
+
+#: ../panel-plugin/fsguard.c:437
+msgid "Display progress bar"
+msgstr ""
+
+#: ../panel-plugin/fsguard.c:442
+#: ../panel-plugin/fsguard.desktop.in.in.h:1
 msgid "Free Space Checker"
 msgstr "空き容量チェッカー"
 
@@ -94,5 +94,18 @@
 msgid "Monitor free disk space"
 msgstr "ディスクの空き容量を見張ります。"
 
+#~ msgid "Only %.2f MB space left on %s (%s)!"
+#~ msgstr "%2$s (%3$s) には %1$.2f MB の空き容量しかありません!"
+#~ msgid "Only %.2f MB space left on %s!"
+#~ msgstr "%2$s には %1$.2f MB の空き容量しかありません!"
+#~ msgid "%.2f MB space left on %s (%s)"
+#~ msgstr "%2$s (%3$s) には %1$.2f MB の空き容量があります"
+#~ msgid "%.2f MB space left on %s"
+#~ msgstr "%2$s には %1$.2f MB の空き容量があります"
+#~ msgid "label"
+#~ msgstr "ラベル"
+#~ msgid "high alarm limit (MB)"
+#~ msgstr "注意を促す上限値 (MB)"
 #~ msgid "Properties"
 #~ msgstr "プロパティ"
+

Modified: xfce4-fsguard-plugin/trunk/po/ko.po
===================================================================
--- xfce4-fsguard-plugin/trunk/po/ko.po	2007-10-04 13:24:02 UTC (rev 3298)
+++ xfce4-fsguard-plugin/trunk/po/ko.po	2007-10-04 16:01:07 UTC (rev 3299)
@@ -8,83 +8,82 @@
 msgstr ""
 "Project-Id-Version: xfce4-fsguard-plugin 0.3.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-20 23:05+0100\n"
-"PO-Revision-Date: 2006-10-20 11:31+0900\n"
-"Last-Translator: ByungHyun Choi <byunghyun.choi at debianusers.org>\n"
-"Language-Team: xfce4-users-kr-i18n <xfce4-users-kr-i18n at lists.sourceforge."
-"net>\n"
+"POT-Creation-Date: 2007-10-04 15:56+0200\n"
+"PO-Revision-Date: 2007-10-04 17:29+0100\n"
+"Last-Translator: Mike Massonnet <mmassonnet at gmail.com>\n"
+"Language-Team: xfce4-users-kr-i18n <xfce4-users-kr-i18n at lists.sourceforge.net>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../panel-plugin/fsguard.c:159
+#: ../panel-plugin/fsguard.c:153
+#: ../panel-plugin/fsguard.c:158
 #, c-format
-msgid "Only %.2f GB space left on %s (%s)!"
-msgstr "이제 %.2f GB가 남은 %s (%s)!"
+msgid "%.2f GB"
+msgstr "%.2f GB"
 
-#: ../panel-plugin/fsguard.c:161
+#: ../panel-plugin/fsguard.c:155
+#: ../panel-plugin/fsguard.c:160
 #, c-format
-msgid "Only %.2f MB space left on %s (%s)!"
-msgstr "이제 %.2f MB가 남은 %s (%s)!"
+msgid "%.2f MB"
+msgstr "%.2f MB"
 
-#: ../panel-plugin/fsguard.c:165
+#: ../panel-plugin/fsguard.c:169
 #, c-format
-msgid "Only %.2f GB space left on %s!"
-msgstr "이제 %.2f GB가 남은 %s!"
+msgid "Only %s space left on %s (%s)!"
+msgstr "이제 %s가 남은 %s (%s)!"
 
-#: ../panel-plugin/fsguard.c:167
+#: ../panel-plugin/fsguard.c:171
 #, c-format
-msgid "Only %.2f MB space left on %s!"
-msgstr "이제 %.2f MB가 남은 %s!"
+msgid "Only %s space left on %s!"
+msgstr "이제 %s가 남은 %s!"
 
-#: ../panel-plugin/fsguard.c:179
+#: ../panel-plugin/fsguard.c:182
 #, c-format
-msgid "%.2f GB space left on %s (%s)"
-msgstr "%.2f GB가 남은 %s (%s)!"
+msgid "%s/%s space left on %s (%s)"
+msgstr "%s/%s가 남은 %s (%s)!"
 
-#: ../panel-plugin/fsguard.c:181
+#: ../panel-plugin/fsguard.c:184
 #, c-format
-msgid "%.2f MB space left on %s (%s)"
-msgstr "%.2f MB가 남은 %s (%s)!"
+msgid "%s/%s space left on %s"
+msgstr "%s/%s가 남은 %s!"
 
-#: ../panel-plugin/fsguard.c:185
+#: ../panel-plugin/fsguard.c:190
 #, c-format
-msgid "%.2f GB space left on %s"
-msgstr "%.2f GB가 남은 %s!"
-
-#: ../panel-plugin/fsguard.c:187
-#, c-format
-msgid "%.2f MB space left on %s"
-msgstr "%.2f MB가 남은 %s!"
-
-#: ../panel-plugin/fsguard.c:192
-#, c-format
 msgid "could not check mountpoint %s, please check your config"
 msgstr "%s에 대한 마운트 지점을 검사하지 못 했으니, 설정을 확인해 보십시오."
 
-#: ../panel-plugin/fsguard.c:412
-msgid "label"
-msgstr "라벨"
+#: ../panel-plugin/fsguard.c:431
+msgid "Name"
+msgstr ""
 
-#: ../panel-plugin/fsguard.c:413
-msgid "mountpoint"
+#: ../panel-plugin/fsguard.c:432
+msgid "Mount point"
 msgstr "마운트 위치"
 
-#: ../panel-plugin/fsguard.c:414
-msgid "high alarm limit (MB)"
+#: ../panel-plugin/fsguard.c:433
+msgid "Warning limit (MB)"
+msgstr "쥐의 상한(MB)"
+
+#: ../panel-plugin/fsguard.c:434
+#, fuzzy
+msgid "Urgent limit (MB)"
 msgstr "경고 상한(MB)"
 
-#: ../panel-plugin/fsguard.c:415
-msgid "high warn limit (MB)"
-msgstr "쥐의 상한(MB)"
-
-#: ../panel-plugin/fsguard.c:416
-msgid "filemanager"
+#: ../panel-plugin/fsguard.c:435
+msgid "File manager"
 msgstr "화일관리자"
 
-#. }}}
-#. vim600: set foldmethod=marker: foldmarker={{{,}}}
-#: ../panel-plugin/fsguard.c:421 ../panel-plugin/fsguard.desktop.in.in.h:1
+#: ../panel-plugin/fsguard.c:436
+msgid "Display size"
+msgstr ""
+
+#: ../panel-plugin/fsguard.c:437
+msgid "Display progress bar"
+msgstr ""
+
+#: ../panel-plugin/fsguard.c:442
+#: ../panel-plugin/fsguard.desktop.in.in.h:1
 msgid "Free Space Checker"
 msgstr "남은 용량 확인"
 
@@ -92,5 +91,18 @@
 msgid "Monitor free disk space"
 msgstr "남은 용량 감시"
 
+#~ msgid "Only %.2f MB space left on %s (%s)!"
+#~ msgstr "이제 %.2f MB가 남은 %s (%s)!"
+#~ msgid "Only %.2f MB space left on %s!"
+#~ msgstr "이제 %.2f MB가 남은 %s!"
+#~ msgid "%.2f MB space left on %s (%s)"
+#~ msgstr "%.2f MB가 남은 %s (%s)!"
+#~ msgid "%.2f MB space left on %s"
+#~ msgstr "%.2f MB가 남은 %s!"
+#~ msgid "label"
+#~ msgstr "라벨"
+#~ msgid "high alarm limit (MB)"
+#~ msgstr "경고 상한(MB)"
 #~ msgid "Properties"
 #~ msgstr "속성"
+

Modified: xfce4-fsguard-plugin/trunk/po/lt.po
===================================================================
--- xfce4-fsguard-plugin/trunk/po/lt.po	2007-10-04 13:24:02 UTC (rev 3298)
+++ xfce4-fsguard-plugin/trunk/po/lt.po	2007-10-04 16:01:07 UTC (rev 3299)
@@ -3,90 +3,104 @@
 # Copyright (C) 2005 Stefan Ott <stefan at desire.ch>.
 # This file is distributed under the same license as the xfce4-fsguard-plugin package.
 # Rimas Kudelis <rq at akl.lt>, 2005.
-# 
+#
 msgid ""
 msgstr ""
 "Project-Id-Version: xfce4-fsguard-plugin 0.3.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-20 23:05+0100\n"
-"PO-Revision-Date: 2005-02-04 23:28+0200\n"
-"Last-Translator: Rimas Kudelis <rq at akl.lt>\n"
+"POT-Creation-Date: 2007-10-04 15:56+0200\n"
+"PO-Revision-Date: 2007-10-04 17:29+0100\n"
+"Last-Translator: Mike Massonnet <mmassonnet at gmail.com>\n"
 "Language-Team: Lithuanian <komp_lt at konferencijos.lt>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../panel-plugin/fsguard.c:159
+#: ../panel-plugin/fsguard.c:153
+#: ../panel-plugin/fsguard.c:158
 #, c-format
-msgid "Only %.2f GB space left on %s (%s)!"
-msgstr "Tik %.2f GB laisvos vietos liko skirsnyje·%s·(%s)!"
+msgid "%.2f GB"
+msgstr ""
 
-#: ../panel-plugin/fsguard.c:161
+#: ../panel-plugin/fsguard.c:155
+#: ../panel-plugin/fsguard.c:160
 #, c-format
-msgid "Only %.2f MB space left on %s (%s)!"
-msgstr "Tik %.2f MB laisvos vietos liko skirsnyje·%s·(%s)!"
+msgid "%.2f MB"
+msgstr ""
 
-#: ../panel-plugin/fsguard.c:165
+#: ../panel-plugin/fsguard.c:169
 #, c-format
-msgid "Only %.2f GB space left on %s!"
-msgstr "Tik %.2f GB laisvos vietos liko skirsnyje·%s!"
+msgid "Only %s space left on %s (%s)!"
+msgstr "Tik %s laisvos vietos liko skirsnyje·%s·(%s)!"
 
-#: ../panel-plugin/fsguard.c:167
+#: ../panel-plugin/fsguard.c:171
 #, c-format
-msgid "Only %.2f MB space left on %s!"
-msgstr "Tik %.2f MB laisvos vietos liko skirsnyje·%s!"
+msgid "Only %s space left on %s!"
+msgstr "Tik %s laisvos vietos liko skirsnyje·%s!"
 
-#: ../panel-plugin/fsguard.c:179
+#: ../panel-plugin/fsguard.c:182
 #, c-format
-msgid "%.2f GB space left on %s (%s)"
-msgstr "%.2f GB laisvos vietos yra likę skirsnyje·%s·(%s)"
+msgid "%s/%s space left on %s (%s)"
+msgstr "%s/%s laisvos vietos yra likę skirsnyje·%s·(%s)"
 
-#: ../panel-plugin/fsguard.c:181
+#: ../panel-plugin/fsguard.c:184
 #, c-format
-msgid "%.2f MB space left on %s (%s)"
-msgstr "%.2f MB laisvos vietos yra likę skirsnyje·%s·(%s)"
+msgid "%s/%s space left on %s"
+msgstr "%s/%s laisvos vietos yra likę skirsnyje·%s"
 
-#: ../panel-plugin/fsguard.c:185
+#: ../panel-plugin/fsguard.c:190
 #, c-format
-msgid "%.2f GB space left on %s"
-msgstr "%.2f GB laisvos vietos yra likę skirsnyje·%s"
+msgid "could not check mountpoint %s, please check your config"
+msgstr "Nepavyko patikrinti prijungimo taško %s, pasitikrinkite konfigūraciją"
 
-#: ../panel-plugin/fsguard.c:187
-#, c-format
-msgid "%.2f MB space left on %s"
-msgstr "%.2f MB laisvos vietos yra likę skirsnyje·%s"
+#: ../panel-plugin/fsguard.c:431
+msgid "Name"
+msgstr ""
 
-#: ../panel-plugin/fsguard.c:192
-#, c-format
-msgid "could not check mountpoint %s, please check your config"
-msgstr "nepavyko patikrinti prijungimo taško %s, pasitikrinkite konfigūraciją"
+#: ../panel-plugin/fsguard.c:432
+msgid "Mount point"
+msgstr "Prijungimo taškas"
 
-#: ../panel-plugin/fsguard.c:412
-msgid "label"
-msgstr "užrašas"
+#: ../panel-plugin/fsguard.c:433
+msgid "Warning limit (MB)"
+msgstr "Įspėti ties (MB)"
 
-#: ../panel-plugin/fsguard.c:413
-msgid "mountpoint"
-msgstr "prijungimo taškas"
+#: ../panel-plugin/fsguard.c:434
+#, fuzzy
+msgid "Urgent limit (MB)"
+msgstr "Signalizuoti ties (MB)"
 
-#: ../panel-plugin/fsguard.c:414
-msgid "high alarm limit (MB)"
-msgstr "signalizuoti ties (MB)"
+#: ../panel-plugin/fsguard.c:435
+msgid "File manager"
+msgstr "Bylų naršyklė"
 
-#: ../panel-plugin/fsguard.c:415
-msgid "high warn limit (MB)"
-msgstr "įspėti ties (MB)"
+#: ../panel-plugin/fsguard.c:436
+msgid "Display size"
+msgstr ""
 
-#: ../panel-plugin/fsguard.c:416
-msgid "filemanager"
-msgstr "bylų naršyklė"
+#: ../panel-plugin/fsguard.c:437
+msgid "Display progress bar"
+msgstr ""
 
-#. }}}
-#. vim600: set foldmethod=marker: foldmarker={{{,}}}
-#: ../panel-plugin/fsguard.c:421 ../panel-plugin/fsguard.desktop.in.in.h:1
+#: ../panel-plugin/fsguard.c:442
+#: ../panel-plugin/fsguard.desktop.in.in.h:1
 msgid "Free Space Checker"
 msgstr "Laisvos vietos tikrintuvė"
 
 #: ../panel-plugin/fsguard.desktop.in.in.h:2
 msgid "Monitor free disk space"
 msgstr ""
+
+#~ msgid "Only %.2f MB space left on %s (%s)!"
+#~ msgstr "Tik %.2f MB laisvos vietos liko skirsnyje·%s·(%s)!"
+#~ msgid "Only %.2f MB space left on %s!"
+#~ msgstr "Tik %.2f MB laisvos vietos liko skirsnyje·%s!"
+#~ msgid "%.2f MB space left on %s (%s)"
+#~ msgstr "%.2f MB laisvos vietos yra likę skirsnyje·%s·(%s)"
+#~ msgid "%.2f MB space left on %s"
+#~ msgstr "%.2f MB laisvos vietos yra likę skirsnyje·%s"
+#~ msgid "label"
+#~ msgstr "užrašas"
+#~ msgid "high alarm limit (MB)"
+#~ msgstr "signalizuoti ties (MB)"
+

Modified: xfce4-fsguard-plugin/trunk/po/nb_NO.po
===================================================================
--- xfce4-fsguard-plugin/trunk/po/nb_NO.po	2007-10-04 13:24:02 UTC (rev 3298)
+++ xfce4-fsguard-plugin/trunk/po/nb_NO.po	2007-10-04 16:01:07 UTC (rev 3299)
@@ -7,86 +7,100 @@
 msgstr ""
 "Project-Id-Version: xfce 4-fsguard-plugin\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-20 23:05+0100\n"
-"PO-Revision-Date: 2007-07-01 22:44+0200\n"
-"Last-Translator: Terje Uriansrud <ter at operamail.com>\n"
+"POT-Creation-Date: 2007-10-04 15:56+0200\n"
+"PO-Revision-Date: 2007-10-04 17:29+0100\n"
+"Last-Translator: Mike Massonnet <mmassonnet at gmail.com>\n"
 "Language-Team: Norwegian Bokmal\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"
 
-#: ../panel-plugin/fsguard.c:159
+#: ../panel-plugin/fsguard.c:153
+#: ../panel-plugin/fsguard.c:158
 #, c-format
-msgid "Only %.2f GB space left on %s (%s)!"
-msgstr "Kun %.2f GB plass ledig på %s (%s)!"
+msgid "%.2f GB"
+msgstr "%.2f GB"
 
-#: ../panel-plugin/fsguard.c:161
+#: ../panel-plugin/fsguard.c:155
+#: ../panel-plugin/fsguard.c:160
 #, c-format
-msgid "Only %.2f MB space left on %s (%s)!"
-msgstr "Kun %.2f MB plass ledig på %s (%s)!"
+msgid "%.2f MB"
+msgstr "%.2f MB"
 
-#: ../panel-plugin/fsguard.c:165
+#: ../panel-plugin/fsguard.c:169
 #, c-format
-msgid "Only %.2f GB space left on %s!"
-msgstr "Kun %.2f GB plass ledig på %s!"
+msgid "Only %s space left on %s (%s)!"
+msgstr "Kun %s plass ledig på %s (%s)!"
 
-#: ../panel-plugin/fsguard.c:167
+#: ../panel-plugin/fsguard.c:171
 #, c-format
-msgid "Only %.2f MB space left on %s!"
-msgstr "Kun %.2f MB plass ledig på %s!"
+msgid "Only %s space left on %s!"
+msgstr "Kun %s plass ledig på %s!"
 
-#: ../panel-plugin/fsguard.c:179
+#: ../panel-plugin/fsguard.c:182
 #, c-format
-msgid "%.2f GB space left on %s (%s)"
-msgstr "%.2f GB plass ledig på %s (%s)"
+msgid "%s/%s space left on %s (%s)"
+msgstr "%s/%s plass ledig på %s (%s)"
 
-#: ../panel-plugin/fsguard.c:181
+#: ../panel-plugin/fsguard.c:184
 #, c-format
-msgid "%.2f MB space left on %s (%s)"
-msgstr "%.2f MB plass ledig på %s (%s)"
+msgid "%s/%s space left on %s"
+msgstr "%s/%s plass ledig på %s"
 
-#: ../panel-plugin/fsguard.c:185
+#: ../panel-plugin/fsguard.c:190
 #, c-format
-msgid "%.2f GB space left on %s"
-msgstr "%.2f GB plass ledig på %s"
+msgid "could not check mountpoint %s, please check your config"
+msgstr "Klarte ikke sjekke punkt %s, kontroller oppsettet"
 
-#: ../panel-plugin/fsguard.c:187
-#, c-format
-msgid "%.2f MB space left on %s"
-msgstr "%.2f MB plass ledig på %s"
+#: ../panel-plugin/fsguard.c:431
+msgid "Name"
+msgstr ""
 
-#: ../panel-plugin/fsguard.c:192
-#, c-format
-msgid "could not check mountpoint %s, please check your config"
-msgstr "klarte ikke sjekke punkt %s, kontroller oppsettet"
+#: ../panel-plugin/fsguard.c:432
+msgid "Mount point"
+msgstr "Monteringspunkt"
 
-#: ../panel-plugin/fsguard.c:412
-msgid "label"
-msgstr "etikett"
+#: ../panel-plugin/fsguard.c:433
+msgid "Warning limit (MB)"
+msgstr "Høy advarselgrense (MB)"
 
-#: ../panel-plugin/fsguard.c:413
-msgid "mountpoint"
-msgstr "monteringspunkt"
+#: ../panel-plugin/fsguard.c:434
+#, fuzzy
+msgid "Urgent limit (MB)"
+msgstr "Høy alarmgrense (MB)"
 
-#: ../panel-plugin/fsguard.c:414
-msgid "high alarm limit (MB)"
-msgstr "høy alarmgrense (MB)"
+#: ../panel-plugin/fsguard.c:435
+msgid "File manager"
+msgstr "Filbehandler"
 
-#: ../panel-plugin/fsguard.c:415
-msgid "high warn limit (MB)"
-msgstr "høy advarselgrense (MB)"
+#: ../panel-plugin/fsguard.c:436
+msgid "Display size"
+msgstr ""
 
-#: ../panel-plugin/fsguard.c:416
-msgid "filemanager"
-msgstr "filbehandler"
+#: ../panel-plugin/fsguard.c:437
+msgid "Display progress bar"
+msgstr ""
 
-#. }}}
-#. vim600: set foldmethod=marker: foldmarker={{{,}}}
-#: ../panel-plugin/fsguard.c:421 ../panel-plugin/fsguard.desktop.in.in.h:1
+#: ../panel-plugin/fsguard.c:442
+#: ../panel-plugin/fsguard.desktop.in.in.h:1
 msgid "Free Space Checker"
 msgstr "Ledig diskplass verktøy"
 
 #: ../panel-plugin/fsguard.desktop.in.in.h:2
 msgid "Monitor free disk space"
 msgstr "Overvåker ledig diskplass"
+
+#~ msgid "Only %.2f MB space left on %s (%s)!"
+#~ msgstr "Kun %.2f MB plass ledig på %s (%s)!"
+#~ msgid "Only %.2f MB space left on %s!"
+#~ msgstr "Kun %.2f MB plass ledig på %s!"
+#~ msgid "%.2f MB space left on %s (%s)"
+#~ msgstr "%.2f MB plass ledig på %s (%s)"
+#~ msgid "%.2f MB space left on %s"
+#~ msgstr "%.2f MB plass ledig på %s"
+#~ msgid "label"
+#~ msgstr "etikett"
+#~ msgid "high alarm limit (MB)"
+#~ msgstr "høy alarmgrense (MB)"
+

Modified: xfce4-fsguard-plugin/trunk/po/pl.po
===================================================================
--- xfce4-fsguard-plugin/trunk/po/pl.po	2007-10-04 13:24:02 UTC (rev 3298)
+++ xfce4-fsguard-plugin/trunk/po/pl.po	2007-10-04 16:01:07 UTC (rev 3299)
@@ -8,82 +8,82 @@
 msgstr ""
 "Project-Id-Version: xfce4-fsguard-plugin 0.3.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-20 23:05+0100\n"
-"PO-Revision-Date: 2003-12-24 11:10+0100\n"
-"Last-Translator: Piotr Maliński <admin at rk.edu.pl>\n"
+"POT-Creation-Date: 2007-10-04 15:56+0200\n"
+"PO-Revision-Date: 2007-10-04 17:29+0100\n"
+"Last-Translator: Mike Massonnet <mmassonnet at gmail.com>\n"
 "Language-Team: Polish <translation-team-pl at lists.sourceforge.net>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../panel-plugin/fsguard.c:159
+#: ../panel-plugin/fsguard.c:153
+#: ../panel-plugin/fsguard.c:158
 #, c-format
-msgid "Only %.2f GB space left on %s (%s)!"
-msgstr "%.2f GB wolnego miejsca na %s (%s) pozostało tylko!"
+msgid "%.2f GB"
+msgstr "%.2f GB"
 
-#: ../panel-plugin/fsguard.c:161
+#: ../panel-plugin/fsguard.c:155
+#: ../panel-plugin/fsguard.c:160
 #, c-format
-msgid "Only %.2f MB space left on %s (%s)!"
-msgstr "%.2f MB wolnego miejsca na %s (%s) pozostało tylko!"
+msgid "%.2f MB"
+msgstr "%.2f MB"
 
-#: ../panel-plugin/fsguard.c:165
+#: ../panel-plugin/fsguard.c:169
 #, c-format
-msgid "Only %.2f GB space left on %s!"
-msgstr "%.2f GB wolnego miejsca na %s pozostało tylko!"
+msgid "Only %s space left on %s (%s)!"
+msgstr "%s/%s wolnego miejsca na %s (%s) pozostało tylko!"
 
-#: ../panel-plugin/fsguard.c:167
+#: ../panel-plugin/fsguard.c:171
 #, c-format
-msgid "Only %.2f MB space left on %s!"
-msgstr "%.2f MB wolnego miejsca na %s pozostało tylko!"
+msgid "Only %s space left on %s!"
+msgstr "%s wolnego miejsca na %s pozostało tylko!"
 
-#: ../panel-plugin/fsguard.c:179
+#: ../panel-plugin/fsguard.c:182
 #, c-format
-msgid "%.2f GB space left on %s (%s)"
-msgstr "%.2f GB wolnego miejsca pozostało na %s (%s)"
+msgid "%s/%s space left on %s (%s)"
+msgstr "%s/%s wolnego miejsca pozostało na %s (%s)"
 
-#: ../panel-plugin/fsguard.c:181
+#: ../panel-plugin/fsguard.c:184
 #, c-format
-msgid "%.2f MB space left on %s (%s)"
-msgstr "%.2f MB wolnego miejsca pozostało na %s (%s)"
+msgid "%s/%s space left on %s"
+msgstr "%s/%s wolnego miejsca pozostało na %s"
 
-#: ../panel-plugin/fsguard.c:185
+#: ../panel-plugin/fsguard.c:190
 #, c-format
-msgid "%.2f GB space left on %s"
-msgstr "%.2f GB wolnego miejsca pozostało na %s"
+msgid "could not check mountpoint %s, please check your config"
+msgstr "Nie mogę sprawdzić punktu montowania %s, sprawdź ustawienia"
 
-#: ../panel-plugin/fsguard.c:187
-#, c-format
-msgid "%.2f MB space left on %s"
-msgstr "%.2f MB wolnego miejsca pozostało na %s"
+#: ../panel-plugin/fsguard.c:431
+msgid "Name"
+msgstr ""
 
-#: ../panel-plugin/fsguard.c:192
-#, c-format
-msgid "could not check mountpoint %s, please check your config"
-msgstr "nie mogę sprawdzić punktu montowania %s, sprawdź ustawienia"
+#: ../panel-plugin/fsguard.c:432
+msgid "Mount point"
+msgstr "Punkt montowania"
 
-#: ../panel-plugin/fsguard.c:412
-msgid "label"
-msgstr "etykieta"
+#: ../panel-plugin/fsguard.c:433
+msgid "Warning limit (MB)"
+msgstr "Próg ostrzeżenia (MB)"
 
-#: ../panel-plugin/fsguard.c:413
-msgid "mountpoint"
-msgstr "punkt montowania"
+#: ../panel-plugin/fsguard.c:434
+#, fuzzy
+msgid "Urgent limit (MB)"
+msgstr "Próg alarmu (MB)"
 
-#: ../panel-plugin/fsguard.c:414
-msgid "high alarm limit (MB)"
-msgstr "próg alarmu (MB)"
+#: ../panel-plugin/fsguard.c:435
+msgid "File manager"
+msgstr "Menadżer plików"
 
-#: ../panel-plugin/fsguard.c:415
-msgid "high warn limit (MB)"
-msgstr "próg ostrzeżenia (MB)"
+#: ../panel-plugin/fsguard.c:436
+msgid "Display size"
+msgstr ""
 
-#: ../panel-plugin/fsguard.c:416
-msgid "filemanager"
-msgstr "menadżer plików"
+#: ../panel-plugin/fsguard.c:437
+msgid "Display progress bar"
+msgstr ""
 
-#. }}}
-#. vim600: set foldmethod=marker: foldmarker={{{,}}}
-#: ../panel-plugin/fsguard.c:421 ../panel-plugin/fsguard.desktop.in.in.h:1
+#: ../panel-plugin/fsguard.c:442
+#: ../panel-plugin/fsguard.desktop.in.in.h:1
 msgid "Free Space Checker"
 msgstr "Strażnik Wolnego Miejsca"
 
@@ -91,5 +91,18 @@
 msgid "Monitor free disk space"
 msgstr "Monitor wolnego miejsca na dysku"
 
+#~ msgid "Only %.2f MB space left on %s (%s)!"
+#~ msgstr "%.2f MB wolnego miejsca na %s (%s) pozostało tylko!"
+#~ msgid "Only %.2f MB space left on %s!"
+#~ msgstr "%.2f MB wolnego miejsca na %s pozostało tylko!"
+#~ msgid "%.2f MB space left on %s (%s)"
+#~ msgstr "%.2f MB wolnego miejsca pozostało na %s (%s)"
+#~ msgid "%.2f MB space left on %s"
+#~ msgstr "%.2f MB wolnego miejsca pozostało na %s"
+#~ msgid "label"
+#~ msgstr "etykieta"
+#~ msgid "high alarm limit (MB)"
+#~ msgstr "próg alarmu (MB)"
 #~ msgid "Properties"
 #~ msgstr "Właściwości"
+

Modified: xfce4-fsguard-plugin/trunk/po/pt_BR.po
===================================================================
--- xfce4-fsguard-plugin/trunk/po/pt_BR.po	2007-10-04 13:24:02 UTC (rev 3298)
+++ xfce4-fsguard-plugin/trunk/po/pt_BR.po	2007-10-04 16:01:07 UTC (rev 3299)
@@ -1,92 +1,106 @@
-# Portuguese translations for xfce package.
-# Copyright (C) 2007 THE xfce'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the xfce package.
-# Fábio Nogueira <deb-user-ba at ubuntu.com>, 2007.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: xfce 4-fsguard-plugin\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-20 23:05+0100\n"
-"PO-Revision-Date: 2007-09-03 22:43-0300\n"
-"Last-Translator: Fábio Nogueira <deb-user-ba at ubuntu.com>\n"
-"Language-Team: Brazilian Portuguese <ldp-br at bazar2.conectiva.com.br>\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"
-
-#: ../panel-plugin/fsguard.c:159
-#, c-format
-msgid "Only %.2f GB space left on %s (%s)!"
-msgstr "Somente %.2f GB de espaço livre em %s (%s)!"
-
-#: ../panel-plugin/fsguard.c:161
-#, c-format
-msgid "Only %.2f MB space left on %s (%s)!"
-msgstr "Somente %.2f MB de espaço livre em %s (%s)!"
-
-#: ../panel-plugin/fsguard.c:165
-#, c-format
-msgid "Only %.2f GB space left on %s!"
-msgstr "Somente %.2f GB de espaço livre em %s!"
-
-#: ../panel-plugin/fsguard.c:167
-#, c-format
-msgid "Only %.2f MB space left on %s!"
-msgstr "Somente %.2f MB de espaço livre em %s!"
-
-#: ../panel-plugin/fsguard.c:179
-#, c-format
-msgid "%.2f GB space left on %s (%s)"
-msgstr "%.2f GB de espaço livre em %s (%s)"
-
-#: ../panel-plugin/fsguard.c:181
-#, c-format
-msgid "%.2f MB space left on %s (%s)"
-msgstr "%.2f MB de espaço livre em %s (%s)"
-
-#: ../panel-plugin/fsguard.c:185
-#, c-format
-msgid "%.2f GB space left on %s"
-msgstr "%.2f GB de espaço livre em %s"
-
-#: ../panel-plugin/fsguard.c:187
-#, c-format
-msgid "%.2f MB space left on %s"
-msgstr "%.2f MB de espaço livre em %s"
-
-#: ../panel-plugin/fsguard.c:192
-#, c-format
-msgid "could not check mountpoint %s, please check your config"
-msgstr "não foi possível verificar o ponto de montagem %s, por favor verifique sua configuração"
-
-#: ../panel-plugin/fsguard.c:412
-msgid "label"
-msgstr "rótulo"
-
-#: ../panel-plugin/fsguard.c:413
-msgid "mountpoint"
-msgstr "ponto de montagem"
-
-#: ../panel-plugin/fsguard.c:414
-msgid "high alarm limit (MB)"
-msgstr "alarme de limite alto (MB)"
-
-#: ../panel-plugin/fsguard.c:415
-msgid "high warn limit (MB)"
-msgstr "aviso de limite alto (MB)"
-
-#: ../panel-plugin/fsguard.c:416
-msgid "filemanager"
-msgstr "gerente de arquivo"
-
-#. }}}
-#. vim600: set foldmethod=marker: foldmarker={{{,}}}
-#: ../panel-plugin/fsguard.c:421 ../panel-plugin/fsguard.desktop.in.in.h:1
-msgid "Free Space Checker"
-msgstr "Verificador de Espaço Livre"
-
-#: ../panel-plugin/fsguard.desktop.in.in.h:2
-msgid "Monitor free disk space"
-msgstr "Monitor de espaço livre em disco"
+# Portuguese translations for xfce package.
+# Copyright (C) 2007 THE xfce'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the xfce package.
+# Fábio Nogueira <deb-user-ba at ubuntu.com>, 2007.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: xfce 4-fsguard-plugin\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-10-04 15:56+0200\n"
+"PO-Revision-Date: 2007-10-04 17:29+0100\n"
+"Last-Translator: Mike Massonnet <mmassonnet at gmail.com>\n"
+"Language-Team: Brazilian Portuguese <ldp-br at bazar2.conectiva.com.br>\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"
+
+#: ../panel-plugin/fsguard.c:153
+#: ../panel-plugin/fsguard.c:158
+#, c-format
+msgid "%.2f GB"
+msgstr "%.2f GB"
+
+#: ../panel-plugin/fsguard.c:155
+#: ../panel-plugin/fsguard.c:160
+#, c-format
+msgid "%.2f MB"
+msgstr "%.2f MB"
+
+#: ../panel-plugin/fsguard.c:169
+#, c-format
+msgid "Only %s space left on %s (%s)!"
+msgstr "Somente %s de espaço livre em %s (%s)!"
+
+#: ../panel-plugin/fsguard.c:171
+#, c-format
+msgid "Only %s space left on %s!"
+msgstr "Somente %s de espaço livre em %s!"
+
+#: ../panel-plugin/fsguard.c:182
+#, c-format
+msgid "%s/%s space left on %s (%s)"
+msgstr "%s/%s de espaço livre em %s (%s)"
+
+#: ../panel-plugin/fsguard.c:184
+#, c-format
+msgid "%s/%s space left on %s"
+msgstr "%s/%s de espaço livre em %s"
+
+#: ../panel-plugin/fsguard.c:190
+#, c-format
+msgid "could not check mountpoint %s, please check your config"
+msgstr "Não foi possível verificar o ponto de montagem %s, por favor verifique sua configuração"
+
+#: ../panel-plugin/fsguard.c:431
+msgid "Name"
+msgstr ""
+
+#: ../panel-plugin/fsguard.c:432
+msgid "Mount point"
+msgstr "Ponto de montagem"
+
+#: ../panel-plugin/fsguard.c:433
+msgid "Warning limit (MB)"
+msgstr "Aviso de limite alto (MB)"
+
+#: ../panel-plugin/fsguard.c:434
+#, fuzzy
+msgid "Urgent limit (MB)"
+msgstr "Alarme de limite alto (MB)"
+
+#: ../panel-plugin/fsguard.c:435
+msgid "File manager"
+msgstr "Gerente de arquivo"
+
+#: ../panel-plugin/fsguard.c:436
+msgid "Display size"
+msgstr ""
+
+#: ../panel-plugin/fsguard.c:437
+msgid "Display progress bar"
+msgstr ""
+
+#: ../panel-plugin/fsguard.c:442
+#: ../panel-plugin/fsguard.desktop.in.in.h:1
+msgid "Free Space Checker"
+msgstr "Verificador de Espaço Livre"
+
+#: ../panel-plugin/fsguard.desktop.in.in.h:2
+msgid "Monitor free disk space"
+msgstr "Monitor de espaço livre em disco"
+
+#~ msgid "Only %.2f MB space left on %s (%s)!"
+#~ msgstr "Somente %.2f MB de espaço livre em %s (%s)!"
+#~ msgid "Only %.2f MB space left on %s!"
+#~ msgstr "Somente %.2f MB de espaço livre em %s!"
+#~ msgid "%.2f MB space left on %s (%s)"
+#~ msgstr "%.2f MB de espaço livre em %s (%s)"
+#~ msgid "%.2f MB space left on %s"
+#~ msgstr "%.2f MB de espaço livre em %s"
+#~ msgid "label"
+#~ msgstr "rótulo"
+#~ msgid "high alarm limit (MB)"
+#~ msgstr "alarme de limite alto (MB)"
+

Modified: xfce4-fsguard-plugin/trunk/po/pt_PT.po
===================================================================
--- xfce4-fsguard-plugin/trunk/po/pt_PT.po	2007-10-04 13:24:02 UTC (rev 3298)
+++ xfce4-fsguard-plugin/trunk/po/pt_PT.po	2007-10-04 16:01:07 UTC (rev 3299)
@@ -7,82 +7,82 @@
 msgstr ""
 "Project-Id-Version: xfce4-fsguard-plugin/\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-20 23:05+0100\n"
-"PO-Revision-Date: 2007-06-30 18:41+0100\n"
-"Last-Translator: Nuno Miguel <nunis at netcabo.pt>\n"
+"POT-Creation-Date: 2007-10-04 15:56+0200\n"
+"PO-Revision-Date: 2007-10-04 17:29+0100\n"
+"Last-Translator: Mike Massonnet <mmassonnet at gmail.com>\n"
 "Language-Team: \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../panel-plugin/fsguard.c:159
+#: ../panel-plugin/fsguard.c:153
+#: ../panel-plugin/fsguard.c:158
 #, c-format
-msgid "Only %.2f GB space left on %s (%s)!"
-msgstr "Apenas %.2f GB de espaço livre em %s (%s)!"
+msgid "%.2f GB"
+msgstr "%.2f GB"
 
-#: ../panel-plugin/fsguard.c:161
+#: ../panel-plugin/fsguard.c:155
+#: ../panel-plugin/fsguard.c:160
 #, c-format
-msgid "Only %.2f MB space left on %s (%s)!"
-msgstr "Apenas %.2f MB espaço livre em %s (%s)! "
+msgid "%.2f MB"
+msgstr "%.2f MB"
 
-#: ../panel-plugin/fsguard.c:165
+#: ../panel-plugin/fsguard.c:169
 #, c-format
-msgid "Only %.2f GB space left on %s!"
-msgstr "Apenas %.2f GB espaço livre em %s!"
+msgid "Only %s space left on %s (%s)!"
+msgstr "Apenas %s de espaço livre em %s (%s)!"
 
-#: ../panel-plugin/fsguard.c:167
+#: ../panel-plugin/fsguard.c:171
 #, c-format
-msgid "Only %.2f MB space left on %s!"
-msgstr "Apenas %.2f MB espaço livre em %s!"
+msgid "Only %s space left on %s!"
+msgstr "Apenas %s espaço livre em %s!"
 
-#: ../panel-plugin/fsguard.c:179
+#: ../panel-plugin/fsguard.c:182
 #, c-format
-msgid "%.2f GB space left on %s (%s)"
-msgstr "%.2f GB espaço livre em %s (%s)"
+msgid "%s/%s space left on %s (%s)"
+msgstr "%s/%s espaço livre em %s (%s)"
 
-#: ../panel-plugin/fsguard.c:181
+#: ../panel-plugin/fsguard.c:184
 #, c-format
-msgid "%.2f MB space left on %s (%s)"
-msgstr "%.2f MB espaço livre em %s (%s)"
+msgid "%s/%s space left on %s"
+msgstr "%s/%s espaço livre em %s"
 
-#: ../panel-plugin/fsguard.c:185
+#: ../panel-plugin/fsguard.c:190
 #, c-format
-msgid "%.2f GB space left on %s"
-msgstr "%.2f GB espaço livre em %s"
+msgid "could not check mountpoint %s, please check your config"
+msgstr "Incapaz de verificar o ponto de montagem %s, por favor verifique a sua config"
 
-#: ../panel-plugin/fsguard.c:187
-#, c-format
-msgid "%.2f MB space left on %s"
-msgstr "%.2f MB espaço livre em %s"
+#: ../panel-plugin/fsguard.c:431
+msgid "Name"
+msgstr ""
 
-#: ../panel-plugin/fsguard.c:192
-#, c-format
-msgid "could not check mountpoint %s, please check your config"
-msgstr "incapaz de verificar o ponto de montagem %s, por favor verifique a sua config"
+#: ../panel-plugin/fsguard.c:432
+msgid "Mount point"
+msgstr "Ponto montagem"
 
-#: ../panel-plugin/fsguard.c:412
-msgid "label"
-msgstr "Etiqueta"
+#: ../panel-plugin/fsguard.c:433
+msgid "Warning limit (MB)"
+msgstr "Limite de aviso alto (MB)"
 
-#: ../panel-plugin/fsguard.c:413
-msgid "mountpoint"
-msgstr "ponto montagem"
+#: ../panel-plugin/fsguard.c:434
+#, fuzzy
+msgid "Urgent limit (MB)"
+msgstr "Alarme de limite alto (MB)"
 
-#: ../panel-plugin/fsguard.c:414
-msgid "high alarm limit (MB)"
-msgstr "alarme de limite alto (MB)"
+#: ../panel-plugin/fsguard.c:435
+#, fuzzy
+msgid "File manager"
+msgstr "Gestor de ficheiros"
 
-#: ../panel-plugin/fsguard.c:415
-msgid "high warn limit (MB)"
-msgstr "limite de aviso alto (MB)"
+#: ../panel-plugin/fsguard.c:436
+msgid "Display size"
+msgstr ""
 
-#: ../panel-plugin/fsguard.c:416
-msgid "filemanager"
-msgstr "gestor de ficheiros"
+#: ../panel-plugin/fsguard.c:437
+msgid "Display progress bar"
+msgstr ""
 
-#. }}}
-#. vim600: set foldmethod=marker: foldmarker={{{,}}}
-#: ../panel-plugin/fsguard.c:421
+#: ../panel-plugin/fsguard.c:442
 #: ../panel-plugin/fsguard.desktop.in.in.h:1
 msgid "Free Space Checker"
 msgstr "Free Space Checker"
@@ -91,3 +91,16 @@
 msgid "Monitor free disk space"
 msgstr "Monitor free disk space"
 
+#~ msgid "Only %.2f MB space left on %s (%s)!"
+#~ msgstr "Apenas %.2f MB espaço livre em %s (%s)! "
+#~ msgid "Only %.2f MB space left on %s!"
+#~ msgstr "Apenas %.2f MB espaço livre em %s!"
+#~ msgid "%.2f MB space left on %s (%s)"
+#~ msgstr "%.2f MB espaço livre em %s (%s)"
+#~ msgid "%.2f MB space left on %s"
+#~ msgstr "%.2f MB espaço livre em %s"
+#~ msgid "label"
+#~ msgstr "Etiqueta"
+#~ msgid "high alarm limit (MB)"
+#~ msgstr "alarme de limite alto (MB)"
+

Modified: xfce4-fsguard-plugin/trunk/po/sq.po
===================================================================
--- xfce4-fsguard-plugin/trunk/po/sq.po	2007-10-04 13:24:02 UTC (rev 3298)
+++ xfce4-fsguard-plugin/trunk/po/sq.po	2007-10-04 16:01:07 UTC (rev 3299)
@@ -7,83 +7,81 @@
 msgstr ""
 "Project-Id-Version: xfce4-fsguard-plugin 0.3.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-20 23:05+0100\n"
-"PO-Revision-Date: 2007-01-27 20:06+0200\n"
-"Last-Translator: Besnik Bleta <besnik at programeshqip.org>\n"
+"POT-Creation-Date: 2007-10-04 15:56+0200\n"
+"PO-Revision-Date: 2007-10-04 17:29+0100\n"
+"Last-Translator: Mike Massonnet <mmassonnet at gmail.com>\n"
 "Language-Team: Albanian <translation-team-sq at lists.sourceforge.net>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-
-#: ../panel-plugin/fsguard.c:159
+#: ../panel-plugin/fsguard.c:153
+#: ../panel-plugin/fsguard.c:158
 #, c-format
-msgid "Only %.2f GB space left on %s (%s)!"
-msgstr "Vetëm %.2f GB hapësirë e mbetur në %s (%s)!"
+msgid "%.2f GB"
+msgstr "%.2f GB"
 
-#: ../panel-plugin/fsguard.c:161
+#: ../panel-plugin/fsguard.c:155
+#: ../panel-plugin/fsguard.c:160
 #, c-format
-msgid "Only %.2f MB space left on %s (%s)!"
-msgstr "Vetëm %.2f MB hapësirë e mbetur në %s (%s)!"
+msgid "%.2f MB"
+msgstr "%.2f MB"
 
-#: ../panel-plugin/fsguard.c:165
+#: ../panel-plugin/fsguard.c:169
 #, c-format
-msgid "Only %.2f GB space left on %s!"
-msgstr "Vetëm %.2f GB hapësirë e mbetur në %s!"
+msgid "Only %s space left on %s (%s)!"
+msgstr "Vetëm %s hapësirë e mbetur në %s (%s)!"
 
-#: ../panel-plugin/fsguard.c:167
+#: ../panel-plugin/fsguard.c:171
 #, c-format
-msgid "Only %.2f MB space left on %s!"
-msgstr "Vetëm %.2f MB hapësirë e mbetur në %s!"
+msgid "Only %s space left on %s!"
+msgstr "Vetëm %s hapësirë e mbetur në %s!"
 
-#: ../panel-plugin/fsguard.c:179
+#: ../panel-plugin/fsguard.c:182
 #, c-format
-msgid "%.2f GB space left on %s (%s)"
-msgstr "%.2f GB hapësirë e mbetur në %s (%s)"
+msgid "%s/%s space left on %s (%s)"
+msgstr "%s/%s hapësirë e mbetur në %s (%s)"
 
-#: ../panel-plugin/fsguard.c:181
+#: ../panel-plugin/fsguard.c:184
 #, c-format
-msgid "%.2f MB space left on %s (%s)"
-msgstr "%.2f MB hapësirë e mbetur në %s (%s)"
+msgid "%s/%s space left on %s"
+msgstr "%s/%s hapësirë e mbetur në %s"
 
-#: ../panel-plugin/fsguard.c:185
+#: ../panel-plugin/fsguard.c:190
 #, c-format
-msgid "%.2f GB space left on %s"
-msgstr "%.2f GB hapësirë e mbetur në %s"
+msgid "could not check mountpoint %s, please check your config"
+msgstr "Nuk montova dot pikën e montimit %s, ju lutem kontrolloni formësimin tuaj"
 
-#: ../panel-plugin/fsguard.c:187
-#, c-format
-msgid "%.2f MB space left on %s"
-msgstr "%.2f MB hapësirë e mbetur në %s"
+#: ../panel-plugin/fsguard.c:431
+msgid "Name"
+msgstr ""
 
-#: ../panel-plugin/fsguard.c:192
-#, c-format
-msgid "could not check mountpoint %s, please check your config"
-msgstr "nuk montova dot pikën e montimit %s, ju lutem kontrolloni formësimin tuaj"
+#: ../panel-plugin/fsguard.c:432
+msgid "Mount point"
+msgstr "Pikë montimi"
 
-#: ../panel-plugin/fsguard.c:412
-msgid "label"
-msgstr "etiketë"
+#: ../panel-plugin/fsguard.c:433
+msgid "Warning limit (MB)"
+msgstr "Kufi sinjalizimi për të lartë (MB)"
 
-#: ../panel-plugin/fsguard.c:413
-msgid "mountpoint"
-msgstr "pikë montimi"
+#: ../panel-plugin/fsguard.c:434
+#, fuzzy
+msgid "Urgent limit (MB)"
+msgstr "Kufi alarmi për të lartë (MB)"
 
-#: ../panel-plugin/fsguard.c:414
-msgid "high alarm limit (MB)"
-msgstr "kufi alarmi për të lartë (MB)"
+#: ../panel-plugin/fsguard.c:435
+msgid "File manager"
+msgstr "Përgjegjës kartelash"
 
-#: ../panel-plugin/fsguard.c:415
-msgid "high warn limit (MB)"
-msgstr "kufi sinjalizimi për të lartë (MB)"
+#: ../panel-plugin/fsguard.c:436
+msgid "Display size"
+msgstr ""
 
-#: ../panel-plugin/fsguard.c:416
-msgid "filemanager"
-msgstr "përgjegjës kartelash"
+#: ../panel-plugin/fsguard.c:437
+msgid "Display progress bar"
+msgstr ""
 
-#. }}}
-#. vim600: set foldmethod=marker: foldmarker={{{,}}}
-#: ../panel-plugin/fsguard.c:421
+#: ../panel-plugin/fsguard.c:442
 #: ../panel-plugin/fsguard.desktop.in.in.h:1
 msgid "Free Space Checker"
 msgstr "Kontrollues Hapësire të Lirë"
@@ -92,3 +90,16 @@
 msgid "Monitor free disk space"
 msgstr "Mbikëqyr hapësirë disku të lirë"
 
+#~ msgid "Only %.2f MB space left on %s (%s)!"
+#~ msgstr "Vetëm %.2f MB hapësirë e mbetur në %s (%s)!"
+#~ msgid "Only %.2f MB space left on %s!"
+#~ msgstr "Vetëm %.2f MB hapësirë e mbetur në %s!"
+#~ msgid "%.2f MB space left on %s (%s)"
+#~ msgstr "%.2f MB hapësirë e mbetur në %s (%s)"
+#~ msgid "%.2f MB space left on %s"
+#~ msgstr "%.2f MB hapësirë e mbetur në %s"
+#~ msgid "label"
+#~ msgstr "etiketë"
+#~ msgid "high alarm limit (MB)"
+#~ msgstr "kufi alarmi për të lartë (MB)"
+

Modified: xfce4-fsguard-plugin/trunk/po/sv.po
===================================================================
--- xfce4-fsguard-plugin/trunk/po/sv.po	2007-10-04 13:24:02 UTC (rev 3298)
+++ xfce4-fsguard-plugin/trunk/po/sv.po	2007-10-04 16:01:07 UTC (rev 3299)
@@ -7,83 +7,82 @@
 msgstr ""
 "Project-Id-Version: xfce4-fsguard-plugin\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-20 23:05+0100\n"
-"PO-Revision-Date: 2006-05-17 14:50+0000\n"
-"Last-Translator: Daniel Nylander <po at danielnylander.se>\n"
+"POT-Creation-Date: 2007-10-04 15:56+0200\n"
+"PO-Revision-Date: 2007-10-04 17:29+0100\n"
+"Last-Translator: Mike Massonnet <mmassonnet at gmail.com>\n"
 "Language-Team: Swedish <tp-sv at listor.tp-sv.se>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../panel-plugin/fsguard.c:159
+#: ../panel-plugin/fsguard.c:153
+#: ../panel-plugin/fsguard.c:158
 #, c-format
-msgid "Only %.2f GB space left on %s (%s)!"
-msgstr "Endast %.2f GB utrymme kvar på %s (%s)!"
+msgid "%.2f GB"
+msgstr "%.2f GB"
 
-#: ../panel-plugin/fsguard.c:161
+#: ../panel-plugin/fsguard.c:155
+#: ../panel-plugin/fsguard.c:160
 #, c-format
-msgid "Only %.2f MB space left on %s (%s)!"
-msgstr "Endast %.2f MB utrymme kvar på %s (%s)!"
+msgid "%.2f MB"
+msgstr "%.2f MB"
 
-#: ../panel-plugin/fsguard.c:165
+#: ../panel-plugin/fsguard.c:169
 #, c-format
-msgid "Only %.2f GB space left on %s!"
-msgstr "Endast %.2f GB utrymme kvar på %s!"
+msgid "Only %s space left on %s (%s)!"
+msgstr "Endast %s utrymme kvar på %s (%s)!"
 
-#: ../panel-plugin/fsguard.c:167
+#: ../panel-plugin/fsguard.c:171
 #, c-format
-msgid "Only %.2f MB space left on %s!"
-msgstr "Endast %.2f MB utrymme kvar på %s!"
+msgid "Only %s space left on %s!"
+msgstr "Endast %s utrymme kvar på %s!"
 
-#: ../panel-plugin/fsguard.c:179
+#: ../panel-plugin/fsguard.c:182
 #, c-format
-msgid "%.2f GB space left on %s (%s)"
-msgstr "%.2f GB utrymme kvar på %s (%s)"
+msgid "%s/%s space left on %s (%s)"
+msgstr "%s/%s utrymme kvar på %s (%s)"
 
-#: ../panel-plugin/fsguard.c:181
+#: ../panel-plugin/fsguard.c:184
 #, c-format
-msgid "%.2f MB space left on %s (%s)"
-msgstr "%.2f MB utrymme kvar på %s (%s)"
+msgid "%s/%s space left on %s"
+msgstr "%s/%s utrymme kvar på %s"
 
-#: ../panel-plugin/fsguard.c:185
+#: ../panel-plugin/fsguard.c:190
 #, c-format
-msgid "%.2f GB space left on %s"
-msgstr "%.2f GB utrymme kvar på %s"
+msgid "could not check mountpoint %s, please check your config"
+msgstr "kunde inte kontrollera monteringspunkten %s, undersök din konfiguration"
 
-#: ../panel-plugin/fsguard.c:187
-#, c-format
-msgid "%.2f MB space left on %s"
-msgstr "%.2f MB utrymme kvar på %s"
-
-#: ../panel-plugin/fsguard.c:192
-#, c-format
-msgid "could not check mountpoint %s, please check your config"
+#: ../panel-plugin/fsguard.c:431
+msgid "Name"
 msgstr ""
-"kunde inte kontrollera monteringspunkten %s, undersök din konfiguration"
 
-#: ../panel-plugin/fsguard.c:412
-msgid "label"
-msgstr "etikett"
+#: ../panel-plugin/fsguard.c:432
+msgid "Mount point"
+msgstr "Monteringspunkt"
 
-#: ../panel-plugin/fsguard.c:413
-msgid "mountpoint"
-msgstr "monteringspunkt"
+#: ../panel-plugin/fsguard.c:433
+msgid "Warning limit (MB)"
+msgstr "Varningsgräns hög (MB)"
 
-#: ../panel-plugin/fsguard.c:414
-msgid "high alarm limit (MB)"
-msgstr "alarmgräns hög (MB)"
+#: ../panel-plugin/fsguard.c:434
+#, fuzzy
+msgid "Urgent limit (MB)"
+msgstr "Alarmgräns hög (MB)"
 
-#: ../panel-plugin/fsguard.c:415
-msgid "high warn limit (MB)"
-msgstr "varningsgräns hög (MB)"
+#: ../panel-plugin/fsguard.c:435
+msgid "File manager"
+msgstr "Filhanterare"
 
-#: ../panel-plugin/fsguard.c:416
-msgid "filemanager"
-msgstr "filhanterare"
+#: ../panel-plugin/fsguard.c:436
+msgid "Display size"
+msgstr ""
 
-#. }}}
-#. vim600: set foldmethod=marker: foldmarker={{{,}}}
-#: ../panel-plugin/fsguard.c:421 ../panel-plugin/fsguard.desktop.in.in.h:1
+#: ../panel-plugin/fsguard.c:437
+msgid "Display progress bar"
+msgstr ""
+
+#: ../panel-plugin/fsguard.c:442
+#: ../panel-plugin/fsguard.desktop.in.in.h:1
 msgid "Free Space Checker"
 msgstr "Kontrollerare av ledigt utrymme"
 
@@ -91,5 +90,18 @@
 msgid "Monitor free disk space"
 msgstr ""
 
+#~ msgid "Only %.2f MB space left on %s (%s)!"
+#~ msgstr "Endast %.2f MB utrymme kvar på %s (%s)!"
+#~ msgid "Only %.2f MB space left on %s!"
+#~ msgstr "Endast %.2f MB utrymme kvar på %s!"
+#~ msgid "%.2f MB space left on %s (%s)"
+#~ msgstr "%.2f MB utrymme kvar på %s (%s)"
+#~ msgid "%.2f MB space left on %s"
+#~ msgstr "%.2f MB utrymme kvar på %s"
+#~ msgid "label"
+#~ msgstr "etikett"
+#~ msgid "high alarm limit (MB)"
+#~ msgstr "alarmgräns hög (MB)"
 #~ msgid "Properties"
 #~ msgstr "Egenskaper"
+

Modified: xfce4-fsguard-plugin/trunk/po/uk.po
===================================================================
--- xfce4-fsguard-plugin/trunk/po/uk.po	2007-10-04 13:24:02 UTC (rev 3298)
+++ xfce4-fsguard-plugin/trunk/po/uk.po	2007-10-04 16:01:07 UTC (rev 3299)
@@ -7,89 +7,101 @@
 msgstr ""
 "Project-Id-Version: xfce4-fsguard-plugin\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-03-13 17:02+0200\n"
-"PO-Revision-Date: 2007-03-08 02:34+0200\n"
-"Last-Translator: Dmitry Nikitin <luckas_fb at mail.ru>\n"
+"POT-Creation-Date: 2007-10-04 15:56+0200\n"
+"PO-Revision-Date: 2007-10-04 17:29+0100\n"
+"Last-Translator: Mike Massonnet <mmassonnet at gmail.com>\n"
 "Language-Team: Ukrainian <xfce-i18n at xfce.org>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "X-Generator: KBabel 1.11.4\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"
 
-#: ../panel-plugin/fsguard.c:159
+#: ../panel-plugin/fsguard.c:153
+#: ../panel-plugin/fsguard.c:158
 #, c-format
-msgid "Only %.2f GB space left on %s (%s)!"
-msgstr "Тільки %.2f Гб вільного простору залишилось на %s (%s)!"
+msgid "%.2f GB"
+msgstr "%.2f Гб"
 
-#: ../panel-plugin/fsguard.c:161
+#: ../panel-plugin/fsguard.c:155
+#: ../panel-plugin/fsguard.c:160
 #, c-format
-msgid "Only %.2f MB space left on %s (%s)!"
-msgstr "Тільки %.2f Мб вільного простору залишилось на %s (%s)!"
+msgid "%.2f MB"
+msgstr "%.2f Мб"
 
-#: ../panel-plugin/fsguard.c:165
+#: ../panel-plugin/fsguard.c:169
 #, c-format
-msgid "Only %.2f GB space left on %s!"
-msgstr "Тільки %.2f Гб вільного простору залишилось на %s!"
+msgid "Only %s space left on %s (%s)!"
+msgstr "Тільки %s вільного простору залишилось на %s (%s)!"
 
-#: ../panel-plugin/fsguard.c:167
+#: ../panel-plugin/fsguard.c:171
 #, c-format
-msgid "Only %.2f MB space left on %s!"
-msgstr "Тільки %.2f Мб вільного простору залишилось на %s!"
+msgid "Only %s space left on %s!"
+msgstr "Тільки %s вільного простору залишилось на %s!"
 
-#: ../panel-plugin/fsguard.c:179
+#: ../panel-plugin/fsguard.c:182
 #, c-format
-msgid "%.2f GB space left on %s (%s)"
-msgstr "%.2f Гб вільного простору залишилось на %s (%s)"
+msgid "%s/%s space left on %s (%s)"
+msgstr "%s/%s вільного простору залишилось на %s (%s)"
 
-#: ../panel-plugin/fsguard.c:181
+#: ../panel-plugin/fsguard.c:184
 #, c-format
-msgid "%.2f MB space left on %s (%s)"
-msgstr "%.2f Мб вільного простору залишилось на %s (%s)"
+msgid "%s/%s space left on %s"
+msgstr "%s/%s вільного простору залишилось на %s"
 
-#: ../panel-plugin/fsguard.c:185
+#: ../panel-plugin/fsguard.c:190
 #, c-format
-msgid "%.2f GB space left on %s"
-msgstr "%.2f Гб вільного простору залишилось на %s"
+msgid "could not check mountpoint %s, please check your config"
+msgstr "Неможливо перевірити точку монтування %s, будь-ласка перевірте Ваш config"
 
-#: ../panel-plugin/fsguard.c:187
-#, c-format
-msgid "%.2f MB space left on %s"
-msgstr "%.2f Мб вільного простору залишилось на %s"
-
-#: ../panel-plugin/fsguard.c:192
-#, c-format
-msgid "could not check mountpoint %s, please check your config"
+#: ../panel-plugin/fsguard.c:431
+msgid "Name"
 msgstr ""
-"неможливо перевірити точку монтування %s, будь-ласка перевірте Ваш config"
 
-#: ../panel-plugin/fsguard.c:409
-msgid "label"
-msgstr "мітка"
+#: ../panel-plugin/fsguard.c:432
+msgid "Mount point"
+msgstr "Точка монтування"
 
-#: ../panel-plugin/fsguard.c:410
-msgid "mountpoint"
-msgstr "точка монтування"
+#: ../panel-plugin/fsguard.c:433
+msgid "Warning limit (MB)"
+msgstr "Найвищий ліміт для попередження (Мб)"
 
-#: ../panel-plugin/fsguard.c:411
-msgid "high alarm limit (MB)"
+#: ../panel-plugin/fsguard.c:434
+#, fuzzy
+msgid "Urgent limit (MB)"
 msgstr "Найвищий ліміт для тривоги (Мб)"
 
-#: ../panel-plugin/fsguard.c:412
-msgid "high warn limit (MB)"
-msgstr "Найвищий ліміт для попередження (Мб)"
+#: ../panel-plugin/fsguard.c:435
+msgid "File manager"
+msgstr "Файловий менеджер"
 
-#: ../panel-plugin/fsguard.c:413
-msgid "filemanager"
-msgstr "файловий менеджер"
+#: ../panel-plugin/fsguard.c:436
+msgid "Display size"
+msgstr ""
 
-#. }}}
-#. vim600: set foldmethod=marker: foldmarker={{{,}}}
-#: ../panel-plugin/fsguard.c:418 ../panel-plugin/fsguard.desktop.in.in.h:1
+#: ../panel-plugin/fsguard.c:437
+msgid "Display progress bar"
+msgstr ""
+
+#: ../panel-plugin/fsguard.c:442
+#: ../panel-plugin/fsguard.desktop.in.in.h:1
 msgid "Free Space Checker"
 msgstr "Контролер вільного місця"
 
 #: ../panel-plugin/fsguard.desktop.in.in.h:2
 msgid "Monitor free disk space"
 msgstr "Спостереження за вільним простором на диску"
+
+#~ msgid "Only %.2f MB space left on %s (%s)!"
+#~ msgstr "Тільки %.2f Мб вільного простору залишилось на %s (%s)!"
+#~ msgid "Only %.2f MB space left on %s!"
+#~ msgstr "Тільки %.2f Мб вільного простору залишилось на %s!"
+#~ msgid "%.2f MB space left on %s (%s)"
+#~ msgstr "%.2f Мб вільного простору залишилось на %s (%s)"
+#~ msgid "%.2f MB space left on %s"
+#~ msgstr "%.2f Мб вільного простору залишилось на %s"
+#~ msgid "label"
+#~ msgstr "мітка"
+#~ msgid "high alarm limit (MB)"
+#~ msgstr "Найвищий ліміт для тривоги (Мб)"
+

Modified: xfce4-fsguard-plugin/trunk/po/vi.po
===================================================================
--- xfce4-fsguard-plugin/trunk/po/vi.po	2007-10-04 13:24:02 UTC (rev 3298)
+++ xfce4-fsguard-plugin/trunk/po/vi.po	2007-10-04 16:01:07 UTC (rev 3299)
@@ -6,86 +6,101 @@
 msgstr ""
 "Project-Id-Version: xfce4-fsguard-plugin 0.3.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-20 23:05+0100\n"
-"PO-Revision-Date: 2006-02-19 22:50+0300\n"
-"Last-Translator: Phan Vĩnh Thịnh <teppi at vnlinux.org>\n"
+"POT-Creation-Date: 2007-10-04 15:56+0200\n"
+"PO-Revision-Date: 2007-10-04 16:43+0100\n"
+"Last-Translator: Mike Massonnet <mmassonnet at gmail.com>\n"
 "Language-Team: Vietnamese <none at li.org>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "X-Generator: KBabel 1.9.1\n"
 
-#: ../panel-plugin/fsguard.c:159
+#: ../panel-plugin/fsguard.c:153 ../panel-plugin/fsguard.c:158
 #, c-format
-msgid "Only %.2f GB space left on %s (%s)!"
-msgstr "Chỉ còn %.2f GB trống trên %s (%s)!"
+msgid "%.2f GB"
+msgstr "%.2f GB"
 
-#: ../panel-plugin/fsguard.c:161
+#: ../panel-plugin/fsguard.c:155 ../panel-plugin/fsguard.c:160
 #, c-format
-msgid "Only %.2f MB space left on %s (%s)!"
-msgstr "Chỉ còn %.2f MB trống trên %s (%s)!"
+msgid "%.2f MB"
+msgstr "%.2f MB"
 
-#: ../panel-plugin/fsguard.c:165
+#: ../panel-plugin/fsguard.c:169
 #, c-format
-msgid "Only %.2f GB space left on %s!"
-msgstr "Chỉ còn %.2f GB trống trên %s!"
+msgid "Only %s space left on %s (%s)!"
+msgstr "Chỉ còn %s trống trên %s (%s)!"
 
-#: ../panel-plugin/fsguard.c:167
+#: ../panel-plugin/fsguard.c:171
 #, c-format
-msgid "Only %.2f MB space left on %s!"
-msgstr "Chỉ còn %.2f MB trống trên %s!"
+msgid "Only %s space left on %s!"
+msgstr "Chỉ còn %s trống trên %s!"
 
-#: ../panel-plugin/fsguard.c:179
+#: ../panel-plugin/fsguard.c:182
 #, c-format
-msgid "%.2f GB space left on %s (%s)"
-msgstr "%.2f GB trống trên %s (%s)"
+msgid "%s/%s space left on %s (%s)"
+msgstr "%s/%s trống trên %s (%s)"
 
-#: ../panel-plugin/fsguard.c:181
+#: ../panel-plugin/fsguard.c:184
 #, c-format
-msgid "%.2f MB space left on %s (%s)"
-msgstr "%.2f MB trống trên %s (%s)"
+msgid "%s/%s space left on %s"
+msgstr "%s/%s trống trên %s"
 
-#: ../panel-plugin/fsguard.c:185
+#: ../panel-plugin/fsguard.c:190
 #, c-format
-msgid "%.2f GB space left on %s"
-msgstr "%.2f GB trống trên %s"
-
-#: ../panel-plugin/fsguard.c:187
-#, c-format
-msgid "%.2f MB space left on %s"
-msgstr "%.2f MB trống trên %s"
-
-#: ../panel-plugin/fsguard.c:192
-#, c-format
 msgid "could not check mountpoint %s, please check your config"
 msgstr "không kiểm tra được điểm gắn %s, xin hãy xem lại cấu hình"
 
-#: ../panel-plugin/fsguard.c:412
-msgid "label"
-msgstr "nhãn"
+#: ../panel-plugin/fsguard.c:431
+msgid "Name"
+msgstr ""
 
-#: ../panel-plugin/fsguard.c:413
-msgid "mountpoint"
-msgstr "điểm gắn"
+#: ../panel-plugin/fsguard.c:432
+msgid "Mount point"
+msgstr "Điểm gắn"
 
-#: ../panel-plugin/fsguard.c:414
-msgid "high alarm limit (MB)"
-msgstr "báo thức giới hạn cao (MB)"
+#: ../panel-plugin/fsguard.c:433
+msgid "Warning limit (MB)"
+msgstr "Cảnh báo giới hạn cao (MB)"
 
-#: ../panel-plugin/fsguard.c:415
-msgid "high warn limit (MB)"
-msgstr "cảnh báo giới hạn cao (MB)"
+#: ../panel-plugin/fsguard.c:434
+#, fuzzy
+msgid "Urgent limit (MB)"
+msgstr "Báo thức giới hạn cao (MB)"
 
-#: ../panel-plugin/fsguard.c:416
-msgid "filemanager"
-msgstr "trình quản lý tập tin"
+#: ../panel-plugin/fsguard.c:435
+msgid "File manager"
+msgstr "Trình quản lý tập tin"
 
-#. }}}
-#. vim600: set foldmethod=marker: foldmarker={{{,}}}
-#: ../panel-plugin/fsguard.c:421 ../panel-plugin/fsguard.desktop.in.in.h:1
+#: ../panel-plugin/fsguard.c:436
+msgid "Display size"
+msgstr ""
+
+#: ../panel-plugin/fsguard.c:437
+msgid "Display progress bar"
+msgstr ""
+
+#: ../panel-plugin/fsguard.c:442 ../panel-plugin/fsguard.desktop.in.in.h:1
 msgid "Free Space Checker"
 msgstr "Trình kiểm tra không gian trống"
 
 #: ../panel-plugin/fsguard.desktop.in.in.h:2
 msgid "Monitor free disk space"
 msgstr ""
+
+#~ msgid "Only %.2f MB space left on %s (%s)!"
+#~ msgstr "Chỉ còn %.2f MB trống trên %s (%s)!"
+
+#~ msgid "Only %.2f MB space left on %s!"
+#~ msgstr "Chỉ còn %.2f MB trống trên %s!"
+
+#~ msgid "%.2f MB space left on %s (%s)"
+#~ msgstr "%.2f MB trống trên %s (%s)"
+
+#~ msgid "%.2f MB space left on %s"
+#~ msgstr "%.2f MB trống trên %s"
+
+#~ msgid "label"
+#~ msgstr "nhãn"
+
+#~ msgid "high alarm limit (MB)"
+#~ msgstr "báo thức giới hạn cao (MB)"

Modified: xfce4-fsguard-plugin/trunk/po/xfce4-fsguard-plugin.pot
===================================================================
--- xfce4-fsguard-plugin/trunk/po/xfce4-fsguard-plugin.pot	2007-10-04 13:24:02 UTC (rev 3298)
+++ xfce4-fsguard-plugin/trunk/po/xfce4-fsguard-plugin.pot	2007-10-04 16:01:07 UTC (rev 3299)
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-20 23:05+0100\n"
+"POT-Creation-Date: 2007-10-04 15:56+0200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -16,74 +16,70 @@
 "Content-Type: text/plain; charset=CHARSET\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../panel-plugin/fsguard.c:159
+#: ../panel-plugin/fsguard.c:153 ../panel-plugin/fsguard.c:158
 #, c-format
-msgid "Only %.2f GB space left on %s (%s)!"
+msgid "%.2f GB"
 msgstr ""
 
-#: ../panel-plugin/fsguard.c:161
+#: ../panel-plugin/fsguard.c:155 ../panel-plugin/fsguard.c:160
 #, c-format
-msgid "Only %.2f MB space left on %s (%s)!"
+msgid "%.2f MB"
 msgstr ""
 
-#: ../panel-plugin/fsguard.c:165
+#: ../panel-plugin/fsguard.c:169
 #, c-format
-msgid "Only %.2f GB space left on %s!"
+msgid "Only %s space left on %s (%s)!"
 msgstr ""
 
-#: ../panel-plugin/fsguard.c:167
+#: ../panel-plugin/fsguard.c:171
 #, c-format
-msgid "Only %.2f MB space left on %s!"
+msgid "Only %s space left on %s!"
 msgstr ""
 
-#: ../panel-plugin/fsguard.c:179
+#: ../panel-plugin/fsguard.c:182
 #, c-format
-msgid "%.2f GB space left on %s (%s)"
+msgid "%s/%s space left on %s (%s)"
 msgstr ""
 
-#: ../panel-plugin/fsguard.c:181
+#: ../panel-plugin/fsguard.c:184
 #, c-format
-msgid "%.2f MB space left on %s (%s)"
+msgid "%s/%s space left on %s"
 msgstr ""
 
-#: ../panel-plugin/fsguard.c:185
+#: ../panel-plugin/fsguard.c:190
 #, c-format
-msgid "%.2f GB space left on %s"
+msgid "could not check mountpoint %s, please check your config"
 msgstr ""
 
-#: ../panel-plugin/fsguard.c:187
-#, c-format
-msgid "%.2f MB space left on %s"
+#: ../panel-plugin/fsguard.c:431
+msgid "Name"
 msgstr ""
 
-#: ../panel-plugin/fsguard.c:192
-#, c-format
-msgid "could not check mountpoint %s, please check your config"
+#: ../panel-plugin/fsguard.c:432
+msgid "Mount point"
 msgstr ""
 
-#: ../panel-plugin/fsguard.c:412
-msgid "label"
+#: ../panel-plugin/fsguard.c:433
+msgid "Warning limit (MB)"
 msgstr ""
 
-#: ../panel-plugin/fsguard.c:413
-msgid "mountpoint"
+#: ../panel-plugin/fsguard.c:434
+msgid "Urgent limit (MB)"
 msgstr ""
 
-#: ../panel-plugin/fsguard.c:414
-msgid "high alarm limit (MB)"
+#: ../panel-plugin/fsguard.c:435
+msgid "File manager"
 msgstr ""
 
-#: ../panel-plugin/fsguard.c:415
-msgid "high warn limit (MB)"
+#: ../panel-plugin/fsguard.c:436
+msgid "Display size"
 msgstr ""
 
-#: ../panel-plugin/fsguard.c:416
-msgid "filemanager"
+#: ../panel-plugin/fsguard.c:437
+msgid "Display progress bar"
 msgstr ""
 
-#. }}}
-#. vim600: set foldmethod=marker: foldmarker={{{,}}}
-#: ../panel-plugin/fsguard.c:421 ../panel-plugin/fsguard.desktop.in.in.h:1
+#: ../panel-plugin/fsguard.c:442 ../panel-plugin/fsguard.desktop.in.in.h:1
 msgid "Free Space Checker"
 msgstr ""
 

Modified: xfce4-fsguard-plugin/trunk/po/zh_TW.po
===================================================================
--- xfce4-fsguard-plugin/trunk/po/zh_TW.po	2007-10-04 13:24:02 UTC (rev 3298)
+++ xfce4-fsguard-plugin/trunk/po/zh_TW.po	2007-10-04 16:01:07 UTC (rev 3299)
@@ -9,82 +9,79 @@
 msgstr ""
 "Project-Id-Version: xfce4-fsguard-plugin 0.3.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-20 23:05+0100\n"
-"PO-Revision-Date: 2006-06-26 22:06+0800\n"
-"Last-Translator: Hydonsingore Cia <hydonsingore at educities.edu.tw>\n"
+"POT-Creation-Date: 2007-10-04 15:56+0200\n"
+"PO-Revision-Date: 2007-10-04 16:44+0100\n"
+"Last-Translator: Mike Massonnet <mmassonnet at gmail.com>\n"
 "Language-Team: Chinese (traditional) <zh-l10n at linux.org.tw>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../panel-plugin/fsguard.c:159
+#: ../panel-plugin/fsguard.c:153 ../panel-plugin/fsguard.c:158
 #, c-format
-msgid "Only %.2f GB space left on %s (%s)!"
-msgstr "%2$s (%3$s) 的容量只剩下 %1$.2f GB!"
+msgid "%.2f GB"
+msgstr "%.2f GB"
 
-#: ../panel-plugin/fsguard.c:161
+#: ../panel-plugin/fsguard.c:155 ../panel-plugin/fsguard.c:160
 #, c-format
-msgid "Only %.2f MB space left on %s (%s)!"
-msgstr "%2$s (%3$s) 的容量只剩下 %1$.2f MB!"
+msgid "%.2f MB"
+msgstr "%.2f MB"
 
-#: ../panel-plugin/fsguard.c:165
+#: ../panel-plugin/fsguard.c:169
 #, c-format
-msgid "Only %.2f GB space left on %s!"
-msgstr "%2$s 的容量只剩下 %1$.2f GB!"
+msgid "Only %s space left on %s (%s)!"
+msgstr "%2$s (%3$s) 的容量只剩下 %1$s!"
 
-#: ../panel-plugin/fsguard.c:167
+#: ../panel-plugin/fsguard.c:171
 #, c-format
-msgid "Only %.2f MB space left on %s!"
-msgstr "%2$s 的容量只剩下 %1$.2f MB!"
+msgid "Only %s space left on %s!"
+msgstr "%2$s 的容量只剩下 %1$s!"
 
-#: ../panel-plugin/fsguard.c:179
+#: ../panel-plugin/fsguard.c:182
 #, c-format
-msgid "%.2f GB space left on %s (%s)"
-msgstr "%2$s (%3$s) 的容量剩下 %1$.2f GB"
+msgid "%s/%s space left on %s (%s)"
+msgstr "%3$s (%4$s) 的容量剩下 %2$s/%3$s"
 
-#: ../panel-plugin/fsguard.c:181
+#: ../panel-plugin/fsguard.c:184
 #, c-format
-msgid "%.2f MB space left on %s (%s)"
-msgstr "%2$s (%3$s) 的容量剩下 %1$.2f MB"
+msgid "%s/%s space left on %s"
+msgstr "%3$s 的容量剩下 %1$s/%2$s"
 
-#: ../panel-plugin/fsguard.c:185
+#: ../panel-plugin/fsguard.c:190
 #, c-format
-msgid "%.2f GB space left on %s"
-msgstr "%2$s 的容量剩下 %1$.2f GB"
-
-#: ../panel-plugin/fsguard.c:187
-#, c-format
-msgid "%.2f MB space left on %s"
-msgstr "%2$s 的容量剩下 %1$.2f MB"
-
-#: ../panel-plugin/fsguard.c:192
-#, c-format
 msgid "could not check mountpoint %s, please check your config"
 msgstr "無法檢查位置 %s,請檢查您的設定"
 
-#: ../panel-plugin/fsguard.c:412
-msgid "label"
-msgstr "標籤"
+#: ../panel-plugin/fsguard.c:431
+msgid "Name"
+msgstr ""
 
-#: ../panel-plugin/fsguard.c:413
-msgid "mountpoint"
+#: ../panel-plugin/fsguard.c:432
+msgid "Mount point"
 msgstr "掛載點"
 
-#: ../panel-plugin/fsguard.c:414
-msgid "high alarm limit (MB)"
+#: ../panel-plugin/fsguard.c:433
+msgid "Warning limit (MB)"
+msgstr "高容量警告上限 (MB)"
+
+#: ../panel-plugin/fsguard.c:434
+#, fuzzy
+msgid "Urgent limit (MB)"
 msgstr "高容量提醒上限 (MB)"
 
-#: ../panel-plugin/fsguard.c:415
-msgid "high warn limit (MB)"
-msgstr "高容量警告上限 (MB)"
-
-#: ../panel-plugin/fsguard.c:416
-msgid "filemanager"
+#: ../panel-plugin/fsguard.c:435
+msgid "File manager"
 msgstr "檔案管理程式"
 
-#. }}}
-#. vim600: set foldmethod=marker: foldmarker={{{,}}}
-#: ../panel-plugin/fsguard.c:421 ../panel-plugin/fsguard.desktop.in.in.h:1
+#: ../panel-plugin/fsguard.c:436
+msgid "Display size"
+msgstr ""
+
+#: ../panel-plugin/fsguard.c:437
+msgid "Display progress bar"
+msgstr ""
+
+#: ../panel-plugin/fsguard.c:442 ../panel-plugin/fsguard.desktop.in.in.h:1
 msgid "Free Space Checker"
 msgstr "剩餘容量檢查程式"
 
@@ -92,5 +89,23 @@
 msgid "Monitor free disk space"
 msgstr "監控磁碟剩餘容量"
 
+#~ msgid "Only %.2f MB space left on %s (%s)!"
+#~ msgstr "%2$s (%3$s) 的容量只剩下 %1$.2f MB!"
+
+#~ msgid "Only %.2f MB space left on %s!"
+#~ msgstr "%2$s 的容量只剩下 %1$.2f MB!"
+
+#~ msgid "%.2f MB space left on %s (%s)"
+#~ msgstr "%2$s (%3$s) 的容量剩下 %1$.2f MB"
+
+#~ msgid "%.2f MB space left on %s"
+#~ msgstr "%2$s 的容量剩下 %1$.2f MB"
+
+#~ msgid "label"
+#~ msgstr "標籤"
+
+#~ msgid "high alarm limit (MB)"
+#~ msgstr "高容量提醒上限 (MB)"
+
 #~ msgid "Properties"
 #~ msgstr "屬性"




More information about the Goodies-commits mailing list