24 """ |
24 """ |
25 Constructor |
25 Constructor |
26 |
26 |
27 @param parent reference to the parent widget (QWidget) |
27 @param parent reference to the parent widget (QWidget) |
28 """ |
28 """ |
29 super(PasswordsDialog, self).__init__(parent) |
29 super().__init__(parent) |
30 self.setupUi(self) |
30 self.setupUi(self) |
31 |
31 |
32 self.__showPasswordsText = self.tr("Show Passwords") |
32 self.__showPasswordsText = self.tr("Show Passwords") |
33 self.__hidePasswordsText = self.tr("Hide Passwords") |
33 self.__hidePasswordsText = self.tr("Hide Passwords") |
34 self.passwordsButton.setText(self.__showPasswordsText) |
34 self.passwordsButton.setText(self.__showPasswordsText) |