X-Git-Url: http://iramuteq.org/git?p=iramuteq;a=blobdiff_plain;f=layout.py;h=022f2420abd4c731f7d068cc3741e46c4d6d0e88;hp=803b7ece09ccb1e8546fecacf414ef12363dba3b;hb=191e64482209e897e7bf1853646c0d2ca84db1f2;hpb=8d94ffe1d9f4b9d1dcb4214fb7b58bbe9efa1814 diff --git a/layout.py b/layout.py index 803b7ec..022f242 100644 --- a/layout.py +++ b/layout.py @@ -788,7 +788,12 @@ class CopusPanel(wx.Panel) : fgSizer5.Add( self.m_staticText21, 0, wx.ALL, 5 ) description = {'lang' : u'langue', - 'encoding' : u'encodage'} + 'encoding' : u'encodage', + 'ucinb' : u'Nombre de textes', + 'ucenb' : u'Nombre de segments de texte', + 'formesnb' : u'Nombre de formes', + 'hapax' : u'Nombre d\'hapax' + } keys = ['lang', 'encoding', 'originalpath', 'pathout', 'date', 'time'] @@ -821,7 +826,7 @@ class CopusPanel(wx.Panel) : def addkeys(self, keys, description) : for key in keys : - option = self.parametres.get(key,u'non défnini') + option = self.parametres.get(key,u'non défini') if isinstance(option, int) : option = `option` text = wx.StaticText( self, wx.ID_ANY, description.get(key, key), wx.DefaultPosition, wx.DefaultSize, 0 )