From f2fd3a8f25bf644bab2d7035bbbb73f1b5626f8e Mon Sep 17 00:00:00 2001 From: Peu255 Date: Fri, 26 Sep 2025 00:39:57 -0300 Subject: [PATCH] Change user-facing text from 'Reboot' to 'Restart' for consistency with Cinnamon Also cleaned up accidentally commited .pyc files and fixed .gitignore --- usr/lib/linuxmint/mintUpdate/mintUpdate.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/usr/lib/linuxmint/mintUpdate/mintUpdate.py b/usr/lib/linuxmint/mintUpdate/mintUpdate.py index 1f3e01a7..99608f55 100755 --- a/usr/lib/linuxmint/mintUpdate/mintUpdate.py +++ b/usr/lib/linuxmint/mintUpdate/mintUpdate.py @@ -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, "system-reboot-symbolic", self._on_infobar_reboot, - _("Reboot")) + _("Restart")) if refresh_cache: # Note: All cache refresh happen asynchronously