-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathStringConstants.swift
More file actions
52 lines (50 loc) · 2.62 KB
/
StringConstants.swift
File metadata and controls
52 lines (50 loc) · 2.62 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
struct StringConstants {
// General Tab Strings
static let rightsReserved = "GitHub. All rights reserved."
static let appName = "GitHub Copilot for Xcode"
static let languageServerVersion = "Language Server Version:"
static let checkForUpdates = "Check for Updates"
static let automaticallyCheckForUpdates = "Automatically Check for Updates"
static let installPreReleases = "Install pre-releases"
static let general = "General"
static let quitCopilot = "Quit GitHub Copilot when Xcode App is closed"
static let accessibilityPermission = "Accessibility Permission"
static let extensionPermission = "Extension Permission"
static let status = "Status:"
static let cancel = "Cancel"
static let turnOff = "Turn off"
static let turnOffCopilot = "Turn off Copilot for Xcode"
static let turnOnCopilot = "Turn on Copilot for Xcode"
static let turnOffAlertTitle = "Turn off Copilot for Xcode"
static let turnOffAlertMessage = "If you turn off Copilot for Xcode, all features will be disabled."
static let copilotConnection = "Copilot Connection"
static let githubAccountStatus = "Github Account Status Permissions"
static let githubConnection = "Github Connection:"
static let refreshConnection = "Refresh Connection"
static let loginToGitHub = "Login to GitHub"
static let confirmSignIn = "Confirm Sign-in"
static let logoutFromGitHub = "Logout from GitHub"
static let githubCopilotSettings = "GitHub Copilot Account Settings"
static let copilotResources = "Copilot Resources"
static let copilotDocumentation = "View Copilot Documentation"
static let copilotFeedbackForum = "View Copilot Feedback Forum"
static let loading = "Loading.."
// Feature Tab Settings Strings
static let suggestionSettings = "Suggestion Settings"
static let requestSuggestionsInRealTime = "Request suggestions in real-time"
static let acceptSuggestionsWithTab = "Accept suggestions with Tab"
static let disabledLanguageList = "Disabled language list"
// Proxy String
static let enterprise = "Enterprise"
static let leaveBlankPrompt = "Leave it blank if none is available."
static let authProviderURL = "Auth provider URL"
static let proxy = "Proxy"
static let proxyURLPrompt = "http://host:port"
static let proxyURL = "Proxy URL"
static let proxyUsernamePrompt = "username"
static let proxyUsername = "Proxy username"
static let proxyPasswordPrompt = "password"
static let proxyPassword = "Proxy password"
static let proxyStrictSSL = "Proxy strict SSL"
static let refreshConfigurations = "Refresh configurations"
}