[Goodies-commits] r1867 - in verve-plugin/trunk: . panel-plugin po scripts

Jannis Pohlmann jannis at xfce.org
Wed Aug 9 00:26:44 CEST 2006


Author: jannis
Date: 2006-08-08 22:26:41 +0000 (Tue, 08 Aug 2006)
New Revision: 1867

Modified:
   verve-plugin/trunk/ChangeLog
   verve-plugin/trunk/panel-plugin/verve-history.c
   verve-plugin/trunk/panel-plugin/verve-history.h
   verve-plugin/trunk/panel-plugin/verve-plugin.c
   verve-plugin/trunk/po/ChangeLog
   verve-plugin/trunk/po/ca.po
   verve-plugin/trunk/po/de.po
   verve-plugin/trunk/po/el.po
   verve-plugin/trunk/po/eu.po
   verve-plugin/trunk/po/fr.po
   verve-plugin/trunk/po/it.po
   verve-plugin/trunk/po/ja.po
   verve-plugin/trunk/po/nl.po
   verve-plugin/trunk/po/pl.po
   verve-plugin/trunk/po/ru.po
   verve-plugin/trunk/po/verve-plugin.pot
   verve-plugin/trunk/po/vi.po
   verve-plugin/trunk/scripts/verve-focus.c
Log:
	* panel-plugin/verve-plugin.c, panel-plugin/verve-history.c:
	  Make number of history items configurable. 
	* verve-plugin.pot, *.po: New strings merged.
	* de.po: German translations updated.

Modified: verve-plugin/trunk/ChangeLog
===================================================================
--- verve-plugin/trunk/ChangeLog	2006-08-08 20:35:25 UTC (rev 1866)
+++ verve-plugin/trunk/ChangeLog	2006-08-08 22:26:41 UTC (rev 1867)
@@ -1,3 +1,8 @@
+2006-08-09	Jannis Pohlmann <jannis at xfce.org>
+
+	* panel-plugin/verve-plugin.c, panel-plugin/verve-history.c:
+	  Make number of history items configurable. 
+
 2006-08-08	Jannis Pohlmann <jannis at xfce.org>
 
 	* scripts/verve-focus.c: Check if objects are != NULL before

Modified: verve-plugin/trunk/panel-plugin/verve-history.c
===================================================================
--- verve-plugin/trunk/panel-plugin/verve-history.c	2006-08-08 20:35:25 UTC (rev 1866)
+++ verve-plugin/trunk/panel-plugin/verve-history.c	2006-08-08 22:26:41 UTC (rev 1867)
@@ -46,6 +46,7 @@
  *
  *********************************************************************/
 
+static gint   history_length = 25;
 static GList *history = NULL;
 
 
@@ -83,6 +84,14 @@
 
 
 void
+verve_history_set_length (gint length)
+{
+  history_length = length;
+}
+
+
+
+void
 verve_history_add (gchar *input)
 {
   /* Prepend input to history */
@@ -280,7 +289,7 @@
         current = verve_history_begin();
 
         /* Save the last 25 commands */
-        for (i = 0; i < 25 && current != NULL; i++)
+        for (i = 0; i < history_length && current != NULL; i++)
           {
             /* Build output line */
             gchar *line = g_strconcat ("", current->data, "\n", NULL);

Modified: verve-plugin/trunk/panel-plugin/verve-history.h
===================================================================
--- verve-plugin/trunk/panel-plugin/verve-history.h	2006-08-08 20:35:25 UTC (rev 1866)
+++ verve-plugin/trunk/panel-plugin/verve-history.h	2006-08-08 22:26:41 UTC (rev 1867)
@@ -31,7 +31,8 @@
 void         verve_history_init             (void);
 void         verve_history_shutdown         (void);
 
-void         verve_history_add              (gchar *input);
+void         verve_history_set_length       (gint         length);
+void         verve_history_add              (gchar       *input);
 GList       *verve_history_begin            (void);
 GList       *verve_history_end              (void);
 GList       *verve_history_get_prev         (const GList *current);

Modified: verve-plugin/trunk/panel-plugin/verve-plugin.c
===================================================================
--- verve-plugin/trunk/panel-plugin/verve-plugin.c	2006-08-08 20:35:25 UTC (rev 1866)
+++ verve-plugin/trunk/panel-plugin/verve-plugin.c	2006-08-08 22:26:41 UTC (rev 1867)
@@ -67,6 +67,7 @@
 
   /* Properties */ 
   gint              size;
+  gint              history_length;
 
 #ifdef HAVE_DBUS
   VerveDBusService *dbus_service;
@@ -509,6 +510,7 @@
   verve->completion = NULL;
   verve->n_complete = 0;
   verve->size = 20;
+  verve->history_length = 25;
 
   /* Connect to load-binaries signal of environment */
   g_signal_connect (G_OBJECT (verve_env_get()), "load-binaries", G_CALLBACK (verve_plugin_load_completion), verve);
@@ -600,6 +602,24 @@
 
 
 
+static gboolean
+verve_plugin_update_history_length (XfcePanelPlugin *plugin,
+                                    gint             history_length,
+                                    VervePlugin     *verve)
+{
+  g_return_val_if_fail (verve != NULL, FALSE);
+
+  /* Set internal history length variable */
+  verve->history_length = history_length;
+
+  /* Apply length to history */
+  verve_history_set_length (history_length);
+
+  return TRUE;
+}
+
+
+
 static void
 verve_plugin_read_rc_file (XfcePanelPlugin *plugin, 
                            VervePlugin *verve)
@@ -610,6 +630,9 @@
   /* Default size */
   gint    size = 20;
 
+  /* Default number of saved history entries */
+  gint    history_length = 25;
+
   g_return_if_fail (plugin != NULL);
   g_return_if_fail (verve != NULL);
 
@@ -628,9 +651,15 @@
     {
       /* Read size value */
       size = xfce_rc_read_int_entry (rc, "size", size);
+
+      /* Read number of saved history entries */
+      history_length = xfce_rc_read_int_entry (rc, "history-length", history_length);
     
       /* Update plugin size */
       verve_plugin_update_size (NULL, size, verve);
+
+      /* Update history length */
+      verve_plugin_update_history_length (NULL, history_length, verve);
       
       /* Close handle */
       xfce_rc_close (rc);
@@ -666,6 +695,9 @@
     {
       /* Write size value */
       xfce_rc_write_int_entry (rc, "size", verve->size);
+
+      /* Write number of saved history entries */
+      xfce_rc_write_int_entry (rc, "history-length", verve->history_length);
     
       /* Close handle */
       xfce_rc_close (rc);
@@ -690,6 +722,18 @@
 
 
 static void
+verve_plugin_history_length_changed (GtkSpinButton *spin,
+                                     VervePlugin   *verve)
+{
+  g_return_if_fail (verve != NULL);
+
+  /* Update history length */
+  verve_plugin_update_history_length (NULL, gtk_spin_button_get_value_as_int (spin), verve);
+}
+
+
+
+static void
 verve_plugin_response (GtkWidget *dialog, 
                        int response, 
                        VervePlugin *verve)
@@ -719,10 +763,13 @@
   GtkWidget *dialog;
   GtkWidget *header;
   GtkWidget *frame;
-  GtkWidget *bin;
+  GtkWidget *bin1;
+  GtkWidget *bin2;
   GtkWidget *hbox;
   GtkWidget *size_label;
   GtkWidget *size_spin;
+  GtkWidget *history_length_label;
+  GtkWidget *history_length_spin;
   GtkObject *adjustment;
 
   g_return_if_fail (plugin != NULL);
@@ -732,7 +779,7 @@
   xfce_panel_plugin_block_menu (plugin);
 
   /* Create properties dialog */
-  dialog = xfce_titled_dialog_new_with_buttons (_("Verve Properties"),
+  dialog = xfce_titled_dialog_new_with_buttons (_("Verve"),
                                                 GTK_WINDOW (gtk_widget_get_toplevel (GTK_WIDGET (plugin))),
                                                 GTK_DIALOG_DESTROY_WITH_PARENT | GTK_DIALOG_NO_SEPARATOR,
                                                 GTK_STOCK_CLOSE, GTK_RESPONSE_OK,
@@ -750,19 +797,19 @@
   gtk_container_set_border_width (GTK_CONTAINER (dialog), 2);
 
   /* Frame for appearance settings */
-  frame = xfce_create_framebox (_("Appearance"), &bin);
+  frame = xfce_create_framebox (_("Appearance"), &bin1);
   gtk_container_set_border_width (GTK_CONTAINER (frame), 6);
-  gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dialog)->vbox), frame, FALSE, FALSE, 0);
+  gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dialog)->vbox), frame, TRUE, TRUE, 0);
   gtk_widget_show (frame);
 
   /* Plugin size container */
   hbox = gtk_hbox_new (FALSE, 8);
-  gtk_container_add (GTK_CONTAINER (bin), hbox);
+  gtk_container_add (GTK_CONTAINER (bin1), hbox);
   gtk_widget_show (hbox);
 
   /* Plugin size label */
   size_label = gtk_label_new (_("Width (in chars):"));
-  gtk_box_pack_start (GTK_BOX (hbox), size_label, FALSE, FALSE, 0);
+  gtk_box_pack_start (GTK_BOX (hbox), size_label, FALSE, TRUE, 0);
   gtk_widget_show (size_label);
 
   /* Plugin size adjustment */
@@ -771,7 +818,7 @@
   /* Plugin size spin button */
   size_spin = gtk_spin_button_new (GTK_ADJUSTMENT (adjustment), 1, 0);
   gtk_widget_add_mnemonic_label (size_spin, size_label);
-  gtk_box_pack_start (GTK_BOX (hbox), size_spin, TRUE, TRUE, 0);
+  gtk_box_pack_start (GTK_BOX (hbox), size_spin, FALSE, TRUE, 0);
   gtk_widget_show (size_spin);
 
   /* Assign current size to spin button */
@@ -780,6 +827,37 @@
   /* Be notified when the user requests a different plugin size */
   g_signal_connect (size_spin, "value-changed", G_CALLBACK (verve_plugin_size_changed), verve);
 
+  /* Frame for behaviour settings */
+  frame = xfce_create_framebox (_("Behaviour"), &bin2);
+  gtk_container_set_border_width (GTK_CONTAINER (frame), 6);
+  gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dialog)->vbox), frame, TRUE, TRUE, 0);
+  gtk_widget_show (frame);
+
+  /* Plugin history length container */
+  hbox = gtk_hbox_new (FALSE, 8);
+  gtk_container_add (GTK_CONTAINER (bin2), hbox);
+  gtk_widget_show (hbox);
+
+  /* History length label */
+  history_length_label = gtk_label_new (_("Number of saved history items:"));
+  gtk_box_pack_start (GTK_BOX (hbox), history_length_label, FALSE, TRUE, 0);
+  gtk_widget_show (history_length_label);
+
+  /* History length adjustment */
+  adjustment = gtk_adjustment_new (verve->history_length, 0, 1000, 1, 5, 10);
+
+  /* History length spin button */
+  history_length_spin = gtk_spin_button_new (GTK_ADJUSTMENT (adjustment), 1, 0);
+  gtk_widget_add_mnemonic_label (history_length_spin, history_length_label);
+  gtk_box_pack_start (GTK_BOX (hbox), history_length_spin, FALSE, TRUE, 0);
+  gtk_widget_show (history_length_spin);
+
+  /* Assign current length to the spin button */
+  gtk_spin_button_set_value (GTK_SPIN_BUTTON (history_length_spin), verve->history_length);
+
+  /* Be notified when the user requests a different history length */
+  g_signal_connect (history_length_spin, "value-changed", G_CALLBACK (verve_plugin_history_length_changed), verve);
+
   /* Show properties dialog */
   gtk_widget_show (dialog);
 }

Modified: verve-plugin/trunk/po/ChangeLog
===================================================================
--- verve-plugin/trunk/po/ChangeLog	2006-08-08 20:35:25 UTC (rev 1866)
+++ verve-plugin/trunk/po/ChangeLog	2006-08-08 22:26:41 UTC (rev 1867)
@@ -1,3 +1,8 @@
+2006-08-09	Jannis Pohlmann <jannis at xfce.org>
+
+	* verve-plugin.pot, *.po: New strings merged.
+	* de.po: German translations updated.
+
 2006-08-04	Stavros Giannouris <stavrosg2002 at freemail.gr>
 
 	* el.po: Updated Greek translation.

Modified: verve-plugin/trunk/po/ca.po
===================================================================
--- verve-plugin/trunk/po/ca.po	2006-08-08 20:35:25 UTC (rev 1866)
+++ verve-plugin/trunk/po/ca.po	2006-08-08 22:26:41 UTC (rev 1867)
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: verve-plugin 0.3.4\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-08-01 15:43+0200\n"
+"POT-Creation-Date: 2006-08-09 00:20+0200\n"
 "PO-Revision-Date: 2006-04-17 19:32+0100\n"
 "Last-Translator: Carles Muñoz Gorriz <carlesmu at internautas.org>\n"
 "Language-Team: catalan\n"
@@ -18,26 +18,36 @@
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
 #. Generate error message
-#: ../panel-plugin/verve-plugin.c:399
+#: ../panel-plugin/verve-plugin.c:407
 msgid "Could not execute command:"
 msgstr "No es pot executar l'ordre:"
 
 #. Create properties dialog
-#: ../panel-plugin/verve-plugin.c:728
+#: ../panel-plugin/verve-plugin.c:782
 #, fuzzy
-msgid "Verve Properties"
-msgstr "Propietats de «Verve»"
+msgid "Verve"
+msgstr "Verve"
 
 #. Frame for appearance settings
-#: ../panel-plugin/verve-plugin.c:746
+#: ../panel-plugin/verve-plugin.c:800
 msgid "Appearance"
 msgstr "Aparença"
 
 #. Plugin size label
-#: ../panel-plugin/verve-plugin.c:757
+#: ../panel-plugin/verve-plugin.c:811
 msgid "Width (in chars):"
 msgstr "Amplada en caràcters:"
 
+#. Frame for behaviour settings
+#: ../panel-plugin/verve-plugin.c:831
+msgid "Behaviour"
+msgstr ""
+
+#. History length label
+#: ../panel-plugin/verve-plugin.c:842
+msgid "Number of saved history items:"
+msgstr ""
+
 # auto-completion = emplenament automàtic ?
 #. vim:set expandtab sts=2 ts=2 sw=2:
 #: ../panel-plugin/verve.desktop.in.in.h:1
@@ -58,10 +68,12 @@
 msgstr ""
 
 #. Print error message
-#: ../scripts/verve-focus.c:83
-msgid "Failed to deliver the org.xfce.Verve#GrabFocus method."
+#: ../scripts/verve-focus.c:84
+msgid ""
+"There seems to be no Verve D-BUS provider (e.g. the Verve panel plugin) "
+"running."
 msgstr ""
 
 #, fuzzy
-#~ msgid "Verve"
-#~ msgstr "Verve"
+#~ msgid "Verve Properties"
+#~ msgstr "Propietats de «Verve»"

Modified: verve-plugin/trunk/po/de.po
===================================================================
--- verve-plugin/trunk/po/de.po	2006-08-08 20:35:25 UTC (rev 1866)
+++ verve-plugin/trunk/po/de.po	2006-08-08 22:26:41 UTC (rev 1867)
@@ -7,8 +7,8 @@
 msgstr ""
 "Project-Id-Version: verve-plugin 0.3.4\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-08-01 15:43+0200\n"
-"PO-Revision-Date: 2006-02-07 17:07+0100\n"
+"POT-Creation-Date: 2006-08-09 00:20+0200\n"
+"PO-Revision-Date: 2006-08-09 00:21+0100\n"
 "Last-Translator: Jannis Pohlmann <jannis at xfce.org>\n"
 "Language-Team: German <jannis at xfce.org>\n"
 "MIME-Version: 1.0\n"
@@ -16,25 +16,35 @@
 "Content-Transfer-Encoding: 8bit\n"
 
 #. Generate error message
-#: ../panel-plugin/verve-plugin.c:399
+#: ../panel-plugin/verve-plugin.c:407
 msgid "Could not execute command:"
 msgstr "Konnte den Befehl nicht ausführen:"
 
 #. Create properties dialog
-#: ../panel-plugin/verve-plugin.c:728
-msgid "Verve Properties"
-msgstr "Verve-Konfiguration"
+#: ../panel-plugin/verve-plugin.c:782
+msgid "Verve"
+msgstr "Verve"
 
 #. Frame for appearance settings
-#: ../panel-plugin/verve-plugin.c:746
+#: ../panel-plugin/verve-plugin.c:800
 msgid "Appearance"
 msgstr "Erscheinungsbild"
 
 #. Plugin size label
-#: ../panel-plugin/verve-plugin.c:757
+#: ../panel-plugin/verve-plugin.c:811
 msgid "Width (in chars):"
 msgstr "Breite (in Zeichen):"
 
+#. Frame for behaviour settings
+#: ../panel-plugin/verve-plugin.c:831
+msgid "Behaviour"
+msgstr "Verhalten"
+
+#. History length label
+#: ../panel-plugin/verve-plugin.c:842
+msgid "Number of saved history items:"
+msgstr "Gespeicherte Einträge im Verlauf:"
+
 #. vim:set expandtab sts=2 ts=2 sw=2:
 #: ../panel-plugin/verve.desktop.in.in.h:1
 msgid "Command line interface with auto-completion and command history"
@@ -50,6 +60,9 @@
 msgstr "Verbindung zu D-BUS konnte nicht hergestellt werden."
 
 #. Print error message
-#: ../scripts/verve-focus.c:83
-msgid "Failed to deliver the org.xfce.Verve#GrabFocus method."
-msgstr "Methodenaufruf org.xfce.Verve#GrabFocus konnte nicht gesendet werden"
+#: ../scripts/verve-focus.c:84
+msgid ""
+"There seems to be no Verve D-BUS provider (e.g. the Verve panel plugin) "
+"running."
+msgstr ""
+"Es scheint kein Verve D-BUS-Service (z.B. das Verve-Panel-Plugin) zu laufen."

Modified: verve-plugin/trunk/po/el.po
===================================================================
--- verve-plugin/trunk/po/el.po	2006-08-08 20:35:25 UTC (rev 1866)
+++ verve-plugin/trunk/po/el.po	2006-08-08 22:26:41 UTC (rev 1867)
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: verve-plugin 0.3.4\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-08-01 15:43+0200\n"
+"POT-Creation-Date: 2006-08-09 00:20+0200\n"
 "PO-Revision-Date: 2006-08-04 22:09+0200\n"
 "Last-Translator: Stavros Giannouris <stavrosg2002 at freemail.gr>\n"
 "Language-Team: Greek <nls at tux.hellug.gr>\n"
@@ -17,25 +17,35 @@
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. Generate error message
-#: ../panel-plugin/verve-plugin.c:399
+#: ../panel-plugin/verve-plugin.c:407
 msgid "Could not execute command:"
 msgstr "Αδυναμία εκτέλεσης της εντολής:"
 
 #. Create properties dialog
-#: ../panel-plugin/verve-plugin.c:728
-msgid "Verve Properties"
-msgstr "Ιδιότητες Verve"
+#: ../panel-plugin/verve-plugin.c:782
+msgid "Verve"
+msgstr "Verve"
 
 #. Frame for appearance settings
-#: ../panel-plugin/verve-plugin.c:746
+#: ../panel-plugin/verve-plugin.c:800
 msgid "Appearance"
 msgstr "Εμφάνιση"
 
 #. Plugin size label
-#: ../panel-plugin/verve-plugin.c:757
+#: ../panel-plugin/verve-plugin.c:811
 msgid "Width (in chars):"
 msgstr "Πλάτος (χαρακτήρες):"
 
+#. Frame for behaviour settings
+#: ../panel-plugin/verve-plugin.c:831
+msgid "Behaviour"
+msgstr ""
+
+#. History length label
+#: ../panel-plugin/verve-plugin.c:842
+msgid "Number of saved history items:"
+msgstr ""
+
 #. vim:set expandtab sts=2 ts=2 sw=2:
 #: ../panel-plugin/verve.desktop.in.in.h:1
 msgid "Command line interface with auto-completion and command history"
@@ -51,10 +61,14 @@
 msgstr "Η σύνδεση με το δίαυλο μηνυμάτων D-BUS απέτυχε."
 
 #. Print error message
-#: ../scripts/verve-focus.c:83
-msgid "Failed to deliver the org.xfce.Verve#GrabFocus method."
-msgstr "Η παροχή της μεθόδου org.xfce.Verve#GrabFocus απέτυχε."
+#: ../scripts/verve-focus.c:84
+msgid ""
+"There seems to be no Verve D-BUS provider (e.g. the Verve panel plugin) "
+"running."
+msgstr ""
 
-#~ msgid "Verve"
-#~ msgstr "Verve"
+#~ msgid "Verve Properties"
+#~ msgstr "Ιδιότητες Verve"
 
+#~ msgid "Failed to deliver the org.xfce.Verve#GrabFocus method."
+#~ msgstr "Η παροχή της μεθόδου org.xfce.Verve#GrabFocus απέτυχε."

Modified: verve-plugin/trunk/po/eu.po
===================================================================
--- verve-plugin/trunk/po/eu.po	2006-08-08 20:35:25 UTC (rev 1866)
+++ verve-plugin/trunk/po/eu.po	2006-08-08 22:26:41 UTC (rev 1867)
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: verve-plugin 0.3.4\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-08-01 15:43+0200\n"
+"POT-Creation-Date: 2006-08-09 00:20+0200\n"
 "PO-Revision-Date: 2006-02-14 10:45+0100\n"
 "Last-Translator: Piarres Beobide <pi at beobide.net>\n"
 "Language-Team: Librezale <librezale at librezale.org>\n"
@@ -17,25 +17,35 @@
 "X-Generator: Pootle 0.6.3.20060126\n"
 
 #. Generate error message
-#: ../panel-plugin/verve-plugin.c:399
+#: ../panel-plugin/verve-plugin.c:407
 msgid "Could not execute command:"
 msgstr "Ezin da komandoa exekutatu:"
 
 #. Create properties dialog
-#: ../panel-plugin/verve-plugin.c:728
-msgid "Verve Properties"
-msgstr "Verve Propietateak"
+#: ../panel-plugin/verve-plugin.c:782
+msgid "Verve"
+msgstr "Verve"
 
 #. Frame for appearance settings
-#: ../panel-plugin/verve-plugin.c:746
+#: ../panel-plugin/verve-plugin.c:800
 msgid "Appearance"
 msgstr "Itxura"
 
 #. Plugin size label
-#: ../panel-plugin/verve-plugin.c:757
+#: ../panel-plugin/verve-plugin.c:811
 msgid "Width (in chars):"
 msgstr "Zabalera (karaktere):"
 
+#. Frame for behaviour settings
+#: ../panel-plugin/verve-plugin.c:831
+msgid "Behaviour"
+msgstr ""
+
+#. History length label
+#: ../panel-plugin/verve-plugin.c:842
+msgid "Number of saved history items:"
+msgstr ""
+
 #. vim:set expandtab sts=2 ts=2 sw=2:
 #: ../panel-plugin/verve.desktop.in.in.h:1
 msgid "Command line interface with auto-completion and command history"
@@ -51,9 +61,14 @@
 msgstr "Huts D-BUS saio bus-arekin konektatzerakoan."
 
 #. Print error message
-#: ../scripts/verve-focus.c:83
-msgid "Failed to deliver the org.xfce.Verve#GrabFocus method."
-msgstr "Huts org.xfce.Verve#GrabFocus metodoa erabiltzean."
+#: ../scripts/verve-focus.c:84
+msgid ""
+"There seems to be no Verve D-BUS provider (e.g. the Verve panel plugin) "
+"running."
+msgstr ""
 
-#~ msgid "Verve"
-#~ msgstr "Verve"
+#~ msgid "Verve Properties"
+#~ msgstr "Verve Propietateak"
+
+#~ msgid "Failed to deliver the org.xfce.Verve#GrabFocus method."
+#~ msgstr "Huts org.xfce.Verve#GrabFocus metodoa erabiltzean."

Modified: verve-plugin/trunk/po/fr.po
===================================================================
--- verve-plugin/trunk/po/fr.po	2006-08-08 20:35:25 UTC (rev 1866)
+++ verve-plugin/trunk/po/fr.po	2006-08-08 22:26:41 UTC (rev 1867)
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: verve-plugin 0.3.4\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-08-01 15:43+0200\n"
+"POT-Creation-Date: 2006-08-09 00:20+0200\n"
 "PO-Revision-Date: 2006-07-16 11:39+0100\n"
 "Last-Translator: Maximilian Schleiss <maxschleiss at bluewin.ch>\n"
 "Language-Team: French <xfce-i18n at xfce.org>\n"
@@ -16,25 +16,35 @@
 "Content-Transfer-Encoding: 8bit\n"
 
 #. Generate error message
-#: ../panel-plugin/verve-plugin.c:399
+#: ../panel-plugin/verve-plugin.c:407
 msgid "Could not execute command:"
 msgstr "Échec à l'exécution de la commande:"
 
 #. Create properties dialog
-#: ../panel-plugin/verve-plugin.c:728
-msgid "Verve Properties"
-msgstr "Préférences Verve"
+#: ../panel-plugin/verve-plugin.c:782
+msgid "Verve"
+msgstr "Verve"
 
 #. Frame for appearance settings
-#: ../panel-plugin/verve-plugin.c:746
+#: ../panel-plugin/verve-plugin.c:800
 msgid "Appearance"
 msgstr "Apparence"
 
 #. Plugin size label
-#: ../panel-plugin/verve-plugin.c:757
+#: ../panel-plugin/verve-plugin.c:811
 msgid "Width (in chars):"
 msgstr "Largeur (en pixels)"
 
+#. Frame for behaviour settings
+#: ../panel-plugin/verve-plugin.c:831
+msgid "Behaviour"
+msgstr ""
+
+#. History length label
+#: ../panel-plugin/verve-plugin.c:842
+msgid "Number of saved history items:"
+msgstr ""
+
 #. vim:set expandtab sts=2 ts=2 sw=2:
 #: ../panel-plugin/verve.desktop.in.in.h:1
 #, fuzzy
@@ -52,12 +62,14 @@
 msgstr ""
 
 #. Print error message
-#: ../scripts/verve-focus.c:83
-msgid "Failed to deliver the org.xfce.Verve#GrabFocus method."
+#: ../scripts/verve-focus.c:84
+msgid ""
+"There seems to be no Verve D-BUS provider (e.g. the Verve panel plugin) "
+"running."
 msgstr ""
 
-#~ msgid "Verve"
-#~ msgstr "Verve"
+#~ msgid "Verve Properties"
+#~ msgstr "Préférences Verve"
 
 #~ msgid "Unkown command."
 #~ msgstr "Commande inconnue."

Modified: verve-plugin/trunk/po/it.po
===================================================================
--- verve-plugin/trunk/po/it.po	2006-08-08 20:35:25 UTC (rev 1866)
+++ verve-plugin/trunk/po/it.po	2006-08-08 22:26:41 UTC (rev 1867)
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: verve-plugin 0.3.4\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-08-01 15:43+0200\n"
+"POT-Creation-Date: 2006-08-09 00:20+0200\n"
 "PO-Revision-Date: 2006-06-16 16:10+0100\n"
 "Last-Translator: Roberto Pariset <r.pariset at gmail.com>\n"
 "Language-Team: Italian <xfce-i18n at xfce.org>\n"
@@ -16,25 +16,35 @@
 "Content-Transfer-Encoding: 8bit\n"
 
 #. Generate error message
-#: ../panel-plugin/verve-plugin.c:399
+#: ../panel-plugin/verve-plugin.c:407
 msgid "Could not execute command:"
 msgstr "Impossibile eseguire il comando:"
 
 #. Create properties dialog
-#: ../panel-plugin/verve-plugin.c:728
-msgid "Verve Properties"
-msgstr "Proprietà di Verve"
+#: ../panel-plugin/verve-plugin.c:782
+msgid "Verve"
+msgstr "Verve"
 
 #. Frame for appearance settings
-#: ../panel-plugin/verve-plugin.c:746
+#: ../panel-plugin/verve-plugin.c:800
 msgid "Appearance"
 msgstr "Aspetto"
 
 #. Plugin size label
-#: ../panel-plugin/verve-plugin.c:757
+#: ../panel-plugin/verve-plugin.c:811
 msgid "Width (in chars):"
 msgstr "Larghezza (numero di caratteri):"
 
+#. Frame for behaviour settings
+#: ../panel-plugin/verve-plugin.c:831
+msgid "Behaviour"
+msgstr ""
+
+#. History length label
+#: ../panel-plugin/verve-plugin.c:842
+msgid "Number of saved history items:"
+msgstr ""
+
 #. vim:set expandtab sts=2 ts=2 sw=2:
 #: ../panel-plugin/verve.desktop.in.in.h:1
 #, fuzzy
@@ -52,9 +62,11 @@
 msgstr ""
 
 #. Print error message
-#: ../scripts/verve-focus.c:83
-msgid "Failed to deliver the org.xfce.Verve#GrabFocus method."
+#: ../scripts/verve-focus.c:84
+msgid ""
+"There seems to be no Verve D-BUS provider (e.g. the Verve panel plugin) "
+"running."
 msgstr ""
 
-#~ msgid "Verve"
-#~ msgstr "Verve"
+#~ msgid "Verve Properties"
+#~ msgstr "Proprietà di Verve"

Modified: verve-plugin/trunk/po/ja.po
===================================================================
--- verve-plugin/trunk/po/ja.po	2006-08-08 20:35:25 UTC (rev 1866)
+++ verve-plugin/trunk/po/ja.po	2006-08-08 22:26:41 UTC (rev 1867)
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: verve-plugin 0.3.4\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-08-01 15:43+0200\n"
+"POT-Creation-Date: 2006-08-09 00:20+0200\n"
 "PO-Revision-Date: 2006-02-12 12:55+0900\n"
 "Last-Translator: Daichi Kawahata <daichi at xfce.org>\n"
 "Language-Team: Japanese <xfce-users-jp at ml.fdiary.net>\n"
@@ -16,25 +16,35 @@
 "Content-Transfer-Encoding: 8bit\n"
 
 #. Generate error message
-#: ../panel-plugin/verve-plugin.c:399
+#: ../panel-plugin/verve-plugin.c:407
 msgid "Could not execute command:"
 msgstr "コマンドを実行できませんでした:"
 
 #. Create properties dialog
-#: ../panel-plugin/verve-plugin.c:728
-msgid "Verve Properties"
-msgstr "Verveのプロパティ"
+#: ../panel-plugin/verve-plugin.c:782
+msgid "Verve"
+msgstr "Verve"
 
 #. Frame for appearance settings
-#: ../panel-plugin/verve-plugin.c:746
+#: ../panel-plugin/verve-plugin.c:800
 msgid "Appearance"
 msgstr "外観"
 
 #. Plugin size label
-#: ../panel-plugin/verve-plugin.c:757
+#: ../panel-plugin/verve-plugin.c:811
 msgid "Width (in chars):"
 msgstr "幅 (文字単位):"
 
+#. Frame for behaviour settings
+#: ../panel-plugin/verve-plugin.c:831
+msgid "Behaviour"
+msgstr ""
+
+#. History length label
+#: ../panel-plugin/verve-plugin.c:842
+msgid "Number of saved history items:"
+msgstr ""
+
 #. vim:set expandtab sts=2 ts=2 sw=2:
 #: ../panel-plugin/verve.desktop.in.in.h:1
 #, fuzzy
@@ -51,9 +61,11 @@
 msgstr ""
 
 #. Print error message
-#: ../scripts/verve-focus.c:83
-msgid "Failed to deliver the org.xfce.Verve#GrabFocus method."
+#: ../scripts/verve-focus.c:84
+msgid ""
+"There seems to be no Verve D-BUS provider (e.g. the Verve panel plugin) "
+"running."
 msgstr ""
 
-#~ msgid "Verve"
-#~ msgstr "Verve"
+#~ msgid "Verve Properties"
+#~ msgstr "Verveのプロパティ"

Modified: verve-plugin/trunk/po/nl.po
===================================================================
--- verve-plugin/trunk/po/nl.po	2006-08-08 20:35:25 UTC (rev 1866)
+++ verve-plugin/trunk/po/nl.po	2006-08-08 22:26:41 UTC (rev 1867)
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: verve-plugin 0.3.4\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-08-01 15:43+0200\n"
+"POT-Creation-Date: 2006-08-09 00:20+0200\n"
 "PO-Revision-Date: 2006-02-09 16:20+0100\n"
 "Last-Translator: Vincent <imnotb at gmail.com>\n"
 "Language-Team: Dutch <vertaling at vrijschrift.org>\n"
@@ -16,25 +16,35 @@
 "Content-Transfer-Encoding: 8bit\n"
 
 #. Generate error message
-#: ../panel-plugin/verve-plugin.c:399
+#: ../panel-plugin/verve-plugin.c:407
 msgid "Could not execute command:"
 msgstr ""
 
 #. Create properties dialog
-#: ../panel-plugin/verve-plugin.c:728
-msgid "Verve Properties"
-msgstr "Verve eigenschappen"
+#: ../panel-plugin/verve-plugin.c:782
+msgid "Verve"
+msgstr "Verve"
 
 #. Frame for appearance settings
-#: ../panel-plugin/verve-plugin.c:746
+#: ../panel-plugin/verve-plugin.c:800
 msgid "Appearance"
 msgstr "Beeld"
 
 #. Plugin size label
-#: ../panel-plugin/verve-plugin.c:757
+#: ../panel-plugin/verve-plugin.c:811
 msgid "Width (in chars):"
 msgstr "Breedte (in tekens):"
 
+#. Frame for behaviour settings
+#: ../panel-plugin/verve-plugin.c:831
+msgid "Behaviour"
+msgstr ""
+
+#. History length label
+#: ../panel-plugin/verve-plugin.c:842
+msgid "Number of saved history items:"
+msgstr ""
+
 #. vim:set expandtab sts=2 ts=2 sw=2:
 #: ../panel-plugin/verve.desktop.in.in.h:1
 #, fuzzy
@@ -51,12 +61,14 @@
 msgstr ""
 
 #. Print error message
-#: ../scripts/verve-focus.c:83
-msgid "Failed to deliver the org.xfce.Verve#GrabFocus method."
+#: ../scripts/verve-focus.c:84
+msgid ""
+"There seems to be no Verve D-BUS provider (e.g. the Verve panel plugin) "
+"running."
 msgstr ""
 
-#~ msgid "Verve"
-#~ msgstr "Verve"
+#~ msgid "Verve Properties"
+#~ msgstr "Verve eigenschappen"
 
 #~ msgid "Unkown command."
 #~ msgstr "Onbekend commando."

Modified: verve-plugin/trunk/po/pl.po
===================================================================
--- verve-plugin/trunk/po/pl.po	2006-08-08 20:35:25 UTC (rev 1866)
+++ verve-plugin/trunk/po/pl.po	2006-08-08 22:26:41 UTC (rev 1867)
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: verve-plugin 0.3.4\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-08-01 15:43+0200\n"
+"POT-Creation-Date: 2006-08-09 00:20+0200\n"
 "PO-Revision-Date: 2006-04-08 12:19+0900\n"
 "Last-Translator: Piotr Maliński <admin at rk.edu.pl>\n"
 "Language-Team: Polish <translation-team-pl at lists.sourceforge.net>\n"
@@ -16,25 +16,35 @@
 "Content-Transfer-Encoding: 8bit\n"
 
 #. Generate error message
-#: ../panel-plugin/verve-plugin.c:399
+#: ../panel-plugin/verve-plugin.c:407
 msgid "Could not execute command:"
 msgstr "Nie mogę wykonać polecenia:"
 
 #. Create properties dialog
-#: ../panel-plugin/verve-plugin.c:728
-msgid "Verve Properties"
-msgstr "Ustawienia Verve"
+#: ../panel-plugin/verve-plugin.c:782
+msgid "Verve"
+msgstr "Verve"
 
 #. Frame for appearance settings
-#: ../panel-plugin/verve-plugin.c:746
+#: ../panel-plugin/verve-plugin.c:800
 msgid "Appearance"
 msgstr "Wygląd"
 
 #. Plugin size label
-#: ../panel-plugin/verve-plugin.c:757
+#: ../panel-plugin/verve-plugin.c:811
 msgid "Width (in chars):"
 msgstr "Długość (znaki):"
 
+#. Frame for behaviour settings
+#: ../panel-plugin/verve-plugin.c:831
+msgid "Behaviour"
+msgstr ""
+
+#. History length label
+#: ../panel-plugin/verve-plugin.c:842
+msgid "Number of saved history items:"
+msgstr ""
+
 #. vim:set expandtab sts=2 ts=2 sw=2:
 #: ../panel-plugin/verve.desktop.in.in.h:1
 #, fuzzy
@@ -51,9 +61,11 @@
 msgstr ""
 
 #. Print error message
-#: ../scripts/verve-focus.c:83
-msgid "Failed to deliver the org.xfce.Verve#GrabFocus method."
+#: ../scripts/verve-focus.c:84
+msgid ""
+"There seems to be no Verve D-BUS provider (e.g. the Verve panel plugin) "
+"running."
 msgstr ""
 
-#~ msgid "Verve"
-#~ msgstr "Verve"
+#~ msgid "Verve Properties"
+#~ msgstr "Ustawienia Verve"

Modified: verve-plugin/trunk/po/ru.po
===================================================================
--- verve-plugin/trunk/po/ru.po	2006-08-08 20:35:25 UTC (rev 1866)
+++ verve-plugin/trunk/po/ru.po	2006-08-08 22:26:41 UTC (rev 1867)
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: verve-plugin 0.3.4\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-08-01 15:43+0200\n"
+"POT-Creation-Date: 2006-08-09 00:20+0200\n"
 "PO-Revision-Date: 2006-03-24 21:31+0500\n"
 "Last-Translator: Andrey Fedoseev <andrey.fedoseev at gmail.com>\n"
 "Language-Team: Russian <ru at li.org>\n"
@@ -16,25 +16,35 @@
 "Content-Transfer-Encoding: 8bit\n"
 
 #. Generate error message
-#: ../panel-plugin/verve-plugin.c:399
+#: ../panel-plugin/verve-plugin.c:407
 msgid "Could not execute command:"
 msgstr "Невозможно выполнить команду:"
 
 #. Create properties dialog
-#: ../panel-plugin/verve-plugin.c:728
-msgid "Verve Properties"
-msgstr "Параметры Verve"
+#: ../panel-plugin/verve-plugin.c:782
+msgid "Verve"
+msgstr "Verve"
 
 #. Frame for appearance settings
-#: ../panel-plugin/verve-plugin.c:746
+#: ../panel-plugin/verve-plugin.c:800
 msgid "Appearance"
 msgstr "Внешний вид"
 
 #. Plugin size label
-#: ../panel-plugin/verve-plugin.c:757
+#: ../panel-plugin/verve-plugin.c:811
 msgid "Width (in chars):"
 msgstr "Ширина (в символах):"
 
+#. Frame for behaviour settings
+#: ../panel-plugin/verve-plugin.c:831
+msgid "Behaviour"
+msgstr ""
+
+#. History length label
+#: ../panel-plugin/verve-plugin.c:842
+msgid "Number of saved history items:"
+msgstr ""
+
 #. vim:set expandtab sts=2 ts=2 sw=2:
 #: ../panel-plugin/verve.desktop.in.in.h:1
 #, fuzzy
@@ -51,9 +61,11 @@
 msgstr ""
 
 #. Print error message
-#: ../scripts/verve-focus.c:83
-msgid "Failed to deliver the org.xfce.Verve#GrabFocus method."
+#: ../scripts/verve-focus.c:84
+msgid ""
+"There seems to be no Verve D-BUS provider (e.g. the Verve panel plugin) "
+"running."
 msgstr ""
 
-#~ msgid "Verve"
-#~ msgstr "Verve"
+#~ msgid "Verve Properties"
+#~ msgstr "Параметры Verve"

Modified: verve-plugin/trunk/po/verve-plugin.pot
===================================================================
--- verve-plugin/trunk/po/verve-plugin.pot	2006-08-08 20:35:25 UTC (rev 1866)
+++ verve-plugin/trunk/po/verve-plugin.pot	2006-08-08 22:26:41 UTC (rev 1867)
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-08-01 15:43+0200\n"
+"POT-Creation-Date: 2006-08-09 00:20+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"
@@ -17,25 +17,35 @@
 "Content-Transfer-Encoding: 8bit\n"
 
 #. Generate error message
-#: ../panel-plugin/verve-plugin.c:399
+#: ../panel-plugin/verve-plugin.c:407
 msgid "Could not execute command:"
 msgstr ""
 
 #. Create properties dialog
-#: ../panel-plugin/verve-plugin.c:728
-msgid "Verve Properties"
+#: ../panel-plugin/verve-plugin.c:782
+msgid "Verve"
 msgstr ""
 
 #. Frame for appearance settings
-#: ../panel-plugin/verve-plugin.c:746
+#: ../panel-plugin/verve-plugin.c:800
 msgid "Appearance"
 msgstr ""
 
 #. Plugin size label
-#: ../panel-plugin/verve-plugin.c:757
+#: ../panel-plugin/verve-plugin.c:811
 msgid "Width (in chars):"
 msgstr ""
 
+#. Frame for behaviour settings
+#: ../panel-plugin/verve-plugin.c:831
+msgid "Behaviour"
+msgstr ""
+
+#. History length label
+#: ../panel-plugin/verve-plugin.c:842
+msgid "Number of saved history items:"
+msgstr ""
+
 #. vim:set expandtab sts=2 ts=2 sw=2:
 #: ../panel-plugin/verve.desktop.in.in.h:1
 msgid "Command line interface with auto-completion and command history"
@@ -51,6 +61,8 @@
 msgstr ""
 
 #. Print error message
-#: ../scripts/verve-focus.c:83
-msgid "Failed to deliver the org.xfce.Verve#GrabFocus method."
+#: ../scripts/verve-focus.c:84
+msgid ""
+"There seems to be no Verve D-BUS provider (e.g. the Verve panel plugin) "
+"running."
 msgstr ""

Modified: verve-plugin/trunk/po/vi.po
===================================================================
--- verve-plugin/trunk/po/vi.po	2006-08-08 20:35:25 UTC (rev 1866)
+++ verve-plugin/trunk/po/vi.po	2006-08-08 22:26:41 UTC (rev 1867)
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: verve-plugin 0.3.4\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-08-01 15:43+0200\n"
+"POT-Creation-Date: 2006-08-09 00:20+0200\n"
 "PO-Revision-Date: 2006-02-19 22:50+0300\n"
 "Last-Translator: Phan Vĩnh Thịnh <teppi at vnlinux.org>\n"
 "Language-Team: Vietnamese <none at li.org>\n"
@@ -16,25 +16,35 @@
 "X-Generator: KBabel 1.9.1\n"
 
 #. Generate error message
-#: ../panel-plugin/verve-plugin.c:399
+#: ../panel-plugin/verve-plugin.c:407
 msgid "Could not execute command:"
 msgstr "Không thực hiện được câu lệnh:"
 
 #. Create properties dialog
-#: ../panel-plugin/verve-plugin.c:728
-msgid "Verve Properties"
-msgstr "Thuộc tính Verve"
+#: ../panel-plugin/verve-plugin.c:782
+msgid "Verve"
+msgstr "Verve"
 
 #. Frame for appearance settings
-#: ../panel-plugin/verve-plugin.c:746
+#: ../panel-plugin/verve-plugin.c:800
 msgid "Appearance"
 msgstr "Vẻ ngoài"
 
 #. Plugin size label
-#: ../panel-plugin/verve-plugin.c:757
+#: ../panel-plugin/verve-plugin.c:811
 msgid "Width (in chars):"
 msgstr "Rộng (theo ký tự):"
 
+#. Frame for behaviour settings
+#: ../panel-plugin/verve-plugin.c:831
+msgid "Behaviour"
+msgstr ""
+
+#. History length label
+#: ../panel-plugin/verve-plugin.c:842
+msgid "Number of saved history items:"
+msgstr ""
+
 #. vim:set expandtab sts=2 ts=2 sw=2:
 #: ../panel-plugin/verve.desktop.in.in.h:1
 #, fuzzy
@@ -52,9 +62,11 @@
 msgstr ""
 
 #. Print error message
-#: ../scripts/verve-focus.c:83
-msgid "Failed to deliver the org.xfce.Verve#GrabFocus method."
+#: ../scripts/verve-focus.c:84
+msgid ""
+"There seems to be no Verve D-BUS provider (e.g. the Verve panel plugin) "
+"running."
 msgstr ""
 
-#~ msgid "Verve"
-#~ msgstr "Verve"
+#~ msgid "Verve Properties"
+#~ msgstr "Thuộc tính Verve"

Modified: verve-plugin/trunk/scripts/verve-focus.c
===================================================================
--- verve-plugin/trunk/scripts/verve-focus.c	2006-08-08 20:35:25 UTC (rev 1866)
+++ verve-plugin/trunk/scripts/verve-focus.c	2006-08-08 22:26:41 UTC (rev 1867)
@@ -81,7 +81,7 @@
   if (G_UNLIKELY (result == NULL))
     {
       /* Print error message */
-      g_debug (_("Failed to deliver the org.xfce.Verve#GrabFocus method."));
+      g_debug (_("There seems to be no Verve D-BUS provider (e.g. the Verve panel plugin) running."));
 
       /* Free error structure */
       dbus_error_free (&error);




More information about the Goodies-commits mailing list