Removed debug string

This commit is contained in:
Jeroen Wesbeek 2018-02-08 14:02:06 +01:00
parent 1c032aa47c
commit 670e9e64da
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ extension UIViewController {
guard let version = release.version else { return } guard let version = release.version else { return }
// i18n // 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 pluralTitleFormat = "You are %i releases behind".localized(withComment: "New release alert title (plural)")
let title = (count > 0) ? String.localizedStringWithFormat(pluralTitleFormat, count) : singularTitle 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") let messageFormat = "Version '%@' is available for download at '%@'.\n\n%@".localized(withComment: "New release alert message")