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