mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-03 20:58:36 +03:00
14 lines
457 B
Swift
14 lines
457 B
Swift
enum GhosttyIntentError: Error, CustomLocalizedStringResourceConvertible {
|
|
case appUnavailable
|
|
case surfaceNotFound
|
|
case permissionDenied
|
|
|
|
var localizedStringResource: LocalizedStringResource {
|
|
switch self {
|
|
case .appUnavailable: "The Ghostty app isn't properly initialized."
|
|
case .surfaceNotFound: "The terminal no longer exists."
|
|
case .permissionDenied: "Ghostty doesn't allow Shortcuts."
|
|
}
|
|
}
|
|
}
|