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

Jannis Pohlmann jannis at xfce.org
Tue Aug 1 22:15:16 CEST 2006


Author: jannis
Date: 2006-08-01 20:15:13 +0000 (Tue, 01 Aug 2006)
New Revision: 1829

Modified:
   xfce4-notes-plugin/trunk/ChangeLog
   xfce4-notes-plugin/trunk/configure.in.in
   xfce4-notes-plugin/trunk/panel-plugin/notes-options.c
   xfce4-notes-plugin/trunk/panel-plugin/notes-window.c
   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/xfce4-notes-plugin.pot
   xfce4-notes-plugin/trunk/po/zh_TW.po
Log:
        - configure.in.in: Fixed LINGUAS (removed the quotes around it).
        - panel-plugin/notes-options.c: Added a 12 pixel border around
          the config options to be consistent with other plugins.
        - panel-plugin/notes-window.c: Added 6 pixel border of notebook 
          tabs, which makes it easier to click on them (AFAIK).
        - panel-plugin/*.c: Cleaned up the English strings. 
        - po/*.po, po/xfce4-notes-plugin.pot: New strings merged.
        - po/de.po: German translations updated once again.




Modified: xfce4-notes-plugin/trunk/ChangeLog
===================================================================
--- xfce4-notes-plugin/trunk/ChangeLog	2006-08-01 18:30:11 UTC (rev 1828)
+++ xfce4-notes-plugin/trunk/ChangeLog	2006-08-01 20:15:13 UTC (rev 1829)
@@ -1,4 +1,13 @@
 + 2006/08/01    jannis
+	- configure.in.in: Fixed LINGUAS (removed the quotes around it).
+	- panel-plugin/notes-options.c: Added a 12 pixel border around
+	  the config options to be consistent with other plugins.
+	- panel-plugin/notes-window.c: Added 6 pixel border of notebook 
+	  tabs, which makes it easier to click on them (AFAIK).
+	- panel-plugin/*.c: Cleaned up the English strings. 
+	- po/*.po, po/xfce4-notes-plugin.pot: New strings merged.
+	- po/de.po: German translations updated once again.
++ 2006/08/01    jannis
 	- configure.in.in: Removed configure.ac to configure.in.in as 
 	  needed by autogen.sh. 
 + 2006/07/33    mmassonnet

Modified: xfce4-notes-plugin/trunk/configure.in.in
===================================================================
--- xfce4-notes-plugin/trunk/configure.in.in	2006-08-01 18:30:11 UTC (rev 1828)
+++ xfce4-notes-plugin/trunk/configure.in.in	2006-08-01 20:15:13 UTC (rev 1829)
@@ -45,7 +45,7 @@
 XDT_CHECK_PACKAGE([LIBXFCE4PANEL], [libxfce4panel-1.0], [4.3.90])
 
 dnl Translations
-XDT_I18N(["@LINGUAS@"])
+XDT_I18N([@LINGUAS@])
 
 dnl Check for debugging support
 XDT_FEATURE_DEBUG()

Modified: xfce4-notes-plugin/trunk/panel-plugin/notes-options.c
===================================================================
--- xfce4-notes-plugin/trunk/panel-plugin/notes-options.c	2006-08-01 18:30:11 UTC (rev 1828)
+++ xfce4-notes-plugin/trunk/panel-plugin/notes-options.c	2006-08-01 20:15:13 UTC (rev 1829)
@@ -56,7 +56,7 @@
     options = &notes->options;
 
     dialog =
-        xfce_titled_dialog_new_with_buttons (_("Notes Plugin"), NULL,
+        xfce_titled_dialog_new_with_buttons (_("Notes"), NULL,
                                              GTK_DIALOG_NO_SEPARATOR,
                                              GTK_STOCK_CLOSE, GTK_RESPONSE_OK,
                                              NULL);
@@ -68,10 +68,14 @@
     gtk_window_set_keep_above (GTK_WINDOW (dialog), TRUE);
     gtk_window_stick (GTK_WINDOW (dialog));
 
-    vbox = GTK_DIALOG (dialog)->vbox;
-    gtk_box_set_spacing (GTK_BOX (vbox), 2);
+    /* Create main box */
+    vbox = gtk_vbox_new (2, FALSE);
+    gtk_container_add (GTK_CONTAINER (GTK_DIALOG (dialog)->vbox), vbox);
+    gtk_widget_show (vbox);
 
-    cb_show = gtk_check_button_new_with_label (_("Show the notes at startup"));
+    gtk_container_set_border_width (GTK_CONTAINER (vbox), 12);
+
+    cb_show = gtk_check_button_new_with_label (_("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);
@@ -79,7 +83,7 @@
     g_signal_connect (cb_show, "toggled", G_CALLBACK (on_toggle_show), notes);
 
     cb_task_switcher =
-        gtk_check_button_new_with_label (_("Show in the task switcher"));
+        gtk_check_button_new_with_label (_("Show in the task list"));
     gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (cb_task_switcher),
                                   options->task_switcher);
     gtk_box_pack_start (GTK_BOX (vbox), cb_task_switcher, FALSE, FALSE, 0);

Modified: xfce4-notes-plugin/trunk/panel-plugin/notes-window.c
===================================================================
--- xfce4-notes-plugin/trunk/panel-plugin/notes-window.c	2006-08-01 18:30:11 UTC (rev 1828)
+++ xfce4-notes-plugin/trunk/panel-plugin/notes-window.c	2006-08-01 20:15:13 UTC (rev 1829)
@@ -96,7 +96,7 @@
     gtk_widget_show (note->add);
 
     gtk_tooltips_set_tip (GTK_TOOLTIPS (notes->tooltips), note->add,
-                          _("Open a new page"), NULL);
+                          _("Create new note"), NULL);
     gtk_widget_set_size_request (note->add, 22, 22);
     gtk_box_pack_start (GTK_BOX (note->hbox), note->add, FALSE, FALSE, 0);
 
@@ -112,7 +112,7 @@
     gtk_widget_show (note->del);
 
     gtk_tooltips_set_tip (GTK_TOOLTIPS (notes->tooltips), note->del,
-                          _("Delete a page"), NULL);
+                          _("Delete this note"), NULL);
     gtk_widget_set_size_request (note->del, 22, 22);
     gtk_box_pack_start (GTK_BOX (note->hbox), note->del, FALSE, FALSE, 0);
 
@@ -169,6 +169,7 @@
 
     /* Notebook */
     note->notebook = gtk_notebook_new ();
+    gtk_notebook_set_tab_border (GTK_NOTEBOOK (note->notebook), 6);
     gtk_widget_show (note->notebook);
 
     gtk_notebook_set_show_tabs (GTK_NOTEBOOK (note->notebook), FALSE);

Modified: xfce4-notes-plugin/trunk/po/de.po
===================================================================
--- xfce4-notes-plugin/trunk/po/de.po	2006-08-01 18:30:11 UTC (rev 1828)
+++ xfce4-notes-plugin/trunk/po/de.po	2006-08-01 20:15:13 UTC (rev 1829)
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: 1.3.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-07-30 22:24+0200\n"
+"POT-Creation-Date: 2006-08-01 21:40+0200\n"
 "PO-Revision-Date: 2006-08-01 18:05+0100\n"
 "Last-Translator: Jannis Pohlmann <jannis at xfce.org>\n"
 "Language-Team: German <xfce-i18n at xfce.org>\n"
@@ -17,52 +17,48 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../panel-plugin/notes.c:244
+#: ../panel-plugin/notes.c:244 ../panel-plugin/notes-options.c:59
 #: ../panel-plugin/notes-window.c:62
 #: ../panel-plugin/xfce4-notes-plugin.desktop.in.in.h:1
 msgid "Notes"
 msgstr "Notizen"
 
-#: ../panel-plugin/notes-options.c:59
-msgid "Notes Plugin"
-msgstr "Notizen"
-
 #: ../panel-plugin/notes-options.c:64
 msgid "Properties"
 msgstr "Konfiguration"
 
-#: ../panel-plugin/notes-options.c:74
-msgid "Show the notes at startup"
+#: ../panel-plugin/notes-options.c:78
+msgid "Show notes at startup"
 msgstr "Notizen beim Start zeigen"
 
-#: ../panel-plugin/notes-options.c:82
-msgid "Show in the task switcher"
+#: ../panel-plugin/notes-options.c:86
+msgid "Show in the task list"
 msgstr "In der Taskliste anzeigen"
 
-#: ../panel-plugin/notes-options.c:92
+#: ../panel-plugin/notes-options.c:96
 msgid "Always on top"
 msgstr "Immer obenauf"
 
-#: ../panel-plugin/notes-options.c:101
+#: ../panel-plugin/notes-options.c:105
 msgid "Stick mode"
 msgstr "Festkleben"
 
 # is deprecated
-#: ../panel-plugin/notes-options.c:113
+#: ../panel-plugin/notes-options.c:117
 msgid "Always show vertical scrollbar"
 msgstr ""
 
 # is deprecated
-#: ../panel-plugin/notes-options.c:117
+#: ../panel-plugin/notes-options.c:121
 msgid "A restart of the panel is needed"
 msgstr ""
 
 #: ../panel-plugin/notes-window.c:99
-msgid "Open a new page"
-msgstr "Neue Notiz erstellen"
+msgid "Create new note"
+msgstr "Neue Note"
 
 #: ../panel-plugin/notes-window.c:115
-msgid "Delete a page"
+msgid "Delete this note"
 msgstr "Diese Notiz löschen"
 
 #: ../panel-plugin/notes-window.c:140
@@ -76,4 +72,3 @@
 #: ../panel-plugin/xfce4-notes-plugin.desktop.in.in.h:2
 msgid "Notes plugin for the Xfce4 desktop"
 msgstr "Einfache Verwaltung von Notizen"
-

Modified: xfce4-notes-plugin/trunk/po/fr.po
===================================================================
--- xfce4-notes-plugin/trunk/po/fr.po	2006-08-01 18:30:11 UTC (rev 1828)
+++ xfce4-notes-plugin/trunk/po/fr.po	2006-08-01 20:15:13 UTC (rev 1829)
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: 1.2.1\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-07-30 22:24+0200\n"
+"POT-Creation-Date: 2006-08-01 21:40+0200\n"
 "PO-Revision-Date: 2006-07-28 13:07+0100\n"
 "Last-Translator: Maximilian Schleiss <maxschleiss at bluewin.ch>\n"
 "Language-Team: French <xfce-i18n at xfce.org>\n"
@@ -17,49 +17,49 @@
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../panel-plugin/notes.c:244 ../panel-plugin/notes-window.c:62
+#: ../panel-plugin/notes.c:244 ../panel-plugin/notes-options.c:59
+#: ../panel-plugin/notes-window.c:62
 #: ../panel-plugin/xfce4-notes-plugin.desktop.in.in.h:1
 msgid "Notes"
 msgstr "Notes"
 
-#: ../panel-plugin/notes-options.c:59
-msgid "Notes Plugin"
-msgstr "Greffon Notes"
-
 #: ../panel-plugin/notes-options.c:64
 msgid "Properties"
 msgstr "Propriétés"
 
-#: ../panel-plugin/notes-options.c:74
-msgid "Show the notes at startup"
+#: ../panel-plugin/notes-options.c:78
+#, fuzzy
+msgid "Show notes at startup"
 msgstr "Afficher les notes au démarrage"
 
-#: ../panel-plugin/notes-options.c:82
-msgid "Show in the task switcher"
+#: ../panel-plugin/notes-options.c:86
+#, fuzzy
+msgid "Show in the task list"
 msgstr "Afficher dans le changement de tâche"
 
-#: ../panel-plugin/notes-options.c:92
+#: ../panel-plugin/notes-options.c:96
 msgid "Always on top"
 msgstr "Toujours en dessus"
 
-#: ../panel-plugin/notes-options.c:101
+#: ../panel-plugin/notes-options.c:105
 msgid "Stick mode"
 msgstr "Mode permanent"
 
-#: ../panel-plugin/notes-options.c:113
+#: ../panel-plugin/notes-options.c:117
 msgid "Always show vertical scrollbar"
 msgstr "Toujours afficher la barre de défilement verticale"
 
-#: ../panel-plugin/notes-options.c:117
+#: ../panel-plugin/notes-options.c:121
 msgid "A restart of the panel is needed"
 msgstr "Un redémarrage du panneau est nécessaire"
 
 #: ../panel-plugin/notes-window.c:99
-msgid "Open a new page"
-msgstr "Ouvrir une nouvelle page"
+msgid "Create new note"
+msgstr ""
 
 #: ../panel-plugin/notes-window.c:115
-msgid "Delete a page"
+#, fuzzy
+msgid "Delete this note"
 msgstr "Supprimer une page"
 
 #: ../panel-plugin/notes-window.c:140
@@ -74,3 +74,8 @@
 msgid "Notes plugin for the Xfce4 desktop"
 msgstr "Greffon de notes Post-It pour le bureau Xfce4"
 
+#~ msgid "Notes Plugin"
+#~ msgstr "Greffon Notes"
+
+#~ msgid "Open a new page"
+#~ msgstr "Ouvrir une nouvelle page"

Modified: xfce4-notes-plugin/trunk/po/hu.po
===================================================================
--- xfce4-notes-plugin/trunk/po/hu.po	2006-08-01 18:30:11 UTC (rev 1828)
+++ xfce4-notes-plugin/trunk/po/hu.po	2006-08-01 20:15:13 UTC (rev 1829)
@@ -2,7 +2,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-07-30 22:24+0200\n"
+"POT-Creation-Date: 2006-08-01 21:40+0200\n"
 "PO-Revision-Date: 2006-07-31 08:46+0100\n"
 "Last-Translator: SZERVÑC Attila <sas at 321.hu>\n"
 "Language-Team: hu\n"
@@ -13,50 +13,49 @@
 "X-Poedit-Language: Hungarian\n"
 "X-Poedit-Country: HUNGARY\n"
 
-#: ../panel-plugin/notes.c:244
+#: ../panel-plugin/notes.c:244 ../panel-plugin/notes-options.c:59
 #: ../panel-plugin/notes-window.c:62
 #: ../panel-plugin/xfce4-notes-plugin.desktop.in.in.h:1
 msgid "Notes"
 msgstr "Jegyzetek"
 
-#: ../panel-plugin/notes-options.c:59
-msgid "Notes Plugin"
-msgstr "Jegyzetek beillesztés"
-
 #: ../panel-plugin/notes-options.c:64
 msgid "Properties"
 msgstr "Tulajdonságok"
 
-#: ../panel-plugin/notes-options.c:74
-msgid "Show the notes at startup"
+#: ../panel-plugin/notes-options.c:78
+#, fuzzy
+msgid "Show notes at startup"
 msgstr "Jegyzetek mutatása induláskor"
 
-#: ../panel-plugin/notes-options.c:82
-msgid "Show in the task switcher"
+#: ../panel-plugin/notes-options.c:86
+#, fuzzy
+msgid "Show in the task list"
 msgstr "Megjelenítés a feladatváltóban"
 
-#: ../panel-plugin/notes-options.c:92
+#: ../panel-plugin/notes-options.c:96
 msgid "Always on top"
 msgstr "Mindig felül"
 
-#: ../panel-plugin/notes-options.c:101
+#: ../panel-plugin/notes-options.c:105
 msgid "Stick mode"
 msgstr "Kitűzés"
 
-#: ../panel-plugin/notes-options.c:113
+#: ../panel-plugin/notes-options.c:117
 msgid "Always show vertical scrollbar"
 msgstr "Függőleges görgetősáv mindig"
 
-#: ../panel-plugin/notes-options.c:117
+#: ../panel-plugin/notes-options.c:121
 msgid "A restart of the panel is needed"
 msgstr "A panel újraindítása szükséges"
 
 #: ../panel-plugin/notes-window.c:99
-msgid "Open a new page"
-msgstr "Új lapot nyit"
+msgid "Create new note"
+msgstr ""
 
 #: ../panel-plugin/notes-window.c:115
-msgid "Delete a page"
+#, fuzzy
+msgid "Delete this note"
 msgstr "Oldal törlése"
 
 #: ../panel-plugin/notes-window.c:140
@@ -71,10 +70,15 @@
 msgid "Notes plugin for the Xfce4 desktop"
 msgstr "Jegyzettömb beillesztés az Xfce4 panelhoz"
 
+#~ msgid "Notes Plugin"
+#~ msgstr "Jegyzetek beillesztés"
+
+#~ msgid "Open a new page"
+#~ msgstr "Új lapot nyit"
+
 #~ msgid ""
 #~ "Notes\n"
 #~ "Click this button to show/hide your notes"
 #~ msgstr ""
 #~ "Jegyzetek\n"
 #~ "Kattints e gombra jegyzeteid mutatásához/elrejtéséhez"
-

Modified: xfce4-notes-plugin/trunk/po/xfce4-notes-plugin.pot
===================================================================
--- xfce4-notes-plugin/trunk/po/xfce4-notes-plugin.pot	2006-08-01 18:30:11 UTC (rev 1828)
+++ xfce4-notes-plugin/trunk/po/xfce4-notes-plugin.pot	2006-08-01 20:15:13 UTC (rev 1829)
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-07-30 22:24+0200\n"
+"POT-Creation-Date: 2006-08-01 21:40+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,46 @@
 "Content-Type: text/plain; charset=CHARSET\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../panel-plugin/notes.c:244 ../panel-plugin/notes-window.c:62
+#: ../panel-plugin/notes.c:244 ../panel-plugin/notes-options.c:59
+#: ../panel-plugin/notes-window.c:62
 #: ../panel-plugin/xfce4-notes-plugin.desktop.in.in.h:1
 msgid "Notes"
 msgstr ""
 
-#: ../panel-plugin/notes-options.c:59
-msgid "Notes Plugin"
-msgstr ""
-
 #: ../panel-plugin/notes-options.c:64
 msgid "Properties"
 msgstr ""
 
-#: ../panel-plugin/notes-options.c:74
-msgid "Show the notes at startup"
+#: ../panel-plugin/notes-options.c:78
+msgid "Show notes at startup"
 msgstr ""
 
-#: ../panel-plugin/notes-options.c:82
-msgid "Show in the task switcher"
+#: ../panel-plugin/notes-options.c:86
+msgid "Show in the task list"
 msgstr ""
 
-#: ../panel-plugin/notes-options.c:92
+#: ../panel-plugin/notes-options.c:96
 msgid "Always on top"
 msgstr ""
 
-#: ../panel-plugin/notes-options.c:101
+#: ../panel-plugin/notes-options.c:105
 msgid "Stick mode"
 msgstr ""
 
-#: ../panel-plugin/notes-options.c:113
+#: ../panel-plugin/notes-options.c:117
 msgid "Always show vertical scrollbar"
 msgstr ""
 
-#: ../panel-plugin/notes-options.c:117
+#: ../panel-plugin/notes-options.c:121
 msgid "A restart of the panel is needed"
 msgstr ""
 
 #: ../panel-plugin/notes-window.c:99
-msgid "Open a new page"
+msgid "Create new note"
 msgstr ""
 
 #: ../panel-plugin/notes-window.c:115
-msgid "Delete a page"
+msgid "Delete this note"
 msgstr ""
 
 #: ../panel-plugin/notes-window.c:140

Modified: xfce4-notes-plugin/trunk/po/zh_TW.po
===================================================================
--- xfce4-notes-plugin/trunk/po/zh_TW.po	2006-08-01 18:30:11 UTC (rev 1828)
+++ xfce4-notes-plugin/trunk/po/zh_TW.po	2006-08-01 20:15:13 UTC (rev 1829)
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-notes-plugin 1.2.1\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-07-30 22:24+0200\n"
+"POT-Creation-Date: 2006-08-01 21:40+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,49 +16,48 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../panel-plugin/notes.c:244 ../panel-plugin/notes-window.c:62
+#: ../panel-plugin/notes.c:244 ../panel-plugin/notes-options.c:59
+#: ../panel-plugin/notes-window.c:62
 #: ../panel-plugin/xfce4-notes-plugin.desktop.in.in.h:1
 msgid "Notes"
 msgstr "小筆記"
 
-#: ../panel-plugin/notes-options.c:59
-msgid "Notes Plugin"
-msgstr "小筆記外掛"
-
 #: ../panel-plugin/notes-options.c:64
 msgid "Properties"
 msgstr "內容"
 
-#: ../panel-plugin/notes-options.c:74
-msgid "Show the notes at startup"
+#: ../panel-plugin/notes-options.c:78
+#, fuzzy
+msgid "Show notes at startup"
 msgstr "啟動時顯示小筆記"
 
-#: ../panel-plugin/notes-options.c:82
-msgid "Show in the task switcher"
+#: ../panel-plugin/notes-options.c:86
+#, fuzzy
+msgid "Show in the task list"
 msgstr "在工作切換框中顯示"
 
-#: ../panel-plugin/notes-options.c:92
+#: ../panel-plugin/notes-options.c:96
 msgid "Always on top"
 msgstr "置於最上層"
 
-#: ../panel-plugin/notes-options.c:101
+#: ../panel-plugin/notes-options.c:105
 msgid "Stick mode"
 msgstr "附黏模式"
 
-#: ../panel-plugin/notes-options.c:113
+#: ../panel-plugin/notes-options.c:117
 msgid "Always show vertical scrollbar"
 msgstr "永遠顯示垂直捲動條"
 
-#: ../panel-plugin/notes-options.c:117
+#: ../panel-plugin/notes-options.c:121
 msgid "A restart of the panel is needed"
 msgstr "需要重新啟動面板"
 
 #: ../panel-plugin/notes-window.c:99
-msgid "Open a new page"
-msgstr "開啟新頁面"
+msgid "Create new note"
+msgstr ""
 
 #: ../panel-plugin/notes-window.c:115
-msgid "Delete a page"
+msgid "Delete this note"
 msgstr ""
 
 #: ../panel-plugin/notes-window.c:140
@@ -74,6 +73,12 @@
 msgid "Notes plugin for the Xfce4 desktop"
 msgstr "Xfce4 面板上的小筆記外掛程式"
 
+#~ msgid "Notes Plugin"
+#~ msgstr "小筆記外掛"
+
+#~ msgid "Open a new page"
+#~ msgstr "開啟新頁面"
+
 #~ msgid ""
 #~ "Notes\n"
 #~ "Click this button to show/hide your notes"




More information about the Goodies-commits mailing list