[kupfer] core: Remove unnecessary strings



commit 34e0b3540f2119c03bf6673dcd36ab6f9c6d239c
Author: Ulrik Sverdrup <ulrik sverdrup gmail com>
Date:   Thu Dec 31 15:15:35 2009 +0100

    core: Remove unnecessary strings
    
    These strings are wasted energy to localize

 kupfer/plugin/core/contents.py |    2 +-
 kupfer/plugin/core/debug.py    |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/kupfer/plugin/core/contents.py b/kupfer/plugin/core/contents.py
index 8ca3109..e384780 100644
--- a/kupfer/plugin/core/contents.py
+++ b/kupfer/plugin/core/contents.py
@@ -95,7 +95,7 @@ class KupferSource (AppLeafContentMixin, Source):
 			yield DebugRestart()
 
 	def get_description(self):
-		return _("Kupfer items and actions")
+		return None
 	def get_icon_name(self):
 		return "search"
 	def provides(self):
diff --git a/kupfer/plugin/core/debug.py b/kupfer/plugin/core/debug.py
index 14c690f..6b47d6a 100644
--- a/kupfer/plugin/core/debug.py
+++ b/kupfer/plugin/core/debug.py
@@ -180,7 +180,7 @@ class ActionLeaf (Leaf):
 class Apply (Action):
 	rank_adjust = 5
 	def __init__(self, action):
-		Action.__init__(self, _("Apply To..."))
+		Action.__init__(self, u"Apply To...")
 		self.action = action
 
 	def is_factory(self):



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