From 670e9e64dae235b9568ecd75b0d61543d1682659 Mon Sep 17 00:00:00 2001 From: Jeroen Wesbeek Date: Thu, 8 Feb 2018 14:02:06 +0100 Subject: [PATCH] Removed debug string --- Sources/GHKit/Extensions/UIViewController+Releases.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/GHKit/Extensions/UIViewController+Releases.swift b/Sources/GHKit/Extensions/UIViewController+Releases.swift index 4c86ad5..be25ea2 100644 --- a/Sources/GHKit/Extensions/UIViewController+Releases.swift +++ b/Sources/GHKit/Extensions/UIViewController+Releases.swift @@ -53,7 +53,7 @@ extension UIViewController { guard let version = release.version else { return } // i18n - let singularTitle = "New release available HENK".localized(withComment: "New release alert title (singular)") + let singularTitle = "New release available".localized(withComment: "New release alert title (singular)") let pluralTitleFormat = "You are %i releases behind".localized(withComment: "New release alert title (plural)") let title = (count > 0) ? String.localizedStringWithFormat(pluralTitleFormat, count) : singularTitle let messageFormat = "Version '%@' is available for download at '%@'.\n\n%@".localized(withComment: "New release alert message")