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

Mike Massonnet mmassonnet at xfce.org
Thu Oct 5 12:45:04 CEST 2006


Author: mmassonnet
Date: 2006-10-05 10:44:59 +0000 (Thu, 05 Oct 2006)
New Revision: 2089

Modified:
   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.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/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:
	* panel-plugin/notes.{c,h}: Add a default behavior to reset the last
	  state of the visibility of the window after restart.
	* po/*: update-po.
	* panel-plugin/{notes.c,notes-window.c}: Unshade on new page.

Modified: xfce4-notes-plugin/trunk/ChangeLog
===================================================================
--- xfce4-notes-plugin/trunk/ChangeLog	2006-10-05 10:22:33 UTC (rev 2088)
+++ xfce4-notes-plugin/trunk/ChangeLog	2006-10-05 10:44:59 UTC (rev 2089)
@@ -1,3 +1,13 @@
+2006-10-03	Mike Massonnet <mmassonnet at gmail.com>
+
+	* panel-plugin/notes.{c,h}: Add a default behavior to reset the last
+	  state of the visibility of the window after restart.
+	* po/*: update-po.
+
+2006-09-24	Mike Massonnet <mmassonnet at gmail.com>
+
+	* panel-plugin/{notes.c,notes-window.c}: Unshade on new page.
+
 2006-09-17	Mike Massonnet <mmassonnet at gmail.com>
 
 	* panel-plugin/notes-window.c: Cycle through the tabs.

Modified: xfce4-notes-plugin/trunk/panel-plugin/notes-options.c
===================================================================
--- xfce4-notes-plugin/trunk/panel-plugin/notes-options.c	2006-10-05 10:22:33 UTC (rev 2088)
+++ xfce4-notes-plugin/trunk/panel-plugin/notes-options.c	2006-10-05 10:44:59 UTC (rev 2089)
@@ -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_vert_text_label (GtkWidget *, NotesPlugin *);
 
 
 GtkWidget *

Modified: xfce4-notes-plugin/trunk/panel-plugin/notes-window.c
===================================================================
--- xfce4-notes-plugin/trunk/panel-plugin/notes-window.c	2006-10-05 10:22:33 UTC (rev 2088)
+++ xfce4-notes-plugin/trunk/panel-plugin/notes-window.c	2006-10-05 10:44:59 UTC (rev 2089)
@@ -525,6 +525,9 @@
 {
     note_page_new (notes->plugin, notes);
     gtk_notebook_set_current_page (GTK_NOTEBOOK (notes->note->notebook), -1);
+    /* Show the text view */
+    gtk_widget_show (notes->note->notebook);
+    gtk_window_resize (GTK_WINDOW (notes->note->window), notes->note->w, notes->note->h);
 }
 
 static gboolean

Modified: xfce4-notes-plugin/trunk/panel-plugin/notes.c
===================================================================
--- xfce4-notes-plugin/trunk/panel-plugin/notes.c	2006-10-05 10:22:33 UTC (rev 2088)
+++ xfce4-notes-plugin/trunk/panel-plugin/notes.c	2006-10-05 10:44:59 UTC (rev 2089)
@@ -139,12 +139,12 @@
         xfce_rc_write_int_entry (rc, "width", notes->note->w);
         xfce_rc_write_int_entry (rc, "height", notes->note->h);
 
+        xfce_rc_write_bool_entry (rc, "visible", GTK_WIDGET_VISIBLE (notes->note->window));
         xfce_rc_write_bool_entry (rc, "show", notes->options.show);
-        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, "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, "VerticalTextLabel", notes->options.vert_text_label);
 
         pages = notes->note->pages;
         xfce_rc_set_group (rc, "notes");
@@ -274,7 +274,7 @@
     g_signal_connect (plugin, "configure-plugin",
                       G_CALLBACK (notes_configure), notes);
 
-    if (notes->options.show)
+    if (notes->options.show || notes->options.visible)
         gtk_button_clicked (GTK_BUTTON (notes->button));
 }
 
@@ -345,12 +345,12 @@
         notes->note->w = xfce_rc_read_int_entry (rc, "width", 242);
         notes->note->h = xfce_rc_read_int_entry (rc, "height", 200);
 
+        notes->options.visible = xfce_rc_read_bool_entry (rc, "visible", FALSE);
         notes->options.show = xfce_rc_read_bool_entry (rc, "show", FALSE);
-        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.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.vert_text_label = xfce_rc_read_bool_entry (rc, "VerticalTextLabel", TRUE);
 
         xfce_rc_close (rc);
       }
@@ -419,7 +419,14 @@
     if (ev->data_format == 8 && *(ev->data.b) != '\0')
       {
         if (!strcmp (XFCE_NOTES_MESSAGE, ev->data.b))
-            return notes_button_clicked (notes->plugin, notes);
+          {
+            notes_button_clicked (notes->plugin, notes);
+            /* Show the text view */
+            gtk_widget_show (notes->note->notebook);
+            gtk_window_resize (GTK_WINDOW (notes->note->window), 
+                               notes->note->w, notes->note->h);
+            return TRUE;
+          }
       }
 
     return FALSE;

Modified: xfce4-notes-plugin/trunk/panel-plugin/notes.h
===================================================================
--- xfce4-notes-plugin/trunk/panel-plugin/notes.h	2006-10-05 10:22:33 UTC (rev 2088)
+++ xfce4-notes-plugin/trunk/panel-plugin/notes.h	2006-10-05 10:44:59 UTC (rev 2089)
@@ -26,6 +26,7 @@
 
 typedef struct
 {
+    gboolean visible;
     gboolean show;
     gboolean task_switcher;
     gboolean always_on_top;

Modified: xfce4-notes-plugin/trunk/po/ca.po
===================================================================
--- xfce4-notes-plugin/trunk/po/ca.po	2006-10-05 10:22:33 UTC (rev 2088)
+++ xfce4-notes-plugin/trunk/po/ca.po	2006-10-05 10:44:59 UTC (rev 2089)
@@ -9,61 +9,61 @@
 msgstr ""
 "Project-Id-Version: xfce4-notes-plugin 1.3.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-09-10 21:12+0200\n"
+"POT-Creation-Date: 2006-10-05 11:56+0200\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"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit"
+"Content-Transfer-Encoding: 8bit\n"
 
-#: ../panel-plugin/notes.c:296 ../panel-plugin/notes-options.c:56
-#: ../panel-plugin/notes-window.c:68
+#: ../panel-plugin/notes.c:302 ../panel-plugin/notes-options.c:57
+#: ../panel-plugin/notes-window.c:99
 #: ../panel-plugin/xfce4-notes-plugin.desktop.in.in.h:1
 msgid "Notes"
 msgstr "Notes"
 
-#: ../panel-plugin/notes-options.c:61
+#: ../panel-plugin/notes-options.c:62
 msgid "Properties"
 msgstr "Propietats"
 
-#: ../panel-plugin/notes-options.c:75
+#: ../panel-plugin/notes-options.c:76
+#, fuzzy
 msgid "Show notes at startup"
 msgstr "Mostra les notes en engegar"
 
-#: ../panel-plugin/notes-options.c:83
+#: ../panel-plugin/notes-options.c:84
 msgid "Show in the task list"
 msgstr "Mostra dins el llistat de tasques"
 
-#: ../panel-plugin/notes-options.c:93
+#: ../panel-plugin/notes-options.c:94
 msgid "Always on top"
 msgstr "Sempre en primer pla"
 
-#: ../panel-plugin/notes-options.c:102
+#: ../panel-plugin/notes-options.c:103
 msgid "Stick mode"
 msgstr "Mode enganxós"
 
-#: ../panel-plugin/notes-window.c:108
+#: ../panel-plugin/notes-window.c:139
 msgid "Create new note"
 msgstr "Crea una nota nova"
 
-#: ../panel-plugin/notes-window.c:126
+#: ../panel-plugin/notes-window.c:157
 msgid "Delete this note"
 msgstr "Suprimeix aquesta nota"
 
-#: ../panel-plugin/notes-window.c:155
+#: ../panel-plugin/notes-window.c:186
 msgid "<b>Notes</b>"
 msgstr "<b>Notes</b>"
 
-#: ../panel-plugin/notes-window.c:397
+#: ../panel-plugin/notes-window.c:450
 msgid "Rename"
 msgstr "Reanomena"
 
-#: ../panel-plugin/notes-window.c:487
+#: ../panel-plugin/notes-window.c:551
 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"
-

Modified: xfce4-notes-plugin/trunk/po/cs.po
===================================================================
--- xfce4-notes-plugin/trunk/po/cs.po	2006-10-05 10:22:33 UTC (rev 2088)
+++ xfce4-notes-plugin/trunk/po/cs.po	2006-10-05 10:44:59 UTC (rev 2089)
@@ -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-09-10 21:29+0200\n"
+"POT-Creation-Date: 2006-10-05 11:56+0200\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,49 +16,50 @@
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
 
-#: ../panel-plugin/notes.c:296 ../panel-plugin/notes-options.c:56
-#: ../panel-plugin/notes-window.c:68
+#: ../panel-plugin/notes.c:302 ../panel-plugin/notes-options.c:57
+#: ../panel-plugin/notes-window.c:99
 #: ../panel-plugin/xfce4-notes-plugin.desktop.in.in.h:1
 msgid "Notes"
 msgstr "Poznámky"
 
-#: ../panel-plugin/notes-options.c:61
+#: ../panel-plugin/notes-options.c:62
 msgid "Properties"
 msgstr "Vlastnosti"
 
-#: ../panel-plugin/notes-options.c:75
+#: ../panel-plugin/notes-options.c:76
+#, fuzzy
 msgid "Show notes at startup"
 msgstr "Zobrazovat poznámky po spuštění"
 
-#: ../panel-plugin/notes-options.c:83
+#: ../panel-plugin/notes-options.c:84
 msgid "Show in the task list"
 msgstr "Zobrazovat v seznamu úloh"
 
-#: ../panel-plugin/notes-options.c:93
+#: ../panel-plugin/notes-options.c:94
 msgid "Always on top"
 msgstr "Vždy nahoře"
 
-#: ../panel-plugin/notes-options.c:102
+#: ../panel-plugin/notes-options.c:103
 msgid "Stick mode"
 msgstr "Režim přilepení"
 
-#: ../panel-plugin/notes-window.c:108
+#: ../panel-plugin/notes-window.c:139
 msgid "Create new note"
 msgstr "Vytvořit novou poznámku"
 
-#: ../panel-plugin/notes-window.c:126
+#: ../panel-plugin/notes-window.c:157
 msgid "Delete this note"
 msgstr "Smazat tuto poznámku"
 
-#: ../panel-plugin/notes-window.c:155
+#: ../panel-plugin/notes-window.c:186
 msgid "<b>Notes</b>"
 msgstr "<b>Poznámky</b>"
 
-#: ../panel-plugin/notes-window.c:397
+#: ../panel-plugin/notes-window.c:450
 msgid "Rename"
 msgstr "Přejmenovat"
 
-#: ../panel-plugin/notes-window.c:487
+#: ../panel-plugin/notes-window.c:551
 msgid "Are you sure you want to delete this note?"
 msgstr "Opravdu chcete smazat tuto poznámku?"
 

Modified: xfce4-notes-plugin/trunk/po/de.po
===================================================================
--- xfce4-notes-plugin/trunk/po/de.po	2006-10-05 10:22:33 UTC (rev 2088)
+++ xfce4-notes-plugin/trunk/po/de.po	2006-10-05 10:44:59 UTC (rev 2089)
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: 1.3.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-09-10 21:29+0200\n"
+"POT-Creation-Date: 2006-10-05 11:56+0200\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,49 +17,50 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../panel-plugin/notes.c:296 ../panel-plugin/notes-options.c:56
-#: ../panel-plugin/notes-window.c:68
+#: ../panel-plugin/notes.c:302 ../panel-plugin/notes-options.c:57
+#: ../panel-plugin/notes-window.c:99
 #: ../panel-plugin/xfce4-notes-plugin.desktop.in.in.h:1
 msgid "Notes"
 msgstr "Notizen"
 
-#: ../panel-plugin/notes-options.c:61
+#: ../panel-plugin/notes-options.c:62
 msgid "Properties"
 msgstr "Konfiguration"
 
-#: ../panel-plugin/notes-options.c:75
+#: ../panel-plugin/notes-options.c:76
+#, fuzzy
 msgid "Show notes at startup"
 msgstr "Notizen beim Start zeigen"
 
-#: ../panel-plugin/notes-options.c:83
+#: ../panel-plugin/notes-options.c:84
 msgid "Show in the task list"
 msgstr "In der Taskliste anzeigen"
 
-#: ../panel-plugin/notes-options.c:93
+#: ../panel-plugin/notes-options.c:94
 msgid "Always on top"
 msgstr "Immer obenauf"
 
-#: ../panel-plugin/notes-options.c:102
+#: ../panel-plugin/notes-options.c:103
 msgid "Stick mode"
 msgstr "Festkleben"
 
-#: ../panel-plugin/notes-window.c:108
+#: ../panel-plugin/notes-window.c:139
 msgid "Create new note"
 msgstr "Neue Notiz"
 
-#: ../panel-plugin/notes-window.c:126
+#: ../panel-plugin/notes-window.c:157
 msgid "Delete this note"
 msgstr "Diese Notiz löschen"
 
-#: ../panel-plugin/notes-window.c:155
+#: ../panel-plugin/notes-window.c:186
 msgid "<b>Notes</b>"
 msgstr "<b>Notizen</b>"
 
-#: ../panel-plugin/notes-window.c:397
+#: ../panel-plugin/notes-window.c:450
 msgid "Rename"
 msgstr "Umbenennen"
 
-#: ../panel-plugin/notes-window.c:487
+#: ../panel-plugin/notes-window.c:551
 msgid "Are you sure you want to delete this note?"
 msgstr "Sind Sie sicher, dass Sie diese Notiz löschen möchten?"
 

Modified: xfce4-notes-plugin/trunk/po/fr.po
===================================================================
--- xfce4-notes-plugin/trunk/po/fr.po	2006-10-05 10:22:33 UTC (rev 2088)
+++ xfce4-notes-plugin/trunk/po/fr.po	2006-10-05 10:44:59 UTC (rev 2089)
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: 1.2.1\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-09-10 21:29+0200\n"
+"POT-Creation-Date: 2006-10-05 11:56+0200\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,49 +17,50 @@
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../panel-plugin/notes.c:296 ../panel-plugin/notes-options.c:56
-#: ../panel-plugin/notes-window.c:68
+#: ../panel-plugin/notes.c:302 ../panel-plugin/notes-options.c:57
+#: ../panel-plugin/notes-window.c:99
 #: ../panel-plugin/xfce4-notes-plugin.desktop.in.in.h:1
 msgid "Notes"
 msgstr "Notes"
 
-#: ../panel-plugin/notes-options.c:61
+#: ../panel-plugin/notes-options.c:62
 msgid "Properties"
 msgstr "Propriétés"
 
-#: ../panel-plugin/notes-options.c:75
+#: ../panel-plugin/notes-options.c:76
+#, fuzzy
 msgid "Show notes at startup"
 msgstr "Afficher au démarrage"
 
-#: ../panel-plugin/notes-options.c:83
+#: ../panel-plugin/notes-options.c:84
 msgid "Show in the task list"
 msgstr "Afficher dans le gestionnaire de tâches"
 
-#: ../panel-plugin/notes-options.c:93
+#: ../panel-plugin/notes-options.c:94
 msgid "Always on top"
 msgstr "Toujours en dessus"
 
-#: ../panel-plugin/notes-options.c:102
+#: ../panel-plugin/notes-options.c:103
 msgid "Stick mode"
 msgstr "Coller sur tous les bureaux"
 
-#: ../panel-plugin/notes-window.c:108
+#: ../panel-plugin/notes-window.c:139
 msgid "Create new note"
 msgstr "Créer une nouvelle note"
 
-#: ../panel-plugin/notes-window.c:126
+#: ../panel-plugin/notes-window.c:157
 msgid "Delete this note"
 msgstr "Supprimer cette note"
 
-#: ../panel-plugin/notes-window.c:155
+#: ../panel-plugin/notes-window.c:186
 msgid "<b>Notes</b>"
 msgstr "<b>Notes</b>"
 
-#: ../panel-plugin/notes-window.c:397
+#: ../panel-plugin/notes-window.c:450
 msgid "Rename"
 msgstr "Renommer"
 
-#: ../panel-plugin/notes-window.c:487
+#: ../panel-plugin/notes-window.c:551
 msgid "Are you sure you want to delete this note?"
 msgstr "Êtes-vous certain(e) de vouloir supprimer cette note ?"
 

Modified: xfce4-notes-plugin/trunk/po/hu.po
===================================================================
--- xfce4-notes-plugin/trunk/po/hu.po	2006-10-05 10:22:33 UTC (rev 2088)
+++ xfce4-notes-plugin/trunk/po/hu.po	2006-10-05 10:44:59 UTC (rev 2089)
@@ -2,7 +2,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-09-10 21:29+0200\n"
+"POT-Creation-Date: 2006-10-05 11:56+0200\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:296 ../panel-plugin/notes-options.c:56
-#: ../panel-plugin/notes-window.c:68
+#: ../panel-plugin/notes.c:302 ../panel-plugin/notes-options.c:57
+#: ../panel-plugin/notes-window.c:99
 #: ../panel-plugin/xfce4-notes-plugin.desktop.in.in.h:1
 msgid "Notes"
 msgstr "Jegyzetek"
 
-#: ../panel-plugin/notes-options.c:61
+#: ../panel-plugin/notes-options.c:62
 msgid "Properties"
 msgstr "Tulajdonságok"
 
-#: ../panel-plugin/notes-options.c:75
+#: ../panel-plugin/notes-options.c:76
+#, fuzzy
 msgid "Show notes at startup"
 msgstr "Jegyzetek mutatása induláskor"
 
-#: ../panel-plugin/notes-options.c:83
+#: ../panel-plugin/notes-options.c:84
 msgid "Show in the task list"
 msgstr "Mutasd a feladatlistában"
 
-#: ../panel-plugin/notes-options.c:93
+#: ../panel-plugin/notes-options.c:94
 msgid "Always on top"
 msgstr "Mindig felül"
 
-#: ../panel-plugin/notes-options.c:102
+#: ../panel-plugin/notes-options.c:103
 msgid "Stick mode"
 msgstr "Kitűzés"
 
-#: ../panel-plugin/notes-window.c:108
+#: ../panel-plugin/notes-window.c:139
 msgid "Create new note"
 msgstr "Új jegyzet"
 
-#: ../panel-plugin/notes-window.c:126
+#: ../panel-plugin/notes-window.c:157
 msgid "Delete this note"
 msgstr "Jegyzet törlése"
 
-#: ../panel-plugin/notes-window.c:155
+#: ../panel-plugin/notes-window.c:186
 msgid "<b>Notes</b>"
 msgstr "<b>Jegyzetek</b>"
 
-#: ../panel-plugin/notes-window.c:397
+#: ../panel-plugin/notes-window.c:450
 msgid "Rename"
 msgstr "Átnevezés"
 
-#: ../panel-plugin/notes-window.c:487
+#: ../panel-plugin/notes-window.c:551
 msgid "Are you sure you want to delete this note?"
 msgstr "Tényleg törlöd e bejegyzést?"
 

Modified: xfce4-notes-plugin/trunk/po/pl.po
===================================================================
--- xfce4-notes-plugin/trunk/po/pl.po	2006-10-05 10:22:33 UTC (rev 2088)
+++ xfce4-notes-plugin/trunk/po/pl.po	2006-10-05 10:44:59 UTC (rev 2089)
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: xfce-notes-plugin\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-09-10 21:29+0200\n"
+"POT-Creation-Date: 2006-10-05 11:56+0200\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,49 +13,50 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../panel-plugin/notes.c:296 ../panel-plugin/notes-options.c:56
-#: ../panel-plugin/notes-window.c:68
+#: ../panel-plugin/notes.c:302 ../panel-plugin/notes-options.c:57
+#: ../panel-plugin/notes-window.c:99
 #: ../panel-plugin/xfce4-notes-plugin.desktop.in.in.h:1
 msgid "Notes"
 msgstr "Notatki"
 
-#: ../panel-plugin/notes-options.c:61
+#: ../panel-plugin/notes-options.c:62
 msgid "Properties"
 msgstr "Właściwości"
 
-#: ../panel-plugin/notes-options.c:75
+#: ../panel-plugin/notes-options.c:76
+#, fuzzy
 msgid "Show notes at startup"
 msgstr "Pokazuj Notatki przy starcie"
 
-#: ../panel-plugin/notes-options.c:83
+#: ../panel-plugin/notes-options.c:84
 msgid "Show in the task list"
 msgstr "Pokazuj na liście zadań"
 
-#: ../panel-plugin/notes-options.c:93
+#: ../panel-plugin/notes-options.c:94
 msgid "Always on top"
 msgstr "Zawsze na wierzchu"
 
-#: ../panel-plugin/notes-options.c:102
+#: ../panel-plugin/notes-options.c:103
 msgid "Stick mode"
 msgstr "Przyklejone"
 
-#: ../panel-plugin/notes-window.c:108
+#: ../panel-plugin/notes-window.c:139
 msgid "Create new note"
 msgstr "Stwórz nową notatkę"
 
-#: ../panel-plugin/notes-window.c:126
+#: ../panel-plugin/notes-window.c:157
 msgid "Delete this note"
 msgstr "Skasuj notatkę"
 
-#: ../panel-plugin/notes-window.c:155
+#: ../panel-plugin/notes-window.c:186
 msgid "<b>Notes</b>"
 msgstr "<b>Notatki</b>"
 
-#: ../panel-plugin/notes-window.c:397
+#: ../panel-plugin/notes-window.c:450
 msgid "Rename"
 msgstr "Zmień nazwę"
 
-#: ../panel-plugin/notes-window.c:487
+#: ../panel-plugin/notes-window.c:551
 msgid "Are you sure you want to delete this note?"
 msgstr "Skasować tą notatkę?"
 

Modified: xfce4-notes-plugin/trunk/po/xfce4-notes-plugin.pot
===================================================================
--- xfce4-notes-plugin/trunk/po/xfce4-notes-plugin.pot	2006-10-05 10:22:33 UTC (rev 2088)
+++ xfce4-notes-plugin/trunk/po/xfce4-notes-plugin.pot	2006-10-05 10:44:59 UTC (rev 2089)
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-09-10 21:12+0200\n"
+"POT-Creation-Date: 2006-10-05 11:56+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"
@@ -16,49 +16,49 @@
 "Content-Type: text/plain; charset=CHARSET\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../panel-plugin/notes.c:296 ../panel-plugin/notes-options.c:56
-#: ../panel-plugin/notes-window.c:68
+#: ../panel-plugin/notes.c:302 ../panel-plugin/notes-options.c:57
+#: ../panel-plugin/notes-window.c:99
 #: ../panel-plugin/xfce4-notes-plugin.desktop.in.in.h:1
 msgid "Notes"
 msgstr ""
 
-#: ../panel-plugin/notes-options.c:61
+#: ../panel-plugin/notes-options.c:62
 msgid "Properties"
 msgstr ""
 
-#: ../panel-plugin/notes-options.c:75
+#: ../panel-plugin/notes-options.c:76
 msgid "Show notes at startup"
 msgstr ""
 
-#: ../panel-plugin/notes-options.c:83
+#: ../panel-plugin/notes-options.c:84
 msgid "Show in the task list"
 msgstr ""
 
-#: ../panel-plugin/notes-options.c:93
+#: ../panel-plugin/notes-options.c:94
 msgid "Always on top"
 msgstr ""
 
-#: ../panel-plugin/notes-options.c:102
+#: ../panel-plugin/notes-options.c:103
 msgid "Stick mode"
 msgstr ""
 
-#: ../panel-plugin/notes-window.c:108
+#: ../panel-plugin/notes-window.c:139
 msgid "Create new note"
 msgstr ""
 
-#: ../panel-plugin/notes-window.c:126
+#: ../panel-plugin/notes-window.c:157
 msgid "Delete this note"
 msgstr ""
 
-#: ../panel-plugin/notes-window.c:155
+#: ../panel-plugin/notes-window.c:186
 msgid "<b>Notes</b>"
 msgstr ""
 
-#: ../panel-plugin/notes-window.c:397
+#: ../panel-plugin/notes-window.c:450
 msgid "Rename"
 msgstr ""
 
-#: ../panel-plugin/notes-window.c:487
+#: ../panel-plugin/notes-window.c:551
 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-10-05 10:22:33 UTC (rev 2088)
+++ xfce4-notes-plugin/trunk/po/zh_TW.po	2006-10-05 10:44:59 UTC (rev 2089)
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-notes-plugin 1.2.1\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-09-10 21:29+0200\n"
+"POT-Creation-Date: 2006-10-05 11:56+0200\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,51 +16,51 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../panel-plugin/notes.c:296 ../panel-plugin/notes-options.c:56
-#: ../panel-plugin/notes-window.c:68
+#: ../panel-plugin/notes.c:302 ../panel-plugin/notes-options.c:57
+#: ../panel-plugin/notes-window.c:99
 #: ../panel-plugin/xfce4-notes-plugin.desktop.in.in.h:1
 msgid "Notes"
 msgstr "小筆記"
 
-#: ../panel-plugin/notes-options.c:61
+#: ../panel-plugin/notes-options.c:62
 msgid "Properties"
 msgstr "內容"
 
-#: ../panel-plugin/notes-options.c:75
+#: ../panel-plugin/notes-options.c:76
 #, fuzzy
 msgid "Show notes at startup"
 msgstr "啟動時顯示小筆記"
 
-#: ../panel-plugin/notes-options.c:83
+#: ../panel-plugin/notes-options.c:84
 #, fuzzy
 msgid "Show in the task list"
 msgstr "在工作切換框中顯示"
 
-#: ../panel-plugin/notes-options.c:93
+#: ../panel-plugin/notes-options.c:94
 msgid "Always on top"
 msgstr "置於最上層"
 
-#: ../panel-plugin/notes-options.c:102
+#: ../panel-plugin/notes-options.c:103
 msgid "Stick mode"
 msgstr "附黏模式"
 
-#: ../panel-plugin/notes-window.c:108
+#: ../panel-plugin/notes-window.c:139
 msgid "Create new note"
 msgstr ""
 
-#: ../panel-plugin/notes-window.c:126
+#: ../panel-plugin/notes-window.c:157
 msgid "Delete this note"
 msgstr ""
 
-#: ../panel-plugin/notes-window.c:155
+#: ../panel-plugin/notes-window.c:186
 msgid "<b>Notes</b>"
 msgstr "<b>小筆記</b>"
 
-#: ../panel-plugin/notes-window.c:397
+#: ../panel-plugin/notes-window.c:450
 msgid "Rename"
 msgstr ""
 
-#: ../panel-plugin/notes-window.c:487
+#: ../panel-plugin/notes-window.c:551
 msgid "Are you sure you want to delete this note?"
 msgstr ""
 




More information about the Goodies-commits mailing list