mirror of
https://github.com/MonitorControl/MonitorControl.git
synced 2026-05-15 14:15:55 -06:00
Added Slovak language + minor version bump (#1498)
This commit is contained in:
parent
caf0368d3d
commit
b2164f7b41
7 changed files with 608 additions and 17 deletions
|
|
@ -158,6 +158,9 @@
|
|||
AAB2F63F273ED0B8004AB5A4 /* .bartycrouch.toml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = .bartycrouch.toml; sourceTree = "<group>"; };
|
||||
AAB2F641273ED0C7004AB5A4 /* .github */ = {isa = PBXFileReference; lastKnownFileType = folder; path = .github; sourceTree = "<group>"; };
|
||||
AAB2F643273ED0E9004AB5A4 /* License.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = License.txt; sourceTree = "<group>"; };
|
||||
AABCFABB2B47247200344F55 /* sk */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sk; path = sk.lproj/Main.strings; sourceTree = "<group>"; };
|
||||
AABCFABC2B47247200344F55 /* sk */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sk; path = sk.lproj/InternetAccessPolicy.strings; sourceTree = "<group>"; };
|
||||
AABCFABD2B47247200344F55 /* sk */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sk; path = sk.lproj/Localizable.strings; sourceTree = "<group>"; };
|
||||
AACE5E2227050C63006C2A48 /* NSNotification+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NSNotification+Extension.swift"; sourceTree = "<group>"; };
|
||||
AADB625926BC196900DFFAA5 /* DisplayServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = DisplayServices.framework; path = /System/Library/PrivateFrameworks/DisplayServices.framework; sourceTree = "<absolute>"; };
|
||||
B7FA437E2AC5857A00A94C01 /* ja */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ja; path = ja.lproj/Main.strings; sourceTree = "<group>"; };
|
||||
|
|
@ -464,6 +467,7 @@
|
|||
ja,
|
||||
"pt-PT",
|
||||
hi,
|
||||
sk,
|
||||
);
|
||||
mainGroup = 56754EA21D9A4016007BCDC5;
|
||||
packageReferences = (
|
||||
|
|
@ -671,6 +675,7 @@
|
|||
B7FA437E2AC5857A00A94C01 /* ja */,
|
||||
FB5DB28E2AD54C4600306223 /* pt-PT */,
|
||||
01D6471D2AF916A800321FFB /* hi */,
|
||||
AABCFABB2B47247200344F55 /* sk */,
|
||||
);
|
||||
name = Main.storyboard;
|
||||
sourceTree = "<group>";
|
||||
|
|
@ -696,6 +701,7 @@
|
|||
B7FA437F2AC5857A00A94C01 /* ja */,
|
||||
FB5DB28F2AD54C4600306223 /* pt-PT */,
|
||||
01D6471E2AF916A800321FFB /* hi */,
|
||||
AABCFABC2B47247200344F55 /* sk */,
|
||||
);
|
||||
name = InternetAccessPolicy.strings;
|
||||
sourceTree = "<group>";
|
||||
|
|
@ -721,6 +727,7 @@
|
|||
B7FA43802AC5857A00A94C01 /* ja */,
|
||||
FB5DB2902AD54C4600306223 /* pt-PT */,
|
||||
01D6471F2AF916A800321FFB /* hi */,
|
||||
AABCFABD2B47247200344F55 /* sk */,
|
||||
);
|
||||
name = Localizable.strings;
|
||||
sourceTree = "<group>";
|
||||
|
|
@ -864,7 +871,7 @@
|
|||
"@executable_path/../Frameworks",
|
||||
);
|
||||
MACOSX_DEPLOYMENT_TARGET = 10.14;
|
||||
MARKETING_VERSION = 4.2.0;
|
||||
MARKETING_VERSION = 4.2.1;
|
||||
PRODUCT_BUNDLE_IDENTIFIER = me.guillaumeb.MonitorControl;
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
PROVISIONING_PROFILE_SPECIFIER = "";
|
||||
|
|
@ -899,7 +906,7 @@
|
|||
"@executable_path/../Frameworks",
|
||||
);
|
||||
MACOSX_DEPLOYMENT_TARGET = 10.14;
|
||||
MARKETING_VERSION = 4.2.0;
|
||||
MARKETING_VERSION = 4.2.1;
|
||||
PRODUCT_BUNDLE_IDENTIFIER = me.guillaumeb.MonitorControl;
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
PROVISIONING_PROFILE_SPECIFIER = "";
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@
|
|||
<key>CFBundleShortVersionString</key>
|
||||
<string>$(MARKETING_VERSION)</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>7050</string>
|
||||
<string>7052</string>
|
||||
<key>LSApplicationCategoryType</key>
|
||||
<string>public.app-category.utilities</string>
|
||||
<key>LSMinimumSystemVersion</key>
|
||||
|
|
|
|||
|
|
@ -32,19 +32,17 @@ class AppDelegate: NSObject, NSApplicationDelegate {
|
|||
}
|
||||
}
|
||||
|
||||
lazy var preferencesWindowController: PreferencesWindowController = {
|
||||
PreferencesWindowController(
|
||||
preferencePanes: [
|
||||
mainPrefsVc!,
|
||||
menuslidersPrefsVc!,
|
||||
keyboardPrefsVc!,
|
||||
displaysPrefsVc!,
|
||||
aboutPrefsVc!,
|
||||
],
|
||||
style: self.preferencePaneStyle,
|
||||
animated: true
|
||||
)
|
||||
}()
|
||||
lazy var preferencesWindowController: PreferencesWindowController = .init(
|
||||
preferencePanes: [
|
||||
mainPrefsVc!,
|
||||
menuslidersPrefsVc!,
|
||||
keyboardPrefsVc!,
|
||||
displaysPrefsVc!,
|
||||
aboutPrefsVc!,
|
||||
],
|
||||
style: self.preferencePaneStyle,
|
||||
animated: true
|
||||
)
|
||||
|
||||
func applicationDidFinishLaunching(_: Notification) {
|
||||
app = self
|
||||
|
|
|
|||
11
MonitorControl/UI/sk.lproj/InternetAccessPolicy.strings
Normal file
11
MonitorControl/UI/sk.lproj/InternetAccessPolicy.strings
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
/* General application description */
|
||||
"ApplicationDescription" = "MonitorControl umožňuje ovládať jas a hlasitosť externých displejov";
|
||||
|
||||
/* Sofware update deny consequences */
|
||||
"SoftwareUpdateDenyConsequences" = "Ak tieto pripojenia zakážete, nebudete informovaný o nových verziách a aktualizáciách zabezpečenia. Aktualizácie zabezpečenia sú dôležité na ochranu pred útokmi škodlivého softvéru.";
|
||||
|
||||
/* Software update purpose */
|
||||
"SoftwareUpdatePurpose" = "MonitorControl kontroluje nové verzie a aktualizácie zabezpečenia.";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Check for updates"; ObjectID = "jVH-oc-rUi"; */
|
||||
"jVH-oc-rUi.title" = "Skontrolovať aktualizácie";
|
||||
155
MonitorControl/UI/sk.lproj/Localizable.strings
Normal file
155
MonitorControl/UI/sk.lproj/Localizable.strings
Normal file
|
|
@ -0,0 +1,155 @@
|
|||
/* Shown in the main prefs window */
|
||||
"About" = "O aplikácii";
|
||||
|
||||
/* Shown in the alert dialog */
|
||||
"An other app seems to change the brightness or colors which causes issues.\n\nTo solve this, you need to quit the other app or disable gamma control for your displays in MonitorControl!" = "Zdá sa, že iná aplikácia mení jas alebo farby, čo spôsobuje problémy.\n\nPre vyriešenie musíte ukončiť druhú aplikáciu alebo zakázať ovládanie gama pre vaše displeje v MonitorControl!";
|
||||
|
||||
/* Shown in the main prefs window */
|
||||
"App menu" = "Menu aplikácie";
|
||||
|
||||
/* Shown in the alert dialog */
|
||||
"Are you sure you want to enable a longer delay? Doing so may freeze your system and require a restart. Start at login will be disabled as a safety measure." = "Naozaj chcete povoliť dlhšie oneskorenie? Ak tak urobíte, môže dôjsť k zamrznutiu systému a potrebe jeho reštartovania. Spustenie pri štarte bude z bezpečnostných dôvodov vypnuté.";
|
||||
|
||||
/* Shown in the alert dialog */
|
||||
"Are you sure you want to reset all preferences?" = "Naozaj chcete obnoviť všetky predvoľby?";
|
||||
|
||||
/* Shown in menu */
|
||||
"Brightness" = "Jas";
|
||||
|
||||
/* Build */
|
||||
"Build" = "Zostava";
|
||||
|
||||
/* Shown in the Display Preferences */
|
||||
"Built-in Display" = "Vstavaný displej";
|
||||
|
||||
/* Shown in menu */
|
||||
"Check for updates…" = "Skontrolovať aktualizácie…";
|
||||
|
||||
/* Shown in menu */
|
||||
"Contrast" = "Kontrast";
|
||||
|
||||
/* Version */
|
||||
"Copyright Ⓒ MonitorControl, " = "Copyright Ⓒ MonitorControl, ";
|
||||
|
||||
/* Shown in record shortcut box */
|
||||
"Decrease" = "Znížiť";
|
||||
|
||||
/* Shown in the alert dialog */
|
||||
"Disable gamma control for my displays" = "Zakázať ovládanie gama pre moje displeje";
|
||||
|
||||
/* Shown in the main prefs window */
|
||||
"Displays" = "Displeje";
|
||||
|
||||
/* Shown in the alert dialog */
|
||||
"Enable Longer Delay?" = "Povoliť dlhšie oneskorenie?";
|
||||
|
||||
/* Shown in the Display Preferences */
|
||||
"External Display" = "Externý displej";
|
||||
|
||||
/* Shown in the main prefs window */
|
||||
"General" = "Všeobecné";
|
||||
|
||||
/* Shown in the Display Preferences */
|
||||
"Hardware (Apple)" = "Hardvér (Apple)";
|
||||
|
||||
/* Shown in the Display Preferences */
|
||||
"Hardware (DDC)" = "Hardvér (DDC)";
|
||||
|
||||
/* Shown in the alert dialog */
|
||||
"I'll quit the other app" = "Ukončím druhú aplikáciu";
|
||||
|
||||
/* Shown in the alert dialog */
|
||||
"Incompatible previous version" = "Nekompatibilná predošlá verzia";
|
||||
|
||||
/* Shown in record shortcut box */
|
||||
"Increase" = "Zvýšiť";
|
||||
|
||||
/* Shown in the alert dialog */
|
||||
"Is f.lux or similar running?" = "Je spustený f.lux alebo niečo podobné?";
|
||||
|
||||
/* Shown in the main prefs window */
|
||||
"Keyboard" = "Klávesnica";
|
||||
|
||||
/* Shown in record shortcut box */
|
||||
"Mute" = "Stlmiť";
|
||||
|
||||
/* Shown in the alert dialog */
|
||||
"No" = "Nie";
|
||||
|
||||
/* Shown in the Display Preferences */
|
||||
"No Control" = "Bez ovládania";
|
||||
|
||||
/* Shown in the Display Preferences */
|
||||
"Other Display" = "Iný displej";
|
||||
|
||||
/* Shown in the alert dialog */
|
||||
"Preferences for an incompatible previous app version detected. Default preferences are reloaded." = "Zistené predvoľby pre nekompatibilnú predošlú verziu aplikácie. Predvolené nastavenia sa načítajú znova.";
|
||||
|
||||
/* Shown in menu */
|
||||
"Preferences…" = "Predvoľby…";
|
||||
|
||||
/* Shown in menu */
|
||||
"Quit" = "Ukončiť";
|
||||
|
||||
/* Shown in the alert dialog */
|
||||
"Reset Preferences?" = "Obnoviť predvoľby?";
|
||||
|
||||
/* Shown in the alert dialog */
|
||||
"Safe Mode Activated" = "Aktivovaný núdzový režim";
|
||||
|
||||
/* Shown in the alert dialog */
|
||||
"Shift was pressed during launch. MonitorControl started in safe mode. Default preferences are reloaded, DDC read is blocked." = "Počas spustenia bol stlačený Shift. MonitorControl sa spustil v núdzovom režime. Predvolené nastavenia sa znova načítajú, čítanie DDC sa zablokuje.";
|
||||
|
||||
/* Shown in the alert dialog */
|
||||
"Shortcuts not available" = "Skratky nie sú k dispozícii";
|
||||
|
||||
/* Shown in the Display Preferences */
|
||||
"Software (gamma)" = "Softvér (gama)";
|
||||
|
||||
/* Shown in the Display Preferences */
|
||||
"Software (gamma, forced)" = "Softvér (gama, vynútené)";
|
||||
|
||||
/* Shown in the Display Preferences */
|
||||
"Software (shade)" = "Softvér (tienenie)";
|
||||
|
||||
/* Shown in the Display Preferences */
|
||||
"Software (shade, forced)" = "Softvér (tienenie, vynútené)";
|
||||
|
||||
/* Sofware update deny consequences */
|
||||
"SoftwareUpdateDenyConsequences" = "Ak tieto pripojenia zakážete, nebudete informovaný o nových verziách a aktualizáciách zabezpečenia. Aktualizácie zabezpečenia sú dôležité na ochranu pred útokmi škodlivého softvéru.";
|
||||
|
||||
/* 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." = "Tento displej umožňuje softvérové ovládanie jasu pomocou manipulácie s gama tabuľkami alebo tienením, pretože nepodporuje hardvérové ovládanie. Dôvodom môže byť použitie HDMI portu Mac mini (ktorý blokuje hardvérové ovládanie DDC) alebo použitie displeja z čiernej listiny.";
|
||||
|
||||
/* Shown in the Display Preferences */
|
||||
"This display has an unspecified control status." = "Tento displej má nešpecifikovaný stav ovládania.";
|
||||
|
||||
/* Shown in the Display Preferences */
|
||||
"This display is reported to support hardware DDC control but the current settings allow for software control only." = "Tento displej údajne podporuje hardvérové ovládanie DDC, ale súčasné nastavenia umožňujú len softvérové ovládanie.";
|
||||
|
||||
/* Shown in the Display Preferences */
|
||||
"This display is reported to support hardware DDC control. If you encounter issues, you can disable hardware DDC control to force software control." = "Tento displej údajne podporuje hardvérové ovládanie DDC. Ak sa vyskytnú problémy, môžete vypnúť hardvérové ovládanie DDC a vynútiť si softvérové ovládanie.";
|
||||
|
||||
/* Shown in the Display Preferences */
|
||||
"This display supports native Apple brightness protocol. This allows macOS to control this display without MonitorControl as well." = "Tento displej podporuje natívny protokol jasu Apple. To umožňuje systému macOS ovládať tento displej aj bez MonitorControl.";
|
||||
|
||||
/* Shown in the Display Preferences */
|
||||
"This is a virtual display (examples: AirPlay, Sidecar, display connected via a DisplayLink Dock or similar) which does not allow hardware or software gammatable control. Shading is used as a substitute but only in non-mirror scenarios. Mouse cursor will be unaffected and artifacts may appear when entering/leaving full screen mode." = "Ide o virtuálny displej (napr.: AirPlay, Sidecar, displej pripojený cez DisplayLink Dock alebo podobné), ktorý neumožňuje hardvérové alebo softvérové ovládanie. Tieňovanie sa používa ako náhrada, ale iba okrem zrkadlenia. Kurzor myši nebude ovplyvnený a pri vstupe/opustení režimu celej obrazovky sa môžu objaviť artefakty.";
|
||||
|
||||
/* Unknown display name */
|
||||
"Unknown" = "Neznámy";
|
||||
|
||||
/* Version */
|
||||
"Version" = "Verzia";
|
||||
|
||||
/* Shown in the Display Preferences */
|
||||
"Virtual Display" = "Virtuálny displej";
|
||||
|
||||
/* Shown in menu */
|
||||
"Volume" = "Hlasitosť";
|
||||
|
||||
/* Shown in the alert dialog */
|
||||
"Yes" = "Áno";
|
||||
|
||||
/* Shown in the alert dialog */
|
||||
"You need to enable MonitorControl in System Preferences > Security and Privacy > Accessibility for the keyboard shortcuts to work" = "Pre fungovanie klávesových skratiek musíte zapnúť MonitorControl v Systémové nastavenia > Súkromie a bezpečnosť > Prístupnosť";
|
||||
420
MonitorControl/UI/sk.lproj/Main.strings
Normal file
420
MonitorControl/UI/sk.lproj/Main.strings
Normal file
|
|
@ -0,0 +1,420 @@
|
|||
|
||||
/* Class = "NSButtonCell"; title = "Sync brightness changes from Built-in and Apple displays"; ObjectID = "0ca-DG-AgB"; */
|
||||
"0ca-DG-AgB.title" = "Synchronizácia zmien jasu zo vstavaného displeja a Apple displejov";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "MonitorControl"; ObjectID = "1PJ-14-Bvn"; */
|
||||
"1PJ-14-Bvn.title" = "MonitorControl";
|
||||
|
||||
/* Class = "NSMenuItem"; title = "Assume last saved settings are valid (recommended)"; ObjectID = "1in-79-6qm"; */
|
||||
"1in-79-6qm.title" = "Predpokladať, že posledné uložené nastavenia sú platné (odporúča sa)";
|
||||
|
||||
/* Class = "NSMenuItem"; title = "Standard keyboard volume and mute keys"; ObjectID = "1sy-Kd-WL5"; */
|
||||
"1sy-Kd-WL5.title" = "Štandardné klávesy hlasitosti a stlmenia";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "DDC min"; ObjectID = "1zE-fg-xEm"; */
|
||||
"1zE-fg-xEm.title" = "DDC min";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Volume down"; ObjectID = "21s-bv-GTK"; */
|
||||
"21s-bv-GTK.title" = "Znížiť hlasitosť";
|
||||
|
||||
/* Class = "NSMenuItem"; title = "Apply last saved values to the display"; ObjectID = "3Jr-bW-YYq"; */
|
||||
"3Jr-bW-YYq.title" = "Použiť posledné uložené hodnoty pre displej";
|
||||
|
||||
/* Class = "NSMenuItem"; title = "Show separate controls for each display in menu"; ObjectID = "3eO-bN-ZRl"; */
|
||||
"3eO-bN-ZRl.title" = "Zobraziť samostatné ovládacie prvky pre každý displej v menu";
|
||||
|
||||
/* Class = "NSMenuItem"; title = "Custom keyboard shortcuts"; ObjectID = "4CG-0I-anB"; */
|
||||
"4CG-0I-anB.title" = "Vlastné klávesové skratky";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Using window focus might not work properly with full screen apps."; ObjectID = "4dX-o1-xAc"; */
|
||||
"4dX-o1-xAc.title" = "Používanie zamerania na okno nemusí fungovať správne s aplikáciami na celú obrazovku.";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Welcome to MonitorControl"; ObjectID = "5J0-BD-top"; */
|
||||
"5J0-BD-top.title" = "Vitajte v MonitorControl";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Reset Preferences"; ObjectID = "5yT-5F-X5R"; */
|
||||
"5yT-5F-X5R.title" = "Obnoviť predvoľby";
|
||||
|
||||
/* Class = "NSMenuItem"; title = "Always hide"; ObjectID = "6mo-7S-oOO"; */
|
||||
"6mo-7S-oOO.title" = "Vždy skryť";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Slider behavior:"; ObjectID = "75n-7M-1mS"; */
|
||||
"75n-7M-1mS.title" = "Správanie posuvníka:";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Show slider tick marks"; ObjectID = "7zf-m1-gJO"; */
|
||||
"7zf-m1-gJO.title" = "Zobraziť značky na posuvníku";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Slider knob will snap to 0%, 25%, 50%, 75% and 100% when in proximity making setting these values easier. Disable for finer control."; ObjectID = "8Gx-Ya-zhp"; */
|
||||
"8Gx-Ya-zhp.title" = "Posuvník sa pri priblížení prichytí k 0%, 25%, 50%, 75% a 100%, čo uľahčuje nastavenie týchto hodnôt. Deaktivujte pre jemnejšie ovládanie.";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Use fine OSD scale for brightness and contrast"; ObjectID = "8Q8-57-xnT"; */
|
||||
"8Q8-57-xnT.title" = "Používať jemnú OSD stupnicu pre jas a kontrast";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Start using MonitorControl"; ObjectID = "8WE-da-OZC"; */
|
||||
"8WE-da-OZC.title" = "Začať používať MonitorControl";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Special thanks to our contributors!"; ObjectID = "95V-M4-2l5"; */
|
||||
"95V-M4-2l5.title" = "Špeciálne poďakovanie patrí našim spolupracovníkom!";
|
||||
|
||||
/* Class = "NSMenuItem"; title = "Custom keyboard shortcuts"; ObjectID = "9eC-PD-FHl"; */
|
||||
"9eC-PD-FHl.title" = "Vlastné klávesové skratky";
|
||||
|
||||
/* Class = "NSMenuItem"; title = "Attempt to read display settings"; ObjectID = "9yL-no-aWa"; */
|
||||
"9yL-no-aWa.title" = "Pokus o načítanie nastavení displeja";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Show tick marks at 0%, 25%, 50%, 75% and 100% for accuracy."; ObjectID = "A8P-vn-DEJ"; */
|
||||
"A8P-vn-DEJ.title" = "Zobraziť značky na posuvníku pre presnosť pri 0%, 25%, 50%, 75% a 100%.";
|
||||
|
||||
/* Class = "NSMenuItem"; title = "Use audio device name to determine which display to control"; ObjectID = "AqF-uD-KCY"; */
|
||||
"AqF-uD-KCY.title" = "Použiť názov zvukového zariadenia na určenie displeja, ktorý sa má ovládať";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Reset settings"; ObjectID = "BYS-7Y-bRz"; */
|
||||
"BYS-7Y-bRz.title" = "Obnoviť nastavenia";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Brightness:"; ObjectID = "Bhb-6l-uPQ"; */
|
||||
"Bhb-6l-uPQ.title" = "Jas:";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "(Software->DDC)"; ObjectID = "Bid-UL-blc"; */
|
||||
"Bid-UL-blc.title" = "(Softvér->DDC)";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "OSD scale:"; ObjectID = "Bqc-s3-C0w"; */
|
||||
"Bqc-s3-C0w.title" = "OSD stupnica:";
|
||||
|
||||
/* Class = "NSMenuItem"; title = "Custom"; ObjectID = "Cle-DD-vR7"; */
|
||||
"Cle-DD-vR7.title" = "Vlastné";
|
||||
|
||||
/* Version */
|
||||
"Copyright Ⓒ MonitorControl, " = "Autorské práva Ⓒ MonitorControl, ";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "⚠️ Warning! Changing some of these settings may cause system freezes or unexpected behavior!"; ObjectID = "Cz1-Mh-llk"; */
|
||||
"Cz1-Mh-llk.title" = "⚠️ Pozor! Zmena niektorých z týchto nastavení môže spôsobiť zamrznutie systému alebo neočakávané správanie!";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Alternative keys are the F14/F15 (Scroll Lock and Pause on PC keyboards, brightness keys on some Logitech keyboards)."; ObjectID = "D4H-hU-FLn"; */
|
||||
"D4H-hU-FLn.title" = "Alternatívne klávesy sú F14/F15 (Scroll Lock a Pause na PC klávesniciach, klávesy jasu na niektorých Logitech klávesniciach).";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "VCP list"; ObjectID = "D9t-vT-gNJ"; */
|
||||
"D9t-vT-gNJ.title" = "VCP zoznam";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "You can override audio device name under Displays (advanced) if needed."; ObjectID = "Dha-Tm-cDM"; */
|
||||
"Dha-Tm-cDM.title" = "V prípade potreby môžete prepísať názov zvukového zariadenia v časti Displeje (pokročilé).";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "You can disable smooth transitions for a more direct, immediate control."; ObjectID = "ENt-mP-0yH"; */
|
||||
"ENt-mP-0yH.title" = "Môžete vypnúť plynulé prechody pre priamejšie a okamžité ovládanie.";
|
||||
|
||||
/* Class = "NSMenuItem"; title = "Minimal"; ObjectID = "Eq3-z9-yIo"; */
|
||||
"Eq3-z9-yIo.title" = "Minimálne";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Scale mapping curve"; ObjectID = "Eui-5S-JR6"; */
|
||||
"Eui-5S-JR6.title" = "Krivka mapovania mierky";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Mute:"; ObjectID = "EvN-FT-vdZ"; */
|
||||
"EvN-FT-vdZ.title" = "Stlmiť:";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Volume:"; ObjectID = "FER-Ri-4UO"; */
|
||||
"FER-Ri-4UO.title" = "Hlasitosť:";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Automatically check for updates"; ObjectID = "Faf-9L-TXx"; */
|
||||
"Faf-9L-TXx.title" = "Automatická kontrola aktualizácií";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Allow zero brightness via software or combined dimming"; ObjectID = "FjB-XL-fG5"; */
|
||||
"FjB-XL-fG5.title" = "Povoliť nulový jas softvérovo alebo kombinovaným stmievaním";
|
||||
|
||||
/* Class = "NSMenuItem"; title = "None"; ObjectID = "FoA-yh-Yx3"; */
|
||||
"FoA-yh-Yx3.title" = "Žiadne";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Invert"; ObjectID = "G5A-y3-eZz"; */
|
||||
"G5A-y3-eZz.title" = "Invertovať";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Override audio device name:"; ObjectID = "H9X-it-sXs"; */
|
||||
"H9X-it-sXs.title" = "Prepísať názov zvukového zariadenia:";
|
||||
|
||||
/* Class = "NSMenuItem"; title = "Hide"; ObjectID = "HUT-Qc-kuu"; */
|
||||
"HUT-Qc-kuu.title" = "Skryť";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Brightness:"; ObjectID = "IJB-mO-e8I"; */
|
||||
"IJB-mO-e8I.title" = "Jas:";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Enable smooth brightness transitions"; ObjectID = "IK4-u5-qjf"; */
|
||||
"IK4-u5-qjf.title" = "Povoliť plynulé prechody jasu";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Use fine OSD scale for volume"; ObjectID = "J3L-MW-iJL"; */
|
||||
"J3L-MW-iJL.title" = "Použiť jemnú OSD stupnicu pre hlasitosť";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Start MonitorControl at Login"; ObjectID = "JWJ-OY-VtE"; */
|
||||
"JWJ-OY-VtE.title" = "Spustiť MonitorControl pri štarte";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Note: you can press Shift during startup for 'Safe mode' to restore defaults and avoid reading or setting anything."; ObjectID = "Jx2-gO-nq9"; */
|
||||
"Jx2-gO-nq9.title" = "Poznámka: Počas spúšťania môžete stlačiť klávesu Shift pre \"núdzový režim\" na obnovenie predvolených nastavení a zabráneniu čítania alebo nastavovania čohokoľvek.";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Enable for Apple branded and built-in displays as well"; ObjectID = "K6A-4z-1aQ"; */
|
||||
"K6A-4z-1aQ.title" = "Povoliť aj pre Apple displeje a vstavané displeje";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Screen to control:"; ObjectID = "Kfj-WK-aSL"; */
|
||||
"Kfj-WK-aSL.title" = "Ovládaný displej:";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Brightness and contrast:"; ObjectID = "LO4-4k-gxY"; */
|
||||
"LO4-4k-gxY.title" = "Jas a kontrast:";
|
||||
|
||||
/* Class = "NSMenuItem"; title = "Always show in the menu bar"; ObjectID = "MM0-Lf-VgF"; */
|
||||
"MM0-Lf-VgF.title" = "Vždy zobrazovať v lište";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Contrast:"; ObjectID = "MMk-S2-yJN"; */
|
||||
"MMk-S2-yJN.title" = "Kontrast:";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Show brightness slider in menu"; ObjectID = "MWo-6I-s9L"; */
|
||||
"MWo-6I-s9L.title" = "Zobraziť posuvník jasu v menu";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Control your external displays brightness, contrast and volume directly from your Mac, using menulet sliders or the keyboard, including native Apple keys."; ObjectID = "Mh5-1A-apq"; */
|
||||
"Mh5-1A-apq.title" = "Ovládajte jas, kontrast a hlasitosť externých displejov priamo z Macu pomocou posuvníkov menu alebo klávesnice vrátane natívnych Apple klávesov.";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Enable slider snapping"; ObjectID = "MlU-hl-d46"; */
|
||||
"MlU-hl-d46.title" = "Povolenie prichytenia posuvníka";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Separate scales for combined hardware & software dimming"; ObjectID = "O8o-hI-8eR"; */
|
||||
"O8o-hI-8eR.title" = "Samostatné stupnice pre kombinované hardvérové a softvérové stmievanie";
|
||||
|
||||
/* Class = "NSMenuItem"; title = "Standard keyboard brightness keys"; ObjectID = "Oke-bW-cb1"; */
|
||||
"Oke-bW-cb1.title" = "Štandardné klávesy jasu klávesnice";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "count:"; ObjectID = "Orv-yj-Nad"; */
|
||||
"Orv-yj-Nad.title" = "počet:";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Control method:"; ObjectID = "PaK-1f-DsW"; */
|
||||
"PaK-1f-DsW.title" = "Metóda kontroly:";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Use software dimming after the display reached zero hardware brightness for extended range. Works for DDC controlled displays only."; ObjectID = "PyY-p9-3NP"; */
|
||||
"PyY-p9-3NP.title" = "Použiť softvérové stmievanie po dosiahnutí nulového hardvérového jasu displeja pre rozšírený rozsah. Funguje iba pre DDC ovládané displeje.";
|
||||
|
||||
/* Class = "NSMenuItem"; title = "Both standard and custom shortcuts"; ObjectID = "QDG-SA-mRX"; */
|
||||
"QDG-SA-mRX.title" = "Štandardné aj vlastné skratky";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Enable Apple keyboard native key access"; ObjectID = "RBj-pU-aen"; */
|
||||
"RBj-pU-aen.title" = "Povoľte prístup pomocou natívnych Apple klávesov";
|
||||
|
||||
/* Class = "NSMenuItem"; title = "Normal"; ObjectID = "Riq-uM-bTs"; */
|
||||
"Riq-uM-bTs.title" = "Normálne";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "@the0neyouseek (Guillaume B.)\n@JoniVR (Joni Van Roost)\n@waydabber (István T.)"; ObjectID = "TKd-J8-Iyk"; */
|
||||
"TKd-J8-Iyk.title" = "@the0neyouseek (Guillaume B.)\n@JoniVR (Joni Van Roost)\n@waydabber (István T.)";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Show advanced settings"; ObjectID = "UBq-Od-SIB"; */
|
||||
"UBq-Od-SIB.title" = "Zobraziť pokročilé nastavenia";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Enable keyboard control for display"; ObjectID = "UqR-WE-jHl"; */
|
||||
"UqR-WE-jHl.title" = "Povoliť ovládanie displeja klávesnicou";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "General options:"; ObjectID = "W58-ch-j69"; */
|
||||
"W58-ch-j69.title" = "Všeobecné možnosti:";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Works best with various syncing and 'control all' keyboard settings enabled."; ObjectID = "XU4-Bn-bwH"; */
|
||||
"XU4-Bn-bwH.title" = "Funguje najlepšie, keď sú povolené rôzne nastavenia synchronizácie a nastavenie klávesnice \"ovládať všetko\".";
|
||||
|
||||
/* Class = "NSMenuItem"; title = "Change volume for all screens"; ObjectID = "Xih-P5-NyM"; */
|
||||
"Xih-P5-NyM.title" = "Zmeniť hlasitosť pre všetky displeje";
|
||||
|
||||
/* 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" = "Pre hardvérové ovládanie jasu bude k dispozícii celá stupnica OSD a po dosiahnutí jasu 0 sa použije ďalšie softvérové stmievanie.";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Identifier:"; ObjectID = "YqZ-LS-YvR"; */
|
||||
"YqZ-LS-YvR.title" = "Identifikátor:";
|
||||
|
||||
/* Class = "NSMenuItem"; title = "Depends on mouse pointer position"; ObjectID = "Ytd-mg-N5E"; */
|
||||
"Ytd-mg-N5E.title" = "Závisí od polohy ukazovateľa myši";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Volume up"; ObjectID = "Z3w-eR-qDF"; */
|
||||
"Z3w-eR-qDF.title" = "Zvýšiť hlasitosť";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Donate"; ObjectID = "ZKk-ve-rS4"; */
|
||||
"ZKk-ve-rS4.title" = "Podporiť";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Show percentages"; ObjectID = "ZUu-MR-XwA"; */
|
||||
"ZUu-MR-XwA.title" = "Zobraziť percentá";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Use hardware DDC control"; ObjectID = "ZdU-gV-V05"; */
|
||||
"ZdU-gV-V05.title" = "Použiť hardvérové ovládanie DDC";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Use brightness, volume and other settings from last time or use defaults. Values will be applied to the display upon first change by the user."; ObjectID = "an7-Aj-3fZ"; */
|
||||
"an7-Aj-3fZ.title" = "Použiť nastavenia jasu, hlasitosti a ďalšie nastavenia z minula alebo použiť predvolené nastavenia. Hodnoty sa použijú pre displej pri prvej zmene používateľom.";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Start at Login?"; ObjectID = "bA1-GF-Y2n"; */
|
||||
"bA1-GF-Y2n.title" = "Spustiť pri štarte";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "For hardware (DDC) controlled displays only. Results may vary."; ObjectID = "bIe-6O-xEH"; */
|
||||
"bIe-6O-xEH.title" = "Len pre hardvérom (DDC) ovládané displeje. Výsledky sa môžu líšiť.";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "OSD scale:"; ObjectID = "bP4-GJ-vhJ"; */
|
||||
"bP4-GJ-vhJ.title" = "OSD stupnica:";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Enable Mute DDC command"; ObjectID = "bZq-0d-lJa"; */
|
||||
"bZq-0d-lJa.title" = "Povoliť stlmenie DDC príkaz";
|
||||
|
||||
/* Class = "NSMenuItem"; title = "Show sliders only for the display currently showing the menu"; ObjectID = "bbf-sS-uGv"; */
|
||||
"bbf-sS-uGv.title" = "Zobraziť posuvníky len pre aktuálne zobrazený displej";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Disable macOS volume OSD"; ObjectID = "bkM-Px-U3b"; */
|
||||
"bkM-Px-U3b.title" = "Zakázať macOS OSD hlasitosť";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Show volume slider in menu"; ObjectID = "c9D-MB-lma"; */
|
||||
"c9D-MB-lma.title" = "Zobraziť posuvník hlasitosti v menu";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Upon startup or wake:"; ObjectID = "cNt-Cq-vK4"; */
|
||||
"cNt-Cq-vK4.title" = "Po spustení alebo prebudení:";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Normally keyboard controls change one OSD chiclet worth of value and Shift+Option allows fine control. This makes fine control default."; ObjectID = "f6J-Ui-uMB"; */
|
||||
"f6J-Ui-uMB.title" = "Obvykle ovládacie prvky klávesnice menia hodnotu OSD o jednu a Shift+Option umožňuje jemné ovládanie. Týmto sa jemné ovládanie stáva predvoleným.";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Reset Name"; ObjectID = "f9g-8s-gdd"; */
|
||||
"f9g-8s-gdd.title" = "Obnoviť názov";
|
||||
|
||||
/* Class = "NSMenuItem"; title = "Show as icons"; ObjectID = "fR3-kq-cps"; */
|
||||
"fR3-kq-cps.title" = "Zobraziť ako ikony";
|
||||
|
||||
/* Class = "NSMenuItem"; title = "Show as text"; ObjectID = "fWd-Es-zsy"; */
|
||||
"fWd-Es-zsy.title" = "Zobraziť ako text";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Brightness control:"; ObjectID = "fe9-Ia-t9m"; */
|
||||
"fe9-Ia-t9m.title" = "Ovládanie jasu:";
|
||||
|
||||
/* 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 a vstavané displeje už majú v Ovládacom centre posuvník jasu.";
|
||||
|
||||
/* Class = "NSMenuItem"; title = "Use window focus to determine which display to control"; ObjectID = "gTR-FW-FHc"; */
|
||||
"gTR-FW-FHc.title" = "Použiť zaostrenie na okno na určenie, ktorý displej sa má ovládať";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Brightness slider for hardware or software controlled displays or TVs."; ObjectID = "gXH-HL-ZOL"; */
|
||||
"gXH-HL-ZOL.title" = "Posuvník jasu pre hardvérovo alebo softvérovo ovládané displeje alebo televízory.";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Relaunch the app to access Preferences if the menu option is not accessible. Use the button below to quit the app."; ObjectID = "hF7-fM-aKr"; */
|
||||
"hF7-fM-aKr.title" = "Ak nie je dostupné menu, znovu spustite aplikáciu a získajte prístup k položke Predvoľby. Na ukončenie aplikácie použite tlačidlo nižšie.";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Get current"; ObjectID = "hkC-vq-IcD"; */
|
||||
"hkC-vq-IcD.title" = "Získajte aktuálne";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Additional controls:"; ObjectID = "i5X-M5-Tf5"; */
|
||||
"i5X-M5-Tf5.title" = "Ďalšie ovládacie prvky:";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Start at Login"; ObjectID = "j72-NF-zsW"; */
|
||||
"j72-NF-zsW.title" = "Spustiť pri štarte";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Toggle Mute"; ObjectID = "jK7-7w-uib"; */
|
||||
"jK7-7w-uib.title" = "Prepnúť stlmenie";
|
||||
|
||||
/* Class = "NSMenuItem"; title = "Change for all screens"; ObjectID = "jSj-HB-T2t"; */
|
||||
"jSj-HB-T2t.title" = "Zmeniť pre všetky displeje";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Check for updates"; ObjectID = "jVH-oc-rUi"; */
|
||||
"jVH-oc-rUi.title" = "Skontrolovať aktualizácie";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "MonitorControl needs access to \"accessibility\" to use macOS native keys to control your display.\nYou can enable it by adding MonitorControl in System Preferences > Security and Privacy > Accessibility."; ObjectID = "kBJ-Zf-1k2"; */
|
||||
"kBJ-Zf-1k2.title" = "MonitorControl potrebuje prístup k \"Prístupnosti\" pre ovládanie displeja natívne macOS klávesy.\nMôžete ho povoliť pridaním MonitorControl v Systémové nastavenia > Súkromie a bezpečnosť > Prístupnosť.";
|
||||
|
||||
/* Class = "NSMenuItem"; title = "Depends on mouse pointer position"; ObjectID = "km4-hK-auM"; */
|
||||
"km4-hK-auM.title" = "Závisí od polohy ukazovateľa myši";
|
||||
|
||||
/* Class = "NSMenuItem"; title = "Use combined slider for all displays"; ObjectID = "lA0-tv-qRs"; */
|
||||
"lA0-tv-qRs.title" = "Použiť kombinovaný posuvník pre všetky displeje";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Display type:"; ObjectID = "lSJ-6w-KJ2"; */
|
||||
"lSJ-6w-KJ2.title" = "Typ displeja:";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Screen to control:"; ObjectID = "ltL-gR-K3Z"; */
|
||||
"ltL-gR-K3Z.title" = "Ovládaný displej:";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Volume:"; ObjectID = "mue-fa-8z6"; */
|
||||
"mue-fa-8z6.title" = "Hlasitosť:";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Avoid gamma table manipulation"; ObjectID = "na6-mS-MPi"; */
|
||||
"na6-mS-MPi.title" = "Vyhnite sa manipulácii s gama tabuľkou";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Ensure MonitorControl is always running when you need it by launching the app at startup."; ObjectID = "nk6-Gh-Mfs"; */
|
||||
"nk6-Gh-Mfs.title" = "Spustením aplikácie pri štarte zabezpečíte, aby bol MonitorControl vždy spustený, keď to potrebujete.";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Brightness up"; ObjectID = "nty-g6-Sde"; */
|
||||
"nty-g6-Sde.title" = "Zvýšenie jasu";
|
||||
|
||||
/* Class = "NSMenuItem"; title = "Disable keyboard"; ObjectID = "oHf-Gh-68c"; */
|
||||
"oHf-Gh-68c.title" = "Vypnúť klávesnicu";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Application:"; ObjectID = "okD-DG-pYa"; */
|
||||
"okD-DG-pYa.title" = "Aplikácia:";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Longer delay during DDC read operations"; ObjectID = "pF5-Sw-7BR"; */
|
||||
"pF5-Sw-7BR.title" = "Dlhšie oneskorenie počas operácií čítania DDC";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Open System Preferences…"; ObjectID = "pVc-wG-Bdh"; */
|
||||
"pVc-wG-Bdh.title" = "Otvoriť Systémové nastavenia...";
|
||||
|
||||
/* 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" = "Jas môžete ovládať pomocou klávesov jasu na Apple klávesnici. Podržaním klávesu Control môžete upraviť vstavaný displej, stlačením kombinácie klávesov Control + Command upraviť externé displeje. Pre jemné ovládanie podržte Shift+Option.";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "DDC max"; ObjectID = "psF-vX-AFB"; */
|
||||
"psF-vX-AFB.title" = "DDC max";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Brightness down"; ObjectID = "q5a-Ix-Hjs"; */
|
||||
"q5a-Ix-Hjs.title" = "Zníženie jasu";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Show contrast slider in menu"; ObjectID = "qO0-dB-yUs"; */
|
||||
"qO0-dB-yUs.title" = "Zobrazenie posuvníka kontrastu v menu";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Show percentage next to slider for more precision."; ObjectID = "qXy-CL-Wf1"; */
|
||||
"qXy-CL-Wf1.title" = "Zobraziť percentá vedľa posuvníka pre väčšiu presnosť.";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Quit application"; ObjectID = "qlb-wH-qr4"; */
|
||||
"qlb-wH-qr4.title" = "Ukončiť aplikáciu";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Volume control (DDC only):"; ObjectID = "qoh-Gn-f11"; */
|
||||
"qoh-Gn-f11.title" = "Ovládanie hlasitosti (iba DDC):";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Combine hardware and software dimming"; ObjectID = "r76-Zc-x09"; */
|
||||
"r76-Zc-x09.title" = "Kombinácia hardvérového a softvérového stmievania";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "General menu items style:"; ObjectID = "thh-DG-ecH"; */
|
||||
"thh-DG-ecH.title" = "Všeobecný štýl položiek menu:";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Menu Icon:"; ObjectID = "u6s-Pb-BCG"; */
|
||||
"u6s-Pb-BCG.title" = "Ikona menu:";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Works if an audio device is selected with no native volume control."; ObjectID = "uF5-a9-Ngz"; */
|
||||
"uF5-a9-Ngz.title" = "Funguje, ak je vybraté zvukové zariadenie bez natívneho ovládania hlasitosti.";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Contrast (DDC):"; ObjectID = "urd-Rh-aiL"; */
|
||||
"urd-Rh-aiL.title" = "Kontrast (DDC):";
|
||||
|
||||
/* Class = "NSButtonCell"; title = "Do not use alternative brightness keys"; ObjectID = "vd2-Lk-neX"; */
|
||||
"vd2-Lk-neX.title" = "Nepoužívať alternatívne klávesy jasu";
|
||||
|
||||
/* Class = "NSMenuItem"; title = "Heavy"; ObjectID = "vik-vN-bJe"; */
|
||||
"vik-vN-bJe.title" = "Ťažké";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Multiple displays:"; ObjectID = "vri-pv-tJ4"; */
|
||||
"vri-pv-tJ4.title" = "Viacero displejov:";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "DDC read polling mode:"; ObjectID = "vwm-hY-on5"; */
|
||||
"vwm-hY-on5.title" = "Režim čítania DDC:";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Useful when a display tends to reset its settings during sleep."; ObjectID = "w8B-x6-sq5"; */
|
||||
"w8B-x6-sq5.title" = "Užitočné, keď má displej tendenciu obnoviť svoje nastavenia počas spánku.";
|
||||
|
||||
/* Class = "NSTextFieldCell"; 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."; ObjectID = "wjv-tq-iUx"; */
|
||||
"wjv-tq-iUx.title" = "Zmeny spôsobené snímačom okolitého svetla alebo vykonané pomocou Touch Baru, Ovládacieho centra a Systémových nastavení sa prenesú na všetky displeje.";
|
||||
|
||||
/* Class = "NSMenuItem"; title = "Only if at least one slider is present"; ObjectID = "xLa-PN-rsq"; */
|
||||
"xLa-PN-rsq.title" = "Iba ak je prítomný aspoň jeden posuvník";
|
||||
|
||||
/* Class = "NSMenuItem"; title = "Both standard and custom shortcuts"; ObjectID = "xQJ-aJ-VhH"; */
|
||||
"xQJ-aJ-VhH.title" = "Štandardné aj vlastné skratky";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Update settings from the display. May not work with some hardware."; ObjectID = "xjq-hs-wWB"; */
|
||||
"xjq-hs-wWB.title" = "Aktualizovať nastavenia z displeja. Nemusí fungovať s niektorým hardvérom.";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Available"; ObjectID = "yBJ-5d-I7e"; */
|
||||
"yBJ-5d-I7e.title" = "Dostupné";
|
||||
|
||||
/* 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" = "POZOR! Ak je táto možnosť zapnutá, môžete sa ocitnúť v situácii, keď skončíte s prázdnym displejom. To v kombinácii s deaktivovanými ovládacími prvkami klávesnice môže byť frustrujúce.";
|
||||
|
||||
/* Class = "NSMenuItem"; title = "Disable keyboard"; ObjectID = "zHa-xo-XPW"; */
|
||||
"zHa-xo-XPW.title" = "Vypnúť klávesnicu";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Combined dimming switchover point:"; ObjectID = "zv8-pZ-OPy"; */
|
||||
"zv8-pZ-OPy.title" = "Kombinovaný prepínací bod stmievania:";
|
||||
|
|
@ -19,7 +19,7 @@
|
|||
<key>CFBundleShortVersionString</key>
|
||||
<string>$(MARKETING_VERSION)</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>7050</string>
|
||||
<string>7052</string>
|
||||
<key>LSApplicationCategoryType</key>
|
||||
<string>public.app-category.utilities</string>
|
||||
<key>LSBackgroundOnly</key>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue