Author: reinhard
Date: 2009-02-18 07:03:02 -0600 (Wed, 18 Feb 2009)
New Revision: 9907
Modified:
trunk/gnue-forms/src/uidrivers/wx26/dialogs.py
Log:
Fixed translation mark around string.
Modified: trunk/gnue-forms/src/uidrivers/wx26/dialogs.py
===================================================================
--- trunk/gnue-forms/src/uidrivers/wx26/dialogs.py 2009-02-17 07:55:07 UTC
(rev 9906)
+++ trunk/gnue-forms/src/uidrivers/wx26/dialogs.py 2009-02-18 13:03:02 UTC
(rev 9907)
@@ -493,7 +493,7 @@
# ---- Button box
buttonBox = wx.BoxSizer (wx.HORIZONTAL)
close = wx.Button (self, wx.ID_CLOSE)
- detail = wx.Button (self, wx.ID_ANY, ">> Details")
+ detail = wx.Button (self, wx.ID_ANY, u_(">> Details"))
self.Bind (wx.EVT_BUTTON, self.__closeButton , close)
self.Bind (wx.EVT_BUTTON, self.__detailButton, detail)
@@ -529,10 +529,10 @@
btn = event.GetEventObject ()
if self.__showDetail:
- btn.SetLabel ('<< Details')
+ btn.SetLabel (u_("<< Details"))
self.gbs.Show (self.detailText)
else:
- btn.SetLabel ('>> Details')
+ btn.SetLabel (u_(">> Details"))
self.gbs.Hide (self.detailText)
self.gbs.Layout ()
_______________________________________________
commit-gnue mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/commit-gnue