-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy patherrors.ts
More file actions
35 lines (33 loc) · 1.66 KB
/
Copy patherrors.ts
File metadata and controls
35 lines (33 loc) · 1.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
export const ERR_UNSUPPORTED_OS =
"Unsupported OS - consider contributing to Guidepup?";
export const ERR_MACOS_UNABLE_TO_VERIFY_VERSION =
"Unable to verify macOS version";
export const ERR_MACOS_UNSUPPORTED_VERSION =
"Require macOS version 11 or later";
export const ERR_MACOS_UNABLE_UPDATE_SYSTEM_DEFAULTS =
"Unable to update system defaults";
export const ERR_MACOS_UNABLE_DISABLE_NOTIFICATION_CENTER =
"Unable to disable the notification center";
export const ERR_MACOS_UNABLE_UPDATE_VOICE_OVER_SANDBOXED_DEFAULTS =
"Unable to update VoiceOver sandboxed defaults - SIP might not be disabled";
export const ERR_MACOS_UNABLE_TO_VERIFY_SIP =
"Unable to verify macOS SIP status";
export const ERR_MACOS_UNABLE_TO_WRITE_DATABASE_FILE =
"Unable to write to the VoiceOver database file - SIP might not be disabled";
export const ERR_MACOS_UNABLE_TO_WRITE_USER_TCC_DB =
"Unable to write to the user TCC.db - SIP might not be disabled";
export const ERR_MACOS_UI_PROMPT_FAILURE =
"Unable to retrieve user input from prompt";
export const ERR_MACOS_UI_CONTROL_NOT_CONSENTED =
"Consent not given for UI control";
export const ERR_MACOS_REQUIRES_MANUAL_USER_INTERACTION =
"Unable to setup environment without manual user interaction";
export const ERR_MACOS_FAILED_TO_ENABLE_DO_NOT_DISTURB =
'Failed to enable "Do not disturb" mode';
export const ERR_WINDOWS_UNABLE_TO_ACCESS_REGISTRY =
"Unable to access Windows registry";
export const ERR_WINDOWS_UNABLE_TO_UPDATE_REGISTRY =
"Unable to update Windows registry";
export const ERR_WINDOWS_FAILED_TO_INSTALL_NVDA = "Unable to install NVDA";
export const ERR_WINDOWS_FAILED_TO_RESTART_EXPLORER =
"Unable to restart explorer.exe";