From 178ed3196aa595d6ab0dadfc18b71e9cdcce25e2 Mon Sep 17 00:00:00 2001
From: Istvan T <37590873+waydabber@users.noreply.github.com>
Date: Sat, 9 Oct 2021 10:04:12 +0200
Subject: [PATCH] Fixed some layout issues (#691)
* Compile three DDC startup options into one popup menu.
* Combine multiple displays radio buttons into a popup menu
* Changed record shortcut box to a more logical layout + needs less space
* Further tweaks in keyboard preferences pane
---
MonitorControl/Enums/PrefKey.swift | 24 +-
MonitorControl/Info.plist | 2 +-
MonitorControl/Model/OtherDisplay.swift | 8 +-
MonitorControl/Support/MenuHandler.swift | 14 +-
MonitorControl/UI/Base.lproj/Main.storyboard | 506 +++++++-----------
.../UI/de.lproj/Localizable.strings | 9 +
MonitorControl/UI/de.lproj/Main.strings | 57 +-
.../UI/en.lproj/Localizable.strings | 9 +
MonitorControl/UI/en.lproj/Main.strings | 59 +-
.../UI/es-419.lproj/Localizable.strings | 9 +
MonitorControl/UI/es-419.lproj/Main.strings | 53 +-
.../UI/fr.lproj/Localizable.strings | 9 +
MonitorControl/UI/fr.lproj/Main.strings | 59 +-
.../UI/hu.lproj/Localizable.strings | 9 +
MonitorControl/UI/hu.lproj/Main.strings | 59 +-
.../UI/it.lproj/Localizable.strings | 9 +
MonitorControl/UI/it.lproj/Main.strings | 59 +-
.../UI/ja.lproj/Localizable.strings | 9 +
MonitorControl/UI/ja.lproj/Main.strings | 53 +-
.../UI/ko.lproj/Localizable.strings | 9 +
MonitorControl/UI/ko.lproj/Main.strings | 59 +-
.../UI/nl.lproj/Localizable.strings | 9 +
MonitorControl/UI/nl.lproj/Main.strings | 59 +-
.../UI/pl.lproj/Localizable.strings | 9 +
MonitorControl/UI/pl.lproj/Main.strings | 53 +-
.../UI/ru.lproj/Localizable.strings | 9 +
MonitorControl/UI/ru.lproj/Main.strings | 53 +-
.../UI/tr.lproj/Localizable.strings | 9 +
MonitorControl/UI/tr.lproj/Main.strings | 59 +-
.../UI/uk.lproj/Localizable.strings | 9 +
MonitorControl/UI/uk.lproj/Main.strings | 53 +-
.../InternetAccessPolicy.strings | 1 -
.../UI/zh-Hans.lproj/Localizable.strings | 12 +-
MonitorControl/UI/zh-Hans.lproj/Main.strings | 60 +--
.../UI/zh-Hant-TW.lproj/Localizable.strings | 9 +
.../UI/zh-Hant-TW.lproj/Main.strings | 59 +-
.../KeyboardPrefsViewController.swift | 26 +-
.../MainPrefsViewController.swift | 81 +--
.../MenuslidersPrefsViewController.swift | 76 +--
MonitorControlHelper/Info.plist | 2 +-
40 files changed, 733 insertions(+), 999 deletions(-)
diff --git a/MonitorControl/Enums/PrefKey.swift b/MonitorControl/Enums/PrefKey.swift
index 3d81e74..b2c9617 100644
--- a/MonitorControl/Enums/PrefKey.swift
+++ b/MonitorControl/Enums/PrefKey.swift
@@ -61,10 +61,7 @@ enum PrefKey: String {
case showTickMarks
// Instead of assuming default values, enable read or write upon startup (according to readDDCInsteadOfRestoreValues)
- case enableDDCDuringStartup
-
- // Restore last saved values upon startup or wake
- case readDDCInsteadOfRestoreValues
+ case startupAction
// Show advanced options under Displays tab in Preferences
case showAdvancedSettings
@@ -96,11 +93,8 @@ enum PrefKey: String {
// Synchronize brightness from sync source displays among all other displays
case enableBrightnessSync
- // Show only relevant slider for menu (depending on which display shows the menu)
- case slidersRelevant
-
- // Combine sliders for all displays
- case slidersCombine
+ // Sliders for multiple displays
+ case multiSliders
/* -- Display specific settings */
@@ -170,6 +164,18 @@ enum PrefKey: String {
case remapDDC
}
+enum StartupAction: Int {
+ case doNothing = 0
+ case write = 1
+ case read = 2
+}
+
+enum MultiSliders: Int {
+ case separate = 0
+ case relevant = 1
+ case combine = 2
+}
+
enum PollingMode: Int {
case none = -2
case minimal = -1
diff --git a/MonitorControl/Info.plist b/MonitorControl/Info.plist
index 770e35d..0ac9e9b 100644
--- a/MonitorControl/Info.plist
+++ b/MonitorControl/Info.plist
@@ -19,7 +19,7 @@
CFBundleShortVersionString$(MARKETING_VERSION)CFBundleVersion
- 6444
+ 6517LSApplicationCategoryTypepublic.app-category.utilitiesLSMinimumSystemVersion
diff --git a/MonitorControl/Model/OtherDisplay.swift b/MonitorControl/Model/OtherDisplay.swift
index 5120e21..7aef81d 100644
--- a/MonitorControl/Model/OtherDisplay.swift
+++ b/MonitorControl/Model/OtherDisplay.swift
@@ -85,7 +85,7 @@ class OtherDisplay: Display {
}
os_log("Setting up display %{public}@ for %{public}@", type: .info, String(self.identifier), String(reflecting: command))
if !self.isSw() {
- if prefs.bool(forKey: PrefKey.enableDDCDuringStartup.rawValue), prefs.bool(forKey: PrefKey.readDDCInsteadOfRestoreValues.rawValue), self.pollingCount != 0, !app.safeMode {
+ if prefs.integer(forKey: PrefKey.startupAction.rawValue) == StartupAction.read.rawValue, self.pollingCount != 0, !app.safeMode {
os_log("- Reading DDC from display %{public}@ times", type: .info, String(self.pollingCount))
let delay = self.readPrefAsBool(key: .longerDelay) ? UInt64(40 * kMillisecondScale) : nil
ddcValues = self.readDDCValues(for: command, tries: UInt(self.pollingCount), minReplyDelay: delay)
@@ -113,7 +113,7 @@ class OtherDisplay: Display {
os_log("- Maximum DDC value: %{public}@ (overrides %{public}@)", type: .info, String(self.readPrefAsInt(key: .maxDDC, for: command)), String(maxDDCValue))
os_log("- Current internal value: %{public}@", type: .info, String(self.readPrefAsFloat(for: command)))
os_log("- Command status: %{public}@", type: .info, self.readPrefAsBool(key: .isTouched, for: command) ? "Touched" : "Untouched")
- if self.readPrefAsBool(key: .isTouched, for: command), prefs.bool(forKey: PrefKey.enableDDCDuringStartup.rawValue), !prefs.bool(forKey: PrefKey.readDDCInsteadOfRestoreValues.rawValue), !app.safeMode {
+ if self.readPrefAsBool(key: .isTouched, for: command), prefs.integer(forKey: PrefKey.startupAction.rawValue) == StartupAction.write.rawValue, !app.safeMode {
os_log("- Writing last saved DDC values.", type: .info, self.name, String(reflecting: command))
_ = self.writeDDCValues(command: command, value: currentDDCValue)
}
@@ -137,7 +137,7 @@ class OtherDisplay: Display {
currentMuteValue = currentMuteValue == 0 ? 2 : currentMuteValue
var muteValues: (current: UInt16, max: UInt16)?
if self.readPrefAsBool(key: .enableMuteUnmute) {
- if self.pollingCount != 0, !app.safeMode, prefs.bool(forKey: PrefKey.enableDDCDuringStartup.rawValue), prefs.bool(forKey: PrefKey.readDDCInsteadOfRestoreValues.rawValue) {
+ if self.pollingCount != 0, !app.safeMode, prefs.integer(forKey: PrefKey.startupAction.rawValue) == StartupAction.read.rawValue {
os_log("Reading DDC from display %{public}@ times for Mute", type: .info, String(self.pollingCount))
let delay = self.readPrefAsBool(key: .longerDelay) ? UInt64(40 * kMillisecondScale) : nil
muteValues = self.readDDCValues(for: .audioMuteScreenBlank, tries: UInt(self.pollingCount), minReplyDelay: delay)
@@ -148,7 +148,7 @@ class OtherDisplay: Display {
os_log("Mute read failed", type: .info)
}
}
- if prefs.bool(forKey: PrefKey.enableDDCDuringStartup.rawValue), !prefs.bool(forKey: PrefKey.readDDCInsteadOfRestoreValues.rawValue), !app.safeMode {
+ if self.readPrefAsBool(key: .isTouched, for: .audioSpeakerVolume), prefs.integer(forKey: PrefKey.startupAction.rawValue) == StartupAction.write.rawValue, !app.safeMode {
os_log("Writing last saved DDC value for Mute: %{public}@", type: .info, String(currentMuteValue))
_ = self.writeDDCValues(command: .audioMuteScreenBlank, value: UInt16(currentMuteValue))
}
diff --git a/MonitorControl/Support/MenuHandler.swift b/MonitorControl/Support/MenuHandler.swift
index 7a53f09..835973c 100644
--- a/MonitorControl/Support/MenuHandler.swift
+++ b/MonitorControl/Support/MenuHandler.swift
@@ -41,8 +41,8 @@ class MenuHandler: NSMenu, NSMenuDelegate {
} else {
displays.append(contentsOf: DisplayManager.shared.getDdcCapableDisplays())
}
- let relevant = prefs.bool(forKey: PrefKey.slidersRelevant.rawValue)
- let combine = prefs.bool(forKey: PrefKey.slidersCombine.rawValue)
+ let relevant = prefs.integer(forKey: PrefKey.multiSliders.rawValue) == MultiSliders.relevant.rawValue
+ let combine = prefs.integer(forKey: PrefKey.multiSliders.rawValue) == MultiSliders.combine.rawValue
let numOfDisplays = displays.count
if numOfDisplays != 0 {
let asSubMenu: Bool = (displays.count > 3 && !relevant && !combine && app.macOS10()) ? true : false
@@ -74,13 +74,13 @@ class MenuHandler: NSMenu, NSMenuDelegate {
}
func setupMenuSliderHandler(command: Command, display: Display, title: String) -> SliderHandler {
- if prefs.bool(forKey: PrefKey.slidersCombine.rawValue), let combinedHandler = self.combinedSliderHandler[command] {
+ if prefs.integer(forKey: PrefKey.multiSliders.rawValue) == MultiSliders.combine.rawValue, let combinedHandler = self.combinedSliderHandler[command] {
combinedHandler.addDisplay(display)
display.sliderHandler[command] = combinedHandler
return combinedHandler
} else {
let sliderHandler = SliderHandler(display: display, command: command, title: title)
- if prefs.bool(forKey: PrefKey.slidersCombine.rawValue) {
+ if prefs.integer(forKey: PrefKey.multiSliders.rawValue) == MultiSliders.combine.rawValue {
self.combinedSliderHandler[command] = sliderHandler
}
display.sliderHandler[command] = sliderHandler
@@ -89,7 +89,7 @@ class MenuHandler: NSMenu, NSMenuDelegate {
}
func addDisplayMenuBlock(addedSliderHandlers: [SliderHandler], blockName: String, monitorSubMenu: NSMenu, numOfDisplays: Int, asSubMenu: Bool) {
- if numOfDisplays > 1, !prefs.bool(forKey: PrefKey.slidersRelevant.rawValue), !DEBUG_MACOS10, #available(macOS 11.0, *) {
+ if numOfDisplays > 1, prefs.integer(forKey: PrefKey.multiSliders.rawValue) != MultiSliders.relevant.rawValue, !DEBUG_MACOS10, #available(macOS 11.0, *) {
class BlockView: NSView {
override func draw(_: NSRect) {
let radius = prefs.bool(forKey: PrefKey.showTickMarks.rawValue) ? CGFloat(4) : CGFloat(11)
@@ -178,7 +178,7 @@ class MenuHandler: NSMenu, NSMenuDelegate {
let title = NSLocalizedString("Brightness", comment: "Shown in menu")
addedSliderHandlers.append(self.setupMenuSliderHandler(command: .brightness, display: display, title: title))
}
- if !prefs.bool(forKey: PrefKey.slidersCombine.rawValue) {
+ if prefs.integer(forKey: PrefKey.multiSliders.rawValue) != MultiSliders.combine.rawValue {
self.addDisplayMenuBlock(addedSliderHandlers: addedSliderHandlers, blockName: display.readPrefAsString(key: .friendlyName) != "" ? display.readPrefAsString(key: .friendlyName) : display.name, monitorSubMenu: monitorSubMenu, numOfDisplays: numOfDisplays, asSubMenu: asSubMenu)
}
if addedSliderHandlers.count > 0, prefs.integer(forKey: PrefKey.menuIcon.rawValue) == MenuIcon.sliderOnly.rawValue {
@@ -200,7 +200,7 @@ class MenuHandler: NSMenu, NSMenuDelegate {
}
func updateMenuRelevantDisplay() {
- if prefs.bool(forKey: PrefKey.slidersRelevant.rawValue) {
+ if prefs.integer(forKey: PrefKey.multiSliders.rawValue) == MultiSliders.relevant.rawValue {
if let display = DisplayManager.shared.getCurrentDisplay(), display.identifier != self.lastMenuRelevantDisplayId {
os_log("Menu must be refreshed as relevant display changed since last time.")
self.lastMenuRelevantDisplayId = display.identifier
diff --git a/MonitorControl/UI/Base.lproj/Main.storyboard b/MonitorControl/UI/Base.lproj/Main.storyboard
index 5e408df..325be4a 100644
--- a/MonitorControl/UI/Base.lproj/Main.storyboard
+++ b/MonitorControl/UI/Base.lproj/Main.storyboard
@@ -1,6 +1,7 @@
+
@@ -10,10 +11,10 @@
-
+
-
+
@@ -29,11 +30,9 @@
-
-
-
-
-
+
+
+
@@ -48,7 +47,7 @@
-
+
@@ -58,7 +57,7 @@
-
+
-
+
-
+
@@ -436,10 +412,7 @@
-
-
-
@@ -454,9 +427,9 @@
-
+
-
+
@@ -466,7 +439,7 @@
-
+
@@ -483,9 +456,9 @@
-
+
-
+
@@ -495,7 +468,7 @@
-
+
@@ -515,7 +488,7 @@
-
+
@@ -528,7 +501,7 @@
-
+
@@ -538,13 +511,13 @@
-
+
-
+
@@ -554,7 +527,7 @@
-
+
@@ -567,7 +540,7 @@
-
+
@@ -578,7 +551,7 @@
-
+
@@ -591,7 +564,7 @@
-
+
@@ -601,7 +574,7 @@
-
+
@@ -611,7 +584,7 @@
-
+
@@ -624,7 +597,7 @@
-
+
@@ -635,7 +608,7 @@
-
+
@@ -648,7 +621,7 @@
-
+
@@ -656,15 +629,9 @@
-
-
-
-
-
-
-
+
-
+
@@ -672,43 +639,24 @@
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
@@ -825,21 +773,19 @@
+
+
-
-
-
-
@@ -847,30 +793,27 @@
-
-
-
-
+
-
+
-
+
+
-
@@ -880,7 +823,7 @@
-
+
@@ -893,9 +836,9 @@
-
+
-
+
@@ -905,7 +848,7 @@
-
+
@@ -928,7 +871,7 @@
-
+ Use the brightness keys of your Apple keyboard to control brightness. You can hold Control to adjust the built-in display, Control+Command to adjust external displays. Hold Shift+Option for fine control. Control+Option+Command adjusts contrast on DDC compatible displays.
@@ -937,10 +880,82 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
@@ -953,7 +968,7 @@
-
+
@@ -961,112 +976,9 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
@@ -1076,7 +988,7 @@
-
+
@@ -1089,7 +1001,7 @@
-
+
@@ -1102,7 +1014,7 @@
-
+ MonitorControl uses mouse position to determine which display to control. Using window focus instead might not work well with full screen apps.
@@ -1113,7 +1025,7 @@
-
+
@@ -1123,7 +1035,7 @@
-
+
@@ -1136,7 +1048,7 @@
-
+ Normally keyboard controls change one OSD chiclet worth of value and Shift+Option allows fine control. This makes fine control default.
@@ -1148,7 +1060,7 @@
-
+
@@ -1161,7 +1073,7 @@
-
+ Full OSD scale will be available for hardware brightness control and after reaching 0 brightness, further software dimming will be used.
@@ -1172,13 +1084,13 @@
-
+
-
+
-
+
@@ -1188,7 +1100,7 @@
-
+
@@ -1208,39 +1120,30 @@
-
-
-
-
-
-
-
-
-
-
+
-
+
-
+
-
+
-
+
-
-
+
+
@@ -1248,25 +1151,15 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
@@ -1282,13 +1175,14 @@
+
-
-
+
+
@@ -1383,7 +1277,7 @@
-
+
@@ -1405,7 +1299,7 @@
-
+
@@ -1419,7 +1313,7 @@
-
+
@@ -2189,7 +2083,7 @@
-
+
diff --git a/MonitorControl/UI/de.lproj/Localizable.strings b/MonitorControl/UI/de.lproj/Localizable.strings
index 8e155b0..307e2f1 100644
--- a/MonitorControl/UI/de.lproj/Localizable.strings
+++ b/MonitorControl/UI/de.lproj/Localizable.strings
@@ -31,6 +31,9 @@
/* Version */
"Copyright Ⓒ MonitorControl, " = "Copyright Ⓒ MonitorControl, ";
+/* Shown in record shortcut box */
+"Decrease" = "Verringern";
+
/* Shown in the main prefs window */
"Displays" = "Monitore";
@@ -52,12 +55,18 @@
/* Shown in the alert dialog */
"Incompatible previous version" = "Inkompatible Vorgängerversion";
+/* Shown in record shortcut box */
+"Increase" = "Erhöhen";
+
/* Intel designation (shown after the version number in Preferences) */
"Intel" = "Intel";
/* Shown in the main prefs window */
"Keyboard" = "Tastatur";
+/* Shown in record shortcut box */
+"Mute" = "Stummschalten";
+
/* Shown in the alert dialog */
"No" = "Nein";
diff --git a/MonitorControl/UI/de.lproj/Main.strings b/MonitorControl/UI/de.lproj/Main.strings
index 67c7329..6732eb7 100644
--- a/MonitorControl/UI/de.lproj/Main.strings
+++ b/MonitorControl/UI/de.lproj/Main.strings
@@ -1,8 +1,8 @@
/* Class = "NSButtonCell"; title = "Sync brightness changes from Built-in and Apple displays"; ObjectID = "0ca-DG-AgB"; */
"0ca-DG-AgB.title" = "Synchronisierung der Helligkeitsänderungen von internen und Apple Monitoren";
-/* Class = "NSButtonCell"; title = "Attempt to read display settings"; ObjectID = "0qp-fq-8MI"; */
-"0qp-fq-8MI.title" = "Versuch, die Monitor-Einstellungen zu lesen";
+/* Class = "NSMenuItem"; title = "Assume last saved settings are valid (recommended)"; ObjectID = "1in-79-6qm"; */
+"1in-79-6qm.title" = "Annehmen, dass die zuletzt gespeicherten Einstellungen gültig sind (empfohlen)";
/* Class = "NSTextFieldCell"; title = "MonitorControl"; ObjectID = "1PJ-14-Bvn"; */
"1PJ-14-Bvn.title" = "MonitorControl";
@@ -16,15 +16,18 @@
/* Class = "NSTextFieldCell"; title = "DDC min"; ObjectID = "1zE-fg-xEm"; */
"1zE-fg-xEm.title" = "DDC min";
+/* Class = "NSMenuItem"; title = "Show separate controls for each display in menu"; ObjectID = "3eO-bN-ZRl"; */
+"3eO-bN-ZRl.title" = "Separate Steuerung für jeden Monitor im Menü anzeigen";
+
+/* Class = "NSMenuItem"; title = "Apply last saved values to the display"; ObjectID = "3Jr-bW-YYq"; */
+"3Jr-bW-YYq.title" = "Zuletzt gespeicherte Werte auf den Monitor anwenden";
+
/* Class = "NSMenuItem"; title = "Custom keyboard shortcuts"; ObjectID = "4CG-0I-anB"; */
"4CG-0I-anB.title" = "Benutzerdefinierte Tastaturkürzel";
/* Class = "NSTextFieldCell"; title = "MonitorControl uses mouse position to determine which display to control. Using window focus instead might not work well with full screen apps."; ObjectID = "4dX-o1-xAc"; */
"4dX-o1-xAc.title" = "MonitorControl verwendet die Mausposition, um zu bestimmen, welcher Monitor gesteuert werden soll. Die Verwendung des Fensterfokus könnte bei Vollbildanwendungen nicht gut funktionieren.";
-/* Class = "NSButtonCell"; title = "Show separate controls for each display in menu"; ObjectID = "4t2-Rv-njr"; */
-"4t2-Rv-njr.title" = "Separate Steuerung für jeden Monitor im Menü anzeigen";
-
/* Class = "NSTextField"; ibExternalAccessibilityDescription = "Brightness"; ObjectID = "567-le-fLg"; */
"567-le-fLg.ibExternalAccessibilityDescription" = "Helligkeit";
@@ -37,9 +40,6 @@
/* Class = "NSTextFieldCell"; title = "Slider behavior:"; ObjectID = "75n-7M-1mS"; */
"75n-7M-1mS.title" = "Verhalten des Regler:";
-/* Class = "NSButtonCell"; title = "Use combined slider for all displays"; ObjectID = "7rn-Lu-fcl"; */
-"7rn-Lu-fcl.title" = "Kombinierten Regler für alle Monitore verwenden";
-
/* Class = "NSButtonCell"; title = "Show slider tick marks"; ObjectID = "7zf-m1-gJO"; */
"7zf-m1-gJO.title" = "Markierungen für Regler anzeigen";
@@ -58,6 +58,9 @@
/* Class = "NSSlider"; ibExternalAccessibilityDescription = "Brightness"; ObjectID = "9H1-0z-xsx"; */
"9H1-0z-xsx.ibExternalAccessibilityDescription" = "Helligkeit";
+/* Class = "NSMenuItem"; title = "Attempt to read display settings"; ObjectID = "9yL-no-aWa"; */
+"9yL-no-aWa.title" = "Versuch, die Monitor-Einstellungen zu lesen";
+
/* Class = "NSTextFieldCell"; title = "Show tick marks at 0%, 25%, 50%, 75% and 100% for accuracy."; ObjectID = "A8P-vn-DEJ"; */
"A8P-vn-DEJ.title" = "Striche bei 0 %, 25 %, 50 %, 75 % und 100 % für Genauigkeit anzeigen.";
@@ -67,6 +70,9 @@
/* Class = "NSTextFieldCell"; title = "Use brightness, volume and other settings from last time or use defaults. Values will be applied to the display upon first change by the user."; ObjectID = "an7-Aj-3fZ"; */
"an7-Aj-3fZ.title" = "Helligkeit, Lautstärke und andere Einstellungen vom letzten Mal verwenden oder Standardwerte verwenden. Die Werte werden bei der ersten Änderung durch den Benutzer auf den Monitor angewendet.";
+/* Class = "NSMenuItem"; title = "Show sliders only for the display currently showing the menu"; ObjectID = "bbf-sS-uGv"; */
+"bbf-sS-uGv.title" = "Regler nur für den Monitor anzeigen, auf dem das Menü gerade angezeigt wird";
+
/* Class = "NSTextFieldCell"; title = "Brightness:"; ObjectID = "Bhb-6l-uPQ"; */
"Bhb-6l-uPQ.title" = "Helligkeit:";
@@ -88,9 +94,6 @@
/* Class = "NSButtonCell"; title = "Enable Mute DDC command"; ObjectID = "bZq-0d-lJa"; */
"bZq-0d-lJa.title" = "Stummschaltung DDC Befehl aktivieren";
-/* Class = "NSTextFieldCell"; title = "Decrease:"; ObjectID = "Bzq-Co-fex"; */
-"Bzq-Co-fex.title" = "Verringern:";
-
/* Class = "NSButtonCell"; title = "Show volume slider in menu"; ObjectID = "c9D-MB-lma"; */
"c9D-MB-lma.title" = "Regler für die Lautstärke im Menü anzeigen";
@@ -121,9 +124,6 @@
/* Class = "NSMenuItem"; title = "Minimal"; ObjectID = "Eq3-z9-yIo"; */
"Eq3-z9-yIo.title" = "Minimal";
-/* Class = "NSTextFieldCell"; title = "Increase:"; ObjectID = "eue-as-VOR"; */
-"eue-as-VOR.title" = "Erhöhen:";
-
/* Class = "NSTextFieldCell"; title = "Scale mapping curve"; ObjectID = "Eui-5S-JR6"; */
"Eui-5S-JR6.title" = "Skalenabbildungskurve";
@@ -175,16 +175,13 @@
/* Class = "NSButtonCell"; title = "Get current"; ObjectID = "hkC-vq-IcD"; */
"hkC-vq-IcD.title" = "Aktuellen Wert abrufen";
-/* Class = "NSTextFieldCell"; title = "Record shortcuts:"; ObjectID = "HLE-Vp-kcS"; */
-"HLE-Vp-kcS.title" = "Kurzbefehle aufnehmen:";
-
/* Class = "NSMenuItem"; title = "Hide"; ObjectID = "HUT-Qc-kuu"; */
"HUT-Qc-kuu.title" = "Ausblenden";
/* Class = "NSTextFieldCell"; title = "Additional controls:"; ObjectID = "i5X-M5-Tf5"; */
"i5X-M5-Tf5.title" = "Zusätzliche Steuerungen:";
-/* Class = "NSTextFieldCell"; title = "Brightness"; ObjectID = "IJB-mO-e8I"; */
+/* Class = "NSTextFieldCell"; title = "Brightness:"; ObjectID = "IJB-mO-e8I"; */
"IJB-mO-e8I.title" = "Helligkeit";
/* Class = "NSButtonCell"; title = "Enable smooth brightness transitions"; ObjectID = "IK4-u5-qjf"; */
@@ -202,17 +199,14 @@
/* Class = "NSTextFieldCell"; title = "Note: you can press Shift during startup for 'Safe mode' to restore defaults and avoid reading or setting anything."; ObjectID = "Jx2-gO-nq9"; */
"Jx2-gO-nq9.title" = "Hinweis: Du kannst während des Starts die Umschalttaste drücken, um den 'Abgesicherten Modus' zu aktivieren, damit die Standardeinstellungen wiederhergestellt werden und nichts gelesen oder eingestellt wird.";
-/* Class = "NSButtonCell"; title = "Apply last saved values to the display"; ObjectID = "K0S-zN-M4k"; */
-"K0S-zN-M4k.title" = "Zuletzt gespeicherte Werte auf den Monitor anwenden";
-
/* Class = "NSButtonCell"; title = "Enable for Apple branded and built-in displays as well"; ObjectID = "K6A-4z-1aQ"; */
"K6A-4z-1aQ.title" = "Auch für Apple und eingebaute Monitore aktivieren";
/* Class = "NSTextFieldCell"; title = "Don't use software dimming as fallback if no hardware control is available."; ObjectID = "kgh-b4-gmO"; */
"kgh-b4-gmO.title" = "Softwaredimmung nicht als Ausweichlösung verwendet werden, wenn keine Hardware-Steuerung verfügbar ist.";
-/* Class = "NSTextFieldCell"; title = "Record shortcuts:"; ObjectID = "kqJ-jQ-b7U"; */
-"kqJ-jQ-b7U.title" = "Kurzbefehle aufnehmen:";
+/* Class = "NSMenuItem"; title = "Use combined slider for all displays"; ObjectID = "lA0-tv-qRs"; */
+"lA0-tv-qRs.title" = "Kombinierten Regler für alle Monitore verwenden";
/* Class = "NSTextFieldCell"; title = "Brightness and contrast:"; ObjectID = "LO4-4k-gxY"; */
"LO4-4k-gxY.title" = "Steuerung von Helligkeit und Kontrast:";
@@ -235,8 +229,8 @@
/* Class = "NSTextFieldCell"; title = "Contrast:"; ObjectID = "MMk-S2-yJN"; */
"MMk-S2-yJN.title" = "Kontrast:";
-/* Class = "NSTextFieldCell"; title = "Increase:"; ObjectID = "mue-fa-8z6"; */
-"mue-fa-8z6.title" = "Erhöhen:";
+/* Class = "NSTextFieldCell"; title = "Volume:"; ObjectID = "mue-fa-8z6"; */
+"mue-fa-8z6.title" = "Lautstärke:";
/* Class = "NSButtonCell"; title = "Show brightness slider in menu"; ObjectID = "MWo-6I-s9L"; */
"MWo-6I-s9L.title" = "Helligkeitsregler im Menü anzeigen";
@@ -280,9 +274,6 @@
/* Class = "NSTextFieldCell"; title = "DDC max"; ObjectID = "psF-vX-AFB"; */
"psF-vX-AFB.title" = "DDC max";
-/* Class = "NSButtonCell"; title = "Show sliders only for the display currently showing the menu"; ObjectID = "PvP-TV-OmT"; */
-"PvP-TV-OmT.title" = "Regler nur für den Monitor anzeigen, auf dem das Menü gerade angezeigt wird";
-
/* Class = "NSTextFieldCell"; title = "Use software dimming after the display reached zero hardware brightness for extended range. Works for DDC controlled displays only."; ObjectID = "PyY-p9-3NP"; */
"PyY-p9-3NP.title" = "Verwende die Software-Dimmung, nachdem der Monitor die Null-Hardware-Helligkeit erreicht hat, um die Bandbreite zu erweitern. Funktioniert nur bei DDC-gesteuerten Monitoren.";
@@ -334,8 +325,8 @@
/* Class = "NSButtonCell"; title = "Enable keyboard control for display"; ObjectID = "UqR-WE-jHl"; */
"UqR-WE-jHl.title" = "Tastatursteuerung für den Monitor verwenden";
-/* Class = "NSTextFieldCell"; title = "Contrast (DDC)"; ObjectID = "urd-Rh-aiL"; */
-"urd-Rh-aiL.title" = "Kontrast";
+/* Class = "NSTextFieldCell"; title = "Contrast (DDC):"; ObjectID = "urd-Rh-aiL"; */
+"urd-Rh-aiL.title" = "Kontrast:";
/* Class = "NSButtonCell"; title = "Do not use alternative brightness keys"; ObjectID = "vd2-Lk-neX"; */
"vd2-Lk-neX.title" = "Keine alternativen Tasten für die Helligkeit verwenden";
@@ -385,12 +376,6 @@
/* Class = "NSTextFieldCell"; title = "Warning! With this option enabled, you might find yourself in a position when you end up with a blank display. This, combined with disabled keyboard controls can be frustrating."; ObjectID = "yi3-e1-wsL"; */
"yi3-e1-wsL.title" = "Warning! With this option enabled, you might find yourself in a position when you end up with a blank display. This, combined with disabled keyboard controls can be frustrating.";
-/* Class = "NSButtonCell"; title = "Assume last saved settings are valid (recommended)"; ObjectID = "yn8-Nd-o89"; */
-"yn8-Nd-o89.title" = "Annehmen, dass die zuletzt gespeicherten Einstellungen gültig sind (empfohlen)";
-
-/* Class = "NSTextFieldCell"; title = "Decrease:"; ObjectID = "yQh-Ve-WEE"; */
-"yQh-Ve-WEE.title" = "Verringern:";
-
/* Class = "NSTextFieldCell"; title = "Identifier:"; ObjectID = "YqZ-LS-YvR"; */
"YqZ-LS-YvR.title" = "Bezeichnung:";
diff --git a/MonitorControl/UI/en.lproj/Localizable.strings b/MonitorControl/UI/en.lproj/Localizable.strings
index 2d5f859..737e322 100644
--- a/MonitorControl/UI/en.lproj/Localizable.strings
+++ b/MonitorControl/UI/en.lproj/Localizable.strings
@@ -31,6 +31,9 @@
/* Version */
"Copyright Ⓒ MonitorControl, " = "Copyright Ⓒ MonitorControl, ";
+/* Shown in record shortcut box */
+"Decrease" = "Decrease";
+
/* Shown in the main prefs window */
"Displays" = "Displays";
@@ -52,12 +55,18 @@
/* Shown in the alert dialog */
"Incompatible previous version" = "Incompatible previous version";
+/* Shown in record shortcut box */
+"Increase" = "Increase";
+
/* Intel designation (shown after the version number in Preferences) */
"Intel" = "Intel";
/* Shown in the main prefs window */
"Keyboard" = "Keyboard";
+/* Shown in record shortcut box */
+"Mute" = "Mute";
+
/* Shown in the alert dialog */
"No" = "No";
diff --git a/MonitorControl/UI/en.lproj/Main.strings b/MonitorControl/UI/en.lproj/Main.strings
index 517d451..922920f 100644
--- a/MonitorControl/UI/en.lproj/Main.strings
+++ b/MonitorControl/UI/en.lproj/Main.strings
@@ -1,8 +1,8 @@
/* Class = "NSButtonCell"; title = "Sync brightness changes from Built-in and Apple displays"; ObjectID = "0ca-DG-AgB"; */
"0ca-DG-AgB.title" = "Sync brightness changes from Built-in and Apple displays";
-/* Class = "NSButtonCell"; title = "Attempt to read display settings"; ObjectID = "0qp-fq-8MI"; */
-"0qp-fq-8MI.title" = "Attempt to read display settings";
+/* Class = "NSMenuItem"; title = "Assume last saved settings are valid (recommended)"; ObjectID = "1in-79-6qm"; */
+"1in-79-6qm.title" = "Assume last saved settings are valid (recommended)";
/* Class = "NSTextFieldCell"; title = "MonitorControl"; ObjectID = "1PJ-14-Bvn"; */
"1PJ-14-Bvn.title" = "MonitorControl";
@@ -16,15 +16,18 @@
/* Class = "NSTextFieldCell"; title = "DDC min"; ObjectID = "1zE-fg-xEm"; */
"1zE-fg-xEm.title" = "DDC min";
+/* Class = "NSMenuItem"; title = "Show separate controls for each display in menu"; ObjectID = "3eO-bN-ZRl"; */
+"3eO-bN-ZRl.title" = "Show separate controls for each display in menu";
+
+/* Class = "NSMenuItem"; title = "Apply last saved values to the display"; ObjectID = "3Jr-bW-YYq"; */
+"3Jr-bW-YYq.title" = "Apply last saved values to the display";
+
/* Class = "NSMenuItem"; title = "Custom keyboard shortcuts"; ObjectID = "4CG-0I-anB"; */
"4CG-0I-anB.title" = "Custom keyboard shortcuts";
/* Class = "NSTextFieldCell"; title = "MonitorControl uses mouse position to determine which display to control. Using window focus instead might not work well with full screen apps."; ObjectID = "4dX-o1-xAc"; */
"4dX-o1-xAc.title" = "MonitorControl uses mouse position to determine which display to control. Using window focus instead might not work well with full screen apps.";
-/* Class = "NSButtonCell"; title = "Show separate controls for each display in menu"; ObjectID = "4t2-Rv-njr"; */
-"4t2-Rv-njr.title" = "Show separate controls for each display in menu";
-
/* Class = "NSTextField"; ibExternalAccessibilityDescription = "Brightness"; ObjectID = "567-le-fLg"; */
"567-le-fLg.ibExternalAccessibilityDescription" = "Brightness";
@@ -37,9 +40,6 @@
/* Class = "NSTextFieldCell"; title = "Slider behavior:"; ObjectID = "75n-7M-1mS"; */
"75n-7M-1mS.title" = "Slider behavior:";
-/* Class = "NSButtonCell"; title = "Use combined slider for all displays"; ObjectID = "7rn-Lu-fcl"; */
-"7rn-Lu-fcl.title" = "Use combined slider for all displays";
-
/* Class = "NSButtonCell"; title = "Show slider tick marks"; ObjectID = "7zf-m1-gJO"; */
"7zf-m1-gJO.title" = "Show slider tick marks";
@@ -58,6 +58,9 @@
/* Class = "NSSlider"; ibExternalAccessibilityDescription = "Brightness"; ObjectID = "9H1-0z-xsx"; */
"9H1-0z-xsx.ibExternalAccessibilityDescription" = "Brightness";
+/* Class = "NSMenuItem"; title = "Attempt to read display settings"; ObjectID = "9yL-no-aWa"; */
+"9yL-no-aWa.title" = "Attempt to read display settings";
+
/* Class = "NSTextFieldCell"; title = "Show tick marks at 0%, 25%, 50%, 75% and 100% for accuracy."; ObjectID = "A8P-vn-DEJ"; */
"A8P-vn-DEJ.title" = "Show tick marks at 0%, 25%, 50%, 75% and 100% for accuracy.";
@@ -67,6 +70,9 @@
/* Class = "NSTextFieldCell"; title = "Use brightness, volume and other settings from last time or use defaults. Values will be applied to the display upon first change by the user."; ObjectID = "an7-Aj-3fZ"; */
"an7-Aj-3fZ.title" = "Use brightness, volume and other settings from last time or use defaults. Values will be applied to the display upon first change by the user.";
+/* Class = "NSMenuItem"; title = "Show sliders only for the display currently showing the menu"; ObjectID = "bbf-sS-uGv"; */
+"bbf-sS-uGv.title" = "Show sliders only for the display currently showing the menu";
+
/* Class = "NSTextFieldCell"; title = "Brightness:"; ObjectID = "Bhb-6l-uPQ"; */
"Bhb-6l-uPQ.title" = "Brightness:";
@@ -88,9 +94,6 @@
/* Class = "NSButtonCell"; title = "Enable Mute DDC command"; ObjectID = "bZq-0d-lJa"; */
"bZq-0d-lJa.title" = "Enable Mute DDC command";
-/* Class = "NSTextFieldCell"; title = "Decrease:"; ObjectID = "Bzq-Co-fex"; */
-"Bzq-Co-fex.title" = "Decrease:";
-
/* Class = "NSButtonCell"; title = "Show volume slider in menu"; ObjectID = "c9D-MB-lma"; */
"c9D-MB-lma.title" = "Show volume slider in menu";
@@ -121,9 +124,6 @@
/* Class = "NSMenuItem"; title = "Minimal"; ObjectID = "Eq3-z9-yIo"; */
"Eq3-z9-yIo.title" = "Minimal";
-/* Class = "NSTextFieldCell"; title = "Increase:"; ObjectID = "eue-as-VOR"; */
-"eue-as-VOR.title" = "Increase:";
-
/* Class = "NSTextFieldCell"; title = "Scale mapping curve"; ObjectID = "Eui-5S-JR6"; */
"Eui-5S-JR6.title" = "Scale mapping curve";
@@ -175,17 +175,14 @@
/* Class = "NSButtonCell"; title = "Get current"; ObjectID = "hkC-vq-IcD"; */
"hkC-vq-IcD.title" = "Get current";
-/* Class = "NSTextFieldCell"; title = "Record shortcuts:"; ObjectID = "HLE-Vp-kcS"; */
-"HLE-Vp-kcS.title" = "Record shortcuts:";
-
/* Class = "NSMenuItem"; title = "Hide"; ObjectID = "HUT-Qc-kuu"; */
"HUT-Qc-kuu.title" = "Hide";
/* Class = "NSTextFieldCell"; title = "Additional controls:"; ObjectID = "i5X-M5-Tf5"; */
"i5X-M5-Tf5.title" = "Additional controls:";
-/* Class = "NSTextFieldCell"; title = "Brightness"; ObjectID = "IJB-mO-e8I"; */
-"IJB-mO-e8I.title" = "Brightness";
+/* Class = "NSTextFieldCell"; title = "Brightness:"; ObjectID = "IJB-mO-e8I"; */
+"IJB-mO-e8I.title" = "Brightness:";
/* Class = "NSButtonCell"; title = "Enable smooth brightness transitions"; ObjectID = "IK4-u5-qjf"; */
"IK4-u5-qjf.title" = "Enable smooth brightness transitions";
@@ -202,17 +199,14 @@
/* Class = "NSTextFieldCell"; title = "Note: you can press Shift during startup for 'Safe mode' to restore defaults and avoid reading or setting anything."; ObjectID = "Jx2-gO-nq9"; */
"Jx2-gO-nq9.title" = "Note: you can press Shift during startup for 'Safe mode' to restore defaults and avoid reading or setting anything.";
-/* Class = "NSButtonCell"; title = "Apply last saved values to the display"; ObjectID = "K0S-zN-M4k"; */
-"K0S-zN-M4k.title" = "Apply last saved values to the display";
-
/* Class = "NSButtonCell"; title = "Enable for Apple branded and built-in displays as well"; ObjectID = "K6A-4z-1aQ"; */
"K6A-4z-1aQ.title" = "Enable for Apple branded and built-in displays as well";
/* Class = "NSTextFieldCell"; title = "Don't use software dimming as fallback if no hardware control is available."; ObjectID = "kgh-b4-gmO"; */
"kgh-b4-gmO.title" = "Don't use software dimming as fallback if no hardware control is available.";
-/* Class = "NSTextFieldCell"; title = "Record shortcuts:"; ObjectID = "kqJ-jQ-b7U"; */
-"kqJ-jQ-b7U.title" = "Record shortcuts:";
+/* Class = "NSMenuItem"; title = "Use combined slider for all displays"; ObjectID = "lA0-tv-qRs"; */
+"lA0-tv-qRs.title" = "Use combined slider for all displays";
/* Class = "NSTextFieldCell"; title = "Brightness and contrast:"; ObjectID = "LO4-4k-gxY"; */
"LO4-4k-gxY.title" = "Brightness and contrast:";
@@ -235,8 +229,8 @@
/* Class = "NSTextFieldCell"; title = "Contrast:"; ObjectID = "MMk-S2-yJN"; */
"MMk-S2-yJN.title" = "Contrast:";
-/* Class = "NSTextFieldCell"; title = "Increase:"; ObjectID = "mue-fa-8z6"; */
-"mue-fa-8z6.title" = "Increase:";
+/* Class = "NSTextFieldCell"; title = "Volume:"; ObjectID = "mue-fa-8z6"; */
+"mue-fa-8z6.title" = "Volume:";
/* Class = "NSButtonCell"; title = "Show brightness slider in menu"; ObjectID = "MWo-6I-s9L"; */
"MWo-6I-s9L.title" = "Show brightness slider in menu";
@@ -280,9 +274,6 @@
/* Class = "NSTextFieldCell"; title = "DDC max"; ObjectID = "psF-vX-AFB"; */
"psF-vX-AFB.title" = "DDC max";
-/* Class = "NSButtonCell"; title = "Show sliders only for the display currently showing the menu"; ObjectID = "PvP-TV-OmT"; */
-"PvP-TV-OmT.title" = "Show sliders only for the display currently showing the menu";
-
/* Class = "NSTextFieldCell"; title = "Use software dimming after the display reached zero hardware brightness for extended range. Works for DDC controlled displays only."; ObjectID = "PyY-p9-3NP"; */
"PyY-p9-3NP.title" = "Use software dimming after the display reached zero hardware brightness for extended range. Works for DDC controlled displays only.";
@@ -334,8 +325,8 @@
/* Class = "NSButtonCell"; title = "Enable keyboard control for display"; ObjectID = "UqR-WE-jHl"; */
"UqR-WE-jHl.title" = "Enable keyboard control for display";
-/* Class = "NSTextFieldCell"; title = "Contrast (DDC)"; ObjectID = "urd-Rh-aiL"; */
-"urd-Rh-aiL.title" = "Contrast (DDC)";
+/* Class = "NSTextFieldCell"; title = "Contrast (DDC):"; ObjectID = "urd-Rh-aiL"; */
+"urd-Rh-aiL.title" = "Contrast (DDC):";
/* Class = "NSButtonCell"; title = "Do not use alternative brightness keys"; ObjectID = "vd2-Lk-neX"; */
"vd2-Lk-neX.title" = "Do not use alternative brightness keys";
@@ -385,12 +376,6 @@
/* Class = "NSTextFieldCell"; title = "Warning! With this option enabled, you might find yourself in a position when you end up with a blank display. This, combined with disabled keyboard controls can be frustrating."; ObjectID = "yi3-e1-wsL"; */
"yi3-e1-wsL.title" = "Warning! With this option enabled, you might find yourself in a position when you end up with a blank display. This, combined with disabled keyboard controls can be frustrating.";
-/* Class = "NSButtonCell"; title = "Assume last saved settings are valid (recommended)"; ObjectID = "yn8-Nd-o89"; */
-"yn8-Nd-o89.title" = "Assume last saved settings are valid (recommended)";
-
-/* Class = "NSTextFieldCell"; title = "Decrease:"; ObjectID = "yQh-Ve-WEE"; */
-"yQh-Ve-WEE.title" = "Decrease:";
-
/* Class = "NSTextFieldCell"; title = "Identifier:"; ObjectID = "YqZ-LS-YvR"; */
"YqZ-LS-YvR.title" = "Identifier:";
diff --git a/MonitorControl/UI/es-419.lproj/Localizable.strings b/MonitorControl/UI/es-419.lproj/Localizable.strings
index bc3e049..c8356ec 100644
--- a/MonitorControl/UI/es-419.lproj/Localizable.strings
+++ b/MonitorControl/UI/es-419.lproj/Localizable.strings
@@ -31,6 +31,9 @@
/* Version */
"Copyright Ⓒ MonitorControl, " = "Copyright Ⓒ MonitorControl, ";
+/* Shown in record shortcut box */
+"Decrease" = "Decrease";
+
/* Shown in the main prefs window */
"Displays" = "Pantallas";
@@ -52,12 +55,18 @@
/* Shown in the alert dialog */
"Incompatible previous version" = "Incompatible previous version";
+/* Shown in record shortcut box */
+"Increase" = "Increase";
+
/* Intel designation (shown after the version number in Preferences) */
"Intel" = "Intel";
/* Shown in the main prefs window */
"Keyboard" = "Keyboard";
+/* Shown in record shortcut box */
+"Mute" = "Mute";
+
/* Shown in the alert dialog */
"No" = "No";
diff --git a/MonitorControl/UI/es-419.lproj/Main.strings b/MonitorControl/UI/es-419.lproj/Main.strings
index 7165f13..b37c34d 100644
--- a/MonitorControl/UI/es-419.lproj/Main.strings
+++ b/MonitorControl/UI/es-419.lproj/Main.strings
@@ -1,8 +1,8 @@
/* Class = "NSButtonCell"; title = "Sync brightness changes from Built-in and Apple displays"; ObjectID = "0ca-DG-AgB"; */
"0ca-DG-AgB.title" = "Sync brightness changes from Built-in and Apple displays";
-/* Class = "NSButtonCell"; title = "Attempt to read display settings"; ObjectID = "0qp-fq-8MI"; */
-"0qp-fq-8MI.title" = "Attempt to read display settings";
+/* Class = "NSMenuItem"; title = "Assume last saved settings are valid (recommended)"; ObjectID = "1in-79-6qm"; */
+"1in-79-6qm.title" = "Assume last saved settings are valid (recommended)";
/* Class = "NSTextFieldCell"; title = "MonitorControl"; ObjectID = "1PJ-14-Bvn"; */
"1PJ-14-Bvn.title" = "MonitorControl";
@@ -16,15 +16,18 @@
/* Class = "NSTextFieldCell"; title = "DDC min"; ObjectID = "1zE-fg-xEm"; */
"1zE-fg-xEm.title" = "DDC min";
+/* Class = "NSMenuItem"; title = "Show separate controls for each display in menu"; ObjectID = "3eO-bN-ZRl"; */
+"3eO-bN-ZRl.title" = "Show separate controls for each display in menu";
+
+/* Class = "NSMenuItem"; title = "Apply last saved values to the display"; ObjectID = "3Jr-bW-YYq"; */
+"3Jr-bW-YYq.title" = "Apply last saved values to the display";
+
/* Class = "NSMenuItem"; title = "Custom keyboard shortcuts"; ObjectID = "4CG-0I-anB"; */
"4CG-0I-anB.title" = "Custom keyboard shortcuts";
/* Class = "NSTextFieldCell"; title = "MonitorControl uses mouse position to determine which display to control. Using window focus instead might not work well with full screen apps."; ObjectID = "4dX-o1-xAc"; */
"4dX-o1-xAc.title" = "MonitorControl uses mouse position to determine which display to control. Using window focus instead might not work well with full screen apps.";
-/* Class = "NSButtonCell"; title = "Show separate controls for each display in menu"; ObjectID = "4t2-Rv-njr"; */
-"4t2-Rv-njr.title" = "Show separate controls for each display in menu";
-
/* Class = "NSTextField"; ibExternalAccessibilityDescription = "Brightness"; ObjectID = "567-le-fLg"; */
"567-le-fLg.ibExternalAccessibilityDescription" = "Brightness";
@@ -37,9 +40,6 @@
/* Class = "NSTextFieldCell"; title = "Slider behavior:"; ObjectID = "75n-7M-1mS"; */
"75n-7M-1mS.title" = "Slider behavior:";
-/* Class = "NSButtonCell"; title = "Use combined slider for all displays"; ObjectID = "7rn-Lu-fcl"; */
-"7rn-Lu-fcl.title" = "Use combined slider for all displays";
-
/* Class = "NSButtonCell"; title = "Show slider tick marks"; ObjectID = "7zf-m1-gJO"; */
"7zf-m1-gJO.title" = "Show slider tick marks";
@@ -58,6 +58,9 @@
/* Class = "NSSlider"; ibExternalAccessibilityDescription = "Brightness"; ObjectID = "9H1-0z-xsx"; */
"9H1-0z-xsx.ibExternalAccessibilityDescription" = "Brightness";
+/* Class = "NSMenuItem"; title = "Attempt to read display settings"; ObjectID = "9yL-no-aWa"; */
+"9yL-no-aWa.title" = "Attempt to read display settings";
+
/* Class = "NSTextFieldCell"; title = "Show tick marks at 0%, 25%, 50%, 75% and 100% for accuracy."; ObjectID = "A8P-vn-DEJ"; */
"A8P-vn-DEJ.title" = "Show tick marks at 0%, 25%, 50%, 75% and 100% for accuracy.";
@@ -67,6 +70,9 @@
/* Class = "NSTextFieldCell"; title = "Use brightness, volume and other settings from last time or use defaults. Values will be applied to the display upon first change by the user."; ObjectID = "an7-Aj-3fZ"; */
"an7-Aj-3fZ.title" = "Use brightness, volume and other settings from last time or use defaults. Values will be applied to the display upon first change by the user.";
+/* Class = "NSMenuItem"; title = "Show sliders only for the display currently showing the menu"; ObjectID = "bbf-sS-uGv"; */
+"bbf-sS-uGv.title" = "Show sliders only for the display currently showing the menu";
+
/* Class = "NSTextFieldCell"; title = "Brightness:"; ObjectID = "Bhb-6l-uPQ"; */
"Bhb-6l-uPQ.title" = "Brightness:";
@@ -88,9 +94,6 @@
/* Class = "NSButtonCell"; title = "Enable Mute DDC command"; ObjectID = "bZq-0d-lJa"; */
"bZq-0d-lJa.title" = "Activar el comando DDC de silenciamiento";
-/* Class = "NSTextFieldCell"; title = "Decrease:"; ObjectID = "Bzq-Co-fex"; */
-"Bzq-Co-fex.title" = "Decrease:";
-
/* Class = "NSButtonCell"; title = "Show volume slider in menu"; ObjectID = "c9D-MB-lma"; */
"c9D-MB-lma.title" = "Show volume slider in menu";
@@ -121,9 +124,6 @@
/* Class = "NSMenuItem"; title = "Minimal"; ObjectID = "Eq3-z9-yIo"; */
"Eq3-z9-yIo.title" = "Minimal";
-/* Class = "NSTextFieldCell"; title = "Increase:"; ObjectID = "eue-as-VOR"; */
-"eue-as-VOR.title" = "Increase:";
-
/* Class = "NSTextFieldCell"; title = "Scale mapping curve"; ObjectID = "Eui-5S-JR6"; */
"Eui-5S-JR6.title" = "Scale mapping curve";
@@ -175,16 +175,13 @@
/* Class = "NSButtonCell"; title = "Get current"; ObjectID = "hkC-vq-IcD"; */
"hkC-vq-IcD.title" = "Get current";
-/* Class = "NSTextFieldCell"; title = "Record shortcuts:"; ObjectID = "HLE-Vp-kcS"; */
-"HLE-Vp-kcS.title" = "Record shortcuts:";
-
/* Class = "NSMenuItem"; title = "Hide"; ObjectID = "HUT-Qc-kuu"; */
"HUT-Qc-kuu.title" = "Hide";
/* Class = "NSTextFieldCell"; title = "Additional controls:"; ObjectID = "i5X-M5-Tf5"; */
"i5X-M5-Tf5.title" = "Additional controls:";
-/* Class = "NSTextFieldCell"; title = "Brightness"; ObjectID = "IJB-mO-e8I"; */
+/* Class = "NSTextFieldCell"; title = "Brightness:"; ObjectID = "IJB-mO-e8I"; */
"IJB-mO-e8I.title" = "Brightness";
/* Class = "NSButtonCell"; title = "Enable smooth brightness transitions"; ObjectID = "IK4-u5-qjf"; */
@@ -202,17 +199,14 @@
/* Class = "NSTextFieldCell"; title = "Note: you can press Shift during startup for 'Safe mode' to restore defaults and avoid reading or setting anything."; ObjectID = "Jx2-gO-nq9"; */
"Jx2-gO-nq9.title" = "Note: you can press Shift during startup for 'Safe mode' to restore defaults and avoid reading or setting anything.";
-/* Class = "NSButtonCell"; title = "Apply last saved values to the display"; ObjectID = "K0S-zN-M4k"; */
-"K0S-zN-M4k.title" = "Apply last saved values to the display";
-
/* Class = "NSButtonCell"; title = "Enable for Apple branded and built-in displays as well"; ObjectID = "K6A-4z-1aQ"; */
"K6A-4z-1aQ.title" = "Enable for Apple branded and built-in displays as well";
/* Class = "NSTextFieldCell"; title = "Don't use software dimming as fallback if no hardware control is available."; ObjectID = "kgh-b4-gmO"; */
"kgh-b4-gmO.title" = "Don't use software dimming as fallback if no hardware control is available.";
-/* Class = "NSTextFieldCell"; title = "Record shortcuts:"; ObjectID = "kqJ-jQ-b7U"; */
-"kqJ-jQ-b7U.title" = "Record shortcuts:";
+/* Class = "NSMenuItem"; title = "Use combined slider for all displays"; ObjectID = "lA0-tv-qRs"; */
+"lA0-tv-qRs.title" = "Use combined slider for all displays";
/* Class = "NSTextFieldCell"; title = "Brightness and contrast:"; ObjectID = "LO4-4k-gxY"; */
"LO4-4k-gxY.title" = "Brightness and contrast:";
@@ -235,7 +229,7 @@
/* Class = "NSTextFieldCell"; title = "Contrast:"; ObjectID = "MMk-S2-yJN"; */
"MMk-S2-yJN.title" = "Contrast:";
-/* Class = "NSTextFieldCell"; title = "Increase:"; ObjectID = "mue-fa-8z6"; */
+/* Class = "NSTextFieldCell"; title = "Volume:"; ObjectID = "mue-fa-8z6"; */
"mue-fa-8z6.title" = "Increase:";
/* Class = "NSButtonCell"; title = "Show brightness slider in menu"; ObjectID = "MWo-6I-s9L"; */
@@ -280,9 +274,6 @@
/* Class = "NSTextFieldCell"; title = "DDC max"; ObjectID = "psF-vX-AFB"; */
"psF-vX-AFB.title" = "DDC max";
-/* Class = "NSButtonCell"; title = "Show sliders only for the display currently showing the menu"; ObjectID = "PvP-TV-OmT"; */
-"PvP-TV-OmT.title" = "Show sliders only for the display currently showing the menu";
-
/* Class = "NSTextFieldCell"; title = "Use software dimming after the display reached zero hardware brightness for extended range. Works for DDC controlled displays only."; ObjectID = "PyY-p9-3NP"; */
"PyY-p9-3NP.title" = "Use software dimming after the display reached zero hardware brightness for extended range. Works for DDC controlled displays only.";
@@ -334,7 +325,7 @@
/* Class = "NSButtonCell"; title = "Enable keyboard control for display"; ObjectID = "UqR-WE-jHl"; */
"UqR-WE-jHl.title" = "Habilitar el control de pantalla en teclado";
-/* Class = "NSTextFieldCell"; title = "Contrast (DDC)"; ObjectID = "urd-Rh-aiL"; */
+/* Class = "NSTextFieldCell"; title = "Contrast (DDC):"; ObjectID = "urd-Rh-aiL"; */
"urd-Rh-aiL.title" = "Contrast";
/* Class = "NSButtonCell"; title = "Do not use alternative brightness keys"; ObjectID = "vd2-Lk-neX"; */
@@ -385,12 +376,6 @@
/* Class = "NSTextFieldCell"; title = "Warning! With this option enabled, you might find yourself in a position when you end up with a blank display. This, combined with disabled keyboard controls can be frustrating."; ObjectID = "yi3-e1-wsL"; */
"yi3-e1-wsL.title" = "Warning! With this option enabled, you might find yourself in a position when you end up with a blank display. This, combined with disabled keyboard controls can be frustrating.";
-/* Class = "NSButtonCell"; title = "Assume last saved settings are valid (recommended)"; ObjectID = "yn8-Nd-o89"; */
-"yn8-Nd-o89.title" = "Assume last saved settings are valid (recommended)";
-
-/* Class = "NSTextFieldCell"; title = "Decrease:"; ObjectID = "yQh-Ve-WEE"; */
-"yQh-Ve-WEE.title" = "Decrease:";
-
/* Class = "NSTextFieldCell"; title = "Identifier:"; ObjectID = "YqZ-LS-YvR"; */
"YqZ-LS-YvR.title" = "Identificador:";
diff --git a/MonitorControl/UI/fr.lproj/Localizable.strings b/MonitorControl/UI/fr.lproj/Localizable.strings
index 5a2ef50..253c572 100644
--- a/MonitorControl/UI/fr.lproj/Localizable.strings
+++ b/MonitorControl/UI/fr.lproj/Localizable.strings
@@ -31,6 +31,9 @@
/* Version */
"Copyright Ⓒ MonitorControl, " = "Copyright Ⓒ MonitorControl, ";
+/* Shown in record shortcut box */
+"Decrease" = "Diminuer";
+
/* Shown in the main prefs window */
"Displays" = "Écrans";
@@ -52,12 +55,18 @@
/* Shown in the alert dialog */
"Incompatible previous version" = "Version précédente incompatible";
+/* Shown in record shortcut box */
+"Increase" = "Augmenter";
+
/* Intel designation (shown after the version number in Preferences) */
"Intel" = "Intel";
/* Shown in the main prefs window */
"Keyboard" = "Clavier";
+/* Shown in record shortcut box */
+"Mute" = "Sourdine";
+
/* Shown in the alert dialog */
"No" = "Non";
diff --git a/MonitorControl/UI/fr.lproj/Main.strings b/MonitorControl/UI/fr.lproj/Main.strings
index 5648227..ee7cadc 100644
--- a/MonitorControl/UI/fr.lproj/Main.strings
+++ b/MonitorControl/UI/fr.lproj/Main.strings
@@ -1,8 +1,8 @@
/* Class = "NSButtonCell"; title = "Sync brightness changes from Built-in and Apple displays"; ObjectID = "0ca-DG-AgB"; */
"0ca-DG-AgB.title" = "Synchronisez les changements de luminosité à partir des écrans intégrés et Apple";
-/* Class = "NSButtonCell"; title = "Attempt to read display settings"; ObjectID = "0qp-fq-8MI"; */
-"0qp-fq-8MI.title" = "Essayez de lire les paramètres de l'écran";
+/* Class = "NSMenuItem"; title = "Assume last saved settings are valid (recommended)"; ObjectID = "1in-79-6qm"; */
+"1in-79-6qm.title" = "Supposer que les derniers paramètres enregistrés sont valides (recommandé)";
/* Class = "NSTextFieldCell"; title = "MonitorControl"; ObjectID = "1PJ-14-Bvn"; */
"1PJ-14-Bvn.title" = "MonitorControl";
@@ -16,15 +16,18 @@
/* Class = "NSTextFieldCell"; title = "DDC min"; ObjectID = "1zE-fg-xEm"; */
"1zE-fg-xEm.title" = "min. DDC";
+/* Class = "NSMenuItem"; title = "Show separate controls for each display in menu"; ObjectID = "3eO-bN-ZRl"; */
+"3eO-bN-ZRl.title" = "Afficher des commandes distinctes pour chaque écran dans le menu";
+
+/* Class = "NSMenuItem"; title = "Apply last saved values to the display"; ObjectID = "3Jr-bW-YYq"; */
+"3Jr-bW-YYq.title" = "Appliquer les dernières valeurs enregistrées à l'écran'";
+
/* Class = "NSMenuItem"; title = "Custom keyboard shortcuts"; ObjectID = "4CG-0I-anB"; */
"4CG-0I-anB.title" = "Raccourcis clavier personnalisés";
/* Class = "NSTextFieldCell"; title = "MonitorControl uses mouse position to determine which display to control. Using window focus instead might not work well with full screen apps."; ObjectID = "4dX-o1-xAc"; */
"4dX-o1-xAc.title" = "MonitorControl utilise la position de la souris pour déterminer l'écran à contrôler. L'utilisation du \"focus de la fenêtre\" à la place peut ne pas fonctionner correctement avec les applications en plein écran.";
-/* Class = "NSButtonCell"; title = "Show separate controls for each display in menu"; ObjectID = "4t2-Rv-njr"; */
-"4t2-Rv-njr.title" = "Afficher des commandes distinctes pour chaque écran dans le menu";
-
/* Class = "NSTextField"; ibExternalAccessibilityDescription = "Brightness"; ObjectID = "567-le-fLg"; */
"567-le-fLg.ibExternalAccessibilityDescription" = "Luminosité";
@@ -37,9 +40,6 @@
/* Class = "NSTextFieldCell"; title = "Slider behavior:"; ObjectID = "75n-7M-1mS"; */
"75n-7M-1mS.title" = "Comportement des curseurs:";
-/* Class = "NSButtonCell"; title = "Use combined slider for all displays"; ObjectID = "7rn-Lu-fcl"; */
-"7rn-Lu-fcl.title" = "Utiliser un curseur combiné pour tous les écrans";
-
/* Class = "NSButtonCell"; title = "Show slider tick marks"; ObjectID = "7zf-m1-gJO"; */
"7zf-m1-gJO.title" = "Afficher des marques de graduation";
@@ -58,6 +58,9 @@
/* Class = "NSSlider"; ibExternalAccessibilityDescription = "Brightness"; ObjectID = "9H1-0z-xsx"; */
"9H1-0z-xsx.ibExternalAccessibilityDescription" = "Luminosité";
+/* Class = "NSMenuItem"; title = "Attempt to read display settings"; ObjectID = "9yL-no-aWa"; */
+"9yL-no-aWa.title" = "Essayez de lire les paramètres de l'écran";
+
/* Class = "NSTextFieldCell"; title = "Show tick marks at 0%, 25%, 50%, 75% and 100% for accuracy."; ObjectID = "A8P-vn-DEJ"; */
"A8P-vn-DEJ.title" = "Afficher les graduations à 0 %, 25 %, 50 %, 75 % et 100 % pour plus de précision.";
@@ -67,6 +70,9 @@
/* Class = "NSTextFieldCell"; title = "Use brightness, volume and other settings from last time or use defaults. Values will be applied to the display upon first change by the user."; ObjectID = "an7-Aj-3fZ"; */
"an7-Aj-3fZ.title" = "Utilisez la luminosité, le volume et d'autres paramètres de la dernière utilisation ou utilisez les valeurs par défaut. Les valeurs seront appliquées sur l'écran lors de la première modification par l'utilisateur.";
+/* Class = "NSMenuItem"; title = "Show sliders only for the display currently showing the menu"; ObjectID = "bbf-sS-uGv"; */
+"bbf-sS-uGv.title" = "Afficher les curseurs uniquement pour l'écran affichant actuellement le menu";
+
/* Class = "NSTextFieldCell"; title = "Brightness:"; ObjectID = "Bhb-6l-uPQ"; */
"Bhb-6l-uPQ.title" = "Luminosité:";
@@ -88,9 +94,6 @@
/* Class = "NSButtonCell"; title = "Enable Mute DDC command"; ObjectID = "bZq-0d-lJa"; */
"bZq-0d-lJa.title" = "Activer la commande Sourdine DDC";
-/* Class = "NSTextFieldCell"; title = "Decrease:"; ObjectID = "Bzq-Co-fex"; */
-"Bzq-Co-fex.title" = "Diminuer:";
-
/* Class = "NSButtonCell"; title = "Show volume slider in menu"; ObjectID = "c9D-MB-lma"; */
"c9D-MB-lma.title" = "Afficher le curseur de volume dans le menu";
@@ -121,9 +124,6 @@
/* Class = "NSMenuItem"; title = "Minimal"; ObjectID = "Eq3-z9-yIo"; */
"Eq3-z9-yIo.title" = "Minimal";
-/* Class = "NSTextFieldCell"; title = "Increase:"; ObjectID = "eue-as-VOR"; */
-"eue-as-VOR.title" = "Augmenter :";
-
/* Class = "NSTextFieldCell"; title = "Scale mapping curve"; ObjectID = "Eui-5S-JR6"; */
"Eui-5S-JR6.title" = "Courbe de mappage d'échelle";
@@ -175,17 +175,14 @@
/* Class = "NSButtonCell"; title = "Get current"; ObjectID = "hkC-vq-IcD"; */
"hkC-vq-IcD.title" = "Obtenir la valeur actuelle";
-/* Class = "NSTextFieldCell"; title = "Record shortcuts:"; ObjectID = "HLE-Vp-kcS"; */
-"HLE-Vp-kcS.title" = "Enregistrer les raccourcis clavier :";
-
/* Class = "NSMenuItem"; title = "Hide"; ObjectID = "HUT-Qc-kuu"; */
"HUT-Qc-kuu.title" = "Masquer";
/* Class = "NSTextFieldCell"; title = "Additional controls:"; ObjectID = "i5X-M5-Tf5"; */
"i5X-M5-Tf5.title" = "Contrôles supplémentaires :";
-/* Class = "NSTextFieldCell"; title = "Brightness"; ObjectID = "IJB-mO-e8I"; */
-"IJB-mO-e8I.title" = "Luminosité";
+/* Class = "NSTextFieldCell"; title = "Brightness:"; ObjectID = "IJB-mO-e8I"; */
+"IJB-mO-e8I.title" = "Luminosité:";
/* Class = "NSButtonCell"; title = "Enable smooth brightness transitions"; ObjectID = "IK4-u5-qjf"; */
"IK4-u5-qjf.title" = "Activer les transitions de luminosité fluides";
@@ -202,17 +199,14 @@
/* Class = "NSTextFieldCell"; title = "Note: you can press Shift during startup for 'Safe mode' to restore defaults and avoid reading or setting anything."; ObjectID = "Jx2-gO-nq9"; */
"Jx2-gO-nq9.title" = "Remarque : vous pouvez appuyer sur Maj pendant le démarrage pour démarrer en « Mode sans échec » ce qui restaure les paramètres par défaut et évite de lire ou de définir quoi que ce soit.";
-/* Class = "NSButtonCell"; title = "Apply last saved values to the display"; ObjectID = "K0S-zN-M4k"; */
-"K0S-zN-M4k.title" = "Appliquer les dernières valeurs enregistrées à l'écran'";
-
/* Class = "NSButtonCell"; title = "Enable for Apple branded and built-in displays as well"; ObjectID = "K6A-4z-1aQ"; */
"K6A-4z-1aQ.title" = "Activer également les écrans Apple et intégrés";
/* Class = "NSTextFieldCell"; title = "Don't use software dimming as fallback if no hardware control is available."; ObjectID = "kgh-b4-gmO"; */
"kgh-b4-gmO.title" = "Ne pas utiliser le contrôle logiciel comme solution de secours si aucun contrôle matériel n'est disponible.";
-/* Class = "NSTextFieldCell"; title = "Record shortcuts:"; ObjectID = "kqJ-jQ-b7U"; */
-"kqJ-jQ-b7U.title" = "Enregistrer les raccourcis clavier :";
+/* Class = "NSMenuItem"; title = "Use combined slider for all displays"; ObjectID = "lA0-tv-qRs"; */
+"lA0-tv-qRs.title" = "Utiliser un curseur combiné pour tous les écrans";
/* Class = "NSTextFieldCell"; title = "Brightness and contrast:"; ObjectID = "LO4-4k-gxY"; */
"LO4-4k-gxY.title" = "Contrôle de la luminosité et du contraste :";
@@ -235,8 +229,8 @@
/* Class = "NSTextFieldCell"; title = "Contrast:"; ObjectID = "MMk-S2-yJN"; */
"MMk-S2-yJN.title" = "Contraste :";
-/* Class = "NSTextFieldCell"; title = "Increase:"; ObjectID = "mue-fa-8z6"; */
-"mue-fa-8z6.title" = "Augmenter :";
+/* Class = "NSTextFieldCell"; title = "Volume:"; ObjectID = "mue-fa-8z6"; */
+"mue-fa-8z6.title" = "Volume :";
/* Class = "NSButtonCell"; title = "Show brightness slider in menu"; ObjectID = "MWo-6I-s9L"; */
"MWo-6I-s9L.title" = "Afficher le curseur de luminosité dans le menu";
@@ -280,9 +274,6 @@
/* Class = "NSTextFieldCell"; title = "DDC max"; ObjectID = "psF-vX-AFB"; */
"psF-vX-AFB.title" = "max. DDC";
-/* Class = "NSButtonCell"; title = "Show sliders only for the display currently showing the menu"; ObjectID = "PvP-TV-OmT"; */
-"PvP-TV-OmT.title" = "Afficher les curseurs uniquement pour l'écran affichant actuellement le menu";
-
/* Class = "NSTextFieldCell"; title = "Use software dimming after the display reached zero hardware brightness for extended range. Works for DDC controlled displays only."; ObjectID = "PyY-p9-3NP"; */
"PyY-p9-3NP.title" = "Utilisez le contrôle logiciel une fois que l'écran a atteint une luminosité matérielle de zéro pour une portée étendue. Fonctionne pour les écrans contrôlés par matériel (DDC) uniquement.";
@@ -334,8 +325,8 @@
/* Class = "NSButtonCell"; title = "Enable keyboard control for display"; ObjectID = "UqR-WE-jHl"; */
"UqR-WE-jHl.title" = "Activer le contrôle par le clavier pour l'écran";
-/* Class = "NSTextFieldCell"; title = "Contrast (DDC)"; ObjectID = "urd-Rh-aiL"; */
-"urd-Rh-aiL.title" = "Contraste";
+/* Class = "NSTextFieldCell"; title = "Contrast (DDC):"; ObjectID = "urd-Rh-aiL"; */
+"urd-Rh-aiL.title" = "Contraste :";
/* Class = "NSButtonCell"; title = "Do not use alternative brightness keys"; ObjectID = "vd2-Lk-neX"; */
"vd2-Lk-neX.title" = "Ne pas utiliser de touches de luminosité alternatives";
@@ -385,12 +376,6 @@
/* Class = "NSTextFieldCell"; title = "Warning! With this option enabled, you might find yourself in a position when you end up with a blank display. This, combined with disabled keyboard controls can be frustrating."; ObjectID = "yi3-e1-wsL"; */
"yi3-e1-wsL.title" = "Warning! With this option enabled, you might find yourself in a position when you end up with a blank display. This, combined with disabled keyboard controls can be frustrating.";
-/* Class = "NSButtonCell"; title = "Assume last saved settings are valid (recommended)"; ObjectID = "yn8-Nd-o89"; */
-"yn8-Nd-o89.title" = "Supposer que les derniers paramètres enregistrés sont valides (recommandé)";
-
-/* Class = "NSTextFieldCell"; title = "Decrease:"; ObjectID = "yQh-Ve-WEE"; */
-"yQh-Ve-WEE.title" = "Diminuer :";
-
/* Class = "NSTextFieldCell"; title = "Identifier:"; ObjectID = "YqZ-LS-YvR"; */
"YqZ-LS-YvR.title" = "Identifiant :";
diff --git a/MonitorControl/UI/hu.lproj/Localizable.strings b/MonitorControl/UI/hu.lproj/Localizable.strings
index 132031a..db5cc28 100644
--- a/MonitorControl/UI/hu.lproj/Localizable.strings
+++ b/MonitorControl/UI/hu.lproj/Localizable.strings
@@ -31,6 +31,9 @@
/* Version */
"Copyright Ⓒ MonitorControl, " = "Copyright Ⓒ MonitorControl, ";
+/* Shown in record shortcut box */
+"Decrease" = "Csökkentés";
+
/* Shown in the main prefs window */
"Displays" = "Kijelzők";
@@ -52,12 +55,18 @@
/* Shown in the alert dialog */
"Incompatible previous version" = "Inkompatibilis előző verzió";
+/* Shown in record shortcut box */
+"Increase" = "Növelés";
+
/* Intel designation (shown after the version number in Preferences) */
"Intel" = "Intel";
/* Shown in the main prefs window */
"Keyboard" = "Billentyűzet";
+/* Shown in record shortcut box */
+"Mute" = "Némítás";
+
/* Shown in the alert dialog */
"No" = "Nem";
diff --git a/MonitorControl/UI/hu.lproj/Main.strings b/MonitorControl/UI/hu.lproj/Main.strings
index 84a4e59..05a1815 100644
--- a/MonitorControl/UI/hu.lproj/Main.strings
+++ b/MonitorControl/UI/hu.lproj/Main.strings
@@ -1,8 +1,8 @@
/* Class = "NSButtonCell"; title = "Sync brightness changes from Built-in and Apple displays"; ObjectID = "0ca-DG-AgB"; */
"0ca-DG-AgB.title" = "Beépített és Apple kijelzők fényerejének szinkronizálása";
-/* Class = "NSButtonCell"; title = "Attempt to read display settings"; ObjectID = "0qp-fq-8MI"; */
-"0qp-fq-8MI.title" = "Képernyőbeállítások olvasásának megkísérlése";
+/* Class = "NSMenuItem"; title = "Assume last saved settings are valid (recommended)"; ObjectID = "1in-79-6qm"; */
+"1in-79-6qm.title" = "Utolsó ismert beállítások feltételezése (javasolt)";
/* Class = "NSTextFieldCell"; title = "MonitorControl"; ObjectID = "1PJ-14-Bvn"; */
"1PJ-14-Bvn.title" = "MonitorControl";
@@ -16,15 +16,18 @@
/* Class = "NSTextFieldCell"; title = "DDC min"; ObjectID = "1zE-fg-xEm"; */
"1zE-fg-xEm.title" = "DDC min";
+/* Class = "NSMenuItem"; title = "Show separate controls for each display in menu"; ObjectID = "3eO-bN-ZRl"; */
+"3eO-bN-ZRl.title" = "Külön vezérlő minden képernyő számára";
+
+/* Class = "NSMenuItem"; title = "Apply last saved values to the display"; ObjectID = "3Jr-bW-YYq"; */
+"3Jr-bW-YYq.title" = "Utolsó mentett értékek elküldése a kijelzőnek";
+
/* Class = "NSMenuItem"; title = "Custom keyboard shortcuts"; ObjectID = "4CG-0I-anB"; */
"4CG-0I-anB.title" = "Egyéni billentyűkombinációk";
/* Class = "NSTextFieldCell"; title = "MonitorControl uses mouse position to determine which display to control. Using window focus instead might not work well with full screen apps."; ObjectID = "4dX-o1-xAc"; */
"4dX-o1-xAc.title" = "Az alkalmazás az egér poziciója alapján határozza meg a vezérelt kijelzőt. Az ablakfókusz mód nem mindig működik teljes képernyős programokkal.";
-/* Class = "NSButtonCell"; title = "Show separate controls for each display in menu"; ObjectID = "4t2-Rv-njr"; */
-"4t2-Rv-njr.title" = "Külön vezérlő minden képernyő számára";
-
/* Class = "NSTextField"; ibExternalAccessibilityDescription = "Brightness"; ObjectID = "567-le-fLg"; */
"567-le-fLg.ibExternalAccessibilityDescription" = "Fényerő";
@@ -37,9 +40,6 @@
/* Class = "NSTextFieldCell"; title = "Slider behavior:"; ObjectID = "75n-7M-1mS"; */
"75n-7M-1mS.title" = "Csúszka viselkedés:";
-/* Class = "NSButtonCell"; title = "Use combined slider for all displays"; ObjectID = "7rn-Lu-fcl"; */
-"7rn-Lu-fcl.title" = "Kombinált csúszka az összes kijelző számára";
-
/* Class = "NSButtonCell"; title = "Show slider tick marks"; ObjectID = "7zf-m1-gJO"; */
"7zf-m1-gJO.title" = "Mértékjelek mutatása mutatása";
@@ -58,6 +58,9 @@
/* Class = "NSSlider"; ibExternalAccessibilityDescription = "Brightness"; ObjectID = "9H1-0z-xsx"; */
"9H1-0z-xsx.ibExternalAccessibilityDescription" = "Fényerő";
+/* Class = "NSMenuItem"; title = "Attempt to read display settings"; ObjectID = "9yL-no-aWa"; */
+"9yL-no-aWa.title" = "Képernyőbeállítások olvasásának megkísérlése";
+
/* Class = "NSTextFieldCell"; title = "Show tick marks at 0%, 25%, 50%, 75% and 100% for accuracy."; ObjectID = "A8P-vn-DEJ"; */
"A8P-vn-DEJ.title" = "Mértékjelek mutatása 0%, 25%, 50%, 75% és 100% pontokon.";
@@ -67,6 +70,9 @@
/* Class = "NSTextFieldCell"; title = "Use brightness, volume and other settings from last time or use defaults. Values will be applied to the display upon first change by the user."; ObjectID = "an7-Aj-3fZ"; */
"an7-Aj-3fZ.title" = "Utolsó ismert, vagy alapértelmezett fényerő, hangerő és egyéb beálltások használata. A megváltoztatott értékek első változtatáskor érvényesülnek.";
+/* Class = "NSMenuItem"; title = "Show sliders only for the display currently showing the menu"; ObjectID = "bbf-sS-uGv"; */
+"bbf-sS-uGv.title" = "Az aktuális kijelző csúszkáinak mutatása";
+
/* Class = "NSTextFieldCell"; title = "Brightness:"; ObjectID = "Bhb-6l-uPQ"; */
"Bhb-6l-uPQ.title" = "Fényerő:";
@@ -88,9 +94,6 @@
/* Class = "NSButtonCell"; title = "Enable Mute DDC command"; ObjectID = "bZq-0d-lJa"; */
"bZq-0d-lJa.title" = "DDC némítás parancs engedélyezése";
-/* Class = "NSTextFieldCell"; title = "Decrease:"; ObjectID = "Bzq-Co-fex"; */
-"Bzq-Co-fex.title" = "Csökkentés:";
-
/* Class = "NSButtonCell"; title = "Show volume slider in menu"; ObjectID = "c9D-MB-lma"; */
"c9D-MB-lma.title" = "Hangerő csúszka mutatása";
@@ -121,9 +124,6 @@
/* Class = "NSMenuItem"; title = "Minimal"; ObjectID = "Eq3-z9-yIo"; */
"Eq3-z9-yIo.title" = "Minimális";
-/* Class = "NSTextFieldCell"; title = "Increase:"; ObjectID = "eue-as-VOR"; */
-"eue-as-VOR.title" = "Növelés:";
-
/* Class = "NSTextFieldCell"; title = "Scale mapping curve"; ObjectID = "Eui-5S-JR6"; */
"Eui-5S-JR6.title" = "Skála görbület";
@@ -175,17 +175,14 @@
/* Class = "NSButtonCell"; title = "Get current"; ObjectID = "hkC-vq-IcD"; */
"hkC-vq-IcD.title" = "Aktuális";
-/* Class = "NSTextFieldCell"; title = "Record shortcuts:"; ObjectID = "HLE-Vp-kcS"; */
-"HLE-Vp-kcS.title" = "Rögzítés:";
-
/* Class = "NSMenuItem"; title = "Hide"; ObjectID = "HUT-Qc-kuu"; */
"HUT-Qc-kuu.title" = "Elrejtés";
/* Class = "NSTextFieldCell"; title = "Additional controls:"; ObjectID = "i5X-M5-Tf5"; */
"i5X-M5-Tf5.title" = "További vezérlők:";
-/* Class = "NSTextFieldCell"; title = "Brightness"; ObjectID = "IJB-mO-e8I"; */
-"IJB-mO-e8I.title" = "Fényerő";
+/* Class = "NSTextFieldCell"; title = "Brightness:"; ObjectID = "IJB-mO-e8I"; */
+"IJB-mO-e8I.title" = "Fényerő:";
/* Class = "NSButtonCell"; title = "Enable smooth brightness transitions"; ObjectID = "IK4-u5-qjf"; */
"IK4-u5-qjf.title" = "Finom fényerő átmenet engedélyeze";
@@ -202,17 +199,14 @@
/* Class = "NSTextFieldCell"; title = "Note: you can press Shift during startup for 'Safe mode' to restore defaults and avoid reading or setting anything."; ObjectID = "Jx2-gO-nq9"; */
"Jx2-gO-nq9.title" = "Megjegyzés: a Shift nyomvatartásával induláskor aktiválhatja a Biztonsági Módot az alapértelmezett értékek helyreállítására.";
-/* Class = "NSButtonCell"; title = "Apply last saved values to the display"; ObjectID = "K0S-zN-M4k"; */
-"K0S-zN-M4k.title" = "Utolsó mentett értékek elküldése a kijelzőnek";
-
/* Class = "NSButtonCell"; title = "Enable for Apple branded and built-in displays as well"; ObjectID = "K6A-4z-1aQ"; */
"K6A-4z-1aQ.title" = "Engedélyezés Apple és beépített kijelzők esetén is";
/* Class = "NSTextFieldCell"; title = "Don't use software dimming as fallback if no hardware control is available."; ObjectID = "kgh-b4-gmO"; */
"kgh-b4-gmO.title" = "Szoftveres sötétítés használatának mellőzése, ha hardveres állítás nem lehetséges.";
-/* Class = "NSTextFieldCell"; title = "Record shortcuts:"; ObjectID = "kqJ-jQ-b7U"; */
-"kqJ-jQ-b7U.title" = "Rögzítés:";
+/* Class = "NSMenuItem"; title = "Use combined slider for all displays"; ObjectID = "lA0-tv-qRs"; */
+"lA0-tv-qRs.title" = "Kombinált csúszka az összes kijelző számára";
/* Class = "NSTextFieldCell"; title = "Brightness and contrast:"; ObjectID = "LO4-4k-gxY"; */
"LO4-4k-gxY.title" = "Fényerő és kontraszt vezérlés:";
@@ -235,8 +229,8 @@
/* Class = "NSTextFieldCell"; title = "Contrast:"; ObjectID = "MMk-S2-yJN"; */
"MMk-S2-yJN.title" = "Kontraszt:";
-/* Class = "NSTextFieldCell"; title = "Increase:"; ObjectID = "mue-fa-8z6"; */
-"mue-fa-8z6.title" = "Növelés:";
+/* Class = "NSTextFieldCell"; title = "Volume:"; ObjectID = "mue-fa-8z6"; */
+"mue-fa-8z6.title" = "Hangerő:";
/* Class = "NSButtonCell"; title = "Show brightness slider in menu"; ObjectID = "MWo-6I-s9L"; */
"MWo-6I-s9L.title" = "Fényerő csúszka megjelenítése a menüben";
@@ -280,9 +274,6 @@
/* Class = "NSTextFieldCell"; title = "DDC max"; ObjectID = "psF-vX-AFB"; */
"psF-vX-AFB.title" = "DDC max";
-/* Class = "NSButtonCell"; title = "Show sliders only for the display currently showing the menu"; ObjectID = "PvP-TV-OmT"; */
-"PvP-TV-OmT.title" = "Az aktuális kijelző csúszkáinak mutatása";
-
/* Class = "NSTextFieldCell"; title = "Use software dimming after the display reached zero hardware brightness for extended range. Works for DDC controlled displays only."; ObjectID = "PyY-p9-3NP"; */
"PyY-p9-3NP.title" = "Szoftveres sötétítés alkalmazása, miután a kijelző elérte a minimális hardveres fényerőt. Csak hardveres (DDC) kijelzők esetén.";
@@ -334,8 +325,8 @@
/* Class = "NSButtonCell"; title = "Enable keyboard control for display"; ObjectID = "UqR-WE-jHl"; */
"UqR-WE-jHl.title" = "Vezérlés billentyűzetről";
-/* Class = "NSTextFieldCell"; title = "Contrast (DDC)"; ObjectID = "urd-Rh-aiL"; */
-"urd-Rh-aiL.title" = "Kontraszt";
+/* Class = "NSTextFieldCell"; title = "Contrast (DDC):"; ObjectID = "urd-Rh-aiL"; */
+"urd-Rh-aiL.title" = "Kontraszt:";
/* Class = "NSButtonCell"; title = "Do not use alternative brightness keys"; ObjectID = "vd2-Lk-neX"; */
"vd2-Lk-neX.title" = "Alternatív fényerőgombok használatának mellőzése";
@@ -385,12 +376,6 @@
/* Class = "NSTextFieldCell"; title = "Warning! With this option enabled, you might find yourself in a position when you end up with a blank display. This, combined with disabled keyboard controls can be frustrating."; ObjectID = "yi3-e1-wsL"; */
"yi3-e1-wsL.title" = "Warning! With this option enabled, you might find yourself in a position when you end up with a blank display. This, combined with disabled keyboard controls can be frustrating.";
-/* Class = "NSButtonCell"; title = "Assume last saved settings are valid (recommended)"; ObjectID = "yn8-Nd-o89"; */
-"yn8-Nd-o89.title" = "Utolsó ismert beállítások feltételezése (javasolt)";
-
-/* Class = "NSTextFieldCell"; title = "Decrease:"; ObjectID = "yQh-Ve-WEE"; */
-"yQh-Ve-WEE.title" = "Csökkentés:";
-
/* Class = "NSTextFieldCell"; title = "Identifier:"; ObjectID = "YqZ-LS-YvR"; */
"YqZ-LS-YvR.title" = "Azonosító:";
diff --git a/MonitorControl/UI/it.lproj/Localizable.strings b/MonitorControl/UI/it.lproj/Localizable.strings
index d6f495b..8cb3695 100644
--- a/MonitorControl/UI/it.lproj/Localizable.strings
+++ b/MonitorControl/UI/it.lproj/Localizable.strings
@@ -31,6 +31,9 @@
/* Version */
"Copyright Ⓒ MonitorControl, " = "Copyright Ⓒ MonitorControl, ";
+/* Shown in record shortcut box */
+"Decrease" = "Diminiusci";
+
/* Shown in the main prefs window */
"Displays" = "Monitor";
@@ -52,12 +55,18 @@
/* Shown in the alert dialog */
"Incompatible previous version" = "Versione precedente incompatibile";
+/* Shown in record shortcut box */
+"Increase" = "Aumenta";
+
/* Intel designation (shown after the version number in Preferences) */
"Intel" = "Intel";
/* Shown in the main prefs window */
"Keyboard" = "Tastiera";
+/* Shown in record shortcut box */
+"Mute" = "Mute";
+
/* Shown in the alert dialog */
"No" = "No";
diff --git a/MonitorControl/UI/it.lproj/Main.strings b/MonitorControl/UI/it.lproj/Main.strings
index 3bfd18f..4e64b85 100644
--- a/MonitorControl/UI/it.lproj/Main.strings
+++ b/MonitorControl/UI/it.lproj/Main.strings
@@ -1,8 +1,8 @@
/* Class = "NSButtonCell"; title = "Sync brightness changes from Built-in and Apple displays"; ObjectID = "0ca-DG-AgB"; */
"0ca-DG-AgB.title" = "Sincronizza le modifiche dai monitor Incorporati ed Apple ";
-/* Class = "NSButtonCell"; title = "Attempt to read display settings"; ObjectID = "0qp-fq-8MI"; */
-"0qp-fq-8MI.title" = "Tenta di leggere le impostazioni del monitor";
+/* Class = "NSMenuItem"; title = "Assume last saved settings are valid (recommended)"; ObjectID = "1in-79-6qm"; */
+"1in-79-6qm.title" = "Assumi che le ultime impostazioni siano valide (raccomandato)";
/* Class = "NSTextFieldCell"; title = "MonitorControl"; ObjectID = "1PJ-14-Bvn"; */
"1PJ-14-Bvn.title" = "MonitorControl";
@@ -16,15 +16,18 @@
/* Class = "NSTextFieldCell"; title = "DDC min"; ObjectID = "1zE-fg-xEm"; */
"1zE-fg-xEm.title" = "Min DDC";
+/* Class = "NSMenuItem"; title = "Show separate controls for each display in menu"; ObjectID = "3eO-bN-ZRl"; */
+"3eO-bN-ZRl.title" = "Mostra slider separati per ciascun monitor nel menu";
+
+/* Class = "NSMenuItem"; title = "Apply last saved values to the display"; ObjectID = "3Jr-bW-YYq"; */
+"3Jr-bW-YYq.title" = "Applica al monitor gli ultimi valori salvati";
+
/* Class = "NSMenuItem"; title = "Custom keyboard shortcuts"; ObjectID = "4CG-0I-anB"; */
"4CG-0I-anB.title" = "Abreviazioni da tastiera personalizzate";
/* Class = "NSTextFieldCell"; title = "MonitorControl uses mouse position to determine which display to control. Using window focus instead might not work well with full screen apps."; ObjectID = "4dX-o1-xAc"; */
"4dX-o1-xAc.title" = "MonitorControl utilizza la posizione del mouse per determinare il monitor da controllare. L'utilizzo del focus sulla finestra potrebbe non funzionare sulle applicazioni a pieno schermo.";
-/* Class = "NSButtonCell"; title = "Show separate controls for each display in menu"; ObjectID = "4t2-Rv-njr"; */
-"4t2-Rv-njr.title" = "Mostra slider separati per ciascun monitor nel menu";
-
/* Class = "NSTextField"; ibExternalAccessibilityDescription = "Brightness"; ObjectID = "567-le-fLg"; */
"567-le-fLg.ibExternalAccessibilityDescription" = "Luminosità";
@@ -37,9 +40,6 @@
/* Class = "NSTextFieldCell"; title = "Slider behavior:"; ObjectID = "75n-7M-1mS"; */
"75n-7M-1mS.title" = "Comportamento slider:";
-/* Class = "NSButtonCell"; title = "Use combined slider for all displays"; ObjectID = "7rn-Lu-fcl"; */
-"7rn-Lu-fcl.title" = "Utlizza uno slider combinato per tutti i monitor";
-
/* Class = "NSButtonCell"; title = "Show slider tick marks"; ObjectID = "7zf-m1-gJO"; */
"7zf-m1-gJO.title" = "Mostra i marcatori nello slider";
@@ -58,6 +58,9 @@
/* Class = "NSSlider"; ibExternalAccessibilityDescription = "Brightness"; ObjectID = "9H1-0z-xsx"; */
"9H1-0z-xsx.ibExternalAccessibilityDescription" = "Luminosità";
+/* Class = "NSMenuItem"; title = "Attempt to read display settings"; ObjectID = "9yL-no-aWa"; */
+"9yL-no-aWa.title" = "Tenta di leggere le impostazioni del monitor";
+
/* Class = "NSTextFieldCell"; title = "Show tick marks at 0%, 25%, 50%, 75% and 100% for accuracy."; ObjectID = "A8P-vn-DEJ"; */
"A8P-vn-DEJ.title" = "Mostra i marcatori a 0%, 25%, 50%, 75% and 100%.";
@@ -67,6 +70,9 @@
/* Class = "NSTextFieldCell"; title = "Use brightness, volume and other settings from last time or use defaults. Values will be applied to the display upon first change by the user."; ObjectID = "an7-Aj-3fZ"; */
"an7-Aj-3fZ.title" = "Utilizza la luminisità, il volume ed altre impostazioni dell'ultima volta o utilizza il default. I valori saranno applicati al monitor alla prima modifica dell'utente.";
+/* Class = "NSMenuItem"; title = "Show sliders only for the display currently showing the menu"; ObjectID = "bbf-sS-uGv"; */
+"bbf-sS-uGv.title" = "Mostra gli slider solo per il monitor che sta mostrando il menu";
+
/* Class = "NSTextFieldCell"; title = "Brightness:"; ObjectID = "Bhb-6l-uPQ"; */
"Bhb-6l-uPQ.title" = "Luminosità:";
@@ -88,9 +94,6 @@
/* Class = "NSButtonCell"; title = "Enable Mute DDC command"; ObjectID = "bZq-0d-lJa"; */
"bZq-0d-lJa.title" = "Abilita il comando Mute DDC";
-/* Class = "NSTextFieldCell"; title = "Decrease:"; ObjectID = "Bzq-Co-fex"; */
-"Bzq-Co-fex.title" = "Diminuisci:";
-
/* Class = "NSButtonCell"; title = "Show volume slider in menu"; ObjectID = "c9D-MB-lma"; */
"c9D-MB-lma.title" = "Mostra lo slider del volume nel menu";
@@ -121,9 +124,6 @@
/* Class = "NSMenuItem"; title = "Minimal"; ObjectID = "Eq3-z9-yIo"; */
"Eq3-z9-yIo.title" = "Minimalista";
-/* Class = "NSTextFieldCell"; title = "Increase:"; ObjectID = "eue-as-VOR"; */
-"eue-as-VOR.title" = "Aumenta:";
-
/* Class = "NSTextFieldCell"; title = "Scale mapping curve"; ObjectID = "Eui-5S-JR6"; */
"Eui-5S-JR6.title" = "Curva mappatura";
@@ -175,17 +175,14 @@
/* Class = "NSButtonCell"; title = "Get current"; ObjectID = "hkC-vq-IcD"; */
"hkC-vq-IcD.title" = "Valore corrente";
-/* Class = "NSTextFieldCell"; title = "Record shortcuts:"; ObjectID = "HLE-Vp-kcS"; */
-"HLE-Vp-kcS.title" = "Registra abbreviazioni:";
-
/* Class = "NSMenuItem"; title = "Hide"; ObjectID = "HUT-Qc-kuu"; */
"HUT-Qc-kuu.title" = "Nascondi";
/* Class = "NSTextFieldCell"; title = "Additional controls:"; ObjectID = "i5X-M5-Tf5"; */
"i5X-M5-Tf5.title" = "Controlli addizionali:";
-/* Class = "NSTextFieldCell"; title = "Brightness"; ObjectID = "IJB-mO-e8I"; */
-"IJB-mO-e8I.title" = "Luminosità";
+/* Class = "NSTextFieldCell"; title = "Brightness:"; ObjectID = "IJB-mO-e8I"; */
+"IJB-mO-e8I.title" = "Luminosità:";
/* Class = "NSButtonCell"; title = "Enable smooth brightness transitions"; ObjectID = "IK4-u5-qjf"; */
"IK4-u5-qjf.title" = "Abilita le transizioni morbide della luminosità";
@@ -202,17 +199,14 @@
/* Class = "NSTextFieldCell"; title = "Note: you can press Shift during startup for 'Safe mode' to restore defaults and avoid reading or setting anything."; ObjectID = "Jx2-gO-nq9"; */
"Jx2-gO-nq9.title" = "Nota: puoi premere Maiusc all'avvio per il 'Safe mode' in modo da impostare i valori di default.";
-/* Class = "NSButtonCell"; title = "Apply last saved values to the display"; ObjectID = "K0S-zN-M4k"; */
-"K0S-zN-M4k.title" = "Applica al monitor gli ultimi valori salvati";
-
/* Class = "NSButtonCell"; title = "Enable for Apple branded and built-in displays as well"; ObjectID = "K6A-4z-1aQ"; */
"K6A-4z-1aQ.title" = "Abilita anche per i monitor Apple ed incorporati";
/* Class = "NSTextFieldCell"; title = "Don't use software dimming as fallback if no hardware control is available."; ObjectID = "kgh-b4-gmO"; */
"kgh-b4-gmO.title" = "Non utlizzare l'attenuazione software come fallback se il controllo hardware non è disponibile.";
-/* Class = "NSTextFieldCell"; title = "Record shortcuts:"; ObjectID = "kqJ-jQ-b7U"; */
-"kqJ-jQ-b7U.title" = "Registra abbreviazioni:";
+/* Class = "NSMenuItem"; title = "Use combined slider for all displays"; ObjectID = "lA0-tv-qRs"; */
+"lA0-tv-qRs.title" = "Utlizza uno slider combinato per tutti i monitor";
/* Class = "NSTextFieldCell"; title = "Brightness and contrast:"; ObjectID = "LO4-4k-gxY"; */
"LO4-4k-gxY.title" = "Controllo luminosità e contrasto:";
@@ -235,8 +229,8 @@
/* Class = "NSTextFieldCell"; title = "Contrast:"; ObjectID = "MMk-S2-yJN"; */
"MMk-S2-yJN.title" = "Contrasto:";
-/* Class = "NSTextFieldCell"; title = "Increase:"; ObjectID = "mue-fa-8z6"; */
-"mue-fa-8z6.title" = "Aumenta:";
+/* Class = "NSTextFieldCell"; title = "Volume:"; ObjectID = "mue-fa-8z6"; */
+"mue-fa-8z6.title" = "Volume:";
/* Class = "NSButtonCell"; title = "Show brightness slider in menu"; ObjectID = "MWo-6I-s9L"; */
"MWo-6I-s9L.title" = "Mostra lo slider della luminositò nel menu";
@@ -280,9 +274,6 @@
/* Class = "NSTextFieldCell"; title = "DDC max"; ObjectID = "psF-vX-AFB"; */
"psF-vX-AFB.title" = "Max DDC";
-/* Class = "NSButtonCell"; title = "Show sliders only for the display currently showing the menu"; ObjectID = "PvP-TV-OmT"; */
-"PvP-TV-OmT.title" = "Mostra gli slider solo per il monitor che sta mostrando il menu";
-
/* Class = "NSTextFieldCell"; title = "Use software dimming after the display reached zero hardware brightness for extended range. Works for DDC controlled displays only."; ObjectID = "PyY-p9-3NP"; */
"PyY-p9-3NP.title" = "Utilizza l'attenuazione software quando il monitor ha raggiunto lo zero della luminosità hardware per estendere il range. Funziona solo per i monitor controllati via DDC.";
@@ -334,8 +325,8 @@
/* Class = "NSButtonCell"; title = "Enable keyboard control for display"; ObjectID = "UqR-WE-jHl"; */
"UqR-WE-jHl.title" = "Abilita il controllo da tastiera";
-/* Class = "NSTextFieldCell"; title = "Contrast (DDC)"; ObjectID = "urd-Rh-aiL"; */
-"urd-Rh-aiL.title" = "Contrasto (DDC)";
+/* Class = "NSTextFieldCell"; title = "Contrast (DDC):"; ObjectID = "urd-Rh-aiL"; */
+"urd-Rh-aiL.title" = "Contrasto (DDC):";
/* Class = "NSButtonCell"; title = "Do not use alternative brightness keys"; ObjectID = "vd2-Lk-neX"; */
"vd2-Lk-neX.title" = "Non utilizzare i tasti luminosità alternativi";
@@ -385,12 +376,6 @@
/* Class = "NSTextFieldCell"; title = "Warning! With this option enabled, you might find yourself in a position when you end up with a blank display. This, combined with disabled keyboard controls can be frustrating."; ObjectID = "yi3-e1-wsL"; */
"yi3-e1-wsL.title" = "Warning! With this option enabled, you might find yourself in a position when you end up with a blank display. This, combined with disabled keyboard controls can be frustrating.";
-/* Class = "NSButtonCell"; title = "Assume last saved settings are valid (recommended)"; ObjectID = "yn8-Nd-o89"; */
-"yn8-Nd-o89.title" = "Assumi che le ultime impostazioni siano valide (raccomandato)";
-
-/* Class = "NSTextFieldCell"; title = "Decrease:"; ObjectID = "yQh-Ve-WEE"; */
-"yQh-Ve-WEE.title" = "Diminiusci:";
-
/* Class = "NSTextFieldCell"; title = "Identifier:"; ObjectID = "YqZ-LS-YvR"; */
"YqZ-LS-YvR.title" = "Identificativo:";
diff --git a/MonitorControl/UI/ja.lproj/Localizable.strings b/MonitorControl/UI/ja.lproj/Localizable.strings
index 098bcc5..4c5a996 100644
--- a/MonitorControl/UI/ja.lproj/Localizable.strings
+++ b/MonitorControl/UI/ja.lproj/Localizable.strings
@@ -31,6 +31,9 @@
/* Version */
"Copyright Ⓒ MonitorControl, " = "Copyright Ⓒ MonitorControl, ";
+/* Shown in record shortcut box */
+"Decrease" = "Decrease";
+
/* Shown in the main prefs window */
"Displays" = "画面";
@@ -52,12 +55,18 @@
/* Shown in the alert dialog */
"Incompatible previous version" = "Incompatible previous version";
+/* Shown in record shortcut box */
+"Increase" = "Increase";
+
/* Intel designation (shown after the version number in Preferences) */
"Intel" = "Intel";
/* Shown in the main prefs window */
"Keyboard" = "Keyboard";
+/* Shown in record shortcut box */
+"Mute" = "Mute";
+
/* Shown in the alert dialog */
"No" = "No";
diff --git a/MonitorControl/UI/ja.lproj/Main.strings b/MonitorControl/UI/ja.lproj/Main.strings
index 37a114a..9996f08 100644
--- a/MonitorControl/UI/ja.lproj/Main.strings
+++ b/MonitorControl/UI/ja.lproj/Main.strings
@@ -1,8 +1,8 @@
/* Class = "NSButtonCell"; title = "Sync brightness changes from Built-in and Apple displays"; ObjectID = "0ca-DG-AgB"; */
"0ca-DG-AgB.title" = "Sync brightness changes from Built-in and Apple displays";
-/* Class = "NSButtonCell"; title = "Attempt to read display settings"; ObjectID = "0qp-fq-8MI"; */
-"0qp-fq-8MI.title" = "Attempt to read display settings";
+/* Class = "NSMenuItem"; title = "Assume last saved settings are valid (recommended)"; ObjectID = "1in-79-6qm"; */
+"1in-79-6qm.title" = "Assume last saved settings are valid (recommended)";
/* Class = "NSTextFieldCell"; title = "MonitorControl"; ObjectID = "1PJ-14-Bvn"; */
"1PJ-14-Bvn.title" = "MonitorControl";
@@ -16,15 +16,18 @@
/* Class = "NSTextFieldCell"; title = "DDC min"; ObjectID = "1zE-fg-xEm"; */
"1zE-fg-xEm.title" = "DDC min";
+/* Class = "NSMenuItem"; title = "Show separate controls for each display in menu"; ObjectID = "3eO-bN-ZRl"; */
+"3eO-bN-ZRl.title" = "Show separate controls for each display in menu";
+
+/* Class = "NSMenuItem"; title = "Apply last saved values to the display"; ObjectID = "3Jr-bW-YYq"; */
+"3Jr-bW-YYq.title" = "Apply last saved values to the display";
+
/* Class = "NSMenuItem"; title = "Custom keyboard shortcuts"; ObjectID = "4CG-0I-anB"; */
"4CG-0I-anB.title" = "Custom keyboard shortcuts";
/* Class = "NSTextFieldCell"; title = "MonitorControl uses mouse position to determine which display to control. Using window focus instead might not work well with full screen apps."; ObjectID = "4dX-o1-xAc"; */
"4dX-o1-xAc.title" = "MonitorControl uses mouse position to determine which display to control. Using window focus instead might not work well with full screen apps.";
-/* Class = "NSButtonCell"; title = "Show separate controls for each display in menu"; ObjectID = "4t2-Rv-njr"; */
-"4t2-Rv-njr.title" = "Show separate controls for each display in menu";
-
/* Class = "NSTextField"; ibExternalAccessibilityDescription = "Brightness"; ObjectID = "567-le-fLg"; */
"567-le-fLg.ibExternalAccessibilityDescription" = "Brightness";
@@ -37,9 +40,6 @@
/* Class = "NSTextFieldCell"; title = "Slider behavior:"; ObjectID = "75n-7M-1mS"; */
"75n-7M-1mS.title" = "Slider behavior:";
-/* Class = "NSButtonCell"; title = "Use combined slider for all displays"; ObjectID = "7rn-Lu-fcl"; */
-"7rn-Lu-fcl.title" = "Use combined slider for all displays";
-
/* Class = "NSButtonCell"; title = "Show slider tick marks"; ObjectID = "7zf-m1-gJO"; */
"7zf-m1-gJO.title" = "Show slider tick marks";
@@ -58,6 +58,9 @@
/* Class = "NSSlider"; ibExternalAccessibilityDescription = "Brightness"; ObjectID = "9H1-0z-xsx"; */
"9H1-0z-xsx.ibExternalAccessibilityDescription" = "Brightness";
+/* Class = "NSMenuItem"; title = "Attempt to read display settings"; ObjectID = "9yL-no-aWa"; */
+"9yL-no-aWa.title" = "Attempt to read display settings";
+
/* Class = "NSTextFieldCell"; title = "Show tick marks at 0%, 25%, 50%, 75% and 100% for accuracy."; ObjectID = "A8P-vn-DEJ"; */
"A8P-vn-DEJ.title" = "Show tick marks at 0%, 25%, 50%, 75% and 100% for accuracy.";
@@ -67,6 +70,9 @@
/* Class = "NSTextFieldCell"; title = "Use brightness, volume and other settings from last time or use defaults. Values will be applied to the display upon first change by the user."; ObjectID = "an7-Aj-3fZ"; */
"an7-Aj-3fZ.title" = "Use brightness, volume and other settings from last time or use defaults. Values will be applied to the display upon first change by the user.";
+/* Class = "NSMenuItem"; title = "Show sliders only for the display currently showing the menu"; ObjectID = "bbf-sS-uGv"; */
+"bbf-sS-uGv.title" = "Show sliders only for the display currently showing the menu";
+
/* Class = "NSTextFieldCell"; title = "Brightness:"; ObjectID = "Bhb-6l-uPQ"; */
"Bhb-6l-uPQ.title" = "Brightness:";
@@ -88,9 +94,6 @@
/* Class = "NSButtonCell"; title = "Enable Mute DDC command"; ObjectID = "bZq-0d-lJa"; */
"bZq-0d-lJa.title" = "Enable Mute DDC command";
-/* Class = "NSTextFieldCell"; title = "Decrease:"; ObjectID = "Bzq-Co-fex"; */
-"Bzq-Co-fex.title" = "Decrease:";
-
/* Class = "NSButtonCell"; title = "Show volume slider in menu"; ObjectID = "c9D-MB-lma"; */
"c9D-MB-lma.title" = "Show volume slider in menu";
@@ -121,9 +124,6 @@
/* Class = "NSMenuItem"; title = "Minimal"; ObjectID = "Eq3-z9-yIo"; */
"Eq3-z9-yIo.title" = "低頻度";
-/* Class = "NSTextFieldCell"; title = "Increase:"; ObjectID = "eue-as-VOR"; */
-"eue-as-VOR.title" = "Increase:";
-
/* Class = "NSTextFieldCell"; title = "Scale mapping curve"; ObjectID = "Eui-5S-JR6"; */
"Eui-5S-JR6.title" = "Scale mapping curve";
@@ -175,16 +175,13 @@
/* Class = "NSButtonCell"; title = "Get current"; ObjectID = "hkC-vq-IcD"; */
"hkC-vq-IcD.title" = "Get current";
-/* Class = "NSTextFieldCell"; title = "Record shortcuts:"; ObjectID = "HLE-Vp-kcS"; */
-"HLE-Vp-kcS.title" = "Record shortcuts:";
-
/* Class = "NSMenuItem"; title = "Hide"; ObjectID = "HUT-Qc-kuu"; */
"HUT-Qc-kuu.title" = "Hide";
/* Class = "NSTextFieldCell"; title = "Additional controls:"; ObjectID = "i5X-M5-Tf5"; */
"i5X-M5-Tf5.title" = "Additional controls:";
-/* Class = "NSTextFieldCell"; title = "Brightness"; ObjectID = "IJB-mO-e8I"; */
+/* Class = "NSTextFieldCell"; title = "Brightness:"; ObjectID = "IJB-mO-e8I"; */
"IJB-mO-e8I.title" = "Brightness";
/* Class = "NSButtonCell"; title = "Enable smooth brightness transitions"; ObjectID = "IK4-u5-qjf"; */
@@ -202,17 +199,14 @@
/* Class = "NSTextFieldCell"; title = "Note: you can press Shift during startup for 'Safe mode' to restore defaults and avoid reading or setting anything."; ObjectID = "Jx2-gO-nq9"; */
"Jx2-gO-nq9.title" = "Note: you can press Shift during startup for 'Safe mode' to restore defaults and avoid reading or setting anything.";
-/* Class = "NSButtonCell"; title = "Apply last saved values to the display"; ObjectID = "K0S-zN-M4k"; */
-"K0S-zN-M4k.title" = "Apply last saved values to the display";
-
/* Class = "NSButtonCell"; title = "Enable for Apple branded and built-in displays as well"; ObjectID = "K6A-4z-1aQ"; */
"K6A-4z-1aQ.title" = "Enable for Apple branded and built-in displays as well";
/* Class = "NSTextFieldCell"; title = "Don't use software dimming as fallback if no hardware control is available."; ObjectID = "kgh-b4-gmO"; */
"kgh-b4-gmO.title" = "Don't use software dimming as fallback if no hardware control is available.";
-/* Class = "NSTextFieldCell"; title = "Record shortcuts:"; ObjectID = "kqJ-jQ-b7U"; */
-"kqJ-jQ-b7U.title" = "Record shortcuts:";
+/* Class = "NSMenuItem"; title = "Use combined slider for all displays"; ObjectID = "lA0-tv-qRs"; */
+"lA0-tv-qRs.title" = "Use combined slider for all displays";
/* Class = "NSTextFieldCell"; title = "Brightness and contrast:"; ObjectID = "LO4-4k-gxY"; */
"LO4-4k-gxY.title" = "Brightness and contrast:";
@@ -235,7 +229,7 @@
/* Class = "NSTextFieldCell"; title = "Contrast:"; ObjectID = "MMk-S2-yJN"; */
"MMk-S2-yJN.title" = "Contrast:";
-/* Class = "NSTextFieldCell"; title = "Increase:"; ObjectID = "mue-fa-8z6"; */
+/* Class = "NSTextFieldCell"; title = "Volume:"; ObjectID = "mue-fa-8z6"; */
"mue-fa-8z6.title" = "Increase:";
/* Class = "NSButtonCell"; title = "Show brightness slider in menu"; ObjectID = "MWo-6I-s9L"; */
@@ -280,9 +274,6 @@
/* Class = "NSTextFieldCell"; title = "DDC max"; ObjectID = "psF-vX-AFB"; */
"psF-vX-AFB.title" = "DDC max";
-/* Class = "NSButtonCell"; title = "Show sliders only for the display currently showing the menu"; ObjectID = "PvP-TV-OmT"; */
-"PvP-TV-OmT.title" = "Show sliders only for the display currently showing the menu";
-
/* Class = "NSTextFieldCell"; title = "Use software dimming after the display reached zero hardware brightness for extended range. Works for DDC controlled displays only."; ObjectID = "PyY-p9-3NP"; */
"PyY-p9-3NP.title" = "Use software dimming after the display reached zero hardware brightness for extended range. Works for DDC controlled displays only.";
@@ -334,7 +325,7 @@
/* Class = "NSButtonCell"; title = "Enable keyboard control for display"; ObjectID = "UqR-WE-jHl"; */
"UqR-WE-jHl.title" = "画面のキーボード操作を有効にする";
-/* Class = "NSTextFieldCell"; title = "Contrast (DDC)"; ObjectID = "urd-Rh-aiL"; */
+/* Class = "NSTextFieldCell"; title = "Contrast (DDC):"; ObjectID = "urd-Rh-aiL"; */
"urd-Rh-aiL.title" = "Contrast";
/* Class = "NSButtonCell"; title = "Do not use alternative brightness keys"; ObjectID = "vd2-Lk-neX"; */
@@ -385,12 +376,6 @@
/* Class = "NSTextFieldCell"; title = "Warning! With this option enabled, you might find yourself in a position when you end up with a blank display. This, combined with disabled keyboard controls can be frustrating."; ObjectID = "yi3-e1-wsL"; */
"yi3-e1-wsL.title" = "Warning! With this option enabled, you might find yourself in a position when you end up with a blank display. This, combined with disabled keyboard controls can be frustrating.";
-/* Class = "NSButtonCell"; title = "Assume last saved settings are valid (recommended)"; ObjectID = "yn8-Nd-o89"; */
-"yn8-Nd-o89.title" = "Assume last saved settings are valid (recommended)";
-
-/* Class = "NSTextFieldCell"; title = "Decrease:"; ObjectID = "yQh-Ve-WEE"; */
-"yQh-Ve-WEE.title" = "Decrease:";
-
/* Class = "NSTextFieldCell"; title = "Identifier:"; ObjectID = "YqZ-LS-YvR"; */
"YqZ-LS-YvR.title" = "Identifier:";
diff --git a/MonitorControl/UI/ko.lproj/Localizable.strings b/MonitorControl/UI/ko.lproj/Localizable.strings
index 42e6f72..b55a445 100644
--- a/MonitorControl/UI/ko.lproj/Localizable.strings
+++ b/MonitorControl/UI/ko.lproj/Localizable.strings
@@ -31,6 +31,9 @@
/* Version */
"Copyright Ⓒ MonitorControl, " = "Copyright Ⓒ MonitorControl, ";
+/* Shown in record shortcut box */
+"Decrease" = "감소";
+
/* Shown in the main prefs window */
"Displays" = "디스플레이";
@@ -52,12 +55,18 @@
/* Shown in the alert dialog */
"Incompatible previous version" = "호환되지 않는 이전 버전";
+/* Shown in record shortcut box */
+"Increase" = "증가";
+
/* Intel designation (shown after the version number in Preferences) */
"Intel" = "Intel";
/* Shown in the main prefs window */
"Keyboard" = "키보드";
+/* Shown in record shortcut box */
+"Mute" = "음소거";
+
/* Shown in the alert dialog */
"No" = "아니오";
diff --git a/MonitorControl/UI/ko.lproj/Main.strings b/MonitorControl/UI/ko.lproj/Main.strings
index 0706762..4622090 100644
--- a/MonitorControl/UI/ko.lproj/Main.strings
+++ b/MonitorControl/UI/ko.lproj/Main.strings
@@ -1,8 +1,8 @@
/* Class = "NSButtonCell"; title = "Sync brightness changes from Built-in and Apple displays"; ObjectID = "0ca-DG-AgB"; */
"0ca-DG-AgB.title" = "내장 및 Apple 디스플레이와 밝기 조절 동기화";
-/* Class = "NSButtonCell"; title = "Attempt to read display settings"; ObjectID = "0qp-fq-8MI"; */
-"0qp-fq-8MI.title" = "디스플레이 설정 읽기 시도";
+/* Class = "NSMenuItem"; title = "Assume last saved settings are valid (recommended)"; ObjectID = "1in-79-6qm"; */
+"1in-79-6qm.title" = "마지막으로 저장한 설정이 유효하다고 가정 (권장)";
/* Class = "NSTextFieldCell"; title = "MonitorControl"; ObjectID = "1PJ-14-Bvn"; */
"1PJ-14-Bvn.title" = "MonitorControl";
@@ -16,15 +16,18 @@
/* Class = "NSTextFieldCell"; title = "DDC min"; ObjectID = "1zE-fg-xEm"; */
"1zE-fg-xEm.title" = "DDC 최솟값";
+/* Class = "NSMenuItem"; title = "Show separate controls for each display in menu"; ObjectID = "3eO-bN-ZRl"; */
+"3eO-bN-ZRl.title" = "메뉴에서 각 디스플레이에 대해 각각의 컨트롤 표시";
+
+/* Class = "NSMenuItem"; title = "Apply last saved values to the display"; ObjectID = "3Jr-bW-YYq"; */
+"3Jr-bW-YYq.title" = "마지막으로 저장된 값을 디스플레이에 적용";
+
/* Class = "NSMenuItem"; title = "Custom keyboard shortcuts"; ObjectID = "4CG-0I-anB"; */
"4CG-0I-anB.title" = "사용자 정의 키보드 단축키";
/* Class = "NSTextFieldCell"; title = "MonitorControl uses mouse position to determine which display to control. Using window focus instead might not work well with full screen apps."; ObjectID = "4dX-o1-xAc"; */
"4dX-o1-xAc.title" = "MonitorControl은 마우스 위치를 기준으로 제어할 디스플레이를 결정합니다. 활성화된 창을 기준으로 하면 전체 화면 앱에서 제대로 동작하지 않을 수 있습니다.";
-/* Class = "NSButtonCell"; title = "Show separate controls for each display in menu"; ObjectID = "4t2-Rv-njr"; */
-"4t2-Rv-njr.title" = "메뉴에서 각 디스플레이에 대해 각각의 컨트롤 표시";
-
/* Class = "NSTextField"; ibExternalAccessibilityDescription = "Brightness"; ObjectID = "567-le-fLg"; */
"567-le-fLg.ibExternalAccessibilityDescription" = "밝기";
@@ -37,9 +40,6 @@
/* Class = "NSTextFieldCell"; title = "Slider behavior:"; ObjectID = "75n-7M-1mS"; */
"75n-7M-1mS.title" = "슬라이더 동작:";
-/* Class = "NSButtonCell"; title = "Use combined slider for all displays"; ObjectID = "7rn-Lu-fcl"; */
-"7rn-Lu-fcl.title" = "모든 디스플레이에 대한 통합 슬라이더 사용";
-
/* Class = "NSButtonCell"; title = "Show slider tick marks"; ObjectID = "7zf-m1-gJO"; */
"7zf-m1-gJO.title" = "슬라이더 눈금 표시";
@@ -58,6 +58,9 @@
/* Class = "NSSlider"; ibExternalAccessibilityDescription = "Brightness"; ObjectID = "9H1-0z-xsx"; */
"9H1-0z-xsx.ibExternalAccessibilityDescription" = "밝기";
+/* Class = "NSMenuItem"; title = "Attempt to read display settings"; ObjectID = "9yL-no-aWa"; */
+"9yL-no-aWa.title" = "디스플레이 설정 읽기 시도";
+
/* Class = "NSTextFieldCell"; title = "Show tick marks at 0%, 25%, 50%, 75% and 100% for accuracy."; ObjectID = "A8P-vn-DEJ"; */
"A8P-vn-DEJ.title" = "정확도를 위해 0%, 25%, 50%, 75% 및 100%에 눈금을 표시합니다.";
@@ -67,6 +70,9 @@
/* Class = "NSTextFieldCell"; title = "Use brightness, volume and other settings from last time or use defaults. Values will be applied to the display upon first change by the user."; ObjectID = "an7-Aj-3fZ"; */
"an7-Aj-3fZ.title" = "최근의 밝기, 볼륨 및 기타 설정을 사용하거나 기본값을 사용합니다. 값은 사용자가 처음 변경할 때 디스플레이에 적용됩니다.";
+/* Class = "NSMenuItem"; title = "Show sliders only for the display currently showing the menu"; ObjectID = "bbf-sS-uGv"; */
+"bbf-sS-uGv.title" = "현재 메뉴를 보여주는 디스플레이에 대한 슬라이더만 표시";
+
/* Class = "NSTextFieldCell"; title = "Brightness:"; ObjectID = "Bhb-6l-uPQ"; */
"Bhb-6l-uPQ.title" = "밝기:";
@@ -88,9 +94,6 @@
/* Class = "NSButtonCell"; title = "Enable Mute DDC command"; ObjectID = "bZq-0d-lJa"; */
"bZq-0d-lJa.title" = "음소거 DDC 커맨드 활성화";
-/* Class = "NSTextFieldCell"; title = "Decrease:"; ObjectID = "Bzq-Co-fex"; */
-"Bzq-Co-fex.title" = "감소:";
-
/* Class = "NSButtonCell"; title = "Show volume slider in menu"; ObjectID = "c9D-MB-lma"; */
"c9D-MB-lma.title" = "메뉴에서 볼륨 슬라이더 표시";
@@ -121,9 +124,6 @@
/* Class = "NSMenuItem"; title = "Minimal"; ObjectID = "Eq3-z9-yIo"; */
"Eq3-z9-yIo.title" = "최소";
-/* Class = "NSTextFieldCell"; title = "Increase:"; ObjectID = "eue-as-VOR"; */
-"eue-as-VOR.title" = "증가:";
-
/* Class = "NSTextFieldCell"; title = "Scale mapping curve"; ObjectID = "Eui-5S-JR6"; */
"Eui-5S-JR6.title" = "스케일 맵핑 곡선";
@@ -175,17 +175,14 @@
/* Class = "NSButtonCell"; title = "Get current"; ObjectID = "hkC-vq-IcD"; */
"hkC-vq-IcD.title" = "최신 정보 얻기";
-/* Class = "NSTextFieldCell"; title = "Record shortcuts:"; ObjectID = "HLE-Vp-kcS"; */
-"HLE-Vp-kcS.title" = "단축키 기록:";
-
/* Class = "NSMenuItem"; title = "Hide"; ObjectID = "HUT-Qc-kuu"; */
"HUT-Qc-kuu.title" = "숨김";
/* Class = "NSTextFieldCell"; title = "Additional controls:"; ObjectID = "i5X-M5-Tf5"; */
"i5X-M5-Tf5.title" = "추가 컨트롤:";
-/* Class = "NSTextFieldCell"; title = "Brightness"; ObjectID = "IJB-mO-e8I"; */
-"IJB-mO-e8I.title" = "밝기";
+/* Class = "NSTextFieldCell"; title = "Brightness:"; ObjectID = "IJB-mO-e8I"; */
+"IJB-mO-e8I.title" = "밝기:";
/* Class = "NSButtonCell"; title = "Enable smooth brightness transitions"; ObjectID = "IK4-u5-qjf"; */
"IK4-u5-qjf.title" = "부드러운 밝기 전환 활성화";
@@ -202,17 +199,14 @@
/* Class = "NSTextFieldCell"; title = "Note: you can press Shift during startup for 'Safe mode' to restore defaults and avoid reading or setting anything."; ObjectID = "Jx2-gO-nq9"; */
"Jx2-gO-nq9.title" = "참고: 시작하는 동안 Shift 키를 눌러 '안전 모드'를 실행할 수 있으며, 이는 기본값을 복원하고 어떠한 것이든 읽거나 설정하지 않도록 할 수 있습니다.";
-/* Class = "NSButtonCell"; title = "Apply last saved values to the display"; ObjectID = "K0S-zN-M4k"; */
-"K0S-zN-M4k.title" = "마지막으로 저장된 값을 디스플레이에 적용";
-
/* Class = "NSButtonCell"; title = "Enable for Apple branded and built-in displays as well"; ObjectID = "K6A-4z-1aQ"; */
"K6A-4z-1aQ.title" = "Apple 전용 및 내장 디스플레이에도 활성화";
/* Class = "NSTextFieldCell"; title = "Don't use software dimming as fallback if no hardware control is available."; ObjectID = "kgh-b4-gmO"; */
"kgh-b4-gmO.title" = "하드웨어 제어를 사용할 수 없는 경우 소프트웨어 밝기 조절을 대체 수단으로 사용하지 않습니다.";
-/* Class = "NSTextFieldCell"; title = "Record shortcuts:"; ObjectID = "kqJ-jQ-b7U"; */
-"kqJ-jQ-b7U.title" = "단축키 기록:";
+/* Class = "NSMenuItem"; title = "Use combined slider for all displays"; ObjectID = "lA0-tv-qRs"; */
+"lA0-tv-qRs.title" = "모든 디스플레이에 대한 통합 슬라이더 사용";
/* Class = "NSTextFieldCell"; title = "Brightness and contrast:"; ObjectID = "LO4-4k-gxY"; */
"LO4-4k-gxY.title" = "밝기 및 대비 제어:";
@@ -235,8 +229,8 @@
/* Class = "NSTextFieldCell"; title = "Contrast:"; ObjectID = "MMk-S2-yJN"; */
"MMk-S2-yJN.title" = "대비:";
-/* Class = "NSTextFieldCell"; title = "Increase:"; ObjectID = "mue-fa-8z6"; */
-"mue-fa-8z6.title" = "증가:";
+/* Class = "NSTextFieldCell"; title = "Volume:"; ObjectID = "mue-fa-8z6"; */
+"mue-fa-8z6.title" = "볼륨:";
/* Class = "NSButtonCell"; title = "Show brightness slider in menu"; ObjectID = "MWo-6I-s9L"; */
"MWo-6I-s9L.title" = "메뉴에 밝기 슬라이더 표시";
@@ -280,9 +274,6 @@
/* Class = "NSTextFieldCell"; title = "DDC max"; ObjectID = "psF-vX-AFB"; */
"psF-vX-AFB.title" = "DDC 최댓값";
-/* Class = "NSButtonCell"; title = "Show sliders only for the display currently showing the menu"; ObjectID = "PvP-TV-OmT"; */
-"PvP-TV-OmT.title" = "현재 메뉴를 보여주는 디스플레이에 대한 슬라이더만 표시";
-
/* Class = "NSTextFieldCell"; title = "Use software dimming after the display reached zero hardware brightness for extended range. Works for DDC controlled displays only."; ObjectID = "PyY-p9-3NP"; */
"PyY-p9-3NP.title" = "디스플레이가 확장된 범위에 대해 하드웨어 밝기가 0에 도달한 후 소프트웨어 밝기 조절을 사용합니다. DDC 제어 디스플레이에서만 동작합니다.";
@@ -334,8 +325,8 @@
/* Class = "NSButtonCell"; title = "Enable keyboard control for display"; ObjectID = "UqR-WE-jHl"; */
"UqR-WE-jHl.title" = "디스플레이 키보드 제어 활성화";
-/* Class = "NSTextFieldCell"; title = "Contrast (DDC)"; ObjectID = "urd-Rh-aiL"; */
-"urd-Rh-aiL.title" = "대비 (DDC)";
+/* Class = "NSTextFieldCell"; title = "Contrast (DDC):"; ObjectID = "urd-Rh-aiL"; */
+"urd-Rh-aiL.title" = "대비 (DDC):";
/* Class = "NSButtonCell"; title = "Do not use alternative brightness keys"; ObjectID = "vd2-Lk-neX"; */
"vd2-Lk-neX.title" = "대체 밝기 키를 사용하지 않습니다.";
@@ -385,12 +376,6 @@
/* Class = "NSTextFieldCell"; title = "Warning! With this option enabled, you might find yourself in a position when you end up with a blank display. This, combined with disabled keyboard controls can be frustrating."; ObjectID = "yi3-e1-wsL"; */
"yi3-e1-wsL.title" = "경고! 이 옵션을 활성화하면 빈 디스플레이가 표시되는 상황에 놓일 수 있습니다. 이는 비활성화된 키보드 컨트롤과 함께 불편함을 초래할 수 있습니다.";
-/* Class = "NSButtonCell"; title = "Assume last saved settings are valid (recommended)"; ObjectID = "yn8-Nd-o89"; */
-"yn8-Nd-o89.title" = "마지막으로 저장한 설정이 유효하다고 가정 (권장)";
-
-/* Class = "NSTextFieldCell"; title = "Decrease:"; ObjectID = "yQh-Ve-WEE"; */
-"yQh-Ve-WEE.title" = "감소:";
-
/* Class = "NSTextFieldCell"; title = "Identifier:"; ObjectID = "YqZ-LS-YvR"; */
"YqZ-LS-YvR.title" = "식별자:";
diff --git a/MonitorControl/UI/nl.lproj/Localizable.strings b/MonitorControl/UI/nl.lproj/Localizable.strings
index 66c220b..03a1a70 100644
--- a/MonitorControl/UI/nl.lproj/Localizable.strings
+++ b/MonitorControl/UI/nl.lproj/Localizable.strings
@@ -31,6 +31,9 @@
/* Version */
"Copyright Ⓒ MonitorControl, " = "Copyright Ⓒ MonitorControl, ";
+/* Shown in record shortcut box */
+"Decrease" = "Verminderen";
+
/* Shown in the main prefs window */
"Displays" = "Schermen";
@@ -52,12 +55,18 @@
/* Shown in the alert dialog */
"Incompatible previous version" = "Incompatibele vorige versie";
+/* Shown in record shortcut box */
+"Increase" = "Verhogen";
+
/* Intel designation (shown after the version number in Preferences) */
"Intel" = "Intel";
/* Shown in the main prefs window */
"Keyboard" = "Toetsenbord";
+/* Shown in record shortcut box */
+"Mute" = "Dempen";
+
/* Shown in the alert dialog */
"No" = "Nee";
diff --git a/MonitorControl/UI/nl.lproj/Main.strings b/MonitorControl/UI/nl.lproj/Main.strings
index e797435..9d65c19 100644
--- a/MonitorControl/UI/nl.lproj/Main.strings
+++ b/MonitorControl/UI/nl.lproj/Main.strings
@@ -1,8 +1,8 @@
/* Class = "NSButtonCell"; title = "Sync brightness changes from Built-in and Apple displays"; ObjectID = "0ca-DG-AgB"; */
"0ca-DG-AgB.title" = "Helderheid synchroniseren van Apple schermen";
-/* Class = "NSButtonCell"; title = "Attempt to read display settings"; ObjectID = "0qp-fq-8MI"; */
-"0qp-fq-8MI.title" = "Poging om scherminstellingen te lezen";
+/* Class = "NSMenuItem"; title = "Assume last saved settings are valid (recommended)"; ObjectID = "1in-79-6qm"; */
+"1in-79-6qm.title" = "Veronderstel dat de laatst bewaarde instellingen geldig zijn (aanbevolen)";
/* Class = "NSTextFieldCell"; title = "MonitorControl"; ObjectID = "1PJ-14-Bvn"; */
"1PJ-14-Bvn.title" = "MonitorControl";
@@ -16,15 +16,18 @@
/* Class = "NSTextFieldCell"; title = "DDC min"; ObjectID = "1zE-fg-xEm"; */
"1zE-fg-xEm.title" = "DDC min";
+/* Class = "NSMenuItem"; title = "Show separate controls for each display in menu"; ObjectID = "3eO-bN-ZRl"; */
+"3eO-bN-ZRl.title" = "Toon afzonderlijke bedieningselementen voor elk scherm in het menu";
+
+/* Class = "NSMenuItem"; title = "Apply last saved values to the display"; ObjectID = "3Jr-bW-YYq"; */
+"3Jr-bW-YYq.title" = "Pas laatst opgeslagen waarden toe op het scherm";
+
/* Class = "NSMenuItem"; title = "Custom keyboard shortcuts"; ObjectID = "4CG-0I-anB"; */
"4CG-0I-anB.title" = "Aangepaste sneltoetsen";
/* Class = "NSTextFieldCell"; title = "MonitorControl uses mouse position to determine which display to control. Using window focus instead might not work well with full screen apps."; ObjectID = "4dX-o1-xAc"; */
"4dX-o1-xAc.title" = "MonitorControl gebruikt de muispositie om te bepalen welk scherm moet worden bediend. Het gebruik van vensterfocus als alternatief werkt mogelijk niet goed bij fullscreen apps.";
-/* Class = "NSButtonCell"; title = "Show separate controls for each display in menu"; ObjectID = "4t2-Rv-njr"; */
-"4t2-Rv-njr.title" = "Toon afzonderlijke bedieningselementen voor elk scherm in het menu";
-
/* Class = "NSTextField"; ibExternalAccessibilityDescription = "Brightness"; ObjectID = "567-le-fLg"; */
"567-le-fLg.ibExternalAccessibilityDescription" = "Helderheid";
@@ -37,9 +40,6 @@
/* Class = "NSTextFieldCell"; title = "Slider behavior:"; ObjectID = "75n-7M-1mS"; */
"75n-7M-1mS.title" = "Schuifregelaargedrag:";
-/* Class = "NSButtonCell"; title = "Use combined slider for all displays"; ObjectID = "7rn-Lu-fcl"; */
-"7rn-Lu-fcl.title" = "Gecombineerde schuifregelaar gebruiken voor alle schermen";
-
/* Class = "NSButtonCell"; title = "Show slider tick marks"; ObjectID = "7zf-m1-gJO"; */
"7zf-m1-gJO.title" = "Toon maatstreepjes op schuifregelaar";
@@ -58,6 +58,9 @@
/* Class = "NSSlider"; ibExternalAccessibilityDescription = "Brightness"; ObjectID = "9H1-0z-xsx"; */
"9H1-0z-xsx.ibExternalAccessibilityDescription" = "Helderheid";
+/* Class = "NSMenuItem"; title = "Attempt to read display settings"; ObjectID = "9yL-no-aWa"; */
+"9yL-no-aWa.title" = "Poging om scherminstellingen te lezen";
+
/* Class = "NSTextFieldCell"; title = "Show tick marks at 0%, 25%, 50%, 75% and 100% for accuracy."; ObjectID = "A8P-vn-DEJ"; */
"A8P-vn-DEJ.title" = "Toon maatstreepjes op 0%, 25%, 50%, 75% en 100% voor nauwkeurigheid.";
@@ -67,6 +70,9 @@
/* Class = "NSTextFieldCell"; title = "Use brightness, volume and other settings from last time or use defaults. Values will be applied to the display upon first change by the user."; ObjectID = "an7-Aj-3fZ"; */
"an7-Aj-3fZ.title" = "Gebruik helderheid, volume en andere instellingen van de vorige sessie of gebruik standaardinstellingen. Waarden worden toegepast op het display bij de eerste wijziging door de gebruiker.";
+/* Class = "NSMenuItem"; title = "Show sliders only for the display currently showing the menu"; ObjectID = "bbf-sS-uGv"; */
+"bbf-sS-uGv.title" = "Enkel schuifregelaars tonen voor het scherm dat het menu toont";
+
/* Class = "NSTextFieldCell"; title = "Brightness:"; ObjectID = "Bhb-6l-uPQ"; */
"Bhb-6l-uPQ.title" = "Helderheid:";
@@ -88,9 +94,6 @@
/* Class = "NSButtonCell"; title = "Enable Mute DDC command"; ObjectID = "bZq-0d-lJa"; */
"bZq-0d-lJa.title" = "Schakel DDC commando voor dempen in";
-/* Class = "NSTextFieldCell"; title = "Decrease:"; ObjectID = "Bzq-Co-fex"; */
-"Bzq-Co-fex.title" = "Verminderen:";
-
/* Class = "NSButtonCell"; title = "Show volume slider in menu"; ObjectID = "c9D-MB-lma"; */
"c9D-MB-lma.title" = "Toon volumeregelaar in menu";
@@ -121,9 +124,6 @@
/* Class = "NSMenuItem"; title = "Minimal"; ObjectID = "Eq3-z9-yIo"; */
"Eq3-z9-yIo.title" = "Minimaal";
-/* Class = "NSTextFieldCell"; title = "Increase:"; ObjectID = "eue-as-VOR"; */
-"eue-as-VOR.title" = "Verhogen:";
-
/* Class = "NSTextFieldCell"; title = "Scale mapping curve"; ObjectID = "Eui-5S-JR6"; */
"Eui-5S-JR6.title" = "Schaaltoewijzingscurve";
@@ -175,17 +175,14 @@
/* Class = "NSButtonCell"; title = "Get current"; ObjectID = "hkC-vq-IcD"; */
"hkC-vq-IcD.title" = "Waarde ophalen";
-/* Class = "NSTextFieldCell"; title = "Record shortcuts:"; ObjectID = "HLE-Vp-kcS"; */
-"HLE-Vp-kcS.title" = "Snelkoppelingen opnemen:";
-
/* Class = "NSMenuItem"; title = "Hide"; ObjectID = "HUT-Qc-kuu"; */
"HUT-Qc-kuu.title" = "Verbergen";
/* Class = "NSTextFieldCell"; title = "Additional controls:"; ObjectID = "i5X-M5-Tf5"; */
"i5X-M5-Tf5.title" = "Extra bedieningselementen:";
-/* Class = "NSTextFieldCell"; title = "Brightness"; ObjectID = "IJB-mO-e8I"; */
-"IJB-mO-e8I.title" = "Helderheid";
+/* Class = "NSTextFieldCell"; title = "Brightness:"; ObjectID = "IJB-mO-e8I"; */
+"IJB-mO-e8I.title" = "Helderheid:";
/* Class = "NSButtonCell"; title = "Enable smooth brightness transitions"; ObjectID = "IK4-u5-qjf"; */
"IK4-u5-qjf.title" = "Vloeiende helderheidsovergangen inschakelen";
@@ -202,17 +199,14 @@
/* Class = "NSTextFieldCell"; title = "Note: you can press Shift during startup for 'Safe mode' to restore defaults and avoid reading or setting anything."; ObjectID = "Jx2-gO-nq9"; */
"Jx2-gO-nq9.title" = "Opmerking: u kunt tijdens het opstarten op Shift drukken voor 'Veilige modus' om de standaardinstellingen te herstellen en niets te lezen of in te stellen.";
-/* Class = "NSButtonCell"; title = "Apply last saved values to the display"; ObjectID = "K0S-zN-M4k"; */
-"K0S-zN-M4k.title" = "Pas laatst opgeslagen waarden toe op het scherm";
-
/* Class = "NSButtonCell"; title = "Enable for Apple branded and built-in displays as well"; ObjectID = "K6A-4z-1aQ"; */
"K6A-4z-1aQ.title" = "Ook inschakelen voor Apple branded en ingebouwde schermen";
/* Class = "NSTextFieldCell"; title = "Don't use software dimming as fallback if no hardware control is available."; ObjectID = "kgh-b4-gmO"; */
"kgh-b4-gmO.title" = "Gebruik geen software dimming als fallback als er geen hardwarecontrole beschikbaar is.";
-/* Class = "NSTextFieldCell"; title = "Record shortcuts:"; ObjectID = "kqJ-jQ-b7U"; */
-"kqJ-jQ-b7U.title" = "Snelkoppelingen opnemen:";
+/* Class = "NSMenuItem"; title = "Use combined slider for all displays"; ObjectID = "lA0-tv-qRs"; */
+"lA0-tv-qRs.title" = "Gecombineerde schuifregelaar gebruiken voor alle schermen";
/* Class = "NSTextFieldCell"; title = "Brightness and contrast:"; ObjectID = "LO4-4k-gxY"; */
"LO4-4k-gxY.title" = "Helderheid en contrastregeling:";
@@ -235,8 +229,8 @@
/* Class = "NSTextFieldCell"; title = "Contrast:"; ObjectID = "MMk-S2-yJN"; */
"MMk-S2-yJN.title" = "Contrast:";
-/* Class = "NSTextFieldCell"; title = "Increase:"; ObjectID = "mue-fa-8z6"; */
-"mue-fa-8z6.title" = "Verhogen:";
+/* Class = "NSTextFieldCell"; title = "Volume:"; ObjectID = "mue-fa-8z6"; */
+"mue-fa-8z6.title" = "Volume:";
/* Class = "NSButtonCell"; title = "Show brightness slider in menu"; ObjectID = "MWo-6I-s9L"; */
"MWo-6I-s9L.title" = "Helderheidsregelaar in menu weergeven";
@@ -280,9 +274,6 @@
/* Class = "NSTextFieldCell"; title = "DDC max"; ObjectID = "psF-vX-AFB"; */
"psF-vX-AFB.title" = "DDC max";
-/* Class = "NSButtonCell"; title = "Show sliders only for the display currently showing the menu"; ObjectID = "PvP-TV-OmT"; */
-"PvP-TV-OmT.title" = "Enkel schuifregelaars tonen voor het scherm dat het menu toont";
-
/* Class = "NSTextFieldCell"; title = "Use software dimming after the display reached zero hardware brightness for extended range. Works for DDC controlled displays only."; ObjectID = "PyY-p9-3NP"; */
"PyY-p9-3NP.title" = "Gebruik software-dimmen nadat het scherm de hardwarehelderheid 0 heeft bereikt voor een groter bereik. Werkt alleen voor DDC-gestuurde displays.";
@@ -334,8 +325,8 @@
/* Class = "NSButtonCell"; title = "Enable keyboard control for display"; ObjectID = "UqR-WE-jHl"; */
"UqR-WE-jHl.title" = "Schakel toetsenbordbediening in voor scherm";
-/* Class = "NSTextFieldCell"; title = "Contrast (DDC)"; ObjectID = "urd-Rh-aiL"; */
-"urd-Rh-aiL.title" = "Contrast";
+/* Class = "NSTextFieldCell"; title = "Contrast (DDC):"; ObjectID = "urd-Rh-aiL"; */
+"urd-Rh-aiL.title" = "Contrast:";
/* Class = "NSButtonCell"; title = "Do not use alternative brightness keys"; ObjectID = "vd2-Lk-neX"; */
"vd2-Lk-neX.title" = "Gebruik geen alternatieve helderheidstoetsen";
@@ -385,12 +376,6 @@
/* Class = "NSTextFieldCell"; title = "Warning! With this option enabled, you might find yourself in a position when you end up with a blank display. This, combined with disabled keyboard controls can be frustrating."; ObjectID = "yi3-e1-wsL"; */
"yi3-e1-wsL.title" = "Warning! With this option enabled, you might find yourself in a position when you end up with a blank display. This, combined with disabled keyboard controls can be frustrating.";
-/* Class = "NSButtonCell"; title = "Assume last saved settings are valid (recommended)"; ObjectID = "yn8-Nd-o89"; */
-"yn8-Nd-o89.title" = "Veronderstel dat de laatst bewaarde instellingen geldig zijn (aanbevolen)";
-
-/* Class = "NSTextFieldCell"; title = "Decrease:"; ObjectID = "yQh-Ve-WEE"; */
-"yQh-Ve-WEE.title" = "Verminderen:";
-
/* Class = "NSTextFieldCell"; title = "Identifier:"; ObjectID = "YqZ-LS-YvR"; */
"YqZ-LS-YvR.title" = "Identificatie:";
diff --git a/MonitorControl/UI/pl.lproj/Localizable.strings b/MonitorControl/UI/pl.lproj/Localizable.strings
index 109da4c..69cfca9 100644
--- a/MonitorControl/UI/pl.lproj/Localizable.strings
+++ b/MonitorControl/UI/pl.lproj/Localizable.strings
@@ -31,6 +31,9 @@
/* Version */
"Copyright Ⓒ MonitorControl, " = "Copyright Ⓒ MonitorControl, ";
+/* Shown in record shortcut box */
+"Decrease" = "Decrease";
+
/* Shown in the main prefs window */
"Displays" = "Wyświetlacze";
@@ -52,12 +55,18 @@
/* Shown in the alert dialog */
"Incompatible previous version" = "Incompatible previous version";
+/* Shown in record shortcut box */
+"Increase" = "Increase";
+
/* Intel designation (shown after the version number in Preferences) */
"Intel" = "Intel";
/* Shown in the main prefs window */
"Keyboard" = "Keyboard";
+/* Shown in record shortcut box */
+"Mute" = "Mute";
+
/* Shown in the alert dialog */
"No" = "Nie";
diff --git a/MonitorControl/UI/pl.lproj/Main.strings b/MonitorControl/UI/pl.lproj/Main.strings
index 025440f..1ad8186 100644
--- a/MonitorControl/UI/pl.lproj/Main.strings
+++ b/MonitorControl/UI/pl.lproj/Main.strings
@@ -1,8 +1,8 @@
/* Class = "NSButtonCell"; title = "Sync brightness changes from Built-in and Apple displays"; ObjectID = "0ca-DG-AgB"; */
"0ca-DG-AgB.title" = "Sync brightness changes from Built-in and Apple displays";
-/* Class = "NSButtonCell"; title = "Attempt to read display settings"; ObjectID = "0qp-fq-8MI"; */
-"0qp-fq-8MI.title" = "Attempt to read display settings";
+/* Class = "NSMenuItem"; title = "Assume last saved settings are valid (recommended)"; ObjectID = "1in-79-6qm"; */
+"1in-79-6qm.title" = "Assume last saved settings are valid (recommended)";
/* Class = "NSTextFieldCell"; title = "MonitorControl"; ObjectID = "1PJ-14-Bvn"; */
"1PJ-14-Bvn.title" = "MonitorControl";
@@ -16,15 +16,18 @@
/* Class = "NSTextFieldCell"; title = "DDC min"; ObjectID = "1zE-fg-xEm"; */
"1zE-fg-xEm.title" = "DDC min";
+/* Class = "NSMenuItem"; title = "Show separate controls for each display in menu"; ObjectID = "3eO-bN-ZRl"; */
+"3eO-bN-ZRl.title" = "Show separate controls for each display in menu";
+
+/* Class = "NSMenuItem"; title = "Apply last saved values to the display"; ObjectID = "3Jr-bW-YYq"; */
+"3Jr-bW-YYq.title" = "Apply last saved values to the display";
+
/* Class = "NSMenuItem"; title = "Custom keyboard shortcuts"; ObjectID = "4CG-0I-anB"; */
"4CG-0I-anB.title" = "Custom keyboard shortcuts";
/* Class = "NSTextFieldCell"; title = "MonitorControl uses mouse position to determine which display to control. Using window focus instead might not work well with full screen apps."; ObjectID = "4dX-o1-xAc"; */
"4dX-o1-xAc.title" = "MonitorControl uses mouse position to determine which display to control. Using window focus instead might not work well with full screen apps.";
-/* Class = "NSButtonCell"; title = "Show separate controls for each display in menu"; ObjectID = "4t2-Rv-njr"; */
-"4t2-Rv-njr.title" = "Show separate controls for each display in menu";
-
/* Class = "NSTextField"; ibExternalAccessibilityDescription = "Brightness"; ObjectID = "567-le-fLg"; */
"567-le-fLg.ibExternalAccessibilityDescription" = "Brightness";
@@ -37,9 +40,6 @@
/* Class = "NSTextFieldCell"; title = "Slider behavior:"; ObjectID = "75n-7M-1mS"; */
"75n-7M-1mS.title" = "Slider behavior:";
-/* Class = "NSButtonCell"; title = "Use combined slider for all displays"; ObjectID = "7rn-Lu-fcl"; */
-"7rn-Lu-fcl.title" = "Use combined slider for all displays";
-
/* Class = "NSButtonCell"; title = "Show slider tick marks"; ObjectID = "7zf-m1-gJO"; */
"7zf-m1-gJO.title" = "Show slider tick marks";
@@ -58,6 +58,9 @@
/* Class = "NSSlider"; ibExternalAccessibilityDescription = "Brightness"; ObjectID = "9H1-0z-xsx"; */
"9H1-0z-xsx.ibExternalAccessibilityDescription" = "Brightness";
+/* Class = "NSMenuItem"; title = "Attempt to read display settings"; ObjectID = "9yL-no-aWa"; */
+"9yL-no-aWa.title" = "Attempt to read display settings";
+
/* Class = "NSTextFieldCell"; title = "Show tick marks at 0%, 25%, 50%, 75% and 100% for accuracy."; ObjectID = "A8P-vn-DEJ"; */
"A8P-vn-DEJ.title" = "Show tick marks at 0%, 25%, 50%, 75% and 100% for accuracy.";
@@ -67,6 +70,9 @@
/* Class = "NSTextFieldCell"; title = "Use brightness, volume and other settings from last time or use defaults. Values will be applied to the display upon first change by the user."; ObjectID = "an7-Aj-3fZ"; */
"an7-Aj-3fZ.title" = "Use brightness, volume and other settings from last time or use defaults. Values will be applied to the display upon first change by the user.";
+/* Class = "NSMenuItem"; title = "Show sliders only for the display currently showing the menu"; ObjectID = "bbf-sS-uGv"; */
+"bbf-sS-uGv.title" = "Show sliders only for the display currently showing the menu";
+
/* Class = "NSTextFieldCell"; title = "Brightness:"; ObjectID = "Bhb-6l-uPQ"; */
"Bhb-6l-uPQ.title" = "Brightness:";
@@ -88,9 +94,6 @@
/* Class = "NSButtonCell"; title = "Enable Mute DDC command"; ObjectID = "bZq-0d-lJa"; */
"bZq-0d-lJa.title" = "Uruchom komendę Wyciszenia DDC";
-/* Class = "NSTextFieldCell"; title = "Decrease:"; ObjectID = "Bzq-Co-fex"; */
-"Bzq-Co-fex.title" = "Decrease:";
-
/* Class = "NSButtonCell"; title = "Show volume slider in menu"; ObjectID = "c9D-MB-lma"; */
"c9D-MB-lma.title" = "Show volume slider in menu";
@@ -121,9 +124,6 @@
/* Class = "NSMenuItem"; title = "Minimal"; ObjectID = "Eq3-z9-yIo"; */
"Eq3-z9-yIo.title" = "Minimalny";
-/* Class = "NSTextFieldCell"; title = "Increase:"; ObjectID = "eue-as-VOR"; */
-"eue-as-VOR.title" = "Increase:";
-
/* Class = "NSTextFieldCell"; title = "Scale mapping curve"; ObjectID = "Eui-5S-JR6"; */
"Eui-5S-JR6.title" = "Scale mapping curve";
@@ -175,16 +175,13 @@
/* Class = "NSButtonCell"; title = "Get current"; ObjectID = "hkC-vq-IcD"; */
"hkC-vq-IcD.title" = "Get current";
-/* Class = "NSTextFieldCell"; title = "Record shortcuts:"; ObjectID = "HLE-Vp-kcS"; */
-"HLE-Vp-kcS.title" = "Record shortcuts:";
-
/* Class = "NSMenuItem"; title = "Hide"; ObjectID = "HUT-Qc-kuu"; */
"HUT-Qc-kuu.title" = "Hide";
/* Class = "NSTextFieldCell"; title = "Additional controls:"; ObjectID = "i5X-M5-Tf5"; */
"i5X-M5-Tf5.title" = "Additional controls:";
-/* Class = "NSTextFieldCell"; title = "Brightness"; ObjectID = "IJB-mO-e8I"; */
+/* Class = "NSTextFieldCell"; title = "Brightness:"; ObjectID = "IJB-mO-e8I"; */
"IJB-mO-e8I.title" = "Brightness";
/* Class = "NSButtonCell"; title = "Enable smooth brightness transitions"; ObjectID = "IK4-u5-qjf"; */
@@ -202,17 +199,14 @@
/* Class = "NSTextFieldCell"; title = "Note: you can press Shift during startup for 'Safe mode' to restore defaults and avoid reading or setting anything."; ObjectID = "Jx2-gO-nq9"; */
"Jx2-gO-nq9.title" = "Note: you can press Shift during startup for 'Safe mode' to restore defaults and avoid reading or setting anything.";
-/* Class = "NSButtonCell"; title = "Apply last saved values to the display"; ObjectID = "K0S-zN-M4k"; */
-"K0S-zN-M4k.title" = "Apply last saved values to the display";
-
/* Class = "NSButtonCell"; title = "Enable for Apple branded and built-in displays as well"; ObjectID = "K6A-4z-1aQ"; */
"K6A-4z-1aQ.title" = "Enable for Apple branded and built-in displays as well";
/* Class = "NSTextFieldCell"; title = "Don't use software dimming as fallback if no hardware control is available."; ObjectID = "kgh-b4-gmO"; */
"kgh-b4-gmO.title" = "Don't use software dimming as fallback if no hardware control is available.";
-/* Class = "NSTextFieldCell"; title = "Record shortcuts:"; ObjectID = "kqJ-jQ-b7U"; */
-"kqJ-jQ-b7U.title" = "Record shortcuts:";
+/* Class = "NSMenuItem"; title = "Use combined slider for all displays"; ObjectID = "lA0-tv-qRs"; */
+"lA0-tv-qRs.title" = "Use combined slider for all displays";
/* Class = "NSTextFieldCell"; title = "Brightness and contrast:"; ObjectID = "LO4-4k-gxY"; */
"LO4-4k-gxY.title" = "Brightness and contrast:";
@@ -235,7 +229,7 @@
/* Class = "NSTextFieldCell"; title = "Contrast:"; ObjectID = "MMk-S2-yJN"; */
"MMk-S2-yJN.title" = "Contrast:";
-/* Class = "NSTextFieldCell"; title = "Increase:"; ObjectID = "mue-fa-8z6"; */
+/* Class = "NSTextFieldCell"; title = "Volume:"; ObjectID = "mue-fa-8z6"; */
"mue-fa-8z6.title" = "Increase:";
/* Class = "NSButtonCell"; title = "Show brightness slider in menu"; ObjectID = "MWo-6I-s9L"; */
@@ -280,9 +274,6 @@
/* Class = "NSTextFieldCell"; title = "DDC max"; ObjectID = "psF-vX-AFB"; */
"psF-vX-AFB.title" = "DDC max";
-/* Class = "NSButtonCell"; title = "Show sliders only for the display currently showing the menu"; ObjectID = "PvP-TV-OmT"; */
-"PvP-TV-OmT.title" = "Show sliders only for the display currently showing the menu";
-
/* Class = "NSTextFieldCell"; title = "Use software dimming after the display reached zero hardware brightness for extended range. Works for DDC controlled displays only."; ObjectID = "PyY-p9-3NP"; */
"PyY-p9-3NP.title" = "Use software dimming after the display reached zero hardware brightness for extended range. Works for DDC controlled displays only.";
@@ -334,7 +325,7 @@
/* Class = "NSButtonCell"; title = "Enable keyboard control for display"; ObjectID = "UqR-WE-jHl"; */
"UqR-WE-jHl.title" = "Włącz sterowanie klawiaturą dla tego wyświetlacza";
-/* Class = "NSTextFieldCell"; title = "Contrast (DDC)"; ObjectID = "urd-Rh-aiL"; */
+/* Class = "NSTextFieldCell"; title = "Contrast (DDC):"; ObjectID = "urd-Rh-aiL"; */
"urd-Rh-aiL.title" = "Contrast";
/* Class = "NSButtonCell"; title = "Do not use alternative brightness keys"; ObjectID = "vd2-Lk-neX"; */
@@ -385,12 +376,6 @@
/* Class = "NSTextFieldCell"; title = "Warning! With this option enabled, you might find yourself in a position when you end up with a blank display. This, combined with disabled keyboard controls can be frustrating."; ObjectID = "yi3-e1-wsL"; */
"yi3-e1-wsL.title" = "Warning! With this option enabled, you might find yourself in a position when you end up with a blank display. This, combined with disabled keyboard controls can be frustrating.";
-/* Class = "NSButtonCell"; title = "Assume last saved settings are valid (recommended)"; ObjectID = "yn8-Nd-o89"; */
-"yn8-Nd-o89.title" = "Assume last saved settings are valid (recommended)";
-
-/* Class = "NSTextFieldCell"; title = "Decrease:"; ObjectID = "yQh-Ve-WEE"; */
-"yQh-Ve-WEE.title" = "Decrease:";
-
/* Class = "NSTextFieldCell"; title = "Identifier:"; ObjectID = "YqZ-LS-YvR"; */
"YqZ-LS-YvR.title" = "Identyfikator:";
diff --git a/MonitorControl/UI/ru.lproj/Localizable.strings b/MonitorControl/UI/ru.lproj/Localizable.strings
index b6f59cf..c03a038 100644
--- a/MonitorControl/UI/ru.lproj/Localizable.strings
+++ b/MonitorControl/UI/ru.lproj/Localizable.strings
@@ -31,6 +31,9 @@
/* Version */
"Copyright Ⓒ MonitorControl, " = "Copyright Ⓒ MonitorControl, ";
+/* Shown in record shortcut box */
+"Decrease" = "Decrease";
+
/* Shown in the main prefs window */
"Displays" = "Дисплеи";
@@ -52,12 +55,18 @@
/* Shown in the alert dialog */
"Incompatible previous version" = "Incompatible previous version";
+/* Shown in record shortcut box */
+"Increase" = "Increase";
+
/* Intel designation (shown after the version number in Preferences) */
"Intel" = "Intel";
/* Shown in the main prefs window */
"Keyboard" = "Keyboard";
+/* Shown in record shortcut box */
+"Mute" = "Mute";
+
/* Shown in the alert dialog */
"No" = "Нет";
diff --git a/MonitorControl/UI/ru.lproj/Main.strings b/MonitorControl/UI/ru.lproj/Main.strings
index 99d5edb..f294184 100644
--- a/MonitorControl/UI/ru.lproj/Main.strings
+++ b/MonitorControl/UI/ru.lproj/Main.strings
@@ -1,8 +1,8 @@
/* Class = "NSButtonCell"; title = "Sync brightness changes from Built-in and Apple displays"; ObjectID = "0ca-DG-AgB"; */
"0ca-DG-AgB.title" = "Sync brightness changes from Built-in and Apple displays";
-/* Class = "NSButtonCell"; title = "Attempt to read display settings"; ObjectID = "0qp-fq-8MI"; */
-"0qp-fq-8MI.title" = "Attempt to read display settings";
+/* Class = "NSMenuItem"; title = "Assume last saved settings are valid (recommended)"; ObjectID = "1in-79-6qm"; */
+"1in-79-6qm.title" = "Assume last saved settings are valid (recommended)";
/* Class = "NSTextFieldCell"; title = "MonitorControl"; ObjectID = "1PJ-14-Bvn"; */
"1PJ-14-Bvn.title" = "MonitorControl";
@@ -16,15 +16,18 @@
/* Class = "NSTextFieldCell"; title = "DDC min"; ObjectID = "1zE-fg-xEm"; */
"1zE-fg-xEm.title" = "DDC min";
+/* Class = "NSMenuItem"; title = "Show separate controls for each display in menu"; ObjectID = "3eO-bN-ZRl"; */
+"3eO-bN-ZRl.title" = "Show separate controls for each display in menu";
+
+/* Class = "NSMenuItem"; title = "Apply last saved values to the display"; ObjectID = "3Jr-bW-YYq"; */
+"3Jr-bW-YYq.title" = "Apply last saved values to the display";
+
/* Class = "NSMenuItem"; title = "Custom keyboard shortcuts"; ObjectID = "4CG-0I-anB"; */
"4CG-0I-anB.title" = "Custom keyboard shortcuts";
/* Class = "NSTextFieldCell"; title = "MonitorControl uses mouse position to determine which display to control. Using window focus instead might not work well with full screen apps."; ObjectID = "4dX-o1-xAc"; */
"4dX-o1-xAc.title" = "MonitorControl uses mouse position to determine which display to control. Using window focus instead might not work well with full screen apps.";
-/* Class = "NSButtonCell"; title = "Show separate controls for each display in menu"; ObjectID = "4t2-Rv-njr"; */
-"4t2-Rv-njr.title" = "Show separate controls for each display in menu";
-
/* Class = "NSTextField"; ibExternalAccessibilityDescription = "Brightness"; ObjectID = "567-le-fLg"; */
"567-le-fLg.ibExternalAccessibilityDescription" = "Brightness";
@@ -37,9 +40,6 @@
/* Class = "NSTextFieldCell"; title = "Slider behavior:"; ObjectID = "75n-7M-1mS"; */
"75n-7M-1mS.title" = "Slider behavior:";
-/* Class = "NSButtonCell"; title = "Use combined slider for all displays"; ObjectID = "7rn-Lu-fcl"; */
-"7rn-Lu-fcl.title" = "Use combined slider for all displays";
-
/* Class = "NSButtonCell"; title = "Show slider tick marks"; ObjectID = "7zf-m1-gJO"; */
"7zf-m1-gJO.title" = "Show slider tick marks";
@@ -58,6 +58,9 @@
/* Class = "NSSlider"; ibExternalAccessibilityDescription = "Brightness"; ObjectID = "9H1-0z-xsx"; */
"9H1-0z-xsx.ibExternalAccessibilityDescription" = "Brightness";
+/* Class = "NSMenuItem"; title = "Attempt to read display settings"; ObjectID = "9yL-no-aWa"; */
+"9yL-no-aWa.title" = "Attempt to read display settings";
+
/* Class = "NSTextFieldCell"; title = "Show tick marks at 0%, 25%, 50%, 75% and 100% for accuracy."; ObjectID = "A8P-vn-DEJ"; */
"A8P-vn-DEJ.title" = "Show tick marks at 0%, 25%, 50%, 75% and 100% for accuracy.";
@@ -67,6 +70,9 @@
/* Class = "NSTextFieldCell"; title = "Use brightness, volume and other settings from last time or use defaults. Values will be applied to the display upon first change by the user."; ObjectID = "an7-Aj-3fZ"; */
"an7-Aj-3fZ.title" = "Use brightness, volume and other settings from last time or use defaults. Values will be applied to the display upon first change by the user.";
+/* Class = "NSMenuItem"; title = "Show sliders only for the display currently showing the menu"; ObjectID = "bbf-sS-uGv"; */
+"bbf-sS-uGv.title" = "Show sliders only for the display currently showing the menu";
+
/* Class = "NSTextFieldCell"; title = "Brightness:"; ObjectID = "Bhb-6l-uPQ"; */
"Bhb-6l-uPQ.title" = "Brightness:";
@@ -88,9 +94,6 @@
/* Class = "NSButtonCell"; title = "Enable Mute DDC command"; ObjectID = "bZq-0d-lJa"; */
"bZq-0d-lJa.title" = "Включить DDC-команду 'Отключить звук'";
-/* Class = "NSTextFieldCell"; title = "Decrease:"; ObjectID = "Bzq-Co-fex"; */
-"Bzq-Co-fex.title" = "Decrease:";
-
/* Class = "NSButtonCell"; title = "Show volume slider in menu"; ObjectID = "c9D-MB-lma"; */
"c9D-MB-lma.title" = "Show volume slider in menu";
@@ -121,9 +124,6 @@
/* Class = "NSMenuItem"; title = "Minimal"; ObjectID = "Eq3-z9-yIo"; */
"Eq3-z9-yIo.title" = "Редко";
-/* Class = "NSTextFieldCell"; title = "Increase:"; ObjectID = "eue-as-VOR"; */
-"eue-as-VOR.title" = "Increase:";
-
/* Class = "NSTextFieldCell"; title = "Scale mapping curve"; ObjectID = "Eui-5S-JR6"; */
"Eui-5S-JR6.title" = "Scale mapping curve";
@@ -175,16 +175,13 @@
/* Class = "NSButtonCell"; title = "Get current"; ObjectID = "hkC-vq-IcD"; */
"hkC-vq-IcD.title" = "Get current";
-/* Class = "NSTextFieldCell"; title = "Record shortcuts:"; ObjectID = "HLE-Vp-kcS"; */
-"HLE-Vp-kcS.title" = "Record shortcuts:";
-
/* Class = "NSMenuItem"; title = "Hide"; ObjectID = "HUT-Qc-kuu"; */
"HUT-Qc-kuu.title" = "Hide";
/* Class = "NSTextFieldCell"; title = "Additional controls:"; ObjectID = "i5X-M5-Tf5"; */
"i5X-M5-Tf5.title" = "Additional controls:";
-/* Class = "NSTextFieldCell"; title = "Brightness"; ObjectID = "IJB-mO-e8I"; */
+/* Class = "NSTextFieldCell"; title = "Brightness:"; ObjectID = "IJB-mO-e8I"; */
"IJB-mO-e8I.title" = "Brightness";
/* Class = "NSButtonCell"; title = "Enable smooth brightness transitions"; ObjectID = "IK4-u5-qjf"; */
@@ -202,17 +199,14 @@
/* Class = "NSTextFieldCell"; title = "Note: you can press Shift during startup for 'Safe mode' to restore defaults and avoid reading or setting anything."; ObjectID = "Jx2-gO-nq9"; */
"Jx2-gO-nq9.title" = "Note: you can press Shift during startup for 'Safe mode' to restore defaults and avoid reading or setting anything.";
-/* Class = "NSButtonCell"; title = "Apply last saved values to the display"; ObjectID = "K0S-zN-M4k"; */
-"K0S-zN-M4k.title" = "Apply last saved values to the display";
-
/* Class = "NSButtonCell"; title = "Enable for Apple branded and built-in displays as well"; ObjectID = "K6A-4z-1aQ"; */
"K6A-4z-1aQ.title" = "Enable for Apple branded and built-in displays as well";
/* Class = "NSTextFieldCell"; title = "Don't use software dimming as fallback if no hardware control is available."; ObjectID = "kgh-b4-gmO"; */
"kgh-b4-gmO.title" = "Don't use software dimming as fallback if no hardware control is available.";
-/* Class = "NSTextFieldCell"; title = "Record shortcuts:"; ObjectID = "kqJ-jQ-b7U"; */
-"kqJ-jQ-b7U.title" = "Record shortcuts:";
+/* Class = "NSMenuItem"; title = "Use combined slider for all displays"; ObjectID = "lA0-tv-qRs"; */
+"lA0-tv-qRs.title" = "Use combined slider for all displays";
/* Class = "NSTextFieldCell"; title = "Brightness and contrast:"; ObjectID = "LO4-4k-gxY"; */
"LO4-4k-gxY.title" = "Brightness and contrast:";
@@ -235,7 +229,7 @@
/* Class = "NSTextFieldCell"; title = "Contrast:"; ObjectID = "MMk-S2-yJN"; */
"MMk-S2-yJN.title" = "Contrast:";
-/* Class = "NSTextFieldCell"; title = "Increase:"; ObjectID = "mue-fa-8z6"; */
+/* Class = "NSTextFieldCell"; title = "Volume:"; ObjectID = "mue-fa-8z6"; */
"mue-fa-8z6.title" = "Increase:";
/* Class = "NSButtonCell"; title = "Show brightness slider in menu"; ObjectID = "MWo-6I-s9L"; */
@@ -280,9 +274,6 @@
/* Class = "NSTextFieldCell"; title = "DDC max"; ObjectID = "psF-vX-AFB"; */
"psF-vX-AFB.title" = "DDC max";
-/* Class = "NSButtonCell"; title = "Show sliders only for the display currently showing the menu"; ObjectID = "PvP-TV-OmT"; */
-"PvP-TV-OmT.title" = "Show sliders only for the display currently showing the menu";
-
/* Class = "NSTextFieldCell"; title = "Use software dimming after the display reached zero hardware brightness for extended range. Works for DDC controlled displays only."; ObjectID = "PyY-p9-3NP"; */
"PyY-p9-3NP.title" = "Use software dimming after the display reached zero hardware brightness for extended range. Works for DDC controlled displays only.";
@@ -334,7 +325,7 @@
/* Class = "NSButtonCell"; title = "Enable keyboard control for display"; ObjectID = "UqR-WE-jHl"; */
"UqR-WE-jHl.title" = "Включить управление клавиатурой для дисплея";
-/* Class = "NSTextFieldCell"; title = "Contrast (DDC)"; ObjectID = "urd-Rh-aiL"; */
+/* Class = "NSTextFieldCell"; title = "Contrast (DDC):"; ObjectID = "urd-Rh-aiL"; */
"urd-Rh-aiL.title" = "Contrast";
/* Class = "NSButtonCell"; title = "Do not use alternative brightness keys"; ObjectID = "vd2-Lk-neX"; */
@@ -385,12 +376,6 @@
/* Class = "NSTextFieldCell"; title = "Warning! With this option enabled, you might find yourself in a position when you end up with a blank display. This, combined with disabled keyboard controls can be frustrating."; ObjectID = "yi3-e1-wsL"; */
"yi3-e1-wsL.title" = "Warning! With this option enabled, you might find yourself in a position when you end up with a blank display. This, combined with disabled keyboard controls can be frustrating.";
-/* Class = "NSButtonCell"; title = "Assume last saved settings are valid (recommended)"; ObjectID = "yn8-Nd-o89"; */
-"yn8-Nd-o89.title" = "Assume last saved settings are valid (recommended)";
-
-/* Class = "NSTextFieldCell"; title = "Decrease:"; ObjectID = "yQh-Ve-WEE"; */
-"yQh-Ve-WEE.title" = "Decrease:";
-
/* Class = "NSTextFieldCell"; title = "Identifier:"; ObjectID = "YqZ-LS-YvR"; */
"YqZ-LS-YvR.title" = "Идентификатор:";
diff --git a/MonitorControl/UI/tr.lproj/Localizable.strings b/MonitorControl/UI/tr.lproj/Localizable.strings
index 82ceb22..06e8e57 100644
--- a/MonitorControl/UI/tr.lproj/Localizable.strings
+++ b/MonitorControl/UI/tr.lproj/Localizable.strings
@@ -31,6 +31,9 @@
/* Version */
"Copyright Ⓒ MonitorControl, " = "Telif Hakkı Ⓒ MonitorControl, ";
+/* Shown in record shortcut box */
+"Decrease" = "Azalt";
+
/* Shown in the main prefs window */
"Displays" = "Ekranlar";
@@ -52,12 +55,18 @@
/* Shown in the alert dialog */
"Incompatible previous version" = "Uyumsuz önceki versiyon";
+/* Shown in record shortcut box */
+"Increase" = "Artır";
+
/* Intel designation (shown after the version number in Preferences) */
"Intel" = "Intel";
/* Shown in the main prefs window */
"Keyboard" = "Klavye";
+/* Shown in record shortcut box */
+"Mute" = "Sesi kapat";
+
/* Shown in the alert dialog */
"No" = "Hayır";
diff --git a/MonitorControl/UI/tr.lproj/Main.strings b/MonitorControl/UI/tr.lproj/Main.strings
index 0470422..12ce8ce 100644
--- a/MonitorControl/UI/tr.lproj/Main.strings
+++ b/MonitorControl/UI/tr.lproj/Main.strings
@@ -1,8 +1,8 @@
/* Class = "NSButtonCell"; title = "Sync brightness changes from Built-in and Apple displays"; ObjectID = "0ca-DG-AgB"; */
"0ca-DG-AgB.title" = "Yerleşik ve Apple ekranlardan parlaklık değişikliklerini senkronize edin";
-/* Class = "NSButtonCell"; title = "Attempt to read display settings"; ObjectID = "0qp-fq-8MI"; */
-"0qp-fq-8MI.title" = "Görüntü ayarlarını okumaya çalış";
+/* Class = "NSMenuItem"; title = "Assume last saved settings are valid (recommended)"; ObjectID = "1in-79-6qm"; */
+"1in-79-6qm.title" = "Son kaydedilen ayarların geçerli olduğunu varsayın (önerilir)";
/* Class = "NSTextFieldCell"; title = "MonitorControl"; ObjectID = "1PJ-14-Bvn"; */
"1PJ-14-Bvn.title" = "MonitorControl";
@@ -16,15 +16,18 @@
/* Class = "NSTextFieldCell"; title = "DDC min"; ObjectID = "1zE-fg-xEm"; */
"1zE-fg-xEm.title" = "DDC min";
+/* Class = "NSMenuItem"; title = "Show separate controls for each display in menu"; ObjectID = "3eO-bN-ZRl"; */
+"3eO-bN-ZRl.title" = "Menüdeki her ekran için ayrı kontroller göster";
+
+/* Class = "NSMenuItem"; title = "Apply last saved values to the display"; ObjectID = "3Jr-bW-YYq"; */
+"3Jr-bW-YYq.title" = "Ekrana son kaydedilen değerleri uygula";
+
/* Class = "NSMenuItem"; title = "Custom keyboard shortcuts"; ObjectID = "4CG-0I-anB"; */
"4CG-0I-anB.title" = "Özel klavye kısayolu";
/* Class = "NSTextFieldCell"; title = "MonitorControl uses mouse position to determine which display to control. Using window focus instead might not work well with full screen apps."; ObjectID = "4dX-o1-xAc"; */
"4dX-o1-xAc.title" = "MonitorControl, hangi ekranın kontrol edileceğini belirlemek için fare konumunu kullanır. Bunun yerine pencere odağını kullanmak, tam ekran uygulamalarla iyi çalışmayabilir.";
-/* Class = "NSButtonCell"; title = "Show separate controls for each display in menu"; ObjectID = "4t2-Rv-njr"; */
-"4t2-Rv-njr.title" = "Menüdeki her ekran için ayrı kontroller göster";
-
/* Class = "NSTextField"; ibExternalAccessibilityDescription = "Brightness"; ObjectID = "567-le-fLg"; */
"567-le-fLg.ibExternalAccessibilityDescription" = "Parlaklık";
@@ -37,9 +40,6 @@
/* Class = "NSTextFieldCell"; title = "Slider behavior:"; ObjectID = "75n-7M-1mS"; */
"75n-7M-1mS.title" = "Kaydırıcı davranışı:";
-/* Class = "NSButtonCell"; title = "Use combined slider for all displays"; ObjectID = "7rn-Lu-fcl"; */
-"7rn-Lu-fcl.title" = "Tüm ekranlar için birleşik kaydırıcıyı kullanın";
-
/* Class = "NSButtonCell"; title = "Show slider tick marks"; ObjectID = "7zf-m1-gJO"; */
"7zf-m1-gJO.title" = "Kaydırıcı onay işaretlerini göster";
@@ -58,6 +58,9 @@
/* Class = "NSSlider"; ibExternalAccessibilityDescription = "Brightness"; ObjectID = "9H1-0z-xsx"; */
"9H1-0z-xsx.ibExternalAccessibilityDescription" = "Parlaklık";
+/* Class = "NSMenuItem"; title = "Attempt to read display settings"; ObjectID = "9yL-no-aWa"; */
+"9yL-no-aWa.title" = "Görüntü ayarlarını okumaya çalış";
+
/* Class = "NSTextFieldCell"; title = "Show tick marks at 0%, 25%, 50%, 75% and 100% for accuracy."; ObjectID = "A8P-vn-DEJ"; */
"A8P-vn-DEJ.title" = "Doğruluk için onay işaretlerini %0, %25, %50, %75 ve %100 olarak gösterin.";
@@ -67,6 +70,9 @@
/* Class = "NSTextFieldCell"; title = "Use brightness, volume and other settings from last time or use defaults. Values will be applied to the display upon first change by the user."; ObjectID = "an7-Aj-3fZ"; */
"an7-Aj-3fZ.title" = "Bir önceki parlaklık, ses seviyesi ve diğer ayarları kullanın veya varsayılanları kullanın. Değerler, kullanıcı tarafından ilk değişiklik yapıldığında ekrana uygulanacaktır.";
+/* Class = "NSMenuItem"; title = "Show sliders only for the display currently showing the menu"; ObjectID = "bbf-sS-uGv"; */
+"bbf-sS-uGv.title" = "Kaydırıcıları yalnızca o anda menüyü gösteren ekran için göster";
+
/* Class = "NSTextFieldCell"; title = "Brightness:"; ObjectID = "Bhb-6l-uPQ"; */
"Bhb-6l-uPQ.title" = "Parlaklık:";
@@ -88,9 +94,6 @@
/* Class = "NSButtonCell"; title = "Enable Mute DDC command"; ObjectID = "bZq-0d-lJa"; */
"bZq-0d-lJa.title" = "Mute DDC komutunu etkinleştir";
-/* Class = "NSTextFieldCell"; title = "Decrease:"; ObjectID = "Bzq-Co-fex"; */
-"Bzq-Co-fex.title" = "Azalt:";
-
/* Class = "NSButtonCell"; title = "Show volume slider in menu"; ObjectID = "c9D-MB-lma"; */
"c9D-MB-lma.title" = "Menüde ses kaydırıcısını göster";
@@ -121,9 +124,6 @@
/* Class = "NSMenuItem"; title = "Minimal"; ObjectID = "Eq3-z9-yIo"; */
"Eq3-z9-yIo.title" = "Minimal";
-/* Class = "NSTextFieldCell"; title = "Increase:"; ObjectID = "eue-as-VOR"; */
-"eue-as-VOR.title" = "Artır:";
-
/* Class = "NSTextFieldCell"; title = "Scale mapping curve"; ObjectID = "Eui-5S-JR6"; */
"Eui-5S-JR6.title" = "Ölçek eşleme eğrisi";
@@ -175,17 +175,14 @@
/* Class = "NSButtonCell"; title = "Get current"; ObjectID = "hkC-vq-IcD"; */
"hkC-vq-IcD.title" = "Güncel al";
-/* Class = "NSTextFieldCell"; title = "Record shortcuts:"; ObjectID = "HLE-Vp-kcS"; */
-"HLE-Vp-kcS.title" = "Kısayolları kaydet:";
-
/* Class = "NSMenuItem"; title = "Hide"; ObjectID = "HUT-Qc-kuu"; */
"HUT-Qc-kuu.title" = "Güzle";
/* Class = "NSTextFieldCell"; title = "Additional controls:"; ObjectID = "i5X-M5-Tf5"; */
"i5X-M5-Tf5.title" = "Ek kontroller:";
-/* Class = "NSTextFieldCell"; title = "Brightness"; ObjectID = "IJB-mO-e8I"; */
-"IJB-mO-e8I.title" = "Parlaklık";
+/* Class = "NSTextFieldCell"; title = "Brightness:"; ObjectID = "IJB-mO-e8I"; */
+"IJB-mO-e8I.title" = "Parlaklık:";
/* Class = "NSButtonCell"; title = "Enable smooth brightness transitions"; ObjectID = "IK4-u5-qjf"; */
"IK4-u5-qjf.title" = "Pürüzsüz parlaklık geçişlerini etkinleştirin";
@@ -202,17 +199,14 @@
/* Class = "NSTextFieldCell"; title = "Note: you can press Shift during startup for 'Safe mode' to restore defaults and avoid reading or setting anything."; ObjectID = "Jx2-gO-nq9"; */
"Jx2-gO-nq9.title" = "Not: Varsayılanları geri yüklemek ve herhangi bir şeyi okumaktan veya ayarlamaktan kaçınmak için 'Güvenli mod' için başlatma sırasında Shift tuşuna basabilirsiniz.";
-/* Class = "NSButtonCell"; title = "Apply last saved values to the display"; ObjectID = "K0S-zN-M4k"; */
-"K0S-zN-M4k.title" = "Ekrana son kaydedilen değerleri uygula";
-
/* Class = "NSButtonCell"; title = "Enable for Apple branded and built-in displays as well"; ObjectID = "K6A-4z-1aQ"; */
"K6A-4z-1aQ.title" = "Apple markalı ve yerleşik ekranlar için de etkinleştirin";
/* Class = "NSTextFieldCell"; title = "Don't use software dimming as fallback if no hardware control is available."; ObjectID = "kgh-b4-gmO"; */
"kgh-b4-gmO.title" = "Donanım denetimi yoksa, yazılım karartmasını kullanmayın.";
-/* Class = "NSTextFieldCell"; title = "Record shortcuts:"; ObjectID = "kqJ-jQ-b7U"; */
-"kqJ-jQ-b7U.title" = "Kısayolları kaydet:";
+/* Class = "NSMenuItem"; title = "Use combined slider for all displays"; ObjectID = "lA0-tv-qRs"; */
+"lA0-tv-qRs.title" = "Tüm ekranlar için birleşik kaydırıcıyı kullanın";
/* Class = "NSTextFieldCell"; title = "Brightness and contrast:"; ObjectID = "LO4-4k-gxY"; */
"LO4-4k-gxY.title" = "Parlaklık ve kontrast kontrolü:";
@@ -235,8 +229,8 @@
/* Class = "NSTextFieldCell"; title = "Contrast:"; ObjectID = "MMk-S2-yJN"; */
"MMk-S2-yJN.title" = "Kontrast:";
-/* Class = "NSTextFieldCell"; title = "Increase:"; ObjectID = "mue-fa-8z6"; */
-"mue-fa-8z6.title" = "Artır:";
+/* Class = "NSTextFieldCell"; title = "Volume:"; ObjectID = "mue-fa-8z6"; */
+"mue-fa-8z6.title" = "Ses:";
/* Class = "NSButtonCell"; title = "Show brightness slider in menu"; ObjectID = "MWo-6I-s9L"; */
"MWo-6I-s9L.title" = "Menüde parlaklık kaydırıcısını göster";
@@ -280,9 +274,6 @@
/* Class = "NSTextFieldCell"; title = "DDC max"; ObjectID = "psF-vX-AFB"; */
"psF-vX-AFB.title" = "DDC maks.";
-/* Class = "NSButtonCell"; title = "Show sliders only for the display currently showing the menu"; ObjectID = "PvP-TV-OmT"; */
-"PvP-TV-OmT.title" = "Kaydırıcıları yalnızca o anda menüyü gösteren ekran için göster";
-
/* Class = "NSTextFieldCell"; title = "Use software dimming after the display reached zero hardware brightness for extended range. Works for DDC controlled displays only."; ObjectID = "PyY-p9-3NP"; */
"PyY-p9-3NP.title" = "Genişletilmiş aralık için ekran sıfır donanım parlaklığına ulaştıktan sonra yazılım karartmasını kullanın. Yalnızca DDC kontrollü ekranlar için çalışır.";
@@ -334,8 +325,8 @@
/* Class = "NSButtonCell"; title = "Enable keyboard control for display"; ObjectID = "UqR-WE-jHl"; */
"UqR-WE-jHl.title" = "Bu ekran için klavye kısayollarını etkinleştir";
-/* Class = "NSTextFieldCell"; title = "Contrast (DDC)"; ObjectID = "urd-Rh-aiL"; */
-"urd-Rh-aiL.title" = "Kontrast";
+/* Class = "NSTextFieldCell"; title = "Contrast (DDC):"; ObjectID = "urd-Rh-aiL"; */
+"urd-Rh-aiL.title" = "Kontrast:";
/* Class = "NSButtonCell"; title = "Do not use alternative brightness keys"; ObjectID = "vd2-Lk-neX"; */
"vd2-Lk-neX.title" = "Alternatif parlaklık tuşlarını kullanmayın";
@@ -385,12 +376,6 @@
/* Class = "NSTextFieldCell"; title = "Warning! With this option enabled, you might find yourself in a position when you end up with a blank display. This, combined with disabled keyboard controls can be frustrating."; ObjectID = "yi3-e1-wsL"; */
"yi3-e1-wsL.title" = "Warning! With this option enabled, you might find yourself in a position when you end up with a blank display. This, combined with disabled keyboard controls can be frustrating.";
-/* Class = "NSButtonCell"; title = "Assume last saved settings are valid (recommended)"; ObjectID = "yn8-Nd-o89"; */
-"yn8-Nd-o89.title" = "Son kaydedilen ayarların geçerli olduğunu varsayın (önerilir)";
-
-/* Class = "NSTextFieldCell"; title = "Decrease:"; ObjectID = "yQh-Ve-WEE"; */
-"yQh-Ve-WEE.title" = "Azalt:";
-
/* Class = "NSTextFieldCell"; title = "Identifier:"; ObjectID = "YqZ-LS-YvR"; */
"YqZ-LS-YvR.title" = "Tanımlayıcı:";
diff --git a/MonitorControl/UI/uk.lproj/Localizable.strings b/MonitorControl/UI/uk.lproj/Localizable.strings
index 81782d1..8927658 100644
--- a/MonitorControl/UI/uk.lproj/Localizable.strings
+++ b/MonitorControl/UI/uk.lproj/Localizable.strings
@@ -31,6 +31,9 @@
/* Version */
"Copyright Ⓒ MonitorControl, " = "Copyright Ⓒ MonitorControl, ";
+/* Shown in record shortcut box */
+"Decrease" = "Decrease";
+
/* Shown in the main prefs window */
"Displays" = "Displays";
@@ -52,12 +55,18 @@
/* Shown in the alert dialog */
"Incompatible previous version" = "Incompatible previous version";
+/* Shown in record shortcut box */
+"Increase" = "Increase";
+
/* Intel designation (shown after the version number in Preferences) */
"Intel" = "Intel";
/* Shown in the main prefs window */
"Keyboard" = "Keyboard";
+/* Shown in record shortcut box */
+"Mute" = "Mute";
+
/* Shown in the alert dialog */
"No" = "No";
diff --git a/MonitorControl/UI/uk.lproj/Main.strings b/MonitorControl/UI/uk.lproj/Main.strings
index 88e1692..8a9dfaf 100644
--- a/MonitorControl/UI/uk.lproj/Main.strings
+++ b/MonitorControl/UI/uk.lproj/Main.strings
@@ -1,8 +1,8 @@
/* Class = "NSButtonCell"; title = "Sync brightness changes from Built-in and Apple displays"; ObjectID = "0ca-DG-AgB"; */
"0ca-DG-AgB.title" = "Sync brightness changes from Built-in and Apple displays";
-/* Class = "NSButtonCell"; title = "Attempt to read display settings"; ObjectID = "0qp-fq-8MI"; */
-"0qp-fq-8MI.title" = "Attempt to read display settings";
+/* Class = "NSMenuItem"; title = "Assume last saved settings are valid (recommended)"; ObjectID = "1in-79-6qm"; */
+"1in-79-6qm.title" = "Assume last saved settings are valid (recommended)";
/* Class = "NSTextFieldCell"; title = "MonitorControl"; ObjectID = "1PJ-14-Bvn"; */
"1PJ-14-Bvn.title" = "MonitorControl";
@@ -16,15 +16,18 @@
/* Class = "NSTextFieldCell"; title = "DDC min"; ObjectID = "1zE-fg-xEm"; */
"1zE-fg-xEm.title" = "DDC min";
+/* Class = "NSMenuItem"; title = "Show separate controls for each display in menu"; ObjectID = "3eO-bN-ZRl"; */
+"3eO-bN-ZRl.title" = "Show separate controls for each display in menu";
+
+/* Class = "NSMenuItem"; title = "Apply last saved values to the display"; ObjectID = "3Jr-bW-YYq"; */
+"3Jr-bW-YYq.title" = "Apply last saved values to the display";
+
/* Class = "NSMenuItem"; title = "Custom keyboard shortcuts"; ObjectID = "4CG-0I-anB"; */
"4CG-0I-anB.title" = "Custom keyboard shortcuts";
/* Class = "NSTextFieldCell"; title = "MonitorControl uses mouse position to determine which display to control. Using window focus instead might not work well with full screen apps."; ObjectID = "4dX-o1-xAc"; */
"4dX-o1-xAc.title" = "MonitorControl uses mouse position to determine which display to control. Using window focus instead might not work well with full screen apps.";
-/* Class = "NSButtonCell"; title = "Show separate controls for each display in menu"; ObjectID = "4t2-Rv-njr"; */
-"4t2-Rv-njr.title" = "Show separate controls for each display in menu";
-
/* Class = "NSTextField"; ibExternalAccessibilityDescription = "Brightness"; ObjectID = "567-le-fLg"; */
"567-le-fLg.ibExternalAccessibilityDescription" = "Brightness";
@@ -37,9 +40,6 @@
/* Class = "NSTextFieldCell"; title = "Slider behavior:"; ObjectID = "75n-7M-1mS"; */
"75n-7M-1mS.title" = "Slider behavior:";
-/* Class = "NSButtonCell"; title = "Use combined slider for all displays"; ObjectID = "7rn-Lu-fcl"; */
-"7rn-Lu-fcl.title" = "Use combined slider for all displays";
-
/* Class = "NSButtonCell"; title = "Show slider tick marks"; ObjectID = "7zf-m1-gJO"; */
"7zf-m1-gJO.title" = "Show slider tick marks";
@@ -58,6 +58,9 @@
/* Class = "NSSlider"; ibExternalAccessibilityDescription = "Brightness"; ObjectID = "9H1-0z-xsx"; */
"9H1-0z-xsx.ibExternalAccessibilityDescription" = "Brightness";
+/* Class = "NSMenuItem"; title = "Attempt to read display settings"; ObjectID = "9yL-no-aWa"; */
+"9yL-no-aWa.title" = "Attempt to read display settings";
+
/* Class = "NSTextFieldCell"; title = "Show tick marks at 0%, 25%, 50%, 75% and 100% for accuracy."; ObjectID = "A8P-vn-DEJ"; */
"A8P-vn-DEJ.title" = "Show tick marks at 0%, 25%, 50%, 75% and 100% for accuracy.";
@@ -67,6 +70,9 @@
/* Class = "NSTextFieldCell"; title = "Use brightness, volume and other settings from last time or use defaults. Values will be applied to the display upon first change by the user."; ObjectID = "an7-Aj-3fZ"; */
"an7-Aj-3fZ.title" = "Use brightness, volume and other settings from last time or use defaults. Values will be applied to the display upon first change by the user.";
+/* Class = "NSMenuItem"; title = "Show sliders only for the display currently showing the menu"; ObjectID = "bbf-sS-uGv"; */
+"bbf-sS-uGv.title" = "Show sliders only for the display currently showing the menu";
+
/* Class = "NSTextFieldCell"; title = "Brightness:"; ObjectID = "Bhb-6l-uPQ"; */
"Bhb-6l-uPQ.title" = "Brightness:";
@@ -88,9 +94,6 @@
/* Class = "NSButtonCell"; title = "Enable Mute DDC command"; ObjectID = "bZq-0d-lJa"; */
"bZq-0d-lJa.title" = "Enable Mute DDC command";
-/* Class = "NSTextFieldCell"; title = "Decrease:"; ObjectID = "Bzq-Co-fex"; */
-"Bzq-Co-fex.title" = "Decrease:";
-
/* Class = "NSButtonCell"; title = "Show volume slider in menu"; ObjectID = "c9D-MB-lma"; */
"c9D-MB-lma.title" = "Show volume slider in menu";
@@ -121,9 +124,6 @@
/* Class = "NSMenuItem"; title = "Minimal"; ObjectID = "Eq3-z9-yIo"; */
"Eq3-z9-yIo.title" = "Мінім.";
-/* Class = "NSTextFieldCell"; title = "Increase:"; ObjectID = "eue-as-VOR"; */
-"eue-as-VOR.title" = "Increase:";
-
/* Class = "NSTextFieldCell"; title = "Scale mapping curve"; ObjectID = "Eui-5S-JR6"; */
"Eui-5S-JR6.title" = "Scale mapping curve";
@@ -175,16 +175,13 @@
/* Class = "NSButtonCell"; title = "Get current"; ObjectID = "hkC-vq-IcD"; */
"hkC-vq-IcD.title" = "Get current";
-/* Class = "NSTextFieldCell"; title = "Record shortcuts:"; ObjectID = "HLE-Vp-kcS"; */
-"HLE-Vp-kcS.title" = "Record shortcuts:";
-
/* Class = "NSMenuItem"; title = "Hide"; ObjectID = "HUT-Qc-kuu"; */
"HUT-Qc-kuu.title" = "Hide";
/* Class = "NSTextFieldCell"; title = "Additional controls:"; ObjectID = "i5X-M5-Tf5"; */
"i5X-M5-Tf5.title" = "Additional controls:";
-/* Class = "NSTextFieldCell"; title = "Brightness"; ObjectID = "IJB-mO-e8I"; */
+/* Class = "NSTextFieldCell"; title = "Brightness:"; ObjectID = "IJB-mO-e8I"; */
"IJB-mO-e8I.title" = "Brightness";
/* Class = "NSButtonCell"; title = "Enable smooth brightness transitions"; ObjectID = "IK4-u5-qjf"; */
@@ -202,17 +199,14 @@
/* Class = "NSTextFieldCell"; title = "Note: you can press Shift during startup for 'Safe mode' to restore defaults and avoid reading or setting anything."; ObjectID = "Jx2-gO-nq9"; */
"Jx2-gO-nq9.title" = "Note: you can press Shift during startup for 'Safe mode' to restore defaults and avoid reading or setting anything.";
-/* Class = "NSButtonCell"; title = "Apply last saved values to the display"; ObjectID = "K0S-zN-M4k"; */
-"K0S-zN-M4k.title" = "Apply last saved values to the display";
-
/* Class = "NSButtonCell"; title = "Enable for Apple branded and built-in displays as well"; ObjectID = "K6A-4z-1aQ"; */
"K6A-4z-1aQ.title" = "Enable for Apple branded and built-in displays as well";
/* Class = "NSTextFieldCell"; title = "Don't use software dimming as fallback if no hardware control is available."; ObjectID = "kgh-b4-gmO"; */
"kgh-b4-gmO.title" = "Don't use software dimming as fallback if no hardware control is available.";
-/* Class = "NSTextFieldCell"; title = "Record shortcuts:"; ObjectID = "kqJ-jQ-b7U"; */
-"kqJ-jQ-b7U.title" = "Record shortcuts:";
+/* Class = "NSMenuItem"; title = "Use combined slider for all displays"; ObjectID = "lA0-tv-qRs"; */
+"lA0-tv-qRs.title" = "Use combined slider for all displays";
/* Class = "NSTextFieldCell"; title = "Brightness and contrast:"; ObjectID = "LO4-4k-gxY"; */
"LO4-4k-gxY.title" = "Brightness and contrast:";
@@ -235,7 +229,7 @@
/* Class = "NSTextFieldCell"; title = "Contrast:"; ObjectID = "MMk-S2-yJN"; */
"MMk-S2-yJN.title" = "Contrast:";
-/* Class = "NSTextFieldCell"; title = "Increase:"; ObjectID = "mue-fa-8z6"; */
+/* Class = "NSTextFieldCell"; title = "Volume:"; ObjectID = "mue-fa-8z6"; */
"mue-fa-8z6.title" = "Increase:";
/* Class = "NSButtonCell"; title = "Show brightness slider in menu"; ObjectID = "MWo-6I-s9L"; */
@@ -280,9 +274,6 @@
/* Class = "NSTextFieldCell"; title = "DDC max"; ObjectID = "psF-vX-AFB"; */
"psF-vX-AFB.title" = "DDC max";
-/* Class = "NSButtonCell"; title = "Show sliders only for the display currently showing the menu"; ObjectID = "PvP-TV-OmT"; */
-"PvP-TV-OmT.title" = "Show sliders only for the display currently showing the menu";
-
/* Class = "NSTextFieldCell"; title = "Use software dimming after the display reached zero hardware brightness for extended range. Works for DDC controlled displays only."; ObjectID = "PyY-p9-3NP"; */
"PyY-p9-3NP.title" = "Use software dimming after the display reached zero hardware brightness for extended range. Works for DDC controlled displays only.";
@@ -334,7 +325,7 @@
/* Class = "NSButtonCell"; title = "Enable keyboard control for display"; ObjectID = "UqR-WE-jHl"; */
"UqR-WE-jHl.title" = "Enable keyboard control for display";
-/* Class = "NSTextFieldCell"; title = "Contrast (DDC)"; ObjectID = "urd-Rh-aiL"; */
+/* Class = "NSTextFieldCell"; title = "Contrast (DDC):"; ObjectID = "urd-Rh-aiL"; */
"urd-Rh-aiL.title" = "Contrast";
/* Class = "NSButtonCell"; title = "Do not use alternative brightness keys"; ObjectID = "vd2-Lk-neX"; */
@@ -385,12 +376,6 @@
/* Class = "NSTextFieldCell"; title = "Warning! With this option enabled, you might find yourself in a position when you end up with a blank display. This, combined with disabled keyboard controls can be frustrating."; ObjectID = "yi3-e1-wsL"; */
"yi3-e1-wsL.title" = "Warning! With this option enabled, you might find yourself in a position when you end up with a blank display. This, combined with disabled keyboard controls can be frustrating.";
-/* Class = "NSButtonCell"; title = "Assume last saved settings are valid (recommended)"; ObjectID = "yn8-Nd-o89"; */
-"yn8-Nd-o89.title" = "Assume last saved settings are valid (recommended)";
-
-/* Class = "NSTextFieldCell"; title = "Decrease:"; ObjectID = "yQh-Ve-WEE"; */
-"yQh-Ve-WEE.title" = "Decrease:";
-
/* Class = "NSTextFieldCell"; title = "Identifier:"; ObjectID = "YqZ-LS-YvR"; */
"YqZ-LS-YvR.title" = "Identifier:";
diff --git a/MonitorControl/UI/zh-Hans.lproj/InternetAccessPolicy.strings b/MonitorControl/UI/zh-Hans.lproj/InternetAccessPolicy.strings
index 1fd3de1..ceead1e 100644
--- a/MonitorControl/UI/zh-Hans.lproj/InternetAccessPolicy.strings
+++ b/MonitorControl/UI/zh-Hans.lproj/InternetAccessPolicy.strings
@@ -4,6 +4,5 @@
/* Sofware update deny consequences */
"SoftwareUpdateDenyConsequences" = "若您拒绝这些连线,您将不会收到新版本以及安全性更新的通知。安全性更新对于防止恶意软件的攻击是相当重要的。";
-
/* Software update purpose */
"SoftwareUpdatePurpose" = "会检查新版本以及安全性更新。";
diff --git a/MonitorControl/UI/zh-Hans.lproj/Localizable.strings b/MonitorControl/UI/zh-Hans.lproj/Localizable.strings
index a320dbd..4a55ce2 100644
--- a/MonitorControl/UI/zh-Hans.lproj/Localizable.strings
+++ b/MonitorControl/UI/zh-Hans.lproj/Localizable.strings
@@ -31,6 +31,9 @@
/* Version */
"Copyright Ⓒ MonitorControl, " = "Copyright Ⓒ MonitorControl, ";
+/* Shown in record shortcut box */
+"Decrease" = "降低";
+
/* Shown in the main prefs window */
"Displays" = "显示器";
@@ -52,12 +55,18 @@
/* Shown in the alert dialog */
"Incompatible previous version" = "不兼容旧版本";
+/* Shown in record shortcut box */
+"Increase" = "降低";
+
/* Intel designation (shown after the version number in Preferences) */
"Intel" = "Intel";
/* Shown in the main prefs window */
"Keyboard" = "键盘";
+/* Shown in record shortcut box */
+"Mute" = "音";
+
/* Shown in the alert dialog */
"No" = "否";
@@ -85,7 +94,6 @@
/* Shown in the alert dialog */
"Shift was pressed during launch. MonitorControl started in safe mode. Default preferences are reloaded, DDC read is blocked." = "启动时按下Shift键。MonitorControl启动时进入安全模式。已还原初始设置,停止DDC读取。";
-
/* Shown in the alert dialog */
"Shortcuts not available" = "快捷键无法使用";
@@ -110,11 +118,9 @@
/* Shown in the Display Preferences */
"This display is reported to support hardware DDC control but the current settings allow for software control only." = "这个显示器报告支持DDC控制,但目前的设置只允许软件控制。";
-
/* Shown in the Display Preferences */
"This display is reported to support hardware DDC control. If you encounter issues, you can disable hardware DDC control to force software control." = "这个显示器报告支持DDC控制。如果使用遇到问题,您可以禁用硬件DDC控制以强制软件控制。";
-
/* Shown in the Display Preferences */
"This display supports native Apple brightness protocol. This allows macOS to control this display without MonitorControl as well." = "这个显示器支持苹果原生的亮度设置。MacOS也可以不通过MonitorControl控制此屏幕。";
diff --git a/MonitorControl/UI/zh-Hans.lproj/Main.strings b/MonitorControl/UI/zh-Hans.lproj/Main.strings
index 453163d..397ffae 100644
--- a/MonitorControl/UI/zh-Hans.lproj/Main.strings
+++ b/MonitorControl/UI/zh-Hans.lproj/Main.strings
@@ -1,8 +1,8 @@
/* Class = "NSButtonCell"; title = "Sync brightness changes from Built-in and Apple displays"; ObjectID = "0ca-DG-AgB"; */
"0ca-DG-AgB.title" = "同步苹果和内置显示器的亮度设置";
-/* Class = "NSButtonCell"; title = "Attempt to read display settings"; ObjectID = "0qp-fq-8MI"; */
-"0qp-fq-8MI.title" = "尝试获取显示器的设置";
+/* Class = "NSMenuItem"; title = "Assume last saved settings are valid (recommended)"; ObjectID = "1in-79-6qm"; */
+"1in-79-6qm.title" = "假设之前的设置可用(建议)";
/* Class = "NSTextFieldCell"; title = "MonitorControl"; ObjectID = "1PJ-14-Bvn"; */
"1PJ-14-Bvn.title" = "MonitorControl";
@@ -16,16 +16,18 @@
/* Class = "NSTextFieldCell"; title = "DDC min"; ObjectID = "1zE-fg-xEm"; */
"1zE-fg-xEm.title" = "DDC最小值";
+/* Class = "NSMenuItem"; title = "Show separate controls for each display in menu"; ObjectID = "3eO-bN-ZRl"; */
+"3eO-bN-ZRl.title" = "显示各个显示器的控制滑杆";
+
+/* Class = "NSMenuItem"; title = "Apply last saved values to the display"; ObjectID = "3Jr-bW-YYq"; */
+"3Jr-bW-YYq.title" = "使用上次储存的设置值至显示器";
+
/* Class = "NSMenuItem"; title = "Custom keyboard shortcuts"; ObjectID = "4CG-0I-anB"; */
"4CG-0I-anB.title" = "自定义快捷键";
/* Class = "NSTextFieldCell"; title = "MonitorControl uses mouse position to determine which display to control. Using window focus instead might not work well with full screen apps."; ObjectID = "4dX-o1-xAc"; */
"4dX-o1-xAc.title" = "预设使用鼠标的位置来判断控制哪个显示器。启用后软件全屏时效果可能不理想。";
-
-/* Class = "NSButtonCell"; title = "Show separate controls for each display in menu"; ObjectID = "4t2-Rv-njr"; */
-"4t2-Rv-njr.title" = "显示各个显示器的控制滑杆";
-
/* Class = "NSTextField"; ibExternalAccessibilityDescription = "Brightness"; ObjectID = "567-le-fLg"; */
"567-le-fLg.ibExternalAccessibilityDescription" = "亮度";
@@ -38,9 +40,6 @@
/* Class = "NSTextFieldCell"; title = "Slider behavior:"; ObjectID = "75n-7M-1mS"; */
"75n-7M-1mS.title" = "滑杆行为:";
-/* Class = "NSButtonCell"; title = "Use combined slider for all displays"; ObjectID = "7rn-Lu-fcl"; */
-"7rn-Lu-fcl.title" = "使用一个滑杆控制所有显示器";
-
/* Class = "NSButtonCell"; title = "Show slider tick marks"; ObjectID = "7zf-m1-gJO"; */
"7zf-m1-gJO.title" = "显示滑杆刻度";
@@ -59,6 +58,9 @@
/* Class = "NSSlider"; ibExternalAccessibilityDescription = "Brightness"; ObjectID = "9H1-0z-xsx"; */
"9H1-0z-xsx.ibExternalAccessibilityDescription" = "亮度";
+/* Class = "NSMenuItem"; title = "Attempt to read display settings"; ObjectID = "9yL-no-aWa"; */
+"9yL-no-aWa.title" = "尝试获取显示器的设置";
+
/* Class = "NSTextFieldCell"; title = "Show tick marks at 0%, 25%, 50%, 75% and 100% for accuracy."; ObjectID = "A8P-vn-DEJ"; */
"A8P-vn-DEJ.title" = "在0%、25%、50%、75%和100%处显示刻度使设置的亮度值更精准。";
@@ -68,6 +70,9 @@
/* Class = "NSTextFieldCell"; title = "Use brightness, volume and other settings from last time or use defaults. Values will be applied to the display upon first change by the user."; ObjectID = "an7-Aj-3fZ"; */
"an7-Aj-3fZ.title" = "使用者初次设置时使用之前或原始设置(亮度、音量和其它设置)。";
+/* Class = "NSMenuItem"; title = "Show sliders only for the display currently showing the menu"; ObjectID = "bbf-sS-uGv"; */
+"bbf-sS-uGv.title" = "仅显示当前显示器的滑杆介面";
+
/* Class = "NSTextFieldCell"; title = "Brightness:"; ObjectID = "Bhb-6l-uPQ"; */
"Bhb-6l-uPQ.title" = "亮度:";
@@ -89,9 +94,6 @@
/* Class = "NSButtonCell"; title = "Enable Mute DDC command"; ObjectID = "bZq-0d-lJa"; */
"bZq-0d-lJa.title" = "允许DDC静音指令";
-/* Class = "NSTextFieldCell"; title = "Decrease:"; ObjectID = "Bzq-Co-fex"; */
-"Bzq-Co-fex.title" = "降低:";
-
/* Class = "NSButtonCell"; title = "Show volume slider in menu"; ObjectID = "c9D-MB-lma"; */
"c9D-MB-lma.title" = "显示音量滑杆";
@@ -122,9 +124,6 @@
/* Class = "NSMenuItem"; title = "Minimal"; ObjectID = "Eq3-z9-yIo"; */
"Eq3-z9-yIo.title" = "少量";
-/* Class = "NSTextFieldCell"; title = "Increase:"; ObjectID = "eue-as-VOR"; */
-"eue-as-VOR.title" = "降低:";
-
/* Class = "NSTextFieldCell"; title = "Scale mapping curve"; ObjectID = "Eui-5S-JR6"; */
"Eui-5S-JR6.title" = "刻度控制曲线";
@@ -176,17 +175,14 @@
/* Class = "NSButtonCell"; title = "Get current"; ObjectID = "hkC-vq-IcD"; */
"hkC-vq-IcD.title" = "获取当前";
-/* Class = "NSTextFieldCell"; title = "Record shortcuts:"; ObjectID = "HLE-Vp-kcS"; */
-"HLE-Vp-kcS.title" = "记录快捷键:";
-
/* Class = "NSMenuItem"; title = "Hide"; ObjectID = "HUT-Qc-kuu"; */
"HUT-Qc-kuu.title" = "隐藏";
/* Class = "NSTextFieldCell"; title = "Additional controls:"; ObjectID = "i5X-M5-Tf5"; */
"i5X-M5-Tf5.title" = "额外的控制:";
-/* Class = "NSTextFieldCell"; title = "Brightness"; ObjectID = "IJB-mO-e8I"; */
-"IJB-mO-e8I.title" = "亮度";
+/* Class = "NSTextFieldCell"; title = "Brightness:"; ObjectID = "IJB-mO-e8I"; */
+"IJB-mO-e8I.title" = "亮度:";
/* Class = "NSButtonCell"; title = "Enable smooth brightness transitions"; ObjectID = "IK4-u5-qjf"; */
"IK4-u5-qjf.title" = "启用流畅亮度转换";
@@ -203,17 +199,14 @@
/* Class = "NSTextFieldCell"; title = "Note: you can press Shift during startup for 'Safe mode' to restore defaults and avoid reading or setting anything."; ObjectID = "Jx2-gO-nq9"; */
"Jx2-gO-nq9.title" = "注:启动时按下Shift进入「安全模式」以恢复原始设置并避免读取或更动任何设置。";
-/* Class = "NSButtonCell"; title = "Apply last saved values to the display"; ObjectID = "K0S-zN-M4k"; */
-"K0S-zN-M4k.title" = "使用上次储存的设置值至显示器";
-
/* Class = "NSButtonCell"; title = "Enable for Apple branded and built-in displays as well"; ObjectID = "K6A-4z-1aQ"; */
"K6A-4z-1aQ.title" = "苹果和内置的显示器";
/* Class = "NSTextFieldCell"; title = "Don't use software dimming as fallback if no hardware control is available."; ObjectID = "kgh-b4-gmO"; */
"kgh-b4-gmO.title" = "当硬件控制不可用时不以软件控制作为备用选项。";
-/* Class = "NSTextFieldCell"; title = "Record shortcuts:"; ObjectID = "kqJ-jQ-b7U"; */
-"kqJ-jQ-b7U.title" = "记录快捷键:";
+/* Class = "NSMenuItem"; title = "Use combined slider for all displays"; ObjectID = "lA0-tv-qRs"; */
+"lA0-tv-qRs.title" = "使用一个滑杆控制所有显示器";
/* Class = "NSTextFieldCell"; title = "Brightness and contrast:"; ObjectID = "LO4-4k-gxY"; */
"LO4-4k-gxY.title" = "亮度及对比度控制:";
@@ -236,8 +229,8 @@
/* Class = "NSTextFieldCell"; title = "Contrast:"; ObjectID = "MMk-S2-yJN"; */
"MMk-S2-yJN.title" = "对比度:";
-/* Class = "NSTextFieldCell"; title = "Increase:"; ObjectID = "mue-fa-8z6"; */
-"mue-fa-8z6.title" = "增加:";
+/* Class = "NSTextFieldCell"; title = "Volume:"; ObjectID = "mue-fa-8z6"; */
+"mue-fa-8z6.title" = "音量:";
/* Class = "NSButtonCell"; title = "Show brightness slider in menu"; ObjectID = "MWo-6I-s9L"; */
"MWo-6I-s9L.title" = "显示亮度控制滑杆";
@@ -281,9 +274,6 @@
/* Class = "NSTextFieldCell"; title = "DDC max"; ObjectID = "psF-vX-AFB"; */
"psF-vX-AFB.title" = "DDC最大值";
-/* Class = "NSButtonCell"; title = "Show sliders only for the display currently showing the menu"; ObjectID = "PvP-TV-OmT"; */
-"PvP-TV-OmT.title" = "仅显示当前显示器的滑杆介面";
-
/* Class = "NSTextFieldCell"; title = "Use software dimming after the display reached zero hardware brightness for extended range. Works for DDC controlled displays only."; ObjectID = "PyY-p9-3NP"; */
"PyY-p9-3NP.title" = "当显示器的硬件设置亮度为0时以软件进一步降低亮度(仅适用于以DDC控制的显示器)。";
@@ -335,8 +325,8 @@
/* Class = "NSButtonCell"; title = "Enable keyboard control for display"; ObjectID = "UqR-WE-jHl"; */
"UqR-WE-jHl.title" = "允许键盘控制显示器";
-/* Class = "NSTextFieldCell"; title = "Contrast (DDC)"; ObjectID = "urd-Rh-aiL"; */
-"urd-Rh-aiL.title" = "对比度";
+/* Class = "NSTextFieldCell"; title = "Contrast (DDC):"; ObjectID = "urd-Rh-aiL"; */
+"urd-Rh-aiL.title" = "对比度:";
/* Class = "NSButtonCell"; title = "Do not use alternative brightness keys"; ObjectID = "vd2-Lk-neX"; */
"vd2-Lk-neX.title" = "禁用替代按键";
@@ -386,12 +376,6 @@
/* Class = "NSTextFieldCell"; title = "Warning! With this option enabled, you might find yourself in a position when you end up with a blank display. This, combined with disabled keyboard controls can be frustrating."; ObjectID = "yi3-e1-wsL"; */
"yi3-e1-wsL.title" = "警告!启用显示器可以被设置成完全黑屏,如果同时禁用键盘控制可能会导致难以调整设置。";
-/* Class = "NSButtonCell"; title = "Assume last saved settings are valid (recommended)"; ObjectID = "yn8-Nd-o89"; */
-"yn8-Nd-o89.title" = "假设之前的设置可用(建议)";
-
-/* Class = "NSTextFieldCell"; title = "Decrease:"; ObjectID = "yQh-Ve-WEE"; */
-"yQh-Ve-WEE.title" = "减少:";
-
/* Class = "NSTextFieldCell"; title = "Identifier:"; ObjectID = "YqZ-LS-YvR"; */
"YqZ-LS-YvR.title" = "识别码:";
diff --git a/MonitorControl/UI/zh-Hant-TW.lproj/Localizable.strings b/MonitorControl/UI/zh-Hant-TW.lproj/Localizable.strings
index c1b8de2..5844b01 100644
--- a/MonitorControl/UI/zh-Hant-TW.lproj/Localizable.strings
+++ b/MonitorControl/UI/zh-Hant-TW.lproj/Localizable.strings
@@ -31,6 +31,9 @@
/* Version */
"Copyright Ⓒ MonitorControl, " = "Copyright Ⓒ MonitorControl, ";
+/* Shown in record shortcut box */
+"Decrease" = "減少";
+
/* Shown in the main prefs window */
"Displays" = "螢幕";
@@ -52,12 +55,18 @@
/* Shown in the alert dialog */
"Incompatible previous version" = "與先前版本不相容";
+/* Shown in record shortcut box */
+"Increase" = "增加";
+
/* Intel designation (shown after the version number in Preferences) */
"Intel" = "Intel";
/* Shown in the main prefs window */
"Keyboard" = "鍵盤";
+/* Shown in record shortcut box */
+"Mute" = "靜音";
+
/* Shown in the alert dialog */
"No" = "否";
diff --git a/MonitorControl/UI/zh-Hant-TW.lproj/Main.strings b/MonitorControl/UI/zh-Hant-TW.lproj/Main.strings
index d39594d..f7e4fcb 100644
--- a/MonitorControl/UI/zh-Hant-TW.lproj/Main.strings
+++ b/MonitorControl/UI/zh-Hant-TW.lproj/Main.strings
@@ -1,8 +1,8 @@
/* Class = "NSButtonCell"; title = "Sync brightness changes from Built-in and Apple displays"; ObjectID = "0ca-DG-AgB"; */
"0ca-DG-AgB.title" = "同步來自內建及蘋果螢幕的亮度調整";
-/* Class = "NSButtonCell"; title = "Attempt to read display settings"; ObjectID = "0qp-fq-8MI"; */
-"0qp-fq-8MI.title" = "嘗試讀取螢幕的設定";
+/* Class = "NSMenuItem"; title = "Assume last saved settings are valid (recommended)"; ObjectID = "1in-79-6qm"; */
+"1in-79-6qm.title" = "假設前次的設定可用(建議)";
/* Class = "NSTextFieldCell"; title = "MonitorControl"; ObjectID = "1PJ-14-Bvn"; */
"1PJ-14-Bvn.title" = "MonitorControl";
@@ -16,15 +16,18 @@
/* Class = "NSTextFieldCell"; title = "DDC min"; ObjectID = "1zE-fg-xEm"; */
"1zE-fg-xEm.title" = "DDC最小值";
+/* Class = "NSMenuItem"; title = "Show separate controls for each display in menu"; ObjectID = "3eO-bN-ZRl"; */
+"3eO-bN-ZRl.title" = "顯示各個螢幕的控制滑桿";
+
+/* Class = "NSMenuItem"; title = "Apply last saved values to the display"; ObjectID = "3Jr-bW-YYq"; */
+"3Jr-bW-YYq.title" = "套用上次儲存的設定值至螢幕";
+
/* Class = "NSMenuItem"; title = "Custom keyboard shortcuts"; ObjectID = "4CG-0I-anB"; */
"4CG-0I-anB.title" = "自定義快捷鍵";
/* Class = "NSTextFieldCell"; title = "MonitorControl uses mouse position to determine which display to control. Using window focus instead might not work well with full screen apps."; ObjectID = "4dX-o1-xAc"; */
"4dX-o1-xAc.title" = "預設以鼠標的位置判斷控制哪個螢幕。啟用後當使用全螢幕Apps時效果可能不佳。";
-/* Class = "NSButtonCell"; title = "Show separate controls for each display in menu"; ObjectID = "4t2-Rv-njr"; */
-"4t2-Rv-njr.title" = "顯示各個螢幕的控制滑桿";
-
/* Class = "NSTextField"; ibExternalAccessibilityDescription = "Brightness"; ObjectID = "567-le-fLg"; */
"567-le-fLg.ibExternalAccessibilityDescription" = "亮度";
@@ -37,9 +40,6 @@
/* Class = "NSTextFieldCell"; title = "Slider behavior:"; ObjectID = "75n-7M-1mS"; */
"75n-7M-1mS.title" = "滑桿行為:";
-/* Class = "NSButtonCell"; title = "Use combined slider for all displays"; ObjectID = "7rn-Lu-fcl"; */
-"7rn-Lu-fcl.title" = "使用單一滑桿控制所有螢幕";
-
/* Class = "NSButtonCell"; title = "Show slider tick marks"; ObjectID = "7zf-m1-gJO"; */
"7zf-m1-gJO.title" = "顯示滑桿刻度";
@@ -58,6 +58,9 @@
/* Class = "NSSlider"; ibExternalAccessibilityDescription = "Brightness"; ObjectID = "9H1-0z-xsx"; */
"9H1-0z-xsx.ibExternalAccessibilityDescription" = "亮度";
+/* Class = "NSMenuItem"; title = "Attempt to read display settings"; ObjectID = "9yL-no-aWa"; */
+"9yL-no-aWa.title" = "嘗試讀取螢幕的設定";
+
/* Class = "NSTextFieldCell"; title = "Show tick marks at 0%, 25%, 50%, 75% and 100% for accuracy."; ObjectID = "A8P-vn-DEJ"; */
"A8P-vn-DEJ.title" = "在0%、25%、50%、75%和100%處顯示刻度使調整更精確。";
@@ -67,6 +70,9 @@
/* Class = "NSTextFieldCell"; title = "Use brightness, volume and other settings from last time or use defaults. Values will be applied to the display upon first change by the user."; ObjectID = "an7-Aj-3fZ"; */
"an7-Aj-3fZ.title" = "使用者初次調整時套用前次或原始的設定(亮度、音量及其他設定)。";
+/* Class = "NSMenuItem"; title = "Show sliders only for the display currently showing the menu"; ObjectID = "bbf-sS-uGv"; */
+"bbf-sS-uGv.title" = "僅顯示當前螢幕的滑桿介面";
+
/* Class = "NSTextFieldCell"; title = "Brightness:"; ObjectID = "Bhb-6l-uPQ"; */
"Bhb-6l-uPQ.title" = "亮度:";
@@ -88,9 +94,6 @@
/* Class = "NSButtonCell"; title = "Enable Mute DDC command"; ObjectID = "bZq-0d-lJa"; */
"bZq-0d-lJa.title" = "允許DDC靜音指令";
-/* Class = "NSTextFieldCell"; title = "Decrease:"; ObjectID = "Bzq-Co-fex"; */
-"Bzq-Co-fex.title" = "降低:";
-
/* Class = "NSButtonCell"; title = "Show volume slider in menu"; ObjectID = "c9D-MB-lma"; */
"c9D-MB-lma.title" = "顯示音量滑桿";
@@ -121,9 +124,6 @@
/* Class = "NSMenuItem"; title = "Minimal"; ObjectID = "Eq3-z9-yIo"; */
"Eq3-z9-yIo.title" = "少量";
-/* Class = "NSTextFieldCell"; title = "Increase:"; ObjectID = "eue-as-VOR"; */
-"eue-as-VOR.title" = "降低:";
-
/* Class = "NSTextFieldCell"; title = "Scale mapping curve"; ObjectID = "Eui-5S-JR6"; */
"Eui-5S-JR6.title" = "刻度控制曲線";
@@ -175,17 +175,14 @@
/* Class = "NSButtonCell"; title = "Get current"; ObjectID = "hkC-vq-IcD"; */
"hkC-vq-IcD.title" = "取得目前的";
-/* Class = "NSTextFieldCell"; title = "Record shortcuts:"; ObjectID = "HLE-Vp-kcS"; */
-"HLE-Vp-kcS.title" = "記錄快捷鍵:";
-
/* Class = "NSMenuItem"; title = "Hide"; ObjectID = "HUT-Qc-kuu"; */
"HUT-Qc-kuu.title" = "隱藏";
/* Class = "NSTextFieldCell"; title = "Additional controls:"; ObjectID = "i5X-M5-Tf5"; */
"i5X-M5-Tf5.title" = "額外的控制:";
-/* Class = "NSTextFieldCell"; title = "Brightness"; ObjectID = "IJB-mO-e8I"; */
-"IJB-mO-e8I.title" = "亮度";
+/* Class = "NSTextFieldCell"; title = "Brightness:"; ObjectID = "IJB-mO-e8I"; */
+"IJB-mO-e8I.title" = "亮度:";
/* Class = "NSButtonCell"; title = "Enable smooth brightness transitions"; ObjectID = "IK4-u5-qjf"; */
"IK4-u5-qjf.title" = "啟用流暢亮度轉換";
@@ -202,17 +199,14 @@
/* Class = "NSTextFieldCell"; title = "Note: you can press Shift during startup for 'Safe mode' to restore defaults and avoid reading or setting anything."; ObjectID = "Jx2-gO-nq9"; */
"Jx2-gO-nq9.title" = "註:啟動時按下Shift進入「安全模式」以恢復原始設定並避免讀取或更動任何設定。";
-/* Class = "NSButtonCell"; title = "Apply last saved values to the display"; ObjectID = "K0S-zN-M4k"; */
-"K0S-zN-M4k.title" = "套用上次儲存的設定值至螢幕";
-
/* Class = "NSButtonCell"; title = "Enable for Apple branded and built-in displays as well"; ObjectID = "K6A-4z-1aQ"; */
"K6A-4z-1aQ.title" = "蘋果和內建的螢幕";
/* Class = "NSTextFieldCell"; title = "Don't use software dimming as fallback if no hardware control is available."; ObjectID = "kgh-b4-gmO"; */
"kgh-b4-gmO.title" = "當硬體控制不可用時不以軟體控制作為備用選項。";
-/* Class = "NSTextFieldCell"; title = "Record shortcuts:"; ObjectID = "kqJ-jQ-b7U"; */
-"kqJ-jQ-b7U.title" = "記錄快捷鍵:";
+/* Class = "NSMenuItem"; title = "Use combined slider for all displays"; ObjectID = "lA0-tv-qRs"; */
+"lA0-tv-qRs.title" = "使用單一滑桿控制所有螢幕";
/* Class = "NSTextFieldCell"; title = "Brightness and contrast:"; ObjectID = "LO4-4k-gxY"; */
"LO4-4k-gxY.title" = "亮度及對比度:";
@@ -235,8 +229,8 @@
/* Class = "NSTextFieldCell"; title = "Contrast:"; ObjectID = "MMk-S2-yJN"; */
"MMk-S2-yJN.title" = "對比度:";
-/* Class = "NSTextFieldCell"; title = "Increase:"; ObjectID = "mue-fa-8z6"; */
-"mue-fa-8z6.title" = "增加:";
+/* Class = "NSTextFieldCell"; title = "Volume:"; ObjectID = "mue-fa-8z6"; */
+"mue-fa-8z6.title" = "音量:";
/* Class = "NSButtonCell"; title = "Show brightness slider in menu"; ObjectID = "MWo-6I-s9L"; */
"MWo-6I-s9L.title" = "顯示亮度控制滑桿";
@@ -280,9 +274,6 @@
/* Class = "NSTextFieldCell"; title = "DDC max"; ObjectID = "psF-vX-AFB"; */
"psF-vX-AFB.title" = "DDC最大值";
-/* Class = "NSButtonCell"; title = "Show sliders only for the display currently showing the menu"; ObjectID = "PvP-TV-OmT"; */
-"PvP-TV-OmT.title" = "僅顯示當前螢幕的滑桿介面";
-
/* Class = "NSTextFieldCell"; title = "Use software dimming after the display reached zero hardware brightness for extended range. Works for DDC controlled displays only."; ObjectID = "PyY-p9-3NP"; */
"PyY-p9-3NP.title" = "當螢幕的硬體設定亮度為0時以軟體進一步降低亮度(僅適用於以DDC控制的螢幕)。";
@@ -334,8 +325,8 @@
/* Class = "NSButtonCell"; title = "Enable keyboard control for display"; ObjectID = "UqR-WE-jHl"; */
"UqR-WE-jHl.title" = "允許鍵盤控制螢幕";
-/* Class = "NSTextFieldCell"; title = "Contrast (DDC)"; ObjectID = "urd-Rh-aiL"; */
-"urd-Rh-aiL.title" = "對比度";
+/* Class = "NSTextFieldCell"; title = "Contrast (DDC):"; ObjectID = "urd-Rh-aiL"; */
+"urd-Rh-aiL.title" = "對比度:";
/* Class = "NSButtonCell"; title = "Do not use alternative brightness keys"; ObjectID = "vd2-Lk-neX"; */
"vd2-Lk-neX.title" = "禁用替代按鍵";
@@ -385,12 +376,6 @@
/* Class = "NSTextFieldCell"; title = "Warning! With this option enabled, you might find yourself in a position when you end up with a blank display. This, combined with disabled keyboard controls can be frustrating."; ObjectID = "yi3-e1-wsL"; */
"yi3-e1-wsL.title" = "警告!啟用後螢幕可被調整至全暗,若同時停用鍵盤控制可能會導致難以調整設定。";
-/* Class = "NSButtonCell"; title = "Assume last saved settings are valid (recommended)"; ObjectID = "yn8-Nd-o89"; */
-"yn8-Nd-o89.title" = "假設前次的設定可用(建議)";
-
-/* Class = "NSTextFieldCell"; title = "Decrease:"; ObjectID = "yQh-Ve-WEE"; */
-"yQh-Ve-WEE.title" = "減少:";
-
/* Class = "NSTextFieldCell"; title = "Identifier:"; ObjectID = "YqZ-LS-YvR"; */
"YqZ-LS-YvR.title" = "識別碼:";
diff --git a/MonitorControl/View Controllers/KeyboardPrefsViewController.swift b/MonitorControl/View Controllers/KeyboardPrefsViewController.swift
index 622832e..84a3654 100644
--- a/MonitorControl/View Controllers/KeyboardPrefsViewController.swift
+++ b/MonitorControl/View Controllers/KeyboardPrefsViewController.swift
@@ -74,8 +74,8 @@ class KeyboardPrefsViewController: NSViewController, PreferencePane {
self.rowDisableAltBrightnessKeysText.isHidden = true
self.rowCustomBrightnessShortcuts.isHidden = false
} else if self.keyboardBrightness.selectedTag() == KeyboardBrightness.both.rawValue {
- self.rowKeyboardBrightnessPopUp.bottomPadding = hide ? -6 : -13
- self.rowKeyboardBrightnessText.isHidden = hide
+ self.rowKeyboardBrightnessPopUp.bottomPadding = -6
+ self.rowKeyboardBrightnessText.isHidden = true
if self.disableAltBrightnessKeys.state == .on {
self.rowDisableAltBrightnessKeysCheck.isHidden = false
self.rowDisableAltBrightnessKeysText.isHidden = false
@@ -160,19 +160,29 @@ class KeyboardPrefsViewController: NSViewController, PreferencePane {
super.viewDidLoad()
let customBrightnessUpRecorder = KeyboardShortcuts.RecorderCocoa(for: .brightnessUp)
- self.customBrightnessUp.addSubview(customBrightnessUpRecorder)
let customBrightnessDownRecorder = KeyboardShortcuts.RecorderCocoa(for: .brightnessDown)
- self.customBrightnessDown.addSubview(customBrightnessDownRecorder)
let customContrastUpRecorder = KeyboardShortcuts.RecorderCocoa(for: .contrastUp)
- self.customContrastUp.addSubview(customContrastUpRecorder)
let customContrastDownRecorder = KeyboardShortcuts.RecorderCocoa(for: .contrastDown)
- self.customContrastDown.addSubview(customContrastDownRecorder)
let customVolumeUpRecorder = KeyboardShortcuts.RecorderCocoa(for: .volumeUp)
- self.customVolumeUp.addSubview(customVolumeUpRecorder)
let customVolumeDownRecorder = KeyboardShortcuts.RecorderCocoa(for: .volumeDown)
- self.customVolumeDown.addSubview(customVolumeDownRecorder)
let customMuteRecorder = KeyboardShortcuts.RecorderCocoa(for: .mute)
+
+ customBrightnessUpRecorder.placeholderString = NSLocalizedString("Increase", comment: "Shown in record shortcut box")
+ customContrastUpRecorder.placeholderString = customBrightnessUpRecorder.placeholderString
+ customVolumeUpRecorder.placeholderString = customBrightnessUpRecorder.placeholderString
+ customBrightnessDownRecorder.placeholderString = NSLocalizedString("Decrease", comment: "Shown in record shortcut box")
+ customContrastDownRecorder.placeholderString = customBrightnessDownRecorder.placeholderString
+ customVolumeDownRecorder.placeholderString = customBrightnessDownRecorder.placeholderString
+ customMuteRecorder.placeholderString = NSLocalizedString("Mute", comment: "Shown in record shortcut box")
+
+ self.customBrightnessUp.addSubview(customBrightnessUpRecorder)
+ self.customBrightnessDown.addSubview(customBrightnessDownRecorder)
+ self.customContrastUp.addSubview(customContrastUpRecorder)
+ self.customContrastDown.addSubview(customContrastDownRecorder)
+ self.customVolumeUp.addSubview(customVolumeUpRecorder)
+ self.customVolumeDown.addSubview(customVolumeDownRecorder)
self.customMute.addSubview(customMuteRecorder)
+
self.populateSettings()
}
diff --git a/MonitorControl/View Controllers/MainPrefsViewController.swift b/MonitorControl/View Controllers/MainPrefsViewController.swift
index d15d01b..6b9f447 100644
--- a/MonitorControl/View Controllers/MainPrefsViewController.swift
+++ b/MonitorControl/View Controllers/MainPrefsViewController.swift
@@ -25,15 +25,11 @@ class MainPrefsViewController: NSViewController, PreferencePane {
@IBOutlet var enableSmooth: NSButton!
@IBOutlet var enableBrightnessSync: NSButton!
@IBOutlet var showAdvancedDisplays: NSButton!
- @IBOutlet var notEnableDDCDuringStartup: NSButton!
- @IBOutlet var writeDDCOnStartup: NSButton!
- @IBOutlet var readDDCOnStartup: NSButton!
+ @IBOutlet var startupAction: NSPopUpButton!
@IBOutlet var rowStartupSeparator: NSGridRow!
- @IBOutlet var rowDoNothingStartupCheck: NSGridRow!
+ @IBOutlet var rowStartupAction: NSGridRow!
@IBOutlet var rowDoNothingStartupText: NSGridRow!
- @IBOutlet var rowWriteStartupCheck: NSGridRow!
@IBOutlet var rowWriteStartupText: NSGridRow!
- @IBOutlet var rowReadStartupCheck: NSGridRow!
@IBOutlet var rowReadStartupText: NSGridRow!
@IBOutlet var rowSafeModeText: NSGridRow!
@IBOutlet var rowResetButton: NSGridRow!
@@ -44,30 +40,26 @@ class MainPrefsViewController: NSViewController, PreferencePane {
func showAdvanced() -> Bool {
let hide = !prefs.bool(forKey: PrefKey.showAdvancedSettings.rawValue)
- if self.notEnableDDCDuringStartup.state == .on {
+ if self.startupAction.selectedTag() == StartupAction.doNothing.rawValue {
self.rowStartupSeparator.isHidden = hide
- self.rowDoNothingStartupCheck.isHidden = hide
+ self.rowStartupAction.isHidden = hide
self.rowDoNothingStartupText.isHidden = hide
- self.rowWriteStartupCheck.isHidden = hide
- self.rowWriteStartupText.isHidden = hide
- self.rowReadStartupCheck.isHidden = hide
- self.rowReadStartupText.isHidden = hide
+ self.rowWriteStartupText.isHidden = true
+ self.rowReadStartupText.isHidden = true
self.rowSafeModeText.isHidden = hide
+ } else if self.startupAction.selectedTag() == StartupAction.write.rawValue {
+ self.rowStartupSeparator.isHidden = false
+ self.rowStartupAction.isHidden = false
+ self.rowDoNothingStartupText.isHidden = true
+ self.rowWriteStartupText.isHidden = false
+ self.rowReadStartupText.isHidden = true
+ self.rowSafeModeText.isHidden = false
} else {
self.rowStartupSeparator.isHidden = false
- self.rowDoNothingStartupCheck.isHidden = false
- self.rowDoNothingStartupText.isHidden = false
- if self.writeDDCOnStartup.state == .on {
- self.rowWriteStartupCheck.isHidden = false
- self.rowWriteStartupText.isHidden = false
- self.rowReadStartupCheck.isHidden = hide
- self.rowReadStartupText.isHidden = hide
- } else {
- self.rowWriteStartupCheck.isHidden = hide
- self.rowWriteStartupText.isHidden = hide
- self.rowReadStartupCheck.isHidden = false
- self.rowReadStartupText.isHidden = false
- }
+ self.rowStartupAction.isHidden = false
+ self.rowDoNothingStartupText.isHidden = true
+ self.rowWriteStartupText.isHidden = true
+ self.rowReadStartupText.isHidden = false
self.rowSafeModeText.isHidden = false
}
if self.disableSoftwareFallback.state == .on {
@@ -106,9 +98,7 @@ class MainPrefsViewController: NSViewController, PreferencePane {
self.enableSmooth.state = prefs.bool(forKey: PrefKey.disableSmoothBrightness.rawValue) ? .off : .on
self.enableBrightnessSync.state = prefs.bool(forKey: PrefKey.enableBrightnessSync.rawValue) ? .on : .off
self.showAdvancedDisplays.state = prefs.bool(forKey: PrefKey.showAdvancedSettings.rawValue) ? .on : .off
- self.notEnableDDCDuringStartup.state = !prefs.bool(forKey: PrefKey.enableDDCDuringStartup.rawValue) ? .on : .off
- self.writeDDCOnStartup.state = !prefs.bool(forKey: PrefKey.readDDCInsteadOfRestoreValues.rawValue) && prefs.bool(forKey: PrefKey.enableDDCDuringStartup.rawValue) ? .on : .off
- self.readDDCOnStartup.state = prefs.bool(forKey: PrefKey.readDDCInsteadOfRestoreValues.rawValue) && prefs.bool(forKey: PrefKey.enableDDCDuringStartup.rawValue) ? .on : .off
+ self.startupAction.selectItem(withTag: prefs.integer(forKey: PrefKey.startupAction.rawValue))
// Preload Display preferences to some extent to properly set up size in orther that animation won't fail
menuslidersPrefsVc?.view.layoutSubtreeIfNeeded()
keyboardPrefsVc?.view.layoutSubtreeIfNeeded()
@@ -204,39 +194,8 @@ class MainPrefsViewController: NSViewController, PreferencePane {
}
}
- @IBAction func notEnableDDCDuringStartupClicked(_ sender: NSButton) {
- switch sender.state {
- case .on:
- prefs.set(false, forKey: PrefKey.enableDDCDuringStartup.rawValue)
- prefs.set(false, forKey: PrefKey.readDDCInsteadOfRestoreValues.rawValue)
- self.writeDDCOnStartup.state = .off
- self.readDDCOnStartup.state = .off
- default: break
- }
- _ = self.showAdvanced()
- }
-
- @IBAction func writeDDCOnStartupClicked(_ sender: NSButton) {
- switch sender.state {
- case .on:
- prefs.set(false, forKey: PrefKey.readDDCInsteadOfRestoreValues.rawValue)
- prefs.set(true, forKey: PrefKey.enableDDCDuringStartup.rawValue)
- self.notEnableDDCDuringStartup.state = .off
- self.readDDCOnStartup.state = .off
- default: break
- }
- _ = self.showAdvanced()
- }
-
- @IBAction func readDDCOnStartupClicked(_ sender: NSButton) {
- switch sender.state {
- case .on:
- prefs.set(true, forKey: PrefKey.readDDCInsteadOfRestoreValues.rawValue)
- prefs.set(true, forKey: PrefKey.enableDDCDuringStartup.rawValue)
- self.notEnableDDCDuringStartup.state = .off
- self.writeDDCOnStartup.state = .off
- default: break
- }
+ @IBAction func startupAction(_ sender: NSPopUpButton) {
+ prefs.set(sender.selectedTag(), forKey: PrefKey.startupAction.rawValue)
_ = self.showAdvanced()
}
diff --git a/MonitorControl/View Controllers/MenuslidersPrefsViewController.swift b/MonitorControl/View Controllers/MenuslidersPrefsViewController.swift
index 581fe47..15cdfd1 100644
--- a/MonitorControl/View Controllers/MenuslidersPrefsViewController.swift
+++ b/MonitorControl/View Controllers/MenuslidersPrefsViewController.swift
@@ -26,9 +26,7 @@ class MenuslidersPrefsViewController: NSViewController, PreferencePane {
@IBOutlet var showVolumeSlider: NSButton!
@IBOutlet var showContrastSlider: NSButton!
- @IBOutlet var slidersSeparate: NSButton!
- @IBOutlet var slidersRelevant: NSButton!
- @IBOutlet var slidersCombine: NSButton!
+ @IBOutlet var multiSliders: NSPopUpButton!
@IBOutlet var enableSliderSnap: NSButton!
@IBOutlet var showTickMarks: NSButton!
@@ -43,11 +41,8 @@ class MenuslidersPrefsViewController: NSViewController, PreferencePane {
@IBOutlet var rowShowContrastCheck: NSGridRow!
@IBOutlet var rowShowContrastText: NSGridRow!
- @IBOutlet var rowSlidersSeparator: NSButton!
- @IBOutlet var rowSlidersSeparate: NSButton!
- @IBOutlet var rowSlidersRelevant: NSButton!
- @IBOutlet var rowSlidersCombine: NSButton!
- @IBOutlet var rowSlidersCombineText: NSButton!
+ @IBOutlet var rowMultiSliders: NSGridRow!
+ @IBOutlet var rowSlidersCombineText: NSGridRow!
@IBOutlet var rowTickCheck: NSGridRow!
@IBOutlet var rowTickText: NSGridRow!
@@ -101,27 +96,18 @@ class MenuslidersPrefsViewController: NSViewController, PreferencePane {
self.rowShowContrastText.isHidden = hide
}
- if self.slidersSeparate.state == .on {
- self.rowSlidersSeparator.isHidden = hide
- self.rowSlidersSeparate.isHidden = hide
- self.rowSlidersRelevant.isHidden = hide
- self.rowSlidersCombine.isHidden = hide
- self.rowSlidersCombineText.isHidden = hide
- } else {
- self.rowSlidersSeparator.isHidden = false
- self.rowSlidersSeparate.isHidden = false
- if self.slidersRelevant.state == .on {
- self.rowSlidersRelevant.isHidden = false
- } else {
- self.rowSlidersRelevant.isHidden = hide
- }
- if self.slidersCombine.state == .on {
- self.rowSlidersCombine.isHidden = false
- self.rowSlidersCombineText.isHidden = false
- } else {
- self.rowSlidersCombine.isHidden = hide
- self.rowSlidersCombineText.isHidden = hide
- }
+ if self.multiSliders.selectedTag() == MultiSliders.separate.rawValue {
+ self.rowMultiSliders.isHidden = hide
+ self.rowMultiSliders.bottomPadding = -6
+ self.rowSlidersCombineText.isHidden = true
+ } else if self.multiSliders.selectedTag() == MultiSliders.relevant.rawValue {
+ self.rowMultiSliders.isHidden = false
+ self.rowMultiSliders.bottomPadding = -6
+ self.rowSlidersCombineText.isHidden = true
+ } else if self.multiSliders.selectedTag() == MultiSliders.combine.rawValue {
+ self.rowMultiSliders.isHidden = false
+ self.rowMultiSliders.bottomPadding = -10
+ self.rowSlidersCombineText.isHidden = false
}
if app.macOS10() {
@@ -165,9 +151,7 @@ class MenuslidersPrefsViewController: NSViewController, PreferencePane {
}
self.showContrastSlider.state = prefs.bool(forKey: PrefKey.showContrast.rawValue) ? .on : .off
- self.slidersSeparate.state = prefs.bool(forKey: PrefKey.slidersRelevant.rawValue) || prefs.bool(forKey: PrefKey.slidersCombine.rawValue) ? .off : .on
- self.slidersRelevant.state = prefs.bool(forKey: PrefKey.slidersRelevant.rawValue) ? .on : .off
- self.slidersCombine.state = prefs.bool(forKey: PrefKey.slidersCombine.rawValue) ? .on : .off
+ self.multiSliders.selectItem(withTag: prefs.integer(forKey: PrefKey.multiSliders.rawValue))
self.showVolumeSlider.state = prefs.bool(forKey: PrefKey.hideVolume.rawValue) ? .off : .on
self.enableSliderSnap.state = prefs.bool(forKey: PrefKey.enableSliderSnap.rawValue) ? .on : .off
@@ -253,32 +237,8 @@ class MenuslidersPrefsViewController: NSViewController, PreferencePane {
_ = self.showAdvanced()
}
- @IBAction func slidersSeparate(_: NSButton) {
- prefs.set(false, forKey: PrefKey.slidersCombine.rawValue)
- prefs.set(false, forKey: PrefKey.slidersRelevant.rawValue)
- self.slidersSeparate.state = .on
- self.slidersCombine.state = .off
- self.slidersRelevant.state = .off
- app.updateMenusAndKeys()
- _ = self.showAdvanced()
- }
-
- @IBAction func slidersRelevant(_: NSButton) {
- prefs.set(false, forKey: PrefKey.slidersCombine.rawValue)
- prefs.set(true, forKey: PrefKey.slidersRelevant.rawValue)
- self.slidersSeparate.state = .off
- self.slidersCombine.state = .off
- self.slidersRelevant.state = .on
- app.updateMenusAndKeys()
- _ = self.showAdvanced()
- }
-
- @IBAction func slidersCombine(_: NSButton) {
- prefs.set(true, forKey: PrefKey.slidersCombine.rawValue)
- prefs.set(false, forKey: PrefKey.slidersRelevant.rawValue)
- self.slidersSeparate.state = .off
- self.slidersCombine.state = .on
- self.slidersRelevant.state = .off
+ @IBAction func multiSliders(_ sender: NSPopUpButton) {
+ prefs.set(sender.selectedTag(), forKey: PrefKey.multiSliders.rawValue)
app.updateMenusAndKeys()
_ = self.showAdvanced()
}
diff --git a/MonitorControlHelper/Info.plist b/MonitorControlHelper/Info.plist
index d68529e..8466978 100644
--- a/MonitorControlHelper/Info.plist
+++ b/MonitorControlHelper/Info.plist
@@ -19,7 +19,7 @@
CFBundleShortVersionString$(MARKETING_VERSION)CFBundleVersion
- 6444
+ 6517LSApplicationCategoryTypepublic.app-category.utilitiesLSBackgroundOnly