[kupfer] plugin.google: Use titlecase action names



commit d2f16ee0abd7222786370644453d5a10c428f719
Author: Ulrik Sverdrup <ulrik sverdrup gmail com>
Date:   Tue Aug 25 01:58:06 2009 +0200

    plugin.google: Use titlecase action names

 kupfer/plugin/google.py |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/kupfer/plugin/google.py b/kupfer/plugin/google.py
index c97fef9..f05ea8b 100644
--- a/kupfer/plugin/google.py
+++ b/kupfer/plugin/google.py
@@ -70,7 +70,7 @@ def _do_search_engine(terms, search_url, encoding="UTF-8"):
 class SearchWithEngine (Action):
 	"""TextLeaf -> SearchWithEngine -> SearchEngine"""
 	def __init__(self):
-		Action.__init__(self, _("Search with..."))
+		Action.__init__(self, _("Search With..."))
 
 	def activate(self, leaf, iobj):
 		coding = iobj.object.get("InputEncoding")
@@ -96,7 +96,7 @@ class SearchFor (Action):
 	This is the opposite action to SearchWithEngine
 	"""
 	def __init__(self):
-		Action.__init__(self, _("Search for..."))
+		Action.__init__(self, _("Search For..."))
 
 	def activate(self, leaf, iobj):
 		coding = leaf.object.get("InputEncoding")



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]