[Xfce4-commits] r25727 - in libexo/trunk: . exo-csource po

Benedikt Meurer benny at xfce.org
Sun May 20 13:49:17 CEST 2007


Author: benny
Date: 2007-05-20 11:49:16 +0000 (Sun, 20 May 2007)
New Revision: 25727

Modified:
   libexo/trunk/ChangeLog
   libexo/trunk/exo-csource/main.c
   libexo/trunk/po/ChangeLog
   libexo/trunk/po/ar.po
   libexo/trunk/po/be.po
   libexo/trunk/po/ca.po
   libexo/trunk/po/cs.po
   libexo/trunk/po/cy.po
   libexo/trunk/po/de.po
   libexo/trunk/po/dz.po
   libexo/trunk/po/el.po
   libexo/trunk/po/en_GB.po
   libexo/trunk/po/es.po
   libexo/trunk/po/et.po
   libexo/trunk/po/eu.po
   libexo/trunk/po/fi.po
   libexo/trunk/po/fr.po
   libexo/trunk/po/gl.po
   libexo/trunk/po/he.po
   libexo/trunk/po/hu.po
   libexo/trunk/po/it.po
   libexo/trunk/po/ja.po
   libexo/trunk/po/ka.po
   libexo/trunk/po/libexo-0.3.pot
   libexo/trunk/po/lt.po
   libexo/trunk/po/mk.po
   libexo/trunk/po/nb_NO.po
   libexo/trunk/po/nl.po
   libexo/trunk/po/pa.po
   libexo/trunk/po/pl.po
   libexo/trunk/po/pt_BR.po
   libexo/trunk/po/ro.po
   libexo/trunk/po/ru.po
   libexo/trunk/po/sq.po
   libexo/trunk/po/sv.po
   libexo/trunk/po/zh_TW.po
Log:
2007-05-20	Benedikt Meurer <benny at xfce.org>

	* exo-csource/main.c: Add support to strip comments and node contents
	  from XML files. Based on patch from Nick Schermer <nick at xfce.org>.
	  Bug #3094.
	* po/*.po, po/*.pot: Merge new strings.
	* po/de.po: Update german translations.




Modified: libexo/trunk/ChangeLog
===================================================================
--- libexo/trunk/ChangeLog	2007-05-20 09:58:48 UTC (rev 25726)
+++ libexo/trunk/ChangeLog	2007-05-20 11:49:16 UTC (rev 25727)
@@ -1,3 +1,11 @@
+2007-05-20	Benedikt Meurer <benny at xfce.org>
+
+	* exo-csource/main.c: Add support to strip comments and node contents
+	  from XML files. Based on patch from Nick Schermer <nick at xfce.org>.
+	  Bug #3094.
+	* po/*.po, po/*.pot: Merge new strings.
+	* po/de.po: Update german translations.
+
 2007-05-09	Benedikt Meurer <benny at xfce.org>
 
 	* INSTALL, configure.in.in: Update for latest autoconf.

Modified: libexo/trunk/exo-csource/main.c
===================================================================
--- libexo/trunk/exo-csource/main.c	2007-05-20 09:58:48 UTC (rev 25726)
+++ libexo/trunk/exo-csource/main.c	2007-05-20 11:49:16 UTC (rev 25727)
@@ -1,6 +1,7 @@
 /* $Id$ */
 /*-
  * Copyright (c) 2005-2007 Benedikt Meurer <benny at xfce.org>
+ * Copyright (c) 2007      Nick Schermer <nick at xfce.org>
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Library General Public
@@ -59,6 +60,8 @@
 
 /* --- variables --- */
 static gboolean gen_buildlist = FALSE;
+static gboolean gen_stripcomments = FALSE;
+static gboolean gen_stripcontent = FALSE;
 static gchar   *gen_linkage = "static ";
 static gchar   *gen_varname = "my_data";
 
@@ -120,9 +123,19 @@
           gen_buildlist = TRUE;
           argv[n] = NULL;
         }
+      else if (strcmp (argv[n], "--strip-comments") == 0)
+        {
+          gen_stripcomments = TRUE;
+          argv[n] = NULL;
+        }
+      else if (strcmp (argv[n], "--strip-content") == 0)
+        {
+          gen_stripcontent = TRUE;
+          argv[n] = NULL;
+        }
     }
 
-  for (m = 0, n = 1; n < argc; ++n) 
+  for (m = 0, n = 1; n < argc; ++n)
     {
       if (m > 0)
         {
@@ -152,10 +165,12 @@
 {
   const guint8 *p = (const guint8 *) data;
   gboolean      pad = FALSE;
+  gboolean      inside_comment = FALSE;
+  gboolean      inside_content = TRUE;
   gint          column = 0;
+  guint         real_length = 0;
 
   g_fprintf (fp, "/* automatically generated from %s */\n", filename);
-  g_fprintf (fp, "%sconst unsigned %s_length = %uu;\n", gen_linkage, gen_varname, (guint) length);
   g_fprintf (fp, "#ifdef __SUNPRO_C\n");
   g_fprintf (fp, "#pragma align 4 (%s)\n", gen_varname);
   g_fprintf (fp, "#endif\n");
@@ -175,6 +190,41 @@
           column = 0;
         }
 
+      /* strip XML/HTML comments */
+      if (gen_stripcomments)
+        {
+          /* skip comments */
+          if (length >= 4 && p[0] == '<' && p[1] == '!' && p[2] == '-' && p[3] == '-')
+            {
+              inside_comment = TRUE;
+              length -= 3;
+              p += 3;
+              continue;
+            }
+          else if (inside_comment)
+            {
+              /* check for end of comment */
+              if (length >= 3 && p[0] == '-' && p[1] == '-' && p[2] == '>')
+                {
+                  inside_comment = FALSE;
+                  length -= 2;
+                  p += 2;
+                }
+              continue;
+            }
+        }
+
+      /* strip XML content (the stuff between the nodes) */
+      if (gen_stripcontent)
+        {
+          if (!inside_content && *p == '>')
+            inside_content = TRUE;
+          else if (inside_content && *p == '<')
+            inside_content = FALSE;
+          else if (inside_content)
+            continue;
+        }
+
       if (*p == '\"')
         {
           column += g_fprintf (fp, "\\\"");
@@ -217,9 +267,12 @@
           column += g_fprintf (fp, "\\%03o", (guint) *p);
           pad = TRUE;
         }
+
+      real_length++;
     }
 
-  g_fprintf (fp, "\"\n};\n\n\n");
+  g_fprintf (fp, "\"\n};\n\n");
+  g_fprintf (fp, "%sconst unsigned %s_length = %uu;\n\n", gen_linkage, gen_varname, real_length);
 }
 
 
@@ -236,6 +289,8 @@
   g_print (_("  --static          Generate static symbols\n"));
   g_print (_("  --name=identifier C macro/variable name\n"));
   g_print (_("  --build-list      Parse (name, file) pairs\n"));
+  g_print (_("  --strip-comments  Remove comments from XML files\n"));
+  g_print (_("  --strip-content   Remove node contents from XML files\n"));
   g_print ("\n");
 }
 
@@ -289,7 +344,7 @@
       if (G_UNLIKELY (argc != 2))
         {
           print_usage ();
-          exit (EXIT_FAILURE);
+          return EXIT_FAILURE;
         }
 
 #ifdef G_OS_WIN32
@@ -303,7 +358,7 @@
           g_fprintf (stderr, "%s: Failed to load \"%s\": %s\n",
                      g_get_prgname (), filename, error->message);
           g_error_free (error);
-          exit (EXIT_FAILURE);
+          return EXIT_FAILURE;
         }
 
       print_csource (stdout, data, length, filename);
@@ -331,7 +386,7 @@
                   g_fprintf (stderr, "%s: Failed to load \"%s\": %s\n",
                              g_get_prgname (), filename, error->message);
                   g_error_free (error);
-                  exit (EXIT_FAILURE);
+                  return EXIT_FAILURE;
                 }
 
               print_csource (stdout, data, length, filename);

Modified: libexo/trunk/po/ChangeLog
===================================================================
--- libexo/trunk/po/ChangeLog	2007-05-20 09:58:48 UTC (rev 25726)
+++ libexo/trunk/po/ChangeLog	2007-05-20 11:49:16 UTC (rev 25727)
@@ -1,3 +1,8 @@
+2007-05-20  Benedikt Meurer <benny at xfce.org>
+
+	* *.po, *.pot: Merge new strings.
+	* de.po: Update german translations.
+
 2007-05-16  Maximilian Schleiss <maxschleiss at solnet.ch>
 
 	* nb_NO.po: Added the Norwegian Bokmal translation

Modified: libexo/trunk/po/ar.po
===================================================================
--- libexo/trunk/po/ar.po	2007-05-20 09:58:48 UTC (rev 25726)
+++ libexo/trunk/po/ar.po	2007-05-20 11:49:16 UTC (rev 25727)
@@ -2,7 +2,7 @@
 msgstr ""
 "Project-Id-Version: libexo\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-01-09 23:46+0100\n"
+"POT-Creation-Date: 2007-05-20 13:45+0200\n"
 "PO-Revision-Date: 2007-02-11 02:15+0200\n"
 "Last-Translator: Mohamed Magdy <alnokta at yahoo.com>\n"
 "Language-Team: Arabeyes Translation & Documentation <admin at arabeyes.org>\n"
@@ -37,10 +37,8 @@
 msgid "The size of the icon to render in pixels."
 msgstr ""
 
-#: ../exo/exo-gdk-pixbuf-extensions.c:770
-#: ../exo-mount/exo-mount-fstab.c:148
-#: ../exo-mount/exo-mount-fstab.c:177
-#: ../exo-mount/exo-mount-fstab.c:203
+#: ../exo/exo-gdk-pixbuf-extensions.c:770 ../exo/exo-mount-point.c:208
+#: ../exo/exo-mount-point.c:237 ../exo/exo-mount-point.c:425
 #, c-format
 msgid "Failed to open file \"%s\": %s"
 msgstr ""
@@ -52,11 +50,11 @@
 
 #: ../exo/exo-gdk-pixbuf-extensions.c:873
 #, c-format
-msgid "Failed to load image \"%s\": Unknown reason, probably a corrupt image file"
+msgid ""
+"Failed to load image \"%s\": Unknown reason, probably a corrupt image file"
 msgstr ""
 
-#: ../exo/exo-icon-bar.c:249
-#: ../exo/exo-icon-view.c:783
+#: ../exo/exo-icon-bar.c:249 ../exo/exo-icon-view.c:783
 msgid "Orientation"
 msgstr ""
 
@@ -64,23 +62,19 @@
 msgid "The orientation of the iconbar"
 msgstr ""
 
-#: ../exo/exo-icon-bar.c:266
-#: ../exo/exo-icon-view.c:800
+#: ../exo/exo-icon-bar.c:266 ../exo/exo-icon-view.c:800
 msgid "Pixbuf column"
 msgstr ""
 
-#: ../exo/exo-icon-bar.c:267
-#: ../exo/exo-icon-view.c:801
+#: ../exo/exo-icon-bar.c:267 ../exo/exo-icon-view.c:801
 msgid "Model column used to retrieve the icon pixbuf from"
 msgstr ""
 
-#: ../exo/exo-icon-bar.c:282
-#: ../exo/exo-icon-view.c:927
+#: ../exo/exo-icon-bar.c:282 ../exo/exo-icon-view.c:927
 msgid "Text column"
 msgstr "عمود نص"
 
-#: ../exo/exo-icon-bar.c:283
-#: ../exo/exo-icon-view.c:928
+#: ../exo/exo-icon-bar.c:283 ../exo/exo-icon-view.c:928
 msgid "Model column used to retrieve the text from"
 msgstr ""
 
@@ -100,33 +94,27 @@
 msgid "Active item index"
 msgstr ""
 
-#: ../exo/exo-icon-bar.c:319
-#: ../exo/exo-icon-bar.c:320
+#: ../exo/exo-icon-bar.c:319 ../exo/exo-icon-bar.c:320
 msgid "Active item fill color"
 msgstr ""
 
-#: ../exo/exo-icon-bar.c:326
-#: ../exo/exo-icon-bar.c:327
+#: ../exo/exo-icon-bar.c:326 ../exo/exo-icon-bar.c:327
 msgid "Active item border color"
 msgstr ""
 
-#: ../exo/exo-icon-bar.c:333
-#: ../exo/exo-icon-bar.c:334
+#: ../exo/exo-icon-bar.c:333 ../exo/exo-icon-bar.c:334
 msgid "Active item text color"
 msgstr ""
 
-#: ../exo/exo-icon-bar.c:340
-#: ../exo/exo-icon-bar.c:341
+#: ../exo/exo-icon-bar.c:340 ../exo/exo-icon-bar.c:341
 msgid "Cursor item fill color"
 msgstr ""
 
-#: ../exo/exo-icon-bar.c:347
-#: ../exo/exo-icon-bar.c:348
+#: ../exo/exo-icon-bar.c:347 ../exo/exo-icon-bar.c:348
 msgid "Cursor item border color"
 msgstr ""
 
-#: ../exo/exo-icon-bar.c:354
-#: ../exo/exo-icon-bar.c:355
+#: ../exo/exo-icon-bar.c:354 ../exo/exo-icon-bar.c:355
 msgid "Cursor item text color"
 msgstr ""
 
@@ -196,8 +184,7 @@
 msgstr ""
 
 #. EXO_ICON_CHOOSER_CONTEXT_FILE
-#: ../exo/exo-icon-chooser-dialog.c:115
-#: ../exo/exo-icon-chooser-dialog.c:262
+#: ../exo/exo-icon-chooser-dialog.c:115 ../exo/exo-icon-chooser-dialog.c:262
 msgid "Image Files"
 msgstr ""
 
@@ -271,7 +258,8 @@
 msgstr ""
 
 #: ../exo/exo-icon-view.c:784
-msgid "How the text and icon of each item are positioned relative to each other"
+msgid ""
+"How the text and icon of each item are positioned relative to each other"
 msgstr ""
 
 #: ../exo/exo-icon-view.c:816
@@ -306,24 +294,22 @@
 msgid "The selection mode"
 msgstr ""
 
-#: ../exo/exo-icon-view.c:878
-#: ../exo/exo-tree-view.c:166
+#: ../exo/exo-icon-view.c:878 ../exo/exo-tree-view.c:166
 msgid "Single Click"
 msgstr ""
 
-#: ../exo/exo-icon-view.c:879
-#: ../exo/exo-tree-view.c:167
+#: ../exo/exo-icon-view.c:879 ../exo/exo-tree-view.c:167
 msgid "Whether the items in the view can be activated with single clicks"
 msgstr ""
 
-#: ../exo/exo-icon-view.c:895
-#: ../exo/exo-tree-view.c:183
+#: ../exo/exo-icon-view.c:895 ../exo/exo-tree-view.c:183
 msgid "Single Click Timeout"
 msgstr ""
 
-#: ../exo/exo-icon-view.c:896
-#: ../exo/exo-tree-view.c:184
-msgid "The amount of time after which the item under the mouse cursor will be selected automatically in single click mode"
+#: ../exo/exo-icon-view.c:896 ../exo/exo-tree-view.c:184
+msgid ""
+"The amount of time after which the item under the mouse cursor will be "
+"selected automatically in single click mode"
 msgstr ""
 
 #: ../exo/exo-icon-view.c:911
@@ -354,8 +340,7 @@
 msgid "Preview"
 msgstr ""
 
-#: ../exo/exo-thumbnail-preview.c:139
-#: ../exo/exo-thumbnail-preview.c:281
+#: ../exo/exo-thumbnail-preview.c:139 ../exo/exo-thumbnail-preview.c:281
 msgid "No file selected"
 msgstr ""
 
@@ -384,7 +369,9 @@
 msgstr ""
 
 #: ../exo/exo-toolbars-editor.c:230
-msgid "Drag an item onto the toolbars above to add it, from the toolbars in the items table to remove it."
+msgid ""
+"Drag an item onto the toolbars above to add it, from the toolbars in the "
+"items table to remove it."
 msgstr ""
 
 #: ../exo/exo-toolbars-editor.c:543
@@ -423,17 +410,17 @@
 msgid "Customize Toolbar..."
 msgstr ""
 
-#: ../exo/exo-url.c:293
+#: ../exo/exo-url.c:297
 #, c-format
 msgid "Unable to open \"%s\""
 msgstr ""
 
-#: ../exo/exo-url.c:315
+#: ../exo/exo-url.c:328
 #, c-format
 msgid "The URL \"%s\" is not supported"
 msgstr ""
 
-#: ../exo/exo-url.c:401
+#: ../exo/exo-url.c:414
 #, c-format
 msgid "Failed to open \"%s\"."
 msgstr ""
@@ -478,44 +465,50 @@
 msgid "Session restart command"
 msgstr ""
 
-#: ../exo-csource/main.c:230
+#: ../exo-csource/main.c:283
 #, c-format
 msgid "Usage: %s [options] [file]\n"
 msgstr ""
 
-#: ../exo-csource/main.c:231
+#: ../exo-csource/main.c:284
 #, c-format
 msgid "       %s [options] --build-list [[name file]...]\n"
 msgstr ""
 
-#: ../exo-csource/main.c:233
+#: ../exo-csource/main.c:286
 msgid "  -h, --help        Print this help message and exit\n"
 msgstr ""
 
-#: ../exo-csource/main.c:234
+#: ../exo-csource/main.c:287
 msgid "  -v, --version     Print version information and exit\n"
 msgstr ""
 
-#: ../exo-csource/main.c:235
+#: ../exo-csource/main.c:288
 msgid "  --extern          Generate extern symbols\n"
 msgstr ""
 
-#: ../exo-csource/main.c:236
+#: ../exo-csource/main.c:289
 msgid "  --static          Generate static symbols\n"
 msgstr ""
 
-#: ../exo-csource/main.c:237
+#: ../exo-csource/main.c:290
 msgid "  --name=identifier C macro/variable name\n"
 msgstr ""
 
-#: ../exo-csource/main.c:238
+#: ../exo-csource/main.c:291
 msgid "  --build-list      Parse (name, file) pairs\n"
 msgstr ""
 
-#: ../exo-csource/main.c:248
-#: ../exo-desktop-item-edit/main.c:153
-#: ../exo-mount/main.c:122
-#: ../exo-mount-notify/main.c:167
+#: ../exo-csource/main.c:292
+msgid "  --strip-comments  Remove comments from XML files\n"
+msgstr ""
+
+#: ../exo-csource/main.c:293
+msgid "  --strip-content   Remove node contents from XML files\n"
+msgstr ""
+
+#: ../exo-csource/main.c:303 ../exo-desktop-item-edit/main.c:153
+#: ../exo-mount/main.c:122 ../exo-mount-notify/main.c:167
 #: ../exo-open/main.c:129
 #, c-format
 msgid ""
@@ -526,10 +519,8 @@
 "\n"
 msgstr ""
 
-#: ../exo-csource/main.c:252
-#: ../exo-desktop-item-edit/main.c:157
-#: ../exo-mount/main.c:126
-#: ../exo-mount-notify/main.c:171
+#: ../exo-csource/main.c:307 ../exo-desktop-item-edit/main.c:157
+#: ../exo-mount/main.c:126 ../exo-mount-notify/main.c:171
 #: ../exo-open/main.c:133
 #, c-format
 msgid ""
@@ -540,10 +531,8 @@
 "\n"
 msgstr ""
 
-#: ../exo-csource/main.c:256
-#: ../exo-desktop-item-edit/main.c:161
-#: ../exo-mount/main.c:130
-#: ../exo-mount-notify/main.c:175
+#: ../exo-csource/main.c:311 ../exo-desktop-item-edit/main.c:161
+#: ../exo-mount/main.c:130 ../exo-mount-notify/main.c:175
 #: ../exo-open/main.c:137
 #, c-format
 msgid "Please report bugs to <%s>.\n"
@@ -633,7 +622,10 @@
 msgstr ""
 
 #: ../exo-desktop-item-edit/exo-die-editor.c:431
-msgid "Select this option to enable startup notification when the command is run from the file manager or the menu. Not every application supports startup notification."
+msgid ""
+"Select this option to enable startup notification when the command is run "
+"from the file manager or the menu. Not every application supports startup "
+"notification."
 msgstr ""
 
 #. TRANSLATORS: Check button label in "Create Launcher" dialog, make sure to avoid mnemonic conflicts
@@ -697,8 +689,7 @@
 msgid "Preset icon when creating a desktop file"
 msgstr ""
 
-#: ../exo-desktop-item-edit/main.c:79
-#: ../exo-mount/main.c:74
+#: ../exo-desktop-item-edit/main.c:79 ../exo-mount/main.c:74
 #: ../exo-mount-notify/main.c:77
 msgid "Print version information and exit"
 msgstr ""
@@ -708,8 +699,7 @@
 msgid "[FILE|FOLDER]"
 msgstr ""
 
-#: ../exo-desktop-item-edit/main.c:138
-#: ../exo-mount/main.c:108
+#: ../exo-desktop-item-edit/main.c:138 ../exo-mount/main.c:108
 #: ../exo-mount-notify/main.c:153
 msgid "Failed to open display"
 msgstr ""
@@ -1100,7 +1090,7 @@
 msgstr ""
 
 #: ../exo-helper/helpers/sylpheed-claws.desktop.in.in.h:1
-msgid "Sylpheed Claws"
+msgid "Claws Mail"
 msgstr ""
 
 #: ../exo-helper/helpers/sylpheed.desktop.in.in.h:1
@@ -1123,65 +1113,65 @@
 msgid "X Terminal"
 msgstr ""
 
-#: ../exo-mount/exo-mount-fstab.c:115
+#: ../exo-mount/exo-mount-fstab.c:92
 msgid "Unknown error"
 msgstr ""
 
-#. generate an appropriate error message
+#. TRANSLATORS: a device is missing from the file system table (usually /etc/fstab)
 #. tell the caller that no matching device was found
-#: ../exo-mount/exo-mount-fstab.c:242
-#: ../exo-mount/exo-mount-hal.c:343
+#: ../exo-mount/exo-mount-fstab.c:132 ../exo-mount/exo-mount-hal.c:374
 #, c-format
 msgid "Device \"%s\" not found in file system device table"
 msgstr ""
 
 #. definitely not a device that we're able to mount, eject or unmount
-#: ../exo-mount/exo-mount-hal.c:194
-#: ../exo-mount/exo-mount-hal.c:250
+#: ../exo-mount/exo-mount-hal.c:224 ../exo-mount/exo-mount-hal.c:280
 #, c-format
 msgid "Given device \"%s\" is not a volume or drive"
 msgstr ""
 
 #. TRANSLATORS: The user tried to eject a device although he's not privileged to do so.
-#: ../exo-mount/exo-mount-hal.c:564
+#: ../exo-mount/exo-mount-hal.c:595
 #, c-format
 msgid "You are not privileged to eject the volume \"%s\""
 msgstr ""
 
 #. TRANSLATORS: An application is blocking a mounted volume from being ejected.
-#: ../exo-mount/exo-mount-hal.c:569
+#: ../exo-mount/exo-mount-hal.c:600
 #, c-format
 msgid "An application is preventing the volume \"%s\" from being ejected"
 msgstr ""
 
 #. TRANSLATORS: User tried to mount a volume, but is not privileged to do so.
-#: ../exo-mount/exo-mount-hal.c:800
+#: ../exo-mount/exo-mount-hal.c:831
 #, c-format
 msgid "You are not privileged to mount the volume \"%s\""
 msgstr ""
 
-#: ../exo-mount/exo-mount-hal.c:815
-msgid "Blank discs cannot be mounted, use a CD recording application like Xfburn to record audio or data on the disc"
+#: ../exo-mount/exo-mount-hal.c:846
+msgid ""
+"Blank discs cannot be mounted, use a CD recording application like Xfburn to "
+"record audio or data on the disc"
 msgstr ""
 
-#: ../exo-mount/exo-mount-hal.c:826
+#: ../exo-mount/exo-mount-hal.c:857
 msgid "Audio CDs cannot be mounted, use Xfmedia to play the audio tracks"
 msgstr ""
 
 #. TRANSLATORS: User tried to unmount a volume, but is not privileged to do so.
-#: ../exo-mount/exo-mount-hal.c:911
+#: ../exo-mount/exo-mount-hal.c:942
 #, c-format
 msgid "You are not privileged to unmount the volume \"%s\""
 msgstr ""
 
 #. TRANSLATORS: An application is blocking a volume from being unmounted.
-#: ../exo-mount/exo-mount-hal.c:916
+#: ../exo-mount/exo-mount-hal.c:947
 #, c-format
 msgid "An application is preventing the volume \"%s\" from being unmounted"
 msgstr ""
 
 #. TRANSLATORS: HAL can only unmount volumes that were mounted via HAL.
-#: ../exo-mount/exo-mount-hal.c:921
+#: ../exo-mount/exo-mount-hal.c:952
 #, c-format
 msgid "The volume \"%s\" was probably mounted manually on the command line"
 msgstr ""
@@ -1221,7 +1211,9 @@
 msgstr ""
 
 #: ../exo-mount/main.c:154
-msgid "Cannot mount by HAL device UDI, because HAL support was disabled for this build"
+msgid ""
+"Cannot mount by HAL device UDI, because HAL support was disabled for this "
+"build"
 msgstr ""
 
 #: ../exo-mount/main.c:161
@@ -1276,7 +1268,9 @@
 
 #: ../exo-mount-notify/main.c:231
 #, c-format
-msgid "The device \"%s\" is being unmounted by the system. Please do not remove the media or disconnect the drive."
+msgid ""
+"The device \"%s\" is being unmounted by the system. Please do not remove the "
+"media or disconnect the drive."
 msgstr ""
 
 #. not read-only, writing back data
@@ -1286,7 +1280,9 @@
 
 #: ../exo-mount-notify/main.c:239
 #, c-format
-msgid "There is data that needs to be written to the device \"%s\" before it can be removed. Please do not remove the media or disconnect the drive."
+msgid ""
+"There is data that needs to be written to the device \"%s\" before it can be "
+"removed. Please do not remove the media or disconnect the drive."
 msgstr ""
 
 #: ../exo-open/main.c:59
@@ -1302,19 +1298,22 @@
 msgstr ""
 
 #: ../exo-open/main.c:63
-msgid "  -v, --version                       Print version information and exit"
+msgid ""
+"  -v, --version                       Print version information and exit"
 msgstr ""
 
 #: ../exo-open/main.c:65
 msgid ""
 "  --launch TYPE [PARAMETERs...]       Launch the preferred application of\n"
-"                                      TYPE with the optional PARAMETERs, where\n"
+"                                      TYPE with the optional PARAMETERs, "
+"where\n"
 "                                      TYPE is one of the following values."
 msgstr ""
 
 #: ../exo-open/main.c:69
 msgid ""
-"  --working-directory DIRECTORY       Default working directory for applications\n"
+"  --working-directory DIRECTORY       Default working directory for "
+"applications\n"
 "                                      when using the --launch option."
 msgstr ""
 
@@ -1350,4 +1349,3 @@
 #, c-format
 msgid "Failed to open URL \"%s\"."
 msgstr ""
-

Modified: libexo/trunk/po/be.po
===================================================================
--- libexo/trunk/po/be.po	2007-05-20 09:58:48 UTC (rev 25726)
+++ libexo/trunk/po/be.po	2007-05-20 11:49:16 UTC (rev 25727)
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: exo 0.3.2\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-02-12 19:47+0100\n"
+"POT-Creation-Date: 2007-05-20 13:45+0200\n"
 "PO-Revision-Date: 2007-04-05 15:32+0300\n"
 "Last-Translator: Alexander Nyakhaychyk <nyakhaychyk at gmail.com>\n"
 "Language-Team: Belarusian <i18n at mova.org>\n"
@@ -41,10 +41,8 @@
 msgid "The size of the icon to render in pixels."
 msgstr "Памер значкі для адлюстраваньня ў піксэлях."
 
-#: ../exo/exo-gdk-pixbuf-extensions.c:770
-#: ../exo/exo-mount-point.c:205
-#: ../exo/exo-mount-point.c:234
-#: ../exo/exo-mount-point.c:392
+#: ../exo/exo-gdk-pixbuf-extensions.c:770 ../exo/exo-mount-point.c:208
+#: ../exo/exo-mount-point.c:237 ../exo/exo-mount-point.c:425
 #, c-format
 msgid "Failed to open file \"%s\": %s"
 msgstr "Немагчыма адчыніць файл \"%s\": %s"
@@ -56,11 +54,12 @@
 
 #: ../exo/exo-gdk-pixbuf-extensions.c:873
 #, c-format
-msgid "Failed to load image \"%s\": Unknown reason, probably a corrupt image file"
-msgstr "Немагчыма загрузіць відарыс \"%s\": прычына невядома, магчыма файл пашкоджаны"
+msgid ""
+"Failed to load image \"%s\": Unknown reason, probably a corrupt image file"
+msgstr ""
+"Немагчыма загрузіць відарыс \"%s\": прычына невядома, магчыма файл пашкоджаны"
 
-#: ../exo/exo-icon-bar.c:249
-#: ../exo/exo-icon-view.c:783
+#: ../exo/exo-icon-bar.c:249 ../exo/exo-icon-view.c:783
 msgid "Orientation"
 msgstr "Арыентацыя"
 
@@ -68,23 +67,19 @@
 msgid "The orientation of the iconbar"
 msgstr "Арыентацыя панэлі значак"
 
-#: ../exo/exo-icon-bar.c:266
-#: ../exo/exo-icon-view.c:800
+#: ../exo/exo-icon-bar.c:266 ../exo/exo-icon-view.c:800
 msgid "Pixbuf column"
 msgstr "Слупок са значкамі"
 
-#: ../exo/exo-icon-bar.c:267
-#: ../exo/exo-icon-view.c:801
+#: ../exo/exo-icon-bar.c:267 ../exo/exo-icon-view.c:801
 msgid "Model column used to retrieve the icon pixbuf from"
 msgstr "Мадэль слупка, якая выкарыстоўваецца для атрыманьня значак з"
 
-#: ../exo/exo-icon-bar.c:282
-#: ../exo/exo-icon-view.c:927
+#: ../exo/exo-icon-bar.c:282 ../exo/exo-icon-view.c:927
 msgid "Text column"
 msgstr "Тэкставы слупок"
 
-#: ../exo/exo-icon-bar.c:283
-#: ../exo/exo-icon-view.c:928
+#: ../exo/exo-icon-bar.c:283 ../exo/exo-icon-view.c:928
 msgid "Model column used to retrieve the text from"
 msgstr "Мадэль слупка для атрыманьня тэксту з"
 
@@ -104,33 +99,27 @@
 msgid "Active item index"
 msgstr "Індэкс актыўнага элемэнта"
 
-#: ../exo/exo-icon-bar.c:319
-#: ../exo/exo-icon-bar.c:320
+#: ../exo/exo-icon-bar.c:319 ../exo/exo-icon-bar.c:320
 msgid "Active item fill color"
 msgstr "Колер заліўкі актыўнага элемэнта"
 
-#: ../exo/exo-icon-bar.c:326
-#: ../exo/exo-icon-bar.c:327
+#: ../exo/exo-icon-bar.c:326 ../exo/exo-icon-bar.c:327
 msgid "Active item border color"
 msgstr "Колер мяжы актыўнага элемэнта"
 
-#: ../exo/exo-icon-bar.c:333
-#: ../exo/exo-icon-bar.c:334
+#: ../exo/exo-icon-bar.c:333 ../exo/exo-icon-bar.c:334
 msgid "Active item text color"
 msgstr "Колер тэксту актыўнага элемэнта"
 
-#: ../exo/exo-icon-bar.c:340
-#: ../exo/exo-icon-bar.c:341
+#: ../exo/exo-icon-bar.c:340 ../exo/exo-icon-bar.c:341
 msgid "Cursor item fill color"
 msgstr "Колер запаўненьня элемэнта курсора"
 
-#: ../exo/exo-icon-bar.c:347
-#: ../exo/exo-icon-bar.c:348
+#: ../exo/exo-icon-bar.c:347 ../exo/exo-icon-bar.c:348
 msgid "Cursor item border color"
 msgstr "Колер мяжы элемэнта курсора"
 
-#: ../exo/exo-icon-bar.c:354
-#: ../exo/exo-icon-bar.c:355
+#: ../exo/exo-icon-bar.c:354 ../exo/exo-icon-bar.c:355
 msgid "Cursor item text color"
 msgstr "Колер тэксту элемэнта курсора"
 
@@ -200,8 +189,7 @@
 msgstr "Усе значкі"
 
 #. EXO_ICON_CHOOSER_CONTEXT_FILE
-#: ../exo/exo-icon-chooser-dialog.c:115
-#: ../exo/exo-icon-chooser-dialog.c:262
+#: ../exo/exo-icon-chooser-dialog.c:115 ../exo/exo-icon-chooser-dialog.c:262
 msgid "Image Files"
 msgstr "Файлы зь відарысамі"
 
@@ -264,7 +252,8 @@
 
 #: ../exo/exo-icon-view.c:755
 msgid "Model column used to retrieve the text if using Pango markup"
-msgstr "Мадэль слупка для атрыманьня тэксту, калі выкарыстоўваецца Pango разьметка"
+msgstr ""
+"Мадэль слупка для атрыманьня тэксту, калі выкарыстоўваецца Pango разьметка"
 
 #: ../exo/exo-icon-view.c:769
 msgid "Icon View Model"
@@ -275,7 +264,8 @@
 msgstr "Мадэль для значак"
 
 #: ../exo/exo-icon-view.c:784
-msgid "How the text and icon of each item are positioned relative to each other"
+msgid ""
+"How the text and icon of each item are positioned relative to each other"
 msgstr "Пазыцыя тэксту і значкі адносна адзін аднаго"
 
 #: ../exo/exo-icon-view.c:816
@@ -310,25 +300,25 @@
 msgid "The selection mode"
 msgstr "Рэжым вылучэньня"
 
-#: ../exo/exo-icon-view.c:878
-#: ../exo/exo-tree-view.c:166
+#: ../exo/exo-icon-view.c:878 ../exo/exo-tree-view.c:166
 msgid "Single Click"
 msgstr "Самотная пстрычка"
 
-#: ../exo/exo-icon-view.c:879
-#: ../exo/exo-tree-view.c:167
+#: ../exo/exo-icon-view.c:879 ../exo/exo-tree-view.c:167
 msgid "Whether the items in the view can be activated with single clicks"
 msgstr "Ці мусяць элемэнты віджэта быць актывізаванымі самотнымі пстрычкамі"
 
-#: ../exo/exo-icon-view.c:895
-#: ../exo/exo-tree-view.c:183
+#: ../exo/exo-icon-view.c:895 ../exo/exo-tree-view.c:183
 msgid "Single Click Timeout"
 msgstr "Затрымка самотнай пстрычкі"
 
-#: ../exo/exo-icon-view.c:896
-#: ../exo/exo-tree-view.c:184
-msgid "The amount of time after which the item under the mouse cursor will be selected automatically in single click mode"
-msgstr "Прамежак часу, пасьля якога элемэнт пад курсорам мышы будзе вылучаны аўтаматычна як пры самотнай пстрычке"
+#: ../exo/exo-icon-view.c:896 ../exo/exo-tree-view.c:184
+msgid ""
+"The amount of time after which the item under the mouse cursor will be "
+"selected automatically in single click mode"
+msgstr ""
+"Прамежак часу, пасьля якога элемэнт пад курсорам мышы будзе вылучаны "
+"аўтаматычна як пры самотнай пстрычке"
 
 #: ../exo/exo-icon-view.c:911
 msgid "Spacing"
@@ -358,8 +348,7 @@
 msgid "Preview"
 msgstr "Перадпрагляд"
 
-#: ../exo/exo-thumbnail-preview.c:139
-#: ../exo/exo-thumbnail-preview.c:281
+#: ../exo/exo-thumbnail-preview.c:139 ../exo/exo-thumbnail-preview.c:281
 msgid "No file selected"
 msgstr "Файл ня вылучаны"
 
@@ -388,8 +377,12 @@
 msgstr "Д_адаць новую панэль"
 
 #: ../exo/exo-toolbars-editor.c:230
-msgid "Drag an item onto the toolbars above to add it, from the toolbars in the items table to remove it."
-msgstr "Перацягніце элемэнт на панэль каб дадаць яго. Каб выдаліць яго з панэлі, перацягніце яго адтуль сюды."
+msgid ""
+"Drag an item onto the toolbars above to add it, from the toolbars in the "
+"items table to remove it."
+msgstr ""
+"Перацягніце элемэнт на панэль каб дадаць яго. Каб выдаліць яго з панэлі, "
+"перацягніце яго адтуль сюды."
 
 #: ../exo/exo-toolbars-editor.c:543
 msgid "Separator"
@@ -482,44 +475,50 @@
 msgid "Session restart command"
 msgstr "Загад перазапуску сэансу"
 
-#: ../exo-csource/main.c:230
+#: ../exo-csource/main.c:283
 #, c-format
 msgid "Usage: %s [options] [file]\n"
 msgstr "Выкарыстаньне: %s [опцыі] [файл]\n"
 
-#: ../exo-csource/main.c:231
+#: ../exo-csource/main.c:284
 #, c-format
 msgid "       %s [options] --build-list [[name file]...]\n"
 msgstr "       %s [опцыі] --build-list [[назва файл]...]\n"
 
-#: ../exo-csource/main.c:233
+#: ../exo-csource/main.c:286
 msgid "  -h, --help        Print this help message and exit\n"
 msgstr "  -h, --help        Друкуе гэтыя зьвесткі\n"
 
-#: ../exo-csource/main.c:234
+#: ../exo-csource/main.c:287
 msgid "  -v, --version     Print version information and exit\n"
 msgstr "  -v, --version     Друкуе зьвесткі пра вэрсіюt\n"
 
-#: ../exo-csource/main.c:235
+#: ../exo-csource/main.c:288
 msgid "  --extern          Generate extern symbols\n"
 msgstr "  --extern          Стварыць вонкавыя сымбалі\n"
 
-#: ../exo-csource/main.c:236
+#: ../exo-csource/main.c:289
 msgid "  --static          Generate static symbols\n"
 msgstr "  --static          Стварыць статычныя сымбалі\n"
 
-#: ../exo-csource/main.c:237
+#: ../exo-csource/main.c:290
 msgid "  --name=identifier C macro/variable name\n"
 msgstr "  --name=ідэнтыфікатар Сі макрас/зьменная\n"
 
-#: ../exo-csource/main.c:238
+#: ../exo-csource/main.c:291
 msgid "  --build-list      Parse (name, file) pairs\n"
 msgstr "  --build-list      Аналіз пар (назва, файл)\n"
 
-#: ../exo-csource/main.c:248
-#: ../exo-desktop-item-edit/main.c:153
-#: ../exo-mount/main.c:122
-#: ../exo-mount-notify/main.c:167
+#: ../exo-csource/main.c:292
+msgid "  --strip-comments  Remove comments from XML files\n"
+msgstr ""
+
+#: ../exo-csource/main.c:293
+msgid "  --strip-content   Remove node contents from XML files\n"
+msgstr ""
+
+#: ../exo-csource/main.c:303 ../exo-desktop-item-edit/main.c:153
+#: ../exo-mount/main.c:122 ../exo-mount-notify/main.c:167
 #: ../exo-open/main.c:129
 #, c-format
 msgid ""
@@ -535,10 +534,8 @@
 "Стваральнік: Benedikt Meurer <benny at xfce.org>.\n"
 "\n"
 
-#: ../exo-csource/main.c:252
-#: ../exo-desktop-item-edit/main.c:157
-#: ../exo-mount/main.c:126
-#: ../exo-mount-notify/main.c:171
+#: ../exo-csource/main.c:307 ../exo-desktop-item-edit/main.c:157
+#: ../exo-mount/main.c:126 ../exo-mount-notify/main.c:171
 #: ../exo-open/main.c:133
 #, c-format
 msgid ""
@@ -554,10 +551,8 @@
 "ў зыходным кодзе пакета %s.\n"
 "\n"
 
-#: ../exo-csource/main.c:256
-#: ../exo-desktop-item-edit/main.c:161
-#: ../exo-mount/main.c:130
-#: ../exo-mount-notify/main.c:175
+#: ../exo-csource/main.c:311 ../exo-desktop-item-edit/main.c:161
+#: ../exo-mount/main.c:130 ../exo-mount-notify/main.c:175
 #: ../exo-open/main.c:137
 #, c-format
 msgid "Please report bugs to <%s>.\n"
@@ -647,8 +642,14 @@
 msgstr "Ін_фармаваньне пра запуск"
 
 #: ../exo-desktop-item-edit/exo-die-editor.c:431
-msgid "Select this option to enable startup notification when the command is run from the file manager or the menu. Not every application supports startup notification."
-msgstr "Вылучыце гэтую опцыю, каб уключыць інфармаваньне пра запуск дастасаваньня ў кіраўніку файлаў ці праз мэню. Ня кожнае дастасаваньне падтрымлівае інфармаваньне пра запуск."
+msgid ""
+"Select this option to enable startup notification when the command is run "
+"from the file manager or the menu. Not every application supports startup "
+"notification."
+msgstr ""
+"Вылучыце гэтую опцыю, каб уключыць інфармаваньне пра запуск дастасаваньня ў "
+"кіраўніку файлаў ці праз мэню. Ня кожнае дастасаваньне падтрымлівае "
+"інфармаваньне пра запуск."
 
 #. TRANSLATORS: Check button label in "Create Launcher" dialog, make sure to avoid mnemonic conflicts
 #. *              and sync your translations with the translations in Thunar and xfce4-panel.
@@ -711,8 +712,7 @@
 msgid "Preset icon when creating a desktop file"
 msgstr "Задае значку новага desktop-файла"
 
-#: ../exo-desktop-item-edit/main.c:79
-#: ../exo-mount/main.c:74
+#: ../exo-desktop-item-edit/main.c:79 ../exo-mount/main.c:74
 #: ../exo-mount-notify/main.c:77
 msgid "Print version information and exit"
 msgstr "Друкуе зьвесткі пра вэрсію"
@@ -722,8 +722,7 @@
 msgid "[FILE|FOLDER]"
 msgstr "[ФАЙЛ|ТЭЧКА]"
 
-#: ../exo-desktop-item-edit/main.c:138
-#: ../exo-mount/main.c:108
+#: ../exo-desktop-item-edit/main.c:138 ../exo-mount/main.c:108
 #: ../exo-mount-notify/main.c:153
 msgid "Failed to open display"
 msgstr "Немагчыма адкрыць дысплэй"
@@ -1033,7 +1032,8 @@
 
 #: ../exo-helper/exo-preferred-applications.desktop.in.h:2
 msgid "Preferred Applications (Web Browser, Mail Reader and Terminal Emulator)"
-msgstr "Пераважныя дастасаваньні (Гартач Сеціва, паштовы кліент і эмулятар тэрмінала)"
+msgstr ""
+"Пераважныя дастасаваньні (Гартач Сеціва, паштовы кліент і эмулятар тэрмінала)"
 
 #: ../exo-helper/exo-preferred-applications.desktop.in.h:3
 msgid "Xfce 4 Preferred Applications"
@@ -1161,15 +1161,13 @@
 
 #. TRANSLATORS: a device is missing from the file system table (usually /etc/fstab)
 #. tell the caller that no matching device was found
-#: ../exo-mount/exo-mount-fstab.c:132
-#: ../exo-mount/exo-mount-hal.c:374
+#: ../exo-mount/exo-mount-fstab.c:132 ../exo-mount/exo-mount-hal.c:374
 #, c-format
 msgid "Device \"%s\" not found in file system device table"
 msgstr "Прылада \"%s\" ня знойдзена ў табліцы прыладаў сыстэмы"
 
 #. definitely not a device that we're able to mount, eject or unmount
-#: ../exo-mount/exo-mount-hal.c:224
-#: ../exo-mount/exo-mount-hal.c:280
+#: ../exo-mount/exo-mount-hal.c:224 ../exo-mount/exo-mount-hal.c:280
 #, c-format
 msgid "Given device \"%s\" is not a volume or drive"
 msgstr "Зададзеная прылада \"%s\" не зьяўляецца носьбітам інфармацыі"
@@ -1193,12 +1191,18 @@
 msgstr "Вы ня маеце правоў, каб прымантаваць том \"%s\""
 
 #: ../exo-mount/exo-mount-hal.c:846
-msgid "Blank discs cannot be mounted, use a CD recording application like Xfburn to record audio or data on the disc"
-msgstr "Немагчыма прымантаваць чысты дыск. Для запісу дыскаў карыстайцеся праграмамі накшталт Xfburn."
+msgid ""
+"Blank discs cannot be mounted, use a CD recording application like Xfburn to "
+"record audio or data on the disc"
+msgstr ""
+"Немагчыма прымантаваць чысты дыск. Для запісу дыскаў карыстайцеся праграмамі "
+"накшталт Xfburn."
 
 #: ../exo-mount/exo-mount-hal.c:857
 msgid "Audio CDs cannot be mounted, use Xfmedia to play the audio tracks"
-msgstr "Немагчыма прымантаваць аўдыё дыскі; выкарыстоўвайце Xfmdia для прайграваньня аўдыё запісаў"
+msgstr ""
+"Немагчыма прымантаваць аўдыё дыскі; выкарыстоўвайце Xfmdia для прайграваньня "
+"аўдыё запісаў"
 
 #. TRANSLATORS: User tried to unmount a volume, but is not privileged to do so.
 #: ../exo-mount/exo-mount-hal.c:942
@@ -1253,8 +1257,12 @@
 msgstr "Нельга адначасова задаваць файл прылады і UDI прылады"
 
 #: ../exo-mount/main.c:154
-msgid "Cannot mount by HAL device UDI, because HAL support was disabled for this build"
-msgstr "Немагчыма прымантаваць праз UDI прылады для HAL, бо падтрымка HAL адсутнічае ў гэтай зборцы"
+msgid ""
+"Cannot mount by HAL device UDI, because HAL support was disabled for this "
+"build"
+msgstr ""
+"Немагчыма прымантаваць праз UDI прылады для HAL, бо падтрымка HAL адсутнічае "
+"ў гэтай зборцы"
 
 #: ../exo-mount/main.c:161
 #, c-format
@@ -1308,8 +1316,12 @@
 
 #: ../exo-mount-notify/main.c:231
 #, c-format
-msgid "The device \"%s\" is being unmounted by the system. Please do not remove the media or disconnect the drive."
-msgstr "Прылада \"%s\" будзе адмантавана. Калі ласка, не адключайце прыладу альбо не вызваляйце носьбіт."
+msgid ""
+"The device \"%s\" is being unmounted by the system. Please do not remove the "
+"media or disconnect the drive."
+msgstr ""
+"Прылада \"%s\" будзе адмантавана. Калі ласка, не адключайце прыладу альбо не "
+"вызваляйце носьбіт."
 
 #. not read-only, writing back data
 #: ../exo-mount-notify/main.c:238
@@ -1318,8 +1330,12 @@
 
 #: ../exo-mount-notify/main.c:239
 #, c-format
-msgid "There is data that needs to be written to the device \"%s\" before it can be removed. Please do not remove the media or disconnect the drive."
-msgstr "Ёсьць даныя, якія трэба запісаць на прыладу  \"%s\", перш чым яе можна будзе вызваліць. Калі ласка, не адключайце прыладу альбо не вызваляйце носьбіт."
+msgid ""
+"There is data that needs to be written to the device \"%s\" before it can be "
+"removed. Please do not remove the media or disconnect the drive."
+msgstr ""
+"Ёсьць даныя, якія трэба запісаць на прыладу  \"%s\", перш чым яе можна будзе "
+"вызваліць. Калі ласка, не адключайце прыладу альбо не вызваляйце носьбіт."
 
 #: ../exo-open/main.c:59
 msgid "Usage: exo-open [URLs...]"
@@ -1334,22 +1350,27 @@
 msgstr "  -?, --help                          Друкуе гэтыя зьвесткі"
 
 #: ../exo-open/main.c:63
-msgid "  -v, --version                       Print version information and exit"
+msgid ""
+"  -v, --version                       Print version information and exit"
 msgstr "  -v, --version                       Друкуе зьвесткі пра вэрсію"
 
 #: ../exo-open/main.c:65
 msgid ""
 "  --launch TYPE [PARAMETERs...]       Launch the preferred application of\n"
-"                                      TYPE with the optional PARAMETERs, where\n"
+"                                      TYPE with the optional PARAMETERs, "
+"where\n"
 "                                      TYPE is one of the following values."
 msgstr ""
 "  --launch ТЫП [ПАРАМЭТРЫ...]         Запускае пераважнае дастасаваньне\n"
-"                                      адмысловага ТЫПУ з пазначанымі ПАРАМЭТРАМІ,\n"
-"                                      дзе ТЫП мае адно з некалькіх значэньняў."
+"                                      адмысловага ТЫПУ з пазначанымі "
+"ПАРАМЭТРАМІ,\n"
+"                                      дзе ТЫП мае адно з некалькіх "
+"значэньняў."
 
 #: ../exo-open/main.c:69
 msgid ""
-"  --working-directory DIRECTORY       Default working directory for applications\n"
+"  --working-directory DIRECTORY       Default working directory for "
+"applications\n"
 "                                      when using the --launch option."
 msgstr ""
 "  --working-directory ДЫРЭКТОРЫЯ       Прадвызначаная працоўная дырэкторыя\n"
@@ -1399,4 +1420,3 @@
 
 #~ msgid "Sylpheed Claws"
 #~ msgstr "Sylpheed Claws"
-

Modified: libexo/trunk/po/ca.po
===================================================================
--- libexo/trunk/po/ca.po	2007-05-20 09:58:48 UTC (rev 25726)
+++ libexo/trunk/po/ca.po	2007-05-20 11:49:16 UTC (rev 25727)
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: exo 0.3.2\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-02-12 19:47+0100\n"
+"POT-Creation-Date: 2007-05-20 13:45+0200\n"
 "PO-Revision-Date: 2007-04-05 13:15+0200\n"
 "Last-Translator: Pau Ruŀlan Ferragut <paurullan at bulma.net>\n"
 "Language-Team: Catalan\n"
@@ -44,8 +44,8 @@
 msgid "The size of the icon to render in pixels."
 msgstr "Tamany en píxels de la icona a representar"
 
-#: ../exo/exo-gdk-pixbuf-extensions.c:770 ../exo/exo-mount-point.c:205
-#: ../exo/exo-mount-point.c:234 ../exo/exo-mount-point.c:392
+#: ../exo/exo-gdk-pixbuf-extensions.c:770 ../exo/exo-mount-point.c:208
+#: ../exo/exo-mount-point.c:237 ../exo/exo-mount-point.c:425
 #, c-format
 msgid "Failed to open file \"%s\": %s"
 msgstr "No s’ha pogut obrir «%s»: %s"
@@ -481,41 +481,49 @@
 msgid "Session restart command"
 msgstr "Ordre per reiniciar la sessió"
 
-#: ../exo-csource/main.c:230
+#: ../exo-csource/main.c:283
 #, c-format
 msgid "Usage: %s [options] [file]\n"
 msgstr "Ús: %s [opcions] [fitxer]\n"
 
-#: ../exo-csource/main.c:231
+#: ../exo-csource/main.c:284
 #, c-format
 msgid "       %s [options] --build-list [[name file]...]\n"
 msgstr "       %s [opcions] --build-list [nom del fitxer]\n"
 
-#: ../exo-csource/main.c:233
+#: ../exo-csource/main.c:286
 msgid "  -h, --help        Print this help message and exit\n"
 msgstr "  -h, --help        Mostra aquest missatge i surt\n"
 
-#: ../exo-csource/main.c:234
+#: ../exo-csource/main.c:287
 msgid "  -v, --version     Print version information and exit\n"
 msgstr "  -v, --version     Mostra la versió i surt\n"
 
-#: ../exo-csource/main.c:235
+#: ../exo-csource/main.c:288
 msgid "  --extern          Generate extern symbols\n"
 msgstr "  --extern          Genera símbols externs\n"
 
-#: ../exo-csource/main.c:236
+#: ../exo-csource/main.c:289
 msgid "  --static          Generate static symbols\n"
 msgstr " --static           Genera símbols estàtics\n"
 
-#: ../exo-csource/main.c:237
+#: ../exo-csource/main.c:290
 msgid "  --name=identifier C macro/variable name\n"
 msgstr "  --name=identifier nom de la macro de C\n"
 
-#: ../exo-csource/main.c:238
+#: ../exo-csource/main.c:291
 msgid "  --build-list      Parse (name, file) pairs\n"
 msgstr "  --build-list      Analitza parelles (nom, fitxer)\n"
 
-#: ../exo-csource/main.c:248 ../exo-desktop-item-edit/main.c:153
+#: ../exo-csource/main.c:292
+msgid "  --strip-comments  Remove comments from XML files\n"
+msgstr ""
+
+#: ../exo-csource/main.c:293
+msgid "  --strip-content   Remove node contents from XML files\n"
+msgstr ""
+
+#: ../exo-csource/main.c:303 ../exo-desktop-item-edit/main.c:153
 #: ../exo-mount/main.c:122 ../exo-mount-notify/main.c:167
 #: ../exo-open/main.c:129
 #, c-format
@@ -532,7 +540,7 @@
 "Escrit per Benedikt Meurer <benny at xfce.org>.\n"
 "\n"
 
-#: ../exo-csource/main.c:252 ../exo-desktop-item-edit/main.c:157
+#: ../exo-csource/main.c:307 ../exo-desktop-item-edit/main.c:157
 #: ../exo-mount/main.c:126 ../exo-mount-notify/main.c:171
 #: ../exo-open/main.c:133
 #, c-format
@@ -549,7 +557,7 @@
 "paquet de codi font de %s.\n"
 "\n"
 
-#: ../exo-csource/main.c:256 ../exo-desktop-item-edit/main.c:161
+#: ../exo-csource/main.c:311 ../exo-desktop-item-edit/main.c:161
 #: ../exo-mount/main.c:130 ../exo-mount-notify/main.c:175
 #: ../exo-open/main.c:137
 #, c-format

Modified: libexo/trunk/po/cs.po
===================================================================
--- libexo/trunk/po/cs.po	2007-05-20 09:58:48 UTC (rev 25726)
+++ libexo/trunk/po/cs.po	2007-05-20 11:49:16 UTC (rev 25727)
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: exo 0.3.2\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-02-12 19:47+0100\n"
+"POT-Creation-Date: 2007-05-20 13:45+0200\n"
 "PO-Revision-Date: 2007-05-05 15:10+0100\n"
 "Last-Translator: Michal Várady <miko.vaji at gmail.com>\n"
 "Language-Team: Czech <translation-team-cs at lists.sourceforge.net>\n"
@@ -45,10 +45,8 @@
 msgid "The size of the icon to render in pixels."
 msgstr "Velikost vykreslené ikony v obrazových bodech."
 
-#: ../exo/exo-gdk-pixbuf-extensions.c:770
-#: ../exo/exo-mount-point.c:205
-#: ../exo/exo-mount-point.c:234
-#: ../exo/exo-mount-point.c:392
+#: ../exo/exo-gdk-pixbuf-extensions.c:770 ../exo/exo-mount-point.c:208
+#: ../exo/exo-mount-point.c:237 ../exo/exo-mount-point.c:425
 #, c-format
 msgid "Failed to open file \"%s\": %s"
 msgstr "Nepodařilo se otevřít soubor \"%s\": %s"
@@ -60,11 +58,13 @@
 
 #: ../exo/exo-gdk-pixbuf-extensions.c:873
 #, c-format
-msgid "Failed to load image \"%s\": Unknown reason, probably a corrupt image file"
-msgstr "Nepodařilo se načíst obrázek \"%s\". Důvod není znám, pravděpodobně je soubor s obrázkem poškozen"
+msgid ""
+"Failed to load image \"%s\": Unknown reason, probably a corrupt image file"
+msgstr ""
+"Nepodařilo se načíst obrázek \"%s\". Důvod není znám, pravděpodobně je "
+"soubor s obrázkem poškozen"
 
-#: ../exo/exo-icon-bar.c:249
-#: ../exo/exo-icon-view.c:783
+#: ../exo/exo-icon-bar.c:249 ../exo/exo-icon-view.c:783
 msgid "Orientation"
 msgstr "Orientace"
 
@@ -72,23 +72,19 @@
 msgid "The orientation of the iconbar"
 msgstr "Orientace panelu ikon"
 
-#: ../exo/exo-icon-bar.c:266
-#: ../exo/exo-icon-view.c:800
+#: ../exo/exo-icon-bar.c:266 ../exo/exo-icon-view.c:800
 msgid "Pixbuf column"
 msgstr "Sloupec pixbuf"
 
-#: ../exo/exo-icon-bar.c:267
-#: ../exo/exo-icon-view.c:801
+#: ../exo/exo-icon-bar.c:267 ../exo/exo-icon-view.c:801
 msgid "Model column used to retrieve the icon pixbuf from"
 msgstr "Sloupec modelu používaný pro získání pixbufu ikony z"
 
-#: ../exo/exo-icon-bar.c:282
-#: ../exo/exo-icon-view.c:927
+#: ../exo/exo-icon-bar.c:282 ../exo/exo-icon-view.c:927
 msgid "Text column"
 msgstr "Textový sloupec"
 
-#: ../exo/exo-icon-bar.c:283
-#: ../exo/exo-icon-view.c:928
+#: ../exo/exo-icon-bar.c:283 ../exo/exo-icon-view.c:928
 msgid "Model column used to retrieve the text from"
 msgstr "Sloupec modelu používaný pro získání textu z"
 
@@ -108,33 +104,27 @@
 msgid "Active item index"
 msgstr "Index aktivních položek"
 
-#: ../exo/exo-icon-bar.c:319
-#: ../exo/exo-icon-bar.c:320
+#: ../exo/exo-icon-bar.c:319 ../exo/exo-icon-bar.c:320
 msgid "Active item fill color"
 msgstr "Barva výplně aktivních položek"
 
-#: ../exo/exo-icon-bar.c:326
-#: ../exo/exo-icon-bar.c:327
+#: ../exo/exo-icon-bar.c:326 ../exo/exo-icon-bar.c:327
 msgid "Active item border color"
 msgstr "Barva okraje aktivních položek"
 
-#: ../exo/exo-icon-bar.c:333
-#: ../exo/exo-icon-bar.c:334
+#: ../exo/exo-icon-bar.c:333 ../exo/exo-icon-bar.c:334
 msgid "Active item text color"
 msgstr "Barva textu aktivních položek"
 
-#: ../exo/exo-icon-bar.c:340
-#: ../exo/exo-icon-bar.c:341
+#: ../exo/exo-icon-bar.c:340 ../exo/exo-icon-bar.c:341
 msgid "Cursor item fill color"
 msgstr "Barva výplně položek, nad kterými se nachází kurzor"
 
-#: ../exo/exo-icon-bar.c:347
-#: ../exo/exo-icon-bar.c:348
+#: ../exo/exo-icon-bar.c:347 ../exo/exo-icon-bar.c:348
 msgid "Cursor item border color"
 msgstr "Barva okrajů položek, nad kterými se nachází kurzor"
 
-#: ../exo/exo-icon-bar.c:354
-#: ../exo/exo-icon-bar.c:355
+#: ../exo/exo-icon-bar.c:354 ../exo/exo-icon-bar.c:355
 msgid "Cursor item text color"
 msgstr "Barva textu položek, nad kterými se nachází kurzor"
 
@@ -204,8 +194,7 @@
 msgstr "Všechny ikony"
 
 #. EXO_ICON_CHOOSER_CONTEXT_FILE
-#: ../exo/exo-icon-chooser-dialog.c:115
-#: ../exo/exo-icon-chooser-dialog.c:262
+#: ../exo/exo-icon-chooser-dialog.c:115 ../exo/exo-icon-chooser-dialog.c:262
 msgid "Image Files"
 msgstr "Obrázky"
 
@@ -268,7 +257,8 @@
 
 #: ../exo/exo-icon-view.c:755
 msgid "Model column used to retrieve the text if using Pango markup"
-msgstr "Sloupec modelu používaný pro získání textu, pokud se používají značky Pango"
+msgstr ""
+"Sloupec modelu používaný pro získání textu, pokud se používají značky Pango"
 
 #: ../exo/exo-icon-view.c:769
 msgid "Icon View Model"
@@ -279,7 +269,8 @@
 msgstr "Model pro ikonový pohled"
 
 #: ../exo/exo-icon-view.c:784
-msgid "How the text and icon of each item are positioned relative to each other"
+msgid ""
+"How the text and icon of each item are positioned relative to each other"
 msgstr "Jak jsou text a ikony každé položky navzájem relativně umístěny"
 
 #: ../exo/exo-icon-view.c:816
@@ -314,25 +305,25 @@
 msgid "The selection mode"
 msgstr "Režim výběru"
 
-#: ../exo/exo-icon-view.c:878
-#: ../exo/exo-tree-view.c:166
+#: ../exo/exo-icon-view.c:878 ../exo/exo-tree-view.c:166
 msgid "Single Click"
 msgstr "Jednoduché kliknutí"
 
-#: ../exo/exo-icon-view.c:879
-#: ../exo/exo-tree-view.c:167
+#: ../exo/exo-icon-view.c:879 ../exo/exo-tree-view.c:167
 msgid "Whether the items in the view can be activated with single clicks"
 msgstr "Zda mohou být zobrazené položky aktivovány jednoduchým kliknutím"
 
-#: ../exo/exo-icon-view.c:895
-#: ../exo/exo-tree-view.c:183
+#: ../exo/exo-icon-view.c:895 ../exo/exo-tree-view.c:183
 msgid "Single Click Timeout"
 msgstr "Vypršení limitu pro jednoduché kliknutí"
 
-#: ../exo/exo-icon-view.c:896
-#: ../exo/exo-tree-view.c:184
-msgid "The amount of time after which the item under the mouse cursor will be selected automatically in single click mode"
-msgstr "Množství času, po kterém se položka pod kurzorem myši v módu jednoduchého kliknutí sama označí"
+#: ../exo/exo-icon-view.c:896 ../exo/exo-tree-view.c:184
+msgid ""
+"The amount of time after which the item under the mouse cursor will be "
+"selected automatically in single click mode"
+msgstr ""
+"Množství času, po kterém se položka pod kurzorem myši v módu jednoduchého "
+"kliknutí sama označí"
 
 #: ../exo/exo-icon-view.c:911
 msgid "Spacing"
@@ -362,8 +353,7 @@
 msgid "Preview"
 msgstr "Náhled"
 
-#: ../exo/exo-thumbnail-preview.c:139
-#: ../exo/exo-thumbnail-preview.c:281
+#: ../exo/exo-thumbnail-preview.c:139 ../exo/exo-thumbnail-preview.c:281
 msgid "No file selected"
 msgstr "Není vybrán žádný soubor"
 
@@ -392,8 +382,12 @@
 msgstr "Přid_at nový panel nástrojů"
 
 #: ../exo/exo-toolbars-editor.c:230
-msgid "Drag an item onto the toolbars above to add it, from the toolbars in the items table to remove it."
-msgstr "Položku přidáte na panel nástrojů tak, že ji přetáhnete z tabulky nástrojů. Opačným postupem ji odstraníte."
+msgid ""
+"Drag an item onto the toolbars above to add it, from the toolbars in the "
+"items table to remove it."
+msgstr ""
+"Položku přidáte na panel nástrojů tak, že ji přetáhnete z tabulky nástrojů. "
+"Opačným postupem ji odstraníte."
 
 #: ../exo/exo-toolbars-editor.c:543
 msgid "Separator"
@@ -486,44 +480,50 @@
 msgid "Session restart command"
 msgstr "Příkaz pro opakované spuštění sezení"
 
-#: ../exo-csource/main.c:230
+#: ../exo-csource/main.c:283
 #, c-format
 msgid "Usage: %s [options] [file]\n"
 msgstr "Použití: %s [volby] [soubor]\n"
 
-#: ../exo-csource/main.c:231
+#: ../exo-csource/main.c:284
 #, c-format
 msgid "       %s [options] --build-list [[name file]...]\n"
 msgstr "       %s [volby] --build-list [[název souboru]...]\n"
 
-#: ../exo-csource/main.c:233
+#: ../exo-csource/main.c:286
 msgid "  -h, --help        Print this help message and exit\n"
 msgstr "  -h, --help        Zobrazí tuto nápovědu a ukončí se\n"
 
-#: ../exo-csource/main.c:234
+#: ../exo-csource/main.c:287
 msgid "  -v, --version     Print version information and exit\n"
 msgstr "  -v, --version     Zobrazí informaci o verzi a ukončí se\n"
 
-#: ../exo-csource/main.c:235
+#: ../exo-csource/main.c:288
 msgid "  --extern          Generate extern symbols\n"
 msgstr "  --extern          Generuje extern symboly\n"
 
-#: ../exo-csource/main.c:236
+#: ../exo-csource/main.c:289
 msgid "  --static          Generate static symbols\n"
 msgstr "  --static          Generuje statické symboly\n"
 
-#: ../exo-csource/main.c:237
+#: ../exo-csource/main.c:290
 msgid "  --name=identifier C macro/variable name\n"
 msgstr "  --name=identifier Název proměnné nebo makra jazyka C\n"
 
-#: ../exo-csource/main.c:238
+#: ../exo-csource/main.c:291
 msgid "  --build-list      Parse (name, file) pairs\n"
 msgstr "  --build-list      Parsovací páry (název, soubor)\n"
 
-#: ../exo-csource/main.c:248
-#: ../exo-desktop-item-edit/main.c:153
-#: ../exo-mount/main.c:122
-#: ../exo-mount-notify/main.c:167
+#: ../exo-csource/main.c:292
+msgid "  --strip-comments  Remove comments from XML files\n"
+msgstr ""
+
+#: ../exo-csource/main.c:293
+msgid "  --strip-content   Remove node contents from XML files\n"
+msgstr ""
+
+#: ../exo-csource/main.c:303 ../exo-desktop-item-edit/main.c:153
+#: ../exo-mount/main.c:122 ../exo-mount-notify/main.c:167
 #: ../exo-open/main.c:129
 #, c-format
 msgid ""
@@ -539,10 +539,8 @@
 "Napsal Benedikt Meurer <benny at xfce.org>.\n"
 "\n"
 
-#: ../exo-csource/main.c:252
-#: ../exo-desktop-item-edit/main.c:157
-#: ../exo-mount/main.c:126
-#: ../exo-mount-notify/main.c:171
+#: ../exo-csource/main.c:307 ../exo-desktop-item-edit/main.c:157
+#: ../exo-mount/main.c:126 ../exo-mount-notify/main.c:171
 #: ../exo-open/main.c:133
 #, c-format
 msgid ""
@@ -558,10 +556,8 @@
 "přiložené u zdrojového balíčku aplikace %s.\n"
 "\n"
 
-#: ../exo-csource/main.c:256
-#: ../exo-desktop-item-edit/main.c:161
-#: ../exo-mount/main.c:130
-#: ../exo-mount-notify/main.c:175
+#: ../exo-csource/main.c:311 ../exo-desktop-item-edit/main.c:161
+#: ../exo-mount/main.c:130 ../exo-mount-notify/main.c:175
 #: ../exo-open/main.c:137
 #, c-format
 msgid "Please report bugs to <%s>.\n"
@@ -651,8 +647,14 @@
 msgstr "Použít oznámení při _spuštění"
 
 #: ../exo-desktop-item-edit/exo-die-editor.c:431
-msgid "Select this option to enable startup notification when the command is run from the file manager or the menu. Not every application supports startup notification."
-msgstr "Zvolte tuto možnost pro povolení oznámení při spuštění, pokud je příkaz spouštěn ze správce souborů nebo z hlavní nabídky. Ne každá aplikace podporuje oznámení při startu ."
+msgid ""
+"Select this option to enable startup notification when the command is run "
+"from the file manager or the menu. Not every application supports startup "
+"notification."
+msgstr ""
+"Zvolte tuto možnost pro povolení oznámení při spuštění, pokud je příkaz "
+"spouštěn ze správce souborů nebo z hlavní nabídky. Ne každá aplikace "
+"podporuje oznámení při startu ."
 
 #. TRANSLATORS: Check button label in "Create Launcher" dialog, make sure to avoid mnemonic conflicts
 #. *              and sync your translations with the translations in Thunar and xfce4-panel.
@@ -723,8 +725,7 @@
 "Přednastavená ikona při vytváření souboru na\n"
 "                              ploše"
 
-#: ../exo-desktop-item-edit/main.c:79
-#: ../exo-mount/main.c:74
+#: ../exo-desktop-item-edit/main.c:79 ../exo-mount/main.c:74
 #: ../exo-mount-notify/main.c:77
 msgid "Print version information and exit"
 msgstr "Zobrazí informace o verzi a ukončí se"
@@ -734,8 +735,7 @@
 msgid "[FILE|FOLDER]"
 msgstr "[SOUBOR|ADRESÁŘ]"
 
-#: ../exo-desktop-item-edit/main.c:138
-#: ../exo-mount/main.c:108
+#: ../exo-desktop-item-edit/main.c:138 ../exo-mount/main.c:108
 #: ../exo-mount-notify/main.c:153
 msgid "Failed to open display"
 msgstr "Nepodařilo se otevřít displej"
@@ -1047,7 +1047,9 @@
 
 #: ../exo-helper/exo-preferred-applications.desktop.in.h:2
 msgid "Preferred Applications (Web Browser, Mail Reader and Terminal Emulator)"
-msgstr "Upřednostňované aplikace (webový prohlížeč, e-mailový klient a emulátor terminálu)"
+msgstr ""
+"Upřednostňované aplikace (webový prohlížeč, e-mailový klient a emulátor "
+"terminálu)"
 
 #: ../exo-helper/exo-preferred-applications.desktop.in.h:3
 msgid "Xfce 4 Preferred Applications"
@@ -1175,15 +1177,13 @@
 
 #. TRANSLATORS: a device is missing from the file system table (usually /etc/fstab)
 #. tell the caller that no matching device was found
-#: ../exo-mount/exo-mount-fstab.c:132
-#: ../exo-mount/exo-mount-hal.c:374
+#: ../exo-mount/exo-mount-fstab.c:132 ../exo-mount/exo-mount-hal.c:374
 #, c-format
 msgid "Device \"%s\" not found in file system device table"
 msgstr "Zařízení \"%s\" nebylo nalezeno v tabulce systémových zařízení"
 
 #. definitely not a device that we're able to mount, eject or unmount
-#: ../exo-mount/exo-mount-hal.c:224
-#: ../exo-mount/exo-mount-hal.c:280
+#: ../exo-mount/exo-mount-hal.c:224 ../exo-mount/exo-mount-hal.c:280
 #, c-format
 msgid "Given device \"%s\" is not a volume or drive"
 msgstr "Zařízení \"%s\" není svazkem nebo jednotkou"
@@ -1207,12 +1207,18 @@
 msgstr "Nejste oprávněni připojit svazek \"%s\""
 
 #: ../exo-mount/exo-mount-hal.c:846
-msgid "Blank discs cannot be mounted, use a CD recording application like Xfburn to record audio or data on the disc"
-msgstr "Prázdné disky nemohou být připojeny, pro záznam dat nebo hudby na disk použijte například aplikaci Xfburn"
+msgid ""
+"Blank discs cannot be mounted, use a CD recording application like Xfburn to "
+"record audio or data on the disc"
+msgstr ""
+"Prázdné disky nemohou být připojeny, pro záznam dat nebo hudby na disk "
+"použijte například aplikaci Xfburn"
 
 #: ../exo-mount/exo-mount-hal.c:857
 msgid "Audio CDs cannot be mounted, use Xfmedia to play the audio tracks"
-msgstr "Nelze připojit hudební CD, pro přehrání zvukových stop použijte aplikaci Xfmedia"
+msgstr ""
+"Nelze připojit hudební CD, pro přehrání zvukových stop použijte aplikaci "
+"Xfmedia"
 
 #. TRANSLATORS: User tried to unmount a volume, but is not privileged to do so.
 #: ../exo-mount/exo-mount-hal.c:942
@@ -1267,8 +1273,12 @@
 msgstr "Nesmíte specifikovat číslo UDI zařízení HAL a soubor zařízení najednou"
 
 #: ../exo-mount/main.c:154
-msgid "Cannot mount by HAL device UDI, because HAL support was disabled for this build"
-msgstr "Zařízení HAL nelze připojit pomocí čísla UDI, protože podpora HAL nebyla v tomto sestavení povolena"
+msgid ""
+"Cannot mount by HAL device UDI, because HAL support was disabled for this "
+"build"
+msgstr ""
+"Zařízení HAL nelze připojit pomocí čísla UDI, protože podpora HAL nebyla v "
+"tomto sestavení povolena"
 
 #: ../exo-mount/main.c:161
 #, c-format
@@ -1322,8 +1332,12 @@
 
 #: ../exo-mount-notify/main.c:231
 #, c-format
-msgid "The device \"%s\" is being unmounted by the system. Please do not remove the media or disconnect the drive."
-msgstr "Zařízení \"%s\" je odpojováno od systému. Nevyjímejte médium ani neodpojujte jednotku."
+msgid ""
+"The device \"%s\" is being unmounted by the system. Please do not remove the "
+"media or disconnect the drive."
+msgstr ""
+"Zařízení \"%s\" je odpojováno od systému. Nevyjímejte médium ani neodpojujte "
+"jednotku."
 
 #. not read-only, writing back data
 #: ../exo-mount-notify/main.c:238
@@ -1332,8 +1346,12 @@
 
 #: ../exo-mount-notify/main.c:239
 #, c-format
-msgid "There is data that needs to be written to the device \"%s\" before it can be removed. Please do not remove the media or disconnect the drive."
-msgstr "Před vyjmutím je třeba zapsat data na jednotku \"%s\". Nevyjímejte médium ani neodpojujte jednotku."
+msgid ""
+"There is data that needs to be written to the device \"%s\" before it can be "
+"removed. Please do not remove the media or disconnect the drive."
+msgstr ""
+"Před vyjmutím je třeba zapsat data na jednotku \"%s\". Nevyjímejte médium "
+"ani neodpojujte jednotku."
 
 #: ../exo-open/main.c:59
 msgid "Usage: exo-open [URLs...]"
@@ -1345,16 +1363,20 @@
 
 #: ../exo-open/main.c:62
 msgid "  -?, --help                          Print this help message and exit"
-msgstr "  -h, --help                          Zobrazí tuto nápovědu a ukončí se"
+msgstr ""
+"  -h, --help                          Zobrazí tuto nápovědu a ukončí se"
 
 #: ../exo-open/main.c:63
-msgid "  -v, --version                       Print version information and exit"
-msgstr "  -v, --version                       Zobrazí informace o verzi a ukončí se"
+msgid ""
+"  -v, --version                       Print version information and exit"
+msgstr ""
+"  -v, --version                       Zobrazí informace o verzi a ukončí se"
 
 #: ../exo-open/main.c:65
 msgid ""
 "  --launch TYPE [PARAMETERs...]       Launch the preferred application of\n"
-"                                      TYPE with the optional PARAMETERs, where\n"
+"                                      TYPE with the optional PARAMETERs, "
+"where\n"
 "                                      TYPE is one of the following values."
 msgstr ""
 "  --launch TYP [PARAMETRY...]         Spustí upřednostňovanou aplikaci typu\n"
@@ -1363,7 +1385,8 @@
 
 #: ../exo-open/main.c:69
 msgid ""
-"  --working-directory DIRECTORY       Default working directory for applications\n"
+"  --working-directory DIRECTORY       Default working directory for "
+"applications\n"
 "                                      when using the --launch option."
 msgstr ""
 "  --working-directory ADRESÁŘ         Výchozí pracovní adresář pro aplikace\n"
@@ -1394,10 +1417,13 @@
 "pass additional parameters to the application (i.e. for TerminalEmulator\n"
 "you can pass the command line that should be run in the terminal)."
 msgstr ""
-"Nezadáte-li volbu --launch, exo-open otevře všechny specifikované adresy URL\n"
+"Nezadáte-li volbu --launch, exo-open otevře všechny specifikované adresy "
+"URL\n"
 "aplikací zvolenou podle tvaru adresy URL. Pokud však zadáte volbu --launch,\n"
-"budete moci vybrat, kterou aplikaci chcete spustit a zadat dodatečné parametry\n"
-"pro aplikace (např. pro TerminalEmulator můžete zadat příkaz, který se provede\n"
+"budete moci vybrat, kterou aplikaci chcete spustit a zadat dodatečné "
+"parametry\n"
+"pro aplikace (např. pro TerminalEmulator můžete zadat příkaz, který se "
+"provede\n"
 "v nově otevřeném okně terminálu."
 
 #: ../exo-open/main.c:149
@@ -1412,10 +1438,12 @@
 
 #~ msgid "Sylpheed Claws"
 #~ msgstr "Sylpheed Claws"
+
 #~ msgid "Failed to open display: %s"
 #~ msgstr "Nepodařilo se otevřít displej: %s"
+
 #~ msgid "Select an Icon"
 #~ msgstr "Vyberte si ikonu"
+
 #~ msgid "Default Web Browser"
 #~ msgstr "Výchozí webový prohlížeč"
-

Modified: libexo/trunk/po/cy.po
===================================================================
--- libexo/trunk/po/cy.po	2007-05-20 09:58:48 UTC (rev 25726)
+++ libexo/trunk/po/cy.po	2007-05-20 11:49:16 UTC (rev 25727)
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: exo 0.3.2\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-02-12 19:47+0100\n"
+"POT-Creation-Date: 2007-05-20 13:45+0200\n"
 "PO-Revision-Date: 2006-11-02 18:35+0000\n"
 "Last-Translator: Geraint Rowlands <ansbaradigeidfran at gmail.com>\n"
 "Language-Team: Welsh <xfce-i18n at xfce.org>\n"
@@ -41,8 +41,8 @@
 msgid "The size of the icon to render in pixels."
 msgstr "Maint yr eicon i'w lunio mewn picselau"
 
-#: ../exo/exo-gdk-pixbuf-extensions.c:770 ../exo/exo-mount-point.c:205
-#: ../exo/exo-mount-point.c:234 ../exo/exo-mount-point.c:392
+#: ../exo/exo-gdk-pixbuf-extensions.c:770 ../exo/exo-mount-point.c:208
+#: ../exo/exo-mount-point.c:237 ../exo/exo-mount-point.c:425
 #, c-format
 msgid "Failed to open file \"%s\": %s"
 msgstr "Methwyd agor ffeil\"%s\": %s"
@@ -474,41 +474,49 @@
 msgid "Session restart command"
 msgstr "Gorchymyn ailddrechrau sesiwn"
 
-#: ../exo-csource/main.c:230
+#: ../exo-csource/main.c:283
 #, c-format
 msgid "Usage: %s [options] [file]\n"
 msgstr "Defnyss: %s [opsiynau] [ffeil]\n"
 
-#: ../exo-csource/main.c:231
+#: ../exo-csource/main.c:284
 #, c-format
 msgid "       %s [options] --build-list [[name file]...]\n"
 msgstr "       %s [opsiynau] --build-list [[enw ffeil]...]\n"
 
-#: ../exo-csource/main.c:233
+#: ../exo-csource/main.c:286
 msgid "  -h, --help        Print this help message and exit\n"
 msgstr "  -h, --help        Argraffu'r neges help yma a gorffen\n"
 
-#: ../exo-csource/main.c:234
+#: ../exo-csource/main.c:287
 msgid "  -v, --version     Print version information and exit\n"
 msgstr "  -v, --version     Argraffu gwybodaeth fersiwn a gorffen\n"
 
-#: ../exo-csource/main.c:235
+#: ../exo-csource/main.c:288
 msgid "  --extern          Generate extern symbols\n"
 msgstr "  --extern          Creu symbolau allanol\n"
 
-#: ../exo-csource/main.c:236
+#: ../exo-csource/main.c:289
 msgid "  --static          Generate static symbols\n"
 msgstr "  --static          Creu symbolau sefydlog\n"
 
-#: ../exo-csource/main.c:237
+#: ../exo-csource/main.c:290
 msgid "  --name=identifier C macro/variable name\n"
 msgstr "  --name=dynodwr macro C/enw newidyn\n"
 
-#: ../exo-csource/main.c:238
+#: ../exo-csource/main.c:291
 msgid "  --build-list      Parse (name, file) pairs\n"
 msgstr "  --build-list      Dadansoddi parau (enw, ffeil)\n"
 
-#: ../exo-csource/main.c:248 ../exo-desktop-item-edit/main.c:153
+#: ../exo-csource/main.c:292
+msgid "  --strip-comments  Remove comments from XML files\n"
+msgstr ""
+
+#: ../exo-csource/main.c:293
+msgid "  --strip-content   Remove node contents from XML files\n"
+msgstr ""
+
+#: ../exo-csource/main.c:303 ../exo-desktop-item-edit/main.c:153
 #: ../exo-mount/main.c:122 ../exo-mount-notify/main.c:167
 #: ../exo-open/main.c:129
 #, fuzzy, c-format
@@ -525,7 +533,7 @@
 "Ysgrifennwyd gan Benedikt Meurer <benny at xfce.org>.\n"
 "\n"
 
-#: ../exo-csource/main.c:252 ../exo-desktop-item-edit/main.c:157
+#: ../exo-csource/main.c:307 ../exo-desktop-item-edit/main.c:157
 #: ../exo-mount/main.c:126 ../exo-mount-notify/main.c:171
 #: ../exo-open/main.c:133
 #, c-format
@@ -541,7 +549,7 @@
 "Trwydded Lai y Cyhoedd Cyffredinol GNU a ganfyddir ym\n"
 "mhecyn tardd %s\n"
 
-#: ../exo-csource/main.c:256 ../exo-desktop-item-edit/main.c:161
+#: ../exo-csource/main.c:311 ../exo-desktop-item-edit/main.c:161
 #: ../exo-mount/main.c:130 ../exo-mount-notify/main.c:175
 #: ../exo-open/main.c:137
 #, c-format

Modified: libexo/trunk/po/de.po
===================================================================
--- libexo/trunk/po/de.po	2007-05-20 09:58:48 UTC (rev 25726)
+++ libexo/trunk/po/de.po	2007-05-20 11:49:16 UTC (rev 25727)
@@ -9,9 +9,9 @@
 msgstr ""
 "Project-Id-Version: exo 0.3.2\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-02-12 19:47+0100\n"
-"PO-Revision-Date:  2007-01-09 23:24+0100\n"
-"Last-Translator: Nico Schümann <nico at prog.nico22.de>\n"
+"POT-Creation-Date: 2007-05-20 13:45+0200\n"
+"PO-Revision-Date:  2007-05-20 13:44+0100\n"
+"Last-Translator: Benedikt Meurer <benny at xfce.org>\n"
 "Language-Team: German <de at li.org>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -43,8 +43,8 @@
 msgid "The size of the icon to render in pixels."
 msgstr "Die Größe, in der das Symbol gezeichnet werden soll."
 
-#: ../exo/exo-gdk-pixbuf-extensions.c:770 ../exo/exo-mount-point.c:205
-#: ../exo/exo-mount-point.c:234 ../exo/exo-mount-point.c:392
+#: ../exo/exo-gdk-pixbuf-extensions.c:770 ../exo/exo-mount-point.c:208
+#: ../exo/exo-mount-point.c:237 ../exo/exo-mount-point.c:425
 #, c-format
 msgid "Failed to open file \"%s\": %s"
 msgstr "Konnte »%s« nicht öffnen: %s"
@@ -481,41 +481,49 @@
 msgid "Session restart command"
 msgstr "Befehl zum Neustart der Sitzung"
 
-#: ../exo-csource/main.c:230
+#: ../exo-csource/main.c:283
 #, c-format
 msgid "Usage: %s [options] [file]\n"
 msgstr "Aufruf: %s [Optionen] [Dateien]\n"
 
-#: ../exo-csource/main.c:231
+#: ../exo-csource/main.c:284
 #, c-format
 msgid "       %s [options] --build-list [[name file]...]\n"
 msgstr "        %s [Optionen] --build-list [[Name Datei]...]\n"
 
-#: ../exo-csource/main.c:233
+#: ../exo-csource/main.c:286
 msgid "  -h, --help        Print this help message and exit\n"
 msgstr "  -h, --help        Diesen Hilfetext anzeigen und beenden\n"
 
-#: ../exo-csource/main.c:234
+#: ../exo-csource/main.c:287
 msgid "  -v, --version     Print version information and exit\n"
 msgstr "  -v, --verison     Programmversion anzeigen\n"
 
-#: ../exo-csource/main.c:235
+#: ../exo-csource/main.c:288
 msgid "  --extern          Generate extern symbols\n"
 msgstr "  --extern          Externe Symbole erzeugen\n"
 
-#: ../exo-csource/main.c:236
+#: ../exo-csource/main.c:289
 msgid "  --static          Generate static symbols\n"
 msgstr "  --static          Statische Symbole erzeugen\n"
 
-#: ../exo-csource/main.c:237
+#: ../exo-csource/main.c:290
 msgid "  --name=identifier C macro/variable name\n"
 msgstr "  --name=identifier C Variablenname\n"
 
-#: ../exo-csource/main.c:238
+#: ../exo-csource/main.c:291
 msgid "  --build-list      Parse (name, file) pairs\n"
 msgstr "  --build-list      (Name, Datei) Paare parsen\n"
 
-#: ../exo-csource/main.c:248 ../exo-desktop-item-edit/main.c:153
+#: ../exo-csource/main.c:292
+msgid "  --strip-comments  Remove comments from XML files\n"
+msgstr "  --strip-comments  Kommentare aus XML Dateien entfernen\n"
+
+#: ../exo-csource/main.c:293
+msgid "  --strip-content   Remove node contents from XML files\n"
+msgstr "  --strip-content   Knoteninhalte aus XML Dateien entfernen\n"
+
+#: ../exo-csource/main.c:303 ../exo-desktop-item-edit/main.c:153
 #: ../exo-mount/main.c:122 ../exo-mount-notify/main.c:167
 #: ../exo-open/main.c:129
 #, c-format
@@ -532,7 +540,7 @@
 "Entwickelt von Benedikt Meurer <benny at xfce.org>.\n"
 "\n"
 
-#: ../exo-csource/main.c:252 ../exo-desktop-item-edit/main.c:157
+#: ../exo-csource/main.c:307 ../exo-desktop-item-edit/main.c:157
 #: ../exo-mount/main.c:126 ../exo-mount-notify/main.c:171
 #: ../exo-open/main.c:133
 #, c-format
@@ -549,7 +557,7 @@
 "%s gefunden werden kann.\n"
 "\n"
 
-#: ../exo-csource/main.c:256 ../exo-desktop-item-edit/main.c:161
+#: ../exo-csource/main.c:311 ../exo-desktop-item-edit/main.c:161
 #: ../exo-mount/main.c:130 ../exo-mount-notify/main.c:175
 #: ../exo-open/main.c:137
 #, c-format
@@ -1333,8 +1341,8 @@
 "The device \"%s\" is being unmounted by the system. Please do not remove the "
 "media or disconnect the drive."
 msgstr ""
-"Der Datenträger »%s« wird durch das System ausgehängt. Belassen Sie in dieser "
-"Zeit das Medium im Computer bzw. trennen Sie das Gerät nicht noch vom "
+"Der Datenträger »%s« wird durch das System ausgehängt. Belassen Sie in "
+"dieser Zeit das Medium im Computer bzw. trennen Sie das Gerät nicht noch vom "
 "Computer."
 
 #. not read-only, writing back data

Modified: libexo/trunk/po/dz.po
===================================================================
--- libexo/trunk/po/dz.po	2007-05-20 09:58:48 UTC (rev 25726)
+++ libexo/trunk/po/dz.po	2007-05-20 11:49:16 UTC (rev 25727)
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: exo 0.3.2\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-02-12 19:47+0100\n"
+"POT-Creation-Date: 2007-05-20 13:45+0200\n"
 "PO-Revision-Date: 2006-10-20 09:45+0530\n"
 "Last-Translator: sonam pelden <sonaa_peldn at yahoo.com>\n"
 "Language-Team: Dzongkha <pgeyleg at dit.gov.bt>\n"
@@ -45,8 +45,8 @@
 msgid "The size of the icon to render in pixels."
 msgstr "པིག་སེལསི་ནང་ལྷག་སྟོན་བཟོ་ནི་ཨིན་པའི་ངོས་དཔར་གྱི་ཚད།"
 
-#: ../exo/exo-gdk-pixbuf-extensions.c:770 ../exo/exo-mount-point.c:205
-#: ../exo/exo-mount-point.c:234 ../exo/exo-mount-point.c:392
+#: ../exo/exo-gdk-pixbuf-extensions.c:770 ../exo/exo-mount-point.c:208
+#: ../exo/exo-mount-point.c:237 ../exo/exo-mount-point.c:425
 #, c-format
 msgid "Failed to open file \"%s\": %s"
 msgstr "ཡིག་སྣོད་  \"%s\": %s ཁ་ཕྱེ་ནི་འདི་འཐུས་ཤོར་འབྱུང་ནུག"
@@ -482,41 +482,49 @@
 msgid "Session restart command"
 msgstr "ལཱ་ཡུན་ལོག་འགོ་བཙུགས་པའི་བརྡ་བཀོད།"
 
-#: ../exo-csource/main.c:230
+#: ../exo-csource/main.c:283
 #, c-format
 msgid "Usage: %s [options] [file]\n"
 msgstr "བེད་སྤྱོད:  %s [options] [file]\n"
 
-#: ../exo-csource/main.c:231
+#: ../exo-csource/main.c:284
 #, c-format
 msgid "       %s [options] --build-list [[name file]...]\n"
 msgstr "       %s [options] --བཟོ་བརྩིགས་-ཐོ་ཡིག་ [[name file]...]\n"
 
-#: ../exo-csource/main.c:233
+#: ../exo-csource/main.c:286
 msgid "  -h, --help        Print this help message and exit\n"
 msgstr "  -h, --help       གྲོགས་རམ་འཕྲིན་དོན་འདི་དཔར་བསྐྲུན་འབ་དཞིནམ་ལས་ ཕྱིར་ཐོན།\n"
 
-#: ../exo-csource/main.c:234
+#: ../exo-csource/main.c:287
 msgid "  -v, --version     Print version information and exit\n"
 msgstr "  -v, --version     འཐོན་རིམ་བརྡ་དོན་འདི་དཔར་བསྐྲུན་འབད་ཞིནམ་ལས་ ཕྱིར་ཐོན།\n"
 
-#: ../exo-csource/main.c:235
+#: ../exo-csource/main.c:288
 msgid "  --extern          Generate extern symbols\n"
 msgstr "  --extern          ཕྱིའི་བརྡ་མཚོན་ཚུ་བཟོ་བཏོན་འབད།\n"
 
-#: ../exo-csource/main.c:236
+#: ../exo-csource/main.c:289
 msgid "  --static          Generate static symbols\n"
 msgstr "  --static          རྟག་བརྟན་བརྡ་མཚོན་བཟོ་བཏོན་འབད།\n"
 
-#: ../exo-csource/main.c:237
+#: ../exo-csource/main.c:290
 msgid "  --name=identifier C macro/variable name\n"
 msgstr "  --name=སི་ མེཀ་རོ་/མིང་འགྱུར་ཅན་ངོས་འཛིན་འབད་མི།\n"
 
-#: ../exo-csource/main.c:238
+#: ../exo-csource/main.c:291
 msgid "  --build-list      Parse (name, file) pairs\n"
 msgstr "  --build-list      མིང་དཔྱད་འབད་ནི་ (མིང་, ཡིག་སྣོད་) ཟུང་།\n"
 
-#: ../exo-csource/main.c:248 ../exo-desktop-item-edit/main.c:153
+#: ../exo-csource/main.c:292
+msgid "  --strip-comments  Remove comments from XML files\n"
+msgstr ""
+
+#: ../exo-csource/main.c:293
+msgid "  --strip-content   Remove node contents from XML files\n"
+msgstr ""
+
+#: ../exo-csource/main.c:303 ../exo-desktop-item-edit/main.c:153
 #: ../exo-mount/main.c:122 ../exo-mount-notify/main.c:167
 #: ../exo-open/main.c:129
 #, fuzzy, c-format
@@ -533,7 +541,7 @@
 "འབྲི་མི་  བེ་ནི་ཌིཀཊི་ མིའུ་རེར།  <benny at xfce.org>.\n"
 "\n"
 
-#: ../exo-csource/main.c:252 ../exo-desktop-item-edit/main.c:157
+#: ../exo-csource/main.c:307 ../exo-desktop-item-edit/main.c:157
 #: ../exo-mount/main.c:126 ../exo-mount-notify/main.c:171
 #: ../exo-open/main.c:133
 #, c-format
@@ -550,7 +558,7 @@
 " དོན་ཚིག་འོག་ལུ་སླར་བཀྲམ་སྤེལ་འབད་བཏུབ་ཨིན།\n"
 "\n"
 
-#: ../exo-csource/main.c:256 ../exo-desktop-item-edit/main.c:161
+#: ../exo-csource/main.c:311 ../exo-desktop-item-edit/main.c:161
 #: ../exo-mount/main.c:130 ../exo-mount-notify/main.c:175
 #: ../exo-open/main.c:137
 #, c-format

Modified: libexo/trunk/po/el.po
===================================================================
--- libexo/trunk/po/el.po	2007-05-20 09:58:48 UTC (rev 25726)
+++ libexo/trunk/po/el.po	2007-05-20 11:49:16 UTC (rev 25727)
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: exo 0.3.2\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-02-12 19:47+0100\n"
+"POT-Creation-Date: 2007-05-20 13:45+0200\n"
 "PO-Revision-Date: 2007-01-19 10:09+0200\n"
 "Last-Translator: Stavros Giannouris <stavrosg at hellug.gr>\n"
 "Language-Team: Greek <nls at tux.hellug.gr>\n"
@@ -43,8 +43,8 @@
 msgid "The size of the icon to render in pixels."
 msgstr "Το μέγεθος του εικονιδίου σε pixel."
 
-#: ../exo/exo-gdk-pixbuf-extensions.c:770 ../exo/exo-mount-point.c:205
-#: ../exo/exo-mount-point.c:234 ../exo/exo-mount-point.c:392
+#: ../exo/exo-gdk-pixbuf-extensions.c:770 ../exo/exo-mount-point.c:208
+#: ../exo/exo-mount-point.c:237 ../exo/exo-mount-point.c:425
 #, c-format
 msgid "Failed to open file \"%s\": %s"
 msgstr "Το άνοιγμα του αρχείου \"%s\" απέτυχε: %s"
@@ -480,41 +480,49 @@
 msgid "Session restart command"
 msgstr "Εντολή επανεκκίνησης συνεδρίας"
 
-#: ../exo-csource/main.c:230
+#: ../exo-csource/main.c:283
 #, c-format
 msgid "Usage: %s [options] [file]\n"
 msgstr "Χρήση: %s [επιλογές] [αρχείο]\n"
 
-#: ../exo-csource/main.c:231
+#: ../exo-csource/main.c:284
 #, c-format
 msgid "       %s [options] --build-list [[name file]...]\n"
 msgstr "       %s [επιλογές] --build-list [[όνομα αρχείο]...]\n"
 
-#: ../exo-csource/main.c:233
+#: ../exo-csource/main.c:286
 msgid "  -h, --help        Print this help message and exit\n"
 msgstr "  -h, --help           Εμφανίζει αυτό το κείμενο βοήθειας\n"
 
-#: ../exo-csource/main.c:234
+#: ../exo-csource/main.c:287
 msgid "  -v, --version     Print version information and exit\n"
 msgstr "  -v, --version        Εμφανίζει τις πληροφορίες έκδοσης\n"
 
-#: ../exo-csource/main.c:235
+#: ../exo-csource/main.c:288
 msgid "  --extern          Generate extern symbols\n"
 msgstr "  --extern             Δημιουργία εξωτερικών συμβόλων\n"
 
-#: ../exo-csource/main.c:236
+#: ../exo-csource/main.c:289
 msgid "  --static          Generate static symbols\n"
 msgstr "  --static             Δημιουργία στατικών συμβόλων\n"
 
-#: ../exo-csource/main.c:237
+#: ../exo-csource/main.c:290
 msgid "  --name=identifier C macro/variable name\n"
 msgstr "  --name=αναγνωριστικό Όνομα μεταβλητής / μακροεντολής C\n"
 
-#: ../exo-csource/main.c:238
+#: ../exo-csource/main.c:291
 msgid "  --build-list      Parse (name, file) pairs\n"
 msgstr "  --build-list         Ανάλυση ζευγαριών (όνομα, αρχείο)\n"
 
-#: ../exo-csource/main.c:248 ../exo-desktop-item-edit/main.c:153
+#: ../exo-csource/main.c:292
+msgid "  --strip-comments  Remove comments from XML files\n"
+msgstr ""
+
+#: ../exo-csource/main.c:293
+msgid "  --strip-content   Remove node contents from XML files\n"
+msgstr ""
+
+#: ../exo-csource/main.c:303 ../exo-desktop-item-edit/main.c:153
 #: ../exo-mount/main.c:122 ../exo-mount-notify/main.c:167
 #: ../exo-open/main.c:129
 #, c-format
@@ -531,7 +539,7 @@
 "Γραμμένο από τον Benedikt Meurer <benny at xfce.org>.\n"
 "\n"
 
-#: ../exo-csource/main.c:252 ../exo-desktop-item-edit/main.c:157
+#: ../exo-csource/main.c:307 ../exo-desktop-item-edit/main.c:157
 #: ../exo-mount/main.c:126 ../exo-mount-notify/main.c:171
 #: ../exo-open/main.c:133
 #, c-format
@@ -548,7 +556,7 @@
 "να βρεθεί μέσα στο πακέτο με τον πηγαίο κώδικα του %s.\n"
 "\n"
 
-#: ../exo-csource/main.c:256 ../exo-desktop-item-edit/main.c:161
+#: ../exo-csource/main.c:311 ../exo-desktop-item-edit/main.c:161
 #: ../exo-mount/main.c:130 ../exo-mount-notify/main.c:175
 #: ../exo-open/main.c:137
 #, c-format

Modified: libexo/trunk/po/en_GB.po
===================================================================
--- libexo/trunk/po/en_GB.po	2007-05-20 09:58:48 UTC (rev 25726)
+++ libexo/trunk/po/en_GB.po	2007-05-20 11:49:16 UTC (rev 25727)
@@ -9,13 +9,13 @@
 msgstr ""
 "Project-Id-Version: exo 0.3.2\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-02-12 19:47+0100\n"
+"POT-Creation-Date: 2007-05-20 13:45+0200\n"
 "PO-Revision-Date: 2007-03-26 17:42+1000\n"
 "Last-Translator: Jeff Bailes <thepizzaking 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"
 
 #: ../exo/exo-cell-renderer-ellipsized-text.c:138
 #: ../exo/exo-cell-renderer-icon.c:145
@@ -43,8 +43,8 @@
 msgid "The size of the icon to render in pixels."
 msgstr "The size of the icon to render in pixels."
 
-#: ../exo/exo-gdk-pixbuf-extensions.c:770 ../exo/exo-mount-point.c:205
-#: ../exo/exo-mount-point.c:234 ../exo/exo-mount-point.c:392
+#: ../exo/exo-gdk-pixbuf-extensions.c:770 ../exo/exo-mount-point.c:208
+#: ../exo/exo-mount-point.c:237 ../exo/exo-mount-point.c:425
 #, c-format
 msgid "Failed to open file \"%s\": %s"
 msgstr "Failed to open file \"%s\": %s"
@@ -477,41 +477,49 @@
 msgid "Session restart command"
 msgstr "Session restart command"
 
-#: ../exo-csource/main.c:230
+#: ../exo-csource/main.c:283
 #, c-format
 msgid "Usage: %s [options] [file]\n"
 msgstr "Usage: %s [options] [file]\n"
 
-#: ../exo-csource/main.c:231
+#: ../exo-csource/main.c:284
 #, c-format
 msgid "       %s [options] --build-list [[name file]...]\n"
 msgstr "       %s [options] --build-list [[name file]...]\n"
 
-#: ../exo-csource/main.c:233
+#: ../exo-csource/main.c:286
 msgid "  -h, --help        Print this help message and exit\n"
 msgstr "  -h, --help        Print this help message and exit\n"
 
-#: ../exo-csource/main.c:234
+#: ../exo-csource/main.c:287
 msgid "  -v, --version     Print version information and exit\n"
 msgstr "  -v, --version     Print version information and exit\n"
 
-#: ../exo-csource/main.c:235
+#: ../exo-csource/main.c:288
 msgid "  --extern          Generate extern symbols\n"
 msgstr "  --extern          Generate extern symbols\n"
 
-#: ../exo-csource/main.c:236
+#: ../exo-csource/main.c:289
 msgid "  --static          Generate static symbols\n"
 msgstr "  --static          Generate static symbols\n"
 
-#: ../exo-csource/main.c:237
+#: ../exo-csource/main.c:290
 msgid "  --name=identifier C macro/variable name\n"
 msgstr "  --name=identifier C macro/variable name\n"
 
-#: ../exo-csource/main.c:238
+#: ../exo-csource/main.c:291
 msgid "  --build-list      Parse (name, file) pairs\n"
 msgstr "  --build-list      Parse (name, file) pairs\n"
 
-#: ../exo-csource/main.c:248 ../exo-desktop-item-edit/main.c:153
+#: ../exo-csource/main.c:292
+msgid "  --strip-comments  Remove comments from XML files\n"
+msgstr ""
+
+#: ../exo-csource/main.c:293
+msgid "  --strip-content   Remove node contents from XML files\n"
+msgstr ""
+
+#: ../exo-csource/main.c:303 ../exo-desktop-item-edit/main.c:153
 #: ../exo-mount/main.c:122 ../exo-mount-notify/main.c:167
 #: ../exo-open/main.c:129
 #, c-format
@@ -528,7 +536,7 @@
 "Written by Benedikt Meurer <benny at xfce.org>.\n"
 "\n"
 
-#: ../exo-csource/main.c:252 ../exo-desktop-item-edit/main.c:157
+#: ../exo-csource/main.c:307 ../exo-desktop-item-edit/main.c:157
 #: ../exo-mount/main.c:126 ../exo-mount-notify/main.c:171
 #: ../exo-open/main.c:133
 #, c-format
@@ -545,7 +553,7 @@
 "%s source package.\n"
 "\n"
 
-#: ../exo-csource/main.c:256 ../exo-desktop-item-edit/main.c:161
+#: ../exo-csource/main.c:311 ../exo-desktop-item-edit/main.c:161
 #: ../exo-mount/main.c:130 ../exo-mount-notify/main.c:175
 #: ../exo-open/main.c:137
 #, c-format
@@ -1026,7 +1034,8 @@
 
 #: ../exo-helper/exo-preferred-applications.desktop.in.h:2
 msgid "Preferred Applications (Web Browser, Mail Reader and Terminal Emulator)"
-msgstr "Preferred Applications (Web Browser, Mail Reader and Terminal Emulator)"
+msgstr ""
+"Preferred Applications (Web Browser, Mail Reader and Terminal Emulator)"
 
 #: ../exo-helper/exo-preferred-applications.desktop.in.h:3
 msgid "Xfce 4 Preferred Applications"
@@ -1245,7 +1254,8 @@
 #. the caller must specify EITHER a HAL UDI or a device file
 #: ../exo-mount/main.c:146
 msgid "Must not specify both a HAL device UDI and a device file simultaneously"
-msgstr "Must not specify both a HAL device UDI and a device file simultaneously"
+msgstr ""
+"Must not specify both a HAL device UDI and a device file simultaneously"
 
 #: ../exo-mount/main.c:154
 msgid ""

Modified: libexo/trunk/po/es.po
===================================================================
--- libexo/trunk/po/es.po	2007-05-20 09:58:48 UTC (rev 25726)
+++ libexo/trunk/po/es.po	2007-05-20 11:49:16 UTC (rev 25727)
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: exo 0.3.2\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-02-12 19:47+0100\n"
+"POT-Creation-Date: 2007-05-20 13:45+0200\n"
 "PO-Revision-Date: 2005-10-10 01:45+0900\n"
 "Last-Translator: Patricio Carr <pato at patocarr.com>\n"
 "Language-Team: os-cillation <info at os-cillation.com>\n"
@@ -41,8 +41,8 @@
 msgid "The size of the icon to render in pixels."
 msgstr ""
 
-#: ../exo/exo-gdk-pixbuf-extensions.c:770 ../exo/exo-mount-point.c:205
-#: ../exo/exo-mount-point.c:234 ../exo/exo-mount-point.c:392
+#: ../exo/exo-gdk-pixbuf-extensions.c:770 ../exo/exo-mount-point.c:208
+#: ../exo/exo-mount-point.c:237 ../exo/exo-mount-point.c:425
 #, c-format
 msgid "Failed to open file \"%s\": %s"
 msgstr ""
@@ -479,41 +479,49 @@
 msgid "Session restart command"
 msgstr "Comando Reiniciar sesion"
 
-#: ../exo-csource/main.c:230
+#: ../exo-csource/main.c:283
 #, c-format
 msgid "Usage: %s [options] [file]\n"
 msgstr "Uso: %s [opciones] [archivo]\n"
 
-#: ../exo-csource/main.c:231
+#: ../exo-csource/main.c:284
 #, c-format
 msgid "       %s [options] --build-list [[name file]...]\n"
 msgstr "       %s [opciones] --build-list [[nombre archivo]]...]\n"
 
-#: ../exo-csource/main.c:233
+#: ../exo-csource/main.c:286
 msgid "  -h, --help        Print this help message and exit\n"
 msgstr "  -h, --help        Mostrar este mensaje de ayuda y salir\n"
 
-#: ../exo-csource/main.c:234
+#: ../exo-csource/main.c:287
 msgid "  -v, --version     Print version information and exit\n"
 msgstr "  -v, --version     Mostrar informacion sobre la version y salir\n"
 
-#: ../exo-csource/main.c:235
+#: ../exo-csource/main.c:288
 msgid "  --extern          Generate extern symbols\n"
 msgstr "  --extern          Generar simbolos externos\n"
 
-#: ../exo-csource/main.c:236
+#: ../exo-csource/main.c:289
 msgid "  --static          Generate static symbols\n"
 msgstr "  --static          Generar simbolos estaticos\n"
 
-#: ../exo-csource/main.c:237
+#: ../exo-csource/main.c:290
 msgid "  --name=identifier C macro/variable name\n"
 msgstr "  --name=identificador macro C/nombre de variable\n"
 
-#: ../exo-csource/main.c:238
+#: ../exo-csource/main.c:291
 msgid "  --build-list      Parse (name, file) pairs\n"
 msgstr "  --build-list      Parsear pares (nombre, archivo)\n"
 
-#: ../exo-csource/main.c:248 ../exo-desktop-item-edit/main.c:153
+#: ../exo-csource/main.c:292
+msgid "  --strip-comments  Remove comments from XML files\n"
+msgstr ""
+
+#: ../exo-csource/main.c:293
+msgid "  --strip-content   Remove node contents from XML files\n"
+msgstr ""
+
+#: ../exo-csource/main.c:303 ../exo-desktop-item-edit/main.c:153
 #: ../exo-mount/main.c:122 ../exo-mount-notify/main.c:167
 #: ../exo-open/main.c:129
 #, fuzzy, c-format
@@ -530,7 +538,7 @@
 "Escrito por Benedikt Meurer <benny at xfce.org>.\n"
 "\n"
 
-#: ../exo-csource/main.c:252 ../exo-desktop-item-edit/main.c:157
+#: ../exo-csource/main.c:307 ../exo-desktop-item-edit/main.c:157
 #: ../exo-mount/main.c:126 ../exo-mount-notify/main.c:171
 #: ../exo-open/main.c:133
 #, c-format
@@ -547,7 +555,7 @@
 "en el paquete de fuentes de %s.\n"
 "\n"
 
-#: ../exo-csource/main.c:256 ../exo-desktop-item-edit/main.c:161
+#: ../exo-csource/main.c:311 ../exo-desktop-item-edit/main.c:161
 #: ../exo-mount/main.c:130 ../exo-mount-notify/main.c:175
 #: ../exo-open/main.c:137
 #, c-format

Modified: libexo/trunk/po/et.po
===================================================================
--- libexo/trunk/po/et.po	2007-05-20 09:58:48 UTC (rev 25726)
+++ libexo/trunk/po/et.po	2007-05-20 11:49:16 UTC (rev 25727)
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: exo 0.3.2\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-02-12 19:47+0100\n"
+"POT-Creation-Date: 2007-05-20 13:45+0200\n"
 "PO-Revision-Date: 2006-04-21 23:06+0300\n"
 "Last-Translator: Peeter Vois <peeter.vois at proekspert.ee>\n"
 "Language-Team: Estonian <et at li.org>\n"
@@ -41,8 +41,8 @@
 msgid "The size of the icon to render in pixels."
 msgstr ""
 
-#: ../exo/exo-gdk-pixbuf-extensions.c:770 ../exo/exo-mount-point.c:205
-#: ../exo/exo-mount-point.c:234 ../exo/exo-mount-point.c:392
+#: ../exo/exo-gdk-pixbuf-extensions.c:770 ../exo/exo-mount-point.c:208
+#: ../exo/exo-mount-point.c:237 ../exo/exo-mount-point.c:425
 #, fuzzy, c-format
 msgid "Failed to open file \"%s\": %s"
 msgstr "\"%s\" avamine läks nässu."
@@ -481,41 +481,49 @@
 msgid "Session restart command"
 msgstr "Sessiooni taaskäivitamise käsklus"
 
-#: ../exo-csource/main.c:230
+#: ../exo-csource/main.c:283
 #, c-format
 msgid "Usage: %s [options] [file]\n"
 msgstr "Kasutamine: %s [omadused] [fail]\n"
 
-#: ../exo-csource/main.c:231
+#: ../exo-csource/main.c:284
 #, c-format
 msgid "       %s [options] --build-list [[name file]...]\n"
 msgstr "       %s [seadistused] --build-list[[nimi fail]...]\n"
 
-#: ../exo-csource/main.c:233
+#: ../exo-csource/main.c:286
 msgid "  -h, --help        Print this help message and exit\n"
 msgstr "  -h, --help        Trüki see abiteksti teade ja välju\n"
 
-#: ../exo-csource/main.c:234
+#: ../exo-csource/main.c:287
 msgid "  -v, --version     Print version information and exit\n"
 msgstr "  -v, --version    Trüki versioon ja välju\n"
 
-#: ../exo-csource/main.c:235
+#: ../exo-csource/main.c:288
 msgid "  --extern          Generate extern symbols\n"
 msgstr "  -extern          Genereeri välised sümbolid\n"
 
-#: ../exo-csource/main.c:236
+#: ../exo-csource/main.c:289
 msgid "  --static          Generate static symbols\n"
 msgstr "  --static          Genereeri staatilisi sümboleid\n"
 
-#: ../exo-csource/main.c:237
+#: ../exo-csource/main.c:290
 msgid "  --name=identifier C macro/variable name\n"
 msgstr "  --name=väärtus C makro/muutuja nimi\n"
 
-#: ../exo-csource/main.c:238
+#: ../exo-csource/main.c:291
 msgid "  --build-list      Parse (name, file) pairs\n"
 msgstr "  --build-list       otsi (nimi, fail) paare\n"
 
-#: ../exo-csource/main.c:248 ../exo-desktop-item-edit/main.c:153
+#: ../exo-csource/main.c:292
+msgid "  --strip-comments  Remove comments from XML files\n"
+msgstr ""
+
+#: ../exo-csource/main.c:293
+msgid "  --strip-content   Remove node contents from XML files\n"
+msgstr ""
+
+#: ../exo-csource/main.c:303 ../exo-desktop-item-edit/main.c:153
 #: ../exo-mount/main.c:122 ../exo-mount-notify/main.c:167
 #: ../exo-open/main.c:129
 #, fuzzy, c-format
@@ -532,7 +540,7 @@
 "Kirjutas·Benedikt·Meurer·<benny at xfce.org>.\n"
 "\n"
 
-#: ../exo-csource/main.c:252 ../exo-desktop-item-edit/main.c:157
+#: ../exo-csource/main.c:307 ../exo-desktop-item-edit/main.c:157
 #: ../exo-mount/main.c:126 ../exo-mount-notify/main.c:171
 #: ../exo-open/main.c:133
 #, c-format
@@ -549,7 +557,7 @@
 "%s lähtekoodi pakist.\n"
 "\n"
 
-#: ../exo-csource/main.c:256 ../exo-desktop-item-edit/main.c:161
+#: ../exo-csource/main.c:311 ../exo-desktop-item-edit/main.c:161
 #: ../exo-mount/main.c:130 ../exo-mount-notify/main.c:175
 #: ../exo-open/main.c:137
 #, c-format

Modified: libexo/trunk/po/eu.po
===================================================================
--- libexo/trunk/po/eu.po	2007-05-20 09:58:48 UTC (rev 25726)
+++ libexo/trunk/po/eu.po	2007-05-20 11:49:16 UTC (rev 25727)
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: exo 0.3.2\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-02-12 19:47+0100\n"
+"POT-Creation-Date: 2007-05-20 13:45+0200\n"
 "PO-Revision-Date: 2007-01-08 14:23+0100\n"
 "Last-Translator: Piarres Beobide <pi at beobide.net>\n"
 "Language-Team: librezale <