Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions usr/lib/linuxmint/mintUpdate/mintUpdate.py
Original file line number Diff line number Diff line change
Expand Up @@ -2085,12 +2085,14 @@ def refresh(self, refresh_cache):
self.cache_monitor.pause()

if self.reboot_required:
self.show_infobar(_("Reboot required"),
_("You have installed updates that require a reboot to take effect. Please reboot your system as soon as possible."),
#Updated UI text from 'Reboot' to 'Restart' for consistency with Cinnamon.
#Internal variables (like reboot_required) left unchanged for compatibility.
self.show_infobar(_("Restart required"),
_("You have installed updates that require a restart to take effect. Please restart your system as soon as possible."),
Gtk.MessageType.WARNING,
"xsi-reboot-symbolic",
self._on_infobar_reboot,
_("Reboot"))
_("Restart"))

if refresh_cache:
# Note: All cache refresh happen asynchronously
Expand Down