From 4c9480e6de40b9d9610fcacbde008278df21b293 Mon Sep 17 00:00:00 2001 From: Riley Testut Date: Tue, 24 Sep 2019 15:33:20 -0700 Subject: [PATCH] [AltServer] Adds app-specific password info to Login alert --- AltServer/AppDelegate.swift | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/AltServer/AppDelegate.swift b/AltServer/AppDelegate.swift index 882d11d9..38a734a0 100644 --- a/AltServer/AppDelegate.swift +++ b/AltServer/AppDelegate.swift @@ -84,7 +84,11 @@ private extension AppDelegate let alert = NSAlert() alert.messageText = NSLocalizedString("Please enter your Apple ID and password.", comment: "") - alert.informativeText = NSLocalizedString("Your Apple ID and password are not saved and are only sent to Apple for authentication.", comment: "") + alert.informativeText = NSLocalizedString(""" +Your Apple ID and password are not saved and are only sent to Apple for authentication. + +If you have two-factor authentication enabled, please create an app-specific password for use with AltStore at https://appleid.apple.com. +""", comment: "") let textFieldSize = NSSize(width: 300, height: 22)