Add missing punctuation on alert

This commit is contained in:
Maurice Parker 2021-09-08 05:49:02 -05:00
parent e66344694e
commit 281e41dd2d
1 changed files with 1 additions and 1 deletions

View File

@ -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"))