diff --git a/src/renderer/i18n/en.ts b/src/renderer/i18n/en.ts index cd247fcf..cc54fb30 100644 --- a/src/renderer/i18n/en.ts +++ b/src/renderer/i18n/en.ts @@ -635,22 +635,23 @@ const English = { "High values let you press the next key before releasing the Dual-Function key without triggering the hold function.", overlapThresholdTip3: "Low values will mean that you’ll trigger the hold function whenever pressing a key without having totally released a Dual-Function key.", - overlapThresholdTip4: - "If you change it to Less, you will nearly always affect the subsequent pressed key with the dual function as it will be counting as double pressing instead of chording.", + overlapThresholdTipDefault: "Default value: 80", overlapThresholdsub: " - Percentage from 0 to 100", holdTimeoutTip1: "This setting determines the amount of time it takes for the “hold” function to activate.", holdTimeoutTip2: "With a high value, it’ll take more time to activate the hold function.", holdTimeoutTip3: "With a low value, you might trigger the hold function if you linger on the key too much while typing.", - holdTimeoutTip4: "If the slider is at 'High', it'll take a bit more time for the hold function to activate.", + holdTimeoutTipDefault: "Default value: 250", minHold: "Dual-Function Keys - Minimum Hold time", minHoldsub: " - From 0 to 254 milliseconds", minHoldTip1: "Set the minimum length of time a qukey must be held before it can resolve to its alternate key value", minHoldTip2: "If a qukey is pressed and released in less than this number of milliseconds, it will always produce its primary key value", + minHoldTipDefault: "", minPrior: "Dual-Function Keys - Minimum Prior Interval", minPriorsub: " - From 0 to 254 milliseconds", minPriorTip1: "Set the minimum interval between the previous keypress and the qukey press", minPriorTip2: "to make the qukey eligible to become its alternate keycode", + minPriorTipDefault: "", }, superkeys: { title: "Typing", @@ -658,12 +659,11 @@ const English = { timeoutTip1: "This setting determines how much a Superkey waits for the next tap.", timeoutTip2: "With a low value, you need to be fast pressing the next tap, or the Superkey will output the previous tap.", timeoutTip3: "With a high value, it will take more time for the Superkey to output the second tap.", - timeoutTip4: - "If you choose a fast typing speed, you might activate those actions by mistake if you 'linger' too much on the key.", + timeoutTipDefault: "Default value: 250", chordingTip1: "This setting determines the amount of time it takes for the “hold” function to activate.", chordingTip2: "With a high value, it’ll take more time to activate the hold function.", chordingTip3: "With a low value, you might trigger the hold function if you linger on the key too much while typing.", - chordingTip4: "If the slider is at 'High', it'll take a bit more time for the hold function to activate.", + chordingTipDefault: "Default value: 200", repeat: "Adjust repeat time interval between the emission of held keys after waitfor period. (this doesn't affect all keys)", repeatsub: " - time from 0 to 254 milliseconds", @@ -675,23 +675,24 @@ const English = { overlapTip1: "This setting determines the overlap between the current and the next key press when using superkeys.", overlapTip2: "With a low value, you will be able to chord better as it will not overlap the key presses.", overlapTip3: "With a high value, the overlap is more responsive so it detects the superkey as being intercepted easier.", + overlapTipDefault: "Default value: 20", }, mouse: { title: "Mouse keys", subtitle1: "MOUSE SPEED", - speed: "Cursor speed", + speed: "Cursor speed - Default: 20", speedsub: " - From 0 to 254 pixels", speedDelay: "Delay between steps (the higher the number, the slower the mouse movement)", speedDelaysub: " - From 0 to 65,534 milliseconds", - speedLimit: "Maximum cursor speed", + speedLimit: "Maximum cursor speed - Default: 127", speedLimitsub: " - From 0 to 254 pixels", subtitle2: "MOUSE ACCELERATION", - accelSpeed: "Cursor acceleration", + accelSpeed: "Cursor acceleration - Default: 20", accelSpeedsub: " - From 0 to 254 pixels", accelDelay: "Acceleration delay between steps (the higher the number, the slower the mouse movement)", accelDelaysub: " - From 0 to 65,534 milliseconds", subtitle3: "WHEEL SPEED", - wheelSpeed: "Wheel speed", + wheelSpeed: "Wheel speed - Default: 2", wheelSpeedsub: " - From 0 to 254 pixels", wheelDelay: "Wheel delay between steps (the higher the number, the slower the mouse movement)", wheelDelaysub: " - From 0 to 65,534 milliseconds", diff --git a/src/renderer/modules/Settings/KeyboardSettings.tsx b/src/renderer/modules/Settings/KeyboardSettings.tsx index 04f2d479..289e2db3 100644 --- a/src/renderer/modules/Settings/KeyboardSettings.tsx +++ b/src/renderer/modules/Settings/KeyboardSettings.tsx @@ -353,6 +353,7 @@ function KeyboardSettings(props: KeyboardSettingsProps) { @@ -391,6 +392,7 @@ function KeyboardSettings(props: KeyboardSettingsProps) { @@ -428,6 +430,7 @@ function KeyboardSettings(props: KeyboardSettingsProps) { @@ -465,6 +468,7 @@ function KeyboardSettings(props: KeyboardSettingsProps) { @@ -503,6 +507,7 @@ function KeyboardSettings(props: KeyboardSettingsProps) { @@ -541,6 +546,7 @@ function KeyboardSettings(props: KeyboardSettingsProps) { @@ -579,6 +585,7 @@ function KeyboardSettings(props: KeyboardSettingsProps) {