Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/toolbar.py
diff options
context:
space:
mode:
authorGary Martin <gary@garycmartin.com>2009-09-07 19:13:40 (GMT)
committer Gary Martin <gary@garycmartin.com>2009-09-07 19:13:40 (GMT)
commit3edd99078727ec3fa300ec315d3a64c2947bf24b (patch)
tree7602c15381e8e3104ae24cd36a55a6c6fbba3d82 /toolbar.py
parentfd531afc83eb2e34c183456564e0a4f05d533f51 (diff)
Sneeky string tweak to avoid breaking string freeze.
Diffstat (limited to 'toolbar.py')
-rw-r--r--toolbar.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/toolbar.py b/toolbar.py
index 454ea09..8c8af88 100644
--- a/toolbar.py
+++ b/toolbar.py
@@ -89,7 +89,7 @@ class EditToolbar(gtk.Toolbar):
self.insert(separator, -1)
separator.show()
- search_label = gtk.Label(_("Search: "))
+ search_label = gtk.Label(_("Search") + ": ")
search_label.show()
search_item_page_label = gtk.ToolItem()
search_item_page_label.add(search_label)