From cf171394cf12c08f1cf369e2753af4f9b6d2e590 Mon Sep 17 00:00:00 2001 From: Maurice Parker Date: Wed, 8 Sep 2021 00:33:43 -0500 Subject: [PATCH] Change case on theme --- Mac/AppDelegate.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mac/AppDelegate.swift b/Mac/AppDelegate.swift index 399468bfc..ce69e09b1 100644 --- a/Mac/AppDelegate.swift +++ b/Mac/AppDelegate.swift @@ -805,7 +805,7 @@ private extension AppDelegate { let alert = NSAlert() alert.alertStyle = .informational - let localizedMessageText = NSLocalizedString("Install Theme “%@” by %@?", comment: "Theme message text") + let localizedMessageText = NSLocalizedString("Install theme “%@” by %@?", comment: "Theme message text") alert.messageText = NSString.localizedStringWithFormat(localizedMessageText as NSString, theme.name, theme.creatorName) as String var attrs = [NSAttributedString.Key : Any]()