X-Git-Url: http://iramuteq.org/git?a=blobdiff_plain;ds=sidebyside;f=tree.py;h=83f7d6ee0a1285da942f4ab66e7d22e2a9f770fa;hb=40a9e657272652691979c8b19365a70b8700aebf;hp=61114b0aee1c652d054f0a1b9d5a92ffa302dfd4;hpb=c1268d62e0862c7c6316ca5c24c054fddc13dd82;p=iramuteq diff --git a/tree.py b/tree.py index 61114b0..83f7d6e 100644 --- a/tree.py +++ b/tree.py @@ -686,7 +686,7 @@ class LeftTree(CT.CustomTreeCtrl): corpus = self.page.corpus tgenpath = os.path.join(self.page.parametres['pathout'], 'tgen.csv') if not os.path.exists(tgenpath) : - message = wx.MessageDialog(self.parent, _(u"No TGen yet !"), style = wx.ICON_EXCLAMATION | wx.OK) + message = wx.MessageDialog(self.parent, _(u"No TGen yet !").decode('utf8'), style = wx.ICON_EXCLAMATION | wx.OK) message.ShowModal() message.Destroy() else : @@ -726,7 +726,7 @@ class LeftTree(CT.CustomTreeCtrl): else : name = 'name' oldname = pydata[name] - dlg = wx.TextEntryDialog(self, "Please Enter The New Item Name", 'Item Naming', oldname) + dlg = wx.TextEntryDialog(self, _("New Name").decode('utf8'), _(u'Rename').decode('utf8'), oldname) if dlg.ShowModal() == wx.ID_OK: newname = dlg.GetValue() dlg.Destroy()