From 281e41dd2d281a827984f060662fa24de9cfbb93 Mon Sep 17 00:00:00 2001 From: Maurice Parker Date: Wed, 8 Sep 2021 05:49:02 -0500 Subject: [PATCH] Add missing punctuation on alert --- Mac/AppDelegate.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mac/AppDelegate.swift b/Mac/AppDelegate.swift index fe65ed29b..dba09c5e2 100644 --- a/Mac/AppDelegate.swift +++ b/Mac/AppDelegate.swift @@ -853,7 +853,7 @@ private extension AppDelegate { alert.alertStyle = .informational alert.messageText = NSLocalizedString("Theme installed", comment: "Theme installed") - let localizedInformativeText = NSLocalizedString("The theme “%@” has been installed", comment: "Theme installed") + let localizedInformativeText = NSLocalizedString("The theme “%@” has been installed.", comment: "Theme installed") alert.informativeText = NSString.localizedStringWithFormat(localizedInformativeText as NSString, themeName) as String alert.addButton(withTitle: NSLocalizedString("OK", comment: "OK"))