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
- Small change of wording under Displays to reflect the fact that software dimming is not always gamma now
- Fixed an unneeded box control title leaking into localization files.
- Updated Italian Localization - thanks to @picov
- Fix: virtual displays are now properly ignored in gamma interference detection.
- Fix for too long display names looking bad in menu
- Fix for log errors about unneeded missing outlet connection errors
- Improved reset for virtual and Apple displays.
- Fixed menu showing blank space for display with no controls.
- Made brightness availability changeable for built-in and virtual displays.
- Updated french localization - thanks to @the0neyouseek
updateIcon.image =NSImage(systemSymbolName: symbolName, accessibilityDescription:NSLocalizedString("Check for updates...", comment:"Shown in menu"))
236
-
updateIcon.alternateImage =NSImage(systemSymbolName: symbolName +".fill", accessibilityDescription:NSLocalizedString("Check for updates...", comment:"Shown in menu"))
238
+
updateIcon.image =NSImage(systemSymbolName: symbolName, accessibilityDescription:NSLocalizedString("Check for updates…", comment:"Shown in menu"))
239
+
updateIcon.alternateImage =NSImage(systemSymbolName: symbolName +".fill", accessibilityDescription:NSLocalizedString("Check for updates…", comment:"Shown in menu"))
self.insertItem(withTitle:NSLocalizedString("Preferences...", comment:"Shown in menu"), action: #selector(app.prefsClicked), keyEquivalent:"", at:self.items.count)
267
-
letupdateItem=NSMenuItem(title:NSLocalizedString("Check for updates...", comment:"Shown in menu"), action: #selector(app.updaterController.checkForUpdates(_:)), keyEquivalent:"")
269
+
self.insertItem(withTitle:NSLocalizedString("Preferences…", comment:"Shown in menu"), action: #selector(app.prefsClicked), keyEquivalent:"", at:self.items.count)
270
+
letupdateItem=NSMenuItem(title:NSLocalizedString("Check for updates…", comment:"Shown in menu"), action: #selector(app.updaterController.checkForUpdates(_:)), keyEquivalent:"")
268
271
updateItem.target = app.updaterController
269
272
self.insertItem(updateItem, at:self.items.count)
270
273
self.insertItem(withTitle:NSLocalizedString("Quit", comment:"Shown in menu"), action: #selector(app.quitClicked), keyEquivalent:"q", at:self.items.count)
Copy file name to clipboardExpand all lines: MonitorControl/UI/de.lproj/Localizable.strings
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,7 @@
23
23
"Built-in Display" = "Integrierter Monitor";
24
24
25
25
/* Shown in menu */
26
-
"Check for updates..." = "Nach Updates suchen...";
26
+
"Check for updates…" = "Nach Updates suchen…";
27
27
28
28
/* Shown in menu */
29
29
"Contrast" = "Kontrast";
@@ -86,7 +86,7 @@
86
86
"Preferences for an incompatible previous app version detected. Default preferences are reloaded." = "Einstellungen für eine inkompatible Vorgängerversion des Programms erkannt. Die Standardeinstellungen werden neu geladen.";
Copy file name to clipboardExpand all lines: MonitorControl/UI/en.lproj/Localizable.strings
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,7 @@
23
23
"Built-in Display" = "Built-in Display";
24
24
25
25
/* Shown in menu */
26
-
"Check for updates..." = "Check for updates...";
26
+
"Check for updates…" = "Check for updates…";
27
27
28
28
/* Shown in menu */
29
29
"Contrast" = "Contrast";
@@ -86,7 +86,7 @@
86
86
"Preferences for an incompatible previous app version detected. Default preferences are reloaded." = "Preferences for an incompatible previous app version detected. Default preferences are reloaded.";
0 commit comments