in launcher/sdw_notify/NotifyApp.py [0:0]
def _ui(self):
self.setWindowTitle(strings.headline_notify_updates)
self.setIcon(QMessageBox.Warning)
self.setStandardButtons(QMessageBox.No | QMessageBox.Ok)
self.setDefaultButton(QMessageBox.Ok)
self.setEscapeButton(QMessageBox.No)
button_check_now = self.button(QMessageBox.Ok)
button_check_now.setText(strings.button_check_for_updates)
button_defer = self.button(QMessageBox.No)
button_defer.setText(strings.button_defer_check)
if self._is_sdapp_stopped:
self.setText(strings.description_notify_updates)
else:
self.setText(strings.description_notify_updates_sdapp_running)