X-Git-Url: http://iramuteq.org/git?p=iramuteq;a=blobdiff_plain;f=ProfList.py;h=1ecb47a5058af668b00e9b85d19e2e1c72db75a9;hp=a85c23aabc98fc5a2b5433bec65c4dfe8590794b;hb=42499e5db4394973bd0761d40ea09e515925ed4b;hpb=9b78e6210e7fc88a7e77d178c4090aabb23580d9 diff --git a/ProfList.py b/ProfList.py index a85c23a..1ecb47a 100644 --- a/ProfList.py +++ b/ProfList.py @@ -459,7 +459,7 @@ class ProfListctrlPanel(wx.ListCtrl, listmix.ListCtrlAutoWidthMixin, listmix.Col try : words = [word for word in var_mod[var[0]]] except KeyError: - dial = wx.MessageDialog(self, _(u"This is not a meta-data"), _(u"Problem").decode('utf8'), wx.OK | wx.ICON_WARNING) + dial = wx.MessageDialog(self, _(u"This is not a meta-data").decode('utf8'), _(u"Problem").decode('utf8'), wx.OK | wx.ICON_WARNING) dial.CenterOnParent() dial.ShowModal() dial.Destroy() @@ -751,7 +751,7 @@ class ProfListctrlPanel(wx.ListCtrl, listmix.ListCtrlAutoWidthMixin, listmix.Col rep.sort(key = itemgetter(1), reverse = True) #win = message(self, u"Formes associées", wx.Size(300, 200)) items = dict([[i, '\t:\t'.join([str(val) for val in forme])] for i, forme in enumerate(rep)]) - win = message(self, items, _(u"Associated Forms").decode('utf8'), (300, 200)) + win = message(self, items, _(u"Associated forms").decode('utf8'), (300, 200)) #win.html = '\n' + '
'.join([' : '.join([str(val) for val in forme]) for forme in rep]) + '\n' #win.HtmlPage.SetPage(win.html) win.Show(True)