You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -93,7 +93,7 @@ class AppDelegate: NSObject, NSApplicationDelegate {
93
93
if !self.safeMode {
94
94
letalert=NSAlert()
95
95
alert.messageText =NSLocalizedString("Incompatible previous version", comment:"Shown in the alert dialog")
96
-
alert.informativeText =NSLocalizedString("Preferences for an incompatible previous app version detected. Default preferences are reloaded.", comment:"Shown in the alert dialog")
96
+
alert.informativeText =NSLocalizedString("Settings for an incompatible previous app version detected. Default settings are reloaded.", comment:"Shown in the alert dialog")
97
97
alert.runModal()
98
98
}
99
99
prefs.removePersistentDomain(forName: bundleID)
@@ -103,7 +103,7 @@ class AppDelegate: NSObject, NSApplicationDelegate {
103
103
104
104
func setDefaultPrefs(){
105
105
if !prefs.bool(forKey:PrefKey.appAlreadyLaunched.rawValue){
106
-
// Only preferences that are not false, 0 or "" by default are set here. Assumes pre-wiped database.
106
+
// Only settings that are not false, 0 or "" by default are set here. Assumes pre-wiped database.
@@ -342,7 +342,7 @@ class AppDelegate: NSObject, NSApplicationDelegate {
342
342
self.safeMode =true
343
343
letalert=NSAlert()
344
344
alert.messageText =NSLocalizedString("Safe Mode Activated", comment:"Shown in the alert dialog")
345
-
alert.informativeText =NSLocalizedString("Shift was pressed during launch. MonitorControl started in safe mode. Default preferences are reloaded, DDC read is blocked.", comment:"Shown in the alert dialog")
345
+
alert.informativeText =NSLocalizedString("Shift was pressed during launch. MonitorControl started in safe mode. Default settings are reloaded, DDC read is blocked.", comment:"Shown in the alert dialog")
Copy file name to clipboardExpand all lines: MonitorControl/Support/MediaKeyTapManager.swift
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -208,7 +208,7 @@ class MediaKeyTapManager: MediaKeyTapDelegate {
208
208
if !self.readPrivileges(prompt:true), !firstAsk {
209
209
letalert=NSAlert()
210
210
alert.messageText =NSLocalizedString("Shortcuts not available", comment:"Shown in the alert dialog")
211
-
alert.informativeText =NSLocalizedString("You need to enable MonitorControl in System Preferences > Security and Privacy > Accessibility for the keyboard shortcuts to work", comment:"Shown in the alert dialog")
211
+
alert.informativeText =NSLocalizedString("You need to enable MonitorControl in System Settings > Security and Privacy > Accessibility for the keyboard shortcuts to work", comment:"Shown in the alert dialog")
self.insertItem(withTitle:NSLocalizedString("Preferences…", comment:"Shown in menu"), action: #selector(app.prefsClicked), keyEquivalent:",", at:self.items.count)
273
+
self.insertItem(withTitle:NSLocalizedString("Settings…", comment:"Shown in menu"), action: #selector(app.prefsClicked), keyEquivalent:",", at:self.items.count)
274
274
letupdateItem=NSMenuItem(title:NSLocalizedString("Check for updates…", comment:"Shown in menu"), action: #selector(app.updaterController.checkForUpdates(_:)), keyEquivalent:"")
0 commit comments