macos: clarify the "ready to install update" state

- The copy is updated to better explain what the user should do next.
- The symbol is updated to make it clear the update isn't yet installed.
pull/9200/head
Mitchell Hashimoto 2025-10-13 21:00:55 -07:00
parent 17a20e5b1c
commit 75734a4d07
No known key found for this signature in database
GPG Key ID: 523D5DC389D273BC
1 changed files with 2 additions and 2 deletions

View File

@ -31,7 +31,7 @@ class UpdateViewModel: ObservableObject {
case .extracting(let extracting):
return String(format: "Preparing: %.0f%%", extracting.progress * 100)
case .readyToInstall:
return "Install Update"
return "Ready to Install Update"
case .installing:
return "Restart to Complete Update"
case .notFound:
@ -70,7 +70,7 @@ class UpdateViewModel: ObservableObject {
case .extracting:
return "shippingbox"
case .readyToInstall:
return "checkmark.circle.fill"
return "restart.circle.fill"
case .installing:
return "power.circle"
case .notFound: