-
Notifications
You must be signed in to change notification settings - Fork 168
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
AuthViewController: Handling requestNotFound Error
- Loading branch information
1 parent
e675d46
commit e2b670b
Showing
3 changed files
with
38 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import Foundation | ||
|
||
|
||
// MARK: - Alert + AuthError | ||
// | ||
extension NSAlert { | ||
|
||
static func buildLoginCodeExpiredAlert() -> NSAlert { | ||
let titleText = NSLocalizedString("Sorry!", comment: "LoginCode Expired Title") | ||
let messageText = NSLocalizedString("The authentication code you've requested has expired. Please request a new one", comment: "LoginCode Expired Message") | ||
let acceptText = NSLocalizedString("Accept", comment: "Accept Message") | ||
|
||
let alert = NSAlert() | ||
alert.messageText = titleText | ||
alert.informativeText = messageText | ||
alert.addButton(withTitle: acceptText) | ||
|
||
return alert | ||
} | ||
} |