[kupfer: 2/8] Simplified DuckDuckGo description



commit 62c78f8a05541ceaecdf0202afef9722c7ca364d
Author: Isaac Aggrey <isaac aggrey gmail com>
Date:   Wed Jun 8 15:04:33 2011 -0500

    Simplified DuckDuckGo description

 kupfer/plugin/duckduckgo_search.py |    9 ++++-----
 1 files changed, 4 insertions(+), 5 deletions(-)
---
diff --git a/kupfer/plugin/duckduckgo_search.py b/kupfer/plugin/duckduckgo_search.py
index 03b18a4..3b374bf 100644
--- a/kupfer/plugin/duckduckgo_search.py
+++ b/kupfer/plugin/duckduckgo_search.py
@@ -1,12 +1,11 @@
 """
-This is a DuckDuckGo search plugin initially modified from the Wikipedia search 
-plugin
+This is a DuckDuckGo search plugin based on the Wikipedia search plugin
 """
 
 __kupfer_name__ = _("DuckDuckGo HTTPS Search")
 __kupfer_sources__ = ()
 __kupfer_actions__ = ("DuckDuckGoSearch",)
-__description__ = _("Search securely with DuckDuckGo")
+__description__ = _("Search the Web securely with DuckDuckGo")
 __version__ = "0.1"
 __author__ = "Isaac Aggrey <isaac aggrey gmail com>"
 
@@ -17,7 +16,7 @@ from kupfer import utils, plugin_support
 
 class DuckDuckGoSearch (Action):
 	def __init__(self):
-		Action.__init__(self, _("Search securely with DuckDuckGo"))
+		Action.__init__(self, _("DuckDuckGo Search"))
 
 	def activate(self, leaf):
 		search_url="https://duckduckgo.com/"; 
@@ -28,7 +27,7 @@ class DuckDuckGoSearch (Action):
 		yield TextLeaf
 
 	def get_description(self):
-		return _("Search securely for this term in DuckDuckGo")
+		return _("Search the Web securely with DuckDuckGo")
 
 	def get_icon_name(self):
 		return "edit-find"



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