23 """ |
23 """ |
24 Constructor |
24 Constructor |
25 |
25 |
26 @param parent reference to the parent widget (QWidget) |
26 @param parent reference to the parent widget (QWidget) |
27 """ |
27 """ |
28 super(SyncEncryptionPage, self).__init__(parent) |
28 super().__init__(parent) |
29 self.setupUi(self) |
29 self.setupUi(self) |
30 |
30 |
31 self.keySizeComboBox.addItem(self.tr("128 Bits"), 16) |
31 self.keySizeComboBox.addItem(self.tr("128 Bits"), 16) |
32 self.keySizeComboBox.addItem(self.tr("192 Bits"), 24) |
32 self.keySizeComboBox.addItem(self.tr("192 Bits"), 24) |
33 self.keySizeComboBox.addItem(self.tr("256 Bits"), 32) |
33 self.keySizeComboBox.addItem(self.tr("256 Bits"), 32) |