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

Mike Massonnet mmassonnet at xfce.org
Wed Dec 20 23:28:53 CET 2006


Author: mmassonnet
Date: 2006-12-20 22:28:52 +0000 (Wed, 20 Dec 2006)
New Revision: 2268

Added:
   xfce4-fsguard-plugin/trunk/configure.in.in
   xfce4-fsguard-plugin/trunk/po/LINGUAS
Removed:
   xfce4-fsguard-plugin/trunk/configure.ac
Modified:
   xfce4-fsguard-plugin/trunk/autogen.sh
   xfce4-fsguard-plugin/trunk/panel-plugin/Makefile.am
   xfce4-fsguard-plugin/trunk/panel-plugin/fsguard.c
   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/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/pl.po
   xfce4-fsguard-plugin/trunk/po/sv.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:
Cleaned the autotools scripts, use a LINGUAS file.
panel-plugin/fsguard.c:
  * Default to "exo-open" as file manager.
  * Switched to xfce_titled_dialog.
po/:
  * LINGUAS: new file.
  * make update-po.



Modified: xfce4-fsguard-plugin/trunk/autogen.sh
===================================================================
--- xfce4-fsguard-plugin/trunk/autogen.sh	2006-12-20 20:45:57 UTC (rev 2267)
+++ xfce4-fsguard-plugin/trunk/autogen.sh	2006-12-20 22:28:52 UTC (rev 2268)
@@ -18,6 +18,15 @@
   exit 1
 }
 
+# verify that po/LINGUAS is present
+(test -f po/LINGUAS) >/dev/null 2>&1 || {
+  cat >&2 <<EOF
+autogen.sh: The file po/LINGUAS could not be found. Please check your snapshot
+            or try to checkout again.
+EOF
+  exit 1
+}
+
 exec xdt-autogen $@
 
 # vi:set ts=2 sw=2 et ai:

Deleted: xfce4-fsguard-plugin/trunk/configure.ac

Copied: xfce4-fsguard-plugin/trunk/configure.in.in (from rev 2263, xfce4-fsguard-plugin/trunk/configure.ac)
===================================================================
--- xfce4-fsguard-plugin/trunk/configure.in.in	                        (rev 0)
+++ xfce4-fsguard-plugin/trunk/configure.in.in	2006-12-20 22:28:52 UTC (rev 2268)
@@ -0,0 +1,54 @@
+dnl configure.ac
+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
+
+m4_define([fsguard_version],[0.3.99])
+
+AC_INIT([xfce4-fsguard-plugin], [fsguard_version()],
+        [goodies-dev at xfce.org])
+
+AM_INIT_AUTOMAKE([xfce4-fsguard-plugin], [fsguard_version()])
+AM_CONFIG_HEADER([config.h])
+AM_MAINTAINER_MODE
+
+dnl Avoid g77 and g++ checks
+m4_undefine([AC_PROG_CXX])
+m4_defun([AC_PROG_CXX],[])
+m4_undefine([AC_PROG_F77])
+m4_defun([AC_PROG_F77],[])
+
+dnl Check for UNIX variants
+AC_AIX
+AC_ISC_POSIX
+AC_MINIX
+
+dnl Check for basic programs
+AC_PROG_CC
+AC_PROG_INSTALL
+AC_PROG_INTLTOOL
+
+dnl Check for standard header files
+AC_HEADER_STDC
+
+dnl Check for X11 installed
+XDT_CHECK_LIBX11_REQUIRE
+
+dnl configure the panel plugin
+XDT_CHECK_PACKAGE([LIBXFCE4PANEL], [libxfce4panel-1.0], [4.3.99])
+
+dnl check for i18n support
+XDT_I18N([@LINGUAS@])
+
+dnl Check for debugging support
+XDT_FEATURE_DEBUG()
+
+AC_OUTPUT([
+Makefile
+panel-plugin/Makefile
+icons/Makefile
+po/Makefile.in
+])

Modified: xfce4-fsguard-plugin/trunk/panel-plugin/Makefile.am
===================================================================
--- xfce4-fsguard-plugin/trunk/panel-plugin/Makefile.am	2006-12-20 20:45:57 UTC (rev 2267)
+++ xfce4-fsguard-plugin/trunk/panel-plugin/Makefile.am	2006-12-20 22:28:52 UTC (rev 2268)
@@ -1,31 +1,31 @@
 plugindir = $(libexecdir)/xfce4/panel-plugins
 plugin_PROGRAMS = xfce4-fsguard-plugin
 
-xfce4_fsguard_plugin_CFLAGS =					\
-	-DPACKAGE_LOCALE_DIR=\"$(localedir)\"			\
+xfce4_fsguard_plugin_CFLAGS =									\
+	-DPACKAGE_LOCALE_DIR=\"$(localedir)\"						\
 	@LIBXFCE4PANEL_CFLAGS@
 
-xfce4_fsguard_plugin_LDFLAGS =					\
+xfce4_fsguard_plugin_LDFLAGS =									\
 	@LIBXFCE4PANEL_LIBS@
 
-xfce4_fsguard_plugin_SOURCES =					\
+xfce4_fsguard_plugin_SOURCES =									\
 	fsguard.c
 
-noinst_DATA =							\
-	icons.h 						\
-	red.xpm 						\
-	green.xpm 						\
-	yellow.xpm 						\
+noinst_DATA =													\
+	icons.h 													\
+	red.xpm 													\
+	green.xpm 													\
+	yellow.xpm 													\
 	unknown.xpm
 
 icons.h: $(srcdir)/red.xpm
-	gdk-pixbuf-csource --raw --build-list 			\
+	gdk-pixbuf-csource --raw --build-list 						\
 	icon_red red.xpm > $(srcdir)/icons.h
-	gdk-pixbuf-csource --raw --build-list 			\
+	gdk-pixbuf-csource --raw --build-list 						\
 	icon_green green.xpm >> $(srcdir)/icons.h
-	gdk-pixbuf-csource --raw --build-list 			\
+	gdk-pixbuf-csource --raw --build-list 						\
 	icon_yellow yellow.xpm >> $(srcdir)/icons.h
-	gdk-pixbuf-csource --raw --build-list 			\
+	gdk-pixbuf-csource --raw --build-list 						\
 	icon_unknown unknown.xpm >> $(srcdir)/icons.h
 
 # .desktop file
@@ -42,14 +42,14 @@
 desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)
 @INTLTOOL_DESKTOP_RULE@
 
-EXTRA_DIST = 								\
+EXTRA_DIST = 													\
 	$(desktop_in_in_files) $(noinst_DATA)
 
-DISTCLEANFILES =							\
+DISTCLEANFILES =												\
 	$(desktop_DATA) $(desktop_in_files)
 	
 # get full path into .desktop file
 %.desktop.in: %.desktop.in.in
-	sed -e "s^@PLUGIN_PATH@^$(libexecdir)/xfce4/panel-plugins^" \
+	sed -e "s^@PLUGIN_PATH@^$(libexecdir)/xfce4/panel-plugins^"	\
 		$< > $@
 

Modified: xfce4-fsguard-plugin/trunk/panel-plugin/fsguard.c
===================================================================
--- xfce4-fsguard-plugin/trunk/panel-plugin/fsguard.c	2006-12-20 20:45:57 UTC (rev 2267)
+++ xfce4-fsguard-plugin/trunk/panel-plugin/fsguard.c	2006-12-20 22:28:52 UTC (rev 2268)
@@ -234,10 +234,10 @@
     fsguard->lab = NULL;
     fsguard->label = NULL;
     fsguard->mnt = NULL;
+    fsguard->filemanager = g_strdup ("exo-open");
     fsguard->yellow = 0;
     fsguard->red = 0;
     fsguard->timeout = 0;
-    fsguard->filemanager = NULL;
     
     return fsguard;
 }
@@ -307,21 +307,17 @@
 
     fsguard->red = xfce_rc_read_int_entry (rc, "red", 0);
 
-    if ((value = xfce_rc_read_entry (rc, "label", NULL)) && *value) {
+    if ((value = xfce_rc_read_entry (rc, "label", ""))) {
         fsguard->label = g_strdup(value);
-
     }
     
-    if ((value = xfce_rc_read_entry (rc, "mnt", NULL)) && *value) {
+    if ((value = xfce_rc_read_entry (rc, "mnt", ""))) {
         fsguard->mnt = g_strdup(value);
     }
     
-    if ((value = xfce_rc_read_entry (rc, "filemanager", NULL)) && *value) {
+    if ((value = xfce_rc_read_entry (rc, "filemanager", "exo-open"))) {
         fsguard->filemanager = g_strdup(value);
     }
-    else {
-        fsguard->filemanager = g_strdup ("xffm");
-    }
 
     xfce_rc_close (rc);
 }
@@ -406,8 +402,7 @@
 static void
 fsguard_create_options (XfcePanelPlugin *plugin, FsGuard *fsguard)
 {
-    GtkWidget *dlg, *header;
-    GdkPixbuf *pb;
+    GtkWidget *dlg;
     GtkWidget *hbox, *vbox1, *vbox2, *spin1, *spin2;
     GtkWidget *lab1, *lab2, *lab3, *lab4, *lab5, *ent1, *ent2, *ent3;
     gchar *text[] = {
@@ -419,10 +414,10 @@
     };
     xfce_panel_plugin_block_menu (plugin);
     
-    dlg = gtk_dialog_new_with_buttons (_("Properties"), 
+
+    dlg = xfce_titled_dialog_new_with_buttons (_("Free Space Checker"), 
                 GTK_WINDOW (gtk_widget_get_toplevel (GTK_WIDGET (plugin))),
-                GTK_DIALOG_DESTROY_WITH_PARENT |
-                GTK_DIALOG_NO_SEPARATOR,
+                GTK_DIALOG_DESTROY_WITH_PARENT | GTK_DIALOG_NO_SEPARATOR,
                 GTK_STOCK_CLOSE, GTK_RESPONSE_OK,
                 NULL);
     
@@ -431,17 +426,8 @@
 
     gtk_container_set_border_width (GTK_CONTAINER (dlg), 2);
     
-    pb = xfce_themed_icon_load ("xfce4-panel", 48);
-    gtk_window_set_icon (GTK_WINDOW (dlg), pb);
-    g_object_unref (pb);
+    gtk_window_set_icon_name (GTK_WINDOW (dlg), "xfce4-settings");
     
-    header = xfce_create_header (NULL, _("Free Space Checker"));
-    gtk_widget_set_size_request (GTK_BIN (header)->child, -1, 32);
-    gtk_container_set_border_width (GTK_CONTAINER (header), BORDER - 2);
-    gtk_widget_show (header);
-    gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dlg)->vbox), header,
-                        FALSE, TRUE, 0);
-    
     hbox = gtk_hbox_new (FALSE, BORDER);
     gtk_container_set_border_width (GTK_CONTAINER (hbox), BORDER - 2);
     

Added: xfce4-fsguard-plugin/trunk/po/LINGUAS
===================================================================
--- xfce4-fsguard-plugin/trunk/po/LINGUAS	                        (rev 0)
+++ xfce4-fsguard-plugin/trunk/po/LINGUAS	2006-12-20 22:28:52 UTC (rev 2268)
@@ -0,0 +1 @@
+ca cs de eu fr gl hu ja ko lt pl sv vi zh_TW

Modified: xfce4-fsguard-plugin/trunk/po/ca.po
===================================================================
--- xfce4-fsguard-plugin/trunk/po/ca.po	2006-12-20 20:45:57 UTC (rev 2267)
+++ xfce4-fsguard-plugin/trunk/po/ca.po	2006-12-20 22:28:52 UTC (rev 2268)
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-fsguard-plugin 0.3.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-09-10 21:29+0200\n"
+"POT-Creation-Date: 2006-12-20 23:05+0100\n"
 "PO-Revision-Date: 2006-09-20 13:28+0200\n"
 "Last-Translator: Carles Muñoz Gorriz <carlesmu at internautas.org>\n"
 "Language-Team: catalan\n"
@@ -65,36 +65,35 @@
 msgid "could not check mountpoint %s, please check your config"
 msgstr "No es por verificar el punt de muntatge %s, verifiqueu la configuració"
 
-#: ../panel-plugin/fsguard.c:414
+#: ../panel-plugin/fsguard.c:412
 msgid "label"
 msgstr "etiqueta"
 
-#: ../panel-plugin/fsguard.c:415
+#: ../panel-plugin/fsguard.c:413
 msgid "mountpoint"
 msgstr "punt de muntatge"
 
-#: ../panel-plugin/fsguard.c:416
+#: ../panel-plugin/fsguard.c:414
 msgid "high alarm limit (MB)"
 msgstr "Espai mínim per l'alarma (MB):"
 
-#: ../panel-plugin/fsguard.c:417
+#: ../panel-plugin/fsguard.c:415
 msgid "high warn limit (MB)"
 msgstr "Espai mínim per l'advertència (MB):"
 
-#: ../panel-plugin/fsguard.c:418
+#: ../panel-plugin/fsguard.c:416
 msgid "filemanager"
 msgstr "gestor de fitxers"
 
-#: ../panel-plugin/fsguard.c:422
-msgid "Properties"
-msgstr "Propietats"
-
 #. }}}
 #. vim600: set foldmethod=marker: foldmarker={{{,}}}
-#: ../panel-plugin/fsguard.c:438 ../panel-plugin/fsguard.desktop.in.in.h:1
+#: ../panel-plugin/fsguard.c:421 ../panel-plugin/fsguard.desktop.in.in.h:1
 msgid "Free Space Checker"
 msgstr "Revisador d'espai lliure"
 
 #: ../panel-plugin/fsguard.desktop.in.in.h:2
 msgid "Monitor free disk space"
 msgstr "Monitoritza l'espai lliure del disc"
+
+#~ msgid "Properties"
+#~ msgstr "Propietats"

Modified: xfce4-fsguard-plugin/trunk/po/cs.po
===================================================================
--- xfce4-fsguard-plugin/trunk/po/cs.po	2006-12-20 20:45:57 UTC (rev 2267)
+++ xfce4-fsguard-plugin/trunk/po/cs.po	2006-12-20 22:28:52 UTC (rev 2268)
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-fsguard-plugin 0.3.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-09-10 21:29+0200\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"
 "Language-Team: Czech <translation-team-cs at lists.sourceforge.net>\n"
@@ -61,36 +61,35 @@
 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:414
+#: ../panel-plugin/fsguard.c:412
 msgid "label"
 msgstr "popisek"
 
-#: ../panel-plugin/fsguard.c:415
+#: ../panel-plugin/fsguard.c:413
 msgid "mountpoint"
 msgstr "místo připojení"
 
-#: ../panel-plugin/fsguard.c:416
+#: ../panel-plugin/fsguard.c:414
 msgid "high alarm limit (MB)"
 msgstr "limit pro zobrazení výstrahy (MB)"
 
-#: ../panel-plugin/fsguard.c:417
+#: ../panel-plugin/fsguard.c:415
 msgid "high warn limit (MB)"
 msgstr "limit pro zobrazení varování (MB)"
 
-#: ../panel-plugin/fsguard.c:418
+#: ../panel-plugin/fsguard.c:416
 msgid "filemanager"
 msgstr "správce souborů"
 
-#: ../panel-plugin/fsguard.c:422
-msgid "Properties"
-msgstr "Vlastnosti"
-
 #. }}}
 #. vim600: set foldmethod=marker: foldmarker={{{,}}}
-#: ../panel-plugin/fsguard.c:438 ../panel-plugin/fsguard.desktop.in.in.h:1
+#: ../panel-plugin/fsguard.c:421 ../panel-plugin/fsguard.desktop.in.in.h:1
 msgid "Free Space Checker"
 msgstr "Kontrola volného prostoru"
 
 #: ../panel-plugin/fsguard.desktop.in.in.h:2
 msgid "Monitor free disk space"
 msgstr "Sledování volného prostoru na disku"
+
+#~ msgid "Properties"
+#~ msgstr "Vlastnosti"

Modified: xfce4-fsguard-plugin/trunk/po/de.po
===================================================================
--- xfce4-fsguard-plugin/trunk/po/de.po	2006-12-20 20:45:57 UTC (rev 2267)
+++ xfce4-fsguard-plugin/trunk/po/de.po	2006-12-20 22:28:52 UTC (rev 2268)
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-fsguard-plugin 0.3.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-09-10 21:29+0200\n"
+"POT-Creation-Date: 2006-12-20 23:05+0100\n"
 "PO-Revision-Date: 2004-10-10 17:32+0200\n"
 "Last-Translator: Andre Lerche <a.lerche at gmx.net>\n"
 "Language-Team: German <de at li.org>\n"
@@ -63,33 +63,29 @@
 "Der Mountpunkt %s konnte nicht gecheckt werden, bitte prüfen Sie Ihre "
 "Konfiguration."
 
-#: ../panel-plugin/fsguard.c:414
+#: ../panel-plugin/fsguard.c:412
 msgid "label"
 msgstr "Label"
 
-#: ../panel-plugin/fsguard.c:415
+#: ../panel-plugin/fsguard.c:413
 msgid "mountpoint"
 msgstr "Mountpunkt"
 
-#: ../panel-plugin/fsguard.c:416
+#: ../panel-plugin/fsguard.c:414
 msgid "high alarm limit (MB)"
 msgstr "Alarm ab (MB)"
 
-#: ../panel-plugin/fsguard.c:417
+#: ../panel-plugin/fsguard.c:415
 msgid "high warn limit (MB)"
 msgstr "Warnung ab (MB)"
 
-#: ../panel-plugin/fsguard.c:418
+#: ../panel-plugin/fsguard.c:416
 msgid "filemanager"
 msgstr "Dateimanager"
 
-#: ../panel-plugin/fsguard.c:422
-msgid "Properties"
-msgstr ""
-
 #. }}}
 #. vim600: set foldmethod=marker: foldmarker={{{,}}}
-#: ../panel-plugin/fsguard.c:438 ../panel-plugin/fsguard.desktop.in.in.h:1
+#: ../panel-plugin/fsguard.c:421 ../panel-plugin/fsguard.desktop.in.in.h:1
 msgid "Free Space Checker"
 msgstr "Speicherplatz-Checker"
 

Modified: xfce4-fsguard-plugin/trunk/po/eu.po
===================================================================
--- xfce4-fsguard-plugin/trunk/po/eu.po	2006-12-20 20:45:57 UTC (rev 2267)
+++ xfce4-fsguard-plugin/trunk/po/eu.po	2006-12-20 22:28:52 UTC (rev 2268)
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-fsguard-plugin 0.3.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-09-10 21:29+0200\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"
 "Language-Team: Euskara <Librezale at librezale.org>\n"
@@ -62,36 +62,35 @@
 msgid "could not check mountpoint %s, please check your config"
 msgstr "ezin da %s muntatze puntua egiaztatau, konfigurazio egiaztatu"
 
-#: ../panel-plugin/fsguard.c:414
+#: ../panel-plugin/fsguard.c:412
 msgid "label"
 msgstr "etiketa"
 
-#: ../panel-plugin/fsguard.c:415
+#: ../panel-plugin/fsguard.c:413
 msgid "mountpoint"
 msgstr "muntatze-puntua"
 
-#: ../panel-plugin/fsguard.c:416
+#: ../panel-plugin/fsguard.c:414
 msgid "high alarm limit (MB)"
 msgstr "Alarma muga altua (MB)"
 
-#: ../panel-plugin/fsguard.c:417
+#: ../panel-plugin/fsguard.c:415
 msgid "high warn limit (MB)"
 msgstr "Abisu muga altua (MB)"
 
-#: ../panel-plugin/fsguard.c:418
+#: ../panel-plugin/fsguard.c:416
 msgid "filemanager"
 msgstr "fitxategi-kudeatzailea"
 
-#: ../panel-plugin/fsguard.c:422
-msgid "Properties"
-msgstr "Propietateak"
-
 #. }}}
 #. vim600: set foldmethod=marker: foldmarker={{{,}}}
-#: ../panel-plugin/fsguard.c:438 ../panel-plugin/fsguard.desktop.in.in.h:1
+#: ../panel-plugin/fsguard.c:421 ../panel-plugin/fsguard.desktop.in.in.h:1
 msgid "Free Space Checker"
 msgstr "Leku Libre Egiaztatzailea"
 
 #: ../panel-plugin/fsguard.desktop.in.in.h:2
 msgid "Monitor free disk space"
 msgstr "Disko leku librea monitorizatu"
+
+#~ msgid "Properties"
+#~ msgstr "Propietateak"

Modified: xfce4-fsguard-plugin/trunk/po/fr.po
===================================================================
--- xfce4-fsguard-plugin/trunk/po/fr.po	2006-12-20 20:45:57 UTC (rev 2267)
+++ xfce4-fsguard-plugin/trunk/po/fr.po	2006-12-20 22:28:52 UTC (rev 2268)
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-fsguard-plugin 0.3.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-09-10 21:29+0200\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 <maxschleiss at bluewin.ch>\n"
 "Language-Team: French <xfce-i18n at xfce.org>\n"
@@ -63,36 +63,35 @@
 "échec du contrôle du point de montage %s, veuillez vérifier votre "
 "configuration"
 
-#: ../panel-plugin/fsguard.c:414
+#: ../panel-plugin/fsguard.c:412
 msgid "label"
 msgstr "Nom"
 
-#: ../panel-plugin/fsguard.c:415
+#: ../panel-plugin/fsguard.c:413
 msgid "mountpoint"
 msgstr "Point de montage"
 
-#: ../panel-plugin/fsguard.c:416
+#: ../panel-plugin/fsguard.c:414
 msgid "high alarm limit (MB)"
 msgstr "Seuil d'alarme (Mo)"
 
-#: ../panel-plugin/fsguard.c:417
+#: ../panel-plugin/fsguard.c:415
 msgid "high warn limit (MB)"
 msgstr "Seuil d'avertissement (Mo)"
 
-#: ../panel-plugin/fsguard.c:418
+#: ../panel-plugin/fsguard.c:416
 msgid "filemanager"
 msgstr "Gestionnaire de fichiers"
 
-#: ../panel-plugin/fsguard.c:422
-msgid "Properties"
-msgstr "Propriétés"
-
 #. }}}
 #. vim600: set foldmethod=marker: foldmarker={{{,}}}
-#: ../panel-plugin/fsguard.c:438 ../panel-plugin/fsguard.desktop.in.in.h:1
+#: ../panel-plugin/fsguard.c:421 ../panel-plugin/fsguard.desktop.in.in.h:1
 msgid "Free Space Checker"
 msgstr "Contrôle d'espace disque libre"
 
 #: ../panel-plugin/fsguard.desktop.in.in.h:2
 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	2006-12-20 20:45:57 UTC (rev 2267)
+++ xfce4-fsguard-plugin/trunk/po/gl.po	2006-12-20 22:28:52 UTC (rev 2268)
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-fsguard-plugin\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-09-10 21:29+0200\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"
 "Language-Team: Galician <gl at li.org>\n"
@@ -61,36 +61,35 @@
 msgid "could not check mountpoint %s, please check your config"
 msgstr ""
 
-#: ../panel-plugin/fsguard.c:414
+#: ../panel-plugin/fsguard.c:412
 msgid "label"
 msgstr "etiqueta"
 
-#: ../panel-plugin/fsguard.c:415
+#: ../panel-plugin/fsguard.c:413
 msgid "mountpoint"
 msgstr ""
 
-#: ../panel-plugin/fsguard.c:416
+#: ../panel-plugin/fsguard.c:414
 msgid "high alarm limit (MB)"
 msgstr ""
 
-#: ../panel-plugin/fsguard.c:417
+#: ../panel-plugin/fsguard.c:415
 msgid "high warn limit (MB)"
 msgstr ""
 
-#: ../panel-plugin/fsguard.c:418
+#: ../panel-plugin/fsguard.c:416
 msgid "filemanager"
 msgstr ""
 
-#: ../panel-plugin/fsguard.c:422
-msgid "Properties"
-msgstr "Propiedades"
-
 #. }}}
 #. vim600: set foldmethod=marker: foldmarker={{{,}}}
-#: ../panel-plugin/fsguard.c:438 ../panel-plugin/fsguard.desktop.in.in.h:1
+#: ../panel-plugin/fsguard.c:421 ../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 "Properties"
+#~ msgstr "Propiedades"

Modified: xfce4-fsguard-plugin/trunk/po/hu.po
===================================================================
--- xfce4-fsguard-plugin/trunk/po/hu.po	2006-12-20 20:45:57 UTC (rev 2267)
+++ xfce4-fsguard-plugin/trunk/po/hu.po	2006-12-20 22:28:52 UTC (rev 2268)
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-fsguard-plugin 0.3.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-09-10 21:29+0200\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"
 "Language-Team: Hungarian <hu at li.org>\n"
@@ -64,36 +64,35 @@
 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:414
+#: ../panel-plugin/fsguard.c:412
 msgid "label"
 msgstr "cím"
 
-#: ../panel-plugin/fsguard.c:415
+#: ../panel-plugin/fsguard.c:413
 msgid "mountpoint"
 msgstr "csatolópont"
 
-#: ../panel-plugin/fsguard.c:416
+#: ../panel-plugin/fsguard.c:414
 msgid "high alarm limit (MB)"
 msgstr "Veszélyszint (MB)"
 
-#: ../panel-plugin/fsguard.c:417
+#: ../panel-plugin/fsguard.c:415
 msgid "high warn limit (MB)"
 msgstr "Figyelmeztetés (MB)"
 
-#: ../panel-plugin/fsguard.c:418
+#: ../panel-plugin/fsguard.c:416
 msgid "filemanager"
 msgstr "fájlkezelő"
 
-#: ../panel-plugin/fsguard.c:422
-msgid "Properties"
-msgstr "Tulajdonságok"
-
 #. }}}
 #. vim600: set foldmethod=marker: foldmarker={{{,}}}
-#: ../panel-plugin/fsguard.c:438 ../panel-plugin/fsguard.desktop.in.in.h:1
+#: ../panel-plugin/fsguard.c:421 ../panel-plugin/fsguard.desktop.in.in.h:1
 msgid "Free Space Checker"
 msgstr "Szabad hely figyelő"
 
 #: ../panel-plugin/fsguard.desktop.in.in.h:2
 msgid "Monitor free disk space"
 msgstr "Szabad lemezhely figyelése"
+
+#~ msgid "Properties"
+#~ msgstr "Tulajdonságok"

Modified: xfce4-fsguard-plugin/trunk/po/ja.po
===================================================================
--- xfce4-fsguard-plugin/trunk/po/ja.po	2006-12-20 20:45:57 UTC (rev 2267)
+++ xfce4-fsguard-plugin/trunk/po/ja.po	2006-12-20 22:28:52 UTC (rev 2268)
@@ -11,7 +11,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-fsguard-plugin 0.3.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-09-10 21:29+0200\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"
 "Language-Team: Japanese <xfce-users-jp at ml.fdiary.net>\n"
@@ -64,36 +64,35 @@
 msgid "could not check mountpoint %s, please check your config"
 msgstr "マウント位置 (%s) を確認できませんでした、設定を確かめて下さい"
 
-#: ../panel-plugin/fsguard.c:414
+#: ../panel-plugin/fsguard.c:412
 msgid "label"
 msgstr "ラベル"
 
-#: ../panel-plugin/fsguard.c:415
+#: ../panel-plugin/fsguard.c:413
 msgid "mountpoint"
 msgstr "マウント位置"
 
-#: ../panel-plugin/fsguard.c:416
+#: ../panel-plugin/fsguard.c:414
 msgid "high alarm limit (MB)"
 msgstr "注意を促す上限値 (MB)"
 
-#: ../panel-plugin/fsguard.c:417
+#: ../panel-plugin/fsguard.c:415
 msgid "high warn limit (MB)"
 msgstr "警告を出す上限値 (MB)"
 
-#: ../panel-plugin/fsguard.c:418
+#: ../panel-plugin/fsguard.c:416
 msgid "filemanager"
 msgstr "ファイルマネージャー"
 
-#: ../panel-plugin/fsguard.c:422
-msgid "Properties"
-msgstr "プロパティ"
-
 #. }}}
 #. vim600: set foldmethod=marker: foldmarker={{{,}}}
-#: ../panel-plugin/fsguard.c:438 ../panel-plugin/fsguard.desktop.in.in.h:1
+#: ../panel-plugin/fsguard.c:421 ../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 "Properties"
+#~ msgstr "プロパティ"

Modified: xfce4-fsguard-plugin/trunk/po/ko.po
===================================================================
--- xfce4-fsguard-plugin/trunk/po/ko.po	2006-12-20 20:45:57 UTC (rev 2267)
+++ xfce4-fsguard-plugin/trunk/po/ko.po	2006-12-20 22:28:52 UTC (rev 2268)
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-fsguard-plugin 0.3.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-09-10 21:29+0200\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."
@@ -62,36 +62,35 @@
 msgid "could not check mountpoint %s, please check your config"
 msgstr "%s에 대한 마운트 지점을 검사하지 못 했으니, 설정을 확인해 보십시오."
 
-#: ../panel-plugin/fsguard.c:414
+#: ../panel-plugin/fsguard.c:412
 msgid "label"
 msgstr "라벨"
 
-#: ../panel-plugin/fsguard.c:415
+#: ../panel-plugin/fsguard.c:413
 msgid "mountpoint"
 msgstr "마운트 위치"
 
-#: ../panel-plugin/fsguard.c:416
+#: ../panel-plugin/fsguard.c:414
 msgid "high alarm limit (MB)"
 msgstr "경고 상한(MB)"
 
-#: ../panel-plugin/fsguard.c:417
+#: ../panel-plugin/fsguard.c:415
 msgid "high warn limit (MB)"
 msgstr "쥐의 상한(MB)"
 
-#: ../panel-plugin/fsguard.c:418
+#: ../panel-plugin/fsguard.c:416
 msgid "filemanager"
 msgstr "화일관리자"
 
-#: ../panel-plugin/fsguard.c:422
-msgid "Properties"
-msgstr "속성"
-
 #. }}}
 #. vim600: set foldmethod=marker: foldmarker={{{,}}}
-#: ../panel-plugin/fsguard.c:438 ../panel-plugin/fsguard.desktop.in.in.h:1
+#: ../panel-plugin/fsguard.c:421 ../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 "Properties"
+#~ msgstr "속성"

Modified: xfce4-fsguard-plugin/trunk/po/lt.po
===================================================================
--- xfce4-fsguard-plugin/trunk/po/lt.po	2006-12-20 20:45:57 UTC (rev 2267)
+++ xfce4-fsguard-plugin/trunk/po/lt.po	2006-12-20 22:28:52 UTC (rev 2268)
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-fsguard-plugin 0.3.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-09-10 21:29+0200\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"
 "Language-Team: Lithuanian <komp_lt at konferencijos.lt>\n"
@@ -61,33 +61,29 @@
 msgid "could not check mountpoint %s, please check your config"
 msgstr "nepavyko patikrinti prijungimo taško %s, pasitikrinkite konfigūraciją"
 
-#: ../panel-plugin/fsguard.c:414
+#: ../panel-plugin/fsguard.c:412
 msgid "label"
 msgstr "užrašas"
 
-#: ../panel-plugin/fsguard.c:415
+#: ../panel-plugin/fsguard.c:413
 msgid "mountpoint"
 msgstr "prijungimo taškas"
 
-#: ../panel-plugin/fsguard.c:416
+#: ../panel-plugin/fsguard.c:414
 msgid "high alarm limit (MB)"
 msgstr "signalizuoti ties (MB)"
 
-#: ../panel-plugin/fsguard.c:417
+#: ../panel-plugin/fsguard.c:415
 msgid "high warn limit (MB)"
 msgstr "įspėti ties (MB)"
 
-#: ../panel-plugin/fsguard.c:418
+#: ../panel-plugin/fsguard.c:416
 msgid "filemanager"
 msgstr "bylų naršyklė"
 
-#: ../panel-plugin/fsguard.c:422
-msgid "Properties"
-msgstr ""
-
 #. }}}
 #. vim600: set foldmethod=marker: foldmarker={{{,}}}
-#: ../panel-plugin/fsguard.c:438 ../panel-plugin/fsguard.desktop.in.in.h:1
+#: ../panel-plugin/fsguard.c:421 ../panel-plugin/fsguard.desktop.in.in.h:1
 msgid "Free Space Checker"
 msgstr "Laisvos vietos tikrintuvė"
 

Modified: xfce4-fsguard-plugin/trunk/po/pl.po
===================================================================
--- xfce4-fsguard-plugin/trunk/po/pl.po	2006-12-20 20:45:57 UTC (rev 2267)
+++ xfce4-fsguard-plugin/trunk/po/pl.po	2006-12-20 22:28:52 UTC (rev 2268)
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-fsguard-plugin 0.3.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-09-10 21:29+0200\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"
 "Language-Team: Polish <translation-team-pl at lists.sourceforge.net>\n"
@@ -61,36 +61,35 @@
 msgid "could not check mountpoint %s, please check your config"
 msgstr "nie mogę sprawdzić punktu montowania %s, sprawdź ustawienia"
 
-#: ../panel-plugin/fsguard.c:414
+#: ../panel-plugin/fsguard.c:412
 msgid "label"
 msgstr "etykieta"
 
-#: ../panel-plugin/fsguard.c:415
+#: ../panel-plugin/fsguard.c:413
 msgid "mountpoint"
 msgstr "punkt montowania"
 
-#: ../panel-plugin/fsguard.c:416
+#: ../panel-plugin/fsguard.c:414
 msgid "high alarm limit (MB)"
 msgstr "próg alarmu (MB)"
 
-#: ../panel-plugin/fsguard.c:417
+#: ../panel-plugin/fsguard.c:415
 msgid "high warn limit (MB)"
 msgstr "próg ostrzeżenia (MB)"
 
-#: ../panel-plugin/fsguard.c:418
+#: ../panel-plugin/fsguard.c:416
 msgid "filemanager"
 msgstr "menadżer plików"
 
-#: ../panel-plugin/fsguard.c:422
-msgid "Properties"
-msgstr "Właściwości"
-
 #. }}}
 #. vim600: set foldmethod=marker: foldmarker={{{,}}}
-#: ../panel-plugin/fsguard.c:438 ../panel-plugin/fsguard.desktop.in.in.h:1
+#: ../panel-plugin/fsguard.c:421 ../panel-plugin/fsguard.desktop.in.in.h:1
 msgid "Free Space Checker"
 msgstr "Strażnik Wolnego Miejsca"
 
 #: ../panel-plugin/fsguard.desktop.in.in.h:2
 msgid "Monitor free disk space"
 msgstr "Monitor wolnego miejsca na dysku"
+
+#~ msgid "Properties"
+#~ msgstr "Właściwości"

Modified: xfce4-fsguard-plugin/trunk/po/sv.po
===================================================================
--- xfce4-fsguard-plugin/trunk/po/sv.po	2006-12-20 20:45:57 UTC (rev 2267)
+++ xfce4-fsguard-plugin/trunk/po/sv.po	2006-12-20 22:28:52 UTC (rev 2268)
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-fsguard-plugin\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-09-10 21:29+0200\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"
 "Language-Team: Swedish <tp-sv at listor.tp-sv.se>\n"
@@ -61,36 +61,35 @@
 msgstr ""
 "kunde inte kontrollera monteringspunkten %s, undersök din konfiguration"
 
-#: ../panel-plugin/fsguard.c:414
+#: ../panel-plugin/fsguard.c:412
 msgid "label"
 msgstr "etikett"
 
-#: ../panel-plugin/fsguard.c:415
+#: ../panel-plugin/fsguard.c:413
 msgid "mountpoint"
 msgstr "monteringspunkt"
 
-#: ../panel-plugin/fsguard.c:416
+#: ../panel-plugin/fsguard.c:414
 msgid "high alarm limit (MB)"
 msgstr "alarmgräns hög (MB)"
 
-#: ../panel-plugin/fsguard.c:417
+#: ../panel-plugin/fsguard.c:415
 msgid "high warn limit (MB)"
 msgstr "varningsgräns hög (MB)"
 
-#: ../panel-plugin/fsguard.c:418
+#: ../panel-plugin/fsguard.c:416
 msgid "filemanager"
 msgstr "filhanterare"
 
-#: ../panel-plugin/fsguard.c:422
-msgid "Properties"
-msgstr "Egenskaper"
-
 #. }}}
 #. vim600: set foldmethod=marker: foldmarker={{{,}}}
-#: ../panel-plugin/fsguard.c:438 ../panel-plugin/fsguard.desktop.in.in.h:1
+#: ../panel-plugin/fsguard.c:421 ../panel-plugin/fsguard.desktop.in.in.h:1
 msgid "Free Space Checker"
 msgstr "Kontrollerare av ledigt utrymme"
 
 #: ../panel-plugin/fsguard.desktop.in.in.h:2
 msgid "Monitor free disk space"
 msgstr ""
+
+#~ msgid "Properties"
+#~ msgstr "Egenskaper"

Modified: xfce4-fsguard-plugin/trunk/po/vi.po
===================================================================
--- xfce4-fsguard-plugin/trunk/po/vi.po	2006-12-20 20:45:57 UTC (rev 2267)
+++ xfce4-fsguard-plugin/trunk/po/vi.po	2006-12-20 22:28:52 UTC (rev 2268)
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-fsguard-plugin 0.3.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-09-10 21:29+0200\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"
 "Language-Team: Vietnamese <none at li.org>\n"
@@ -60,33 +60,29 @@
 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:414
+#: ../panel-plugin/fsguard.c:412
 msgid "label"
 msgstr "nhãn"
 
-#: ../panel-plugin/fsguard.c:415
+#: ../panel-plugin/fsguard.c:413
 msgid "mountpoint"
 msgstr "điểm gắn"
 
-#: ../panel-plugin/fsguard.c:416
+#: ../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:417
+#: ../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:418
+#: ../panel-plugin/fsguard.c:416
 msgid "filemanager"
 msgstr "trình quản lý tập tin"
 
-#: ../panel-plugin/fsguard.c:422
-msgid "Properties"
-msgstr ""
-
 #. }}}
 #. vim600: set foldmethod=marker: foldmarker={{{,}}}
-#: ../panel-plugin/fsguard.c:438 ../panel-plugin/fsguard.desktop.in.in.h:1
+#: ../panel-plugin/fsguard.c:421 ../panel-plugin/fsguard.desktop.in.in.h:1
 msgid "Free Space Checker"
 msgstr "Trình kiểm tra không gian trống"
 

Modified: xfce4-fsguard-plugin/trunk/po/xfce4-fsguard-plugin.pot
===================================================================
--- xfce4-fsguard-plugin/trunk/po/xfce4-fsguard-plugin.pot	2006-12-20 20:45:57 UTC (rev 2267)
+++ xfce4-fsguard-plugin/trunk/po/xfce4-fsguard-plugin.pot	2006-12-20 22:28:52 UTC (rev 2268)
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-09-10 21:29+0200\n"
+"POT-Creation-Date: 2006-12-20 23:05+0100\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"
@@ -61,33 +61,29 @@
 msgid "could not check mountpoint %s, please check your config"
 msgstr ""
 
-#: ../panel-plugin/fsguard.c:414
+#: ../panel-plugin/fsguard.c:412
 msgid "label"
 msgstr ""
 
-#: ../panel-plugin/fsguard.c:415
+#: ../panel-plugin/fsguard.c:413
 msgid "mountpoint"
 msgstr ""
 
-#: ../panel-plugin/fsguard.c:416
+#: ../panel-plugin/fsguard.c:414
 msgid "high alarm limit (MB)"
 msgstr ""
 
-#: ../panel-plugin/fsguard.c:417
+#: ../panel-plugin/fsguard.c:415
 msgid "high warn limit (MB)"
 msgstr ""
 
-#: ../panel-plugin/fsguard.c:418
+#: ../panel-plugin/fsguard.c:416
 msgid "filemanager"
 msgstr ""
 
-#: ../panel-plugin/fsguard.c:422
-msgid "Properties"
-msgstr ""
-
 #. }}}
 #. vim600: set foldmethod=marker: foldmarker={{{,}}}
-#: ../panel-plugin/fsguard.c:438 ../panel-plugin/fsguard.desktop.in.in.h:1
+#: ../panel-plugin/fsguard.c:421 ../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	2006-12-20 20:45:57 UTC (rev 2267)
+++ xfce4-fsguard-plugin/trunk/po/zh_TW.po	2006-12-20 22:28:52 UTC (rev 2268)
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-fsguard-plugin 0.3.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-09-10 21:29+0200\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"
 "Language-Team: Chinese (traditional) <zh-l10n at linux.org.tw>\n"
@@ -62,36 +62,35 @@
 msgid "could not check mountpoint %s, please check your config"
 msgstr "無法檢查位置 %s,請檢查您的設定"
 
-#: ../panel-plugin/fsguard.c:414
+#: ../panel-plugin/fsguard.c:412
 msgid "label"
 msgstr "標籤"
 
-#: ../panel-plugin/fsguard.c:415
+#: ../panel-plugin/fsguard.c:413
 msgid "mountpoint"
 msgstr "掛載點"
 
-#: ../panel-plugin/fsguard.c:416
+#: ../panel-plugin/fsguard.c:414
 msgid "high alarm limit (MB)"
 msgstr "高容量提醒上限 (MB)"
 
-#: ../panel-plugin/fsguard.c:417
+#: ../panel-plugin/fsguard.c:415
 msgid "high warn limit (MB)"
 msgstr "高容量警告上限 (MB)"
 
-#: ../panel-plugin/fsguard.c:418
+#: ../panel-plugin/fsguard.c:416
 msgid "filemanager"
 msgstr "檔案管理程式"
 
-#: ../panel-plugin/fsguard.c:422
-msgid "Properties"
-msgstr "屬性"
-
 #. }}}
 #. vim600: set foldmethod=marker: foldmarker={{{,}}}
-#: ../panel-plugin/fsguard.c:438 ../panel-plugin/fsguard.desktop.in.in.h:1
+#: ../panel-plugin/fsguard.c:421 ../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 "Properties"
+#~ msgstr "屬性"




More information about the Goodies-commits mailing list