[Goodies-commits] r2177 - in xfce4-notes-plugin/trunk: . panel-plugin po

Mike Massonnet mmassonnet at xfce.org
Sat Nov 25 19:03:22 CET 2006


Author: mmassonnet
Date: 2006-11-25 18:03:12 +0000 (Sat, 25 Nov 2006)
New Revision: 2177

Modified:
   xfce4-notes-plugin/trunk/AUTHORS
   xfce4-notes-plugin/trunk/ChangeLog
   xfce4-notes-plugin/trunk/panel-plugin/notes-options.c
   xfce4-notes-plugin/trunk/panel-plugin/notes-window.c
   xfce4-notes-plugin/trunk/panel-plugin/notes-window.h
   xfce4-notes-plugin/trunk/panel-plugin/notes.c
   xfce4-notes-plugin/trunk/panel-plugin/notes.h
   xfce4-notes-plugin/trunk/po/ca.po
   xfce4-notes-plugin/trunk/po/cs.po
   xfce4-notes-plugin/trunk/po/de.po
   xfce4-notes-plugin/trunk/po/eu.po
   xfce4-notes-plugin/trunk/po/fr.po
   xfce4-notes-plugin/trunk/po/hu.po
   xfce4-notes-plugin/trunk/po/pl.po
   xfce4-notes-plugin/trunk/po/xfce4-notes-plugin.pot
   xfce4-notes-plugin/trunk/po/zh_TW.po
Log:
	* po/{*,fr,de}: make update-po.  Update french and german.
	* panel-plugin/{notes-options.c,notes-window.h,notes-window.c,
	  notes.h,notes.c}: Add a resize grip (GtkStatusbar), and the
	  option for it.
	* panel-plugin/notes-options.c: Change window icon from panel to 
	  settings.

Modified: xfce4-notes-plugin/trunk/AUTHORS
===================================================================
--- xfce4-notes-plugin/trunk/AUTHORS	2006-11-25 11:08:12 UTC (rev 2176)
+++ xfce4-notes-plugin/trunk/AUTHORS	2006-11-25 18:03:12 UTC (rev 2177)
@@ -1,2 +1,5 @@
 Jakob Henriksson <b0kaj+dev at lysator.liu.se>
+    - Creator & former maintainer
+
 Mike Massonnet <mmassonnet at gmail.com>
+    - Maintainer

Modified: xfce4-notes-plugin/trunk/ChangeLog
===================================================================
--- xfce4-notes-plugin/trunk/ChangeLog	2006-11-25 11:08:12 UTC (rev 2176)
+++ xfce4-notes-plugin/trunk/ChangeLog	2006-11-25 18:03:12 UTC (rev 2177)
@@ -1,3 +1,15 @@
+2006-11-25  Mike Massonnet <mmassonnet at gmail.com>
+
+	* po/{*,fr,de}: make update-po.  Update french and german.
+	* panel-plugin/{notes-options.c,notes-window.h,notes-window.c,
+	  notes.h,notes.c}: Add a resize grip (GtkStatusbar), and the
+	  option for it.
+
+2006-10-09	Mike Massonnet <mmassonnet at gmail.com>
+
+	* panel-plugin/notes-options.c: Change window icon from panel to 
+	  settings.
+
 2006-10-03	Mike Massonnet <mmassonnet at gmail.com>
 
 	* panel-plugin/notes.{c,h}: Add a default behavior to reset the last

Modified: xfce4-notes-plugin/trunk/panel-plugin/notes-options.c
===================================================================
--- xfce4-notes-plugin/trunk/panel-plugin/notes-options.c	2006-11-25 11:08:12 UTC (rev 2176)
+++ xfce4-notes-plugin/trunk/panel-plugin/notes-options.c	2006-11-25 18:03:12 UTC (rev 2177)
@@ -39,6 +39,7 @@
 static void     on_toggle_task_switcher (GtkWidget *, NotesPlugin *);
 static void     on_toggle_always_on_top (GtkWidget *, NotesPlugin *);
 static void     on_toggle_stick (GtkWidget *, NotesPlugin *);
+static void     on_toggle_statusbar (GtkWidget *, NotesPlugin *);
 static void     on_toggle_vert_text_label (GtkWidget *, NotesPlugin *);
 
 
@@ -46,7 +47,7 @@
 notes_options_new (NotesPlugin *notes)
 {
     GtkWidget *dialog, *vbox;
-    GtkWidget *cb_show, *cb_task_switcher, *cb_always_on_top, *cb_stick;
+    GtkWidget *cb_show, *cb_task_switcher, *cb_always_on_top, *cb_stick, *cb_statusbar;
     NotesOptions *options;
 
     DBG ("New Notes Options");
@@ -58,11 +59,9 @@
                                              GTK_DIALOG_NO_SEPARATOR,
                                              GTK_STOCK_CLOSE, GTK_RESPONSE_OK,
                                              NULL);
-    xfce_titled_dialog_set_subtitle (XFCE_TITLED_DIALOG (dialog),
-                                     _("Properties"));
 
     gtk_window_set_position (GTK_WINDOW (dialog), GTK_WIN_POS_CENTER);
-    gtk_window_set_icon_name (GTK_WINDOW (dialog), "xfce4-panel");
+    gtk_window_set_icon_name (GTK_WINDOW (dialog), "xfce4-settings");
     gtk_window_set_keep_above (GTK_WINDOW (dialog), TRUE);
     gtk_window_stick (GTK_WINDOW (dialog));
 
@@ -73,7 +72,7 @@
 
     gtk_container_set_border_width (GTK_CONTAINER (vbox), 12);
 
-    cb_show = gtk_check_button_new_with_label (_("Show notes at startup"));
+    cb_show = gtk_check_button_new_with_label (_("Always show notes at startup"));
     gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (cb_show), options->show);
     gtk_box_pack_start (GTK_BOX (vbox), cb_show, FALSE, FALSE, 0);
     gtk_widget_show (cb_show);
@@ -107,6 +106,13 @@
 
     g_signal_connect (cb_stick, "toggled", G_CALLBACK (on_toggle_stick), notes);
 
+    cb_statusbar = gtk_check_button_new_with_label (_("Show resize grip"));
+    gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (cb_statusbar), options->statusbar);
+    gtk_box_pack_start (GTK_BOX (vbox), cb_statusbar, FALSE, FALSE, 0);
+    gtk_widget_show (cb_statusbar);
+
+    g_signal_connect (cb_statusbar, "toggled", G_CALLBACK (on_toggle_statusbar), notes);
+
     gtk_widget_show (dialog);
 
     return dialog;
@@ -168,3 +174,19 @@
     DBG ("Set option stick: %d", toggle_value);
 }
 
+static void
+on_toggle_statusbar (GtkWidget *checkbox, NotesPlugin *notes)
+{
+    gboolean active;
+    
+    active = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (checkbox));
+    notes->options.statusbar = active;
+
+    if (active)
+        gtk_widget_show (notes->note->statusbar);
+    else
+        gtk_widget_hide (notes->note->statusbar);
+
+    DBG ("Set statusbar: %d", active);
+}
+

Modified: xfce4-notes-plugin/trunk/panel-plugin/notes-window.c
===================================================================
--- xfce4-notes-plugin/trunk/panel-plugin/notes-window.c	2006-11-25 11:08:12 UTC (rev 2176)
+++ xfce4-notes-plugin/trunk/panel-plugin/notes-window.c	2006-11-25 18:03:12 UTC (rev 2177)
@@ -36,43 +36,33 @@
 
 static void         note_page_load_data         (XfcePanelPlugin *, 
                                                  NotePage *);
-
 static void         on_notes_close              (GtkWidget *, 
                                                  NotesPlugin *);
-
 static gboolean     on_note_window_close        ();
 
 static gboolean     on_title_press              (GtkWidget *, 
                                                  GdkEventButton *, 
                                                  GtkWindow *);
-
 static gboolean     on_title_scroll             (GtkWidget *, 
                                                  GdkEventScroll *, 
                                                  Note *);
-
 static gboolean     on_note_key_press           (GtkWidget *, 
                                                  GdkEventKey *, 
                                                  NotesPlugin *);
-
 static void         on_note_changed             (GtkWidget *, 
                                                  NotesPlugin *);
-
 static void         note_page_rename            (Note *);
 
 static gboolean     on_note_rename              (GtkWidget *, 
                                                  GdkEventButton *, 
                                                  Note *);
-
 static void         on_note_rename_response     (GtkDialog *, 
                                                  gint response, 
                                                  GSList *);
-
 static void         on_page_create              (GtkWidget *, 
                                                  NotesPlugin *);
-
 static gboolean     on_page_delete              (GtkWidget *, 
                                                  NotesPlugin *);
-
 static void         note_page_destroy           (GtkWidget *, 
                                                  gint response_id, 
                                                  NotesPlugin *);
@@ -97,7 +87,7 @@
     note->window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
 
     gtk_window_set_title (GTK_WINDOW (note->window), _("Notes"));
-    gtk_window_set_default_size (GTK_WINDOW (note->window), 242, 200);
+    gtk_window_set_default_size (GTK_WINDOW (note->window), 290, 320);
     gtk_window_set_decorated (GTK_WINDOW (note->window), FALSE);
     gtk_window_set_icon_name (GTK_WINDOW (note->window), GTK_STOCK_EDIT);
     gtk_window_add_accel_group (GTK_WINDOW (note->window), accel_group);
@@ -121,7 +111,7 @@
     note->vbox = gtk_vbox_new (FALSE, 0);
     gtk_widget_show (note->vbox);
 
-    gtk_box_set_spacing (GTK_BOX (note->vbox), 2);
+    gtk_box_set_spacing (GTK_BOX (note->vbox), 1);
     gtk_container_add (GTK_CONTAINER (note->frame), note->vbox);
 
 
@@ -223,6 +213,13 @@
 
     gtk_box_pack_start (GTK_BOX (note->vbox), note->notebook, TRUE, TRUE, 0);
 
+
+    /* Status bar */
+    note->statusbar = gtk_statusbar_new ();
+    gtk_widget_show (note->statusbar);
+
+    gtk_box_pack_start (GTK_BOX (note->vbox), note->statusbar, FALSE, FALSE, 0);
+
     return note;
 }
 

Modified: xfce4-notes-plugin/trunk/panel-plugin/notes-window.h
===================================================================
--- xfce4-notes-plugin/trunk/panel-plugin/notes-window.h	2006-11-25 11:08:12 UTC (rev 2176)
+++ xfce4-notes-plugin/trunk/panel-plugin/notes-window.h	2006-11-25 18:03:12 UTC (rev 2177)
@@ -45,6 +45,8 @@
     GtkWidget *notebook;
     GList *pages;
 
+    GtkWidget *statusbar;
+
     GtkWidget *vbox;
     GtkWidget *hbox;
 

Modified: xfce4-notes-plugin/trunk/panel-plugin/notes.c
===================================================================
--- xfce4-notes-plugin/trunk/panel-plugin/notes.c	2006-11-25 11:08:12 UTC (rev 2176)
+++ xfce4-notes-plugin/trunk/panel-plugin/notes.c	2006-11-25 18:03:12 UTC (rev 2177)
@@ -144,6 +144,7 @@
         xfce_rc_write_bool_entry (rc, "task_switcher", notes->options.task_switcher);
         xfce_rc_write_bool_entry (rc, "always_on_top", notes->options.always_on_top);
         xfce_rc_write_bool_entry (rc, "stick", notes->options.stick);
+        xfce_rc_write_bool_entry (rc, "statusbar", notes->options.statusbar);
 
         pages = notes->note->pages;
         xfce_rc_set_group (rc, "notes");
@@ -349,6 +350,7 @@
         notes->options.task_switcher = xfce_rc_read_bool_entry (rc, "task_switcher", TRUE);
         notes->options.always_on_top = xfce_rc_read_bool_entry (rc, "always_on_top", FALSE);
         notes->options.stick = xfce_rc_read_bool_entry (rc, "stick", TRUE);
+        notes->options.statusbar = xfce_rc_read_bool_entry (rc, "statusbar", TRUE);
 
         xfce_rc_close (rc);
       }
@@ -362,7 +364,7 @@
     /* Show/hide the note */
     if (!GTK_WIDGET_VISIBLE (notes->note->window))
       {
-          if (notes->note->x != -1 && notes->note->y != -1)
+        if (notes->note->x != -1 && notes->note->y != -1)
             gtk_window_move (GTK_WINDOW (notes->note->window), notes->note->x,
                                          notes->note->y);
         gtk_window_resize (GTK_WINDOW (notes->note->window), notes->note->w,
@@ -377,6 +379,18 @@
             gtk_window_stick (GTK_WINDOW (notes->note->window));
         else
             gtk_window_unstick (GTK_WINDOW (notes->note->window));
+
+        if (!notes->options.statusbar)
+          {
+            gtk_widget_hide (notes->note->statusbar);
+            /* and fix some GTK+2 oddy */
+            if (notes->note->x != -1 && notes->note->y != -1)
+              {
+                gtk_window_move (GTK_WINDOW (notes->note->window), 
+                                 notes->note->x,
+                                 notes->note->y);
+              }
+          }
       }
     else
       {

Modified: xfce4-notes-plugin/trunk/panel-plugin/notes.h
===================================================================
--- xfce4-notes-plugin/trunk/panel-plugin/notes.h	2006-11-25 11:08:12 UTC (rev 2176)
+++ xfce4-notes-plugin/trunk/panel-plugin/notes.h	2006-11-25 18:03:12 UTC (rev 2177)
@@ -31,6 +31,7 @@
     gboolean task_switcher;
     gboolean always_on_top;
     gboolean stick;
+    gboolean statusbar;
 }
 NotesOptions;
 

Modified: xfce4-notes-plugin/trunk/po/ca.po
===================================================================
--- xfce4-notes-plugin/trunk/po/ca.po	2006-11-25 11:08:12 UTC (rev 2176)
+++ xfce4-notes-plugin/trunk/po/ca.po	2006-11-25 18:03:12 UTC (rev 2177)
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-notes-plugin 1.3.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-10-05 12:39+0200\n"
+"POT-Creation-Date: 2006-11-25 18:33+0100\n"
 "PO-Revision-Date: 2006-09-18 12:25+0200\n"
 "Last-Translator: Pau Ruŀlan Ferragut <paurullan at bulma.net>\n"
 "Language-Team: Catalan\n"
@@ -17,52 +17,56 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../panel-plugin/notes.c:302 ../panel-plugin/notes-options.c:57
-#: ../panel-plugin/notes-window.c:99
+#: ../panel-plugin/notes.c:302 ../panel-plugin/notes-options.c:58
+#: ../panel-plugin/notes-window.c:89
 #: ../panel-plugin/xfce4-notes-plugin.desktop.in.in.h:1
 msgid "Notes"
 msgstr "Notes"
 
-#: ../panel-plugin/notes-options.c:62
-msgid "Properties"
-msgstr "Propietats"
-
-#: ../panel-plugin/notes-options.c:76
-msgid "Show notes at startup"
+#: ../panel-plugin/notes-options.c:75
+#, fuzzy
+msgid "Always show notes at startup"
 msgstr "Mostra les notes en engegar"
 
-#: ../panel-plugin/notes-options.c:84
+#: ../panel-plugin/notes-options.c:83
 msgid "Show in the task list"
 msgstr "Mostra dins el llistat de tasques"
 
-#: ../panel-plugin/notes-options.c:94
+#: ../panel-plugin/notes-options.c:93
 msgid "Always on top"
 msgstr "Sempre en primer pla"
 
-#: ../panel-plugin/notes-options.c:103
+#: ../panel-plugin/notes-options.c:102
 msgid "Stick mode"
 msgstr "Mode enganxós"
 
-#: ../panel-plugin/notes-window.c:139
+#: ../panel-plugin/notes-options.c:109
+msgid "Show resize grip"
+msgstr ""
+
+#: ../panel-plugin/notes-window.c:129
 msgid "Create new note"
 msgstr "Crea una nota nova"
 
-#: ../panel-plugin/notes-window.c:157
+#: ../panel-plugin/notes-window.c:147
 msgid "Delete this note"
 msgstr "Suprimeix aquesta nota"
 
-#: ../panel-plugin/notes-window.c:186
+#: ../panel-plugin/notes-window.c:176
 msgid "<b>Notes</b>"
 msgstr "<b>Notes</b>"
 
-#: ../panel-plugin/notes-window.c:450
+#: ../panel-plugin/notes-window.c:447
 msgid "Rename"
 msgstr "Reanomena"
 
-#: ../panel-plugin/notes-window.c:551
+#: ../panel-plugin/notes-window.c:548
 msgid "Are you sure you want to delete this note?"
 msgstr "Esteu segurs que voleu suprimir aquesta nota?"
 
 #: ../panel-plugin/xfce4-notes-plugin.desktop.in.in.h:2
 msgid "Notes plugin for the Xfce4 desktop"
 msgstr "Connector de notes per l’escriptori Xfce4"
+
+#~ msgid "Properties"
+#~ msgstr "Propietats"

Modified: xfce4-notes-plugin/trunk/po/cs.po
===================================================================
--- xfce4-notes-plugin/trunk/po/cs.po	2006-11-25 11:08:12 UTC (rev 2176)
+++ xfce4-notes-plugin/trunk/po/cs.po	2006-11-25 18:03:12 UTC (rev 2177)
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-notes-plugin 1.3.90.2\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-10-05 12:39+0200\n"
+"POT-Creation-Date: 2006-11-25 18:33+0100\n"
 "PO-Revision-Date: 2006-08-27 01:28+0100\n"
 "Last-Translator: Michal Várady <miko.vaji at gmail.com>\n"
 "Language-Team: Czech <translation-team-cs at lists.sourceforge.net>\n"
@@ -16,52 +16,56 @@
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
 
-#: ../panel-plugin/notes.c:302 ../panel-plugin/notes-options.c:57
-#: ../panel-plugin/notes-window.c:99
+#: ../panel-plugin/notes.c:302 ../panel-plugin/notes-options.c:58
+#: ../panel-plugin/notes-window.c:89
 #: ../panel-plugin/xfce4-notes-plugin.desktop.in.in.h:1
 msgid "Notes"
 msgstr "Poznámky"
 
-#: ../panel-plugin/notes-options.c:62
-msgid "Properties"
-msgstr "Vlastnosti"
-
-#: ../panel-plugin/notes-options.c:76
-msgid "Show notes at startup"
+#: ../panel-plugin/notes-options.c:75
+#, fuzzy
+msgid "Always show notes at startup"
 msgstr "Zobrazovat poznámky po spuštění"
 
-#: ../panel-plugin/notes-options.c:84
+#: ../panel-plugin/notes-options.c:83
 msgid "Show in the task list"
 msgstr "Zobrazovat v seznamu úloh"
 
-#: ../panel-plugin/notes-options.c:94
+#: ../panel-plugin/notes-options.c:93
 msgid "Always on top"
 msgstr "Vždy nahoře"
 
-#: ../panel-plugin/notes-options.c:103
+#: ../panel-plugin/notes-options.c:102
 msgid "Stick mode"
 msgstr "Režim přilepení"
 
-#: ../panel-plugin/notes-window.c:139
+#: ../panel-plugin/notes-options.c:109
+msgid "Show resize grip"
+msgstr ""
+
+#: ../panel-plugin/notes-window.c:129
 msgid "Create new note"
 msgstr "Vytvořit novou poznámku"
 
-#: ../panel-plugin/notes-window.c:157
+#: ../panel-plugin/notes-window.c:147
 msgid "Delete this note"
 msgstr "Smazat tuto poznámku"
 
-#: ../panel-plugin/notes-window.c:186
+#: ../panel-plugin/notes-window.c:176
 msgid "<b>Notes</b>"
 msgstr "<b>Poznámky</b>"
 
-#: ../panel-plugin/notes-window.c:450
+#: ../panel-plugin/notes-window.c:447
 msgid "Rename"
 msgstr "Přejmenovat"
 
-#: ../panel-plugin/notes-window.c:551
+#: ../panel-plugin/notes-window.c:548
 msgid "Are you sure you want to delete this note?"
 msgstr "Opravdu chcete smazat tuto poznámku?"
 
 #: ../panel-plugin/xfce4-notes-plugin.desktop.in.in.h:2
 msgid "Notes plugin for the Xfce4 desktop"
 msgstr "Zásuvný modul pro vytváření poznámek pro Xfce4"
+
+#~ msgid "Properties"
+#~ msgstr "Vlastnosti"

Modified: xfce4-notes-plugin/trunk/po/de.po
===================================================================
--- xfce4-notes-plugin/trunk/po/de.po	2006-11-25 11:08:12 UTC (rev 2176)
+++ xfce4-notes-plugin/trunk/po/de.po	2006-11-25 18:03:12 UTC (rev 2177)
@@ -7,9 +7,9 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: 1.3.0\n"
+"Project-Id-Version: 1.3.99.2\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-10-05 12:39+0200\n"
+"POT-Creation-Date: 2006-11-25 18:33+0100\n"
 "PO-Revision-Date: 2006-08-08 18:27+0100\n"
 "Last-Translator: Jannis Pohlmann <jannis at xfce.org>\n"
 "Language-Team: German <xfce-i18n at xfce.org>\n"
@@ -17,52 +17,53 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../panel-plugin/notes.c:302 ../panel-plugin/notes-options.c:57
-#: ../panel-plugin/notes-window.c:99
+#: ../panel-plugin/notes.c:302 ../panel-plugin/notes-options.c:58
+#: ../panel-plugin/notes-window.c:89
 #: ../panel-plugin/xfce4-notes-plugin.desktop.in.in.h:1
 msgid "Notes"
 msgstr "Notizen"
 
-#: ../panel-plugin/notes-options.c:62
-msgid "Properties"
-msgstr "Konfiguration"
+#: ../panel-plugin/notes-options.c:75
+msgid "Always show notes at startup"
+msgstr "Notizen immer beim Start zeigen"
 
-#: ../panel-plugin/notes-options.c:76
-msgid "Show notes at startup"
-msgstr "Notizen beim Start zeigen"
-
-#: ../panel-plugin/notes-options.c:84
+#: ../panel-plugin/notes-options.c:83
 msgid "Show in the task list"
 msgstr "In der Taskliste anzeigen"
 
-#: ../panel-plugin/notes-options.c:94
+#: ../panel-plugin/notes-options.c:93
 msgid "Always on top"
 msgstr "Immer obenauf"
 
-#: ../panel-plugin/notes-options.c:103
+#: ../panel-plugin/notes-options.c:102
 msgid "Stick mode"
 msgstr "Festkleben"
 
-#: ../panel-plugin/notes-window.c:139
+#: ../panel-plugin/notes-options.c:109
+msgid "Show resize grip"
+msgstr "Der vergrößerungsgriff anzeigen"
+
+#: ../panel-plugin/notes-window.c:129
 msgid "Create new note"
 msgstr "Neue Notiz"
 
-#: ../panel-plugin/notes-window.c:157
+#: ../panel-plugin/notes-window.c:147
 msgid "Delete this note"
 msgstr "Diese Notiz löschen"
 
-#: ../panel-plugin/notes-window.c:186
+#: ../panel-plugin/notes-window.c:176
 msgid "<b>Notes</b>"
 msgstr "<b>Notizen</b>"
 
-#: ../panel-plugin/notes-window.c:450
+#: ../panel-plugin/notes-window.c:447
 msgid "Rename"
 msgstr "Umbenennen"
 
-#: ../panel-plugin/notes-window.c:551
+#: ../panel-plugin/notes-window.c:548
 msgid "Are you sure you want to delete this note?"
 msgstr "Sind Sie sicher, dass Sie diese Notiz löschen möchten?"
 
 #: ../panel-plugin/xfce4-notes-plugin.desktop.in.in.h:2
 msgid "Notes plugin for the Xfce4 desktop"
 msgstr "Einfache Notizenverwaltung"
+

Modified: xfce4-notes-plugin/trunk/po/eu.po
===================================================================
--- xfce4-notes-plugin/trunk/po/eu.po	2006-11-25 11:08:12 UTC (rev 2176)
+++ xfce4-notes-plugin/trunk/po/eu.po	2006-11-25 18:03:12 UTC (rev 2177)
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: eu\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-10-05 12:39+0200\n"
+"POT-Creation-Date: 2006-11-25 18:33+0100\n"
 "PO-Revision-Date: 2006-09-18 22:53+0200\n"
 "Last-Translator: Piarres Beobide <pi at beobide.net>\n"
 "Language-Team: librezale <librezale at librezale.org>\n"
@@ -18,52 +18,56 @@
 "X-Generator: KBabel 1.11.4\n"
 "Plural-Forms: nplurals=2; plural=(n != 1)\n"
 
-#: ../panel-plugin/notes.c:302 ../panel-plugin/notes-options.c:57
-#: ../panel-plugin/notes-window.c:99
+#: ../panel-plugin/notes.c:302 ../panel-plugin/notes-options.c:58
+#: ../panel-plugin/notes-window.c:89
 #: ../panel-plugin/xfce4-notes-plugin.desktop.in.in.h:1
 msgid "Notes"
 msgstr "Oharrak"
 
-#: ../panel-plugin/notes-options.c:62
-msgid "Properties"
-msgstr "Propietateak"
-
-#: ../panel-plugin/notes-options.c:76
-msgid "Show notes at startup"
+#: ../panel-plugin/notes-options.c:75
+#, fuzzy
+msgid "Always show notes at startup"
 msgstr "Erakutsi oharrak abiaraztean"
 
-#: ../panel-plugin/notes-options.c:84
+#: ../panel-plugin/notes-options.c:83
 msgid "Show in the task list"
 msgstr "Erakutsi ataza zerrendan"
 
-#: ../panel-plugin/notes-options.c:94
+#: ../panel-plugin/notes-options.c:93
 msgid "Always on top"
 msgstr "Beti goian"
 
-#: ../panel-plugin/notes-options.c:103
+#: ../panel-plugin/notes-options.c:102
 msgid "Stick mode"
 msgstr "Finkatu"
 
-#: ../panel-plugin/notes-window.c:139
+#: ../panel-plugin/notes-options.c:109
+msgid "Show resize grip"
+msgstr ""
+
+#: ../panel-plugin/notes-window.c:129
 msgid "Create new note"
 msgstr "Ohar berria sortu"
 
-#: ../panel-plugin/notes-window.c:157
+#: ../panel-plugin/notes-window.c:147
 msgid "Delete this note"
 msgstr "Ohar hau ezabatu"
 
-#: ../panel-plugin/notes-window.c:186
+#: ../panel-plugin/notes-window.c:176
 msgid "<b>Notes</b>"
 msgstr "<b>Oharrak</b>"
 
-#: ../panel-plugin/notes-window.c:450
+#: ../panel-plugin/notes-window.c:447
 msgid "Rename"
 msgstr "Berrizendatu"
 
-#: ../panel-plugin/notes-window.c:551
+#: ../panel-plugin/notes-window.c:548
 msgid "Are you sure you want to delete this note?"
 msgstr "Ziur zaude ohar hau ezabatu nahi duzula?"
 
 #: ../panel-plugin/xfce4-notes-plugin.desktop.in.in.h:2
 msgid "Notes plugin for the Xfce4 desktop"
 msgstr "Xfce4 idazmahaierako ohar plugin-a"
+
+#~ msgid "Properties"
+#~ msgstr "Propietateak"

Modified: xfce4-notes-plugin/trunk/po/fr.po
===================================================================
--- xfce4-notes-plugin/trunk/po/fr.po	2006-11-25 11:08:12 UTC (rev 2176)
+++ xfce4-notes-plugin/trunk/po/fr.po	2006-11-25 18:03:12 UTC (rev 2177)
@@ -7,9 +7,9 @@
 # Maximilian Schleiss <maxschleiss at bluewin.ch>, 2006.
 msgid ""
 msgstr ""
-"Project-Id-Version: 1.2.1\n"
+"Project-Id-Version: 1.3.99.2\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-10-05 12:39+0200\n"
+"POT-Creation-Date: 2006-11-25 18:33+0100\n"
 "PO-Revision-Date: 2006-08-02 00:30+0100\n"
 "Last-Translator: Mike Massonnet <mmassonnet at gmail.com>\n"
 "Language-Team: French <xfce-i18n at xfce.org>\n"
@@ -17,52 +17,53 @@
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../panel-plugin/notes.c:302 ../panel-plugin/notes-options.c:57
-#: ../panel-plugin/notes-window.c:99
+#: ../panel-plugin/notes.c:302 ../panel-plugin/notes-options.c:58
+#: ../panel-plugin/notes-window.c:89
 #: ../panel-plugin/xfce4-notes-plugin.desktop.in.in.h:1
 msgid "Notes"
 msgstr "Notes"
 
-#: ../panel-plugin/notes-options.c:62
-msgid "Properties"
-msgstr "Propriétés"
+#: ../panel-plugin/notes-options.c:75
+msgid "Always show notes at startup"
+msgstr "Toujours afficher au démarrage"
 
-#: ../panel-plugin/notes-options.c:76
-msgid "Show notes at startup"
-msgstr "Afficher au démarrage"
-
-#: ../panel-plugin/notes-options.c:84
+#: ../panel-plugin/notes-options.c:83
 msgid "Show in the task list"
 msgstr "Afficher dans le gestionnaire de tâches"
 
-#: ../panel-plugin/notes-options.c:94
+#: ../panel-plugin/notes-options.c:93
 msgid "Always on top"
 msgstr "Toujours en dessus"
 
-#: ../panel-plugin/notes-options.c:103
+#: ../panel-plugin/notes-options.c:102
 msgid "Stick mode"
 msgstr "Coller sur tous les bureaux"
 
-#: ../panel-plugin/notes-window.c:139
+#: ../panel-plugin/notes-options.c:109
+msgid "Show resize grip"
+msgstr "Afficher la poignée de redimensionnement"
+
+#: ../panel-plugin/notes-window.c:129
 msgid "Create new note"
 msgstr "Créer une nouvelle note"
 
-#: ../panel-plugin/notes-window.c:157
+#: ../panel-plugin/notes-window.c:147
 msgid "Delete this note"
 msgstr "Supprimer cette note"
 
-#: ../panel-plugin/notes-window.c:186
+#: ../panel-plugin/notes-window.c:176
 msgid "<b>Notes</b>"
 msgstr "<b>Notes</b>"
 
-#: ../panel-plugin/notes-window.c:450
+#: ../panel-plugin/notes-window.c:447
 msgid "Rename"
 msgstr "Renommer"
 
-#: ../panel-plugin/notes-window.c:551
+#: ../panel-plugin/notes-window.c:548
 msgid "Are you sure you want to delete this note?"
 msgstr "Êtes-vous certain(e) de vouloir supprimer cette note ?"
 
 #: ../panel-plugin/xfce4-notes-plugin.desktop.in.in.h:2
 msgid "Notes plugin for the Xfce4 desktop"
 msgstr "Des Post-It pour le bureau Xfce4"
+

Modified: xfce4-notes-plugin/trunk/po/hu.po
===================================================================
--- xfce4-notes-plugin/trunk/po/hu.po	2006-11-25 11:08:12 UTC (rev 2176)
+++ xfce4-notes-plugin/trunk/po/hu.po	2006-11-25 18:03:12 UTC (rev 2177)
@@ -2,7 +2,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-10-05 12:39+0200\n"
+"POT-Creation-Date: 2006-11-25 18:33+0100\n"
 "PO-Revision-Date: 2006-08-12 15:50+0100\n"
 "Last-Translator: SZERVÁC Attila <sas at 321.hu>\n"
 "Language-Team: hu\n"
@@ -13,49 +13,50 @@
 "X-Poedit-Language: Hungarian\n"
 "X-Poedit-Country: HUNGARY\n"
 
-#: ../panel-plugin/notes.c:302 ../panel-plugin/notes-options.c:57
-#: ../panel-plugin/notes-window.c:99
+#: ../panel-plugin/notes.c:302 ../panel-plugin/notes-options.c:58
+#: ../panel-plugin/notes-window.c:89
 #: ../panel-plugin/xfce4-notes-plugin.desktop.in.in.h:1
 msgid "Notes"
 msgstr "Jegyzetek"
 
-#: ../panel-plugin/notes-options.c:62
-msgid "Properties"
-msgstr "Tulajdonságok"
-
-#: ../panel-plugin/notes-options.c:76
-msgid "Show notes at startup"
+#: ../panel-plugin/notes-options.c:75
+#, fuzzy
+msgid "Always show notes at startup"
 msgstr "Jegyzetek mutatása induláskor"
 
-#: ../panel-plugin/notes-options.c:84
+#: ../panel-plugin/notes-options.c:83
 msgid "Show in the task list"
 msgstr "Mutasd a feladatlistában"
 
-#: ../panel-plugin/notes-options.c:94
+#: ../panel-plugin/notes-options.c:93
 msgid "Always on top"
 msgstr "Mindig felül"
 
-#: ../panel-plugin/notes-options.c:103
+#: ../panel-plugin/notes-options.c:102
 msgid "Stick mode"
 msgstr "Kitűzés"
 
-#: ../panel-plugin/notes-window.c:139
+#: ../panel-plugin/notes-options.c:109
+msgid "Show resize grip"
+msgstr ""
+
+#: ../panel-plugin/notes-window.c:129
 msgid "Create new note"
 msgstr "Új jegyzet"
 
-#: ../panel-plugin/notes-window.c:157
+#: ../panel-plugin/notes-window.c:147
 msgid "Delete this note"
 msgstr "Jegyzet törlése"
 
-#: ../panel-plugin/notes-window.c:186
+#: ../panel-plugin/notes-window.c:176
 msgid "<b>Notes</b>"
 msgstr "<b>Jegyzetek</b>"
 
-#: ../panel-plugin/notes-window.c:450
+#: ../panel-plugin/notes-window.c:447
 msgid "Rename"
 msgstr "Átnevezés"
 
-#: ../panel-plugin/notes-window.c:551
+#: ../panel-plugin/notes-window.c:548
 msgid "Are you sure you want to delete this note?"
 msgstr "Tényleg törlöd e bejegyzést?"
 
@@ -63,6 +64,9 @@
 msgid "Notes plugin for the Xfce4 desktop"
 msgstr "Jegyzettömb beillesztés az Xfce4 panelhoz"
 
+#~ msgid "Properties"
+#~ msgstr "Tulajdonságok"
+
 #~ msgid "Always show vertical scrollbar"
 #~ msgstr "Függőleges görgetősáv mindig"
 

Modified: xfce4-notes-plugin/trunk/po/pl.po
===================================================================
--- xfce4-notes-plugin/trunk/po/pl.po	2006-11-25 11:08:12 UTC (rev 2176)
+++ xfce4-notes-plugin/trunk/po/pl.po	2006-11-25 18:03:12 UTC (rev 2177)
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: xfce-notes-plugin\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-10-05 12:39+0200\n"
+"POT-Creation-Date: 2006-11-25 18:33+0100\n"
 "PO-Revision-Date: 2006-04-08 13:09+0900\n"
 "Last-Translator: Piotr Maliński <admin at rk.edu.pl>\n"
 "Language-Team: Polish <translation-team-pl at lists.sourceforge.net>\n"
@@ -13,52 +13,56 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../panel-plugin/notes.c:302 ../panel-plugin/notes-options.c:57
-#: ../panel-plugin/notes-window.c:99
+#: ../panel-plugin/notes.c:302 ../panel-plugin/notes-options.c:58
+#: ../panel-plugin/notes-window.c:89
 #: ../panel-plugin/xfce4-notes-plugin.desktop.in.in.h:1
 msgid "Notes"
 msgstr "Notatki"
 
-#: ../panel-plugin/notes-options.c:62
-msgid "Properties"
-msgstr "Właściwości"
-
-#: ../panel-plugin/notes-options.c:76
-msgid "Show notes at startup"
+#: ../panel-plugin/notes-options.c:75
+#, fuzzy
+msgid "Always show notes at startup"
 msgstr "Pokazuj Notatki przy starcie"
 
-#: ../panel-plugin/notes-options.c:84
+#: ../panel-plugin/notes-options.c:83
 msgid "Show in the task list"
 msgstr "Pokazuj na liście zadań"
 
-#: ../panel-plugin/notes-options.c:94
+#: ../panel-plugin/notes-options.c:93
 msgid "Always on top"
 msgstr "Zawsze na wierzchu"
 
-#: ../panel-plugin/notes-options.c:103
+#: ../panel-plugin/notes-options.c:102
 msgid "Stick mode"
 msgstr "Przyklejone"
 
-#: ../panel-plugin/notes-window.c:139
+#: ../panel-plugin/notes-options.c:109
+msgid "Show resize grip"
+msgstr ""
+
+#: ../panel-plugin/notes-window.c:129
 msgid "Create new note"
 msgstr "Stwórz nową notatkę"
 
-#: ../panel-plugin/notes-window.c:157
+#: ../panel-plugin/notes-window.c:147
 msgid "Delete this note"
 msgstr "Skasuj notatkę"
 
-#: ../panel-plugin/notes-window.c:186
+#: ../panel-plugin/notes-window.c:176
 msgid "<b>Notes</b>"
 msgstr "<b>Notatki</b>"
 
-#: ../panel-plugin/notes-window.c:450
+#: ../panel-plugin/notes-window.c:447
 msgid "Rename"
 msgstr "Zmień nazwę"
 
-#: ../panel-plugin/notes-window.c:551
+#: ../panel-plugin/notes-window.c:548
 msgid "Are you sure you want to delete this note?"
 msgstr "Skasować tą notatkę?"
 
 #: ../panel-plugin/xfce4-notes-plugin.desktop.in.in.h:2
 msgid "Notes plugin for the Xfce4 desktop"
 msgstr "Wtyczka notatek dla pulpitu Xfce4"
+
+#~ msgid "Properties"
+#~ msgstr "Właściwości"

Modified: xfce4-notes-plugin/trunk/po/xfce4-notes-plugin.pot
===================================================================
--- xfce4-notes-plugin/trunk/po/xfce4-notes-plugin.pot	2006-11-25 11:08:12 UTC (rev 2176)
+++ xfce4-notes-plugin/trunk/po/xfce4-notes-plugin.pot	2006-11-25 18:03:12 UTC (rev 2177)
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-10-05 12:39+0200\n"
+"POT-Creation-Date: 2006-11-25 18:33+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -16,49 +16,49 @@
 "Content-Type: text/plain; charset=CHARSET\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../panel-plugin/notes.c:302 ../panel-plugin/notes-options.c:57
-#: ../panel-plugin/notes-window.c:99
+#: ../panel-plugin/notes.c:302 ../panel-plugin/notes-options.c:58
+#: ../panel-plugin/notes-window.c:89
 #: ../panel-plugin/xfce4-notes-plugin.desktop.in.in.h:1
 msgid "Notes"
 msgstr ""
 
-#: ../panel-plugin/notes-options.c:62
-msgid "Properties"
+#: ../panel-plugin/notes-options.c:75
+msgid "Always show notes at startup"
 msgstr ""
 
-#: ../panel-plugin/notes-options.c:76
-msgid "Show notes at startup"
-msgstr ""
-
-#: ../panel-plugin/notes-options.c:84
+#: ../panel-plugin/notes-options.c:83
 msgid "Show in the task list"
 msgstr ""
 
-#: ../panel-plugin/notes-options.c:94
+#: ../panel-plugin/notes-options.c:93
 msgid "Always on top"
 msgstr ""
 
-#: ../panel-plugin/notes-options.c:103
+#: ../panel-plugin/notes-options.c:102
 msgid "Stick mode"
 msgstr ""
 
-#: ../panel-plugin/notes-window.c:139
+#: ../panel-plugin/notes-options.c:109
+msgid "Show resize grip"
+msgstr ""
+
+#: ../panel-plugin/notes-window.c:129
 msgid "Create new note"
 msgstr ""
 
-#: ../panel-plugin/notes-window.c:157
+#: ../panel-plugin/notes-window.c:147
 msgid "Delete this note"
 msgstr ""
 
-#: ../panel-plugin/notes-window.c:186
+#: ../panel-plugin/notes-window.c:176
 msgid "<b>Notes</b>"
 msgstr ""
 
-#: ../panel-plugin/notes-window.c:450
+#: ../panel-plugin/notes-window.c:447
 msgid "Rename"
 msgstr ""
 
-#: ../panel-plugin/notes-window.c:551
+#: ../panel-plugin/notes-window.c:548
 msgid "Are you sure you want to delete this note?"
 msgstr ""
 

Modified: xfce4-notes-plugin/trunk/po/zh_TW.po
===================================================================
--- xfce4-notes-plugin/trunk/po/zh_TW.po	2006-11-25 11:08:12 UTC (rev 2176)
+++ xfce4-notes-plugin/trunk/po/zh_TW.po	2006-11-25 18:03:12 UTC (rev 2177)
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-notes-plugin 1.2.1\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-10-05 12:39+0200\n"
+"POT-Creation-Date: 2006-11-25 18:33+0100\n"
 "PO-Revision-Date: 2006-07-25 16:52+0800\n"
 "Last-Translator: Cosmo Chene <cosmolax at gmail.com>\n"
 "Language-Team: Tradictional Chinese <zh-l10n at linux.org.tw>\n"
@@ -16,50 +16,51 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../panel-plugin/notes.c:302 ../panel-plugin/notes-options.c:57
-#: ../panel-plugin/notes-window.c:99
+#: ../panel-plugin/notes.c:302 ../panel-plugin/notes-options.c:58
+#: ../panel-plugin/notes-window.c:89
 #: ../panel-plugin/xfce4-notes-plugin.desktop.in.in.h:1
 msgid "Notes"
 msgstr "小筆記"
 
-#: ../panel-plugin/notes-options.c:62
-msgid "Properties"
-msgstr "內容"
-
-#: ../panel-plugin/notes-options.c:76
-msgid "Show notes at startup"
+#: ../panel-plugin/notes-options.c:75
+#, fuzzy
+msgid "Always show notes at startup"
 msgstr "啟動時顯示小筆記"
 
-#: ../panel-plugin/notes-options.c:84
+#: ../panel-plugin/notes-options.c:83
 #, fuzzy
 msgid "Show in the task list"
 msgstr "在工作切換框中顯示"
 
-#: ../panel-plugin/notes-options.c:94
+#: ../panel-plugin/notes-options.c:93
 msgid "Always on top"
 msgstr "置於最上層"
 
-#: ../panel-plugin/notes-options.c:103
+#: ../panel-plugin/notes-options.c:102
 msgid "Stick mode"
 msgstr "附黏模式"
 
-#: ../panel-plugin/notes-window.c:139
+#: ../panel-plugin/notes-options.c:109
+msgid "Show resize grip"
+msgstr ""
+
+#: ../panel-plugin/notes-window.c:129
 msgid "Create new note"
 msgstr ""
 
-#: ../panel-plugin/notes-window.c:157
+#: ../panel-plugin/notes-window.c:147
 msgid "Delete this note"
 msgstr ""
 
-#: ../panel-plugin/notes-window.c:186
+#: ../panel-plugin/notes-window.c:176
 msgid "<b>Notes</b>"
 msgstr "<b>小筆記</b>"
 
-#: ../panel-plugin/notes-window.c:450
+#: ../panel-plugin/notes-window.c:447
 msgid "Rename"
 msgstr ""
 
-#: ../panel-plugin/notes-window.c:551
+#: ../panel-plugin/notes-window.c:548
 msgid "Are you sure you want to delete this note?"
 msgstr ""
 
@@ -68,9 +69,11 @@
 msgid "Notes plugin for the Xfce4 desktop"
 msgstr "Xfce4 面板上的小筆記外掛程式"
 
+#~ msgid "Properties"
+#~ msgstr "內容"
+
 #~ msgid "Always show vertical scrollbar"
 #~ msgstr "永遠顯示垂直捲動條"
 
 #~ msgid "Open a new page"
 #~ msgstr "開啟新頁面"
-




More information about the Goodies-commits mailing list