diff -r 9a21c547de5f -r a9a94491c4fd UI/NumbersWidget.py --- a/UI/NumbersWidget.py Fri Jan 10 19:30:21 2014 +0100 +++ b/UI/NumbersWidget.py Sat Jan 11 11:55:33 2014 +0100 @@ -179,11 +179,11 @@ self.hexInButton.setIcon(UI.PixmapCache.getIcon("2downarrow.png")) self.hexOutButton.setIcon(UI.PixmapCache.getIcon("2uparrow.png")) - self.formatBox.addItem(self.trUtf8("Auto"), 0) - self.formatBox.addItem(self.trUtf8("Dec"), 10) - self.formatBox.addItem(self.trUtf8("Hex"), 16) - self.formatBox.addItem(self.trUtf8("Oct"), 8) - self.formatBox.addItem(self.trUtf8("Bin"), 2) + self.formatBox.addItem(self.tr("Auto"), 0) + self.formatBox.addItem(self.tr("Dec"), 10) + self.formatBox.addItem(self.tr("Hex"), 16) + self.formatBox.addItem(self.tr("Oct"), 8) + self.formatBox.addItem(self.tr("Bin"), 2) self.sizeBox.addItem("8", 8) self.sizeBox.addItem("16", 16)