mirror of
https://github.com/MonitorControl/MonitorControl.git
synced 2026-05-15 14:15:55 -06:00
Fixing software dimming and custom keyboard issues (#671)
* Change icon order * Added option for minimum brightness, fixed text for external display brightness control (+ updated all translations) * Fix cumulative darkening issue upon toggling Disable dimming as fallback when software brightness is not 100% * Further improvement. * New 'Avoid gammatable manipulation' option for coexistence with f.lux in software mode. * Fix some translation errors * Fix signing * Make sure that key repeat speed for custom shortcuts do not go below a certain threshold.
This commit is contained in:
parent
6bd775b269
commit
08c41c1a77
40 changed files with 406 additions and 118 deletions
|
|
@ -22,6 +22,9 @@ enum PrefKey: String {
|
|||
// DDC polling count for display
|
||||
case pollingCount
|
||||
|
||||
// Display should avoid gamma table manipulation and use shades instead (to coexist with other apps doing gamma manipulation)
|
||||
case avoidGamma
|
||||
|
||||
// Command value display
|
||||
case value
|
||||
|
||||
|
|
@ -127,6 +130,9 @@ enum PrefKey: String {
|
|||
// Change Brightness for all screens
|
||||
case allScreensBrightness
|
||||
|
||||
// Allow zero software brightness
|
||||
case allowZeroSwBrightness
|
||||
|
||||
// Use focus instead of mouse position to determine which display to control for brightness
|
||||
case useFocusInsteadOfMouse
|
||||
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@
|
|||
<key>CFBundleShortVersionString</key>
|
||||
<string>$(MARKETING_VERSION)</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>6395</string>
|
||||
<string>6421</string>
|
||||
<key>LSApplicationCategoryType</key>
|
||||
<string>public.app-category.utilities</string>
|
||||
<key>LSMinimumSystemVersion</key>
|
||||
|
|
|
|||
|
|
@ -191,7 +191,7 @@ class Display: Equatable {
|
|||
}
|
||||
|
||||
func swBrightnessTransform(value: Float, reverse: Bool = false) -> Float {
|
||||
let lowTreshold: Float = 0.0 // If we don't want to allow zero brightness for safety reason, this value can be modified (for example to 0.1 for a 10% minimum)
|
||||
let lowTreshold: Float = prefs.bool(forKey: PrefKey.allowZeroSwBrightness.rawValue) ? 0.0 : 0.15
|
||||
if !reverse {
|
||||
return value * (1 - lowTreshold) + lowTreshold
|
||||
} else {
|
||||
|
|
@ -214,7 +214,7 @@ class Display: Equatable {
|
|||
guard app.reconfigureID == 0 else {
|
||||
return
|
||||
}
|
||||
if self.isVirtual {
|
||||
if self.isVirtual || self.readPrefAsBool(key: .avoidGamma) {
|
||||
_ = DisplayManager.shared.setShadeAlpha(value: 1 - transientValue, displayID: self.identifier)
|
||||
} else {
|
||||
let gammaTableRed = self.defaultGammaTableRed.map { $0 * transientValue }
|
||||
|
|
@ -227,8 +227,8 @@ class Display: Equatable {
|
|||
self.swBrightnessSemaphore.signal()
|
||||
}
|
||||
} else {
|
||||
if self.isVirtual {
|
||||
return DisplayManager.shared.setShadeAlpha(value: 1 - value, displayID: self.identifier)
|
||||
if self.isVirtual || self.readPrefAsBool(key: .avoidGamma) {
|
||||
return DisplayManager.shared.setShadeAlpha(value: 1 - newValue, displayID: self.identifier)
|
||||
} else {
|
||||
let gammaTableRed = self.defaultGammaTableRed.map { $0 * newValue }
|
||||
let gammaTableGreen = self.defaultGammaTableGreen.map { $0 * newValue }
|
||||
|
|
@ -242,8 +242,9 @@ class Display: Equatable {
|
|||
}
|
||||
|
||||
func getSwBrightness() -> Float {
|
||||
if self.isVirtual {
|
||||
return 1 - (DisplayManager.shared.getShadeAlpha(displayID: self.identifier) ?? 1)
|
||||
if self.isVirtual || self.readPrefAsBool(key: .avoidGamma) {
|
||||
let rawBrightnessValue = 1 - (DisplayManager.shared.getShadeAlpha(displayID: self.identifier) ?? 1)
|
||||
return self.swBrightnessTransform(value: rawBrightnessValue, reverse: true)
|
||||
}
|
||||
var gammaTableRed = [CGGammaValue](repeating: 0, count: 256)
|
||||
var gammaTableGreen = [CGGammaValue](repeating: 0, count: 256)
|
||||
|
|
|
|||
|
|
@ -76,7 +76,12 @@ class OtherDisplay: Display {
|
|||
func setupCurrentAndMaxValues(command: Command, firstrun: Bool = false) {
|
||||
var ddcValues: (UInt16, UInt16)?
|
||||
var maxDDCValue = UInt16(DDC_MAX_DETECT_LIMIT)
|
||||
var currentDDCValue = UInt16(Float(DDC_MAX_DETECT_LIMIT) * 1)
|
||||
var currentDDCValue: UInt16
|
||||
switch command {
|
||||
case .audioSpeakerVolume: currentDDCValue = UInt16(Float(self.DDC_MAX_DETECT_LIMIT) * 0.125)
|
||||
case .contrast: currentDDCValue = UInt16(Float(self.DDC_MAX_DETECT_LIMIT) * 0.750)
|
||||
default: currentDDCValue = UInt16(Float(self.DDC_MAX_DETECT_LIMIT) * 1.000)
|
||||
}
|
||||
if command == .audioSpeakerVolume {
|
||||
currentDDCValue = UInt16(Float(self.DDC_MAX_DETECT_LIMIT) * 0.125) // lower default audio value as high volume might rattle the user.
|
||||
}
|
||||
|
|
@ -114,7 +119,7 @@ class OtherDisplay: Display {
|
|||
_ = self.writeDDCValues(command: command, value: currentDDCValue)
|
||||
}
|
||||
} else {
|
||||
self.savePref(max(0.1, self.prefExists(for: command) ? self.readPrefAsFloat(for: command) : Float(1)), for: command)
|
||||
self.savePref(self.prefExists(for: command) ? self.readPrefAsFloat(for: command) : Float(1), for: command)
|
||||
self.savePref(self.readPrefAsFloat(for: command), key: .SwBrightness)
|
||||
self.brightnessSyncSourceValue = self.readPrefAsFloat(for: command)
|
||||
self.smoothBrightnessTransient = self.readPrefAsFloat(for: command)
|
||||
|
|
|
|||
|
|
@ -56,8 +56,8 @@ class KeyboardShortcutsManager {
|
|||
}
|
||||
|
||||
func engage(_ shortcut: KeyboardShortcuts.Name) {
|
||||
self.initialKeyRepeat = UserDefaults.standard.double(forKey: "InitialKeyRepeat") * 0.014
|
||||
self.keyRepeat = UserDefaults.standard.double(forKey: "KeyRepeat") * 0.014
|
||||
self.initialKeyRepeat = max(15, UserDefaults.standard.double(forKey: "InitialKeyRepeat")) * 0.014
|
||||
self.keyRepeat = max(2, UserDefaults.standard.double(forKey: "KeyRepeat")) * 0.014
|
||||
self.currentCommand = shortcut
|
||||
self.isFirstKeypress = true
|
||||
self.isHold = true
|
||||
|
|
|
|||
|
|
@ -1,7 +1,6 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<document type="com.apple.InterfaceBuilder3.Cocoa.Storyboard.XIB" version="3.0" toolsVersion="19162" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES">
|
||||
<dependencies>
|
||||
<deployment identifier="macosx"/>
|
||||
<plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="19162"/>
|
||||
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
|
||||
</dependencies>
|
||||
|
|
@ -11,10 +10,10 @@
|
|||
<objects>
|
||||
<viewController storyboardIdentifier="MainPrefsVC" id="BGD-tY-Myx" customClass="MainPrefsViewController" customModule="MonitorControl" customModuleProvider="target" sceneMemberID="viewController">
|
||||
<view key="view" horizontalHuggingPriority="1" translatesAutoresizingMaskIntoConstraints="NO" id="COE-Oc-gZs">
|
||||
<rect key="frame" x="0.0" y="0.0" width="730" height="605"/>
|
||||
<rect key="frame" x="0.0" y="0.0" width="730" height="666"/>
|
||||
<subviews>
|
||||
<gridView xPlacement="leading" yPlacement="fill" rowAlignment="none" rowSpacing="20" translatesAutoresizingMaskIntoConstraints="NO" id="noT-gJ-0yS">
|
||||
<rect key="frame" x="20" y="20" width="690" height="565"/>
|
||||
<rect key="frame" x="20" y="20" width="690" height="626"/>
|
||||
<rows>
|
||||
<gridRow bottomPadding="-6" id="d70-FX-dma"/>
|
||||
<gridRow bottomPadding="-10" id="hdq-3y-aue"/>
|
||||
|
|
@ -27,6 +26,8 @@
|
|||
<gridRow bottomPadding="-10" id="jHJ-o2-Y9H"/>
|
||||
<gridRow bottomPadding="-13" id="Ypu-QY-Cja"/>
|
||||
<gridRow bottomPadding="-10" id="jUq-ZO-OLV"/>
|
||||
<gridRow bottomPadding="-13" id="DxT-oY-DIZ"/>
|
||||
<gridRow bottomPadding="-10" id="Xcd-Ny-zkH"/>
|
||||
<gridRow bottomPadding="-10" id="gGa-4U-s7D"/>
|
||||
<gridRow bottomPadding="-13" id="g3B-cE-vmT"/>
|
||||
<gridRow bottomPadding="-10" id="0ue-QI-RgH"/>
|
||||
|
|
@ -47,7 +48,7 @@
|
|||
<gridCells>
|
||||
<gridCell row="d70-FX-dma" column="eHC-Ur-UsS" xPlacement="trailing" id="ixb-6N-RsC">
|
||||
<textField key="contentView" horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="HkH-iv-GLz">
|
||||
<rect key="frame" x="136" y="549" width="76" height="16"/>
|
||||
<rect key="frame" x="136" y="610" width="76" height="16"/>
|
||||
<textFieldCell key="cell" lineBreakMode="truncatingTail" baseWritingDirection="leftToRight" alignment="right" title="Application:" id="okD-DG-pYa">
|
||||
<font key="font" usesAppearanceFont="YES"/>
|
||||
<color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
|
||||
|
|
@ -57,7 +58,7 @@
|
|||
</gridCell>
|
||||
<gridCell row="d70-FX-dma" column="64O-72-10l" xPlacement="leading" id="v0S-4P-60y">
|
||||
<button key="contentView" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="9Gu-aU-Td2">
|
||||
<rect key="frame" x="218" y="548" width="108" height="18"/>
|
||||
<rect key="frame" x="218" y="609" width="108" height="18"/>
|
||||
<buttonCell key="cell" type="check" title="Start at Login" bezelStyle="regularSquare" imagePosition="left" inset="2" id="j72-NF-zsW">
|
||||
<behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
|
||||
<font key="font" metaFont="system"/>
|
||||
|
|
@ -70,7 +71,7 @@
|
|||
<gridCell row="hdq-3y-aue" column="eHC-Ur-UsS" id="gY2-G1-Lxs"/>
|
||||
<gridCell row="hdq-3y-aue" column="64O-72-10l" id="q9Q-Sd-a4F">
|
||||
<button key="contentView" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="79h-9d-Iwx">
|
||||
<rect key="frame" x="218" y="518" width="472" height="18"/>
|
||||
<rect key="frame" x="218" y="579" width="472" height="18"/>
|
||||
<buttonCell key="cell" type="check" title="Automatically check for updates" bezelStyle="regularSquare" imagePosition="left" inset="2" id="Faf-9L-TXx">
|
||||
<behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
|
||||
<font key="font" metaFont="system"/>
|
||||
|
|
@ -82,13 +83,13 @@
|
|||
</gridCell>
|
||||
<gridCell row="CrM-x5-re7" column="eHC-Ur-UsS" headOfMergedCell="UBc-A2-Il4" id="UBc-A2-Il4">
|
||||
<box key="contentView" autoresizesSubviews="NO" horizontalHuggingPriority="1" verticalHuggingPriority="750" horizontalCompressionResistancePriority="1000" placeholderIntrinsicWidth="690" placeholderIntrinsicHeight="2" verifyAmbiguity="off" boxType="separator" translatesAutoresizingMaskIntoConstraints="NO" id="YEg-U6-LH4">
|
||||
<rect key="frame" x="0.0" y="505" width="690" height="6"/>
|
||||
<rect key="frame" x="0.0" y="566" width="690" height="6"/>
|
||||
</box>
|
||||
</gridCell>
|
||||
<gridCell row="CrM-x5-re7" column="64O-72-10l" headOfMergedCell="UBc-A2-Il4" id="s0l-Gz-1c0"/>
|
||||
<gridCell row="DnA-aR-kcy" column="eHC-Ur-UsS" xPlacement="trailing" id="vO3-t1-Aqs">
|
||||
<textField key="contentView" horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="vsD-wo-GE1">
|
||||
<rect key="frame" x="108" y="481" width="104" height="16"/>
|
||||
<rect key="frame" x="108" y="542" width="104" height="16"/>
|
||||
<textFieldCell key="cell" lineBreakMode="clipping" alignment="right" title="General options:" id="W58-ch-j69">
|
||||
<font key="font" usesAppearanceFont="YES"/>
|
||||
<color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
|
||||
|
|
@ -98,7 +99,7 @@
|
|||
</gridCell>
|
||||
<gridCell row="DnA-aR-kcy" column="64O-72-10l" id="Srb-mF-ZHj">
|
||||
<button key="contentView" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="7cl-Ma-fc4">
|
||||
<rect key="frame" x="218" y="480" width="472" height="18"/>
|
||||
<rect key="frame" x="218" y="541" width="472" height="18"/>
|
||||
<buttonCell key="cell" type="check" title="Enable smooth brightness transitions" bezelStyle="regularSquare" imagePosition="left" alignment="left" inset="2" id="IK4-u5-qjf">
|
||||
<behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
|
||||
<font key="font" metaFont="system"/>
|
||||
|
|
@ -111,7 +112,7 @@
|
|||
<gridCell row="xlB-05-nd7" column="eHC-Ur-UsS" id="A6K-rU-q8d"/>
|
||||
<gridCell row="xlB-05-nd7" column="64O-72-10l" id="3by-qE-2cw">
|
||||
<textField key="contentView" horizontalHuggingPriority="251" verticalHuggingPriority="750" preferredMaxLayoutWidth="400" translatesAutoresizingMaskIntoConstraints="NO" id="E8S-HE-vSk">
|
||||
<rect key="frame" x="218" y="460" width="474" height="14"/>
|
||||
<rect key="frame" x="218" y="521" width="474" height="14"/>
|
||||
<textFieldCell key="cell" controlSize="small" title="You can disable smooth transitions for a more direct, immediate control." id="ENt-mP-0yH">
|
||||
<font key="font" metaFont="smallSystem"/>
|
||||
<color key="textColor" name="secondaryLabelColor" catalog="System" colorSpace="catalog"/>
|
||||
|
|
@ -122,7 +123,7 @@
|
|||
<gridCell row="fnu-hr-lg2" column="eHC-Ur-UsS" xPlacement="trailing" id="7Br-bw-2Th"/>
|
||||
<gridCell row="fnu-hr-lg2" column="64O-72-10l" xPlacement="leading" id="VsI-fh-hJ5">
|
||||
<button key="contentView" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="HqE-17-9wg">
|
||||
<rect key="frame" x="218" y="433" width="278" height="18"/>
|
||||
<rect key="frame" x="218" y="494" width="278" height="18"/>
|
||||
<buttonCell key="cell" type="check" title="Combine hardware and software dimming" bezelStyle="regularSquare" imagePosition="left" alignment="left" inset="2" id="r76-Zc-x09">
|
||||
<behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
|
||||
<font key="font" metaFont="system"/>
|
||||
|
|
@ -135,7 +136,7 @@
|
|||
<gridCell row="fZn-VF-HKh" column="eHC-Ur-UsS" xPlacement="trailing" id="4xt-0S-gdo"/>
|
||||
<gridCell row="fZn-VF-HKh" column="64O-72-10l" xPlacement="leading" id="CMT-YB-Lnh">
|
||||
<textField key="contentView" horizontalHuggingPriority="251" verticalHuggingPriority="750" preferredMaxLayoutWidth="400" translatesAutoresizingMaskIntoConstraints="NO" id="cSz-6K-c2a">
|
||||
<rect key="frame" x="218" y="399" width="395" height="28"/>
|
||||
<rect key="frame" x="218" y="460" width="395" height="28"/>
|
||||
<textFieldCell key="cell" controlSize="small" id="PyY-p9-3NP">
|
||||
<font key="font" metaFont="smallSystem"/>
|
||||
<string key="title">Use software dimming after the display reached zero hardware brightness for extended range. Works for DDC controlled displays only.</string>
|
||||
|
|
@ -147,7 +148,7 @@
|
|||
<gridCell row="xKQ-LY-5il" column="eHC-Ur-UsS" id="5Ae-gB-MUt"/>
|
||||
<gridCell row="xKQ-LY-5il" column="64O-72-10l" id="Rzu-9I-Tog">
|
||||
<button key="contentView" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="DW6-ez-A8y">
|
||||
<rect key="frame" x="218" y="372" width="472" height="18"/>
|
||||
<rect key="frame" x="218" y="433" width="472" height="18"/>
|
||||
<buttonCell key="cell" type="check" title="Sync brightness changes from Built-in and Apple displays" bezelStyle="regularSquare" imagePosition="left" alignment="left" inset="2" id="0ca-DG-AgB">
|
||||
<behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
|
||||
<font key="font" metaFont="system"/>
|
||||
|
|
@ -160,7 +161,7 @@
|
|||
<gridCell row="jHJ-o2-Y9H" column="eHC-Ur-UsS" id="En7-LK-oWB"/>
|
||||
<gridCell row="jHJ-o2-Y9H" column="64O-72-10l" id="wYJ-EG-TWv">
|
||||
<textField key="contentView" horizontalHuggingPriority="251" verticalHuggingPriority="750" preferredMaxLayoutWidth="400" translatesAutoresizingMaskIntoConstraints="NO" id="gLU-8p-2gU">
|
||||
<rect key="frame" x="218" y="338" width="474" height="28"/>
|
||||
<rect key="frame" x="218" y="399" width="474" height="28"/>
|
||||
<textFieldCell key="cell" controlSize="small" id="wjv-tq-iUx">
|
||||
<font key="font" metaFont="smallSystem"/>
|
||||
<string key="title">Changes that are caused by the Ambient light sensor or made using Touch Bar, Control Center, System Preferences will be replicated to all displays.</string>
|
||||
|
|
@ -172,7 +173,7 @@
|
|||
<gridCell row="Ypu-QY-Cja" column="eHC-Ur-UsS" id="IhV-pU-vai"/>
|
||||
<gridCell row="Ypu-QY-Cja" column="64O-72-10l" id="UmJ-Q7-F5C">
|
||||
<button key="contentView" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="Rdj-ft-rJg">
|
||||
<rect key="frame" x="218" y="311" width="472" height="18"/>
|
||||
<rect key="frame" x="218" y="372" width="472" height="18"/>
|
||||
<buttonCell key="cell" type="check" title="Disable software dimming as fallback" bezelStyle="regularSquare" imagePosition="left" inset="2" id="afB-Xx-Lta">
|
||||
<behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
|
||||
<font key="font" metaFont="system"/>
|
||||
|
|
@ -185,7 +186,7 @@
|
|||
<gridCell row="jUq-ZO-OLV" column="eHC-Ur-UsS" id="qIZ-c7-Usj"/>
|
||||
<gridCell row="jUq-ZO-OLV" column="64O-72-10l" id="rc0-is-gD8">
|
||||
<textField key="contentView" horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="kre-Lm-1Uv">
|
||||
<rect key="frame" x="218" y="291" width="474" height="14"/>
|
||||
<rect key="frame" x="218" y="352" width="474" height="14"/>
|
||||
<textFieldCell key="cell" controlSize="small" title="Don't use software dimming as fallback if no hardware control is available." id="kgh-b4-gmO">
|
||||
<font key="font" metaFont="smallSystem"/>
|
||||
<color key="textColor" name="secondaryLabelColor" catalog="System" colorSpace="catalog"/>
|
||||
|
|
@ -193,6 +194,31 @@
|
|||
</textFieldCell>
|
||||
</textField>
|
||||
</gridCell>
|
||||
<gridCell row="DxT-oY-DIZ" column="eHC-Ur-UsS" id="fIa-Gx-aZY"/>
|
||||
<gridCell row="DxT-oY-DIZ" column="64O-72-10l" id="Ecy-8o-nhn">
|
||||
<button key="contentView" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="fNb-xU-imu">
|
||||
<rect key="frame" x="218" y="325" width="472" height="18"/>
|
||||
<buttonCell key="cell" type="check" title="Allow zero brightness via software or combined dimming" bezelStyle="regularSquare" imagePosition="left" inset="2" id="FjB-XL-fG5">
|
||||
<behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
|
||||
<font key="font" metaFont="system"/>
|
||||
</buttonCell>
|
||||
<connections>
|
||||
<action selector="allowZeroSwBrightness:" target="BGD-tY-Myx" id="vWB-nv-4Ss"/>
|
||||
</connections>
|
||||
</button>
|
||||
</gridCell>
|
||||
<gridCell row="Xcd-Ny-zkH" column="eHC-Ur-UsS" id="oha-cQ-Z3i"/>
|
||||
<gridCell row="Xcd-Ny-zkH" column="64O-72-10l" id="JwP-77-4T2">
|
||||
<textField key="contentView" horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="Vkd-Of-bnQ">
|
||||
<rect key="frame" x="218" y="291" width="474" height="28"/>
|
||||
<textFieldCell key="cell" controlSize="small" id="yi3-e1-wsL">
|
||||
<font key="font" metaFont="smallSystem"/>
|
||||
<string key="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.</string>
|
||||
<color key="textColor" name="secondaryLabelColor" catalog="System" colorSpace="catalog"/>
|
||||
<color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
|
||||
</textFieldCell>
|
||||
</textField>
|
||||
</gridCell>
|
||||
<gridCell row="gGa-4U-s7D" column="eHC-Ur-UsS" headOfMergedCell="hH2-hj-VXr" id="hH2-hj-VXr">
|
||||
<box key="contentView" autoresizesSubviews="NO" horizontalHuggingPriority="1" verticalHuggingPriority="750" horizontalCompressionResistancePriority="1000" placeholderIntrinsicWidth="690" placeholderIntrinsicHeight="2" boxType="separator" translatesAutoresizingMaskIntoConstraints="NO" id="zA4-hk-MYo">
|
||||
<rect key="frame" x="0.0" y="277" width="690" height="6"/>
|
||||
|
|
@ -357,6 +383,7 @@
|
|||
</constraints>
|
||||
</view>
|
||||
<connections>
|
||||
<outlet property="allowZeroSwBrightness" destination="fNb-xU-imu" id="cDJ-Lc-WZd"/>
|
||||
<outlet property="automaticUpdateCheck" destination="79h-9d-Iwx" id="qjo-gL-f1w"/>
|
||||
<outlet property="combinedBrightness" destination="HqE-17-9wg" id="jyF-r9-cDY"/>
|
||||
<outlet property="disableSoftwareFallback" destination="Rdj-ft-rJg" id="NIr-fA-br4"/>
|
||||
|
|
@ -364,6 +391,8 @@
|
|||
<outlet property="enableSmooth" destination="7cl-Ma-fc4" id="jJE-mj-5v2"/>
|
||||
<outlet property="notEnableDDCDuringStartup" destination="mus-cc-See" id="q1w-87-I7Q"/>
|
||||
<outlet property="readDDCOnStartup" destination="5M2-Ww-w0G" id="Qkl-87-Dik"/>
|
||||
<outlet property="rowAllowZeroSwBrightnessCheck" destination="DxT-oY-DIZ" id="jcI-f0-nh3"/>
|
||||
<outlet property="rowAllowZeroSwBrightnessText" destination="Xcd-Ny-zkH" id="aAM-kn-ayN"/>
|
||||
<outlet property="rowDisableSoftwareFallbackCheck" destination="Ypu-QY-Cja" id="X24-eA-Vrc"/>
|
||||
<outlet property="rowDisableSoftwareFallbackText" destination="jUq-ZO-OLV" id="Me1-7J-aIv"/>
|
||||
<outlet property="rowDoNothingStartupCheck" destination="g3B-cE-vmT" id="WXd-ID-zYv"/>
|
||||
|
|
@ -382,7 +411,7 @@
|
|||
</viewController>
|
||||
<customObject id="JDw-du-OST" userLabel="First Responder" customClass="NSResponder" sceneMemberID="firstResponder"/>
|
||||
</objects>
|
||||
<point key="canvasLocation" x="298" y="-500.5"/>
|
||||
<point key="canvasLocation" x="298" y="-525"/>
|
||||
</scene>
|
||||
<!--Menusliders Prefs View Controller-->
|
||||
<scene sceneID="YU5-7I-f0n">
|
||||
|
|
@ -902,7 +931,7 @@
|
|||
<rect key="frame" x="218" y="694" width="474" height="56"/>
|
||||
<textFieldCell key="cell" controlSize="small" id="pa0-Hz-ace">
|
||||
<font key="font" metaFont="smallSystem"/>
|
||||
<string key="title">Use the brightness keys of your Apple keyboard to control brightness. You can hold Control to adjust the built-in display, Control+Option to adjust external displays. Hold Shift+Option for fine control. Control+Option+Command adjusts contrast on DDC compatible displays.</string>
|
||||
<string key="title">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.</string>
|
||||
<color key="textColor" name="secondaryLabelColor" catalog="System" colorSpace="catalog"/>
|
||||
<color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
|
||||
</textFieldCell>
|
||||
|
|
@ -1384,16 +1413,16 @@
|
|||
<customObject id="rw7-Po-Lxm" userLabel="First Responder" customClass="NSResponder" sceneMemberID="firstResponder"/>
|
||||
<viewController storyboardIdentifier="DisplaysPrefsVC" id="2Ei-9P-f0u" customClass="DisplaysPrefsViewController" customModule="MonitorControl" sceneMemberID="viewController">
|
||||
<view key="view" translatesAutoresizingMaskIntoConstraints="NO" id="aj0-6l-QE2">
|
||||
<rect key="frame" x="0.0" y="0.0" width="730" height="489"/>
|
||||
<rect key="frame" x="0.0" y="0.0" width="730" height="533"/>
|
||||
<subviews>
|
||||
<scrollView borderType="none" autohidesScrollers="YES" horizontalLineScroll="490" horizontalPageScroll="10" verticalLineScroll="490" verticalPageScroll="10" hasHorizontalScroller="NO" usesPredominantAxisScrolling="NO" horizontalScrollElasticity="none" translatesAutoresizingMaskIntoConstraints="NO" id="O0W-8R-9c8">
|
||||
<rect key="frame" x="0.0" y="0.0" width="730" height="488"/>
|
||||
<scrollView borderType="none" autohidesScrollers="YES" horizontalLineScroll="520" horizontalPageScroll="10" verticalLineScroll="520" verticalPageScroll="10" hasHorizontalScroller="NO" usesPredominantAxisScrolling="NO" horizontalScrollElasticity="none" translatesAutoresizingMaskIntoConstraints="NO" id="O0W-8R-9c8">
|
||||
<rect key="frame" x="0.0" y="0.0" width="730" height="532"/>
|
||||
<clipView key="contentView" drawsBackground="NO" id="yDV-Al-LQT">
|
||||
<rect key="frame" x="0.0" y="0.0" width="730" height="488"/>
|
||||
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
|
||||
<rect key="frame" x="0.0" y="0.0" width="730" height="532"/>
|
||||
<autoresizingMask key="autoresizingMask"/>
|
||||
<subviews>
|
||||
<tableView verticalHuggingPriority="750" allowsExpansionToolTips="YES" columnAutoresizingStyle="none" tableStyle="inset" selectionHighlightStyle="none" columnReordering="NO" columnResizing="NO" multipleSelection="NO" emptySelection="NO" autosaveColumns="NO" typeSelect="NO" rowHeight="490" rowSizeStyle="automatic" viewBased="YES" id="zC9-dS-Tr3">
|
||||
<rect key="frame" x="0.0" y="0.0" width="730" height="488"/>
|
||||
<tableView verticalHuggingPriority="750" allowsExpansionToolTips="YES" columnAutoresizingStyle="none" tableStyle="inset" selectionHighlightStyle="none" columnReordering="NO" columnResizing="NO" multipleSelection="NO" emptySelection="NO" autosaveColumns="NO" typeSelect="NO" rowHeight="520" viewBased="YES" id="zC9-dS-Tr3">
|
||||
<rect key="frame" x="0.0" y="0.0" width="730" height="532"/>
|
||||
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
|
||||
<size key="intercellSpacing" width="17" height="0.0"/>
|
||||
<color key="backgroundColor" name="windowBackgroundColor" catalog="System" colorSpace="catalog"/>
|
||||
|
|
@ -1412,16 +1441,16 @@
|
|||
<tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/>
|
||||
<prototypeCellViews>
|
||||
<tableCellView wantsLayer="YES" id="hCY-wr-B84" customClass="DisplaysPrefsCellView" customModule="MonitorControl">
|
||||
<rect key="frame" x="18" y="0.0" width="690" height="490"/>
|
||||
<rect key="frame" x="18" y="0.0" width="685" height="520"/>
|
||||
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
|
||||
<subviews>
|
||||
<imageView wantsLayer="YES" horizontalHuggingPriority="251" verticalHuggingPriority="251" id="Bhw-JQ-dBx">
|
||||
<rect key="frame" x="3" y="420.5" width="64" height="69"/>
|
||||
<rect key="frame" x="3" y="450.5" width="64" height="69"/>
|
||||
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
|
||||
<imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageAlignment="top" imageScaling="proportionallyUpOrDown" image="NSTouchBarIconViewTemplate" id="DLq-uQ-NPf"/>
|
||||
</imageView>
|
||||
<textField horizontalHuggingPriority="251" verticalHuggingPriority="750" id="jz0-4Z-xVm">
|
||||
<rect key="frame" x="210" y="419" width="166" height="16"/>
|
||||
<rect key="frame" x="210" y="449" width="166" height="16"/>
|
||||
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
|
||||
<textFieldCell key="cell" lineBreakMode="clipping" title="#bc-ignore!" id="6GJ-6Q-gqz">
|
||||
<font key="font" metaFont="system"/>
|
||||
|
|
@ -1430,7 +1459,7 @@
|
|||
</textFieldCell>
|
||||
</textField>
|
||||
<button verticalHuggingPriority="750" id="hoM-Lm-YlP">
|
||||
<rect key="frame" x="385" y="386" width="302" height="18"/>
|
||||
<rect key="frame" x="385" y="416" width="302" height="18"/>
|
||||
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
|
||||
<buttonCell key="cell" type="check" title="Use hardware DDC control" bezelStyle="regularSquare" imagePosition="left" inset="2" id="ZdU-gV-V05">
|
||||
<behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
|
||||
|
|
@ -1441,7 +1470,7 @@
|
|||
</connections>
|
||||
</button>
|
||||
<button verticalHuggingPriority="750" id="Y93-eX-6aR">
|
||||
<rect key="frame" x="385" y="418" width="302" height="18"/>
|
||||
<rect key="frame" x="385" y="448" width="302" height="18"/>
|
||||
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
|
||||
<buttonCell key="cell" type="check" title="Enable keyboard control for display" bezelStyle="regularSquare" imagePosition="left" inset="2" id="UqR-WE-jHl">
|
||||
<behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
|
||||
|
|
@ -1452,7 +1481,7 @@
|
|||
</connections>
|
||||
</button>
|
||||
<textField horizontalHuggingPriority="251" verticalHuggingPriority="750" id="aUB-dZ-Kbz">
|
||||
<rect key="frame" x="78" y="419" width="128" height="16"/>
|
||||
<rect key="frame" x="78" y="449" width="128" height="16"/>
|
||||
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
|
||||
<textFieldCell key="cell" lineBreakMode="clipping" alignment="left" title="Identifier:" id="YqZ-LS-YvR">
|
||||
<font key="font" metaFont="system"/>
|
||||
|
|
@ -1461,11 +1490,11 @@
|
|||
</textFieldCell>
|
||||
</textField>
|
||||
<box verticalHuggingPriority="750" boxType="separator" id="VgS-82-jXG">
|
||||
<rect key="frame" x="80" y="451" width="607" height="5"/>
|
||||
<rect key="frame" x="80" y="481" width="607" height="5"/>
|
||||
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
|
||||
</box>
|
||||
<textField horizontalHuggingPriority="251" verticalHuggingPriority="750" id="vfj-lR-QtG">
|
||||
<rect key="frame" x="78" y="386" width="128" height="16"/>
|
||||
<rect key="frame" x="78" y="416" width="128" height="16"/>
|
||||
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
|
||||
<textFieldCell key="cell" lineBreakMode="clipping" alignment="left" title="Display type:" id="lSJ-6w-KJ2">
|
||||
<font key="font" metaFont="system"/>
|
||||
|
|
@ -1474,7 +1503,7 @@
|
|||
</textFieldCell>
|
||||
</textField>
|
||||
<textField horizontalHuggingPriority="251" verticalHuggingPriority="750" id="DmC-gj-anZ">
|
||||
<rect key="frame" x="210" y="386" width="166" height="16"/>
|
||||
<rect key="frame" x="210" y="416" width="166" height="16"/>
|
||||
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
|
||||
<textFieldCell key="cell" lineBreakMode="clipping" title="#bc-ignore!" id="Pqk-VW-JGY">
|
||||
<font key="font" metaFont="system"/>
|
||||
|
|
@ -1483,7 +1512,7 @@
|
|||
</textFieldCell>
|
||||
</textField>
|
||||
<textField verticalHuggingPriority="750" id="mIA-Wh-7aB">
|
||||
<rect key="frame" x="78" y="462" width="285" height="21"/>
|
||||
<rect key="frame" x="78" y="492" width="285" height="21"/>
|
||||
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
|
||||
<textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" title="#bc-ignore!" id="ibQ-4u-ClE">
|
||||
<font key="font" textStyle="title2" name=".SFNS-Regular"/>
|
||||
|
|
@ -1495,7 +1524,7 @@
|
|||
</textFieldCell>
|
||||
</textField>
|
||||
<textField horizontalHuggingPriority="251" verticalHuggingPriority="750" allowsExpansionToolTips="YES" id="2Yf-2b-6A8">
|
||||
<rect key="frame" x="210" y="355" width="166" height="16"/>
|
||||
<rect key="frame" x="210" y="385" width="166" height="16"/>
|
||||
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
|
||||
<textFieldCell key="cell" lineBreakMode="clipping" title="#bc-ignore!" id="pIy-Lk-kkm">
|
||||
<font key="font" metaFont="system"/>
|
||||
|
|
@ -1504,7 +1533,7 @@
|
|||
</textFieldCell>
|
||||
</textField>
|
||||
<button verticalHuggingPriority="750" id="dw1-C8-5US">
|
||||
<rect key="frame" x="10" y="490" width="640" height="32"/>
|
||||
<rect key="frame" x="10" y="520" width="640" height="32"/>
|
||||
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
|
||||
<buttonCell key="cell" type="push" title="Reset Name" bezelStyle="rounded" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="f9g-8s-gdd">
|
||||
<behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
|
||||
|
|
@ -1512,7 +1541,7 @@
|
|||
</buttonCell>
|
||||
</button>
|
||||
<button verticalHuggingPriority="750" id="ARW-va-sn0">
|
||||
<rect key="frame" x="385" y="354" width="302" height="18"/>
|
||||
<rect key="frame" x="385" y="352" width="302" height="18"/>
|
||||
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
|
||||
<buttonCell key="cell" type="check" title="Disable macOS volume OSD" bezelStyle="regularSquare" imagePosition="left" inset="2" id="bkM-Px-U3b">
|
||||
<behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
|
||||
|
|
@ -1523,7 +1552,7 @@
|
|||
</connections>
|
||||
</button>
|
||||
<textField horizontalHuggingPriority="251" verticalHuggingPriority="750" id="1PG-t6-jkR">
|
||||
<rect key="frame" x="78" y="355" width="128" height="16"/>
|
||||
<rect key="frame" x="78" y="385" width="128" height="16"/>
|
||||
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
|
||||
<textFieldCell key="cell" lineBreakMode="clipping" alignment="left" title="Control method:" id="PaK-1f-DsW">
|
||||
<font key="font" metaFont="system"/>
|
||||
|
|
@ -2002,7 +2031,7 @@
|
|||
<color key="fillColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
|
||||
</box>
|
||||
<button verticalHuggingPriority="750" id="uug-2q-b5U">
|
||||
<rect key="frame" x="541" y="455" width="152" height="31"/>
|
||||
<rect key="frame" x="541" y="485" width="152" height="31"/>
|
||||
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
|
||||
<buttonCell key="cell" type="push" title="Reset settings" bezelStyle="rounded" alignment="center" controlSize="small" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="BYS-7Y-bRz">
|
||||
<behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
|
||||
|
|
@ -2012,14 +2041,26 @@
|
|||
<action selector="resetSettings:" target="hCY-wr-B84" id="aV0-s1-EYI"/>
|
||||
</connections>
|
||||
</button>
|
||||
<button verticalHuggingPriority="750" id="Ehb-Kc-XcH">
|
||||
<rect key="frame" x="385" y="384" width="302" height="18"/>
|
||||
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
|
||||
<buttonCell key="cell" type="check" title="Avoid gamma table manipulation" bezelStyle="regularSquare" imagePosition="left" inset="2" id="na6-mS-MPi">
|
||||
<behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
|
||||
<font key="font" metaFont="system"/>
|
||||
</buttonCell>
|
||||
<connections>
|
||||
<action selector="avoidGamma:" target="hCY-wr-B84" id="MqP-tc-fMR"/>
|
||||
</connections>
|
||||
</button>
|
||||
</subviews>
|
||||
<constraints>
|
||||
<constraint firstItem="ihQ-SK-x7Y" firstAttribute="top" secondItem="ARW-va-sn0" secondAttribute="bottom" constant="20" id="lYu-y9-iVv"/>
|
||||
<constraint firstItem="ihQ-SK-x7Y" firstAttribute="top" secondItem="1PG-t6-jkR" secondAttribute="bottom" constant="50" id="lYu-y9-iVv"/>
|
||||
<constraint firstItem="ihQ-SK-x7Y" firstAttribute="leading" secondItem="1PG-t6-jkR" secondAttribute="leading" id="mQA-eq-xde"/>
|
||||
</constraints>
|
||||
<connections>
|
||||
<outlet property="advancedSettings" destination="ihQ-SK-x7Y" id="V9e-z0-aUT"/>
|
||||
<outlet property="audioDeviceNameOverride" destination="zz1-Dn-410" id="rgI-FN-xsG"/>
|
||||
<outlet property="avoidGamma" destination="Ehb-Kc-XcH" id="qVY-VK-fV9"/>
|
||||
<outlet property="combinedBrightnessSwitchingPoint" destination="OG9-iA-jK1" id="kYg-7C-wBO"/>
|
||||
<outlet property="controlMethod" destination="pIy-Lk-kkm" id="Wwe-kC-Ryu"/>
|
||||
<outlet property="curveDDCBrightness" destination="9H1-0z-xsx" id="Oy3-vB-qfQ"/>
|
||||
|
|
@ -2078,7 +2119,7 @@
|
|||
<constraints>
|
||||
<constraint firstAttribute="bottom" secondItem="O0W-8R-9c8" secondAttribute="bottom" id="5tj-nE-mrI"/>
|
||||
<constraint firstItem="O0W-8R-9c8" firstAttribute="leading" secondItem="aj0-6l-QE2" secondAttribute="leading" id="MNc-WK-uDZ"/>
|
||||
<constraint firstAttribute="height" constant="489" id="O7b-uo-bc2"/>
|
||||
<constraint firstAttribute="height" constant="533" id="O7b-uo-bc2"/>
|
||||
<constraint firstItem="O0W-8R-9c8" firstAttribute="top" secondItem="aj0-6l-QE2" secondAttribute="top" constant="1" id="Rg2-d3-Mrg"/>
|
||||
<constraint firstAttribute="width" constant="730" id="sZT-qe-hQV"/>
|
||||
<constraint firstAttribute="trailing" secondItem="O0W-8R-9c8" secondAttribute="trailing" id="xUm-oc-lj8"/>
|
||||
|
|
@ -2091,7 +2132,7 @@
|
|||
</connections>
|
||||
</viewController>
|
||||
</objects>
|
||||
<point key="canvasLocation" x="298" y="1743.5"/>
|
||||
<point key="canvasLocation" x="298" y="1755.5"/>
|
||||
</scene>
|
||||
<!--About Prefs View Controller-->
|
||||
<scene sceneID="Ot2-lL-eIg">
|
||||
|
|
@ -2200,7 +2241,7 @@
|
|||
</viewController>
|
||||
<customObject id="5Vf-Rd-nyE" userLabel="First Responder" customClass="NSResponder" sceneMemberID="firstResponder"/>
|
||||
</objects>
|
||||
<point key="canvasLocation" x="298" y="2228"/>
|
||||
<point key="canvasLocation" x="298" y="2293"/>
|
||||
</scene>
|
||||
</scenes>
|
||||
<resources>
|
||||
|
|
|
|||
|
|
@ -98,7 +98,10 @@
|
|||
"Software (shade)" = "Software (Schattierung)";
|
||||
|
||||
/* Shown in the Display Preferences */
|
||||
"This display allows for software brightness control via gammatable manipulation as it does not support hardware control. Reasons for this might be using the HDMI port of a Mac mini (which blocks hardware DDC control) or having a blacklisted display." = "Dieser Bildschirm ermöglicht eine Software-Helligkeitssteuerung über gammable Manipulation, da er keine Hardware-Steuerung unterstützt. Gründe dafür können die Verwendung des HDMI-Anschlusses eines Mac mini (der die Hardware-DDC-Steuerung blockiert) oder ein Bildschirm auf der Sperrliste sein.";
|
||||
"Software (shade, forced)" = "Software (shade, forced)";
|
||||
|
||||
/* Shown in the Display Preferences */
|
||||
"This display allows for software brightness control via gamma table manipulation or shade as it does not support hardware control. Reasons for this might be using the HDMI port of a Mac mini (which blocks hardware DDC control) or having a blacklisted display." = "Dieser Bildschirm ermöglicht eine Software-Helligkeitssteuerung über gammable Manipulation, da er keine Hardware-Steuerung unterstützt. Gründe dafür können die Verwendung des HDMI-Anschlusses eines Mac mini (der die Hardware-DDC-Steuerung blockiert) oder ein Bildschirm auf der Sperrliste sein.";
|
||||
|
||||
/* Shown in the Display Preferences */
|
||||
"This display has an unspecified control status." = "Dieser Bildschirm hat einen nicht definierten Kontrollzustand.";
|
||||
|
|
|
|||
|
|
@ -145,6 +145,9 @@
|
|||
/* Class = "NSTextFieldCell"; title = "Volume:"; ObjectID = "FER-Ri-4UO"; */
|
||||
"FER-Ri-4UO.title" = "Lautstärke:";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Allow zero brightness via software or combined dimming"; ObjectID = "FjB-XL-fG5"; */
|
||||
"FjB-XL-fG5.title" = "Allow zero brightness via software or combined dimming";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Apple and built-in displays already have a brightness slider in Control Center."; ObjectID = "fmZ-HI-Mdc"; */
|
||||
"fmZ-HI-Mdc.title" = "Apple und eingebaute Monitore verfügen bereits über einen Helligkeitsregler im Kontrollzentrum.";
|
||||
|
||||
|
|
@ -238,6 +241,9 @@
|
|||
/* Class = "NSButtonCell"; title = "Show brightness slider in menu"; ObjectID = "MWo-6I-s9L"; */
|
||||
"MWo-6I-s9L.title" = "Helligkeitsregler im Menü anzeigen";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Avoid gamma table manipulation"; ObjectID = "na6-mS-MPi"; */
|
||||
"na6-mS-MPi.title" = "Avoid gamma table manipulation";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Separate scales for combined hardware & software dimming"; ObjectID = "O8o-hI-8eR"; */
|
||||
"O8o-hI-8eR.title" = "Getrennte Skalen für kombiniertes Dimmen von Hardware und Software";
|
||||
|
||||
|
|
@ -259,8 +265,8 @@
|
|||
/* Class = "NSTextFieldCell"; title = "count:"; ObjectID = "Orv-yj-Nad"; */
|
||||
"Orv-yj-Nad.title" = "zählen:";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Use the brightness keys of your Apple keyboard to control brightness. You can hold Control to adjust the built-in display, Control+Option to adjust external displays. Hold Shift+Option for fine control. Control+Option+Command adjusts contrast on DDC compatible displays."; ObjectID = "pa0-Hz-ace"; */
|
||||
"pa0-Hz-ace.title" = "Verwenden Sie die Helligkeitstasten Ihrer Apple-Tastatur, um die Helligkeit zu steuern. Halten Sie die Steuerungstaste gedrückt, um den eingebauten Monitor zu steuern, und halten Sie die Tastenkombination Steuerung+Option gedrückt, um externe Monitore zu steuern. Halten Sie Shift+Option für die Feinsteuerung. Steuerung+Option+Befehl stellt den Kontrast auf DDC-kompatiblen Monitoren ein.";
|
||||
/* Class = "NSTextFieldCell"; title = "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."; ObjectID = "pa0-Hz-ace"; */
|
||||
"pa0-Hz-ace.title" = "Verwenden Sie die Helligkeitstasten Ihrer Apple-Tastatur, um die Helligkeit zu steuern. Halten Sie die Steuerungstaste gedrückt, um den eingebauten Monitor zu steuern, und halten Sie die Tastenkombination Steuerung+Befehl gedrückt, um externe Monitore zu steuern. Halten Sie Shift+Option für die Feinsteuerung. Steuerung+Option+Befehl stellt den Kontrast auf DDC-kompatiblen Monitoren ein.";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Control method:"; ObjectID = "PaK-1f-DsW"; */
|
||||
"PaK-1f-DsW.title" = "Steuerung:";
|
||||
|
|
@ -376,6 +382,9 @@
|
|||
/* Class = "NSTextFieldCell"; title = "Full OSD scale will be available for hardware brightness control and after reaching 0 brightness, further software dimming will be used."; ObjectID = "YHZ-VL-QJ3"; */
|
||||
"YHZ-VL-QJ3.title" = "Für die Steuerung der Hardware-Helligkeit steht die volle OSD-Skala zur Verfügung, und nach Erreichen der Helligkeit 0 erfolgt eine weitere Software-Dimmung.";
|
||||
|
||||
/* 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)";
|
||||
|
||||
|
|
|
|||
|
|
@ -98,7 +98,10 @@
|
|||
"Software (shade)" = "Software (shade)";
|
||||
|
||||
/* Shown in the Display Preferences */
|
||||
"This display allows for software brightness control via gammatable manipulation as it does not support hardware control. Reasons for this might be using the HDMI port of a Mac mini (which blocks hardware DDC control) or having a blacklisted display." = "This display allows for software brightness control via gammatable manipulation as it does not support hardware control. Reasons for this might be using the HDMI port of a Mac mini (which blocks hardware DDC control) or having a blacklisted display.";
|
||||
"Software (shade, forced)" = "Software (shade, forced)";
|
||||
|
||||
/* Shown in the Display Preferences */
|
||||
"This display allows for software brightness control via gamma table manipulation or shade as it does not support hardware control. Reasons for this might be using the HDMI port of a Mac mini (which blocks hardware DDC control) or having a blacklisted display." = "This display allows for software brightness control via gamma table manipulation or shade as it does not support hardware control. Reasons for this might be using the HDMI port of a Mac mini (which blocks hardware DDC control) or having a blacklisted display.";
|
||||
|
||||
/* Shown in the Display Preferences */
|
||||
"This display has an unspecified control status." = "This display has an unspecified control status.";
|
||||
|
|
|
|||
|
|
@ -145,6 +145,9 @@
|
|||
/* Class = "NSTextFieldCell"; title = "Volume:"; ObjectID = "FER-Ri-4UO"; */
|
||||
"FER-Ri-4UO.title" = "Volume:";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Allow zero brightness via software or combined dimming"; ObjectID = "FjB-XL-fG5"; */
|
||||
"FjB-XL-fG5.title" = "Allow zero brightness via software or combined dimming";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Apple and built-in displays already have a brightness slider in Control Center."; ObjectID = "fmZ-HI-Mdc"; */
|
||||
"fmZ-HI-Mdc.title" = "Apple and built-in displays already have a brightness slider in Control Center.";
|
||||
|
||||
|
|
@ -238,6 +241,9 @@
|
|||
/* Class = "NSButtonCell"; title = "Show brightness slider in menu"; ObjectID = "MWo-6I-s9L"; */
|
||||
"MWo-6I-s9L.title" = "Show brightness slider in menu";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Avoid gamma table manipulation"; ObjectID = "na6-mS-MPi"; */
|
||||
"na6-mS-MPi.title" = "Avoid gamma table manipulation";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Separate scales for combined hardware & software dimming"; ObjectID = "O8o-hI-8eR"; */
|
||||
"O8o-hI-8eR.title" = "Separate scales for combined hardware & software dimming";
|
||||
|
||||
|
|
@ -259,8 +265,8 @@
|
|||
/* Class = "NSTextFieldCell"; title = "count:"; ObjectID = "Orv-yj-Nad"; */
|
||||
"Orv-yj-Nad.title" = "count:";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Use the brightness keys of your Apple keyboard to control brightness. You can hold Control to adjust the built-in display, Control+Option to adjust external displays. Hold Shift+Option for fine control. Control+Option+Command adjusts contrast on DDC compatible displays."; ObjectID = "pa0-Hz-ace"; */
|
||||
"pa0-Hz-ace.title" = "Use the brightness keys of your Apple keyboard to control brightness. You can hold Control to adjust the built-in display, Control+Option to adjust external displays. Hold Shift+Option for fine control. Control+Option+Command adjusts contrast on DDC compatible displays.";
|
||||
/* Class = "NSTextFieldCell"; title = "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."; ObjectID = "pa0-Hz-ace"; */
|
||||
"pa0-Hz-ace.title" = "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.";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Control method:"; ObjectID = "PaK-1f-DsW"; */
|
||||
"PaK-1f-DsW.title" = "Control method:";
|
||||
|
|
@ -376,6 +382,9 @@
|
|||
/* Class = "NSTextFieldCell"; title = "Full OSD scale will be available for hardware brightness control and after reaching 0 brightness, further software dimming will be used."; ObjectID = "YHZ-VL-QJ3"; */
|
||||
"YHZ-VL-QJ3.title" = "Full OSD scale will be available for hardware brightness control and after reaching 0 brightness, further software dimming will be used.";
|
||||
|
||||
/* 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)";
|
||||
|
||||
|
|
|
|||
|
|
@ -98,7 +98,10 @@
|
|||
"Software (shade)" = "Software (shade)";
|
||||
|
||||
/* Shown in the Display Preferences */
|
||||
"This display allows for software brightness control via gammatable manipulation as it does not support hardware control. Reasons for this might be using the HDMI port of a Mac mini (which blocks hardware DDC control) or having a blacklisted display." = "This display allows for software brightness control via gammatable manipulation as it does not support hardware control. Reasons for this might be using the HDMI port of a Mac mini (which blocks hardware DDC control) or having a blacklisted display.";
|
||||
"Software (shade, forced)" = "Software (shade, forced)";
|
||||
|
||||
/* Shown in the Display Preferences */
|
||||
"This display allows for software brightness control via gamma table manipulation or shade as it does not support hardware control. Reasons for this might be using the HDMI port of a Mac mini (which blocks hardware DDC control) or having a blacklisted display." = "This display allows for software brightness control via gamma table manipulation or shade as it does not support hardware control. Reasons for this might be using the HDMI port of a Mac mini (which blocks hardware DDC control) or having a blacklisted display.";
|
||||
|
||||
/* Shown in the Display Preferences */
|
||||
"This display has an unspecified control status." = "This display has an unspecified control status.";
|
||||
|
|
|
|||
|
|
@ -145,6 +145,9 @@
|
|||
/* Class = "NSTextFieldCell"; title = "Volume:"; ObjectID = "FER-Ri-4UO"; */
|
||||
"FER-Ri-4UO.title" = "Volume:";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Allow zero brightness via software or combined dimming"; ObjectID = "FjB-XL-fG5"; */
|
||||
"FjB-XL-fG5.title" = "Allow zero brightness via software or combined dimming";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Apple and built-in displays already have a brightness slider in Control Center."; ObjectID = "fmZ-HI-Mdc"; */
|
||||
"fmZ-HI-Mdc.title" = "Apple and built-in displays already have a brightness slider in Control Center.";
|
||||
|
||||
|
|
@ -238,6 +241,9 @@
|
|||
/* Class = "NSButtonCell"; title = "Show brightness slider in menu"; ObjectID = "MWo-6I-s9L"; */
|
||||
"MWo-6I-s9L.title" = "Show brightness slider in menu";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Avoid gamma table manipulation"; ObjectID = "na6-mS-MPi"; */
|
||||
"na6-mS-MPi.title" = "Avoid gamma table manipulation";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Separate scales for combined hardware & software dimming"; ObjectID = "O8o-hI-8eR"; */
|
||||
"O8o-hI-8eR.title" = "Separate scales for combined hardware & software dimming";
|
||||
|
||||
|
|
@ -259,8 +265,8 @@
|
|||
/* Class = "NSTextFieldCell"; title = "count:"; ObjectID = "Orv-yj-Nad"; */
|
||||
"Orv-yj-Nad.title" = "count:";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Use the brightness keys of your Apple keyboard to control brightness. You can hold Control to adjust the built-in display, Control+Option to adjust external displays. Hold Shift+Option for fine control. Control+Option+Command adjusts contrast on DDC compatible displays."; ObjectID = "pa0-Hz-ace"; */
|
||||
"pa0-Hz-ace.title" = "Use the brightness keys of your Apple keyboard to control brightness. You can hold Control to adjust the built-in display, Control+Option to adjust external displays. Hold Shift+Option for fine control. Control+Option+Command adjusts contrast on DDC compatible displays.";
|
||||
/* Class = "NSTextFieldCell"; title = "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."; ObjectID = "pa0-Hz-ace"; */
|
||||
"pa0-Hz-ace.title" = "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.";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Control method:"; ObjectID = "PaK-1f-DsW"; */
|
||||
"PaK-1f-DsW.title" = "Método de control:";
|
||||
|
|
@ -376,6 +382,9 @@
|
|||
/* Class = "NSTextFieldCell"; title = "Full OSD scale will be available for hardware brightness control and after reaching 0 brightness, further software dimming will be used."; ObjectID = "YHZ-VL-QJ3"; */
|
||||
"YHZ-VL-QJ3.title" = "Full OSD scale will be available for hardware brightness control and after reaching 0 brightness, further software dimming will be used.";
|
||||
|
||||
/* 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)";
|
||||
|
||||
|
|
|
|||
|
|
@ -98,7 +98,10 @@
|
|||
"Software (shade)" = "Logiciel (Voile)";
|
||||
|
||||
/* Shown in the Display Preferences */
|
||||
"This display allows for software brightness control via gammatable manipulation as it does not support hardware control. Reasons for this might be using the HDMI port of a Mac mini (which blocks hardware DDC control) or having a blacklisted display." = "Cet écran permet un contrôle de la luminosité logiciel via une manipulation des tables gamma car il ne prend pas en charge le contrôle matériel. Cela peut être dû à l'utilisation du port HDMI d'un Mac mini (qui bloque le contrôle DDC matériel) ou à un écran sur liste noire.";
|
||||
"Software (shade, forced)" = "Software (shade, forced)";
|
||||
|
||||
/* Shown in the Display Preferences */
|
||||
"This display allows for software brightness control via gamma table manipulation or shade as it does not support hardware control. Reasons for this might be using the HDMI port of a Mac mini (which blocks hardware DDC control) or having a blacklisted display." = "Cet écran permet un contrôle de la luminosité logiciel via une manipulation des tables gamma car il ne prend pas en charge le contrôle matériel. Cela peut être dû à l'utilisation du port HDMI d'un Mac mini (qui bloque le contrôle DDC matériel) ou à un écran sur liste noire.";
|
||||
|
||||
/* Shown in the Display Preferences */
|
||||
"This display has an unspecified control status." = "Cet écran a un état de contrôle non spécifié.";
|
||||
|
|
|
|||
|
|
@ -145,6 +145,9 @@
|
|||
/* Class = "NSTextFieldCell"; title = "Volume:"; ObjectID = "FER-Ri-4UO"; */
|
||||
"FER-Ri-4UO.title" = "Volume :";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Allow zero brightness via software or combined dimming"; ObjectID = "FjB-XL-fG5"; */
|
||||
"FjB-XL-fG5.title" = "Allow zero brightness via software or combined dimming";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Apple and built-in displays already have a brightness slider in Control Center."; ObjectID = "fmZ-HI-Mdc"; */
|
||||
"fmZ-HI-Mdc.title" = "Les écrans Apple et intégrés ont déjà un curseur de luminosité dans le Centre de Contrôle.";
|
||||
|
||||
|
|
@ -238,6 +241,9 @@
|
|||
/* Class = "NSButtonCell"; title = "Show brightness slider in menu"; ObjectID = "MWo-6I-s9L"; */
|
||||
"MWo-6I-s9L.title" = "Afficher le curseur de luminosité dans le menu";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Avoid gamma table manipulation"; ObjectID = "na6-mS-MPi"; */
|
||||
"na6-mS-MPi.title" = "Avoid gamma table manipulation";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Separate scales for combined hardware & software dimming"; ObjectID = "O8o-hI-8eR"; */
|
||||
"O8o-hI-8eR.title" = "Séparer les échelles pour le contrôle matériel et logiciel combiné";
|
||||
|
||||
|
|
@ -259,8 +265,8 @@
|
|||
/* Class = "NSTextFieldCell"; title = "count:"; ObjectID = "Orv-yj-Nad"; */
|
||||
"Orv-yj-Nad.title" = "nb. de tentative :";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Use the brightness keys of your Apple keyboard to control brightness. You can hold Control to adjust the built-in display, Control+Option to adjust external displays. Hold Shift+Option for fine control. Control+Option+Command adjusts contrast on DDC compatible displays."; ObjectID = "pa0-Hz-ace"; */
|
||||
"pa0-Hz-ace.title" = "Utilisez les touches de luminosité de votre clavier Apple pour contrôler la luminosité. Vous pouvez maintenir Control pour ajuster l'affichage intégré, Control+Option pour ajuster les affichages externes. Maintenez Maj+Option pour un contrôle précis. Contrôle+Option+Command ajuste le contraste sur les écrans compatibles DDC.";
|
||||
/* Class = "NSTextFieldCell"; title = "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."; ObjectID = "pa0-Hz-ace"; */
|
||||
"pa0-Hz-ace.title" = "Utilisez les touches de luminosité de votre clavier Apple pour contrôler la luminosité. Vous pouvez maintenir Control pour ajuster l'affichage intégré, Control+Command pour ajuster les affichages externes. Maintenez Maj+Option pour un contrôle précis. Contrôle+Option+Command ajuste le contraste sur les écrans compatibles DDC.";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Control method:"; ObjectID = "PaK-1f-DsW"; */
|
||||
"PaK-1f-DsW.title" = "Méthode de contrôle :";
|
||||
|
|
@ -376,6 +382,9 @@
|
|||
/* Class = "NSTextFieldCell"; title = "Full OSD scale will be available for hardware brightness control and after reaching 0 brightness, further software dimming will be used."; ObjectID = "YHZ-VL-QJ3"; */
|
||||
"YHZ-VL-QJ3.title" = "L'échelle de l'OSD complète sera disponible pour le contrôle de la luminosité matériel et après avoir atteint une luminosité de 0, un contrôle logiciel supplémentaire sera utilisée.";
|
||||
|
||||
/* 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é)";
|
||||
|
||||
|
|
|
|||
|
|
@ -98,7 +98,10 @@
|
|||
"Software (shade)" = "Szoftver (árnyékolás)";
|
||||
|
||||
/* Shown in the Display Preferences */
|
||||
"This display allows for software brightness control via gammatable manipulation as it does not support hardware control. Reasons for this might be using the HDMI port of a Mac mini (which blocks hardware DDC control) or having a blacklisted display." = "Ez a kijelző nem támogatja a hardveres vezérlést, hanem szoftveres fényerővezérlést tesz lehetővé gamma táblázat manipulálás segítségével. Ennek okai lehetnek a nem támogatott kimenet (pl. Mac mini HDMI kimenet) vagy feketelistára helyezett kijelző használata.";
|
||||
"Software (shade, forced)" = "Szoftver (erőltetett)";
|
||||
|
||||
/* Shown in the Display Preferences */
|
||||
"This display allows for software brightness control via gamma table manipulation or shade as it does not support hardware control. Reasons for this might be using the HDMI port of a Mac mini (which blocks hardware DDC control) or having a blacklisted display." = "Ez a kijelző nem támogatja a hardveres vezérlést, hanem szoftveres fényerővezérlést tesz lehetővé gamma táblázat módosítás vagy árnyékolás segítségével. Ennek okai lehetnek a nem támogatott kimenet (pl. Mac mini HDMI kimenet) vagy feketelistára helyezett kijelző használata.";
|
||||
|
||||
/* Shown in the Display Preferences */
|
||||
"This display has an unspecified control status." = "A kijelzőnek nem meghatározott a vezérlési státusza.";
|
||||
|
|
|
|||
|
|
@ -145,6 +145,9 @@
|
|||
/* Class = "NSTextFieldCell"; title = "Volume:"; ObjectID = "FER-Ri-4UO"; */
|
||||
"FER-Ri-4UO.title" = "Hangerő:";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Allow zero brightness via software or combined dimming"; ObjectID = "FjB-XL-fG5"; */
|
||||
"FjB-XL-fG5.title" = "Teljes fekete engedélyezése szoftveres vagy kombinált sötétítéskor";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Apple and built-in displays already have a brightness slider in Control Center."; ObjectID = "fmZ-HI-Mdc"; */
|
||||
"fmZ-HI-Mdc.title" = "Az Apple és beépített kijelzők már rendelkeznek csúszkával a Vezérlőközpontban";
|
||||
|
||||
|
|
@ -238,6 +241,9 @@
|
|||
/* 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";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Avoid gamma table manipulation"; ObjectID = "na6-mS-MPi"; */
|
||||
"na6-mS-MPi.title" = "Gamma tábla módosítás kerülése";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Separate scales for combined hardware & software dimming"; ObjectID = "O8o-hI-8eR"; */
|
||||
"O8o-hI-8eR.title" = "Külön skála kombinált hardver/szoftver sötétítésnál";
|
||||
|
||||
|
|
@ -259,8 +265,8 @@
|
|||
/* Class = "NSTextFieldCell"; title = "count:"; ObjectID = "Orv-yj-Nad"; */
|
||||
"Orv-yj-Nad.title" = "számosság:";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Use the brightness keys of your Apple keyboard to control brightness. You can hold Control to adjust the built-in display, Control+Option to adjust external displays. Hold Shift+Option for fine control. Control+Option+Command adjusts contrast on DDC compatible displays."; ObjectID = "pa0-Hz-ace"; */
|
||||
"pa0-Hz-ace.title" = "Az Apple billentyűzet fényerőgombjainak használata. A Control lenyomásával a beépített kijelzőt, a Control+Option segítségével a külső kijelzőt vezérelheti. Shift+Option finom vezérlést tesz lehetővé. Control+Option+Command nyomvatartása a kontrasztot szabályozza. ";
|
||||
/* Class = "NSTextFieldCell"; title = "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."; ObjectID = "pa0-Hz-ace"; */
|
||||
"pa0-Hz-ace.title" = "Az Apple billentyűzet fényerőgombjainak használata. A Control lenyomásával a beépített kijelzőt, a Control+Command segítségével a külső kijelzőt vezérelheti. Shift+Option finom vezérlést tesz lehetővé. Control+Option+Command nyomvatartása a kontrasztot szabályozza. ";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Control method:"; ObjectID = "PaK-1f-DsW"; */
|
||||
"PaK-1f-DsW.title" = "Vezérlés:";
|
||||
|
|
@ -376,6 +382,9 @@
|
|||
/* Class = "NSTextFieldCell"; title = "Full OSD scale will be available for hardware brightness control and after reaching 0 brightness, further software dimming will be used."; ObjectID = "YHZ-VL-QJ3"; */
|
||||
"YHZ-VL-QJ3.title" = "A teljes OSD skála elérhető a hardveres fényerővezérlés számára, majd a minimum elérése után további szoftveres csökkentés történik.";
|
||||
|
||||
/* 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)";
|
||||
|
||||
|
|
|
|||
|
|
@ -98,7 +98,10 @@
|
|||
"Software (shade)" = "Software (Sfumatura)";
|
||||
|
||||
/* Shown in the Display Preferences */
|
||||
"This display allows for software brightness control via gammatable manipulation as it does not support hardware control. Reasons for this might be using the HDMI port of a Mac mini (which blocks hardware DDC control) or having a blacklisted display." = "Questo monitor permette il controllo software della luminositò attraverso la manipolazione della gammatable e non supporta un controllo hardware. Un motivo potrebbe essere Reasons l'utilizzo della porta HDMI su un Mac Mini (che blocca il controllo hardware DCC) oppure avere un monitor non supportato.";
|
||||
"Software (shade, forced)" = "Software (shade, forced)";
|
||||
|
||||
/* Shown in the Display Preferences */
|
||||
"This display allows for software brightness control via gamma table manipulation or shade as it does not support hardware control. Reasons for this might be using the HDMI port of a Mac mini (which blocks hardware DDC control) or having a blacklisted display." = "Questo monitor permette il controllo software della luminositò attraverso la manipolazione della gammatable e non supporta un controllo hardware. Un motivo potrebbe essere Reasons l'utilizzo della porta HDMI su un Mac Mini (che blocca il controllo hardware DCC) oppure avere un monitor non supportato.";
|
||||
|
||||
/* Shown in the Display Preferences */
|
||||
"This display has an unspecified control status." = "Questo monitor ha uno stato di controllo non specificato.";
|
||||
|
|
|
|||
|
|
@ -145,6 +145,9 @@
|
|||
/* Class = "NSTextFieldCell"; title = "Volume:"; ObjectID = "FER-Ri-4UO"; */
|
||||
"FER-Ri-4UO.title" = "Volume:";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Allow zero brightness via software or combined dimming"; ObjectID = "FjB-XL-fG5"; */
|
||||
"FjB-XL-fG5.title" = "Allow zero brightness via software or combined dimming";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Apple and built-in displays already have a brightness slider in Control Center."; ObjectID = "fmZ-HI-Mdc"; */
|
||||
"fmZ-HI-Mdc.title" = "I Monitor Apple ed incorporati hanno già lo slider della luminosità nel Centro di Controllo.";
|
||||
|
||||
|
|
@ -238,6 +241,9 @@
|
|||
/* Class = "NSButtonCell"; title = "Show brightness slider in menu"; ObjectID = "MWo-6I-s9L"; */
|
||||
"MWo-6I-s9L.title" = "Mostra lo slider della luminositò nel menu";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Avoid gamma table manipulation"; ObjectID = "na6-mS-MPi"; */
|
||||
"na6-mS-MPi.title" = "Avoid gamma table manipulation";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Separate scales for combined hardware & software dimming"; ObjectID = "O8o-hI-8eR"; */
|
||||
"O8o-hI-8eR.title" = "Scale separate per controllo combinato della attenuazione hw/sw";
|
||||
|
||||
|
|
@ -259,8 +265,8 @@
|
|||
/* Class = "NSTextFieldCell"; title = "count:"; ObjectID = "Orv-yj-Nad"; */
|
||||
"Orv-yj-Nad.title" = "conteggio:";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Use the brightness keys of your Apple keyboard to control brightness. You can hold Control to adjust the built-in display, Control+Option to adjust external displays. Hold Shift+Option for fine control. Control+Option+Command adjusts contrast on DDC compatible displays."; ObjectID = "pa0-Hz-ace"; */
|
||||
"pa0-Hz-ace.title" = "Utilizza il tasto luminosità della tua tastiera Apple per controllare la luminosità. Puoi premere Control per il monitor incorporato, Control-Alt per i monitor esterni. Premi Maiusc+Alt per un controlllo fine. Control+Alt+Command modifica il contrasto sui monitor compatibili DDC.";
|
||||
/* Class = "NSTextFieldCell"; title = "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."; ObjectID = "pa0-Hz-ace"; */
|
||||
"pa0-Hz-ace.title" = "Utilizza il tasto luminosità della tua tastiera Apple per controllare la luminosità. Puoi premere Control per il monitor incorporato, Control-Command per i monitor esterni. Premi Maiusc+Alt per un controlllo fine. Control+Alt+Command modifica il contrasto sui monitor compatibili DDC.";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Control method:"; ObjectID = "PaK-1f-DsW"; */
|
||||
"PaK-1f-DsW.title" = "Metodo di controllo:";
|
||||
|
|
@ -376,6 +382,9 @@
|
|||
/* Class = "NSTextFieldCell"; title = "Full OSD scale will be available for hardware brightness control and after reaching 0 brightness, further software dimming will be used."; ObjectID = "YHZ-VL-QJ3"; */
|
||||
"YHZ-VL-QJ3.title" = "L'intera scala OSD sarà disponibile per il controllo hardware della luminosità e una volta raggiunto lo 0, l'attenuazione software verrà utilizata.";
|
||||
|
||||
/* 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)";
|
||||
|
||||
|
|
|
|||
|
|
@ -98,7 +98,10 @@
|
|||
"Software (shade)" = "Software (shade)";
|
||||
|
||||
/* Shown in the Display Preferences */
|
||||
"This display allows for software brightness control via gammatable manipulation as it does not support hardware control. Reasons for this might be using the HDMI port of a Mac mini (which blocks hardware DDC control) or having a blacklisted display." = "This display allows for software brightness control via gammatable manipulation as it does not support hardware control. Reasons for this might be using the HDMI port of a Mac mini (which blocks hardware DDC control) or having a blacklisted display.";
|
||||
"Software (shade, forced)" = "Software (shade, forced)";
|
||||
|
||||
/* Shown in the Display Preferences */
|
||||
"This display allows for software brightness control via gamma table manipulation or shade as it does not support hardware control. Reasons for this might be using the HDMI port of a Mac mini (which blocks hardware DDC control) or having a blacklisted display." = "This display allows for software brightness control via gamma table manipulation or shade as it does not support hardware control. Reasons for this might be using the HDMI port of a Mac mini (which blocks hardware DDC control) or having a blacklisted display.";
|
||||
|
||||
/* Shown in the Display Preferences */
|
||||
"This display has an unspecified control status." = "This display has an unspecified control status.";
|
||||
|
|
|
|||
|
|
@ -145,6 +145,9 @@
|
|||
/* Class = "NSTextFieldCell"; title = "Volume:"; ObjectID = "FER-Ri-4UO"; */
|
||||
"FER-Ri-4UO.title" = "Volume:";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Allow zero brightness via software or combined dimming"; ObjectID = "FjB-XL-fG5"; */
|
||||
"FjB-XL-fG5.title" = "Allow zero brightness via software or combined dimming";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Apple and built-in displays already have a brightness slider in Control Center."; ObjectID = "fmZ-HI-Mdc"; */
|
||||
"fmZ-HI-Mdc.title" = "Apple and built-in displays already have a brightness slider in Control Center.";
|
||||
|
||||
|
|
@ -238,6 +241,9 @@
|
|||
/* Class = "NSButtonCell"; title = "Show brightness slider in menu"; ObjectID = "MWo-6I-s9L"; */
|
||||
"MWo-6I-s9L.title" = "Show brightness slider in menu";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Avoid gamma table manipulation"; ObjectID = "na6-mS-MPi"; */
|
||||
"na6-mS-MPi.title" = "Avoid gamma table manipulation";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Separate scales for combined hardware & software dimming"; ObjectID = "O8o-hI-8eR"; */
|
||||
"O8o-hI-8eR.title" = "Separate scales for combined hardware & software dimming";
|
||||
|
||||
|
|
@ -259,8 +265,8 @@
|
|||
/* Class = "NSTextFieldCell"; title = "count:"; ObjectID = "Orv-yj-Nad"; */
|
||||
"Orv-yj-Nad.title" = "count:";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Use the brightness keys of your Apple keyboard to control brightness. You can hold Control to adjust the built-in display, Control+Option to adjust external displays. Hold Shift+Option for fine control. Control+Option+Command adjusts contrast on DDC compatible displays."; ObjectID = "pa0-Hz-ace"; */
|
||||
"pa0-Hz-ace.title" = "Use the brightness keys of your Apple keyboard to control brightness. You can hold Control to adjust the built-in display, Control+Option to adjust external displays. Hold Shift+Option for fine control. Control+Option+Command adjusts contrast on DDC compatible displays.";
|
||||
/* Class = "NSTextFieldCell"; title = "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."; ObjectID = "pa0-Hz-ace"; */
|
||||
"pa0-Hz-ace.title" = "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.";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Control method:"; ObjectID = "PaK-1f-DsW"; */
|
||||
"PaK-1f-DsW.title" = "Control method:";
|
||||
|
|
@ -376,6 +382,9 @@
|
|||
/* Class = "NSTextFieldCell"; title = "Full OSD scale will be available for hardware brightness control and after reaching 0 brightness, further software dimming will be used."; ObjectID = "YHZ-VL-QJ3"; */
|
||||
"YHZ-VL-QJ3.title" = "Full OSD scale will be available for hardware brightness control and after reaching 0 brightness, further software dimming will be used.";
|
||||
|
||||
/* 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)";
|
||||
|
||||
|
|
|
|||
|
|
@ -98,7 +98,10 @@
|
|||
"Software (shade)" = "소프트웨어 (명암)";
|
||||
|
||||
/* Shown in the Display Preferences */
|
||||
"This display allows for software brightness control via gammatable manipulation as it does not support hardware control. Reasons for this might be using the HDMI port of a Mac mini (which blocks hardware DDC control) or having a blacklisted display." = "이 디스플레이는 하드웨어 제어를 지원하지 않기 때문에 감마 설정을 통해 소프트웨어로 밝기를 제어합니다. 그 이유는 하드웨어 DDC 제어가 차단된 Mac mini의 HDMI 포트를 사용하였거나 블랙리스트에 포함된 디스플레이를 사용하고 있기 때문일 수 있습니다.";
|
||||
"Software (shade, forced)" = "Software (shade, forced)";
|
||||
|
||||
/* Shown in the Display Preferences */
|
||||
"This display allows for software brightness control via gamma table manipulation or shade as it does not support hardware control. Reasons for this might be using the HDMI port of a Mac mini (which blocks hardware DDC control) or having a blacklisted display." = "이 디스플레이는 하드웨어 제어를 지원하지 않기 때문에 감마 설정을 통해 소프트웨어로 밝기를 제어합니다. 그 이유는 하드웨어 DDC 제어가 차단된 Mac mini의 HDMI 포트를 사용하였거나 블랙리스트에 포함된 디스플레이를 사용하고 있기 때문일 수 있습니다.";
|
||||
|
||||
/* Shown in the Display Preferences */
|
||||
"This display has an unspecified control status." = "이 디스플레이에는 지정되지 않은 제어 상태가 있습니다.";
|
||||
|
|
|
|||
|
|
@ -145,6 +145,9 @@
|
|||
/* Class = "NSTextFieldCell"; title = "Volume:"; ObjectID = "FER-Ri-4UO"; */
|
||||
"FER-Ri-4UO.title" = "볼륨:";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Allow zero brightness via software or combined dimming"; ObjectID = "FjB-XL-fG5"; */
|
||||
"FjB-XL-fG5.title" = "Allow zero brightness via software or combined dimming";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Apple and built-in displays already have a brightness slider in Control Center."; ObjectID = "fmZ-HI-Mdc"; */
|
||||
"fmZ-HI-Mdc.title" = "Apple 및 내장 디스플레이에는 이미 제어 센터에 밝기 슬라이더가 있습니다.";
|
||||
|
||||
|
|
@ -238,6 +241,9 @@
|
|||
/* Class = "NSButtonCell"; title = "Show brightness slider in menu"; ObjectID = "MWo-6I-s9L"; */
|
||||
"MWo-6I-s9L.title" = "메뉴에 밝기 슬라이더 표시";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Avoid gamma table manipulation"; ObjectID = "na6-mS-MPi"; */
|
||||
"na6-mS-MPi.title" = "Avoid gamma table manipulation";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Separate scales for combined hardware & software dimming"; ObjectID = "O8o-hI-8eR"; */
|
||||
"O8o-hI-8eR.title" = "통합된 하드웨어 및 소프트웨어 밝기 조절을 위한 별도의 스케일";
|
||||
|
||||
|
|
@ -259,8 +265,8 @@
|
|||
/* Class = "NSTextFieldCell"; title = "count:"; ObjectID = "Orv-yj-Nad"; */
|
||||
"Orv-yj-Nad.title" = "횟수:";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Use the brightness keys of your Apple keyboard to control brightness. You can hold Control to adjust the built-in display, Control+Option to adjust external displays. Hold Shift+Option for fine control. Control+Option+Command adjusts contrast on DDC compatible displays."; ObjectID = "pa0-Hz-ace"; */
|
||||
"pa0-Hz-ace.title" = "Use the brightness keys of your Apple keyboard to control brightness. You can hold Control to adjust the built-in display, Control+Option to adjust external displays. Hold Shift+Option for fine control. Control+Option+Command adjusts contrast on DDC compatible displays.";
|
||||
/* Class = "NSTextFieldCell"; title = "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."; ObjectID = "pa0-Hz-ace"; */
|
||||
"pa0-Hz-ace.title" = "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.";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Control method:"; ObjectID = "PaK-1f-DsW"; */
|
||||
"PaK-1f-DsW.title" = "제어 방식:";
|
||||
|
|
@ -376,6 +382,9 @@
|
|||
/* Class = "NSTextFieldCell"; title = "Full OSD scale will be available for hardware brightness control and after reaching 0 brightness, further software dimming will be used."; ObjectID = "YHZ-VL-QJ3"; */
|
||||
"YHZ-VL-QJ3.title" = "하드웨어 밝기 제어를 위해 전체 OSD 스케일을 사용할 수 있으며, 밝기가 0에 도달하면 추가적으로 소프트웨어 밝기 조절을 사용합니다.";
|
||||
|
||||
/* 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" = "마지막으로 저장한 설정이 유효하다고 가정 (권장)";
|
||||
|
||||
|
|
|
|||
|
|
@ -98,7 +98,10 @@
|
|||
"Software (shade)" = "Software (shade)";
|
||||
|
||||
/* Shown in the Display Preferences */
|
||||
"This display allows for software brightness control via gammatable manipulation as it does not support hardware control. Reasons for this might be using the HDMI port of a Mac mini (which blocks hardware DDC control) or having a blacklisted display." = "Dit scherm maakt softwarematige helderheidsregeling via gammatable-manipulatie mogelijk, aangezien het geen hardwarecontrole ondersteunt. Redenen hiervoor kunnen het gebruik van de HDMI-poort van een Mac mini zijn (die hardwarematige DDC-besturing blokkeert) of een niet-ondersteund scherm.";
|
||||
"Software (shade, forced)" = "Software (shade, forced)";
|
||||
|
||||
/* Shown in the Display Preferences */
|
||||
"This display allows for software brightness control via gamma table manipulation or shade as it does not support hardware control. Reasons for this might be using the HDMI port of a Mac mini (which blocks hardware DDC control) or having a blacklisted display." = "Dit scherm maakt softwarematige helderheidsregeling via gammatable-manipulatie mogelijk, aangezien het geen hardwarecontrole ondersteunt. Redenen hiervoor kunnen het gebruik van de HDMI-poort van een Mac mini zijn (die hardwarematige DDC-besturing blokkeert) of een niet-ondersteund scherm.";
|
||||
|
||||
/* Shown in the Display Preferences */
|
||||
"This display has an unspecified control status." = "Dit scherm heeft een niet-gespecificeerde controlestatus.";
|
||||
|
|
|
|||
|
|
@ -145,6 +145,9 @@
|
|||
/* Class = "NSTextFieldCell"; title = "Volume:"; ObjectID = "FER-Ri-4UO"; */
|
||||
"FER-Ri-4UO.title" = "Volume:";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Allow zero brightness via software or combined dimming"; ObjectID = "FjB-XL-fG5"; */
|
||||
"FjB-XL-fG5.title" = "Allow zero brightness via software or combined dimming";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Apple and built-in displays already have a brightness slider in Control Center."; ObjectID = "fmZ-HI-Mdc"; */
|
||||
"fmZ-HI-Mdc.title" = "Apple en ingebouwde schermen hebben reeds een schuifregelaar voor helderheid in het Control Center.";
|
||||
|
||||
|
|
@ -238,6 +241,9 @@
|
|||
/* Class = "NSButtonCell"; title = "Show brightness slider in menu"; ObjectID = "MWo-6I-s9L"; */
|
||||
"MWo-6I-s9L.title" = "Helderheidsregelaar in menu weergeven";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Avoid gamma table manipulation"; ObjectID = "na6-mS-MPi"; */
|
||||
"na6-mS-MPi.title" = "Avoid gamma table manipulation";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Separate scales for combined hardware & software dimming"; ObjectID = "O8o-hI-8eR"; */
|
||||
"O8o-hI-8eR.title" = "Aparte schaal voor gecombineerd hardware & software dimmen";
|
||||
|
||||
|
|
@ -259,8 +265,8 @@
|
|||
/* Class = "NSTextFieldCell"; title = "count:"; ObjectID = "Orv-yj-Nad"; */
|
||||
"Orv-yj-Nad.title" = "aantal:";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Use the brightness keys of your Apple keyboard to control brightness. You can hold Control to adjust the built-in display, Control+Option to adjust external displays. Hold Shift+Option for fine control. Control+Option+Command adjusts contrast on DDC compatible displays."; ObjectID = "pa0-Hz-ace"; */
|
||||
"pa0-Hz-ace.title" = "Gebruik de helderheidstoetsen van uw Apple toetsenbord om de helderheid te regelen. U kunt Control ingedrukt houden om het ingebouwde scherm aan te passen, Control+Option om externe schermen aan te passen. Gebruik Shift+Option voor fijne controle. Control+Option+Command past het contrast aan op DDC-compatibele schermen.";
|
||||
/* Class = "NSTextFieldCell"; title = "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."; ObjectID = "pa0-Hz-ace"; */
|
||||
"pa0-Hz-ace.title" = "Gebruik de helderheidstoetsen van uw Apple toetsenbord om de helderheid te regelen. U kunt Control ingedrukt houden om het ingebouwde scherm aan te passen, Control+Command om externe schermen aan te passen. Gebruik Shift+Option voor fijne controle. Control+Option+Command past het contrast aan op DDC-compatibele schermen.";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Control method:"; ObjectID = "PaK-1f-DsW"; */
|
||||
"PaK-1f-DsW.title" = "Besturingsmethode:";
|
||||
|
|
@ -376,6 +382,9 @@
|
|||
/* Class = "NSTextFieldCell"; title = "Full OSD scale will be available for hardware brightness control and after reaching 0 brightness, further software dimming will be used."; ObjectID = "YHZ-VL-QJ3"; */
|
||||
"YHZ-VL-QJ3.title" = "Volledige OSD-schaal zal beschikbaar zijn voor hardwarehelderheidsregeling en na het bereiken van 0 helderheid, zal softwarematig verder gedimd worden.";
|
||||
|
||||
/* 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)";
|
||||
|
||||
|
|
|
|||
|
|
@ -98,7 +98,10 @@
|
|||
"Software (shade)" = "Software (shade)";
|
||||
|
||||
/* Shown in the Display Preferences */
|
||||
"This display allows for software brightness control via gammatable manipulation as it does not support hardware control. Reasons for this might be using the HDMI port of a Mac mini (which blocks hardware DDC control) or having a blacklisted display." = "This display allows for software brightness control via gammatable manipulation as it does not support hardware control. Reasons for this might be using the HDMI port of a Mac mini (which blocks hardware DDC control) or having a blacklisted display.";
|
||||
"Software (shade, forced)" = "Software (shade, forced)";
|
||||
|
||||
/* Shown in the Display Preferences */
|
||||
"This display allows for software brightness control via gamma table manipulation or shade as it does not support hardware control. Reasons for this might be using the HDMI port of a Mac mini (which blocks hardware DDC control) or having a blacklisted display." = "This display allows for software brightness control via gamma table manipulation or shade as it does not support hardware control. Reasons for this might be using the HDMI port of a Mac mini (which blocks hardware DDC control) or having a blacklisted display.";
|
||||
|
||||
/* Shown in the Display Preferences */
|
||||
"This display has an unspecified control status." = "This display has an unspecified control status.";
|
||||
|
|
|
|||
|
|
@ -145,6 +145,9 @@
|
|||
/* Class = "NSTextFieldCell"; title = "Volume:"; ObjectID = "FER-Ri-4UO"; */
|
||||
"FER-Ri-4UO.title" = "Volume:";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Allow zero brightness via software or combined dimming"; ObjectID = "FjB-XL-fG5"; */
|
||||
"FjB-XL-fG5.title" = "Allow zero brightness via software or combined dimming";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Apple and built-in displays already have a brightness slider in Control Center."; ObjectID = "fmZ-HI-Mdc"; */
|
||||
"fmZ-HI-Mdc.title" = "Apple and built-in displays already have a brightness slider in Control Center.";
|
||||
|
||||
|
|
@ -238,6 +241,9 @@
|
|||
/* Class = "NSButtonCell"; title = "Show brightness slider in menu"; ObjectID = "MWo-6I-s9L"; */
|
||||
"MWo-6I-s9L.title" = "Show brightness slider in menu";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Avoid gamma table manipulation"; ObjectID = "na6-mS-MPi"; */
|
||||
"na6-mS-MPi.title" = "Avoid gamma table manipulation";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Separate scales for combined hardware & software dimming"; ObjectID = "O8o-hI-8eR"; */
|
||||
"O8o-hI-8eR.title" = "Separate scales for combined hardware & software dimming";
|
||||
|
||||
|
|
@ -259,8 +265,8 @@
|
|||
/* Class = "NSTextFieldCell"; title = "count:"; ObjectID = "Orv-yj-Nad"; */
|
||||
"Orv-yj-Nad.title" = "count:";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Use the brightness keys of your Apple keyboard to control brightness. You can hold Control to adjust the built-in display, Control+Option to adjust external displays. Hold Shift+Option for fine control. Control+Option+Command adjusts contrast on DDC compatible displays."; ObjectID = "pa0-Hz-ace"; */
|
||||
"pa0-Hz-ace.title" = "Use the brightness keys of your Apple keyboard to control brightness. You can hold Control to adjust the built-in display, Control+Option to adjust external displays. Hold Shift+Option for fine control. Control+Option+Command adjusts contrast on DDC compatible displays.";
|
||||
/* Class = "NSTextFieldCell"; title = "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."; ObjectID = "pa0-Hz-ace"; */
|
||||
"pa0-Hz-ace.title" = "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.";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Control method:"; ObjectID = "PaK-1f-DsW"; */
|
||||
"PaK-1f-DsW.title" = "Metoda kontroli:";
|
||||
|
|
@ -376,6 +382,9 @@
|
|||
/* Class = "NSTextFieldCell"; title = "Full OSD scale will be available for hardware brightness control and after reaching 0 brightness, further software dimming will be used."; ObjectID = "YHZ-VL-QJ3"; */
|
||||
"YHZ-VL-QJ3.title" = "Full OSD scale will be available for hardware brightness control and after reaching 0 brightness, further software dimming will be used.";
|
||||
|
||||
/* 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)";
|
||||
|
||||
|
|
|
|||
|
|
@ -98,7 +98,10 @@
|
|||
"Software (shade)" = "Software (shade)";
|
||||
|
||||
/* Shown in the Display Preferences */
|
||||
"This display allows for software brightness control via gammatable manipulation as it does not support hardware control. Reasons for this might be using the HDMI port of a Mac mini (which blocks hardware DDC control) or having a blacklisted display." = "This display allows for software brightness control via gammatable manipulation as it does not support hardware control. Reasons for this might be using the HDMI port of a Mac mini (which blocks hardware DDC control) or having a blacklisted display.";
|
||||
"Software (shade, forced)" = "Software (shade, forced)";
|
||||
|
||||
/* Shown in the Display Preferences */
|
||||
"This display allows for software brightness control via gamma table manipulation or shade as it does not support hardware control. Reasons for this might be using the HDMI port of a Mac mini (which blocks hardware DDC control) or having a blacklisted display." = "This display allows for software brightness control via gamma table manipulation or shade as it does not support hardware control. Reasons for this might be using the HDMI port of a Mac mini (which blocks hardware DDC control) or having a blacklisted display.";
|
||||
|
||||
/* Shown in the Display Preferences */
|
||||
"This display has an unspecified control status." = "This display has an unspecified control status.";
|
||||
|
|
|
|||
|
|
@ -145,6 +145,9 @@
|
|||
/* Class = "NSTextFieldCell"; title = "Volume:"; ObjectID = "FER-Ri-4UO"; */
|
||||
"FER-Ri-4UO.title" = "Volume:";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Allow zero brightness via software or combined dimming"; ObjectID = "FjB-XL-fG5"; */
|
||||
"FjB-XL-fG5.title" = "Allow zero brightness via software or combined dimming";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Apple and built-in displays already have a brightness slider in Control Center."; ObjectID = "fmZ-HI-Mdc"; */
|
||||
"fmZ-HI-Mdc.title" = "Apple and built-in displays already have a brightness slider in Control Center.";
|
||||
|
||||
|
|
@ -238,6 +241,9 @@
|
|||
/* Class = "NSButtonCell"; title = "Show brightness slider in menu"; ObjectID = "MWo-6I-s9L"; */
|
||||
"MWo-6I-s9L.title" = "Show brightness slider in menu";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Avoid gamma table manipulation"; ObjectID = "na6-mS-MPi"; */
|
||||
"na6-mS-MPi.title" = "Avoid gamma table manipulation";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Separate scales for combined hardware & software dimming"; ObjectID = "O8o-hI-8eR"; */
|
||||
"O8o-hI-8eR.title" = "Separate scales for combined hardware & software dimming";
|
||||
|
||||
|
|
@ -259,8 +265,8 @@
|
|||
/* Class = "NSTextFieldCell"; title = "count:"; ObjectID = "Orv-yj-Nad"; */
|
||||
"Orv-yj-Nad.title" = "count:";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Use the brightness keys of your Apple keyboard to control brightness. You can hold Control to adjust the built-in display, Control+Option to adjust external displays. Hold Shift+Option for fine control. Control+Option+Command adjusts contrast on DDC compatible displays."; ObjectID = "pa0-Hz-ace"; */
|
||||
"pa0-Hz-ace.title" = "Use the brightness keys of your Apple keyboard to control brightness. You can hold Control to adjust the built-in display, Control+Option to adjust external displays. Hold Shift+Option for fine control. Control+Option+Command adjusts contrast on DDC compatible displays.";
|
||||
/* Class = "NSTextFieldCell"; title = "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."; ObjectID = "pa0-Hz-ace"; */
|
||||
"pa0-Hz-ace.title" = "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.";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Control method:"; ObjectID = "PaK-1f-DsW"; */
|
||||
"PaK-1f-DsW.title" = "Метод управления:";
|
||||
|
|
@ -376,6 +382,9 @@
|
|||
/* Class = "NSTextFieldCell"; title = "Full OSD scale will be available for hardware brightness control and after reaching 0 brightness, further software dimming will be used."; ObjectID = "YHZ-VL-QJ3"; */
|
||||
"YHZ-VL-QJ3.title" = "Full OSD scale will be available for hardware brightness control and after reaching 0 brightness, further software dimming will be used.";
|
||||
|
||||
/* 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)";
|
||||
|
||||
|
|
|
|||
|
|
@ -98,7 +98,10 @@
|
|||
"Software (shade)" = "Software (shade)";
|
||||
|
||||
/* Shown in the Display Preferences */
|
||||
"This display allows for software brightness control via gammatable manipulation as it does not support hardware control. Reasons for this might be using the HDMI port of a Mac mini (which blocks hardware DDC control) or having a blacklisted display." = "Bu ekran, donanım kontrolünü desteklemediği için gamlanabilir manipülasyon yoluyla yazılım parlaklık kontrolüne izin verir. Bunun nedenleri, bir Mac mini'nin (donanım DDC kontrolünü engelleyen) HDMI bağlantı noktasını kullanmak veya kara listeye alınmış bir ekrana sahip olmak olabilir.";
|
||||
"Software (shade, forced)" = "Software (shade, forced)";
|
||||
|
||||
/* Shown in the Display Preferences */
|
||||
"This display allows for software brightness control via gamma table manipulation or shade as it does not support hardware control. Reasons for this might be using the HDMI port of a Mac mini (which blocks hardware DDC control) or having a blacklisted display." = "Bu ekran, donanım kontrolünü desteklemediği için gamlanabilir manipülasyon yoluyla yazılım parlaklık kontrolüne izin verir. Bunun nedenleri, bir Mac mini'nin (donanım DDC kontrolünü engelleyen) HDMI bağlantı noktasını kullanmak veya kara listeye alınmış bir ekrana sahip olmak olabilir.";
|
||||
|
||||
/* Shown in the Display Preferences */
|
||||
"This display has an unspecified control status." = "Bu ekranın belirtilmemiş bir kontrol durumu var.";
|
||||
|
|
|
|||
|
|
@ -145,6 +145,9 @@
|
|||
/* Class = "NSTextFieldCell"; title = "Volume:"; ObjectID = "FER-Ri-4UO"; */
|
||||
"FER-Ri-4UO.title" = "Ses:";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Allow zero brightness via software or combined dimming"; ObjectID = "FjB-XL-fG5"; */
|
||||
"FjB-XL-fG5.title" = "Allow zero brightness via software or combined dimming";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Apple and built-in displays already have a brightness slider in Control Center."; ObjectID = "fmZ-HI-Mdc"; */
|
||||
"fmZ-HI-Mdc.title" = "Apple ve yerleşik ekranların Denetim Merkezi'nde zaten bir parlaklık kaydırıcısı vardır.";
|
||||
|
||||
|
|
@ -238,6 +241,9 @@
|
|||
/* 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";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Avoid gamma table manipulation"; ObjectID = "na6-mS-MPi"; */
|
||||
"na6-mS-MPi.title" = "Avoid gamma table manipulation";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Separate scales for combined hardware & software dimming"; ObjectID = "O8o-hI-8eR"; */
|
||||
"O8o-hI-8eR.title" = "Birleşik donanım ve yazılım karartması için ayrı dengeler";
|
||||
|
||||
|
|
@ -259,8 +265,8 @@
|
|||
/* Class = "NSTextFieldCell"; title = "count:"; ObjectID = "Orv-yj-Nad"; */
|
||||
"Orv-yj-Nad.title" = "Sayı:";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Use the brightness keys of your Apple keyboard to control brightness. You can hold Control to adjust the built-in display, Control+Option to adjust external displays. Hold Shift+Option for fine control. Control+Option+Command adjusts contrast on DDC compatible displays."; ObjectID = "pa0-Hz-ace"; */
|
||||
"pa0-Hz-ace.title" = "Parlaklığı kontrol etmek için Apple klavyenizin parlaklık tuşlarını kullanın. Dahili ekranı ayarlamak için Control tuşunu, harici ekranları ayarlamak için Control+Option tuşunu basılı tutabilirsiniz. Hassas kontrol için Shift+Option tuşunu basılı tutun. Control+Option+Command, DDC uyumlu ekranlarda kontrastı ayarlar.";
|
||||
/* Class = "NSTextFieldCell"; title = "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."; ObjectID = "pa0-Hz-ace"; */
|
||||
"pa0-Hz-ace.title" = "Parlaklığı kontrol etmek için Apple klavyenizin parlaklık tuşlarını kullanın. Dahili ekranı ayarlamak için Control tuşunu, harici ekranları ayarlamak için Control+Command tuşunu basılı tutabilirsiniz. Hassas kontrol için Shift+Option tuşunu basılı tutun. Control+Option+Command, DDC uyumlu ekranlarda kontrastı ayarlar.";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Control method:"; ObjectID = "PaK-1f-DsW"; */
|
||||
"PaK-1f-DsW.title" = "Kontrol yöntemi:";
|
||||
|
|
@ -376,6 +382,9 @@
|
|||
/* Class = "NSTextFieldCell"; title = "Full OSD scale will be available for hardware brightness control and after reaching 0 brightness, further software dimming will be used."; ObjectID = "YHZ-VL-QJ3"; */
|
||||
"YHZ-VL-QJ3.title" = "Donanım parlaklık kontrolü için tam OSD ölçeği mevcut olacak ve 0 parlaklığa ulaştıktan sonra daha fazla yazılım karartması kullanılacak.";
|
||||
|
||||
/* 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)";
|
||||
|
||||
|
|
|
|||
|
|
@ -98,7 +98,10 @@
|
|||
"Software (shade)" = "Software (shade)";
|
||||
|
||||
/* Shown in the Display Preferences */
|
||||
"This display allows for software brightness control via gammatable manipulation as it does not support hardware control. Reasons for this might be using the HDMI port of a Mac mini (which blocks hardware DDC control) or having a blacklisted display." = "This display allows for software brightness control via gammatable manipulation as it does not support hardware control. Reasons for this might be using the HDMI port of a Mac mini (which blocks hardware DDC control) or having a blacklisted display.";
|
||||
"Software (shade, forced)" = "Software (shade, forced)";
|
||||
|
||||
/* Shown in the Display Preferences */
|
||||
"This display allows for software brightness control via gamma table manipulation or shade as it does not support hardware control. Reasons for this might be using the HDMI port of a Mac mini (which blocks hardware DDC control) or having a blacklisted display." = "This display allows for software brightness control via gamma table manipulation or shade as it does not support hardware control. Reasons for this might be using the HDMI port of a Mac mini (which blocks hardware DDC control) or having a blacklisted display.";
|
||||
|
||||
/* Shown in the Display Preferences */
|
||||
"This display has an unspecified control status." = "This display has an unspecified control status.";
|
||||
|
|
|
|||
|
|
@ -145,6 +145,9 @@
|
|||
/* Class = "NSTextFieldCell"; title = "Volume:"; ObjectID = "FER-Ri-4UO"; */
|
||||
"FER-Ri-4UO.title" = "Volume:";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Allow zero brightness via software or combined dimming"; ObjectID = "FjB-XL-fG5"; */
|
||||
"FjB-XL-fG5.title" = "Allow zero brightness via software or combined dimming";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Apple and built-in displays already have a brightness slider in Control Center."; ObjectID = "fmZ-HI-Mdc"; */
|
||||
"fmZ-HI-Mdc.title" = "Apple and built-in displays already have a brightness slider in Control Center.";
|
||||
|
||||
|
|
@ -238,6 +241,9 @@
|
|||
/* Class = "NSButtonCell"; title = "Show brightness slider in menu"; ObjectID = "MWo-6I-s9L"; */
|
||||
"MWo-6I-s9L.title" = "Show brightness slider in menu";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Avoid gamma table manipulation"; ObjectID = "na6-mS-MPi"; */
|
||||
"na6-mS-MPi.title" = "Avoid gamma table manipulation";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Separate scales for combined hardware & software dimming"; ObjectID = "O8o-hI-8eR"; */
|
||||
"O8o-hI-8eR.title" = "Separate scales for combined hardware & software dimming";
|
||||
|
||||
|
|
@ -259,8 +265,8 @@
|
|||
/* Class = "NSTextFieldCell"; title = "count:"; ObjectID = "Orv-yj-Nad"; */
|
||||
"Orv-yj-Nad.title" = "count:";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Use the brightness keys of your Apple keyboard to control brightness. You can hold Control to adjust the built-in display, Control+Option to adjust external displays. Hold Shift+Option for fine control. Control+Option+Command adjusts contrast on DDC compatible displays."; ObjectID = "pa0-Hz-ace"; */
|
||||
"pa0-Hz-ace.title" = "Use the brightness keys of your Apple keyboard to control brightness. You can hold Control to adjust the built-in display, Control+Option to adjust external displays. Hold Shift+Option for fine control. Control+Option+Command adjusts contrast on DDC compatible displays.";
|
||||
/* Class = "NSTextFieldCell"; title = "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."; ObjectID = "pa0-Hz-ace"; */
|
||||
"pa0-Hz-ace.title" = "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.";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Control method:"; ObjectID = "PaK-1f-DsW"; */
|
||||
"PaK-1f-DsW.title" = "Control method:";
|
||||
|
|
@ -376,6 +382,9 @@
|
|||
/* Class = "NSTextFieldCell"; title = "Full OSD scale will be available for hardware brightness control and after reaching 0 brightness, further software dimming will be used."; ObjectID = "YHZ-VL-QJ3"; */
|
||||
"YHZ-VL-QJ3.title" = "Full OSD scale will be available for hardware brightness control and after reaching 0 brightness, further software dimming will be used.";
|
||||
|
||||
/* 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)";
|
||||
|
||||
|
|
|
|||
|
|
@ -98,7 +98,10 @@
|
|||
"Software (shade)" = "Software (shade)";
|
||||
|
||||
/* Shown in the Display Preferences */
|
||||
"This display allows for software brightness control via gammatable manipulation as it does not support hardware control. Reasons for this might be using the HDMI port of a Mac mini (which blocks hardware DDC control) or having a blacklisted display." = "This display allows for software brightness control via gammatable manipulation as it does not support hardware control. Reasons for this might be using the HDMI port of a Mac mini (which blocks hardware DDC control) or having a blacklisted display.";
|
||||
"Software (shade, forced)" = "Software (shade, forced)";
|
||||
|
||||
/* Shown in the Display Preferences */
|
||||
"This display allows for software brightness control via gamma table manipulation or shade as it does not support hardware control. Reasons for this might be using the HDMI port of a Mac mini (which blocks hardware DDC control) or having a blacklisted display." = "This display allows for software brightness control via gamma table manipulation or shade as it does not support hardware control. Reasons for this might be using the HDMI port of a Mac mini (which blocks hardware DDC control) or having a blacklisted display.";
|
||||
|
||||
/* Shown in the Display Preferences */
|
||||
"This display has an unspecified control status." = "This display has an unspecified control status.";
|
||||
|
|
|
|||
|
|
@ -145,6 +145,9 @@
|
|||
/* Class = "NSTextFieldCell"; title = "Volume:"; ObjectID = "FER-Ri-4UO"; */
|
||||
"FER-Ri-4UO.title" = "Volume:";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Allow zero brightness via software or combined dimming"; ObjectID = "FjB-XL-fG5"; */
|
||||
"FjB-XL-fG5.title" = "Allow zero brightness via software or combined dimming";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Apple and built-in displays already have a brightness slider in Control Center."; ObjectID = "fmZ-HI-Mdc"; */
|
||||
"fmZ-HI-Mdc.title" = "Apple and built-in displays already have a brightness slider in Control Center.";
|
||||
|
||||
|
|
@ -238,6 +241,9 @@
|
|||
/* Class = "NSButtonCell"; title = "Show brightness slider in menu"; ObjectID = "MWo-6I-s9L"; */
|
||||
"MWo-6I-s9L.title" = "Show brightness slider in menu";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Avoid gamma table manipulation"; ObjectID = "na6-mS-MPi"; */
|
||||
"na6-mS-MPi.title" = "Avoid gamma table manipulation";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Separate scales for combined hardware & software dimming"; ObjectID = "O8o-hI-8eR"; */
|
||||
"O8o-hI-8eR.title" = "Separate scales for combined hardware & software dimming";
|
||||
|
||||
|
|
@ -259,8 +265,8 @@
|
|||
/* Class = "NSTextFieldCell"; title = "count:"; ObjectID = "Orv-yj-Nad"; */
|
||||
"Orv-yj-Nad.title" = "count:";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Use the brightness keys of your Apple keyboard to control brightness. You can hold Control to adjust the built-in display, Control+Option to adjust external displays. Hold Shift+Option for fine control. Control+Option+Command adjusts contrast on DDC compatible displays."; ObjectID = "pa0-Hz-ace"; */
|
||||
"pa0-Hz-ace.title" = "Use the brightness keys of your Apple keyboard to control brightness. You can hold Control to adjust the built-in display, Control+Option to adjust external displays. Hold Shift+Option for fine control. Control+Option+Command adjusts contrast on DDC compatible displays.";
|
||||
/* Class = "NSTextFieldCell"; title = "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."; ObjectID = "pa0-Hz-ace"; */
|
||||
"pa0-Hz-ace.title" = "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.";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Control method:"; ObjectID = "PaK-1f-DsW"; */
|
||||
"PaK-1f-DsW.title" = "控制方法:";
|
||||
|
|
@ -376,6 +382,9 @@
|
|||
/* Class = "NSTextFieldCell"; title = "Full OSD scale will be available for hardware brightness control and after reaching 0 brightness, further software dimming will be used."; ObjectID = "YHZ-VL-QJ3"; */
|
||||
"YHZ-VL-QJ3.title" = "Full OSD scale will be available for hardware brightness control and after reaching 0 brightness, further software dimming will be used.";
|
||||
|
||||
/* 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)";
|
||||
|
||||
|
|
|
|||
|
|
@ -98,7 +98,10 @@
|
|||
"Software (shade)" = "軟體 (shade)";
|
||||
|
||||
/* Shown in the Display Preferences */
|
||||
"This display allows for software brightness control via gammatable manipulation as it does not support hardware control. Reasons for this might be using the HDMI port of a Mac mini (which blocks hardware DDC control) or having a blacklisted display." = "此螢幕不支援硬體控制,亮度調整將以軟體調整伽瑪值來實現。原因可能出於使用Mac mini的HDMI埠(硬體DDC無法使用)或是使用不支援的螢幕。";
|
||||
"Software (shade, forced)" = "Software (shade, forced)";
|
||||
|
||||
/* Shown in the Display Preferences */
|
||||
"This display allows for software brightness control via gamma table manipulation or shade as it does not support hardware control. Reasons for this might be using the HDMI port of a Mac mini (which blocks hardware DDC control) or having a blacklisted display." = "此螢幕不支援硬體控制,亮度調整將以軟體調整伽瑪值來實現。原因可能出於使用Mac mini的HDMI埠(硬體DDC無法使用)或是使用不支援的螢幕。";
|
||||
|
||||
/* Shown in the Display Preferences */
|
||||
"This display has an unspecified control status." = "此螢幕有未指定的控制狀態";
|
||||
|
|
|
|||
|
|
@ -145,6 +145,9 @@
|
|||
/* Class = "NSTextFieldCell"; title = "Volume:"; ObjectID = "FER-Ri-4UO"; */
|
||||
"FER-Ri-4UO.title" = "音量:";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Allow zero brightness via software or combined dimming"; ObjectID = "FjB-XL-fG5"; */
|
||||
"FjB-XL-fG5.title" = "Allow zero brightness via software or combined dimming";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Apple and built-in displays already have a brightness slider in Control Center."; ObjectID = "fmZ-HI-Mdc"; */
|
||||
"fmZ-HI-Mdc.title" = "控制中心中已有蘋果及內建螢幕的亮度控制滑桿。";
|
||||
|
||||
|
|
@ -238,6 +241,9 @@
|
|||
/* Class = "NSButtonCell"; title = "Show brightness slider in menu"; ObjectID = "MWo-6I-s9L"; */
|
||||
"MWo-6I-s9L.title" = "顯示亮度控制滑桿";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Avoid gamma table manipulation"; ObjectID = "na6-mS-MPi"; */
|
||||
"na6-mS-MPi.title" = "Avoid gamma table manipulation";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Separate scales for combined hardware & software dimming"; ObjectID = "O8o-hI-8eR"; */
|
||||
"O8o-hI-8eR.title" = "使用硬體結合軟體調整時忽略軟體調整的範圍";
|
||||
|
||||
|
|
@ -259,8 +265,8 @@
|
|||
/* Class = "NSTextFieldCell"; title = "count:"; ObjectID = "Orv-yj-Nad"; */
|
||||
"Orv-yj-Nad.title" = "數量:";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Use the brightness keys of your Apple keyboard to control brightness. You can hold Control to adjust the built-in display, Control+Option to adjust external displays. Hold Shift+Option for fine control. Control+Option+Command adjusts contrast on DDC compatible displays."; ObjectID = "pa0-Hz-ace"; */
|
||||
"pa0-Hz-ace.title" = "使用蘋果鍵盤上的亮度控制按鈕來調整亮度。搭配Control鍵調整內建螢幕、Control+Option調整外接螢幕、Shift+Option進行精細調整、Control+Option+Command調整DDC相容螢幕的對比度。";
|
||||
/* Class = "NSTextFieldCell"; title = "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."; ObjectID = "pa0-Hz-ace"; */
|
||||
"pa0-Hz-ace.title" = "使用蘋果鍵盤上的亮度控制按鈕來調整亮度。搭配Control鍵調整內建螢幕、Control+Command調整外接螢幕、Shift+Option進行精細調整、Control+Option+Command調整DDC相容螢幕的對比度。";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Control method:"; ObjectID = "PaK-1f-DsW"; */
|
||||
"PaK-1f-DsW.title" = "控制方式:";
|
||||
|
|
@ -376,6 +382,9 @@
|
|||
/* Class = "NSTextFieldCell"; title = "Full OSD scale will be available for hardware brightness control and after reaching 0 brightness, further software dimming will be used."; ObjectID = "YHZ-VL-QJ3"; */
|
||||
"YHZ-VL-QJ3.title" = "完整的OSD刻度只涵蓋硬體的控制範圍,刻度在0以下時以軟體調整。";
|
||||
|
||||
/* 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" = "假設前次的設定可用(建議)";
|
||||
|
||||
|
|
|
|||
|
|
@ -15,6 +15,7 @@ class DisplaysPrefsCellView: NSTableCellView {
|
|||
@IBOutlet var displayId: NSTextFieldCell!
|
||||
@IBOutlet var enabledButton: NSButton!
|
||||
@IBOutlet var ddcButton: NSButton!
|
||||
@IBOutlet var avoidGamma: NSButton!
|
||||
@IBOutlet var controlMethod: NSTextFieldCell!
|
||||
@IBOutlet var displayType: NSTextFieldCell!
|
||||
@IBOutlet var disableVolumeOSDButton: NSButton!
|
||||
|
|
@ -55,12 +56,6 @@ class DisplaysPrefsCellView: NSTableCellView {
|
|||
@IBOutlet var remapDDCVolume: NSTextField!
|
||||
@IBOutlet var remapDDCContrast: NSTextField!
|
||||
|
||||
@IBAction func openAdvancedHelp(_: NSButton) {
|
||||
if let url = URL(string: "https://github.com/the0neyouseek/MonitorControl/wiki/Advanced-Preferences") {
|
||||
NSWorkspace.shared.open(url)
|
||||
}
|
||||
}
|
||||
|
||||
@IBAction func pollingModeValueChanged(_ sender: NSPopUpButton) {
|
||||
if let display = display as? OtherDisplay {
|
||||
let newValue = sender.selectedTag()
|
||||
|
|
@ -198,6 +193,24 @@ class DisplaysPrefsCellView: NSTableCellView {
|
|||
}
|
||||
}
|
||||
|
||||
@IBAction func avoidGamma(_ sender: NSButton) {
|
||||
if let display = display as? OtherDisplay {
|
||||
_ = display.setSwBrightness(1)
|
||||
_ = display.setDirectBrightness(1)
|
||||
switch sender.state {
|
||||
case .on:
|
||||
display.savePref(true, key: .avoidGamma)
|
||||
case .off:
|
||||
display.savePref(false, key: .avoidGamma)
|
||||
default:
|
||||
break
|
||||
}
|
||||
let displayInfo = DisplaysPrefsViewController.getDisplayInfo(display: display)
|
||||
self.controlMethod.stringValue = displayInfo.controlMethod
|
||||
self.controlMethod.controlView?.toolTip = displayInfo.controlStatus
|
||||
}
|
||||
}
|
||||
|
||||
func tagCommand(_ tag: Int) -> Command {
|
||||
var command: Command
|
||||
switch tag {
|
||||
|
|
@ -345,6 +358,8 @@ class DisplaysPrefsCellView: NSTableCellView {
|
|||
if self.ddcButton.isEnabled { // This signifies that the DDC block is enabled
|
||||
self.ddcButton.state = .on
|
||||
self.ddcButtonToggled(self.ddcButton)
|
||||
self.avoidGamma.state = .off
|
||||
self.ddcButtonToggled(self.avoidGamma)
|
||||
self.enabledButton.state = .on
|
||||
self.enabledButtonToggled(self.enabledButton)
|
||||
self.disableVolumeOSDButton.state = .off
|
||||
|
|
|
|||
|
|
@ -83,12 +83,20 @@ class DisplaysPrefsViewController: NSViewController, PreferencePane, NSTableView
|
|||
displayImage = "display"
|
||||
if let otherDisplay: OtherDisplay = display as? OtherDisplay {
|
||||
if otherDisplay.isSwOnly() {
|
||||
controlMethod = NSLocalizedString("Software (gamma)", comment: "Shown in the Display Preferences") + " ⚠️"
|
||||
if otherDisplay.readPrefAsBool(key: .avoidGamma) {
|
||||
controlMethod = NSLocalizedString("Software (shade)", comment: "Shown in the Display Preferences") + " ⚠️"
|
||||
} else {
|
||||
controlMethod = NSLocalizedString("Software (gamma)", comment: "Shown in the Display Preferences") + " ⚠️"
|
||||
}
|
||||
displayImage = "display.trianglebadge.exclamationmark"
|
||||
controlStatus = NSLocalizedString("This display allows for software brightness control via gammatable manipulation as it does not support hardware control. Reasons for this might be using the HDMI port of a Mac mini (which blocks hardware DDC control) or having a blacklisted display.", comment: "Shown in the Display Preferences")
|
||||
controlStatus = NSLocalizedString("This display allows for software brightness control via gamma table manipulation or shade as it does not support hardware control. Reasons for this might be using the HDMI port of a Mac mini (which blocks hardware DDC control) or having a blacklisted display.", comment: "Shown in the Display Preferences")
|
||||
} else {
|
||||
if otherDisplay.isSw() {
|
||||
controlMethod = NSLocalizedString("Software (gamma, forced)", comment: "Shown in the Display Preferences") + " ⚠️"
|
||||
if otherDisplay.readPrefAsBool(key: .avoidGamma) {
|
||||
controlMethod = NSLocalizedString("Software (shade, forced)", comment: "Shown in the Display Preferences")
|
||||
} else {
|
||||
controlMethod = NSLocalizedString("Software (gamma, forced)", comment: "Shown in the Display Preferences")
|
||||
}
|
||||
controlStatus = NSLocalizedString("This display is reported to support hardware DDC control but the current settings allow for software control only.", comment: "Shown in the Display Preferences")
|
||||
} else {
|
||||
controlMethod = NSLocalizedString("Hardware (DDC)", comment: "Shown in the Display Preferences")
|
||||
|
|
@ -130,6 +138,13 @@ class DisplaysPrefsViewController: NSViewController, PreferencePane, NSTableView
|
|||
cell.friendlyName.isEditable = true
|
||||
// Enabled
|
||||
cell.enabledButton.state = display.readPrefAsBool(key: .isDisabled) ? .off : .on
|
||||
// Enabled
|
||||
cell.avoidGamma.state = display.readPrefAsBool(key: .avoidGamma) ? .on : .off
|
||||
if (display as? OtherDisplay)?.isVirtual ?? true {
|
||||
cell.avoidGamma.isEnabled = false
|
||||
} else {
|
||||
cell.avoidGamma.isEnabled = true
|
||||
}
|
||||
// DDC
|
||||
cell.ddcButton.state = ((display as? OtherDisplay)?.isSw() ?? true) ? .off : .on
|
||||
if ((display as? OtherDisplay)?.isSwOnly() ?? true) || ((display as? OtherDisplay)?.isVirtual ?? true) {
|
||||
|
|
@ -289,10 +304,10 @@ class DisplaysPrefsViewController: NSViewController, PreferencePane, NSTableView
|
|||
|
||||
func updateDisplayListRowHeight() {
|
||||
if prefs.bool(forKey: PrefKey.showAdvancedSettings.rawValue) {
|
||||
self.displayList?.rowHeight = 500
|
||||
self.displayList?.rowHeight = 520
|
||||
self.constraintHeight?.constant = self.displayList.rowHeight + 15
|
||||
} else {
|
||||
self.displayList?.rowHeight = 165
|
||||
self.displayList?.rowHeight = 185
|
||||
self.constraintHeight?.constant = self.displayList.rowHeight * 2 + 15
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -20,6 +20,7 @@ class MainPrefsViewController: NSViewController, PreferencePane {
|
|||
@IBOutlet var startAtLogin: NSButton!
|
||||
@IBOutlet var automaticUpdateCheck: NSButton!
|
||||
@IBOutlet var disableSoftwareFallback: NSButton!
|
||||
@IBOutlet var allowZeroSwBrightness: NSButton!
|
||||
@IBOutlet var combinedBrightness: NSButton!
|
||||
@IBOutlet var enableSmooth: NSButton!
|
||||
@IBOutlet var enableBrightnessSync: NSButton!
|
||||
|
|
@ -38,6 +39,8 @@ class MainPrefsViewController: NSViewController, PreferencePane {
|
|||
@IBOutlet var rowResetButton: NSGridRow!
|
||||
@IBOutlet var rowDisableSoftwareFallbackCheck: NSGridRow!
|
||||
@IBOutlet var rowDisableSoftwareFallbackText: NSGridRow!
|
||||
@IBOutlet var rowAllowZeroSwBrightnessCheck: NSGridRow!
|
||||
@IBOutlet var rowAllowZeroSwBrightnessText: NSGridRow!
|
||||
|
||||
func showAdvanced() -> Bool {
|
||||
let hide = !prefs.bool(forKey: PrefKey.showAdvancedSettings.rawValue)
|
||||
|
|
@ -74,6 +77,13 @@ class MainPrefsViewController: NSViewController, PreferencePane {
|
|||
self.rowDisableSoftwareFallbackCheck.isHidden = hide
|
||||
self.rowDisableSoftwareFallbackText.isHidden = hide
|
||||
}
|
||||
if self.allowZeroSwBrightness.state == .on {
|
||||
self.rowAllowZeroSwBrightnessCheck.isHidden = false
|
||||
self.rowAllowZeroSwBrightnessText.isHidden = false
|
||||
} else {
|
||||
self.rowAllowZeroSwBrightnessCheck.isHidden = hide
|
||||
self.rowAllowZeroSwBrightnessText.isHidden = hide
|
||||
}
|
||||
self.rowResetButton.isHidden = hide
|
||||
return !hide
|
||||
}
|
||||
|
|
@ -92,6 +102,7 @@ class MainPrefsViewController: NSViewController, PreferencePane {
|
|||
self.automaticUpdateCheck.state = prefs.bool(forKey: PrefKey.SUEnableAutomaticChecks.rawValue) ? .on : .off
|
||||
self.combinedBrightness.state = prefs.bool(forKey: PrefKey.disableCombinedBrightness.rawValue) ? .off : .on
|
||||
self.disableSoftwareFallback.state = prefs.bool(forKey: PrefKey.disableSoftwareFallback.rawValue) ? .on : .off
|
||||
self.allowZeroSwBrightness.state = prefs.bool(forKey: PrefKey.allowZeroSwBrightness.rawValue) ? .on : .off
|
||||
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
|
||||
|
|
@ -144,17 +155,31 @@ class MainPrefsViewController: NSViewController, PreferencePane {
|
|||
@IBAction func disableSoftwareFallback(_ sender: NSButton) {
|
||||
switch sender.state {
|
||||
case .on:
|
||||
for display in DisplayManager.shared.getOtherDisplays() where display.isSw() {
|
||||
_ = display.setBrightness(1)
|
||||
}
|
||||
prefs.set(true, forKey: PrefKey.disableSoftwareFallback.rawValue)
|
||||
case .off:
|
||||
prefs.set(false, forKey: PrefKey.disableSoftwareFallback.rawValue)
|
||||
for display in DisplayManager.shared.getOtherDisplays() where display.isSw() {
|
||||
_ = display.setBrightness(1)
|
||||
}
|
||||
default: break
|
||||
}
|
||||
for display in DisplayManager.shared.getOtherDisplays() {
|
||||
_ = display.setDirectBrightness(1)
|
||||
_ = display.setSwBrightness(1)
|
||||
}
|
||||
_ = self.showAdvanced()
|
||||
app.configure()
|
||||
}
|
||||
|
||||
@IBAction func allowZeroSwBrightness(_ sender: NSButton) {
|
||||
switch sender.state {
|
||||
case .on:
|
||||
prefs.set(true, forKey: PrefKey.allowZeroSwBrightness.rawValue)
|
||||
case .off:
|
||||
prefs.set(false, forKey: PrefKey.allowZeroSwBrightness.rawValue)
|
||||
default: break
|
||||
}
|
||||
for display in DisplayManager.shared.getOtherDisplays() {
|
||||
_ = display.setDirectBrightness(1)
|
||||
_ = display.setSwBrightness(1)
|
||||
}
|
||||
_ = self.showAdvanced()
|
||||
app.configure()
|
||||
}
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@
|
|||
<key>CFBundleShortVersionString</key>
|
||||
<string>$(MARKETING_VERSION)</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>6395</string>
|
||||
<string>6421</string>
|
||||
<key>LSApplicationCategoryType</key>
|
||||
<string>public.app-category.utilities</string>
|
||||
<key>LSBackgroundOnly</key>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue