[Goodies-commits] r7225 - in xfce4-clipman-plugin/trunk: . panel-plugin po

Mike Massonnet mmassonnet at xfce.org
Sat Apr 18 12:08:32 CEST 2009


Author: mmassonnet
Date: 2009-04-18 10:08:32 +0000 (Sat, 18 Apr 2009)
New Revision: 7225

Modified:
   xfce4-clipman-plugin/trunk/ChangeLog
   xfce4-clipman-plugin/trunk/panel-plugin/main.c
   xfce4-clipman-plugin/trunk/po/ChangeLog
   xfce4-clipman-plugin/trunk/po/ar.po
   xfce4-clipman-plugin/trunk/po/ca.po
   xfce4-clipman-plugin/trunk/po/cs.po
   xfce4-clipman-plugin/trunk/po/da.po
   xfce4-clipman-plugin/trunk/po/de.po
   xfce4-clipman-plugin/trunk/po/el.po
   xfce4-clipman-plugin/trunk/po/en_GB.po
   xfce4-clipman-plugin/trunk/po/es.po
   xfce4-clipman-plugin/trunk/po/eu.po
   xfce4-clipman-plugin/trunk/po/fr.po
   xfce4-clipman-plugin/trunk/po/gl.po
   xfce4-clipman-plugin/trunk/po/hu.po
   xfce4-clipman-plugin/trunk/po/id.po
   xfce4-clipman-plugin/trunk/po/it.po
   xfce4-clipman-plugin/trunk/po/ja.po
   xfce4-clipman-plugin/trunk/po/lv.po
   xfce4-clipman-plugin/trunk/po/nb.po
   xfce4-clipman-plugin/trunk/po/nl.po
   xfce4-clipman-plugin/trunk/po/pl.po
   xfce4-clipman-plugin/trunk/po/pt.po
   xfce4-clipman-plugin/trunk/po/pt_BR.po
   xfce4-clipman-plugin/trunk/po/ru.po
   xfce4-clipman-plugin/trunk/po/sq.po
   xfce4-clipman-plugin/trunk/po/sv.po
   xfce4-clipman-plugin/trunk/po/tr.po
   xfce4-clipman-plugin/trunk/po/uk.po
   xfce4-clipman-plugin/trunk/po/ur.po
   xfce4-clipman-plugin/trunk/po/xfce4-clipman-plugin.pot
   xfce4-clipman-plugin/trunk/po/zh_CN.po
   xfce4-clipman-plugin/trunk/po/zh_TW.po
Log:
Add about dialog -- make update-po

Modified: xfce4-clipman-plugin/trunk/ChangeLog
===================================================================
--- xfce4-clipman-plugin/trunk/ChangeLog	2009-04-17 15:42:54 UTC (rev 7224)
+++ xfce4-clipman-plugin/trunk/ChangeLog	2009-04-18 10:08:32 UTC (rev 7225)
@@ -1,3 +1,6 @@
+2009-04-18	Mike Massonnet
+Add about dialog
+
 2009-04-16	Mike Massonnet
 Init the locale one stage earlier
 

Modified: xfce4-clipman-plugin/trunk/panel-plugin/main.c
===================================================================
--- xfce4-clipman-plugin/trunk/panel-plugin/main.c	2009-04-17 15:42:54 UTC (rev 7224)
+++ xfce4-clipman-plugin/trunk/panel-plugin/main.c	2009-04-18 10:08:32 UTC (rev 7225)
@@ -101,6 +101,10 @@
 static void             plugin_load                     (MyPlugin *plugin);
 static void             plugin_save                     (MyPlugin *plugin);
 static void             plugin_free                     (MyPlugin *plugin);
+static void             plugin_about                    (MyPlugin *plugin);
+static void             cb_about_dialog_url_hook        (GtkAboutDialog *dialog,
+                                                         const gchar *uri,
+                                                         gpointer user_data);
 static void             plugin_configure                (MyPlugin *plugin);
 static void             cb_button_toggled               (GtkToggleButton *button,
                                                          MyPlugin *plugin);
@@ -322,6 +326,9 @@
       mi = gtk_image_menu_item_new_from_stock (GTK_STOCK_PROPERTIES, NULL);
       gtk_menu_shell_append (GTK_MENU_SHELL (plugin->popup_menu), mi);
       g_signal_connect_swapped (mi, "activate", G_CALLBACK (plugin_configure), plugin);
+      mi = gtk_image_menu_item_new_from_stock (GTK_STOCK_ABOUT, NULL);
+      gtk_menu_shell_append (GTK_MENU_SHELL (plugin->popup_menu), mi);
+      g_signal_connect_swapped (mi, "activate", G_CALLBACK (plugin_about), plugin);
       mi = gtk_separator_menu_item_new ();
       gtk_menu_shell_append (GTK_MENU_SHELL (plugin->popup_menu), mi);
       mi = gtk_image_menu_item_new_from_stock (GTK_STOCK_REMOVE, NULL);
@@ -431,6 +438,9 @@
   /* Signals */
   g_signal_connect_swapped (panel_plugin, "size-changed",
                             G_CALLBACK (panel_plugin_set_size), plugin);
+  xfce_panel_plugin_menu_show_about (panel_plugin);
+  g_signal_connect_swapped (panel_plugin, "about",
+                            G_CALLBACK (plugin_about), plugin);
   xfce_panel_plugin_menu_show_configure (panel_plugin);
   g_signal_connect_swapped (panel_plugin, "configure-plugin",
                             G_CALLBACK (plugin_configure), plugin);
@@ -613,6 +623,47 @@
 }
 
 static void
+plugin_about (MyPlugin *plugin)
+{
+  static const gchar *artists[] = { "Mike Massonnet", NULL, };
+  static const gchar *authors[] = { "Mike Massonnet", NULL, };
+  static const gchar *documenters[] = { NULL, };
+
+  gtk_about_dialog_set_url_hook (cb_about_dialog_url_hook, NULL, NULL);
+  gtk_show_about_dialog (NULL,
+                         "program-name", _("Clipman"),
+                         "logo-icon-name", "xfce4-clipman-plugin",
+                         "comments", _("Clipboard Manager for Xfce"),
+                         "version", PACKAGE_VERSION,
+                         "copyright", "Copyright © 2008-2009 Mike Massonnet",
+                         "license", XFCE_LICENSE_GPL,
+                         "website", "http://goodies.xfce.org/projects/panel-plugins/xfce4-clipman-plugin",
+                         "website-label", "goodies.xfce.org",
+                         "artists", artists,
+                         "authors", authors,
+                         "documenters", documenters,
+                         "translator-credits", _("translator-credits"),
+                         NULL);
+}
+
+static void
+cb_about_dialog_url_hook (GtkAboutDialog *dialog,
+                          const gchar *uri,
+                          gpointer user_data)
+{
+  gchar *command;
+
+  command = g_strdup_printf ("exo-open %s", uri);
+  if (!g_spawn_command_line_async (command, NULL))
+    {
+      g_free (command);
+      command = g_strdup_printf ("firefox %s", uri);
+      g_spawn_command_line_async (command, NULL);
+    }
+  g_free (command);
+}
+
+static void
 plugin_configure (MyPlugin *plugin)
 {
   GtkWidget *dialog;

Modified: xfce4-clipman-plugin/trunk/po/ChangeLog
===================================================================
--- xfce4-clipman-plugin/trunk/po/ChangeLog	2009-04-17 15:42:54 UTC (rev 7224)
+++ xfce4-clipman-plugin/trunk/po/ChangeLog	2009-04-18 10:08:32 UTC (rev 7225)
@@ -1,3 +1,8 @@
+2009-04-16  Mike Massonnet <mmassonnet at xfce.org>
+
+	* fr.po: French translation update
+	* *.po, *.pot: make update-po
+
 2009-04-16	Per Kongstad <pko at xfce.org>
 
 	* da.po: Danish translation update (Per Kongstad)

Modified: xfce4-clipman-plugin/trunk/po/ar.po
===================================================================
--- xfce4-clipman-plugin/trunk/po/ar.po	2009-04-17 15:42:54 UTC (rev 7224)
+++ xfce4-clipman-plugin/trunk/po/ar.po	2009-04-18 10:08:32 UTC (rev 7225)
@@ -2,7 +2,7 @@
 msgstr ""
 "Project-Id-Version: xfce\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-04-16 11:32+0200\n"
+"POT-Creation-Date: 2009-04-18 12:03+0200\n"
 "PO-Revision-Date: 2008-07-15 22:57+0200\n"
 "Last-Translator: Mohamed Magdy <mohamedmk at gmail.com>\n"
 "Language-Team: Arabeyes <doc at arabeyes.org>\n"
@@ -20,8 +20,9 @@
 #: ../xfce4-clipman-plugin.desktop.in.h:2
 #: ../panel-plugin/xfce4-clipman-plugin.desktop.in.in.h:2
 #: ../panel-plugin/xfce4-clipman-plugin-autostart.desktop.in.h:2
-#: ../panel-plugin/main.c:191 ../panel-plugin/main.c:271
-#: ../panel-plugin/main.c:317 ../panel-plugin/main.c:418
+#: ../panel-plugin/main.c:198 ../panel-plugin/main.c:275
+#: ../panel-plugin/main.c:321 ../panel-plugin/main.c:425
+#: ../panel-plugin/main.c:634
 msgid "Clipman"
 msgstr ""
 
@@ -158,15 +159,23 @@
 msgstr ""
 
 #. Ask the user
-#: ../panel-plugin/main.c:385 ../panel-plugin/main.c:386
+#: ../panel-plugin/main.c:392 ../panel-plugin/main.c:393
 msgid "Autostart Clipman"
 msgstr ""
 
-#: ../panel-plugin/main.c:386
+#: ../panel-plugin/main.c:393
 msgid "Do you want to autostart the clipboard manager?"
 msgstr ""
 
-#: ../panel-plugin/main.c:787
+#: ../panel-plugin/main.c:636
+msgid "Clipboard Manager for Xfce"
+msgstr ""
+
+#: ../panel-plugin/main.c:645
+msgid "translator-credits"
+msgstr ""
+
+#: ../panel-plugin/main.c:838
 msgid "There is already a clipboard manager running"
 msgstr ""
 

Modified: xfce4-clipman-plugin/trunk/po/ca.po
===================================================================
--- xfce4-clipman-plugin/trunk/po/ca.po	2009-04-17 15:42:54 UTC (rev 7224)
+++ xfce4-clipman-plugin/trunk/po/ca.po	2009-04-18 10:08:32 UTC (rev 7225)
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-clipman-plugin 0.8.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-04-16 11:32+0200\n"
+"POT-Creation-Date: 2009-04-18 12:03+0200\n"
 "PO-Revision-Date: 2009-04-15 11:53+0100\n"
 "Last-Translator: Harald Servat <redcrash at gmail.com>\n"
 "Language-Team: Catalan <xfce-i18n at xfce.org>\n"
@@ -27,8 +27,9 @@
 #: ../xfce4-clipman-plugin.desktop.in.h:2
 #: ../panel-plugin/xfce4-clipman-plugin.desktop.in.in.h:2
 #: ../panel-plugin/xfce4-clipman-plugin-autostart.desktop.in.h:2
-#: ../panel-plugin/main.c:191 ../panel-plugin/main.c:271
-#: ../panel-plugin/main.c:317 ../panel-plugin/main.c:418
+#: ../panel-plugin/main.c:198 ../panel-plugin/main.c:275
+#: ../panel-plugin/main.c:321 ../panel-plugin/main.c:425
+#: ../panel-plugin/main.c:634
 msgid "Clipman"
 msgstr "Porta-retalls «Clipman»"
 
@@ -179,15 +180,24 @@
 "documentació de Clipman."
 
 #. Ask the user
-#: ../panel-plugin/main.c:385 ../panel-plugin/main.c:386
+#: ../panel-plugin/main.c:392 ../panel-plugin/main.c:393
 msgid "Autostart Clipman"
 msgstr ""
 
-#: ../panel-plugin/main.c:386
+#: ../panel-plugin/main.c:393
 msgid "Do you want to autostart the clipboard manager?"
 msgstr ""
 
-#: ../panel-plugin/main.c:787
+#: ../panel-plugin/main.c:636
+#, fuzzy
+msgid "Clipboard Manager for Xfce"
+msgstr "Gestor de porta-retalls per l’escriptori Xfce"
+
+#: ../panel-plugin/main.c:645
+msgid "translator-credits"
+msgstr ""
+
+#: ../panel-plugin/main.c:838
 msgid "There is already a clipboard manager running"
 msgstr "Ja hi ha un altre gestor del porta-retalls executant-se"
 
@@ -242,9 +252,6 @@
 #~ msgid "Clipman History"
 #~ msgstr "Històric de retalls"
 
-#~ msgid "Clipboard manager for the Xfce desktop"
-#~ msgstr "Gestor de porta-retalls per l’escriptori Xfce"
-
 #~ msgid "Pre_vent empty clipboard"
 #~ msgstr "E_vita tenir el porta-retalls buit"
 

Modified: xfce4-clipman-plugin/trunk/po/cs.po
===================================================================
--- xfce4-clipman-plugin/trunk/po/cs.po	2009-04-17 15:42:54 UTC (rev 7224)
+++ xfce4-clipman-plugin/trunk/po/cs.po	2009-04-18 10:08:32 UTC (rev 7225)
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-clipman-plugin 0.8.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-04-16 11:32+0200\n"
+"POT-Creation-Date: 2009-04-18 12:03+0200\n"
 "PO-Revision-Date: 2009-01-19 01:48+0100\n"
 "Last-Translator: Michal Várady <miko.vaji at gmail.com>\n"
 "Language-Team: Czech <xfce-i18n at xfce.org>\n"
@@ -29,8 +29,9 @@
 #: ../xfce4-clipman-plugin.desktop.in.h:2
 #: ../panel-plugin/xfce4-clipman-plugin.desktop.in.in.h:2
 #: ../panel-plugin/xfce4-clipman-plugin-autostart.desktop.in.h:2
-#: ../panel-plugin/main.c:191 ../panel-plugin/main.c:271
-#: ../panel-plugin/main.c:317 ../panel-plugin/main.c:418
+#: ../panel-plugin/main.c:198 ../panel-plugin/main.c:275
+#: ../panel-plugin/main.c:321 ../panel-plugin/main.c:425
+#: ../panel-plugin/main.c:634
 msgid "Clipman"
 msgstr "Správce schránky"
 
@@ -170,15 +171,24 @@
 msgstr ""
 
 #. Ask the user
-#: ../panel-plugin/main.c:385 ../panel-plugin/main.c:386
+#: ../panel-plugin/main.c:392 ../panel-plugin/main.c:393
 msgid "Autostart Clipman"
 msgstr ""
 
-#: ../panel-plugin/main.c:386
+#: ../panel-plugin/main.c:393
 msgid "Do you want to autostart the clipboard manager?"
 msgstr ""
 
-#: ../panel-plugin/main.c:787
+#: ../panel-plugin/main.c:636
+#, fuzzy
+msgid "Clipboard Manager for Xfce"
+msgstr "Správce schránky pro prostředí Xfce"
+
+#: ../panel-plugin/main.c:645
+msgid "translator-credits"
+msgstr ""
+
+#: ../panel-plugin/main.c:838
 msgid "There is already a clipboard manager running"
 msgstr ""
 
@@ -231,9 +241,6 @@
 #~ msgid "Clipman History"
 #~ msgstr "Historie správce schránky"
 
-#~ msgid "Clipboard manager for the Xfce desktop"
-#~ msgstr "Správce schránky pro prostředí Xfce"
-
 #~ msgid "Pre_vent empty clipboard"
 #~ msgstr "_Zamezit vyprázdnění schránky"
 

Modified: xfce4-clipman-plugin/trunk/po/da.po
===================================================================
--- xfce4-clipman-plugin/trunk/po/da.po	2009-04-17 15:42:54 UTC (rev 7224)
+++ xfce4-clipman-plugin/trunk/po/da.po	2009-04-18 10:08:32 UTC (rev 7225)
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-clipman-plugin 1.0.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-04-16 11:32+0200\n"
+"POT-Creation-Date: 2009-04-18 12:03+0200\n"
 "PO-Revision-Date: 2009-04-16 17:05+0100\n"
 "Last-Translator: Per Kongstad <p_kongstad at op.pl>\n"
 "Language-Team: Danish <dansk at dansk-gruppen.dk>\n"
@@ -27,10 +27,9 @@
 #: ../xfce4-clipman-plugin.desktop.in.h:2
 #: ../panel-plugin/xfce4-clipman-plugin.desktop.in.in.h:2
 #: ../panel-plugin/xfce4-clipman-plugin-autostart.desktop.in.h:2
-#: ../panel-plugin/main.c:191
-#: ../panel-plugin/main.c:271
-#: ../panel-plugin/main.c:317
-#: ../panel-plugin/main.c:418
+#: ../panel-plugin/main.c:198 ../panel-plugin/main.c:275
+#: ../panel-plugin/main.c:321 ../panel-plugin/main.c:425
+#: ../panel-plugin/main.c:634
 msgid "Clipman"
 msgstr "Clipman"
 
@@ -91,8 +90,12 @@
 msgstr "Tilføj _markeringer"
 
 #: ../panel-plugin/settings-dialog.glade.h:7
-msgid "By default the action is triggerred by a selection, check this option to trigger the action only when you make a manual copy"
-msgstr "Som standard er denne handling udløst af en markering. Kryds denne indstilling af, for kun at udløse denne handling, når du laver en manuel kopi"
+msgid ""
+"By default the action is triggerred by a selection, check this option to "
+"trigger the action only when you make a manual copy"
+msgstr ""
+"Som standard er denne handling udløst af en markering. Kryds denne "
+"indstilling af, for kun at udløse denne handling, når du laver en manuel kopi"
 
 #: ../panel-plugin/settings-dialog.glade.h:8
 msgid "Command:"
@@ -115,20 +118,35 @@
 msgstr "Generel"
 
 #: ../panel-plugin/settings-dialog.glade.h:13
-msgid "If checked, the clipboard texts will be matched against regular expressions and a menu will display possible actions"
-msgstr "Hvis afkrydset, vil klippebordets tekst blive kontrolleret op imod regulære udtryk og en menu vil blive vist for mulige handlinger"
+msgid ""
+"If checked, the clipboard texts will be matched against regular expressions "
+"and a menu will display possible actions"
+msgstr ""
+"Hvis afkrydset, vil klippebordets tekst blive kontrolleret op imod regulære "
+"udtryk og en menu vil blive vist for mulige handlinger"
 
 #: ../panel-plugin/settings-dialog.glade.h:14
-msgid "If checked, the selections will go into the history. This behavior can bring the history to be unreadable, however it can be interesting in case you always want to paste what you select."
-msgstr "Hvis afkrydset, vil markeringerne blive gemt i historikken. Denne opførsel kan gøre hele historikken ubrugelig. Det kan dog være interessant for dig, hvis du altid vil indsætte hele din markering."
+msgid ""
+"If checked, the selections will go into the history. This behavior can bring "
+"the history to be unreadable, however it can be interesting in case you "
+"always want to paste what you select."
+msgstr ""
+"Hvis afkrydset, vil markeringerne blive gemt i historikken. Denne opførsel "
+"kan gøre hele historikken ubrugelig. Det kan dog være interessant for dig, "
+"hvis du altid vil indsætte hele din markering."
 
 #: ../panel-plugin/settings-dialog.glade.h:15
 msgid "If checked, this option allows to store one image inside the history"
-msgstr "Hvis afkrydset, vil denne indstilling tillade dig at gemme et billede indeni historikken"
+msgstr ""
+"Hvis afkrydset, vil denne indstilling tillade dig at gemme et billede indeni "
+"historikken"
 
 #: ../panel-plugin/settings-dialog.glade.h:16
-msgid "If checked, this option will restore the history on every new Xfce session"
-msgstr "Hvis afkrydset, vil denne indstilling gendanne historikken ved enhver ny Xfce-session"
+msgid ""
+"If checked, this option will restore the history on every new Xfce session"
+msgstr ""
+"Hvis afkrydset, vil denne indstilling gendanne historikken ved enhver ny "
+"Xfce-session"
 
 #: ../panel-plugin/settings-dialog.glade.h:17
 msgid "Name:"
@@ -151,20 +169,36 @@
 msgstr "Gem et _billede"
 
 #: ../panel-plugin/settings-dialog.glade.h:22
-msgid "You can use the substitution parameters \"\\1\", \"\\2\" and so on in the commands. The parameter \"\\0\" represents the complete text. If you don't know regular expressions, have a look at the documentation of Clipman that has an introdution for them."
-msgstr "Du kan bruge udskriftningsparametrene \"\\1\", \"\\2\" og så videre i kommandoer. Parameteren \"\\0\" repræsenterer den fulde tekst. Hvis du ikke har kendskal til regulære udtryk, kan du gennemse dokumentation til Clipman for at få kendskab til dem."
+msgid ""
+"You can use the substitution parameters \"\\1\", \"\\2\" and so on in the "
+"commands. The parameter \"\\0\" represents the complete text. If you don't "
+"know regular expressions, have a look at the documentation of Clipman that "
+"has an introdution for them."
+msgstr ""
+"Du kan bruge udskriftningsparametrene \"\\1\", \"\\2\" og så videre i "
+"kommandoer. Parameteren \"\\0\" repræsenterer den fulde tekst. Hvis du ikke "
+"har kendskal til regulære udtryk, kan du gennemse dokumentation til Clipman "
+"for at få kendskab til dem."
 
 #. Ask the user
-#: ../panel-plugin/main.c:385
-#: ../panel-plugin/main.c:386
+#: ../panel-plugin/main.c:392 ../panel-plugin/main.c:393
 msgid "Autostart Clipman"
 msgstr "Autostart Clipman"
 
-#: ../panel-plugin/main.c:386
+#: ../panel-plugin/main.c:393
 msgid "Do you want to autostart the clipboard manager?"
 msgstr "Ønsker du at autostarte klippebordshåndteringen?"
 
-#: ../panel-plugin/main.c:787
+#: ../panel-plugin/main.c:636
+#, fuzzy
+msgid "Clipboard Manager for Xfce"
+msgstr "Klippebords-håndtering til Xfce-skrivebordsmiljø"
+
+#: ../panel-plugin/main.c:645
+msgid "translator-credits"
+msgstr ""
+
+#: ../panel-plugin/main.c:838
 msgid "There is already a clipboard manager running"
 msgstr "Der kører allerede en klippebordshåndtering"
 
@@ -194,30 +228,37 @@
 
 #~ msgid "Regex:"
 #~ msgstr "Reg. udtryk:"
+
 #~ msgid ""
 #~ "Enable the actions to match the clipboard texts against regular "
 #~ "expressions"
 #~ msgstr ""
 #~ "Slå handlingerne til for at overensstemme klippebordets tekster imod "
 #~ "regulære udtryk"
+
 #~ msgid "Edit Command"
 #~ msgstr "Redigér kommando"
+
 #~ msgid "Unable to open the following url: %s"
 #~ msgstr "Kan ikke åbne denne url: %s"
+
 #~ msgid "Save clipboard contents on _exit"
 #~ msgstr "Gem klippebordsindhold ved _afslutning"
+
 #~ msgid "_Show item numbers"
 #~ msgstr "_Vis elementnumre"
+
 #~ msgid "<b>General</b>"
 #~ msgstr "<b>Generel</b>"
+
 #~ msgid "Clipboard history items:"
 #~ msgstr "Klippebordshistorik:"
+
 #~ msgid "Menu item characters:"
 #~ msgstr "Menupunkts-tegn:"
+
 #~ msgid "Clear History"
 #~ msgstr "Slet historik"
+
 #~ msgid "Clipman History"
 #~ msgstr "Clipman-historik"
-#~ msgid "Clipboard manager for the Xfce desktop"
-#~ msgstr "Klippebords-håndtering til Xfce-skrivebordsmiljø"
-

Modified: xfce4-clipman-plugin/trunk/po/de.po
===================================================================
--- xfce4-clipman-plugin/trunk/po/de.po	2009-04-17 15:42:54 UTC (rev 7224)
+++ xfce4-clipman-plugin/trunk/po/de.po	2009-04-18 10:08:32 UTC (rev 7225)
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-clipman-plugin 0.8.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-04-16 11:32+0200\n"
+"POT-Creation-Date: 2009-04-18 12:03+0200\n"
 "PO-Revision-Date: 2009-04-14 21:45+0200\n"
 "Last-Translator: Fabian Nowak <timystery at arcor.de>\n"
 "Language-Team: German <xfce-i18n at xfce.org>\n"
@@ -27,8 +27,9 @@
 #: ../xfce4-clipman-plugin.desktop.in.h:2
 #: ../panel-plugin/xfce4-clipman-plugin.desktop.in.in.h:2
 #: ../panel-plugin/xfce4-clipman-plugin-autostart.desktop.in.h:2
-#: ../panel-plugin/main.c:191 ../panel-plugin/main.c:271
-#: ../panel-plugin/main.c:317 ../panel-plugin/main.c:418
+#: ../panel-plugin/main.c:198 ../panel-plugin/main.c:275
+#: ../panel-plugin/main.c:321 ../panel-plugin/main.c:425
+#: ../panel-plugin/main.c:634
 msgid "Clipman"
 msgstr "Zwischenablage"
 
@@ -180,15 +181,24 @@
 "Clipman nach, dort ist eine Einführung zu diesen vorhanden."
 
 #. Ask the user
-#: ../panel-plugin/main.c:385 ../panel-plugin/main.c:386
+#: ../panel-plugin/main.c:392 ../panel-plugin/main.c:393
 msgid "Autostart Clipman"
 msgstr ""
 
-#: ../panel-plugin/main.c:386
+#: ../panel-plugin/main.c:393
 msgid "Do you want to autostart the clipboard manager?"
 msgstr ""
 
-#: ../panel-plugin/main.c:787
+#: ../panel-plugin/main.c:636
+#, fuzzy
+msgid "Clipboard Manager for Xfce"
+msgstr "Zwischenablagenverwaltung für den Xfce-Desktop"
+
+#: ../panel-plugin/main.c:645
+msgid "translator-credits"
+msgstr ""
+
+#: ../panel-plugin/main.c:838
 msgid "There is already a clipboard manager running"
 msgstr "Es läuft bereits eine Zwischenablage"
 
@@ -240,9 +250,6 @@
 #~ msgid "Clipman History"
 #~ msgstr "Verlauf der Zwischenablage"
 
-#~ msgid "Clipboard manager for the Xfce desktop"
-#~ msgstr "Zwischenablagenverwaltung für den Xfce-Desktop"
-
 #~ msgid "Pre_vent empty clipboard"
 #~ msgstr "_Leere Zwischenablage vermeiden"
 

Modified: xfce4-clipman-plugin/trunk/po/el.po
===================================================================
--- xfce4-clipman-plugin/trunk/po/el.po	2009-04-17 15:42:54 UTC (rev 7224)
+++ xfce4-clipman-plugin/trunk/po/el.po	2009-04-18 10:08:32 UTC (rev 7225)
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: el\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-04-16 11:32+0200\n"
+"POT-Creation-Date: 2009-04-18 12:03+0200\n"
 "PO-Revision-Date: 2008-03-24 23:52+0200\n"
 "Last-Translator: Evaggelos Balaskas <ebalaskas at ebalaskas.gr>\n"
 "Language-Team: Greek <nls at tux.hellug.gr>\n"
@@ -26,8 +26,9 @@
 #: ../xfce4-clipman-plugin.desktop.in.h:2
 #: ../panel-plugin/xfce4-clipman-plugin.desktop.in.in.h:2
 #: ../panel-plugin/xfce4-clipman-plugin-autostart.desktop.in.h:2
-#: ../panel-plugin/main.c:191 ../panel-plugin/main.c:271
-#: ../panel-plugin/main.c:317 ../panel-plugin/main.c:418
+#: ../panel-plugin/main.c:198 ../panel-plugin/main.c:275
+#: ../panel-plugin/main.c:321 ../panel-plugin/main.c:425
+#: ../panel-plugin/main.c:634
 msgid "Clipman"
 msgstr "Clipman"
 
@@ -166,15 +167,24 @@
 msgstr ""
 
 #. Ask the user
-#: ../panel-plugin/main.c:385 ../panel-plugin/main.c:386
+#: ../panel-plugin/main.c:392 ../panel-plugin/main.c:393
 msgid "Autostart Clipman"
 msgstr ""
 
-#: ../panel-plugin/main.c:386
+#: ../panel-plugin/main.c:393
 msgid "Do you want to autostart the clipboard manager?"
 msgstr ""
 
-#: ../panel-plugin/main.c:787
+#: ../panel-plugin/main.c:636
+#, fuzzy
+msgid "Clipboard Manager for Xfce"
+msgstr "Διαχειριστής προχείρου για την οθόνη του xfce"
+
+#: ../panel-plugin/main.c:645
+msgid "translator-credits"
+msgstr ""
+
+#: ../panel-plugin/main.c:838
 msgid "There is already a clipboard manager running"
 msgstr ""
 
@@ -224,9 +234,6 @@
 #~ msgid "Clipman History"
 #~ msgstr "Ιστορικό clipman"
 
-#~ msgid "Clipboard manager for the Xfce desktop"
-#~ msgstr "Διαχειριστής προχείρου για την οθόνη του xfce"
-
 #~ msgid "Pre_vent empty clipboard"
 #~ msgstr "Απότρ_εψε κενό πρόχειρο"
 

Modified: xfce4-clipman-plugin/trunk/po/en_GB.po
===================================================================
--- xfce4-clipman-plugin/trunk/po/en_GB.po	2009-04-17 15:42:54 UTC (rev 7224)
+++ xfce4-clipman-plugin/trunk/po/en_GB.po	2009-04-18 10:08:32 UTC (rev 7225)
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-clipman-plugin 0.8.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-04-16 11:32+0200\n"
+"POT-Creation-Date: 2009-04-18 12:03+0200\n"
 "PO-Revision-Date: 2007-03-30 20:24+1000\n"
 "Last-Translator: Jeff Bailes <thepizzaking at gmail.com>\n"
 "Language-Team: British English <xfce-i18n at xfce.org>\n"
@@ -25,8 +25,9 @@
 #: ../xfce4-clipman-plugin.desktop.in.h:2
 #: ../panel-plugin/xfce4-clipman-plugin.desktop.in.in.h:2
 #: ../panel-plugin/xfce4-clipman-plugin-autostart.desktop.in.h:2
-#: ../panel-plugin/main.c:191 ../panel-plugin/main.c:271
-#: ../panel-plugin/main.c:317 ../panel-plugin/main.c:418
+#: ../panel-plugin/main.c:198 ../panel-plugin/main.c:275
+#: ../panel-plugin/main.c:321 ../panel-plugin/main.c:425
+#: ../panel-plugin/main.c:634
 msgid "Clipman"
 msgstr "Clipman"
 
@@ -165,15 +166,24 @@
 msgstr ""
 
 #. Ask the user
-#: ../panel-plugin/main.c:385 ../panel-plugin/main.c:386
+#: ../panel-plugin/main.c:392 ../panel-plugin/main.c:393
 msgid "Autostart Clipman"
 msgstr ""
 
-#: ../panel-plugin/main.c:386
+#: ../panel-plugin/main.c:393
 msgid "Do you want to autostart the clipboard manager?"
 msgstr ""
 
-#: ../panel-plugin/main.c:787
+#: ../panel-plugin/main.c:636
+#, fuzzy
+msgid "Clipboard Manager for Xfce"
+msgstr "Clipboard manager for the Xfce desktop"
+
+#: ../panel-plugin/main.c:645
+msgid "translator-credits"
+msgstr ""
+
+#: ../panel-plugin/main.c:838
 msgid "There is already a clipboard manager running"
 msgstr ""
 
@@ -223,9 +233,6 @@
 #~ msgid "Clipman History"
 #~ msgstr "Clipman History"
 
-#~ msgid "Clipboard manager for the Xfce desktop"
-#~ msgstr "Clipboard manager for the Xfce desktop"
-
 #~ msgid "Pre_vent empty clipboard"
 #~ msgstr "Pre_vent empty clipboard"
 

Modified: xfce4-clipman-plugin/trunk/po/es.po
===================================================================
--- xfce4-clipman-plugin/trunk/po/es.po	2009-04-17 15:42:54 UTC (rev 7224)
+++ xfce4-clipman-plugin/trunk/po/es.po	2009-04-18 10:08:32 UTC (rev 7225)
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-04-16 11:32+0200\n"
+"POT-Creation-Date: 2009-04-18 12:03+0200\n"
 "PO-Revision-Date: 2009-04-07 08:20+0100\n"
 "Last-Translator: Abel Martín <abel.martin.ruiz at gmail.com>\n"
 "Language-Team: \n"
@@ -28,8 +28,9 @@
 #: ../xfce4-clipman-plugin.desktop.in.h:2
 #: ../panel-plugin/xfce4-clipman-plugin.desktop.in.in.h:2
 #: ../panel-plugin/xfce4-clipman-plugin-autostart.desktop.in.h:2
-#: ../panel-plugin/main.c:191 ../panel-plugin/main.c:271
-#: ../panel-plugin/main.c:317 ../panel-plugin/main.c:418
+#: ../panel-plugin/main.c:198 ../panel-plugin/main.c:275
+#: ../panel-plugin/main.c:321 ../panel-plugin/main.c:425
+#: ../panel-plugin/main.c:634
 msgid "Clipman"
 msgstr "Clipman"
 
@@ -178,15 +179,24 @@
 "hay una introducción sobre las mismas."
 
 #. Ask the user
-#: ../panel-plugin/main.c:385 ../panel-plugin/main.c:386
+#: ../panel-plugin/main.c:392 ../panel-plugin/main.c:393
 msgid "Autostart Clipman"
 msgstr ""
 
-#: ../panel-plugin/main.c:386
+#: ../panel-plugin/main.c:393
 msgid "Do you want to autostart the clipboard manager?"
 msgstr ""
 
-#: ../panel-plugin/main.c:787
+#: ../panel-plugin/main.c:636
+#, fuzzy
+msgid "Clipboard Manager for Xfce"
+msgstr "Gestor de portapapeles para el escritorio Xfce"
+
+#: ../panel-plugin/main.c:645
+msgid "translator-credits"
+msgstr ""
+
+#: ../panel-plugin/main.c:838
 msgid "There is already a clipboard manager running"
 msgstr ""
 
@@ -238,9 +248,6 @@
 #~ msgid "Clipman History"
 #~ msgstr "Historial de Clipman"
 
-#~ msgid "Clipboard manager for the Xfce desktop"
-#~ msgstr "Gestor de portapapeles para el escritorio Xfce"
-
 #~ msgid "Pre_vent empty clipboard"
 #~ msgstr "E_vitar el borrado del portapapeles"
 

Modified: xfce4-clipman-plugin/trunk/po/eu.po
===================================================================
--- xfce4-clipman-plugin/trunk/po/eu.po	2009-04-17 15:42:54 UTC (rev 7224)
+++ xfce4-clipman-plugin/trunk/po/eu.po	2009-04-18 10:08:32 UTC (rev 7225)
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: eu\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-04-16 11:32+0200\n"
+"POT-Creation-Date: 2009-04-18 12:03+0200\n"
 "PO-Revision-Date: 2009-01-28 01:14+0100\n"
 "Last-Translator: Piarres Beobide <pi at beobide.net>\n"
 "Language-Team: Euskara <debian-l10n-basque at lists.debian.org>\n"
@@ -29,8 +29,9 @@
 #: ../xfce4-clipman-plugin.desktop.in.h:2
 #: ../panel-plugin/xfce4-clipman-plugin.desktop.in.in.h:2
 #: ../panel-plugin/xfce4-clipman-plugin-autostart.desktop.in.h:2
-#: ../panel-plugin/main.c:191 ../panel-plugin/main.c:271
-#: ../panel-plugin/main.c:317 ../panel-plugin/main.c:418
+#: ../panel-plugin/main.c:198 ../panel-plugin/main.c:275
+#: ../panel-plugin/main.c:321 ../panel-plugin/main.c:425
+#: ../panel-plugin/main.c:634
 msgid "Clipman"
 msgstr "Clipman"
 
@@ -169,15 +170,24 @@
 msgstr ""
 
 #. Ask the user
-#: ../panel-plugin/main.c:385 ../panel-plugin/main.c:386
+#: ../panel-plugin/main.c:392 ../panel-plugin/main.c:393
 msgid "Autostart Clipman"
 msgstr ""
 
-#: ../panel-plugin/main.c:386
+#: ../panel-plugin/main.c:393
 msgid "Do you want to autostart the clipboard manager?"
 msgstr ""
 
-#: ../panel-plugin/main.c:787
+#: ../panel-plugin/main.c:636
+#, fuzzy
+msgid "Clipboard Manager for Xfce"
+msgstr "Xfce idazmahaierako arbel kudeatzailea"
+
+#: ../panel-plugin/main.c:645
+msgid "translator-credits"
+msgstr ""
+
+#: ../panel-plugin/main.c:838
 msgid "There is already a clipboard manager running"
 msgstr ""
 
@@ -226,6 +236,3 @@
 
 #~ msgid "Clipman History"
 #~ msgstr "Clipman Historia"
-
-#~ msgid "Clipboard manager for the Xfce desktop"
-#~ msgstr "Xfce idazmahaierako arbel kudeatzailea"

Modified: xfce4-clipman-plugin/trunk/po/fr.po
===================================================================
--- xfce4-clipman-plugin/trunk/po/fr.po	2009-04-17 15:42:54 UTC (rev 7224)
+++ xfce4-clipman-plugin/trunk/po/fr.po	2009-04-18 10:08:32 UTC (rev 7225)
@@ -2,14 +2,15 @@
 # Copyright (C) 2005-2007 The Xfce development team.
 # This file is distributed under the same license as the xfce4-clipman-plugin package.
 # Maximilian Schleiss <maximilian at xfce.org>, 2006.
+# Mike Massonnet <mmassonnet at xfce.org>, 2009.
 #
 msgid ""
 msgstr ""
 "Project-Id-Version: xfce4-clipman-plugin 0.8.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-04-16 11:32+0200\n"
-"PO-Revision-Date: 2009-04-16 08:56+0200\n"
-"Last-Translator: Maximilian Schleiss <maximilian at xfce.org>\n"
+"POT-Creation-Date: 2009-04-18 12:03+0200\n"
+"PO-Revision-Date: 2009-04-18 12:05+0200\n"
+"Last-Translator: Mike Massonnet <mmassonnet at xfce.org>\n"
 "Language-Team: French <xfce-i18n at xfce.org>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
@@ -25,8 +26,9 @@
 #: ../xfce4-clipman-plugin.desktop.in.h:2
 #: ../panel-plugin/xfce4-clipman-plugin.desktop.in.in.h:2
 #: ../panel-plugin/xfce4-clipman-plugin-autostart.desktop.in.h:2
-#: ../panel-plugin/main.c:191 ../panel-plugin/main.c:271
-#: ../panel-plugin/main.c:317 ../panel-plugin/main.c:418
+#: ../panel-plugin/main.c:198 ../panel-plugin/main.c:275
+#: ../panel-plugin/main.c:321 ../panel-plugin/main.c:425
+#: ../panel-plugin/main.c:634
 msgid "Clipman"
 msgstr "Clipman"
 
@@ -177,16 +179,25 @@
 "documentation de Clipman qui possède une introduction pour elles."
 
 #. Ask the user
-#: ../panel-plugin/main.c:385 ../panel-plugin/main.c:386
+#: ../panel-plugin/main.c:392 ../panel-plugin/main.c:393
 msgid "Autostart Clipman"
 msgstr "Démarrage Automatique"
 
-#: ../panel-plugin/main.c:386
+#: ../panel-plugin/main.c:393
 msgid "Do you want to autostart the clipboard manager?"
 msgstr ""
 "Voulez vous démarrer le gestionnaire de presse-papier automatiquement ?"
 
-#: ../panel-plugin/main.c:787
+#: ../panel-plugin/main.c:636
+msgid "Clipboard Manager for Xfce"
+msgstr "Gestionnaire de presse-papier pour Xfce"
+
+#: ../panel-plugin/main.c:645
+msgid "translator-credits"
+msgstr ""
+"Mike Massonnet"
+
+#: ../panel-plugin/main.c:838
 msgid "There is already a clipboard manager running"
 msgstr "Un gestionnaire de presse papier est déjà en cours d'exécution"
 
@@ -197,6 +208,9 @@
 "\n"
 "%s"
 msgstr ""
+"Impossible d'exécuter la commande \"%s\"\n"
+"\n"
+"%s"
 
 #: ../panel-plugin/menu.c:123
 msgid "Are you sure you want to clear the history?"
@@ -237,6 +251,3 @@
 
 #~ msgid "Clipman History"
 #~ msgstr "Historique du presse-papiers"
-
-#~ msgid "Clipboard manager for the Xfce desktop"
-#~ msgstr "Gestionnaire de presse-papiers pour l'environnement de bureau Xfce"

Modified: xfce4-clipman-plugin/trunk/po/gl.po
===================================================================
--- xfce4-clipman-plugin/trunk/po/gl.po	2009-04-17 15:42:54 UTC (rev 7224)
+++ xfce4-clipman-plugin/trunk/po/gl.po	2009-04-18 10:08:32 UTC (rev 7225)
@@ -11,7 +11,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-04-16 11:32+0200\n"
+"POT-Creation-Date: 2009-04-18 12:03+0200\n"
 "PO-Revision-Date: 2009-04-15 11:04+0100\n"
 "Last-Translator: Leandro Regueiro <leandro.regueiro at gmail.com>\n"
 "Language-Team: Galician <proxecto at trasno.net>\n"
@@ -29,8 +29,9 @@
 #: ../xfce4-clipman-plugin.desktop.in.h:2
 #: ../panel-plugin/xfce4-clipman-plugin.desktop.in.in.h:2
 #: ../panel-plugin/xfce4-clipman-plugin-autostart.desktop.in.h:2
-#: ../panel-plugin/main.c:191 ../panel-plugin/main.c:271
-#: ../panel-plugin/main.c:317 ../panel-plugin/main.c:418
+#: ../panel-plugin/main.c:198 ../panel-plugin/main.c:275
+#: ../panel-plugin/main.c:321 ../panel-plugin/main.c:425
+#: ../panel-plugin/main.c:634
 msgid "Clipman"
 msgstr "Clipman"
 
@@ -180,15 +181,24 @@
 "ten unha breve introdución a elas."
 
 #. Ask the user
-#: ../panel-plugin/main.c:385 ../panel-plugin/main.c:386
+#: ../panel-plugin/main.c:392 ../panel-plugin/main.c:393
 msgid "Autostart Clipman"
 msgstr ""
 
-#: ../panel-plugin/main.c:386
+#: ../panel-plugin/main.c:393
 msgid "Do you want to autostart the clipboard manager?"
 msgstr ""
 
-#: ../panel-plugin/main.c:787
+#: ../panel-plugin/main.c:636
+#, fuzzy
+msgid "Clipboard Manager for Xfce"
+msgstr "Xestor de portarretallos para o escritorio Xfce"
+
+#: ../panel-plugin/main.c:645
+msgid "translator-credits"
+msgstr ""
+
+#: ../panel-plugin/main.c:838
 msgid "There is already a clipboard manager running"
 msgstr "Xa se está executando un xestor de portarretallos"
 
@@ -240,8 +250,5 @@
 #~ msgid "Clipman History"
 #~ msgstr "Historial de Clipman"
 
-#~ msgid "Clipboard manager for the Xfce desktop"
-#~ msgstr "Xestor de portarretallos para o escritorio Xfce"
-
 #~ msgid "Appearance"
 #~ msgstr "Aparencia"

Modified: xfce4-clipman-plugin/trunk/po/hu.po
===================================================================
--- xfce4-clipman-plugin/trunk/po/hu.po	2009-04-17 15:42:54 UTC (rev 7224)
+++ xfce4-clipman-plugin/trunk/po/hu.po	2009-04-18 10:08:32 UTC (rev 7225)
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-clipman-plugin 0.8.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-04-16 11:32+0200\n"
+"POT-Creation-Date: 2009-04-18 12:03+0200\n"
 "PO-Revision-Date: 2007-01-08 09:08+0100\n"
 "Last-Translator: SZERVÁC Attila <sas at 321.hu>\n"
 "Language-Team: Hungarian <xfce-i18n at xfce.org>\n"
@@ -27,8 +27,9 @@
 #: ../xfce4-clipman-plugin.desktop.in.h:2
 #: ../panel-plugin/xfce4-clipman-plugin.desktop.in.in.h:2
 #: ../panel-plugin/xfce4-clipman-plugin-autostart.desktop.in.h:2
-#: ../panel-plugin/main.c:191 ../panel-plugin/main.c:271
-#: ../panel-plugin/main.c:317 ../panel-plugin/main.c:418
+#: ../panel-plugin/main.c:198 ../panel-plugin/main.c:275
+#: ../panel-plugin/main.c:321 ../panel-plugin/main.c:425
+#: ../panel-plugin/main.c:634
 msgid "Clipman"
 msgstr "Clipman"
 
@@ -168,15 +169,24 @@
 msgstr ""
 
 #. Ask the user
-#: ../panel-plugin/main.c:385 ../panel-plugin/main.c:386
+#: ../panel-plugin/main.c:392 ../panel-plugin/main.c:393
 msgid "Autostart Clipman"
 msgstr ""
 
-#: ../panel-plugin/main.c:386
+#: ../panel-plugin/main.c:393
 msgid "Do you want to autostart the clipboard manager?"
 msgstr ""
 
-#: ../panel-plugin/main.c:787
+#: ../panel-plugin/main.c:636
+#, fuzzy
+msgid "Clipboard Manager for Xfce"
+msgstr "Egy Xfce vágólap kezelő"
+
+#: ../panel-plugin/main.c:645
+msgid "translator-credits"
+msgstr ""
+
+#: ../panel-plugin/main.c:838
 msgid "There is already a clipboard manager running"
 msgstr ""
 
@@ -226,9 +236,6 @@
 #~ msgid "Clipman History"
 #~ msgstr "Vágólap történet"
 
-#~ msgid "Clipboard manager for the Xfce desktop"
-#~ msgstr "Egy Xfce vágólap kezelő"
-
 #~ msgid "Pre_vent empty clipboard"
 #~ msgstr "Üres vágólap tiltása"
 

Modified: xfce4-clipman-plugin/trunk/po/id.po
===================================================================
--- xfce4-clipman-plugin/trunk/po/id.po	2009-04-17 15:42:54 UTC (rev 7224)
+++ xfce4-clipman-plugin/trunk/po/id.po	2009-04-18 10:08:32 UTC (rev 7225)
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-clipman-plugin 0.8.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-04-16 11:32+0200\n"
+"POT-Creation-Date: 2009-04-18 12:03+0200\n"
 "PO-Revision-Date: 2009-04-11 15:52-0400\n"
 "Last-Translator: Andhika Padmawan <andhika.padmawan at gmail.com>\n"
 "Language-Team: Indonesian <id at li.org>\n"
@@ -24,8 +24,9 @@
 #: ../xfce4-clipman-plugin.desktop.in.h:2
 #: ../panel-plugin/xfce4-clipman-plugin.desktop.in.in.h:2
 #: ../panel-plugin/xfce4-clipman-plugin-autostart.desktop.in.h:2
-#: ../panel-plugin/main.c:191 ../panel-plugin/main.c:271
-#: ../panel-plugin/main.c:317 ../panel-plugin/main.c:418
+#: ../panel-plugin/main.c:198 ../panel-plugin/main.c:275
+#: ../panel-plugin/main.c:321 ../panel-plugin/main.c:425
+#: ../panel-plugin/main.c:634
 msgid "Clipman"
 msgstr "Clipman"
 
@@ -174,15 +175,24 @@
 "pengenalan terhadap itu"
 
 #. Ask the user
-#: ../panel-plugin/main.c:385 ../panel-plugin/main.c:386
+#: ../panel-plugin/main.c:392 ../panel-plugin/main.c:393
 msgid "Autostart Clipman"
 msgstr ""
 
-#: ../panel-plugin/main.c:386
+#: ../panel-plugin/main.c:393
 msgid "Do you want to autostart the clipboard manager?"
 msgstr ""
 
-#: ../panel-plugin/main.c:787
+#: ../panel-plugin/main.c:636
+#, fuzzy
+msgid "Clipboard Manager for Xfce"
+msgstr "Manajer papan klip untuk destop Xfce"
+
+#: ../panel-plugin/main.c:645
+msgid "translator-credits"
+msgstr ""
+
+#: ../panel-plugin/main.c:838
 msgid "There is already a clipboard manager running"
 msgstr ""
 
@@ -234,9 +244,6 @@
 #~ msgid "Clipman History"
 #~ msgstr "Riwayat Clipman"
 
-#~ msgid "Clipboard manager for the Xfce desktop"
-#~ msgstr "Manajer papan klip untuk destop Xfce"
-
 #~ msgid "Pre_vent empty clipboard"
 #~ msgstr "Ce_gah papan klip kosong"
 

Modified: xfce4-clipman-plugin/trunk/po/it.po
===================================================================
--- xfce4-clipman-plugin/trunk/po/it.po	2009-04-17 15:42:54 UTC (rev 7224)
+++ xfce4-clipman-plugin/trunk/po/it.po	2009-04-18 10:08:32 UTC (rev 7225)
@@ -12,7 +12,7 @@
 msgstr ""
 "Project-Id-Version: CLIPMAN PLUGIN TRUNK\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-04-16 11:32+0200\n"
+"POT-Creation-Date: 2009-04-18 12:03+0200\n"
 "PO-Revision-Date: 2009-04-01 22:31+0200\n"
 "Last-Translator: Gianluca Foddis <gianluca.foddis at gmail.com>\n"
 "Language-Team: Italian\n"
@@ -29,8 +29,9 @@
 #: ../xfce4-clipman-plugin.desktop.in.h:2
 #: ../panel-plugin/xfce4-clipman-plugin.desktop.in.in.h:2
 #: ../panel-plugin/xfce4-clipman-plugin-autostart.desktop.in.h:2
-#: ../panel-plugin/main.c:191 ../panel-plugin/main.c:271
-#: ../panel-plugin/main.c:317 ../panel-plugin/main.c:418
+#: ../panel-plugin/main.c:198 ../panel-plugin/main.c:275
+#: ../panel-plugin/main.c:321 ../panel-plugin/main.c:425
+#: ../panel-plugin/main.c:634
 msgid "Clipman"
 msgstr "Clipman"
 
@@ -181,15 +182,24 @@
 "che ne contiene un'introduzione."
 
 #. Ask the user
-#: ../panel-plugin/main.c:385 ../panel-plugin/main.c:386
+#: ../panel-plugin/main.c:392 ../panel-plugin/main.c:393
 msgid "Autostart Clipman"
 msgstr ""
 
-#: ../panel-plugin/main.c:386
+#: ../panel-plugin/main.c:393
 msgid "Do you want to autostart the clipboard manager?"
 msgstr ""
 
-#: ../panel-plugin/main.c:787
+#: ../panel-plugin/main.c:636
+#, fuzzy
+msgid "Clipboard Manager for Xfce"
+msgstr "Gestore degli appunti"
+
+#: ../panel-plugin/main.c:645
+msgid "translator-credits"
+msgstr ""
+
+#: ../panel-plugin/main.c:838
 msgid "There is already a clipboard manager running"
 msgstr ""
 

Modified: xfce4-clipman-plugin/trunk/po/ja.po
===================================================================
--- xfce4-clipman-plugin/trunk/po/ja.po	2009-04-17 15:42:54 UTC (rev 7224)
+++ xfce4-clipman-plugin/trunk/po/ja.po	2009-04-18 10:08:32 UTC (rev 7225)
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-clipman-plugin 0.8.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-04-16 23:38+0900\n"
+"POT-Creation-Date: 2009-04-18 12:03+0200\n"
 "PO-Revision-Date: 2009-04-16 23:31+0900\n"
 "Last-Translator: Masato Hashimoto <cabezon.hashimoto at gmail.com>\n"
 "Language-Team: Japanese <xfce-i18n at xfce.org>\n"
@@ -26,8 +26,9 @@
 #: ../xfce4-clipman-plugin.desktop.in.h:2
 #: ../panel-plugin/xfce4-clipman-plugin.desktop.in.in.h:2
 #: ../panel-plugin/xfce4-clipman-plugin-autostart.desktop.in.h:2
-#: ../panel-plugin/main.c:191 ../panel-plugin/main.c:271
-#: ../panel-plugin/main.c:317 ../panel-plugin/main.c:418
+#: ../panel-plugin/main.c:198 ../panel-plugin/main.c:275
+#: ../panel-plugin/main.c:321 ../panel-plugin/main.c:425
+#: ../panel-plugin/main.c:634
 msgid "Clipman"
 msgstr "Clipman"
 
@@ -175,15 +176,24 @@
 "紹介している Clipman のドキュメントを参照してください。"
 
 #. Ask the user
-#: ../panel-plugin/main.c:385 ../panel-plugin/main.c:386
+#: ../panel-plugin/main.c:392 ../panel-plugin/main.c:393
 msgid "Autostart Clipman"
 msgstr "Clipman の自動起動"
 
-#: ../panel-plugin/main.c:386
+#: ../panel-plugin/main.c:393
 msgid "Do you want to autostart the clipboard manager?"
 msgstr "クリップボードマネージャを自動起動にしますか?"
 
-#: ../panel-plugin/main.c:787
+#: ../panel-plugin/main.c:636
+#, fuzzy
+msgid "Clipboard Manager for Xfce"
+msgstr "クリップボードマネージャ"
+
+#: ../panel-plugin/main.c:645
+msgid "translator-credits"
+msgstr ""
+
+#: ../panel-plugin/main.c:838
 msgid "There is already a clipboard manager running"
 msgstr "クリップボードマネージャはすでに動作しています"
 

Modified: xfce4-clipman-plugin/trunk/po/lv.po
===================================================================
--- xfce4-clipman-plugin/trunk/po/lv.po	2009-04-17 15:42:54 UTC (rev 7224)
+++ xfce4-clipman-plugin/trunk/po/lv.po	2009-04-18 10:08:32 UTC (rev 7225)
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-clipman-plugin 0.8.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-04-16 11:32+0200\n"
+"POT-Creation-Date: 2009-04-18 12:03+0200\n"
 "PO-Revision-Date: 2007-11-16 20:16+0300\n"
 "Last-Translator: Rihards Priedītis <rprieditis at inbox.lv>\n"
 "Language-Team: Latvian <rprieditis at inbox.lv>\n"
@@ -25,8 +25,9 @@
 #: ../xfce4-clipman-plugin.desktop.in.h:2
 #: ../panel-plugin/xfce4-clipman-plugin.desktop.in.in.h:2
 #: ../panel-plugin/xfce4-clipman-plugin-autostart.desktop.in.h:2
-#: ../panel-plugin/main.c:191 ../panel-plugin/main.c:271
-#: ../panel-plugin/main.c:317 ../panel-plugin/main.c:418
+#: ../panel-plugin/main.c:198 ../panel-plugin/main.c:275
+#: ../panel-plugin/main.c:321 ../panel-plugin/main.c:425
+#: ../panel-plugin/main.c:634
 msgid "Clipman"
 msgstr "Starpliktuve"
 
@@ -165,15 +166,24 @@
 msgstr ""
 
 #. Ask the user
-#: ../panel-plugin/main.c:385 ../panel-plugin/main.c:386
+#: ../panel-plugin/main.c:392 ../panel-plugin/main.c:393
 msgid "Autostart Clipman"
 msgstr ""
 
-#: ../panel-plugin/main.c:386
+#: ../panel-plugin/main.c:393
 msgid "Do you want to autostart the clipboard manager?"
 msgstr ""
 
-#: ../panel-plugin/main.c:787
+#: ../panel-plugin/main.c:636
+#, fuzzy
+msgid "Clipboard Manager for Xfce"
+msgstr "Starpliktuves pārvaldnieks Xfce videi"
+
+#: ../panel-plugin/main.c:645
+msgid "translator-credits"
+msgstr ""
+
+#: ../panel-plugin/main.c:838
 msgid "There is already a clipboard manager running"
 msgstr ""
 
@@ -223,9 +233,6 @@
 #~ msgid "Clipman History"
 #~ msgstr "Starpliktuves Vēsture"
 
-#~ msgid "Clipboard manager for the Xfce desktop"
-#~ msgstr "Starpliktuves pārvaldnieks Xfce videi"
-
 #~ msgid "Pre_vent empty clipboard"
 #~ msgstr "Novēr_st tukšu starpliktuvi"
 

Modified: xfce4-clipman-plugin/trunk/po/nb.po
===================================================================
--- xfce4-clipman-plugin/trunk/po/nb.po	2009-04-17 15:42:54 UTC (rev 7224)
+++ xfce4-clipman-plugin/trunk/po/nb.po	2009-04-18 10:08:32 UTC (rev 7225)
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-clipman-plugin 0.8.0svn-r2842\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-04-16 11:32+0200\n"
+"POT-Creation-Date: 2009-04-18 12:03+0200\n"
 "PO-Revision-Date: 2007-07-01 21:49+0200\n"
 "Last-Translator: Terje Uriansrud <ter at operamail.com>\n"
 "Language-Team: Norwegian Bokmal\n"
@@ -26,8 +26,9 @@
 #: ../xfce4-clipman-plugin.desktop.in.h:2
 #: ../panel-plugin/xfce4-clipman-plugin.desktop.in.in.h:2
 #: ../panel-plugin/xfce4-clipman-plugin-autostart.desktop.in.h:2
-#: ../panel-plugin/main.c:191 ../panel-plugin/main.c:271
-#: ../panel-plugin/main.c:317 ../panel-plugin/main.c:418
+#: ../panel-plugin/main.c:198 ../panel-plugin/main.c:275
+#: ../panel-plugin/main.c:321 ../panel-plugin/main.c:425
+#: ../panel-plugin/main.c:634
 msgid "Clipman"
 msgstr "Clipman"
 
@@ -166,15 +167,24 @@
 msgstr ""
 
 #. Ask the user
-#: ../panel-plugin/main.c:385 ../panel-plugin/main.c:386
+#: ../panel-plugin/main.c:392 ../panel-plugin/main.c:393
 msgid "Autostart Clipman"
 msgstr ""
 
-#: ../panel-plugin/main.c:386
+#: ../panel-plugin/main.c:393
 msgid "Do you want to autostart the clipboard manager?"
 msgstr ""
 
-#: ../panel-plugin/main.c:787
+#: ../panel-plugin/main.c:636
+#, fuzzy
+msgid "Clipboard Manager for Xfce"
+msgstr "Utklippstavlebehandler for Xfce skrivebordet"
+
+#: ../panel-plugin/main.c:645
+msgid "translator-credits"
+msgstr ""
+
+#: ../panel-plugin/main.c:838
 msgid "There is already a clipboard manager running"
 msgstr ""
 
@@ -224,9 +234,6 @@
 #~ msgid "Clipman History"
 #~ msgstr "Utklippstavle historikk"
 
-#~ msgid "Clipboard manager for the Xfce desktop"
-#~ msgstr "Utklippstavlebehandler for Xfce skrivebordet"
-
 #~ msgid "Pre_vent empty clipboard"
 #~ msgstr "_Unngå tom utklippstavle"
 

Modified: xfce4-clipman-plugin/trunk/po/nl.po
===================================================================
--- xfce4-clipman-plugin/trunk/po/nl.po	2009-04-17 15:42:54 UTC (rev 7224)
+++ xfce4-clipman-plugin/trunk/po/nl.po	2009-04-18 10:08:32 UTC (rev 7225)
@@ -2,7 +2,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-clipman-plugin\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-04-16 11:32+0200\n"
+"POT-Creation-Date: 2009-04-18 12:03+0200\n"
 "PO-Revision-Date: 2009-04-03 19:58+0100\n"
 "Last-Translator: Vincent Tunru <projects at vinnl.nl>\n"
 "Language-Team: \n"
@@ -19,8 +19,9 @@
 #: ../xfce4-clipman-plugin.desktop.in.h:2
 #: ../panel-plugin/xfce4-clipman-plugin.desktop.in.in.h:2
 #: ../panel-plugin/xfce4-clipman-plugin-autostart.desktop.in.h:2
-#: ../panel-plugin/main.c:191 ../panel-plugin/main.c:271
-#: ../panel-plugin/main.c:317 ../panel-plugin/main.c:418
+#: ../panel-plugin/main.c:198 ../panel-plugin/main.c:275
+#: ../panel-plugin/main.c:321 ../panel-plugin/main.c:425
+#: ../panel-plugin/main.c:634
 msgid "Clipman"
 msgstr "Clipman"
 
@@ -170,15 +171,24 @@
 "raadplegen, welke een introductie tot reguliere expressies bevat."
 
 #. Ask the user
-#: ../panel-plugin/main.c:385 ../panel-plugin/main.c:386
+#: ../panel-plugin/main.c:392 ../panel-plugin/main.c:393
 msgid "Autostart Clipman"
 msgstr ""
 
-#: ../panel-plugin/main.c:386
+#: ../panel-plugin/main.c:393
 msgid "Do you want to autostart the clipboard manager?"
 msgstr ""
 
-#: ../panel-plugin/main.c:787
+#: ../panel-plugin/main.c:636
+#, fuzzy
+msgid "Clipboard Manager for Xfce"
+msgstr "Klembordbeheer voor Xfce"
+
+#: ../panel-plugin/main.c:645
+msgid "translator-credits"
+msgstr ""
+
+#: ../panel-plugin/main.c:838
 msgid "There is already a clipboard manager running"
 msgstr ""
 
@@ -226,6 +236,3 @@
 
 #~ msgid "Clipman History"
 #~ msgstr "Geschiedenis klembord"
-
-#~ msgid "Clipboard manager for the Xfce desktop"
-#~ msgstr "Klembordbeheer voor Xfce"

Modified: xfce4-clipman-plugin/trunk/po/pl.po
===================================================================
--- xfce4-clipman-plugin/trunk/po/pl.po	2009-04-17 15:42:54 UTC (rev 7224)
+++ xfce4-clipman-plugin/trunk/po/pl.po	2009-04-18 10:08:32 UTC (rev 7225)
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-clipman-plugin 0.9.1\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-04-16 11:32+0200\n"
+"POT-Creation-Date: 2009-04-18 12:03+0200\n"
 "PO-Revision-Date: 2009-04-08 13:31+0100\n"
 "Last-Translator: Piotr Sokół <piotr.sokol at 10g.pl>\n"
 "Language-Team: Polish\n"
@@ -25,8 +25,9 @@
 #: ../xfce4-clipman-plugin.desktop.in.h:2
 #: ../panel-plugin/xfce4-clipman-plugin.desktop.in.in.h:2
 #: ../panel-plugin/xfce4-clipman-plugin-autostart.desktop.in.h:2
-#: ../panel-plugin/main.c:191 ../panel-plugin/main.c:271
-#: ../panel-plugin/main.c:317 ../panel-plugin/main.c:418
+#: ../panel-plugin/main.c:198 ../panel-plugin/main.c:275
+#: ../panel-plugin/main.c:321 ../panel-plugin/main.c:425
+#: ../panel-plugin/main.c:634
 msgid "Clipman"
 msgstr "Menedżer schowka"
 
@@ -164,15 +165,24 @@
 msgstr ""
 
 #. Ask the user
-#: ../panel-plugin/main.c:385 ../panel-plugin/main.c:386
+#: ../panel-plugin/main.c:392 ../panel-plugin/main.c:393
 msgid "Autostart Clipman"
 msgstr ""
 
-#: ../panel-plugin/main.c:386
+#: ../panel-plugin/main.c:393
 msgid "Do you want to autostart the clipboard manager?"
 msgstr ""
 
-#: ../panel-plugin/main.c:787
+#: ../panel-plugin/main.c:636
+#, fuzzy
+msgid "Clipboard Manager for Xfce"
+msgstr "Zarządza skopiowanymi elementami"
+
+#: ../panel-plugin/main.c:645
+msgid "translator-credits"
+msgstr ""
+
+#: ../panel-plugin/main.c:838
 msgid "There is already a clipboard manager running"
 msgstr ""
 
@@ -242,6 +252,3 @@
 
 #~ msgid "Clipman History"
 #~ msgstr "Historia schowka"
-
-#~ msgid "Clipboard manager for the Xfce desktop"
-#~ msgstr "Zarządza skopiowanymi elementami"

Modified: xfce4-clipman-plugin/trunk/po/pt.po
===================================================================
--- xfce4-clipman-plugin/trunk/po/pt.po	2009-04-17 15:42:54 UTC (rev 7224)
+++ xfce4-clipman-plugin/trunk/po/pt.po	2009-04-18 10:08:32 UTC (rev 7225)
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-clipman-plugin\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-04-16 11:32+0200\n"
+"POT-Creation-Date: 2009-04-18 12:03+0200\n"
 "PO-Revision-Date: 2009-04-01 18:29+0100\n"
 "Last-Translator: Nuno Miguel <nunis at netcabo.pt>\n"
 "Language-Team: \n"
@@ -24,8 +24,9 @@
 #: ../xfce4-clipman-plugin.desktop.in.h:2
 #: ../panel-plugin/xfce4-clipman-plugin.desktop.in.in.h:2
 #: ../panel-plugin/xfce4-clipman-plugin-autostart.desktop.in.h:2
-#: ../panel-plugin/main.c:191 ../panel-plugin/main.c:271
-#: ../panel-plugin/main.c:317 ../panel-plugin/main.c:418
+#: ../panel-plugin/main.c:198 ../panel-plugin/main.c:275
+#: ../panel-plugin/main.c:321 ../panel-plugin/main.c:425
+#: ../panel-plugin/main.c:634
 msgid "Clipman"
 msgstr "Clipman"
 
@@ -171,15 +172,24 @@
 "veja a documentação do Clipman que tem uma introdução para elas."
 
 #. Ask the user
-#: ../panel-plugin/main.c:385 ../panel-plugin/main.c:386
+#: ../panel-plugin/main.c:392 ../panel-plugin/main.c:393
 msgid "Autostart Clipman"
 msgstr ""
 
-#: ../panel-plugin/main.c:386
+#: ../panel-plugin/main.c:393
 msgid "Do you want to autostart the clipboard manager?"
 msgstr ""
 
-#: ../panel-plugin/main.c:787
+#: ../panel-plugin/main.c:636
+#, fuzzy
+msgid "Clipboard Manager for Xfce"
+msgstr "Gestor da área de transferência para o ambiente de trabalho Xfce"
+
+#: ../panel-plugin/main.c:645
+msgid "translator-credits"
+msgstr ""
+
+#: ../panel-plugin/main.c:838
 msgid "There is already a clipboard manager running"
 msgstr ""
 
@@ -234,9 +244,6 @@
 #~ msgid "Clipman History"
 #~ msgstr "Histórico do Clipman"
 
-#~ msgid "Clipboard manager for the Xfce desktop"
-#~ msgstr "Gestor da área de transferência para o ambiente de trabalho Xfce"
-
 #~ msgid "Pre_vent empty clipboard"
 #~ msgstr "E_vitar área de transferência vazia"
 

Modified: xfce4-clipman-plugin/trunk/po/pt_BR.po
===================================================================
--- xfce4-clipman-plugin/trunk/po/pt_BR.po	2009-04-17 15:42:54 UTC (rev 7224)
+++ xfce4-clipman-plugin/trunk/po/pt_BR.po	2009-04-18 10:08:32 UTC (rev 7225)
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-clipman-plugin 0.8.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-04-16 11:32+0200\n"
+"POT-Creation-Date: 2009-04-18 12:03+0200\n"
 "PO-Revision-Date: 2009-01-16 12:22-0500\n"
 "Last-Translator: Og Maciel <ogmaciel at gnome.org>\n"
 "Language-Team: Brazilian Portuguese <ldp-br at bazar2.conectiva.com.br>\n"
@@ -29,8 +29,9 @@
 #: ../xfce4-clipman-plugin.desktop.in.h:2
 #: ../panel-plugin/xfce4-clipman-plugin.desktop.in.in.h:2
 #: ../panel-plugin/xfce4-clipman-plugin-autostart.desktop.in.h:2
-#: ../panel-plugin/main.c:191 ../panel-plugin/main.c:271
-#: ../panel-plugin/main.c:317 ../panel-plugin/main.c:418
+#: ../panel-plugin/main.c:198 ../panel-plugin/main.c:275
+#: ../panel-plugin/main.c:321 ../panel-plugin/main.c:425
+#: ../panel-plugin/main.c:634
 msgid "Clipman"
 msgstr "Clipman"
 
@@ -172,15 +173,24 @@
 msgstr ""
 
 #. Ask the user
-#: ../panel-plugin/main.c:385 ../panel-plugin/main.c:386
+#: ../panel-plugin/main.c:392 ../panel-plugin/main.c:393
 msgid "Autostart Clipman"
 msgstr ""
 
-#: ../panel-plugin/main.c:386
+#: ../panel-plugin/main.c:393
 msgid "Do you want to autostart the clipboard manager?"
 msgstr ""
 
-#: ../panel-plugin/main.c:787
+#: ../panel-plugin/main.c:636
+#, fuzzy
+msgid "Clipboard Manager for Xfce"
+msgstr "Gerenciador da área de transferência para a área de trabalho do Xfce"
+
+#: ../panel-plugin/main.c:645
+msgid "translator-credits"
+msgstr ""
+
+#: ../panel-plugin/main.c:838
 msgid "There is already a clipboard manager running"
 msgstr ""
 
@@ -233,10 +243,6 @@
 #~ msgid "Clipman History"
 #~ msgstr "Histórico do Clipman"
 
-#~ msgid "Clipboard manager for the Xfce desktop"
-#~ msgstr ""
-#~ "Gerenciador da área de transferência para a área de trabalho do Xfce"
-
 #~ msgid "Pre_vent empty clipboard"
 #~ msgstr "E_vitar área de transferência vazia"
 

Modified: xfce4-clipman-plugin/trunk/po/ru.po
===================================================================
--- xfce4-clipman-plugin/trunk/po/ru.po	2009-04-17 15:42:54 UTC (rev 7224)
+++ xfce4-clipman-plugin/trunk/po/ru.po	2009-04-18 10:08:32 UTC (rev 7225)
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-clipman-plugin\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-04-16 11:32+0200\n"
+"POT-Creation-Date: 2009-04-18 12:03+0200\n"
 "PO-Revision-Date: 2009-02-20 12:48+0700\n"
 "Last-Translator: Pavel Labushev <p.labushev at gmail.com>\n"
 "Language-Team: Russian <xfce-i18n-ru at xfce.org>\n"
@@ -27,8 +27,9 @@
 #: ../xfce4-clipman-plugin.desktop.in.h:2
 #: ../panel-plugin/xfce4-clipman-plugin.desktop.in.in.h:2
 #: ../panel-plugin/xfce4-clipman-plugin-autostart.desktop.in.h:2
-#: ../panel-plugin/main.c:191 ../panel-plugin/main.c:271
-#: ../panel-plugin/main.c:317 ../panel-plugin/main.c:418
+#: ../panel-plugin/main.c:198 ../panel-plugin/main.c:275
+#: ../panel-plugin/main.c:321 ../panel-plugin/main.c:425
+#: ../panel-plugin/main.c:634
 msgid "Clipman"
 msgstr "Менеджер буфера обмена (Clipman)"
 
@@ -167,15 +168,24 @@
 msgstr ""
 
 #. Ask the user
-#: ../panel-plugin/main.c:385 ../panel-plugin/main.c:386
+#: ../panel-plugin/main.c:392 ../panel-plugin/main.c:393
 msgid "Autostart Clipman"
 msgstr ""
 
-#: ../panel-plugin/main.c:386
+#: ../panel-plugin/main.c:393
 msgid "Do you want to autostart the clipboard manager?"
 msgstr ""
 
-#: ../panel-plugin/main.c:787
+#: ../panel-plugin/main.c:636
+#, fuzzy
+msgid "Clipboard Manager for Xfce"
+msgstr "Менеджер буфера обмена для Xfce"
+
+#: ../panel-plugin/main.c:645
+msgid "translator-credits"
+msgstr ""
+
+#: ../panel-plugin/main.c:838
 msgid "There is already a clipboard manager running"
 msgstr ""
 
@@ -224,6 +234,3 @@
 
 #~ msgid "Clipman History"
 #~ msgstr "История буфера обмена"
-
-#~ msgid "Clipboard manager for the Xfce desktop"
-#~ msgstr "Менеджер буфера обмена для Xfce"

Modified: xfce4-clipman-plugin/trunk/po/sq.po
===================================================================
--- xfce4-clipman-plugin/trunk/po/sq.po	2009-04-17 15:42:54 UTC (rev 7224)
+++ xfce4-clipman-plugin/trunk/po/sq.po	2009-04-18 10:08:32 UTC (rev 7225)
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-clipman-plugin 0.8.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-04-16 11:32+0200\n"
+"POT-Creation-Date: 2009-04-18 12:03+0200\n"
 "PO-Revision-Date: 2007-12-20 00:27+0200\n"
 "Last-Translator: Besnik Bleta <besnik at programeshqip.org>\n"
 "Language-Team: Albanian <xfce-i18n at xfce.org>\n"
@@ -25,8 +25,9 @@
 #: ../xfce4-clipman-plugin.desktop.in.h:2
 #: ../panel-plugin/xfce4-clipman-plugin.desktop.in.in.h:2
 #: ../panel-plugin/xfce4-clipman-plugin-autostart.desktop.in.h:2
-#: ../panel-plugin/main.c:191 ../panel-plugin/main.c:271
-#: ../panel-plugin/main.c:317 ../panel-plugin/main.c:418
+#: ../panel-plugin/main.c:198 ../panel-plugin/main.c:275
+#: ../panel-plugin/main.c:321 ../panel-plugin/main.c:425
+#: ../panel-plugin/main.c:634
 #, fuzzy
 msgid "Clipman"
 msgstr "Clipman"
@@ -166,15 +167,24 @@
 msgstr ""
 
 #. Ask the user
-#: ../panel-plugin/main.c:385 ../panel-plugin/main.c:386
+#: ../panel-plugin/main.c:392 ../panel-plugin/main.c:393
 msgid "Autostart Clipman"
 msgstr ""
 
-#: ../panel-plugin/main.c:386
+#: ../panel-plugin/main.c:393
 msgid "Do you want to autostart the clipboard manager?"
 msgstr ""
 
-#: ../panel-plugin/main.c:787
+#: ../panel-plugin/main.c:636
+#, fuzzy
+msgid "Clipboard Manager for Xfce"
+msgstr "Përgjegjësin i Së Papastrës për Desktopin Xfce 4"
+
+#: ../panel-plugin/main.c:645
+msgid "translator-credits"
+msgstr ""
+
+#: ../panel-plugin/main.c:838
 msgid "There is already a clipboard manager running"
 msgstr ""
 
@@ -253,6 +263,3 @@
 
 #~ msgid "Clipman History"
 #~ msgstr "Historik"
-
-#~ msgid "Clipboard manager for the Xfce desktop"
-#~ msgstr "Përgjegjësin i Së Papastrës për Desktopin Xfce 4"

Modified: xfce4-clipman-plugin/trunk/po/sv.po
===================================================================
--- xfce4-clipman-plugin/trunk/po/sv.po	2009-04-17 15:42:54 UTC (rev 7224)
+++ xfce4-clipman-plugin/trunk/po/sv.po	2009-04-18 10:08:32 UTC (rev 7225)
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-clipman-plugin\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-04-16 11:32+0200\n"
+"POT-Creation-Date: 2009-04-18 12:03+0200\n"
 "PO-Revision-Date: 2009-02-01 18:56+0100\n"
 "Last-Translator: Daniel Nylander <po at danielnylander.se>\n"
 "Language-Team: Swedish <tp-sv at listor.tp-sv.se>\n"
@@ -25,8 +25,9 @@
 #: ../xfce4-clipman-plugin.desktop.in.h:2
 #: ../panel-plugin/xfce4-clipman-plugin.desktop.in.in.h:2
 #: ../panel-plugin/xfce4-clipman-plugin-autostart.desktop.in.h:2
-#: ../panel-plugin/main.c:191 ../panel-plugin/main.c:271
-#: ../panel-plugin/main.c:317 ../panel-plugin/main.c:418
+#: ../panel-plugin/main.c:198 ../panel-plugin/main.c:275
+#: ../panel-plugin/main.c:321 ../panel-plugin/main.c:425
+#: ../panel-plugin/main.c:634
 msgid "Clipman"
 msgstr "Clipman"
 
@@ -165,15 +166,24 @@
 msgstr ""
 
 #. Ask the user
-#: ../panel-plugin/main.c:385 ../panel-plugin/main.c:386
+#: ../panel-plugin/main.c:392 ../panel-plugin/main.c:393
 msgid "Autostart Clipman"
 msgstr ""
 
-#: ../panel-plugin/main.c:386
+#: ../panel-plugin/main.c:393
 msgid "Do you want to autostart the clipboard manager?"
 msgstr ""
 
-#: ../panel-plugin/main.c:787
+#: ../panel-plugin/main.c:636
+#, fuzzy
+msgid "Clipboard Manager for Xfce"
+msgstr "Urklippshanterare för Xfce-skrivbordet"
+
+#: ../panel-plugin/main.c:645
+msgid "translator-credits"
+msgstr ""
+
+#: ../panel-plugin/main.c:838
 msgid "There is already a clipboard manager running"
 msgstr ""
 
@@ -223,8 +233,5 @@
 #~ msgid "Clipman History"
 #~ msgstr "Historik för Clipman"
 
-#~ msgid "Clipboard manager for the Xfce desktop"
-#~ msgstr "Urklippshanterare för Xfce-skrivbordet"
-
 #~ msgid "Appearance"
 #~ msgstr "Utseende"

Modified: xfce4-clipman-plugin/trunk/po/tr.po
===================================================================
--- xfce4-clipman-plugin/trunk/po/tr.po	2009-04-17 15:42:54 UTC (rev 7224)
+++ xfce4-clipman-plugin/trunk/po/tr.po	2009-04-18 10:08:32 UTC (rev 7225)
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: 0.9.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-04-16 11:32+0200\n"
+"POT-Creation-Date: 2009-04-18 12:03+0200\n"
 "PO-Revision-Date: 2009-04-07 21:53+0200\n"
 "Last-Translator: Samed Beyribey <ras0ir at eventualis.org>\n"
 "Language-Team: Xfce-TR <xfce-tr at googlegroups.com>\n"
@@ -24,8 +24,9 @@
 #: ../xfce4-clipman-plugin.desktop.in.h:2
 #: ../panel-plugin/xfce4-clipman-plugin.desktop.in.in.h:2
 #: ../panel-plugin/xfce4-clipman-plugin-autostart.desktop.in.h:2
-#: ../panel-plugin/main.c:191 ../panel-plugin/main.c:271
-#: ../panel-plugin/main.c:317 ../panel-plugin/main.c:418
+#: ../panel-plugin/main.c:198 ../panel-plugin/main.c:275
+#: ../panel-plugin/main.c:321 ../panel-plugin/main.c:425
+#: ../panel-plugin/main.c:634
 msgid "Clipman"
 msgstr "Clipman"
 
@@ -175,15 +176,24 @@
 "inceleyebilirsiniz. "
 
 #. Ask the user
-#: ../panel-plugin/main.c:385 ../panel-plugin/main.c:386
+#: ../panel-plugin/main.c:392 ../panel-plugin/main.c:393
 msgid "Autostart Clipman"
 msgstr ""
 
-#: ../panel-plugin/main.c:386
+#: ../panel-plugin/main.c:393
 msgid "Do you want to autostart the clipboard manager?"
 msgstr ""
 
-#: ../panel-plugin/main.c:787
+#: ../panel-plugin/main.c:636
+#, fuzzy
+msgid "Clipboard Manager for Xfce"
+msgstr "Xfce için pano yöneticisi"
+
+#: ../panel-plugin/main.c:645
+msgid "translator-credits"
+msgstr ""
+
+#: ../panel-plugin/main.c:838
 msgid "There is already a clipboard manager running"
 msgstr ""
 
@@ -238,9 +248,6 @@
 #~ msgid "Clipman History"
 #~ msgstr "Clipman Geçmişi"
 
-#~ msgid "Clipboard manager for the Xfce desktop"
-#~ msgstr "Xfce için pano yöneticisi"
-
 #~ msgid "Pre_vent empty clipboard"
 #~ msgstr "Panonun boşalmasını engelle"
 

Modified: xfce4-clipman-plugin/trunk/po/uk.po
===================================================================
--- xfce4-clipman-plugin/trunk/po/uk.po	2009-04-17 15:42:54 UTC (rev 7224)
+++ xfce4-clipman-plugin/trunk/po/uk.po	2009-04-18 10:08:32 UTC (rev 7225)
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-clipman-plugin 0.8.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-04-16 11:32+0200\n"
+"POT-Creation-Date: 2009-04-18 12:03+0200\n"
 "PO-Revision-Date: 2009-01-26 11:52+0200\n"
 "Last-Translator: Dmitry Nikitin <luckas_fb at mail.ru>\n"
 "Language-Team: Ukrainian <xfce-i18n at xfce.org>\n"
@@ -28,8 +28,9 @@
 #: ../xfce4-clipman-plugin.desktop.in.h:2
 #: ../panel-plugin/xfce4-clipman-plugin.desktop.in.in.h:2
 #: ../panel-plugin/xfce4-clipman-plugin-autostart.desktop.in.h:2
-#: ../panel-plugin/main.c:191 ../panel-plugin/main.c:271
-#: ../panel-plugin/main.c:317 ../panel-plugin/main.c:418
+#: ../panel-plugin/main.c:198 ../panel-plugin/main.c:275
+#: ../panel-plugin/main.c:321 ../panel-plugin/main.c:425
+#: ../panel-plugin/main.c:634
 msgid "Clipman"
 msgstr "Керування буфером обміну"
 
@@ -168,15 +169,24 @@
 msgstr ""
 
 #. Ask the user
-#: ../panel-plugin/main.c:385 ../panel-plugin/main.c:386
+#: ../panel-plugin/main.c:392 ../panel-plugin/main.c:393
 msgid "Autostart Clipman"
 msgstr ""
 
-#: ../panel-plugin/main.c:386
+#: ../panel-plugin/main.c:393
 msgid "Do you want to autostart the clipboard manager?"
 msgstr ""
 
-#: ../panel-plugin/main.c:787
+#: ../panel-plugin/main.c:636
+#, fuzzy
+msgid "Clipboard Manager for Xfce"
+msgstr "Керування буфером обміну для Xfce"
+
+#: ../panel-plugin/main.c:645
+msgid "translator-credits"
+msgstr ""
+
+#: ../panel-plugin/main.c:838
 msgid "There is already a clipboard manager running"
 msgstr ""
 
@@ -225,6 +235,3 @@
 
 #~ msgid "Clipman History"
 #~ msgstr "Керування історією буферу обміну"
-
-#~ msgid "Clipboard manager for the Xfce desktop"
-#~ msgstr "Керування буфером обміну для Xfce"

Modified: xfce4-clipman-plugin/trunk/po/ur.po
===================================================================
--- xfce4-clipman-plugin/trunk/po/ur.po	2009-04-17 15:42:54 UTC (rev 7224)
+++ xfce4-clipman-plugin/trunk/po/ur.po	2009-04-18 10:08:32 UTC (rev 7225)
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-clipman-plugin\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-04-16 11:32+0200\n"
+"POT-Creation-Date: 2009-04-18 12:03+0200\n"
 "PO-Revision-Date: 2007-10-26 20:09+0500\n"
 "Last-Translator: Muhammad Ali Makki <makk.ma at gmail.com>\n"
 "Language-Team: Urdu <makki.ma at gmail.com>\n"
@@ -28,8 +28,9 @@
 #: ../xfce4-clipman-plugin.desktop.in.h:2
 #: ../panel-plugin/xfce4-clipman-plugin.desktop.in.in.h:2
 #: ../panel-plugin/xfce4-clipman-plugin-autostart.desktop.in.h:2
-#: ../panel-plugin/main.c:191 ../panel-plugin/main.c:271
-#: ../panel-plugin/main.c:317 ../panel-plugin/main.c:418
+#: ../panel-plugin/main.c:198 ../panel-plugin/main.c:275
+#: ../panel-plugin/main.c:321 ../panel-plugin/main.c:425
+#: ../panel-plugin/main.c:634
 msgid "Clipman"
 msgstr "Clipman"
 
@@ -168,15 +169,24 @@
 msgstr ""
 
 #. Ask the user
-#: ../panel-plugin/main.c:385 ../panel-plugin/main.c:386
+#: ../panel-plugin/main.c:392 ../panel-plugin/main.c:393
 msgid "Autostart Clipman"
 msgstr ""
 
-#: ../panel-plugin/main.c:386
+#: ../panel-plugin/main.c:393
 msgid "Do you want to autostart the clipboard manager?"
 msgstr ""
 
-#: ../panel-plugin/main.c:787
+#: ../panel-plugin/main.c:636
+#, fuzzy
+msgid "Clipboard Manager for Xfce"
+msgstr "ایکسفس ڈیسک ٹاپ کا کلپ بورڈ منیجر"
+
+#: ../panel-plugin/main.c:645
+msgid "translator-credits"
+msgstr ""
+
+#: ../panel-plugin/main.c:838
 msgid "There is already a clipboard manager running"
 msgstr ""
 
@@ -226,9 +236,6 @@
 #~ msgid "Clipman History"
 #~ msgstr "Clipman محفوظات"
 
-#~ msgid "Clipboard manager for the Xfce desktop"
-#~ msgstr "ایکسفس ڈیسک ٹاپ کا کلپ بورڈ منیجر"
-
 #~ msgid "Pre_vent empty clipboard"
 #~ msgstr "خالی کپ بورڈ _منع کریں"
 

Modified: xfce4-clipman-plugin/trunk/po/xfce4-clipman-plugin.pot
===================================================================
--- xfce4-clipman-plugin/trunk/po/xfce4-clipman-plugin.pot	2009-04-17 15:42:54 UTC (rev 7224)
+++ xfce4-clipman-plugin/trunk/po/xfce4-clipman-plugin.pot	2009-04-18 10:08:32 UTC (rev 7225)
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-04-16 11:32+0200\n"
+"POT-Creation-Date: 2009-04-18 12:03+0200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -25,8 +25,9 @@
 #: ../xfce4-clipman-plugin.desktop.in.h:2
 #: ../panel-plugin/xfce4-clipman-plugin.desktop.in.in.h:2
 #: ../panel-plugin/xfce4-clipman-plugin-autostart.desktop.in.h:2
-#: ../panel-plugin/main.c:191 ../panel-plugin/main.c:271
-#: ../panel-plugin/main.c:317 ../panel-plugin/main.c:418
+#: ../panel-plugin/main.c:198 ../panel-plugin/main.c:275
+#: ../panel-plugin/main.c:321 ../panel-plugin/main.c:425
+#: ../panel-plugin/main.c:634
 msgid "Clipman"
 msgstr ""
 
@@ -163,15 +164,23 @@
 msgstr ""
 
 #. Ask the user
-#: ../panel-plugin/main.c:385 ../panel-plugin/main.c:386
+#: ../panel-plugin/main.c:392 ../panel-plugin/main.c:393
 msgid "Autostart Clipman"
 msgstr ""
 
-#: ../panel-plugin/main.c:386
+#: ../panel-plugin/main.c:393
 msgid "Do you want to autostart the clipboard manager?"
 msgstr ""
 
-#: ../panel-plugin/main.c:787
+#: ../panel-plugin/main.c:636
+msgid "Clipboard Manager for Xfce"
+msgstr ""
+
+#: ../panel-plugin/main.c:645
+msgid "translator-credits"
+msgstr ""
+
+#: ../panel-plugin/main.c:838
 msgid "There is already a clipboard manager running"
 msgstr ""
 

Modified: xfce4-clipman-plugin/trunk/po/zh_CN.po
===================================================================
--- xfce4-clipman-plugin/trunk/po/zh_CN.po	2009-04-17 15:42:54 UTC (rev 7224)
+++ xfce4-clipman-plugin/trunk/po/zh_CN.po	2009-04-18 10:08:32 UTC (rev 7225)
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-clipman-plugin 0.8.1\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-04-16 11:32+0200\n"
+"POT-Creation-Date: 2009-04-18 12:03+0200\n"
 "PO-Revision-Date: 2009-04-01 18:18+0800\n"
 "Last-Translator: Hunt Xu <huntxu at live.cn>\n"
 "Language-Team: Chinese <xfce-i18n at xfce.org>\n"
@@ -26,8 +26,9 @@
 #: ../xfce4-clipman-plugin.desktop.in.h:2
 #: ../panel-plugin/xfce4-clipman-plugin.desktop.in.in.h:2
 #: ../panel-plugin/xfce4-clipman-plugin-autostart.desktop.in.h:2
-#: ../panel-plugin/main.c:191 ../panel-plugin/main.c:271
-#: ../panel-plugin/main.c:317 ../panel-plugin/main.c:418
+#: ../panel-plugin/main.c:198 ../panel-plugin/main.c:275
+#: ../panel-plugin/main.c:321 ../panel-plugin/main.c:425
+#: ../panel-plugin/main.c:634
 msgid "Clipman"
 msgstr "Clipman"
 
@@ -170,15 +171,24 @@
 "不熟悉正则表达式,请参看Clipman的文档中相关的介绍。"
 
 #. Ask the user
-#: ../panel-plugin/main.c:385 ../panel-plugin/main.c:386
+#: ../panel-plugin/main.c:392 ../panel-plugin/main.c:393
 msgid "Autostart Clipman"
 msgstr ""
 
-#: ../panel-plugin/main.c:386
+#: ../panel-plugin/main.c:393
 msgid "Do you want to autostart the clipboard manager?"
 msgstr ""
 
-#: ../panel-plugin/main.c:787
+#: ../panel-plugin/main.c:636
+#, fuzzy
+msgid "Clipboard Manager for Xfce"
+msgstr "Xfce 桌面环境的剪贴板管理程式"
+
+#: ../panel-plugin/main.c:645
+msgid "translator-credits"
+msgstr ""
+
+#: ../panel-plugin/main.c:838
 msgid "There is already a clipboard manager running"
 msgstr ""
 
@@ -230,9 +240,6 @@
 #~ msgid "Clipman History"
 #~ msgstr "Clipman 历史记录"
 
-#~ msgid "Clipboard manager for the Xfce desktop"
-#~ msgstr "Xfce 桌面环境的剪贴板管理程式"
-
 #~ msgid "Pre_vent empty clipboard"
 #~ msgstr "防止剪贴板空白(_v)"
 

Modified: xfce4-clipman-plugin/trunk/po/zh_TW.po
===================================================================
--- xfce4-clipman-plugin/trunk/po/zh_TW.po	2009-04-17 15:42:54 UTC (rev 7224)
+++ xfce4-clipman-plugin/trunk/po/zh_TW.po	2009-04-18 10:08:32 UTC (rev 7225)
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-clipman-plugin 0.8.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-04-16 11:32+0200\n"
+"POT-Creation-Date: 2009-04-18 12:03+0200\n"
 "PO-Revision-Date: 2006-09-06 21:25+0800\n"
 "Last-Translator: Hydonsingore Cia <hydonsingore at educities.edu.tw>\n"
 "Language-Team: Chinese (traditional) <xfce-i18n at xfce.org>\n"
@@ -26,8 +26,9 @@
 #: ../xfce4-clipman-plugin.desktop.in.h:2
 #: ../panel-plugin/xfce4-clipman-plugin.desktop.in.in.h:2
 #: ../panel-plugin/xfce4-clipman-plugin-autostart.desktop.in.h:2
-#: ../panel-plugin/main.c:191 ../panel-plugin/main.c:271
-#: ../panel-plugin/main.c:317 ../panel-plugin/main.c:418
+#: ../panel-plugin/main.c:198 ../panel-plugin/main.c:275
+#: ../panel-plugin/main.c:321 ../panel-plugin/main.c:425
+#: ../panel-plugin/main.c:634
 msgid "Clipman"
 msgstr "Clipman"
 
@@ -166,15 +167,24 @@
 msgstr ""
 
 #. Ask the user
-#: ../panel-plugin/main.c:385 ../panel-plugin/main.c:386
+#: ../panel-plugin/main.c:392 ../panel-plugin/main.c:393
 msgid "Autostart Clipman"
 msgstr ""
 
-#: ../panel-plugin/main.c:386
+#: ../panel-plugin/main.c:393
 msgid "Do you want to autostart the clipboard manager?"
 msgstr ""
 
-#: ../panel-plugin/main.c:787
+#: ../panel-plugin/main.c:636
+#, fuzzy
+msgid "Clipboard Manager for Xfce"
+msgstr "Xfce 桌面環境的剪貼簿管理程式"
+
+#: ../panel-plugin/main.c:645
+msgid "translator-credits"
+msgstr ""
+
+#: ../panel-plugin/main.c:838
 msgid "There is already a clipboard manager running"
 msgstr ""
 
@@ -221,9 +231,6 @@
 #~ msgid "Clipman History"
 #~ msgstr "Clipman 歷史字句"
 
-#~ msgid "Clipboard manager for the Xfce desktop"
-#~ msgstr "Xfce 桌面環境的剪貼簿管理程式"
-
 #~ msgid "Pre_vent empty clipboard"
 #~ msgstr "防止剪貼簿空白(_V)"
 




More information about the Goodies-commits mailing list