Removign some @todo's and making the history status label default value make more...
authorepage <eopage@byu.net>
Sat, 16 May 2009 20:17:24 +0000 (20:17 +0000)
committerepage <eopage@byu.net>
Sat, 16 May 2009 20:17:24 +0000 (20:17 +0000)
git-svn-id: file:///svnroot/quicknote/trunk@43 bb7704e3-badb-4cfa-9ab3-9374dc87eaa2

src/libnotizen.py
src/libquicknote.py

index b358160..23af22b 100644 (file)
@@ -7,8 +7,6 @@
 This program is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License version 2 as
 published by the Free Software Foundation.
-
-@todo Add hiding of the history button on zoom
 """
 
 import time
@@ -83,7 +81,7 @@ class Notizen(gtk.HBox):
 
                self._historyBox = gtk.HBox(homogeneous = False, spacing = 0)
 
-               self._historyStatusLabel = gtk.Label("Test")
+               self._historyStatusLabel = gtk.Label(_("No History"))
                self._historyStatusLabel.set_alignment(0.0, 0.5)
                self._historyBox.pack_start(self._historyStatusLabel, expand = True, fill = True, padding = 3)
 
index c07d852..53eb70e 100644 (file)
@@ -8,8 +8,6 @@ This program is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License version 2 as
 published by the Free Software Foundation.
 
-@todo Add an edit menu with select all, cut, copy, and paste
-@todo Add undo directly into the UI
 @todo Add Note Export (txt File) and Export All (json dump?)
 @todo Save word wrap and zoom setting 
 """