1
0
forked from me/IronOS

Bootup logo settings (#1241)

Adds ability to adjust the time shown for the bootup logo.
This commit is contained in:
discip
2022-04-02 03:39:14 +02:00
committed by GitHub
parent 62dd2abf12
commit 0b8192b690
42 changed files with 750 additions and 1013 deletions

View File

@@ -109,7 +109,7 @@ On device help text:
Temperature used in "boost mode" Temperature used in "boost mode"
### Setting: Heat on power up ### Setting: Start-up behavior
When the device powers up, should it enter into a special mode. These settings set it to either start into soldering mode, sleeping mode or auto mode (Enters into soldering mode on the first movement). When the device powers up, should it enter into a special mode. These settings set it to either start into soldering mode, sleeping mode or auto mode (Enters into soldering mode on the first movement).
@@ -117,7 +117,7 @@ On device help text:
O=off | S=soldering temp | Z=standby at sleep temp until moved | R=standby without heating until moved O=off | S=soldering temp | Z=standby at sleep temp until moved | R=standby without heating until moved
### Setting: Cooldown blink ### Setting: Cooldown flashing
If the idle screen should blink the tip temperature for attention while the tip is over 50°C. Intended as a 'tip is still hot' warning. If the idle screen should blink the tip temperature for attention while the tip is over 50°C. Intended as a 'tip is still hot' warning.
@@ -133,13 +133,13 @@ On device help text:
Start tip temperature offset calibration Start tip temperature offset calibration
### Setting: Factory reset? ### Setting: Restore factory settings?
Resets all settings and calibrations to factory defaults. Does NOT erase custom user boot up logo's. Resets all settings and calibrations to factory defaults. Does NOT erase custom user boot up logo's.
On device help text: On device help text:
Reset settings to default Reset all settings to default
### Setting: Calibrate input voltage? ### Setting: Calibrate input voltage?
@@ -189,7 +189,7 @@ On device help text:
Maximum power the iron can use (W=watt) Maximum power the iron can use (W=watt)
### Setting: Reverse + - keys ### Setting: Swap + - keys
Swaps which button increments and decrements on temperature change screens. Swaps which button increments and decrements on temperature change screens.
@@ -285,7 +285,7 @@ On device help text:
Current firmware language Current firmware language
### Setting: Screen contrast ### Setting: Screen brightness
Display brightness. Higher values age the OLED faster due to burn-in. (However, it is notable that most of these screens die from other causes first.) Display brightness. Higher values age the OLED faster due to burn-in. (However, it is notable that most of these screens die from other causes first.)
@@ -300,3 +300,15 @@ Inverts the entire OLED.
On device help text: On device help text:
Invert the colours of the OLED screen Invert the colours of the OLED screen
### Setting: Boot logo duration
Sets the duration of the boot logo from 1 second to 4 seconds.
- For static images this sets the time the logo is displayed for.
- For animations this sets the time the last frame is displayed for after the animation has been played.
The infinity icon sets a logo or the last frame of an animation to be displayed until a button is pressed.
On device help text:
Sets the duration for the boot logo (S=seconds)

View File

@@ -2,26 +2,17 @@
"languageCode": "BE", "languageCode": "BE",
"languageLocalName": "Беларуская", "languageLocalName": "Беларуская",
"fonts": ["ascii_basic", "latin_extended", "cyrillic"], "fonts": ["ascii_basic", "latin_extended", "cyrillic"],
"tempUnitFahrenheit": false,
"messages": { "messages": {
"SettingsCalibrationDone": "Каліброўка закончана!",
"SettingsCalibrationWarning": "Перад тым, як працягнуць, каліласка, упэўнецеся, што джала мае комнатную тэмпературу!", "SettingsCalibrationWarning": "Перад тым, як працягнуць, каліласка, упэўнецеся, што джала мае комнатную тэмпературу!",
"SettingsResetWarning": "Вы ўпэннены, што жадаеце зкінуць налады да першапачатковых значэнняў?", "SettingsResetWarning": "Вы ўпэннены, што жадаеце зкінуць налады да першапачатковых значэнняў?",
"UVLOWarningString": "НАПРУГА--", "UVLOWarningString": "НАПРУГА--",
"UndervoltageString": "Нізкая напруга", "UndervoltageString": "Нізкая напруга",
"InputVoltageString": "Сілкаванне В: ", "InputVoltageString": "Сілкаванне В: ",
"WarningTipTempString": "Тэмп. джала: ",
"BadTipString": "ДЖАЛА--",
"SleepingSimpleString": "Zzzz", "SleepingSimpleString": "Zzzz",
"SleepingAdvancedString": "Чаканне...", "SleepingAdvancedString": "Чаканне...",
"WarningSimpleString": "ГОРАЧА!",
"WarningAdvancedString": "!!! ГАРАЧАЕ !!!\n!!! ДЖАЛА !!!",
"SleepingTipAdvancedString": "Джала:", "SleepingTipAdvancedString": "Джала:",
"IdleTipString": "Джала:", "OffString": "Выкл."
"IdleSetString": " ->",
"TipDisconnectedString": "ДЖАЛА АДЛУЧАНА",
"SolderingAdvancedPowerPrompt": "Сілкаванне: ",
"OffString": "Выкл.",
"YourGainMessage": "Прырост:"
}, },
"messagesWarn": { "messagesWarn": {
"ResetOKMessage": "Скід OK", "ResetOKMessage": "Скід OK",
@@ -51,8 +42,7 @@
"SettingSensitivityHigh": "В", "SettingSensitivityHigh": "В",
"SettingLockDisableChar": "А", "SettingLockDisableChar": "А",
"SettingLockBoostChar": "Т", "SettingLockBoostChar": "Т",
"SettingLockFullChar": "П", "SettingLockFullChar": "П"
"SettingNAChar": "Н/Д"
}, },
"menuGroups": { "menuGroups": {
"PowerMenu": { "PowerMenu": {
@@ -208,6 +198,10 @@
"ColourInversion": { "ColourInversion": {
"text2": ["Экран", "Інвертаваць"], "text2": ["Экран", "Інвертаваць"],
"desc": "Інвертаваць колеры OLED-экрана" "desc": "Інвертаваць колеры OLED-экрана"
},
"LOGOTime": {
"text2": ["Boot logo", "duration"],
"desc": "Sets the duration for the boot logo (S=seconds)"
} }
} }
} }

View File

@@ -2,33 +2,24 @@
"languageCode": "BG", "languageCode": "BG",
"languageLocalName": "Български", "languageLocalName": "Български",
"fonts": ["ascii_basic", "cyrillic"], "fonts": ["ascii_basic", "cyrillic"],
"tempUnitFahrenheit": false,
"messages": { "messages": {
"SettingsCalibrationDone": "Калибрацията завършена!",
"SettingsCalibrationWarning": "Уверете се, че върха на поялника е със стайна температура преди да продължите!", "SettingsCalibrationWarning": "Уверете се, че върха на поялника е със стайна температура преди да продължите!",
"SettingsResetWarning": "Сигурни ли сте, че искате да върнете фабричните настройки?", "SettingsResetWarning": "Сигурни ли сте, че искате да върнете фабричните настройки?",
"UVLOWarningString": "Ниско DC Напрежение", "UVLOWarningString": "Ниско DC Напрежение",
"UndervoltageString": "Ниско Напрежение", "UndervoltageString": "Ниско Напрежение",
"InputVoltageString": "Входно V: ", "InputVoltageString": "Входно V: ",
"WarningTipTempString": "Темп.: ",
"BadTipString": "ЛОШ ВРЪХ",
"SleepingSimpleString": "Сън", "SleepingSimpleString": "Сън",
"SleepingAdvancedString": "Хър Хър Хър...", "SleepingAdvancedString": "Хър Хър Хър...",
"WarningSimpleString": "ОХ!",
"WarningAdvancedString": "ВНИМАНИЕ! ТОПЛО!",
"SleepingTipAdvancedString": "Връх:", "SleepingTipAdvancedString": "Връх:",
"IdleTipString": "Връх:", "OffString": "Изкл."
"IdleSetString": " Настройка:",
"TipDisconnectedString": "ПРЕКЪСНАТ ВРЪХ",
"SolderingAdvancedPowerPrompt": "Захранване: ",
"OffString": "Изкл.",
"YourGainMessage": "Усилване:"
}, },
"messagesWarn": { "messagesWarn": {
"ResetOKMessage": "Нулиране", "ResetOKMessage": "Нулиране",
"SettingsResetMessage": ["Настройките бяха", "нулирани!"], "SettingsResetMessage": ["Настройките бяха", "нулирани!"],
"NoAccelerometerMessage": ["No accelerometer", "detected!"], "NoAccelerometerMessage": ["No accelerometer", "detected!"],
"NoPowerDeliveryMessage": ["No USB-PD IC", "detected!"], "NoPowerDeliveryMessage": ["No USB-PD IC", "detected!"],
"LockingKeysString": " LOCKED", "LockingKeysString": "LOCKED",
"UnlockingKeysString": "UNLOCKED", "UnlockingKeysString": "UNLOCKED",
"WarningKeysLockedString": "!LOCKED!", "WarningKeysLockedString": "!LOCKED!",
"WarningThermalRunaway": ["Thermal", "Runaway"] "WarningThermalRunaway": ["Thermal", "Runaway"]
@@ -45,15 +36,13 @@
"SettingStartSolderingChar": "Р", "SettingStartSolderingChar": "Р",
"SettingStartSleepChar": "С", "SettingStartSleepChar": "С",
"SettingStartSleepOffChar": "П", "SettingStartSleepOffChar": "П",
"SettingStartNoneChar": "F",
"SettingSensitivityOff": "O", "SettingSensitivityOff": "O",
"SettingSensitivityLow": "L", "SettingSensitivityLow": "L",
"SettingSensitivityMedium": "M", "SettingSensitivityMedium": "M",
"SettingSensitivityHigh": "H", "SettingSensitivityHigh": "H",
"SettingLockDisableChar": "D", "SettingLockDisableChar": "D",
"SettingLockBoostChar": "B", "SettingLockBoostChar": "B",
"SettingLockFullChar": "F", "SettingLockFullChar": "F"
"SettingNAChar": "N/A"
}, },
"menuGroups": { "menuGroups": {
"PowerMenu": { "PowerMenu": {
@@ -148,7 +137,7 @@
}, },
"PDNegTimeout": { "PDNegTimeout": {
"text2": ["PD", "timeout"], "text2": ["PD", "timeout"],
"desc": "PD negotiation timeout in 100ms steps for compatibility with some QC chargers (0: disabled)" "desc": "PD negotiation timeout in 100ms steps for compatibility with some QC chargers"
}, },
"PowerLimit": { "PowerLimit": {
"text2": ["Лимит на", "мощност"], "text2": ["Лимит на", "мощност"],
@@ -171,12 +160,12 @@
"desc": "Поддържане на интензивност на захранващия импулс" "desc": "Поддържане на интензивност на захранващия импулс"
}, },
"HallEffSensitivity": { "HallEffSensitivity": {
"text2": ["Hall Eff", "Sensitivity"], "text2": ["Hall sensor", "sensitivity"],
"desc": "Sensitivity of the Hall effect sensor in detecting sleep (0=Изключено | 1=Слабо | ... | 9=Силно)" "desc": "Sensitivity of the Hall effect sensor to detect sleep (0=Изключено | 1=Слабо | ... | 9=Силно)"
}, },
"LockingMode": { "LockingMode": {
"text2": ["Allow buttons", "locking"], "text2": ["Allow locking", "buttons"],
"desc": "When soldering, long press on both buttons lock them (D=Disable | B=Boost only | F=Full locking)" "desc": "While soldering, hold down both buttons to toggle locking them (D=disable | B=boost mode only | F=full locking)"
}, },
"MinVolCell": { "MinVolCell": {
"text2": ["Minimum", "voltage"], "text2": ["Minimum", "voltage"],
@@ -184,15 +173,15 @@
}, },
"AnimLoop": { "AnimLoop": {
"text2": ["Anim.", "loop"], "text2": ["Anim.", "loop"],
"desc": "Loop icon animations in root menu" "desc": "Loop icon animations in main menu"
}, },
"AnimSpeed": { "AnimSpeed": {
"text2": ["Anim.", "speed"], "text2": ["Anim.", "speed"],
"desc": "Speed of icon animations in menu (O=off | L=low | M=medium | H=high)" "desc": "Pace of icon animations in menu (O=off | S=slow | M=medium | F=fast)"
}, },
"PowerPulseWait": { "PowerPulseWait": {
"text2": ["Power pulse", "wait time"], "text2": ["Power pulse", "delay"],
"desc": "Time to wait before triggering every keep-awake pulse (x 2,5с)" "desc": "Delay before keep-awake-pulse is triggered (x 2,5с)"
}, },
"PowerPulseDuration": { "PowerPulseDuration": {
"text2": ["Power pulse", "duration"], "text2": ["Power pulse", "duration"],
@@ -203,12 +192,16 @@
"desc": "" "desc": ""
}, },
"Brightness": { "Brightness": {
"text2": ["Screen", "Brightness"], "text2": ["Screen", "brightness"],
"desc": "Adjust the contrast/brightness of the OLED screen" "desc": "Adjust the brightness of the OLED screen"
}, },
"ColourInversion": { "ColourInversion": {
"text2": ["Screen", "Invert"], "text2": ["Invert", "screen"],
"desc": "Invert the colours of the OLED screen" "desc": "Invert the colours of the OLED screen"
},
"LOGOTime": {
"text2": ["Boot logo", "duration"],
"desc": "Sets the duration for the boot logo (S=seconds)"
} }
} }
} }

View File

@@ -2,33 +2,24 @@
"languageCode": "CS", "languageCode": "CS",
"languageLocalName": "Český", "languageLocalName": "Český",
"fonts": ["ascii_basic", "latin_extended"], "fonts": ["ascii_basic", "latin_extended"],
"tempUnitFahrenheit": false,
"messages": { "messages": {
"SettingsCalibrationDone": "Kalibrace dokončena!",
"SettingsCalibrationWarning": "Ujistěte se, že hrot má pokojovou teplotu!", "SettingsCalibrationWarning": "Ujistěte se, že hrot má pokojovou teplotu!",
"SettingsResetWarning": "Opravdu chcete resetovat zařízení do továrního nastavení?", "SettingsResetWarning": "Opravdu chcete resetovat zařízení do továrního nastavení?",
"UVLOWarningString": "Nízké DC", "UVLOWarningString": "Nízké DC",
"UndervoltageString": "! Nízké napětí !", "UndervoltageString": "! Nízké napětí !",
"InputVoltageString": "Napětí: ", "InputVoltageString": "Napětí: ",
"WarningTipTempString": "Teplota: ",
"BadTipString": "ŠP. HROT",
"SleepingSimpleString": "Zzz ", "SleepingSimpleString": "Zzz ",
"SleepingAdvancedString": "Režim spánku...", "SleepingAdvancedString": "Režim spánku...",
"WarningSimpleString": "PÁLÍ",
"WarningAdvancedString": "!! HORKÝ HROT !!",
"SleepingTipAdvancedString": "Hrot:", "SleepingTipAdvancedString": "Hrot:",
"IdleTipString": "Hrot:", "OffString": "Vyp"
"IdleSetString": " Cíl:",
"TipDisconnectedString": "HROT NEPŘIPOJEN",
"SolderingAdvancedPowerPrompt": "Ohřev: ",
"OffString": "Vyp",
"YourGainMessage": "Zisk:"
}, },
"messagesWarn": { "messagesWarn": {
"ResetOKMessage": "Reset OK", "ResetOKMessage": "Reset OK",
"SettingsResetMessage": ["Tov. nas. obnov.", ""], "SettingsResetMessage": ["Tov. nas. obnov.", ""],
"NoAccelerometerMessage": ["No accelerometer", "detected!"], "NoAccelerometerMessage": ["No accelerometer", "detected!"],
"NoPowerDeliveryMessage": ["No USB-PD IC", "detected!"], "NoPowerDeliveryMessage": ["No USB-PD IC", "detected!"],
"LockingKeysString": " LOCKED", "LockingKeysString": "LOCKED",
"UnlockingKeysString": "UNLOCKED", "UnlockingKeysString": "UNLOCKED",
"WarningKeysLockedString": "!LOCKED!", "WarningKeysLockedString": "!LOCKED!",
"WarningThermalRunaway": ["Thermal", "Runaway"] "WarningThermalRunaway": ["Thermal", "Runaway"]
@@ -51,8 +42,7 @@
"SettingSensitivityHigh": "H", "SettingSensitivityHigh": "H",
"SettingLockDisableChar": "D", "SettingLockDisableChar": "D",
"SettingLockBoostChar": "B", "SettingLockBoostChar": "B",
"SettingLockFullChar": "F", "SettingLockFullChar": "F"
"SettingNAChar": "N/A"
}, },
"menuGroups": { "menuGroups": {
"PowerMenu": { "PowerMenu": {
@@ -170,12 +160,12 @@
"desc": "Puls pro udržení zařízení v chodu (kvůli power bankám)." "desc": "Puls pro udržení zařízení v chodu (kvůli power bankám)."
}, },
"HallEffSensitivity": { "HallEffSensitivity": {
"text2": ["Hall Eff", "Sensitivity"], "text2": ["Hall sensor", "sensitivity"],
"desc": "Sensitivity of the Hall effect sensor in detecting sleep (0=Vyp | 1=Min | ... | 9=Max)" "desc": "Sensitivity of the Hall effect sensor to detect sleep (0=Vyp | 1=Min | ... | 9=Max)"
}, },
"LockingMode": { "LockingMode": {
"text2": ["Allow buttons", "locking"], "text2": ["Allow locking", "buttons"],
"desc": "When soldering, long press on both buttons lock them (D=Disable | B=Boost only | F=Full locking)" "desc": "While soldering, hold down both buttons to toggle locking them (D=disable | B=boost mode only | F=full locking)"
}, },
"MinVolCell": { "MinVolCell": {
"text2": ["Minimum", "voltage"], "text2": ["Minimum", "voltage"],
@@ -183,15 +173,15 @@
}, },
"AnimLoop": { "AnimLoop": {
"text2": ["Anim.", "loop"], "text2": ["Anim.", "loop"],
"desc": "Loop icon animations in root menu" "desc": "Loop icon animations in main menu"
}, },
"AnimSpeed": { "AnimSpeed": {
"text2": ["Anim.", "speed"], "text2": ["Anim.", "speed"],
"desc": "Speed of icon animations in menu (O=off | L=low | M=medium | H=high)" "desc": "Pace of icon animations in menu (O=off | P=slow | M=medium | R=fast)"
}, },
"PowerPulseWait": { "PowerPulseWait": {
"text2": ["Power pulse", "wait time"], "text2": ["Power pulse", "delay"],
"desc": "Time to wait before triggering every keep-awake pulse (x 2,5s)" "desc": "Delay before keep-awake-pulse is triggered (x 2,5s)"
}, },
"PowerPulseDuration": { "PowerPulseDuration": {
"text2": ["Power pulse", "duration"], "text2": ["Power pulse", "duration"],
@@ -202,12 +192,16 @@
"desc": "" "desc": ""
}, },
"Brightness": { "Brightness": {
"text2": ["Screen", "Brightness"], "text2": ["Screen", "brightness"],
"desc": "Adjust the contrast/brightness of the OLED screen" "desc": "Adjust the brightness of the OLED screen"
}, },
"ColourInversion": { "ColourInversion": {
"text2": ["Screen", "Invert"], "text2": ["Invert", "screen"],
"desc": "Invert the colours of the OLED screen" "desc": "Invert the colours of the OLED screen"
},
"LOGOTime": {
"text2": ["Boot logo", "duration"],
"desc": "Sets the duration for the boot logo (S=seconds)"
} }
} }
} }

View File

@@ -2,33 +2,24 @@
"languageCode": "DA", "languageCode": "DA",
"languageLocalName": "Dansk", "languageLocalName": "Dansk",
"fonts": ["ascii_basic", "latin_extended"], "fonts": ["ascii_basic", "latin_extended"],
"tempUnitFahrenheit": false,
"messages": { "messages": {
"SettingsCalibrationDone": "Calibration done!",
"SettingsCalibrationWarning": "Sørg for at loddespidsen er ved stuetemperatur, inden du fortsætter!", "SettingsCalibrationWarning": "Sørg for at loddespidsen er ved stuetemperatur, inden du fortsætter!",
"SettingsResetWarning": "Are you sure to reset settings to default values?", "SettingsResetWarning": "Are you sure to reset settings to default values?",
"UVLOWarningString": "Lav Volt", "UVLOWarningString": "Lav Volt",
"UndervoltageString": "Undervoltage", "UndervoltageString": "Undervoltage",
"InputVoltageString": "Input V: ", "InputVoltageString": "Input V: ",
"WarningTipTempString": "Tip Temp: ",
"BadTipString": "BAD TIP",
"SleepingSimpleString": "Zzzz", "SleepingSimpleString": "Zzzz",
"SleepingAdvancedString": "Dvale...", "SleepingAdvancedString": "Dvale...",
"WarningSimpleString": "Varm",
"WarningAdvancedString": "VARM LODDESPIDS!",
"SleepingTipAdvancedString": "Tip:", "SleepingTipAdvancedString": "Tip:",
"IdleTipString": "Tip:", "OffString": "Off"
"IdleSetString": " Set:",
"TipDisconnectedString": "TIP DISCONNECTED",
"SolderingAdvancedPowerPrompt": "Power: ",
"OffString": "Off",
"YourGainMessage": "Your gain:"
}, },
"messagesWarn": { "messagesWarn": {
"ResetOKMessage": "Reset OK", "ResetOKMessage": "Reset OK",
"SettingsResetMessage": ["Settings were", "reset!"], "SettingsResetMessage": ["Certain settings", "were changed!"],
"NoAccelerometerMessage": ["No accelerometer", "detected!"], "NoAccelerometerMessage": ["No accelerometer", "detected!"],
"NoPowerDeliveryMessage": ["No USB-PD IC", "detected!"], "NoPowerDeliveryMessage": ["No USB-PD IC", "detected!"],
"LockingKeysString": " LOCKED", "LockingKeysString": "LOCKED",
"UnlockingKeysString": "UNLOCKED", "UnlockingKeysString": "UNLOCKED",
"WarningKeysLockedString": "!LOCKED!", "WarningKeysLockedString": "!LOCKED!",
"WarningThermalRunaway": ["Thermal", "Runaway"] "WarningThermalRunaway": ["Thermal", "Runaway"]
@@ -51,8 +42,7 @@
"SettingSensitivityHigh": "H", "SettingSensitivityHigh": "H",
"SettingLockDisableChar": "D", "SettingLockDisableChar": "D",
"SettingLockBoostChar": "B", "SettingLockBoostChar": "B",
"SettingLockFullChar": "F", "SettingLockFullChar": "F"
"SettingNAChar": "N/A"
}, },
"menuGroups": { "menuGroups": {
"PowerMenu": { "PowerMenu": {
@@ -60,20 +50,20 @@
"desc": "Power settings" "desc": "Power settings"
}, },
"SolderingMenu": { "SolderingMenu": {
"text2": ["Soldering", "Settings"], "text2": ["Soldering", "settings"],
"desc": "Soldering settings" "desc": "Soldering settings"
}, },
"PowerSavingMenu": { "PowerSavingMenu": {
"text2": ["Sleep", "Modes"], "text2": ["Sleep", "mode"],
"desc": "Power Saving Settings" "desc": "Power saving settings"
}, },
"UIMenu": { "UIMenu": {
"text2": ["User", "Interface"], "text2": ["User", "interface"],
"desc": "User Interface settings" "desc": "User interface settings"
}, },
"AdvancedMenu": { "AdvancedMenu": {
"text2": ["Advanced", "Options"], "text2": ["Advanced", "settings"],
"desc": "Advanced options" "desc": "Advanced settings"
} }
}, },
"menuOptions": { "menuOptions": {
@@ -114,11 +104,11 @@
"desc": "Temperatur i \"boost\" mode" "desc": "Temperatur i \"boost\" mode"
}, },
"AutoStart": { "AutoStart": {
"text2": ["Auto", "start"], "text2": ["Start-up", "behavior"],
"desc": "Start automatisk med lodning når strøm sættes til. (S=Slukket | L=Lodning | D=Dvale tilstand | R=Dvale tilstand rumtemperatur)" "desc": "Start automatisk med lodning når strøm sættes til. (S=Slukket | L=Lodning | D=Dvale tilstand | R=Dvale tilstand rumtemperatur)"
}, },
"CooldownBlink": { "CooldownBlink": {
"text2": ["Cooldown", "blink"], "text2": ["Cooldown", "flashing"],
"desc": "Blink temperaturen på skærmen, mens spidsen stadig er varm." "desc": "Blink temperaturen på skærmen, mens spidsen stadig er varm."
}, },
"TemperatureCalibration": { "TemperatureCalibration": {
@@ -126,7 +116,7 @@
"desc": "kalibrere spids temperatur." "desc": "kalibrere spids temperatur."
}, },
"SettingsReset": { "SettingsReset": {
"text2": ["Factory", "Reset?"], "text2": ["Restore factory", "settings?"],
"desc": "Gendan alle indstillinger" "desc": "Gendan alle indstillinger"
}, },
"VoltageCalibration": { "VoltageCalibration": {
@@ -139,43 +129,43 @@
}, },
"ScrollingSpeed": { "ScrollingSpeed": {
"text2": ["Scrolling", "speed"], "text2": ["Scrolling", "speed"],
"desc": "Speed this text scrolls past at" "desc": "Speed info text scrolls past at (S=slow | F=fast)"
}, },
"QCMaxVoltage": { "QCMaxVoltage": {
"text2": ["Power", "Wattage"], "text2": ["QC", "voltage"],
"desc": "Power Wattage of the power adapter used" "desc": "Max QC voltage the iron should negotiate for"
}, },
"PDNegTimeout": { "PDNegTimeout": {
"text2": ["PD", "timeout"], "text2": ["PD", "timeout"],
"desc": "PD negotiation timeout in 100ms steps for compatibility with some QC chargers (0: disabled)" "desc": "PD negotiation timeout in 100ms steps for compatibility with some QC chargers (0: disabled)"
}, },
"PowerLimit": { "PowerLimit": {
"text2": ["Power", "Limit"], "text2": ["Power", "limit"],
"desc": "Maximum power the iron can use (Watts)" "desc": "Maximum power the iron can use (W=watt)"
}, },
"ReverseButtonTempChange": { "ReverseButtonTempChange": {
"text2": ["Key +-", "reverse?"], "text2": ["Swap", "+ - keys"],
"desc": "Reverse the tip temperature change buttons plus minus assignment." "desc": "Reverse assignment of buttons for temperature adjustment"
}, },
"TempChangeShortStep": { "TempChangeShortStep": {
"text2": ["Temp change", "short?"], "text2": ["Temp change", "short"],
"desc": "Temperature change steps on short button press!" "desc": "Temperature-change-increment on short button press"
}, },
"TempChangeLongStep": { "TempChangeLongStep": {
"text2": ["Temp change", "long?"], "text2": ["Temp change", "long"],
"desc": "Temperature change steps on long button press!" "desc": "Temperature-change-increment on long button press"
}, },
"PowerPulsePower": { "PowerPulsePower": {
"text2": ["Power", "Pulse W"], "text2": ["Power", "pulse"],
"desc": "Keep awake pulse power intensity" "desc": "Intensity of power of keep-awake-pulse (watt)"
}, },
"HallEffSensitivity": { "HallEffSensitivity": {
"text2": ["Hall Eff", "Sensitivity"], "text2": ["Hall sensor", "sensitivity"],
"desc": "Sensitivity of the Hall effect sensor in detecting sleep (0=Slukket | 1=Mindst følsom | ... | 9=Mest følsom)" "desc": "Sensitivity of the Hall effect sensor to detect sleep (0=Slukket | 1=Mindst følsom | ... | 9=Mest følsom)"
}, },
"LockingMode": { "LockingMode": {
"text2": ["Allow buttons", "locking"], "text2": ["Allow locking", "buttons"],
"desc": "When soldering, long press on both buttons lock them (D=Disable | B=Boost only | F=Full locking)" "desc": "While soldering, hold down both buttons to toggle locking them (D=disable | B=boost mode only | F=full locking)"
}, },
"MinVolCell": { "MinVolCell": {
"text2": ["Minimum", "voltage"], "text2": ["Minimum", "voltage"],
@@ -183,15 +173,15 @@
}, },
"AnimLoop": { "AnimLoop": {
"text2": ["Anim.", "loop"], "text2": ["Anim.", "loop"],
"desc": "Loop icon animations in root menu" "desc": "Loop icon animations in main menu"
}, },
"AnimSpeed": { "AnimSpeed": {
"text2": ["Anim.", "speed"], "text2": ["Anim.", "speed"],
"desc": "Speed of icon animations in menu (O=off | L=low | M=medium | H=high)" "desc": "Pace of icon animations in menu (O=off | S=slow | M=medium | F=fast)"
}, },
"PowerPulseWait": { "PowerPulseWait": {
"text2": ["Power pulse", "wait time"], "text2": ["Power pulse", "delay"],
"desc": "Time to wait before triggering every keep-awake pulse (x 2,5s)" "desc": "Delay before keep-awake-pulse is triggered (x 2,5s)"
}, },
"PowerPulseDuration": { "PowerPulseDuration": {
"text2": ["Power pulse", "duration"], "text2": ["Power pulse", "duration"],
@@ -202,12 +192,16 @@
"desc": "" "desc": ""
}, },
"Brightness": { "Brightness": {
"text2": ["Screen", "Brightness"], "text2": ["Screen", "brightness"],
"desc": "Adjust the contrast/brightness of the OLED screen" "desc": "Adjust the brightness of the OLED screen"
}, },
"ColourInversion": { "ColourInversion": {
"text2": ["Screen", "Invert"], "text2": ["Invert", "screen"],
"desc": "Invert the colours of the OLED screen" "desc": "Invert the colours of the OLED screen"
},
"LOGOTime": {
"text2": ["Boot logo", "duration"],
"desc": "Sets the duration for the boot logo (S=seconds)"
} }
} }
} }

View File

@@ -12,10 +12,6 @@
"SleepingSimpleString": "Zzzz", "SleepingSimpleString": "Zzzz",
"SleepingAdvancedString": "Ruhemodus...", "SleepingAdvancedString": "Ruhemodus...",
"SleepingTipAdvancedString": "Temp:", "SleepingTipAdvancedString": "Temp:",
"IdleTipString": "Ist:",
"IdleSetString": " Soll:",
"TipDisconnectedString": "Spitze fehlt",
"SolderingAdvancedPowerPrompt": "Leistung: ",
"OffString": "Aus" "OffString": "Aus"
}, },
"messagesWarn": { "messagesWarn": {
@@ -46,8 +42,7 @@
"SettingSensitivityHigh": "H", "SettingSensitivityHigh": "H",
"SettingLockDisableChar": "A", "SettingLockDisableChar": "A",
"SettingLockBoostChar": "B", "SettingLockBoostChar": "B",
"SettingLockFullChar": "V", "SettingLockFullChar": "V"
"SettingNAChar": "-"
}, },
"menuGroups": { "menuGroups": {
"PowerMenu": { "PowerMenu": {
@@ -203,6 +198,10 @@
"ColourInversion": { "ColourInversion": {
"text2": ["Farben", "umkehren"], "text2": ["Farben", "umkehren"],
"desc": "Invertiert die Farben des OLED-Displays" "desc": "Invertiert die Farben des OLED-Displays"
},
"LOGOTime": {
"text2": ["Startlogo-", "dauer"],
"desc": "Legt die Dauer der Anzeige des Startlogos fest (S=Sekunden)"
} }
} }
} }

View File

@@ -12,10 +12,6 @@
"SleepingSimpleString": "Zzzz", "SleepingSimpleString": "Zzzz",
"SleepingAdvancedString": "Υπνος...", "SleepingAdvancedString": "Υπνος...",
"SleepingTipAdvancedString": "Μύτη:", "SleepingTipAdvancedString": "Μύτη:",
"IdleTipString": "Μύτη:",
"IdleSetString": " Set:",
"TipDisconnectedString": "ΧΩΡΙΣ ΜΥΤΗ",
"SolderingAdvancedPowerPrompt": "Ενέργεια: ",
"OffString": "Απ." "OffString": "Απ."
}, },
"messagesWarn": { "messagesWarn": {
@@ -46,8 +42,7 @@
"SettingSensitivityHigh": "Υ", "SettingSensitivityHigh": "Υ",
"SettingLockDisableChar": "Α", "SettingLockDisableChar": "Α",
"SettingLockBoostChar": "B", "SettingLockBoostChar": "B",
"SettingLockFullChar": "Π", "SettingLockFullChar": "Π"
"SettingNAChar": "Δ/Δ"
}, },
"menuGroups": { "menuGroups": {
"PowerMenu": { "PowerMenu": {
@@ -203,6 +198,10 @@
"ColourInversion": { "ColourInversion": {
"text2": ["Αντιστροφή", "χρωμάτων"], "text2": ["Αντιστροφή", "χρωμάτων"],
"desc": "Αντιστροφή χρωμάτων οθόνης OLED" "desc": "Αντιστροφή χρωμάτων οθόνης OLED"
},
"LOGOTime": {
"text2": ["Boot logo", "duration"],
"desc": "Sets the duration for the boot logo (S=seconds)"
} }
} }
} }

View File

@@ -12,15 +12,11 @@
"SleepingSimpleString": "Zzzz", "SleepingSimpleString": "Zzzz",
"SleepingAdvancedString": "Sleeping...", "SleepingAdvancedString": "Sleeping...",
"SleepingTipAdvancedString": "Tip:", "SleepingTipAdvancedString": "Tip:",
"IdleTipString": "Tip:",
"IdleSetString": " Set:",
"TipDisconnectedString": "NO TIP",
"SolderingAdvancedPowerPrompt": "Power: ",
"OffString": "Off" "OffString": "Off"
}, },
"messagesWarn": { "messagesWarn": {
"ResetOKMessage": "Reset OK", "ResetOKMessage": "Reset OK",
"SettingsResetMessage": ["Some settings", "changed"], "SettingsResetMessage": ["Certain settings", "were changed!"],
"NoAccelerometerMessage": ["No accelerometer", "detected!"], "NoAccelerometerMessage": ["No accelerometer", "detected!"],
"NoPowerDeliveryMessage": ["No USB-PD IC", "detected!"], "NoPowerDeliveryMessage": ["No USB-PD IC", "detected!"],
"LockingKeysString": "LOCKED", "LockingKeysString": "LOCKED",
@@ -46,8 +42,7 @@
"SettingSensitivityHigh": "H", "SettingSensitivityHigh": "H",
"SettingLockDisableChar": "D", "SettingLockDisableChar": "D",
"SettingLockBoostChar": "B", "SettingLockBoostChar": "B",
"SettingLockFullChar": "F", "SettingLockFullChar": "F"
"SettingNAChar": "N/A"
}, },
"menuGroups": { "menuGroups": {
"PowerMenu": { "PowerMenu": {
@@ -106,14 +101,14 @@
}, },
"BoostTemperature": { "BoostTemperature": {
"text2": ["Boost", "temp"], "text2": ["Boost", "temp"],
"desc": "Temperature used in \"boost mode\"" "desc": "Tip temperature used in \"boost mode\""
}, },
"AutoStart": { "AutoStart": {
"text2": ["Heat", "on power up"], "text2": ["Start-up", "behavior"],
"desc": "O=off | S=soldering temp | Z=standby at sleep temp until moved | R=standby without heating until moved" "desc": "O=off | S=heat up to soldering temp | Z=standby at sleep temp until moved | R=standby without heating until moved"
}, },
"CooldownBlink": { "CooldownBlink": {
"text2": ["Cooldown", "blink"], "text2": ["Cooldown", "flashing"],
"desc": "Flash the temperature reading after heating was halted while the tip is still hot" "desc": "Flash the temperature reading after heating was halted while the tip is still hot"
}, },
"TemperatureCalibration": { "TemperatureCalibration": {
@@ -121,8 +116,8 @@
"desc": "Start tip temperature offset calibration" "desc": "Start tip temperature offset calibration"
}, },
"SettingsReset": { "SettingsReset": {
"text2": ["Factory", "reset?"], "text2": ["Restore factory", "settings?"],
"desc": "Reset settings to default" "desc": "Reset all settings to default"
}, },
"VoltageCalibration": { "VoltageCalibration": {
"text2": ["Calibrate", "input voltage?"], "text2": ["Calibrate", "input voltage?"],
@@ -149,7 +144,7 @@
"desc": "Maximum power the iron can use (W=watt)" "desc": "Maximum power the iron can use (W=watt)"
}, },
"ReverseButtonTempChange": { "ReverseButtonTempChange": {
"text2": ["Reverse", "+ - keys"], "text2": ["Swap", "+ - keys"],
"desc": "Reverse assignment of buttons for temperature adjustment" "desc": "Reverse assignment of buttons for temperature adjustment"
}, },
"TempChangeShortStep": { "TempChangeShortStep": {
@@ -197,12 +192,16 @@
"desc": "Current firmware language" "desc": "Current firmware language"
}, },
"Brightness": { "Brightness": {
"text2": ["Screen", "contrast"], "text2": ["Screen", "brightness"],
"desc": "Adjust the brightness of the OLED screen" "desc": "Adjust the brightness of the OLED screen"
}, },
"ColourInversion": { "ColourInversion": {
"text2": ["Invert", "screen"], "text2": ["Invert", "screen"],
"desc": "Invert the colours of the OLED screen" "desc": "Invert the colours of the OLED screen"
},
"LOGOTime": {
"text2": ["Boot logo", "duration"],
"desc": "Sets the duration for the boot logo (S=seconds)"
} }
} }
} }

View File

@@ -2,27 +2,17 @@
"languageCode": "ES", "languageCode": "ES",
"languageLocalName": "Castellano", "languageLocalName": "Castellano",
"fonts": ["ascii_basic", "latin_extended"], "fonts": ["ascii_basic", "latin_extended"],
"tempUnitFahrenheit": false,
"messages": { "messages": {
"SettingsCalibrationDone": "¡Calibrada!",
"SettingsCalibrationWarning": "¡Asegúrate que la punta esté a temperatura ambiente antes de empezar!", "SettingsCalibrationWarning": "¡Asegúrate que la punta esté a temperatura ambiente antes de empezar!",
"SettingsResetWarning": "¿Quieres restablecer los ajustes?", "SettingsResetWarning": "¿Quieres restablecer los ajustes?",
"UVLOWarningString": "CC BAJA", "UVLOWarningString": "CC BAJA",
"UndervoltageString": "Voltaje bajo", "UndervoltageString": "Voltaje bajo",
"InputVoltageString": "Voltaje: ", "InputVoltageString": "Voltaje: ",
"WarningTipTempString": "Temp punta: ",
"BadTipString": "PT. ROTA",
"SleepingSimpleString": "Zzzz", "SleepingSimpleString": "Zzzz",
"SleepingAdvancedString": "En reposo...", "SleepingAdvancedString": "En reposo...",
"WarningSimpleString": "QUEMA",
"WarningAdvancedString": "¡LA PUNTA QUEMA!",
"SleepingTipAdvancedString": "Punta:", "SleepingTipAdvancedString": "Punta:",
"IdleTipString": "Punta:", "OffString": " No"
"IdleSetString": " Aj:",
"TipDisconnectedString": "NO HAY PUNTA",
"SolderingAdvancedPowerPrompt": "Potencia: ",
"OffString": " No",
"YourGainMessage": "Gananc.:",
"SettingsResetMessage": "Ajustes borrados"
}, },
"messagesWarn": { "messagesWarn": {
"ResetOKMessage": "Hecho.", "ResetOKMessage": "Hecho.",
@@ -52,8 +42,7 @@
"SettingSensitivityHigh": "H", "SettingSensitivityHigh": "H",
"SettingLockDisableChar": "D", "SettingLockDisableChar": "D",
"SettingLockBoostChar": "B", "SettingLockBoostChar": "B",
"SettingLockFullChar": "F", "SettingLockFullChar": "F"
"SettingNAChar": "N/A"
}, },
"menuGroups": { "menuGroups": {
"PowerMenu": { "PowerMenu": {
@@ -188,7 +177,7 @@
}, },
"AnimSpeed": { "AnimSpeed": {
"text2": ["Anim.", "velocidad"], "text2": ["Anim.", "velocidad"],
"desc": "Velocidad de las animaciones de los iconos en el menú (O=off | L=low | M=medium | H=high)" "desc": "Velocidad de las animaciones de los iconos en el menú (O=off | L=low | M=medium | R=high)"
}, },
"PowerPulseWait": { "PowerPulseWait": {
"text2": ["Impulso de potencia", "tiempo de espera"], "text2": ["Impulso de potencia", "tiempo de espera"],
@@ -203,12 +192,16 @@
"desc": "" "desc": ""
}, },
"Brightness": { "Brightness": {
"text2": ["Screen", "Brightness"], "text2": ["Screen", "brightness"],
"desc": "Adjust the contrast/brightness of the OLED screen" "desc": "Adjust the brightness of the OLED screen"
}, },
"ColourInversion": { "ColourInversion": {
"text2": ["Screen", "Invert"], "text2": ["Invert", "screen"],
"desc": "Invert the colours of the OLED screen" "desc": "Invert the colours of the OLED screen"
},
"LOGOTime": {
"text2": ["Boot logo", "duration"],
"desc": "Sets the duration for the boot logo (S=seconds)"
} }
} }
} }

View File

@@ -2,24 +2,16 @@
"languageCode": "FI", "languageCode": "FI",
"languageLocalName": "Suomi", "languageLocalName": "Suomi",
"fonts": ["ascii_basic", "latin_extended"], "fonts": ["ascii_basic", "latin_extended"],
"tempUnitFahrenheit": false,
"messages": { "messages": {
"SettingsCalibrationDone": "Kalibrointi tehty!",
"SettingsCalibrationWarning": "Varmista että kärki on huoneenlämpöinen ennen jatkamista!", "SettingsCalibrationWarning": "Varmista että kärki on huoneenlämpöinen ennen jatkamista!",
"SettingsResetWarning": "Haluatko varmasti palauttaa oletusarvot?", "SettingsResetWarning": "Haluatko varmasti palauttaa oletusarvot?",
"UVLOWarningString": "DC ALH.", "UVLOWarningString": "DC ALH.",
"UndervoltageString": "Alijännite", "UndervoltageString": "Alijännite",
"InputVoltageString": "Jännite: ", "InputVoltageString": "Jännite: ",
"WarningTipTempString": "Kärjet lämpö: ",
"BadTipString": "PAHA KÄRJET",
"SleepingSimpleString": "Zzzz", "SleepingSimpleString": "Zzzz",
"SleepingAdvancedString": "Lepotila...", "SleepingAdvancedString": "Lepotila...",
"WarningSimpleString": "KUUMA!",
"WarningAdvancedString": "!!! KUUMA KÄRJET !!!",
"SleepingTipAdvancedString": "Kärki:", "SleepingTipAdvancedString": "Kärki:",
"IdleTipString": "Pää:",
"IdleSetString": "Aseta:",
"TipDisconnectedString": "KÄRKI PUUTTUU",
"SolderingAdvancedPowerPrompt": "Teho: ",
"OffString": "Off" "OffString": "Off"
}, },
"messagesWarn": { "messagesWarn": {
@@ -37,9 +29,9 @@
"SettingLeftChar": "V", "SettingLeftChar": "V",
"SettingAutoChar": "A", "SettingAutoChar": "A",
"SettingOffChar": "P", "SettingOffChar": "P",
"SettingSlowChar": "H", "SettingSlowChar": "A",
"SettingMediumChar": "M", "SettingMediumChar": "M",
"SettingFastChar": "N", "SettingFastChar": "S",
"SettingStartNoneChar": "E", "SettingStartNoneChar": "E",
"SettingStartSolderingChar": "J", "SettingStartSolderingChar": "J",
"SettingStartSleepChar": "L", "SettingStartSleepChar": "L",
@@ -50,8 +42,7 @@
"SettingSensitivityHigh": "S", "SettingSensitivityHigh": "S",
"SettingLockDisableChar": "P", "SettingLockDisableChar": "P",
"SettingLockBoostChar": "V", "SettingLockBoostChar": "V",
"SettingLockFullChar": "K", "SettingLockFullChar": "K"
"SettingNAChar": "N/A"
}, },
"menuGroups": { "menuGroups": {
"PowerMenu": { "PowerMenu": {
@@ -201,12 +192,16 @@
"desc": "" "desc": ""
}, },
"Brightness": { "Brightness": {
"text2": ["Screen", "Brightness"], "text2": ["Screen", "brightness"],
"desc": "Adjust the contrast/brightness of the OLED screen" "desc": "Adjust the brightness of the OLED screen"
}, },
"ColourInversion": { "ColourInversion": {
"text2": ["Screen", "Invert"], "text2": ["Invert", "screen"],
"desc": "Invert the colours of the OLED screen" "desc": "Invert the colours of the OLED screen"
},
"LOGOTime": {
"text2": ["Boot logo", "duration"],
"desc": "Sets the duration for the boot logo (S=seconds)"
} }
} }
} }

View File

@@ -2,26 +2,17 @@
"languageCode": "FR", "languageCode": "FR",
"languageLocalName": "Français", "languageLocalName": "Français",
"fonts": ["ascii_basic", "latin_extended"], "fonts": ["ascii_basic", "latin_extended"],
"tempUnitFahrenheit": false,
"messages": { "messages": {
"SettingsCalibrationDone": "Calibration effectuée !",
"SettingsCalibrationWarning": "Assurez-vous que la panne soit à température ambiante avant de continuer !", "SettingsCalibrationWarning": "Assurez-vous que la panne soit à température ambiante avant de continuer !",
"SettingsResetWarning": "Voulez-vous vraiment réinitialiser les paramètres aux valeurs par défaut ?", "SettingsResetWarning": "Voulez-vous vraiment réinitialiser les paramètres aux valeurs par défaut ?",
"UVLOWarningString": "DC FAIBL", "UVLOWarningString": "DC FAIBL",
"UndervoltageString": "Sous-tension", "UndervoltageString": "Sous-tension",
"InputVoltageString": "V d'entrée: ", "InputVoltageString": "V d'entrée: ",
"WarningTipTempString": "Temp. Panne : ",
"BadTipString": "PANNE HS",
"SleepingSimpleString": "Zzzz", "SleepingSimpleString": "Zzzz",
"SleepingAdvancedString": "En veille...", "SleepingAdvancedString": "En veille...",
"WarningSimpleString": "CHAUD !",
"WarningAdvancedString": "ATTENTION ! CHAUD !",
"SleepingTipAdvancedString": "Panne:", "SleepingTipAdvancedString": "Panne:",
"IdleTipString": "Act:", "OffString": "Off"
"IdleSetString": " Reg:",
"TipDisconnectedString": "PANNE DÉBRANCHÉE",
"SolderingAdvancedPowerPrompt": "Puiss.:",
"OffString": "Off",
"YourGainMessage": "Gain : "
}, },
"messagesWarn": { "messagesWarn": {
"ResetOKMessage": "Reset OK", "ResetOKMessage": "Reset OK",
@@ -51,8 +42,7 @@
"SettingSensitivityHigh": "H", "SettingSensitivityHigh": "H",
"SettingLockDisableChar": "D", "SettingLockDisableChar": "D",
"SettingLockBoostChar": "B", "SettingLockBoostChar": "B",
"SettingLockFullChar": "V", "SettingLockFullChar": "V"
"SettingNAChar": "N/A"
}, },
"menuGroups": { "menuGroups": {
"PowerMenu": { "PowerMenu": {
@@ -208,6 +198,10 @@
"ColourInversion": { "ColourInversion": {
"text2": ["Inverser", "les couleurs"], "text2": ["Inverser", "les couleurs"],
"desc": "Inverser les couleurs de l'écran OLED" "desc": "Inverser les couleurs de l'écran OLED"
},
"LOGOTime": {
"text2": ["Boot logo", "duration"],
"desc": "Sets the duration for the boot logo (S=seconds)"
} }
} }
} }

View File

@@ -2,33 +2,24 @@
"languageCode": "HR", "languageCode": "HR",
"languageLocalName": "Hrvatski", "languageLocalName": "Hrvatski",
"fonts": ["ascii_basic", "latin_extended"], "fonts": ["ascii_basic", "latin_extended"],
"tempUnitFahrenheit": false,
"messages": { "messages": {
"SettingsCalibrationDone": "Kalibracija gotova!",
"SettingsCalibrationWarning": "Provjerite da je vršak ohlađen na sobnu temperaturu prije nego što nastavite!", "SettingsCalibrationWarning": "Provjerite da je vršak ohlađen na sobnu temperaturu prije nego što nastavite!",
"SettingsResetWarning": "Jeste li sigurni da želite sve postavke vratiti na tvorničke vrijednosti?", "SettingsResetWarning": "Jeste li sigurni da želite sve postavke vratiti na tvorničke vrijednosti?",
"UVLOWarningString": "BATERIJA", "UVLOWarningString": "BATERIJA",
"UndervoltageString": "PRENIZAK NAPON", "UndervoltageString": "PRENIZAK NAPON",
"InputVoltageString": "Napajanje: ", "InputVoltageString": "Napajanje: ",
"WarningTipTempString": "Temp vrha: ",
"BadTipString": "LOŠ VRH",
"SleepingSimpleString": "Zzz ", "SleepingSimpleString": "Zzz ",
"SleepingAdvancedString": "SPAVANJE...", "SleepingAdvancedString": "SPAVANJE...",
"WarningSimpleString": "VRUĆ",
"WarningAdvancedString": "OPREZ, VRUĆE!",
"SleepingTipAdvancedString": "Vrh: ", "SleepingTipAdvancedString": "Vrh: ",
"IdleTipString": "Vrh: ", "OffString": "Off"
"IdleSetString": " / ",
"TipDisconnectedString": "VRH NIJE SPOJEN!",
"SolderingAdvancedPowerPrompt": "Snaga: ",
"OffString": "Off",
"YourGainMessage": "Your gain:"
}, },
"messagesWarn": { "messagesWarn": {
"ResetOKMessage": "Reset OK", "ResetOKMessage": "Reset OK",
"SettingsResetMessage": ["Settings were", "reset!"], "SettingsResetMessage": ["Certain settings", "were changed!"],
"NoAccelerometerMessage": ["No accelerometer", "detected!"], "NoAccelerometerMessage": ["No accelerometer", "detected!"],
"NoPowerDeliveryMessage": ["No USB-PD IC", "detected!"], "NoPowerDeliveryMessage": ["No USB-PD IC", "detected!"],
"LockingKeysString": " LOCKED", "LockingKeysString": "LOCKED",
"UnlockingKeysString": "UNLOCKED", "UnlockingKeysString": "UNLOCKED",
"WarningKeysLockedString": "!LOCKED!", "WarningKeysLockedString": "!LOCKED!",
"WarningThermalRunaway": ["Thermal", "Runaway"] "WarningThermalRunaway": ["Thermal", "Runaway"]
@@ -51,8 +42,7 @@
"SettingSensitivityHigh": "H", "SettingSensitivityHigh": "H",
"SettingLockDisableChar": "D", "SettingLockDisableChar": "D",
"SettingLockBoostChar": "B", "SettingLockBoostChar": "B",
"SettingLockFullChar": "F", "SettingLockFullChar": "F"
"SettingNAChar": "N/A"
}, },
"menuGroups": { "menuGroups": {
"PowerMenu": { "PowerMenu": {
@@ -147,51 +137,51 @@
}, },
"PDNegTimeout": { "PDNegTimeout": {
"text2": ["PD", "timeout"], "text2": ["PD", "timeout"],
"desc": "PD negotiation timeout in 100ms steps for compatibility with some QC chargers (0: disabled)" "desc": "PD negotiation timeout in 100ms steps for compatibility with some QC chargers"
}, },
"PowerLimit": { "PowerLimit": {
"text2": ["Power", "Limit"], "text2": ["Power", "limit"],
"desc": "Maximum power the iron can use (Watts)" "desc": "Maximum power the iron can use (W=watt)"
}, },
"ReverseButtonTempChange": { "ReverseButtonTempChange": {
"text2": ["Key +-", "reverse?"], "text2": ["Swap", "+ - keys"],
"desc": "Reverse the tip temperature change buttons plus minus assignment." "desc": "Reverse assignment of buttons for temperature adjustment"
}, },
"TempChangeShortStep": { "TempChangeShortStep": {
"text2": ["Temp change", "short?"], "text2": ["Temp change", "short"],
"desc": "Temperature change steps on short button press!" "desc": "Temperature-change-increment on short button press"
}, },
"TempChangeLongStep": { "TempChangeLongStep": {
"text2": ["Temp change", "long?"], "text2": ["Temp change", "long"],
"desc": "Temperature change steps on long button press!" "desc": "Temperature-change-increment on long button press"
}, },
"PowerPulsePower": { "PowerPulsePower": {
"text2": ["Power", "Pulse W"], "text2": ["Power", "pulse"],
"desc": "Keep awake pulse power intensity" "desc": "Intensity of power of keep-awake-pulse (watt)"
}, },
"HallEffSensitivity": { "HallEffSensitivity": {
"text2": ["Hall Eff", "Sensitivity"], "text2": ["Hall sensor", "sensitivity"],
"desc": "Sensitivity of the Hall effect sensor in detecting sleep (0=Ugašeno | 1=Najmanje osjetljivo | ... | 9=Najosjetljivije)" "desc": "Sensitivity of the Hall effect sensor to detect sleep (0=Ugašeno | 1=Najmanje osjetljivo | ... | 9=Najosjetljivije)"
}, },
"LockingMode": { "LockingMode": {
"text2": ["Allow buttons", "locking"], "text2": ["Allow locking", "buttons"],
"desc": "When soldering, long press on both buttons lock them (D=Disable | B=Boost only | F=Full locking)" "desc": "While soldering, hold down both buttons to toggle locking them (D=disable | B=boost mode only | F=full locking)"
}, },
"MinVolCell": { "MinVolCell": {
"text2": ["Minimum", "voltage"], "text2": ["Minimum", "voltage"],
"desc": "Minimum allowed voltage per cell (3S: 3 - 3.7V, 4-6S: 2.4 - 3.7V)" "desc": "Minimum allowed voltage per cell (3S: 3 - 3.7V | 4-6S: 2.4 - 3.7V)"
}, },
"AnimLoop": { "AnimLoop": {
"text2": ["Anim.", "loop"], "text2": ["Anim.", "loop"],
"desc": "Loop icon animations in root menu" "desc": "Loop icon animations in main menu"
}, },
"AnimSpeed": { "AnimSpeed": {
"text2": ["Anim.", "speed"], "text2": ["Anim.", "speed"],
"desc": "Speed of icon animations in menu (O=off | L=low | M=medium | H=high)" "desc": "Pace of icon animations in menu (O=off | S=slow | M=medium | B=fast)"
}, },
"PowerPulseWait": { "PowerPulseWait": {
"text2": ["Power pulse", "wait time"], "text2": ["Power pulse", "delay"],
"desc": "Time to wait before triggering every keep-awake pulse (x 2.5s)" "desc": "Delay before keep-awake-pulse is triggered (x 2.5s)"
}, },
"PowerPulseDuration": { "PowerPulseDuration": {
"text2": ["Power pulse", "duration"], "text2": ["Power pulse", "duration"],
@@ -202,12 +192,16 @@
"desc": "" "desc": ""
}, },
"Brightness": { "Brightness": {
"text2": ["Screen", "Brightness"], "text2": ["Screen", "brightness"],
"desc": "Adjust the contrast/brightness of the OLED screen" "desc": "Adjust the brightness of the OLED screen"
}, },
"ColourInversion": { "ColourInversion": {
"text2": ["Screen", "Invert"], "text2": ["Invert", "screen"],
"desc": "Invert the colours of the OLED screen" "desc": "Invert the colours of the OLED screen"
},
"LOGOTime": {
"text2": ["Boot logo", "duration"],
"desc": "Sets the duration for the boot logo (S=seconds)"
} }
} }
} }

View File

@@ -12,10 +12,6 @@
"SleepingSimpleString": "Zzzz", "SleepingSimpleString": "Zzzz",
"SleepingAdvancedString": "Alvás...", "SleepingAdvancedString": "Alvás...",
"SleepingTipAdvancedString": "Hegy:", "SleepingTipAdvancedString": "Hegy:",
"IdleTipString": "Hegy:",
"IdleSetString": " Cél:",
"TipDisconnectedString": "HEGY KIVÉVE",
"SolderingAdvancedPowerPrompt": "Áram: ",
"OffString": "Ki" "OffString": "Ki"
}, },
"messagesWarn": { "messagesWarn": {
@@ -46,8 +42,7 @@
"SettingSensitivityHigh": "M", "SettingSensitivityHigh": "M",
"SettingLockDisableChar": "K", "SettingLockDisableChar": "K",
"SettingLockBoostChar": "B", "SettingLockBoostChar": "B",
"SettingLockFullChar": "T", "SettingLockFullChar": "T"
"SettingNAChar": "N/A"
}, },
"menuGroups": { "menuGroups": {
"PowerMenu": { "PowerMenu": {
@@ -203,6 +198,10 @@
"ColourInversion": { "ColourInversion": {
"text2": ["Képernyő", "invertálás"], "text2": ["Képernyő", "invertálás"],
"desc": "Képernyő színeinek invertálása" "desc": "Képernyő színeinek invertálása"
},
"LOGOTime": {
"text2": ["Boot logo", "duration"],
"desc": "Sets the duration for the boot logo (S=seconds)"
} }
} }
} }

View File

@@ -2,6 +2,7 @@
"languageCode": "IT", "languageCode": "IT",
"languageLocalName": "Italiano", "languageLocalName": "Italiano",
"fonts": ["ascii_basic", "latin_extended"], "fonts": ["ascii_basic", "latin_extended"],
"tempUnitFahrenheit": false,
"messages": { "messages": {
"SettingsCalibrationWarning": "Assicurarsi che la punta si trovi a temperatura ambiente prima di continuare!", "SettingsCalibrationWarning": "Assicurarsi che la punta si trovi a temperatura ambiente prima di continuare!",
"SettingsResetWarning": "Ripristinare le impostazioni iniziali?", "SettingsResetWarning": "Ripristinare le impostazioni iniziali?",
@@ -11,10 +12,6 @@
"SleepingSimpleString": "Zzz ", "SleepingSimpleString": "Zzz ",
"SleepingAdvancedString": "Riposo", "SleepingAdvancedString": "Riposo",
"SleepingTipAdvancedString": "Punta:", "SleepingTipAdvancedString": "Punta:",
"IdleTipString": "T punta:",
"IdleSetString": "/",
"TipDisconnectedString": "PUNTA ASSENTE",
"SolderingAdvancedPowerPrompt": "Potenz:",
"OffString": "OFF" "OffString": "OFF"
}, },
"messagesWarn": { "messagesWarn": {
@@ -45,8 +42,7 @@
"SettingSensitivityHigh": "A", "SettingSensitivityHigh": "A",
"SettingLockDisableChar": "D", "SettingLockDisableChar": "D",
"SettingLockBoostChar": "T", "SettingLockBoostChar": "T",
"SettingLockFullChar": "C", "SettingLockFullChar": "C"
"SettingNAChar": " NA"
}, },
"menuGroups": { "menuGroups": {
"PowerMenu": { "PowerMenu": {
@@ -202,6 +198,10 @@
"ColourInversion": { "ColourInversion": {
"text2": ["Inverti", "colori"], "text2": ["Inverti", "colori"],
"desc": "Inverti i colori dello schermo" "desc": "Inverti i colori dello schermo"
},
"LOGOTime": {
"text2": ["Durata", "logo"],
"desc": "Imposta la permanenza sullo schermo del logo iniziale [secondi]"
} }
} }
} }

View File

@@ -12,10 +12,6 @@
"SleepingSimpleString": "Zzzz", "SleepingSimpleString": "Zzzz",
"SleepingAdvancedString": "Sleeping...", "SleepingAdvancedString": "Sleeping...",
"SleepingTipAdvancedString": "Tip:", "SleepingTipAdvancedString": "Tip:",
"IdleTipString": "Tip:",
"IdleSetString": " Set:",
"TipDisconnectedString": "NO TIP",
"SolderingAdvancedPowerPrompt": "Power: ",
"OffString": "オフ" "OffString": "オフ"
}, },
"messagesWarn": { "messagesWarn": {
@@ -46,8 +42,7 @@
"SettingSensitivityHigh": "高", "SettingSensitivityHigh": "高",
"SettingLockDisableChar": "×", "SettingLockDisableChar": "×",
"SettingLockBoostChar": "ブ", "SettingLockBoostChar": "ブ",
"SettingLockFullChar": "全", "SettingLockFullChar": "全"
"SettingNAChar": "非適用"
}, },
"menuGroups": { "menuGroups": {
"PowerMenu": { "PowerMenu": {
@@ -203,6 +198,10 @@
"ColourInversion": { "ColourInversion": {
"text2": "色反転", "text2": "色反転",
"desc": "画面の色を反転する" "desc": "画面の色を反転する"
},
"LOGOTime": {
"text2": ["Boot logo", "duration"],
"desc": "Sets the duration for the boot logo (S=seconds)"
} }
} }
} }

View File

@@ -12,10 +12,6 @@
"SleepingSimpleString": "Zzzz", "SleepingSimpleString": "Zzzz",
"SleepingAdvancedString": "Miegu...", "SleepingAdvancedString": "Miegu...",
"SleepingTipAdvancedString": "Antg:", "SleepingTipAdvancedString": "Antg:",
"IdleTipString": "Ant:",
"IdleSetString": " Nust:",
"TipDisconnectedString": "NĖRA ANTGALIO",
"SolderingAdvancedPowerPrompt": "Galia: ",
"OffString": "Išj" "OffString": "Išj"
}, },
"messagesWarn": { "messagesWarn": {
@@ -46,8 +42,7 @@
"SettingSensitivityHigh": "A", "SettingSensitivityHigh": "A",
"SettingLockDisableChar": "I", "SettingLockDisableChar": "I",
"SettingLockBoostChar": "T", "SettingLockBoostChar": "T",
"SettingLockFullChar": "V", "SettingLockFullChar": "V"
"SettingNAChar": "N/A"
}, },
"menuGroups": { "menuGroups": {
"PowerMenu": { "PowerMenu": {
@@ -203,6 +198,10 @@
"ColourInversion": { "ColourInversion": {
"text2": ["Ekrano", "invertavimas"], "text2": ["Ekrano", "invertavimas"],
"desc": "Invertuoja OLED ekrano spalvas" "desc": "Invertuoja OLED ekrano spalvas"
},
"LOGOTime": {
"text2": ["Boot logo", "duration"],
"desc": "Sets the duration for the boot logo (S=seconds)"
} }
} }
} }

View File

@@ -2,26 +2,17 @@
"languageCode": "NL", "languageCode": "NL",
"languageLocalName": "Nederlands", "languageLocalName": "Nederlands",
"fonts": ["ascii_basic", "latin_extended"], "fonts": ["ascii_basic", "latin_extended"],
"tempUnitFahrenheit": false,
"messages": { "messages": {
"SettingsCalibrationDone": "Calibratie klaar!",
"SettingsCalibrationWarning": "Zorg ervoor dat te punt op kamertemperatuur is voor je verder gaat!", "SettingsCalibrationWarning": "Zorg ervoor dat te punt op kamertemperatuur is voor je verder gaat!",
"SettingsResetWarning": "Weet je zeker dat je de fabrieksinstellingen terug wil zetten?", "SettingsResetWarning": "Weet je zeker dat je de fabrieksinstellingen terug wil zetten?",
"UVLOWarningString": "DC Laag", "UVLOWarningString": "DC Laag",
"UndervoltageString": "Onderspanning", "UndervoltageString": "Onderspanning",
"InputVoltageString": "Input V: ", "InputVoltageString": "Input V: ",
"WarningTipTempString": "Punt temp: ",
"BadTipString": "DEFECTE PUNT",
"SleepingSimpleString": "Zzzz", "SleepingSimpleString": "Zzzz",
"SleepingAdvancedString": "Slaapstand...", "SleepingAdvancedString": "Slaapstand...",
"WarningSimpleString": "HEET!",
"WarningAdvancedString": "!!! PUNT HOT !!!",
"SleepingTipAdvancedString": "Punt:", "SleepingTipAdvancedString": "Punt:",
"IdleTipString": "Punt:", "OffString": "Uit"
"IdleSetString": " Zet:",
"TipDisconnectedString": "PUNT LOSGEKOPPELT",
"SolderingAdvancedPowerPrompt": "Vermogen: ",
"OffString": "Uit",
"YourGainMessage": "Niveau:"
}, },
"messagesWarn": { "messagesWarn": {
"ResetOKMessage": "Reset OK", "ResetOKMessage": "Reset OK",
@@ -51,8 +42,7 @@
"SettingSensitivityHigh": "H", "SettingSensitivityHigh": "H",
"SettingLockDisableChar": "U", "SettingLockDisableChar": "U",
"SettingLockBoostChar": "B", "SettingLockBoostChar": "B",
"SettingLockFullChar": "V", "SettingLockFullChar": "V"
"SettingNAChar": "N/A"
}, },
"menuGroups": { "menuGroups": {
"PowerMenu": { "PowerMenu": {
@@ -170,8 +160,8 @@
"desc": "Vermogen van puls om soldeerbout aan te houden" "desc": "Vermogen van puls om soldeerbout aan te houden"
}, },
"HallEffSensitivity": { "HallEffSensitivity": {
"text2": ["Hall Eff", "Sensitivity"], "text2": ["Hall sensor", "sensitivity"],
"desc": "Sensitivity of the Hall effect sensor in detecting sleep (0=uit | 1=minst gevoelig | ... | 9=meest gevoelig)" "desc": "Sensitivity of the Hall effect sensor to detect sleep (0=uit | 1=minst gevoelig | ... | 9=meest gevoelig)"
}, },
"LockingMode": { "LockingMode": {
"text2": ["Blokkeer", "knoppen"], "text2": ["Blokkeer", "knoppen"],
@@ -183,15 +173,15 @@
}, },
"AnimLoop": { "AnimLoop": {
"text2": ["Anim.", "loop"], "text2": ["Anim.", "loop"],
"desc": "Loop icon animations in root menu" "desc": "Loop icon animations in main menu"
}, },
"AnimSpeed": { "AnimSpeed": {
"text2": ["Anim.", "speed"], "text2": ["Anim.", "speed"],
"desc": "Speed of icon animations in menu (O=off | L=low | M=medium | H=high)" "desc": "Pace of icon animations in menu (O=off | S=slow | M=medium | F=fast)"
}, },
"PowerPulseWait": { "PowerPulseWait": {
"text2": ["Power pulse", "wait time"], "text2": ["Power pulse", "delay"],
"desc": "Time to wait before triggering every keep-awake pulse (x 2.5s)" "desc": "Delay before keep-awake-pulse is triggered (x 2.5s)"
}, },
"PowerPulseDuration": { "PowerPulseDuration": {
"text2": ["Power pulse", "duration"], "text2": ["Power pulse", "duration"],
@@ -202,12 +192,16 @@
"desc": "" "desc": ""
}, },
"Brightness": { "Brightness": {
"text2": ["Screen", "Brightness"], "text2": ["Screen", "brightness"],
"desc": "Adjust the contrast/brightness of the OLED screen" "desc": "Adjust the brightness of the OLED screen"
}, },
"ColourInversion": { "ColourInversion": {
"text2": ["Screen", "Invert"], "text2": ["Invert", "screen"],
"desc": "Invert the colours of the OLED screen" "desc": "Invert the colours of the OLED screen"
},
"LOGOTime": {
"text2": ["Boot logo", "duration"],
"desc": "Sets the duration for the boot logo (S=seconds)"
} }
} }
} }

View File

@@ -2,33 +2,24 @@
"languageCode": "NL_BE", "languageCode": "NL_BE",
"languageLocalName": "Vlaams", "languageLocalName": "Vlaams",
"fonts": ["ascii_basic", "latin_extended"], "fonts": ["ascii_basic", "latin_extended"],
"tempUnitFahrenheit": false,
"messages": { "messages": {
"SettingsCalibrationDone": "Gecalibreerd!",
"SettingsCalibrationWarning": "Zorg vooraf dat de punt op kamertemperatuur is!", "SettingsCalibrationWarning": "Zorg vooraf dat de punt op kamertemperatuur is!",
"SettingsResetWarning": "Ben je zeker dat je alle standaardwaarden wil resetten?", "SettingsResetWarning": "Ben je zeker dat je alle standaardwaarden wil resetten?",
"UVLOWarningString": "Voedingsspanning LAAG", "UVLOWarningString": "Voedingsspanning LAAG",
"UndervoltageString": "Onderspanning", "UndervoltageString": "Onderspanning",
"InputVoltageString": "Voedingsspanning: ", "InputVoltageString": "Voedingsspanning: ",
"WarningTipTempString": "Punt Temp: ",
"BadTipString": "DEFECT",
"SleepingSimpleString": "Zzz ", "SleepingSimpleString": "Zzz ",
"SleepingAdvancedString": "Slaapstand...", "SleepingAdvancedString": "Slaapstand...",
"WarningSimpleString": "HEET",
"WarningAdvancedString": "!!! PUNT HEET !!!",
"SleepingTipAdvancedString": "Punt:", "SleepingTipAdvancedString": "Punt:",
"IdleTipString": "Punt:", "OffString": "Uit"
"IdleSetString": "Stel in:",
"TipDisconnectedString": "Punt ONTKOPPELD",
"SolderingAdvancedPowerPrompt": "Vermogen: ",
"OffString": "Uit",
"YourGainMessage": "Your gain:"
}, },
"messagesWarn": { "messagesWarn": {
"ResetOKMessage": "Reset OK", "ResetOKMessage": "Reset OK",
"SettingsResetMessage": ["Settings were", "reset!"], "SettingsResetMessage": ["Settings were", "reset!"],
"NoAccelerometerMessage": ["No accelerometer", "detected!"], "NoAccelerometerMessage": ["No accelerometer", "detected!"],
"NoPowerDeliveryMessage": ["No USB-PD IC", "detected!"], "NoPowerDeliveryMessage": ["No USB-PD IC", "detected!"],
"LockingKeysString": " LOCKED", "LockingKeysString": "LOCKED",
"UnlockingKeysString": "UNLOCKED", "UnlockingKeysString": "UNLOCKED",
"WarningKeysLockedString": "!LOCKED!", "WarningKeysLockedString": "!LOCKED!",
"WarningThermalRunaway": ["Thermal", "Runaway"] "WarningThermalRunaway": ["Thermal", "Runaway"]
@@ -51,8 +42,7 @@
"SettingSensitivityHigh": "H", "SettingSensitivityHigh": "H",
"SettingLockDisableChar": "D", "SettingLockDisableChar": "D",
"SettingLockBoostChar": "B", "SettingLockBoostChar": "B",
"SettingLockFullChar": "F", "SettingLockFullChar": "F"
"SettingNAChar": "N/A"
}, },
"menuGroups": { "menuGroups": {
"PowerMenu": { "PowerMenu": {
@@ -147,35 +137,35 @@
}, },
"PDNegTimeout": { "PDNegTimeout": {
"text2": ["PD", "timeout"], "text2": ["PD", "timeout"],
"desc": "PD negotiation timeout in 100ms steps for compatibility with some QC chargers (0: disabled)" "desc": "PD negotiation timeout in 100ms steps for compatibility with some QC chargers"
}, },
"PowerLimit": { "PowerLimit": {
"text2": ["Power", "Limit"], "text2": ["Power", "limit"],
"desc": "Maximum power the iron can use (Watts)" "desc": "Maximum power the iron can use (W=watt)"
}, },
"ReverseButtonTempChange": { "ReverseButtonTempChange": {
"text2": ["Key +-", "reverse?"], "text2": ["Swap", "+ - keys"],
"desc": "Reverse the tip temperature change buttons plus minus assignment." "desc": "Reverse assignment of buttons for temperature adjustment"
}, },
"TempChangeShortStep": { "TempChangeShortStep": {
"text2": ["Temp change", "short?"], "text2": ["Temp change", "short"],
"desc": "Temperature change steps on short button press!" "desc": "Temperature-change-increment on short button press"
}, },
"TempChangeLongStep": { "TempChangeLongStep": {
"text2": ["Temp change", "long?"], "text2": ["Temp change", "long"],
"desc": "Temperature change steps on long button press!" "desc": "Temperature-change-increment on long button press"
}, },
"PowerPulsePower": { "PowerPulsePower": {
"text2": ["Power", "Pulse W"], "text2": ["Power", "pulse"],
"desc": "Keep awake pulse power intensity" "desc": "Intensity of power of keep-awake-pulse (watt)"
}, },
"HallEffSensitivity": { "HallEffSensitivity": {
"text2": ["Hall Eff", "Sensitivity"], "text2": ["Hall sensor", "sensitivity"],
"desc": "Sensitivity of the Hall effect sensor in detecting sleep (0=uit | 1=minst gevoelig | ... | 9=meest gevoelig)" "desc": "Sensitivity of the Hall effect sensor to detect sleep (0=uit | 1=minst gevoelig | ... | 9=meest gevoelig)"
}, },
"LockingMode": { "LockingMode": {
"text2": ["Allow buttons", "locking"], "text2": ["Allow locking", "buttons"],
"desc": "When soldering, long press on both buttons lock them (D=Disable | B=Boost only | F=Full locking)" "desc": "While soldering, hold down both buttons to toggle locking them (D=disable | B=boost mode only | F=full locking)"
}, },
"MinVolCell": { "MinVolCell": {
"text2": ["Minimum", "voltage"], "text2": ["Minimum", "voltage"],
@@ -183,15 +173,15 @@
}, },
"AnimLoop": { "AnimLoop": {
"text2": ["Anim.", "loop"], "text2": ["Anim.", "loop"],
"desc": "Loop icon animations in root menu" "desc": "Loop icon animations in main menu"
}, },
"AnimSpeed": { "AnimSpeed": {
"text2": ["Anim.", "speed"], "text2": ["Anim.", "speed"],
"desc": "Speed of icon animations in menu (O=off | L=low | M=medium | H=high)" "desc": "Pace of icon animations in menu (O=off | T=slow | M=medium | S=fast)"
}, },
"PowerPulseWait": { "PowerPulseWait": {
"text2": ["Power pulse", "wait time"], "text2": ["Power pulse", "delay"],
"desc": "Time to wait before triggering every keep-awake pulse (x 2.5s)" "desc": "Delay before keep-awake-pulse is triggered (x 2.5s)"
}, },
"PowerPulseDuration": { "PowerPulseDuration": {
"text2": ["Power pulse", "duration"], "text2": ["Power pulse", "duration"],
@@ -202,12 +192,16 @@
"desc": "" "desc": ""
}, },
"Brightness": { "Brightness": {
"text2": ["Screen", "Brightness"], "text2": ["Screen", "brightness"],
"desc": "Adjust the contrast/brightness of the OLED screen" "desc": "Adjust the brightness of the OLED screen"
}, },
"ColourInversion": { "ColourInversion": {
"text2": ["Screen", "Invert"], "text2": ["Invert", "screen"],
"desc": "Invert the colours of the OLED screen" "desc": "Invert the colours of the OLED screen"
},
"LOGOTime": {
"text2": ["Boot logo", "duration"],
"desc": "Sets the duration for the boot logo (S=seconds)"
} }
} }
} }

View File

@@ -2,33 +2,24 @@
"languageCode": "NO", "languageCode": "NO",
"languageLocalName": "Norsk", "languageLocalName": "Norsk",
"fonts": ["ascii_basic", "latin_extended"], "fonts": ["ascii_basic", "latin_extended"],
"tempUnitFahrenheit": false,
"messages": { "messages": {
"SettingsCalibrationDone": "Calibration done!",
"SettingsCalibrationWarning": "Sørg for at loddespissen har romtemperatur før du fortsetter!", "SettingsCalibrationWarning": "Sørg for at loddespissen har romtemperatur før du fortsetter!",
"SettingsResetWarning": "Er du sikker på at du vil tilbakestille til standardinnstillinger?", "SettingsResetWarning": "Er du sikker på at du vil tilbakestille til standardinnstillinger?",
"UVLOWarningString": "Lavspenn", "UVLOWarningString": "Lavspenn",
"UndervoltageString": "Underspenning", "UndervoltageString": "Underspenning",
"InputVoltageString": "Innspenn.: ", "InputVoltageString": "Innspenn.: ",
"WarningTipTempString": "Spisstemp: ",
"BadTipString": "BAD TIP",
"SleepingSimpleString": "Zzzz", "SleepingSimpleString": "Zzzz",
"SleepingAdvancedString": "Dvale...", "SleepingAdvancedString": "Dvale...",
"WarningSimpleString": "Varm",
"WarningAdvancedString": "VARM SPISS!",
"SleepingTipAdvancedString": "Spiss:", "SleepingTipAdvancedString": "Spiss:",
"IdleTipString": "Spiss:", "OffString": "Av"
"IdleSetString": "Set:",
"TipDisconnectedString": "SPISS FRAKOBLET",
"SolderingAdvancedPowerPrompt": "Effekt: ",
"OffString": "Av",
"YourGainMessage": "Your gain:"
}, },
"messagesWarn": { "messagesWarn": {
"ResetOKMessage": "Reset OK", "ResetOKMessage": "Reset OK",
"SettingsResetMessage": ["Settings were", "reset!"], "SettingsResetMessage": ["Certain settings", "were changed!"],
"NoAccelerometerMessage": ["No accelerometer", "detected!"], "NoAccelerometerMessage": ["No accelerometer", "detected!"],
"NoPowerDeliveryMessage": ["No USB-PD IC", "detected!"], "NoPowerDeliveryMessage": ["No USB-PD IC", "detected!"],
"LockingKeysString": " LOCKED", "LockingKeysString": "LOCKED",
"UnlockingKeysString": "UNLOCKED", "UnlockingKeysString": "UNLOCKED",
"WarningKeysLockedString": "!LOCKED!", "WarningKeysLockedString": "!LOCKED!",
"WarningThermalRunaway": ["Thermal", "Runaway"] "WarningThermalRunaway": ["Thermal", "Runaway"]
@@ -38,9 +29,9 @@
"SettingLeftChar": "V", "SettingLeftChar": "V",
"SettingAutoChar": "A", "SettingAutoChar": "A",
"SettingOffChar": "O", "SettingOffChar": "O",
"SettingSlowChar": "L", "SettingSlowChar": "S",
"SettingMediumChar": "M", "SettingMediumChar": "M",
"SettingFastChar": "H", "SettingFastChar": "F",
"SettingStartNoneChar": "I", "SettingStartNoneChar": "I",
"SettingStartSolderingChar": "L", "SettingStartSolderingChar": "L",
"SettingStartSleepChar": "D", "SettingStartSleepChar": "D",
@@ -51,8 +42,7 @@
"SettingSensitivityHigh": "H", "SettingSensitivityHigh": "H",
"SettingLockDisableChar": "D", "SettingLockDisableChar": "D",
"SettingLockBoostChar": "B", "SettingLockBoostChar": "B",
"SettingLockFullChar": "F", "SettingLockFullChar": "F"
"SettingNAChar": "N/A"
}, },
"menuGroups": { "menuGroups": {
"PowerMenu": { "PowerMenu": {
@@ -142,40 +132,40 @@
"desc": "Hastigheten på rulletekst" "desc": "Hastigheten på rulletekst"
}, },
"QCMaxVoltage": { "QCMaxVoltage": {
"text2": ["Power", "Wattage"], "text2": ["QC", "voltage"],
"desc": "Power Wattage of the power adapter used" "desc": "Max QC voltage the iron should negotiate for"
}, },
"PDNegTimeout": { "PDNegTimeout": {
"text2": ["PD", "timeout"], "text2": ["PD", "timeout"],
"desc": "PD negotiation timeout in 100ms steps for compatibility with some QC chargers (0: disabled)" "desc": "PD negotiation timeout in 100ms steps for compatibility with some QC chargers"
}, },
"PowerLimit": { "PowerLimit": {
"text2": ["Power", "Limit"], "text2": ["Power", "limit"],
"desc": "Maximum power the iron can use (Watts)" "desc": "Maximum power the iron can use (W=watt)"
}, },
"ReverseButtonTempChange": { "ReverseButtonTempChange": {
"text2": ["Key +-", "reverse?"], "text2": ["Swap", "+ - keys"],
"desc": "Reverse the tip temperature change buttons plus minus assignment." "desc": "Reverse assignment of buttons for temperature adjustment"
}, },
"TempChangeShortStep": { "TempChangeShortStep": {
"text2": ["Temp change", "short?"], "text2": ["Temp change", "short"],
"desc": "Temperature change steps on short button press!" "desc": "Temperature-change-increment on short button press"
}, },
"TempChangeLongStep": { "TempChangeLongStep": {
"text2": ["Temp change", "long?"], "text2": ["Temp change", "long"],
"desc": "Temperature change steps on long button press!" "desc": "Temperature-change-increment on long button press"
}, },
"PowerPulsePower": { "PowerPulsePower": {
"text2": ["Power", "Pulse W"], "text2": ["Power", "pulse"],
"desc": "Keep awake pulse power intensity" "desc": "Intensity of power of keep-awake-pulse (watt)"
}, },
"HallEffSensitivity": { "HallEffSensitivity": {
"text2": ["Hall Eff", "Sensitivity"], "text2": ["Hall sensor", "sensitivity"],
"desc": "Sensitivity of the Hall effect sensor in detecting sleep (0=Inaktiv | 1=Minst følsom | ... | 9=Mest følsom)" "desc": "Sensitivity of the Hall effect sensor to detect sleep (0=Inaktiv | 1=Minst følsom | ... | 9=Mest følsom)"
}, },
"LockingMode": { "LockingMode": {
"text2": ["Allow buttons", "locking"], "text2": ["Allow locking", "buttons"],
"desc": "When soldering, long press on both buttons lock them (D=Disable | B=Boost only | F=Full locking)" "desc": "While soldering, hold down both buttons to toggle locking them (D=disable | B=boost mode only | F=full locking)"
}, },
"MinVolCell": { "MinVolCell": {
"text2": ["Minimum", "voltage"], "text2": ["Minimum", "voltage"],
@@ -183,15 +173,15 @@
}, },
"AnimLoop": { "AnimLoop": {
"text2": ["Anim.", "loop"], "text2": ["Anim.", "loop"],
"desc": "Loop icon animations in root menu" "desc": "Loop icon animations in main menu"
}, },
"AnimSpeed": { "AnimSpeed": {
"text2": ["Anim.", "speed"], "text2": ["Anim.", "speed"],
"desc": "Speed of icon animations in menu (O=off | L=low | M=medium | H=high)" "desc": "Pace of icon animations in menu (O=off | S=slow | M=medium | F=fast)"
}, },
"PowerPulseWait": { "PowerPulseWait": {
"text2": ["Power pulse", "wait time"], "text2": ["Power pulse", "delay"],
"desc": "Time to wait before triggering every keep-awake pulse (x 2.5s)" "desc": "Delay before keep-awake-pulse is triggered (x 2.5s)"
}, },
"PowerPulseDuration": { "PowerPulseDuration": {
"text2": ["Power pulse", "duration"], "text2": ["Power pulse", "duration"],
@@ -202,12 +192,16 @@
"desc": "" "desc": ""
}, },
"Brightness": { "Brightness": {
"text2": ["Screen", "Brightness"], "text2": ["Screen", "brightness"],
"desc": "Adjust the contrast/brightness of the OLED screen" "desc": "Adjust the brightness of the OLED screen"
}, },
"ColourInversion": { "ColourInversion": {
"text2": ["Screen", "Invert"], "text2": ["Invert", "screen"],
"desc": "Invert the colours of the OLED screen" "desc": "Invert the colours of the OLED screen"
},
"LOGOTime": {
"text2": ["Boot logo", "duration"],
"desc": "Sets the duration for the boot logo (S=seconds)"
} }
} }
} }

View File

@@ -4,25 +4,15 @@
"fonts": ["ascii_basic", "latin_extended"], "fonts": ["ascii_basic", "latin_extended"],
"tempUnitFahrenheit": false, "tempUnitFahrenheit": false,
"messages": { "messages": {
"SettingsCalibrationDone": "Kalibracja udana!",
"SettingsCalibrationWarning": "Przed kontynuowaniem upewnij się, że końcówka osiągnęła temperaturę pokojową!", "SettingsCalibrationWarning": "Przed kontynuowaniem upewnij się, że końcówka osiągnęła temperaturę pokojową!",
"SettingsResetWarning": "Czy na pewno chcesz przywrócić ustawienia fabryczne?", "SettingsResetWarning": "Czy na pewno chcesz przywrócić ustawienia fabryczne?",
"UVLOWarningString": "NIS. NAP", "UVLOWarningString": "NIS. NAP",
"UndervoltageString": "Zbyt niskie nap.", "UndervoltageString": "Zbyt niskie nap.",
"InputVoltageString": "Nap. wej.:", "InputVoltageString": "Nap. wej.:",
"WarningTipTempString": "Temp. grotu:",
"BadTipString": "ZŁY GROT",
"SleepingSimpleString": "Zzz!", "SleepingSimpleString": "Zzz!",
"SleepingAdvancedString": "Tr. uśpienia", "SleepingAdvancedString": "Tr. uśpienia",
"WarningSimpleString": "HOT!",
"WarningAdvancedString": "GORĄCA KOŃCÓWKA!",
"SleepingTipAdvancedString": "Grot:", "SleepingTipAdvancedString": "Grot:",
"IdleTipString": "Grot:", "OffString": "Wył"
"IdleSetString": " Ust:",
"TipDisconnectedString": "GROT ODŁĄCZONY",
"SolderingAdvancedPowerPrompt": "Moc: ",
"OffString": "Wył",
"YourGainMessage": "Us.zysk:"
}, },
"messagesWarn": { "messagesWarn": {
"ResetOKMessage": "Reset OK", "ResetOKMessage": "Reset OK",
@@ -52,8 +42,7 @@
"SettingSensitivityHigh": "W", "SettingSensitivityHigh": "W",
"SettingLockDisableChar": "W", "SettingLockDisableChar": "W",
"SettingLockBoostChar": "B", "SettingLockBoostChar": "B",
"SettingLockFullChar": "P", "SettingLockFullChar": "P"
"SettingNAChar": "N/D"
}, },
"menuGroups": { "menuGroups": {
"PowerMenu": { "PowerMenu": {
@@ -188,7 +177,7 @@
}, },
"AnimSpeed": { "AnimSpeed": {
"text2": ["Prędkosć", "animacji"], "text2": ["Prędkosć", "animacji"],
"desc": "Prędkość animacji ikon w menu (O: wył. | L: mała | M: średnia | H: duża)" "desc": "Prędkość animacji ikon w menu (O: wył. | W: mała | M: średnia | S: duża)"
}, },
"PowerPulseWait": { "PowerPulseWait": {
"text2": ["Czas między", "imp. mocy"], "text2": ["Czas między", "imp. mocy"],
@@ -209,6 +198,10 @@
"ColourInversion": { "ColourInversion": {
"text2": ["Odwrócenie", "kolorów"], "text2": ["Odwrócenie", "kolorów"],
"desc": "Odwrócenie kolorów wyświetlacza OLED" "desc": "Odwrócenie kolorów wyświetlacza OLED"
},
"LOGOTime": {
"text2": ["Boot logo", "duration"],
"desc": "Sets the duration for the boot logo (S=seconds)"
} }
} }
} }

View File

@@ -2,30 +2,21 @@
"languageCode": "PT", "languageCode": "PT",
"languageLocalName": "Português", "languageLocalName": "Português",
"fonts": ["ascii_basic", "latin_extended"], "fonts": ["ascii_basic", "latin_extended"],
"tempUnitFahrenheit": false,
"messages": { "messages": {
"SettingsCalibrationDone": "Calibração terminada!",
"SettingsCalibrationWarning": "A ponta deve estar à temperatura ambiente antes de continuar!", "SettingsCalibrationWarning": "A ponta deve estar à temperatura ambiente antes de continuar!",
"SettingsResetWarning": "Definições de fábrica?", "SettingsResetWarning": "Definições de fábrica?",
"UVLOWarningString": "DC BAIXO", "UVLOWarningString": "DC BAIXO",
"UndervoltageString": "Subtensão", "UndervoltageString": "Subtensão",
"InputVoltageString": "Tensão ", "InputVoltageString": "Tensão ",
"WarningTipTempString": "Temperatura ",
"BadTipString": "ER PONTA",
"SleepingSimpleString": "Zzzz", "SleepingSimpleString": "Zzzz",
"SleepingAdvancedString": "Repouso...", "SleepingAdvancedString": "Repouso...",
"WarningSimpleString": "TEMP",
"WarningAdvancedString": "TEMP ELEVADA!",
"SleepingTipAdvancedString": "Ponta:", "SleepingTipAdvancedString": "Ponta:",
"IdleTipString": "Ponta:", "OffString": "Off"
"IdleSetString": " Aj:",
"TipDisconnectedString": "SEM PONTA",
"SolderingAdvancedPowerPrompt": "Power: ",
"OffString": "Off",
"YourGainMessage": "Your gain:"
}, },
"messagesWarn": { "messagesWarn": {
"ResetOKMessage": "Reset OK", "ResetOKMessage": "Reset OK",
"SettingsResetMessage": ["Settings were", "reset!"], "SettingsResetMessage": ["Certain settings", "were changed!"],
"NoAccelerometerMessage": ["No accelerometer", "detected!"], "NoAccelerometerMessage": ["No accelerometer", "detected!"],
"NoPowerDeliveryMessage": ["No USB-PD IC", "detected!"], "NoPowerDeliveryMessage": ["No USB-PD IC", "detected!"],
"LockingKeysString": "LOCKED", "LockingKeysString": "LOCKED",
@@ -38,9 +29,9 @@
"SettingLeftChar": "C", "SettingLeftChar": "C",
"SettingAutoChar": "A", "SettingAutoChar": "A",
"SettingOffChar": "O", "SettingOffChar": "O",
"SettingSlowChar": "L", "SettingSlowChar": "S",
"SettingMediumChar": "M", "SettingMediumChar": "M",
"SettingFastChar": "R", "SettingFastChar": "F",
"SettingStartNoneChar": "D", "SettingStartNoneChar": "D",
"SettingStartSolderingChar": "S", "SettingStartSolderingChar": "S",
"SettingStartSleepChar": "H", "SettingStartSleepChar": "H",
@@ -51,8 +42,7 @@
"SettingSensitivityHigh": "H", "SettingSensitivityHigh": "H",
"SettingLockDisableChar": "D", "SettingLockDisableChar": "D",
"SettingLockBoostChar": "B", "SettingLockBoostChar": "B",
"SettingLockFullChar": "F", "SettingLockFullChar": "F"
"SettingNAChar": "N/A"
}, },
"menuGroups": { "menuGroups": {
"PowerMenu": { "PowerMenu": {
@@ -150,7 +140,7 @@
"desc": "PD negotiation timeout in 100ms steps for compatibility with some QC chargers (0: disabled)" "desc": "PD negotiation timeout in 100ms steps for compatibility with some QC chargers (0: disabled)"
}, },
"PowerLimit": { "PowerLimit": {
"text2": ["Power", "Limit"], "text2": ["Power", "limit"],
"desc": "Maximum power the iron can use (Watts)" "desc": "Maximum power the iron can use (Watts)"
}, },
"ReverseButtonTempChange": { "ReverseButtonTempChange": {
@@ -187,11 +177,11 @@
}, },
"AnimSpeed": { "AnimSpeed": {
"text2": ["Anim.", "speed"], "text2": ["Anim.", "speed"],
"desc": "Speed of icon animations in menu (O=off | L=low | M=medium | H=high)" "desc": "Pace of icon animations in menu (O=off | S=slow | M=medium | F=fast)"
}, },
"PowerPulseWait": { "PowerPulseWait": {
"text2": ["Power pulse", "wait time"], "text2": ["Power pulse", "delay"],
"desc": "Time to wait before triggering every keep-awake pulse (x 2.5s)" "desc": "Delay before keep-awake-pulse is triggered (x 2.5s)"
}, },
"PowerPulseDuration": { "PowerPulseDuration": {
"text2": ["Power pulse", "duration"], "text2": ["Power pulse", "duration"],
@@ -202,12 +192,16 @@
"desc": "" "desc": ""
}, },
"Brightness": { "Brightness": {
"text2": ["Screen", "Brightness"], "text2": ["Screen", "brightness"],
"desc": "Adjust the contrast/brightness of the OLED screen" "desc": "Adjust the brightness of the OLED screen"
}, },
"ColourInversion": { "ColourInversion": {
"text2": ["Screen", "Invert"], "text2": ["Invert", "screen"],
"desc": "Invert the colours of the OLED screen" "desc": "Invert the colours of the OLED screen"
},
"LOGOTime": {
"text2": ["Boot logo", "duration"],
"desc": "Sets the duration for the boot logo (S=seconds)"
} }
} }
} }

View File

@@ -4,25 +4,15 @@
"fonts": ["ascii_basic", "latin_extended"], "fonts": ["ascii_basic", "latin_extended"],
"tempUnitFahrenheit": true, "tempUnitFahrenheit": true,
"messages": { "messages": {
"SettingsCalibrationDone": "Calibrare completa!",
"SettingsCalibrationWarning": "Vă rugăm să vă asigurati că vârful este la temperatura camerei, înainte de a continua!", "SettingsCalibrationWarning": "Vă rugăm să vă asigurati că vârful este la temperatura camerei, înainte de a continua!",
"SettingsResetWarning": "Sigur doriti să restaurati la setările implicite?", "SettingsResetWarning": "Sigur doriti să restaurati la setările implicite?",
"UVLOWarningString": "DC LOW", "UVLOWarningString": "DC LOW",
"UndervoltageString": "Sub tensiune", "UndervoltageString": "Sub tensiune",
"InputVoltageString": "Intrare V: ", "InputVoltageString": "Intrare V: ",
"WarningTipTempString": "Temp. varf: ",
"BadTipString": "VARF DEFECT",
"SleepingSimpleString": "Zzzz", "SleepingSimpleString": "Zzzz",
"SleepingAdvancedString": "Adormit...", "SleepingAdvancedString": "Adormit...",
"WarningSimpleString": "FIERBINTE!",
"WarningAdvancedString": "!!! VARF FIERBINTE !!!",
"SleepingTipAdvancedString": "Tip:", "SleepingTipAdvancedString": "Tip:",
"IdleTipString": "Tip:", "OffString": "Nu"
"IdleSetString": " Set:",
"TipDisconnectedString": "FĂRĂ VARF",
"SolderingAdvancedPowerPrompt": "Putere: ",
"OffString": "Nu",
"YourGainMessage": "Coeficient:"
}, },
"messagesWarn": { "messagesWarn": {
"ResetOKMessage": "Reset OK", "ResetOKMessage": "Reset OK",
@@ -52,8 +42,7 @@
"SettingSensitivityHigh": "H", "SettingSensitivityHigh": "H",
"SettingLockDisableChar": "D", "SettingLockDisableChar": "D",
"SettingLockBoostChar": "B", "SettingLockBoostChar": "B",
"SettingLockFullChar": "F", "SettingLockFullChar": "F"
"SettingNAChar": "N/A"
}, },
"menuGroups": { "menuGroups": {
"PowerMenu": { "PowerMenu": {
@@ -188,7 +177,7 @@
}, },
"AnimSpeed": { "AnimSpeed": {
"text2": ["Animatii", "viteză"], "text2": ["Animatii", "viteză"],
"desc": "Ritmul animatiilor pictogramei din meniu (O=oprit | S=încet | M=mediu | F=rapid)" "desc": "Ritmul animatiilor pictogramei din meniu (O=oprit | Î=încet | M=mediu | R=rapid)"
}, },
"PowerPulseWait": { "PowerPulseWait": {
"text2": ["Întârziere", "puls putere"], "text2": ["Întârziere", "puls putere"],
@@ -209,6 +198,10 @@
"ColourInversion": { "ColourInversion": {
"text2": ["Inverseaza", "culoarea"], "text2": ["Inverseaza", "culoarea"],
"desc": "Inverseaza culoarea ecranului" "desc": "Inverseaza culoarea ecranului"
},
"LOGOTime": {
"text2": ["Boot logo", "duration"],
"desc": "Sets the duration for the boot logo (S=seconds)"
} }
} }
} }

View File

@@ -12,10 +12,6 @@
"SleepingSimpleString": "Zzzz", "SleepingSimpleString": "Zzzz",
"SleepingAdvancedString": "Ожидание...", "SleepingAdvancedString": "Ожидание...",
"SleepingTipAdvancedString": "Жало:", "SleepingTipAdvancedString": "Жало:",
"IdleTipString": "Жало:",
"IdleSetString": " ->",
"TipDisconnectedString": "ЖАЛО ОТСОЕДИНЕНО",
"SolderingAdvancedPowerPrompt": "Питание: ",
"OffString": "Вык" "OffString": "Вык"
}, },
"messagesWarn": { "messagesWarn": {
@@ -46,8 +42,7 @@
"SettingSensitivityHigh": "В", "SettingSensitivityHigh": "В",
"SettingLockDisableChar": "О", "SettingLockDisableChar": "О",
"SettingLockBoostChar": "Т", "SettingLockBoostChar": "Т",
"SettingLockFullChar": "П", "SettingLockFullChar": "П"
"SettingNAChar": "Н/Д"
}, },
"menuGroups": { "menuGroups": {
"PowerMenu": { "PowerMenu": {
@@ -203,6 +198,10 @@
"ColourInversion": { "ColourInversion": {
"text2": ["Инверт", "экрана"], "text2": ["Инверт", "экрана"],
"desc": "Инвертировать цвета на OLED экране" "desc": "Инвертировать цвета на OLED экране"
},
"LOGOTime": {
"text2": ["Boot logo", "duration"],
"desc": "Sets the duration for the boot logo (S=seconds)"
} }
} }
} }

View File

@@ -2,6 +2,7 @@
"languageCode": "SK", "languageCode": "SK",
"languageLocalName": "Slovenčina", "languageLocalName": "Slovenčina",
"fonts": ["ascii_basic", "latin_extended"], "fonts": ["ascii_basic", "latin_extended"],
"tempUnitFahrenheit": false,
"messages": { "messages": {
"SettingsCalibrationWarning": "Najprv sa prosím uistite, že hrot má izbovú teplotu!", "SettingsCalibrationWarning": "Najprv sa prosím uistite, že hrot má izbovú teplotu!",
"SettingsResetWarning": "Naozaj chcete obnoviť továrenské nastavenia?", "SettingsResetWarning": "Naozaj chcete obnoviť továrenské nastavenia?",
@@ -11,10 +12,6 @@
"SleepingSimpleString": "Chrr", "SleepingSimpleString": "Chrr",
"SleepingAdvancedString": "Pokojový režim..", "SleepingAdvancedString": "Pokojový režim..",
"SleepingTipAdvancedString": "Hrot:", "SleepingTipAdvancedString": "Hrot:",
"IdleTipString": "Hrot:",
"IdleSetString": "Cieľ:",
"TipDisconnectedString": "HROT ODPOJENÝ",
"SolderingAdvancedPowerPrompt": "Výkon: ",
"OffString": "Vyp" "OffString": "Vyp"
}, },
"messagesWarn": { "messagesWarn": {
@@ -45,8 +42,7 @@
"SettingSensitivityHigh": "V", "SettingSensitivityHigh": "V",
"SettingLockDisableChar": "Z", "SettingLockDisableChar": "Z",
"SettingLockBoostChar": "B", "SettingLockBoostChar": "B",
"SettingLockFullChar": "P", "SettingLockFullChar": "P"
"SettingNAChar": "N/A"
}, },
"menuGroups": { "menuGroups": {
"PowerMenu": { "PowerMenu": {
@@ -202,6 +198,10 @@
"ColourInversion": { "ColourInversion": {
"text2": ["Invertovať", "obrazovku"], "text2": ["Invertovať", "obrazovku"],
"desc": "Invertovať farby OLED displeja" "desc": "Invertovať farby OLED displeja"
},
"LOGOTime": {
"text2": ["Boot logo", "duration"],
"desc": "Sets the duration for the boot logo (S=seconds)"
} }
} }
} }

View File

@@ -2,26 +2,17 @@
"languageCode": "SL", "languageCode": "SL",
"languageLocalName": "Slovenščina", "languageLocalName": "Slovenščina",
"fonts": ["ascii_basic", "latin_extended"], "fonts": ["ascii_basic", "latin_extended"],
"tempUnitFahrenheit": false,
"messages": { "messages": {
"SettingsCalibrationDone": "Kalibracija opravljena!",
"SettingsCalibrationWarning": "Pred nadaljevanjem mora biti konica segreta na sobno temperaturo!", "SettingsCalibrationWarning": "Pred nadaljevanjem mora biti konica segreta na sobno temperaturo!",
"SettingsResetWarning": "Res želite ponastaviti na privzete nastavitve?", "SettingsResetWarning": "Res želite ponastaviti na privzete nastavitve?",
"UVLOWarningString": "NIZKA U", "UVLOWarningString": "NIZKA U",
"UndervoltageString": "Nizka napetost", "UndervoltageString": "Nizka napetost",
"InputVoltageString": "Vhodna U: ", "InputVoltageString": "Vhodna U: ",
"WarningTipTempString": "Temp. kon.: ",
"BadTipString": "KONICA?",
"SleepingSimpleString": "Zzzz", "SleepingSimpleString": "Zzzz",
"SleepingAdvancedString": "Spim...", "SleepingAdvancedString": "Spim...",
"WarningSimpleString": "VROČ",
"WarningAdvancedString": "!!VROČA KONICA!!",
"SleepingTipAdvancedString": "Konica", "SleepingTipAdvancedString": "Konica",
"IdleTipString": "Kon:", "OffString": "Off"
"IdleSetString": " temp:",
"TipDisconnectedString": "NI KONICE",
"SolderingAdvancedPowerPrompt": "Moč: ",
"OffString": "Off",
"YourGainMessage": "Ojačenje"
}, },
"messagesWarn": { "messagesWarn": {
"ResetOKMessage": "Reset OK", "ResetOKMessage": "Reset OK",
@@ -51,8 +42,7 @@
"SettingSensitivityHigh": "V", "SettingSensitivityHigh": "V",
"SettingLockDisableChar": "O", "SettingLockDisableChar": "O",
"SettingLockBoostChar": "L", "SettingLockBoostChar": "L",
"SettingLockFullChar": "P", "SettingLockFullChar": "P"
"SettingNAChar": "N/A"
}, },
"menuGroups": { "menuGroups": {
"PowerMenu": { "PowerMenu": {
@@ -183,15 +173,15 @@
}, },
"AnimLoop": { "AnimLoop": {
"text2": ["Anim.", "loop"], "text2": ["Anim.", "loop"],
"desc": "Loop icon animations in root menu" "desc": "Loop icon animations in main menu"
}, },
"AnimSpeed": { "AnimSpeed": {
"text2": ["Anim.", "speed"], "text2": ["Anim.", "speed"],
"desc": "Speed of icon animations in menu (O=off | L=low | M=medium | H=high)" "desc": "Pace of icon animations in menu (O=off | P=slow | M=medium | H=fast)"
}, },
"PowerPulseWait": { "PowerPulseWait": {
"text2": ["Power pulse", "wait time"], "text2": ["Power pulse", "delay"],
"desc": "Time to wait before triggering every keep-awake pulse (x 2.5s)" "desc": "Delay before keep-awake-pulse is triggered (x 2.5s)"
}, },
"PowerPulseDuration": { "PowerPulseDuration": {
"text2": ["Power pulse", "duration"], "text2": ["Power pulse", "duration"],
@@ -202,12 +192,16 @@
"desc": "" "desc": ""
}, },
"Brightness": { "Brightness": {
"text2": ["Screen", "Brightness"], "text2": ["Screen", "brightness"],
"desc": "Adjust the contrast/brightness of the OLED screen" "desc": "Adjust the brightness of the OLED screen"
}, },
"ColourInversion": { "ColourInversion": {
"text2": ["Screen", "Invert"], "text2": ["Invert", "screen"],
"desc": "Invert the colours of the OLED screen" "desc": "Invert the colours of the OLED screen"
},
"LOGOTime": {
"text2": ["Boot logo", "duration"],
"desc": "Sets the duration for the boot logo (S=seconds)"
} }
} }
} }

View File

@@ -2,30 +2,21 @@
"languageCode": "SR_CYRL", "languageCode": "SR_CYRL",
"languageLocalName": "Српски", "languageLocalName": "Српски",
"fonts": ["ascii_basic", "cyrillic"], "fonts": ["ascii_basic", "cyrillic"],
"tempUnitFahrenheit": false,
"messages": { "messages": {
"SettingsCalibrationDone": "Калибрација готова",
"SettingsCalibrationWarning": "Проверите да ли је врх охлађен на собну температуру пре него што наставите", "SettingsCalibrationWarning": "Проверите да ли је врх охлађен на собну температуру пре него што наставите",
"SettingsResetWarning": "Да ли заиста желите да вратите поставке на фабричке вредности?", "SettingsResetWarning": "Да ли заиста желите да вратите поставке на фабричке вредности?",
"UVLOWarningString": "НИЗ.НАП.", "UVLOWarningString": "НИЗ.НАП.",
"UndervoltageString": "ПРЕНИЗАК НАПОН", "UndervoltageString": "ПРЕНИЗАК НАПОН",
"InputVoltageString": "Ул. напон: ", "InputVoltageString": "Ул. напон: ",
"WarningTipTempString": "Темп. врха: ",
"BadTipString": "ЛОШ ВРХ",
"SleepingSimpleString": "Сан", "SleepingSimpleString": "Сан",
"SleepingAdvancedString": "Спавање...", "SleepingAdvancedString": "Спавање...",
"WarningSimpleString": "ВРУЋ",
"WarningAdvancedString": "! ОПРЕЗ, ВРУЋЕ !",
"SleepingTipAdvancedString": "Врх:", "SleepingTipAdvancedString": "Врх:",
"IdleTipString": "Врх:", "OffString": "Иск"
"IdleSetString": " / ",
"TipDisconnectedString": "ВРХ НИЈЕ СПОЈЕН",
"SolderingAdvancedPowerPrompt": "Снага: ",
"OffString": "Иск",
"YourGainMessage": "Your gain:"
}, },
"messagesWarn": { "messagesWarn": {
"ResetOKMessage": "Reset OK", "ResetOKMessage": "Reset OK",
"SettingsResetMessage": ["Settings were", "reset!"], "SettingsResetMessage": ["Certain settings", "were changed!"],
"NoAccelerometerMessage": ["No accelerometer", "detected!"], "NoAccelerometerMessage": ["No accelerometer", "detected!"],
"NoPowerDeliveryMessage": ["No USB-PD IC", "detected!"], "NoPowerDeliveryMessage": ["No USB-PD IC", "detected!"],
"LockingKeysString": "LOCKED", "LockingKeysString": "LOCKED",
@@ -51,8 +42,7 @@
"SettingSensitivityHigh": "H", "SettingSensitivityHigh": "H",
"SettingLockDisableChar": "D", "SettingLockDisableChar": "D",
"SettingLockBoostChar": "B", "SettingLockBoostChar": "B",
"SettingLockFullChar": "F", "SettingLockFullChar": "F"
"SettingNAChar": "N/A"
}, },
"menuGroups": { "menuGroups": {
"PowerMenu": { "PowerMenu": {
@@ -147,35 +137,35 @@
}, },
"PDNegTimeout": { "PDNegTimeout": {
"text2": ["PD", "timeout"], "text2": ["PD", "timeout"],
"desc": "PD negotiation timeout in 100ms steps for compatibility with some QC chargers (0: disabled)" "desc": "PD negotiation timeout in 100ms steps for compatibility with some QC chargers"
}, },
"PowerLimit": { "PowerLimit": {
"text2": ["Power", "Limit"], "text2": ["Power", "limit"],
"desc": "Maximum power the iron can use (Watts)" "desc": "Maximum power the iron can use (W=watt)"
}, },
"ReverseButtonTempChange": { "ReverseButtonTempChange": {
"text2": ["Key +-", "reverse?"], "text2": ["Swap", "+ - keys"],
"desc": "Reverse the tip temperature change buttons plus minus assignment." "desc": "Reverse assignment of buttons for temperature adjustment"
}, },
"TempChangeShortStep": { "TempChangeShortStep": {
"text2": ["Temp change", "short?"], "text2": ["Temp change", "short"],
"desc": "Temperature change steps on short button press!" "desc": "Temperature-change-increment on short button press"
}, },
"TempChangeLongStep": { "TempChangeLongStep": {
"text2": ["Temp change", "long?"], "text2": ["Temp change", "long"],
"desc": "Temperature change steps on long button press!" "desc": "Temperature-change-increment on long button press"
}, },
"PowerPulsePower": { "PowerPulsePower": {
"text2": ["Power", "Pulse W"], "text2": ["Power", "pulse"],
"desc": "Keep awake pulse power intensity" "desc": "Intensity of power of keep-awake-pulse (watt)"
}, },
"HallEffSensitivity": { "HallEffSensitivity": {
"text2": ["Hall Eff", "Sensitivity"], "text2": ["Hall sensor", "sensitivity"],
"desc": "Sensitivity of the Hall effect sensor in detecting sleep (0=искључено | 1=најмање осетљиво | ... | 9=најосетљивије)" "desc": "Sensitivity of the Hall effect sensor to detect sleep (0=искључено | 1=најмање осетљиво | ... | 9=најосетљивије)"
}, },
"LockingMode": { "LockingMode": {
"text2": ["Allow buttons", "locking"], "text2": ["Allow locking", "buttons"],
"desc": "When soldering, long press on both buttons lock them (D=Disable | B=Boost only | F=Full locking)" "desc": "While soldering, hold down both buttons to toggle locking them (D=disable | B=boost mode only | F=full locking)"
}, },
"MinVolCell": { "MinVolCell": {
"text2": ["Minimum", "voltage"], "text2": ["Minimum", "voltage"],
@@ -183,15 +173,15 @@
}, },
"AnimLoop": { "AnimLoop": {
"text2": ["Anim.", "loop"], "text2": ["Anim.", "loop"],
"desc": "Loop icon animations in root menu" "desc": "Loop icon animations in main menu"
}, },
"AnimSpeed": { "AnimSpeed": {
"text2": ["Anim.", "speed"], "text2": ["Anim.", "speed"],
"desc": "Speed of icon animations in menu (O=off | L=low | M=medium | H=high)" "desc": "Pace of icon animations in menu (O=off | С=slow | M=medium | Б=fast)"
}, },
"PowerPulseWait": { "PowerPulseWait": {
"text2": ["Power pulse", "wait time"], "text2": ["Power pulse", "delay"],
"desc": "Time to wait before triggering every keep-awake pulse (x 2.5с)" "desc": "Delay before keep-awake-pulse is triggered (x 2.5с)"
}, },
"PowerPulseDuration": { "PowerPulseDuration": {
"text2": ["Power pulse", "duration"], "text2": ["Power pulse", "duration"],
@@ -202,12 +192,16 @@
"desc": "" "desc": ""
}, },
"Brightness": { "Brightness": {
"text2": ["Screen", "Brightness"], "text2": ["Screen", "brightness"],
"desc": "Adjust the contrast/brightness of the OLED screen" "desc": "Adjust the brightness of the OLED screen"
}, },
"ColourInversion": { "ColourInversion": {
"text2": ["Screen", "Invert"], "text2": ["Invert", "screen"],
"desc": "Invert the colours of the OLED screen" "desc": "Invert the colours of the OLED screen"
},
"LOGOTime": {
"text2": ["Boot logo", "duration"],
"desc": "Sets the duration for the boot logo (S=seconds)"
} }
} }
} }

View File

@@ -2,30 +2,21 @@
"languageCode": "SR_LATN", "languageCode": "SR_LATN",
"languageLocalName": "Srpski", "languageLocalName": "Srpski",
"fonts": ["ascii_basic", "latin_extended"], "fonts": ["ascii_basic", "latin_extended"],
"tempUnitFahrenheit": false,
"messages": { "messages": {
"SettingsCalibrationDone": "Kalibracija gotova",
"SettingsCalibrationWarning": "Proverite da li je vrh ohlađen na sobnu temperaturu pre nego što nastavite", "SettingsCalibrationWarning": "Proverite da li je vrh ohlađen na sobnu temperaturu pre nego što nastavite",
"SettingsResetWarning": "Da li zaista želite da vratite postavke na fabričke vrednosti?", "SettingsResetWarning": "Da li zaista želite da vratite postavke na fabričke vrednosti?",
"UVLOWarningString": "NIZ.NAP.", "UVLOWarningString": "NIZ.NAP.",
"UndervoltageString": "PRENIZAK NAPON", "UndervoltageString": "PRENIZAK NAPON",
"InputVoltageString": "Ul. napon: ", "InputVoltageString": "Ul. napon: ",
"WarningTipTempString": "Temp. vrha: ",
"BadTipString": "LOŠ VRH",
"SleepingSimpleString": "Zzz", "SleepingSimpleString": "Zzz",
"SleepingAdvancedString": "Spavanje...", "SleepingAdvancedString": "Spavanje...",
"WarningSimpleString": "VRUĆ",
"WarningAdvancedString": "! OPREZ, VRUĆE !",
"SleepingTipAdvancedString": "Vrh:", "SleepingTipAdvancedString": "Vrh:",
"IdleTipString": "Vrh:", "OffString": "Isk"
"IdleSetString": " / ",
"TipDisconnectedString": "VRH NIJE SPOJEN",
"SolderingAdvancedPowerPrompt": "Snaga: ",
"OffString": "Isk",
"YourGainMessage": "Your gain:"
}, },
"messagesWarn": { "messagesWarn": {
"ResetOKMessage": "Reset OK", "ResetOKMessage": "Reset OK",
"SettingsResetMessage": ["Settings were", "reset!"], "SettingsResetMessage": ["Certain settings", "were changed!"],
"NoAccelerometerMessage": ["No accelerometer", "detected!"], "NoAccelerometerMessage": ["No accelerometer", "detected!"],
"NoPowerDeliveryMessage": ["No USB-PD IC", "detected!"], "NoPowerDeliveryMessage": ["No USB-PD IC", "detected!"],
"LockingKeysString": "LOCKED", "LockingKeysString": "LOCKED",
@@ -51,8 +42,7 @@
"SettingSensitivityHigh": "H", "SettingSensitivityHigh": "H",
"SettingLockDisableChar": "D", "SettingLockDisableChar": "D",
"SettingLockBoostChar": "B", "SettingLockBoostChar": "B",
"SettingLockFullChar": "F", "SettingLockFullChar": "F"
"SettingNAChar": "N/A"
}, },
"menuGroups": { "menuGroups": {
"PowerMenu": { "PowerMenu": {
@@ -147,35 +137,35 @@
}, },
"PDNegTimeout": { "PDNegTimeout": {
"text2": ["PD", "timeout"], "text2": ["PD", "timeout"],
"desc": "PD negotiation timeout in 100ms steps for compatibility with some QC chargers (0: disabled)" "desc": "PD negotiation timeout in 100ms steps for compatibility with some QC chargers"
}, },
"PowerLimit": { "PowerLimit": {
"text2": ["Power", "Limit"], "text2": ["Power", "limit"],
"desc": "Maximum power the iron can use (Watts)" "desc": "Maximum power the iron can use (W=watt)"
}, },
"ReverseButtonTempChange": { "ReverseButtonTempChange": {
"text2": ["Key +-", "reverse?"], "text2": ["Swap", "+ - keys"],
"desc": "Reverse the tip temperature change buttons plus minus assignment." "desc": "Reverse assignment of buttons for temperature adjustment"
}, },
"TempChangeShortStep": { "TempChangeShortStep": {
"text2": ["Temp change", "short?"], "text2": ["Temp change", "short"],
"desc": "Temperature change steps on short button press!" "desc": "Temperature-change-increment on short button press"
}, },
"TempChangeLongStep": { "TempChangeLongStep": {
"text2": ["Temp change", "long?"], "text2": ["Temp change", "long"],
"desc": "Temperature change steps on long button press!" "desc": "Temperature-change-increment on long button press"
}, },
"PowerPulsePower": { "PowerPulsePower": {
"text2": ["Power", "Pulse W"], "text2": ["Power", "pulse"],
"desc": "Keep awake pulse power intensity" "desc": "Intensity of power of keep-awake-pulse (watt)"
}, },
"HallEffSensitivity": { "HallEffSensitivity": {
"text2": ["Hall Eff", "Sensitivity"], "text2": ["Hall sensor", "sensitivity"],
"desc": "Sensitivity of the Hall effect sensor in detecting sleep (0=isključeno | 1=najmanje osetljivo | ... | 9=najosetljivije)" "desc": "Sensitivity of the Hall effect sensor to detect sleep (0=isključeno | 1=najmanje osetljivo | ... | 9=najosetljivije)"
}, },
"LockingMode": { "LockingMode": {
"text2": ["Allow buttons", "locking"], "text2": ["Allow locking", "buttons"],
"desc": "When soldering, long press on both buttons lock them (D=Disable | B=Boost only | F=Full locking)" "desc": "While soldering, hold down both buttons to toggle locking them (D=disable | B=boost mode only | F=full locking)"
}, },
"MinVolCell": { "MinVolCell": {
"text2": ["Minimum", "voltage"], "text2": ["Minimum", "voltage"],
@@ -183,15 +173,15 @@
}, },
"AnimLoop": { "AnimLoop": {
"text2": ["Anim.", "loop"], "text2": ["Anim.", "loop"],
"desc": "Loop icon animations in root menu" "desc": "Loop icon animations in main menu"
}, },
"AnimSpeed": { "AnimSpeed": {
"text2": ["Anim.", "speed"], "text2": ["Anim.", "speed"],
"desc": "Speed of icon animations in menu (O=off | L=low | M=medium | H=high)" "desc": "Pace of icon animations in menu (O=off | S=slow | M=medium | B=fast)"
}, },
"PowerPulseWait": { "PowerPulseWait": {
"text2": ["Power pulse", "wait time"], "text2": ["Power pulse", "delay"],
"desc": "Time to wait before triggering every keep-awake pulse (x 2.5s)" "desc": "Delay before keep-awake-pulse is triggered (x 2.5s)"
}, },
"PowerPulseDuration": { "PowerPulseDuration": {
"text2": ["Power pulse", "duration"], "text2": ["Power pulse", "duration"],
@@ -202,12 +192,16 @@
"desc": "" "desc": ""
}, },
"Brightness": { "Brightness": {
"text2": ["Screen", "Brightness"], "text2": ["Screen", "brightness"],
"desc": "Adjust the contrast/brightness of the OLED screen" "desc": "Adjust the brightness of the OLED screen"
}, },
"ColourInversion": { "ColourInversion": {
"text2": ["Screen", "Invert"], "text2": ["Invert", "screen"],
"desc": "Invert the colours of the OLED screen" "desc": "Invert the colours of the OLED screen"
},
"LOGOTime": {
"text2": ["Boot logo", "duration"],
"desc": "Sets the duration for the boot logo (S=seconds)"
} }
} }
} }

View File

@@ -2,6 +2,7 @@
"languageCode": "SV", "languageCode": "SV",
"languageLocalName": "Svenska", "languageLocalName": "Svenska",
"fonts": ["ascii_basic", "latin_extended"], "fonts": ["ascii_basic", "latin_extended"],
"tempUnitFahrenheit": false,
"messages": { "messages": {
"SettingsCalibrationWarning": "Se till att spetsen är rumstemererad innan du fortsätter!", "SettingsCalibrationWarning": "Se till att spetsen är rumstemererad innan du fortsätter!",
"SettingsResetWarning": "Är du säker på att du vill återställa inställningarna?", "SettingsResetWarning": "Är du säker på att du vill återställa inställningarna?",
@@ -11,10 +12,6 @@
"SleepingSimpleString": "Zzzz", "SleepingSimpleString": "Zzzz",
"SleepingAdvancedString": "Viloläge...", "SleepingAdvancedString": "Viloläge...",
"SleepingTipAdvancedString": "Spets:", "SleepingTipAdvancedString": "Spets:",
"IdleTipString": "Spts:",
"IdleSetString": " Ang:",
"TipDisconnectedString": "SPETS URTAGEN",
"SolderingAdvancedPowerPrompt": "Ström: ",
"OffString": "Av" "OffString": "Av"
}, },
"messagesWarn": { "messagesWarn": {
@@ -45,8 +42,7 @@
"SettingSensitivityHigh": "H", "SettingSensitivityHigh": "H",
"SettingLockDisableChar": "A", "SettingLockDisableChar": "A",
"SettingLockBoostChar": "T", "SettingLockBoostChar": "T",
"SettingLockFullChar": "F", "SettingLockFullChar": "F"
"SettingNAChar": "N/A"
}, },
"menuGroups": { "menuGroups": {
"PowerMenu": { "PowerMenu": {
@@ -184,8 +180,8 @@
"desc": "Animationshastighet för ikoner i menyer (A=av | L=långsam | M=medel | S=snabb)" "desc": "Animationshastighet för ikoner i menyer (A=av | L=långsam | M=medel | S=snabb)"
}, },
"PowerPulseWait": { "PowerPulseWait": {
"text2": ["Power pulse", "wait time"], "text2": ["Power pulse", "delay"],
"desc": "Time to wait before triggering every keep-awake pulse (x 2.5s)" "desc": "Delay before keep-awake-pulse is triggered (x 2.5s)"
}, },
"PowerPulseDuration": { "PowerPulseDuration": {
"text2": ["Power pulse", "duration"], "text2": ["Power pulse", "duration"],
@@ -196,12 +192,16 @@
"desc": "" "desc": ""
}, },
"Brightness": { "Brightness": {
"text2": ["Screen", "Brightness"], "text2": ["Screen", "brightness"],
"desc": "Adjust the contrast/brightness of the OLED screen" "desc": "Adjust the brightness of the OLED screen"
}, },
"ColourInversion": { "ColourInversion": {
"text2": ["Screen", "Invert"], "text2": ["Invert", "screen"],
"desc": "Invert the colours of the OLED screen" "desc": "Invert the colours of the OLED screen"
},
"LOGOTime": {
"text2": ["Boot logo", "duration"],
"desc": "Sets the duration for the boot logo (S=seconds)"
} }
} }
} }

View File

@@ -2,26 +2,17 @@
"languageCode": "TR", "languageCode": "TR",
"languageLocalName": "Türkçe", "languageLocalName": "Türkçe",
"fonts": ["ascii_basic", "latin_extended"], "fonts": ["ascii_basic", "latin_extended"],
"tempUnitFahrenheit": false,
"messages": { "messages": {
"SettingsCalibrationDone": "Kalibrasyon tamamlandı!",
"SettingsCalibrationWarning": "Lütfen devam etmeden önce ucun oda sıcaklığında olduğunu garantiye alın!", "SettingsCalibrationWarning": "Lütfen devam etmeden önce ucun oda sıcaklığında olduğunu garantiye alın!",
"SettingsResetWarning": "Ayarları varsayılan değerlere sıfırlamak istediğinizden emin misiniz?", "SettingsResetWarning": "Ayarları varsayılan değerlere sıfırlamak istediğinizden emin misiniz?",
"UVLOWarningString": "Güç Az", "UVLOWarningString": "Güç Az",
"UndervoltageString": "Düşük Voltaj", "UndervoltageString": "Düşük Voltaj",
"InputVoltageString": "Giriş V: ", "InputVoltageString": "Giriş V: ",
"WarningTipTempString": "Uç Sıcaklığı: ",
"BadTipString": "KÖTÜ UÇ",
"SleepingSimpleString": "Zzzz", "SleepingSimpleString": "Zzzz",
"SleepingAdvancedString": "Bekleme Modu ...", "SleepingAdvancedString": "Bekleme Modu ...",
"WarningSimpleString": "SICAK!",
"WarningAdvancedString": "UYARI! UÇ SICAK!",
"SleepingTipAdvancedString": "Uç:", "SleepingTipAdvancedString": "Uç:",
"IdleTipString": "Uç:", "OffString": "Kapalı"
"IdleSetString": " Ayarla:",
"TipDisconnectedString": "UÇ ÇIKARILDI",
"SolderingAdvancedPowerPrompt": "Güç: ",
"OffString": "Kapalı",
"YourGainMessage": "Kazancınız:"
}, },
"messagesWarn": { "messagesWarn": {
"ResetOKMessage": ["Sıfırlama Tamam", ""], "ResetOKMessage": ["Sıfırlama Tamam", ""],
@@ -36,23 +27,22 @@
"characters": { "characters": {
"SettingRightChar": "R", "SettingRightChar": "R",
"SettingLeftChar": "L", "SettingLeftChar": "L",
"SettingAutoChar": "A", "SettingAutoChar": "O",
"SettingOffChar": "O", "SettingOffChar": "K",
"SettingSlowChar": "S", "SettingSlowChar": "Y",
"SettingMediumChar": "M", "SettingMediumChar": "O",
"SettingFastChar": "F", "SettingFastChar": "H",
"SettingStartNoneChar": "K", "SettingStartNoneChar": "K",
"SettingStartSolderingChar": "L", "SettingStartSolderingChar": "L",
"SettingStartSleepChar": "U", "SettingStartSleepChar": "U",
"SettingStartSleepOffChar": "O", "SettingStartSleepOffChar": "S",
"SettingSensitivityOff": "O", "SettingSensitivityOff": "K",
"SettingSensitivityLow": "L", "SettingSensitivityLow": "L",
"SettingSensitivityMedium": "M", "SettingSensitivityMedium": "O",
"SettingSensitivityHigh": "H", "SettingSensitivityHigh": "H",
"SettingLockDisableChar": "D", "SettingLockDisableChar": "K",
"SettingLockBoostChar": "B", "SettingLockBoostChar": "B",
"SettingLockFullChar": "F", "SettingLockFullChar": "F"
"SettingNAChar": "N/A"
}, },
"menuGroups": { "menuGroups": {
"PowerMenu": { "PowerMenu": {
@@ -107,11 +97,7 @@
}, },
"DisplayRotation": { "DisplayRotation": {
"text2": ["GRNYÖN", ""], "text2": ["GRNYÖN", ""],
"desc": "Görüntü Yönlendirme (R=Sağlak | L=Solak | A=Otomatik)" "desc": "Görüntü Yönlendirme (R=Sağlak | L=Solak | O=Otomatik)"
},
"BoostEnabled": {
"text2": ["YÜKPER", ""],
"desc": "Lehimleme yaparken ön tuşa basmak anlık sıcaklık yükselişi sağlar. (450C)"
}, },
"BoostTemperature": { "BoostTemperature": {
"text2": ["YKSC", ""], "text2": ["YKSC", ""],
@@ -119,7 +105,7 @@
}, },
"AutoStart": { "AutoStart": {
"text2": ["OTOBAŞ", ""], "text2": ["OTOBAŞ", ""],
"desc": "Güç verildiğinde otomatik olarak lehimleme modunda başlat. (K=Kapalı | L=Lehimleme Modu | U=Uyku Modu | O=Uyku Modu Oda Sıcaklığı)" "desc": "Güç verildiğinde otomatik olarak lehimleme modunda başlat. (K=Kapalı | L=Lehimleme Modu | U=Uyku Modu | S=Uyku Modu Oda Sıcaklığı)"
}, },
"CooldownBlink": { "CooldownBlink": {
"text2": ["SĞGÖST", ""], "text2": ["SĞGÖST", ""],
@@ -143,51 +129,43 @@
}, },
"ScrollingSpeed": { "ScrollingSpeed": {
"text2": ["YZKYHZ", ""], "text2": ["YZKYHZ", ""],
"desc": "Bu yazının kayma hızı (S=Yavaş | F=Hızlı)" "desc": "Bu yazının kayma hızı (Y=Yavaş | H=Hızlı)"
}, },
"QCMaxVoltage": { "QCMaxVoltage": {
"text2": ["QC", "Voltage"], "text2": ["QC", "voltage"],
"desc": "Desired max QC Voltage negotiated for" "desc": "Max QC voltage the iron should negotiate for"
}, },
"PDNegTimeout": { "PDNegTimeout": {
"text2": ["PD", "timeout"], "text2": ["PD", "timeout"],
"desc": "PD negotiation timeout in 100ms steps for compatibility with some QC chargers (0: disabled)" "desc": "PD negotiation timeout in 100ms steps for compatibility with some QC chargers"
},
"PowerInput": {
"text2": ["Güç", "Miktarı(W)"],
"desc": "Kullanılan adaptörün watt biriminden güç miktarı"
},
"PowerLimitEnable": {
"text2": ["P Limit", "Enable"],
"desc": "Güç sınırlamayı aç"
}, },
"PowerLimit": { "PowerLimit": {
"text2": ["Power", "Limit"], "text2": ["Power", "limit"],
"desc": "Havyanın kullanacağı en yüksek güç (Watts)" "desc": "Havyanın kullanacağı en yüksek güç (Watts)"
}, },
"ReverseButtonTempChange": { "ReverseButtonTempChange": {
"text2": ["Key +-", "reverse?"], "text2": ["Swap", "+ - keys"],
"desc": "\"Düğme Yerleri Rotasyonu\" Sıcaklık ayar düğmelerinin yerini değiştirin" "desc": "\"Düğme Yerleri Rotasyonu\" Sıcaklık ayar düğmelerinin yerini değiştirin"
}, },
"TempChangeShortStep": { "TempChangeShortStep": {
"text2": ["Temp change", "short?"], "text2": ["Temp change", "short"],
"desc": "Kısa basışlardaki sıcaklık derecesi atlama oranı" "desc": "Kısa basışlardaki sıcaklık derecesi atlama oranı"
}, },
"TempChangeLongStep": { "TempChangeLongStep": {
"text2": ["Temp change", "long?"], "text2": ["Temp change", "long"],
"desc": "Uzun başışlardaki sıcaklık derecesi atlama oranı" "desc": "Uzun başışlardaki sıcaklık derecesi atlama oranı"
}, },
"PowerPulsePower": { "PowerPulsePower": {
"text2": ["Power", "Pulse W"], "text2": ["Power", "pulse"],
"desc": "Güç girişi voltajı ölçüm yoğunluğunu sık tut." "desc": "Güç girişi voltajı ölçüm yoğunluğunu sık tut."
}, },
"HallEffSensitivity": { "HallEffSensitivity": {
"text2": ["Hall Eff", "Sensitivity"], "text2": ["Hall sensor", "sensitivity"],
"desc": "Sensitivity of the Hall effect sensor in detecting sleep (0=Kapalı | 1=En az duyarlı | ... | 9=En duyarlı)" "desc": "Sensitivity of the Hall effect sensor to detect sleep (0=Kapalı | 1=En az duyarlı | ... | 9=En duyarlı)"
}, },
"LockingMode": { "LockingMode": {
"text2": ["Allow buttons", "locking"], "text2": ["Allow locking", "buttons"],
"desc": "When soldering, long press on both buttons lock them (D=Disable | B=Boost only | F=Full locking)" "desc": "While soldering, hold down both buttons to toggle locking them (K=Kapalı | B=boost mode only | F=full locking)"
}, },
"MinVolCell": { "MinVolCell": {
"text2": ["Minimum", "voltage"], "text2": ["Minimum", "voltage"],
@@ -195,15 +173,15 @@
}, },
"AnimLoop": { "AnimLoop": {
"text2": ["Anim.", "loop"], "text2": ["Anim.", "loop"],
"desc": "Loop icon animations in root menu" "desc": "Loop icon animations in main menu"
}, },
"AnimSpeed": { "AnimSpeed": {
"text2": ["Anim.", "speed"], "text2": ["Anim.", "speed"],
"desc": "Speed of icon animations in menu (O=off | L=low | M=medium | H=high)" "desc": "Pace of icon animations in menu (K=Kapalı | Y=Yavaş | O=Orta | H=Hızlı)"
}, },
"PowerPulseWait": { "PowerPulseWait": {
"text2": ["Power pulse", "wait time"], "text2": ["Power pulse", "delay"],
"desc": "Time to wait before triggering every keep-awake pulse (x 2.5s)" "desc": "Delay before keep-awake-pulse is triggered (x 2.5s)"
}, },
"PowerPulseDuration": { "PowerPulseDuration": {
"text2": ["Power pulse", "duration"], "text2": ["Power pulse", "duration"],
@@ -214,12 +192,16 @@
"desc": "" "desc": ""
}, },
"Brightness": { "Brightness": {
"text2": ["Screen", "Brightness"], "text2": ["Screen", "brightness"],
"desc": "Adjust the contrast/brightness of the OLED screen" "desc": "Adjust the brightness of the OLED screen"
}, },
"ColourInversion": { "ColourInversion": {
"text2": ["Screen", "Invert"], "text2": ["Invert", "screen"],
"desc": "Invert the colours of the OLED screen" "desc": "Invert the colours of the OLED screen"
},
"LOGOTime": {
"text2": ["Boot logo", "duration"],
"desc": "Sets the duration for the boot logo (S=seconds)"
} }
} }
} }

View File

@@ -2,26 +2,17 @@
"languageCode": "UK", "languageCode": "UK",
"languageLocalName": "Українська", "languageLocalName": "Українська",
"fonts": ["ascii_basic", "latin_extended", "cyrillic"], "fonts": ["ascii_basic", "latin_extended", "cyrillic"],
"tempUnitFahrenheit": false,
"messages": { "messages": {
"SettingsCalibrationDone": "Калібрування виконане!",
"SettingsCalibrationWarning": "Переконайтеся, що жало охололо до кімнатної температури, перш ніж продовжувати!", "SettingsCalibrationWarning": "Переконайтеся, що жало охололо до кімнатної температури, перш ніж продовжувати!",
"SettingsResetWarning": "Ви дійсно хочете скинути налаштування до значень за замовчуванням? (A=Так, В=Ні)", "SettingsResetWarning": "Ви дійсно хочете скинути налаштування до значень за замовчуванням? (A=Так, В=Ні)",
"UVLOWarningString": "АККУМ--", "UVLOWarningString": "АККУМ--",
"UndervoltageString": "Низька напруга", "UndervoltageString": "Низька напруга",
"InputVoltageString": "Жив.(B): ", "InputVoltageString": "Жив.(B): ",
"WarningTipTempString": "Жало t°: ",
"BadTipString": "ЖАЛО--",
"SleepingSimpleString": "ZzZzz", "SleepingSimpleString": "ZzZzz",
"SleepingAdvancedString": "Очікування...", "SleepingAdvancedString": "Очікування...",
"WarningSimpleString": "ГАРЯЧЕ!",
"WarningAdvancedString": "!!! ГАРЯЧЕ !!!\n!!! ЖАЛО !!!",
"SleepingTipAdvancedString": "Жало:", "SleepingTipAdvancedString": "Жало:",
"IdleTipString": "Жало:", "OffString": "Вимк"
"IdleSetString": " ->",
"TipDisconnectedString": "Жало вимкнено!",
"SolderingAdvancedPowerPrompt": "Живлення: ",
"OffString": "Вимк",
"YourGainMessage": "Приріст:"
}, },
"messagesWarn": { "messagesWarn": {
"ResetOKMessage": "Скид. OK", "ResetOKMessage": "Скид. OK",
@@ -38,9 +29,9 @@
"SettingLeftChar": "Л", "SettingLeftChar": "Л",
"SettingAutoChar": "A", "SettingAutoChar": "A",
"SettingOffChar": "B", "SettingOffChar": "B",
"SettingSlowChar": "П", "SettingSlowChar": "Н",
"SettingMediumChar": "M", "SettingMediumChar": "M",
"SettingFastChar": "Ш", "SettingFastChar": "М",
"SettingStartNoneChar": "В", "SettingStartNoneChar": "В",
"SettingStartSolderingChar": "П", "SettingStartSolderingChar": "П",
"SettingStartSleepChar": "О", "SettingStartSleepChar": "О",
@@ -51,8 +42,7 @@
"SettingSensitivityHigh": "М", "SettingSensitivityHigh": "М",
"SettingLockDisableChar": "В", "SettingLockDisableChar": "В",
"SettingLockBoostChar": "Т", "SettingLockBoostChar": "Т",
"SettingLockFullChar": "П", "SettingLockFullChar": "П"
"SettingNAChar": "Н/Д"
}, },
"menuGroups": { "menuGroups": {
"PowerMenu": { "PowerMenu": {
@@ -208,6 +198,10 @@
"ColourInversion": { "ColourInversion": {
"text2": ["Інверт", "екрану"], "text2": ["Інверт", "екрану"],
"desc": "Налаштування контрасту/яскравості OLED екрану" "desc": "Налаштування контрасту/яскравості OLED екрану"
},
"LOGOTime": {
"text2": ["Boot logo", "duration"],
"desc": "Sets the duration for the boot logo (S=seconds)"
} }
} }
} }

View File

@@ -1,332 +1,207 @@
{ {
"languageCode": "VI", "languageCode": "VI",
"languageLocalName": "Tieng Viet", "languageLocalName": "Tieng Viet",
"fonts": [ "fonts": ["ascii_basic", "latin_extended"],
"ascii_basic", "tempUnitFahrenheit": false,
"latin_extended" "messages": {
], "SettingsCalibrationWarning": "Chac chan mui hàn o nhiet đo phòng truoc khi tiep tuc!",
"tempUnitFahrenheit": false, "SettingsResetWarning": "Ban chac chan muon khôi phuc tat ca cài đat ve mac đinh?",
"messages": { "UVLOWarningString": "DC thap",
"SettingsCalibrationWarning": "Chac chan mui hàn o nhiet đo phòng truoc khi tiep tuc!", "UndervoltageString": "Đien áp thap",
"SettingsResetWarning": "Ban chac chan muon khôi phuc tat ca cài đat ve mac đinh?", "InputVoltageString": "Đau vào V: ",
"UVLOWarningString": "DC thap", "SleepingSimpleString": "Zzzz",
"UndervoltageString": ien áp thap", "SleepingAdvancedString": ang ngu...",
"InputVoltageString": "Đau vào V: ", "SleepingTipAdvancedString": "Meo:",
"SleepingSimpleString": "Zzzz", "OffString": "Tat"
"SleepingAdvancedString": "Đang ngu...", },
"SleepingTipAdvancedString": "Meo:", "messagesWarn": {
"OffString": "Tat" "ResetOKMessage": "Reset OK",
}, "SettingsResetMessage": ["Mot so cài đat", "đã thay đoi"],
"messagesWarn": { "NoAccelerometerMessage": ["Không phát hien", "gia toc ke!"],
"ResetOKMessage": "Reset OK", "NoPowerDeliveryMessage": ["Không phát hien", "USB-PD IC!"],
"SettingsResetMessage": [ "LockingKeysString": "Đã khóa",
"Mot so cài đat", "UnlockingKeysString": "Mo khóa",
"đã thay đoi" "WarningKeysLockedString": "Đã khóa!",
], "WarningThermalRunaway": ["Nhiet", "Tat gia nhiet"]
"NoAccelerometerMessage": [ },
"Không phát hien", "characters": {
"gia toc ke!" "SettingRightChar": "R",
], "SettingLeftChar": "L",
"NoPowerDeliveryMessage": [ "SettingAutoChar": "A",
"Không phát hien", "SettingOffChar": "O",
"USB-PD IC!" "SettingSlowChar": "S",
], "SettingMediumChar": "M",
"LockingKeysString": "Đã khóa", "SettingFastChar": "F",
"UnlockingKeysString": "Mo khóa", "SettingStartNoneChar": "O",
"WarningKeysLockedString": "Đã khóa!", "SettingStartSolderingChar": "S",
"WarningThermalRunaway": [ "SettingStartSleepChar": "Z",
"Nhiet", "SettingStartSleepOffChar": "R",
"Tat gia nhiet" "SettingSensitivityOff": "O",
] "SettingSensitivityLow": "L",
}, "SettingSensitivityMedium": "M",
"characters": { "SettingSensitivityHigh": "H",
"SettingRightChar": "R", "SettingLockDisableChar": "D",
"SettingLeftChar": "L", "SettingLockBoostChar": "B",
"SettingAutoChar": "A", "SettingLockFullChar": "F"
"SettingOffChar": "O", },
"SettingSlowChar": "S", "menuGroups": {
"SettingMediumChar": "M", "PowerMenu": {
"SettingFastChar": "F", "text2": ["Cài đat", "nguon đien"],
"SettingStartNoneChar": "O", "desc": "Cài đat nguon đien"
"SettingStartSolderingChar": "S", },
"SettingStartSleepChar": "Z", "SolderingMenu": {
"SettingStartSleepOffChar": "R", "text2": ["Cài đat", "tay hàn"],
"SettingSensitivityOff": "O", "desc": "Cài đat tay hàn"
"SettingSensitivityLow": "L", },
"SettingSensitivityMedium": "M", "PowerSavingMenu": {
"SettingSensitivityHigh": "H", "text2": ["Che đo", "ngu"],
"SettingLockDisableChar": "D", "desc": "Cài đat che đo tiet kiem đien"
"SettingLockBoostChar": "B", },
"SettingLockFullChar": "F" "UIMenu": {
}, "text2": ["Giao dien", "nguoi dùng"],
"menuGroups": { "desc": "Cài đat giao dien nguoi dùng"
"PowerMenu": { },
"text2": [ "AdvancedMenu": {
"Cài đat", "text2": ["Cài đat", "nâng cao"],
"nguon đien" "desc": "Cài đat nâng cao"
], }
"desc": "Cài đat nguon đien" },
}, "menuOptions": {
"SolderingMenu": { "DCInCutoff": {
"text2": [ "text2": ["Nguon", "đien"],
"Cài đat", "desc": "Nguon đien, đat đien áp giam. (DC 10V) (S 3.3V moi cell, tat gioi han công suat)"
"tay hàn" },
], "SleepTemperature": {
"desc": "Cài đat tay hàn" "text2": ["Nhiet đo", "khi ngu"],
}, "desc": "Giam nhiet đo khi o \"Che đo ngu\""
"PowerSavingMenu": { },
"text2": [ "SleepTimeout": {
"Che đo", "text2": ["Ngu", "sau"],
"ngu" "desc": "- thoi gian truoc khi \"Che đo ngu\" bat đau (S=giây | M=phút)"
], },
"desc": "Cài đat che đo tiet kiem đien" "ShutdownTimeout": {
}, "text2": ["Tat", "sau"],
"UIMenu": { "desc": "- khoang thoi gian truoc khi tay hàn tat (M=phút)"
"text2": [ },
"Giao dien", "MotionSensitivity": {
"nguoi dùng" "text2": ["Cam bien", "cu đong"],
], "desc": "- 0=tat | 1=đo nhay thap nhat| ... | 9=đo nhay cao nhat"
"desc": "Cài đat giao dien nguoi dùng" },
}, "TemperatureUnit": {
"AdvancedMenu": { "text2": ["Đon vi", "nhiet đo"],
"text2": [ "desc": "C= Đo C | F= Đo F"
"Cài đat", },
"nâng cao" "AdvancedIdle": {
], "text2": ["Chi tiet", "màn hình cho"],
"desc": "Cài đat nâng cao" "desc": "- hien thi thông tin chi tiet bang phông chu nho hon trên màn hình cho"
} },
}, "DisplayRotation": {
"menuOptions": { "text2": ["Huong", "hien thi"],
"DCInCutoff": { "desc": "- R=huong tay phai | L=huong tay trái | A=tu đong"
"text2": [ },
"Nguon", "BoostTemperature": {
"đien" "text2": ["Tăng", "nhiet đo"],
], "desc": "Nhiet đo dùng trong che đo \"tăng cuong\""
"desc": "Nguon đien, đat đien áp giam. (DC 10V) (S 3.3V moi cell, tat gioi han công suat)" },
}, "AutoStart": {
"SleepTemperature": { "text2": ["Nhiet đo", "đang tăng"],
"text2": [ "desc": "- O=tat | S=nhiet đo hàn | Z=cho o nhiet đo ngu đen khi cu đong | R=cho mà không gia nhiet đen khi cu đong"
"Nhiet đo", },
"khi ngu" "CooldownBlink": {
], "text2": ["Nguoi đi", "chop mat"],
"desc": "Giam nhiet đo khi o \"Che đo ngu\"" "desc": "-Nhap nháy nhiet đo sau khi viec gia nhiet tam dung trong khi mui hàn van nóng"
}, },
"SleepTimeout": { "TemperatureCalibration": {
"text2": [ "text2": ["Hieu chuan", "nhiet đo?"],
"Ngu", "desc": "-Bat đau hieu chuan bù nhiet cho mui hàn"
"sau" },
], "SettingsReset": {
"desc": "- thoi gian truoc khi \"Che đo ngu\" bat đau (S=giây | M=phút)" "text2": ["Khôi phuc", "cài đat goc?"],
}, "desc": "-đat lai tat ca cài đat ve mac đinh"
"ShutdownTimeout": { },
"text2": [ "VoltageCalibration": {
"Tat", "text2": ["Hieu chinh", "đien áp đau vào?"],
"sau" "desc": "-bat đau hieu chuan VIN (nhan và giu đe thoát)"
], },
"desc": "- khoang thoi gian truoc khi tay hàn tat (M=phút)" "AdvancedSoldering": {
}, "text2": ["Chi tiet", "màn hình hàn"],
"MotionSensitivity": { "desc": "-Hien thi thông tin bang phông chu nho hon trên màn hình hàn"
"text2": [ },
"Cam bien", "ScrollingSpeed": {
"cu đong" "text2": ["Toc đo", "cuon"],
], "desc": "Toc đo cuon văn ban(S=cham | F=nhanh)"
"desc": "- 0=tat | 1=đo nhay thap nhat| ... | 9=đo nhay cao nhat" },
}, "QCMaxVoltage": {
"TemperatureUnit": { "text2": ["QC", "Voltage"],
"text2": [ "desc": "Đien áp QC toi đa mà tay hàn yêu cau"
"Đon vi", },
"nhiet đo" "PDNegTimeout": {
], "text2": ["PD", "sau"],
"desc": "C= Đo C | F= Đo F" "desc": "Thoi gian cho đàm phán PD trong các buoc 100ms đe tuong thích voi mot so bo sac QC"
}, },
"AdvancedIdle": { "PowerLimit": {
"text2": [ "text2": ["Công suat", "gioi han"],
"Chi tiet", "desc": "-Công suat toi đa mà tay hàn có the su dung (W=watt)"
"màn hình cho" },
], "ReverseButtonTempChange": {
"desc": "- hien thi thông tin chi tiet bang phông chu nho hon trên màn hình cho" "text2": ["Đao nguoc", "nút + -"],
}, "desc": "Đao nguoc chuc năng các nút đieu chinh nhiet đo"
"DisplayRotation": { },
"text2": [ "TempChangeShortStep": {
"Huong", "text2": ["Thay đoi n.đo", "an nút nhanh"],
"hien thi" "desc": "Biên đo tăng/giam nhiet đo khi an nút nhanh"
], },
"desc": "- R=huong tay phai | L=huong tay trái | A=tu đong" "TempChangeLongStep": {
}, "text2": ["Thay đoi n.đo", "an nút lâu"],
"BoostTemperature": { "desc": "Biên đo tăng/giam nhiet đo khi an nút lâu"
"text2": [ },
"Tăng", "PowerPulsePower": {
"nhiet đo" "text2": ["Công suat", "kích nguon"],
], "desc": "-Cuong đo công suat kích nguon (watt)"
"desc": "Nhiet đo dùng trong che đo \"tăng cuong\"" },
}, "HallEffSensitivity": {
"AutoStart": { "text2": ["Hall", "đo nhay"],
"text2": [ "desc": "Đo nhay cam bien Hall đe phát hien che đo ngu (0=tat | 1=ít nhay nhat |...| 9=nhay nhat)"
"Nhiet đo", },
"đang tăng" "LockingMode": {
], "text2": ["Cho phép khóa", "các nút"],
"desc": "- O=tat | S=nhiet đo hàn | Z=cho o nhiet đo ngu đen khi cu đong | R=cho mà không gia nhiet đen khi cu đong" "desc": "Trong khi hàn, giu ca 2 nút đe khóa(D=tat | B=chi che đo tăng cuong | F=khóa hoàn toàn)"
}, },
"CooldownBlink": { "MinVolCell": {
"text2": [ "text2": ["Voltage", "toi thieu"],
"Nguoi đi", "desc": "Đien áp toi thieu cho phép trên moi cell (3S: 3 - 3,7V | 4-6S: 2,4 - 3,7V)"
"chop mat" },
], "AnimLoop": {
"desc": "-Nhap nháy nhiet đo sau khi viec gia nhiet tam dung trong khi mui hàn van nóng" "text2": ["Hoat anh", "lap lai"],
}, "desc": "Lap lai các hoat anh trong màn hình chính"
"TemperatureCalibration": { },
"text2": [ "AnimSpeed": {
"Hieu chuan", "text2": ["Toc đo", "hoat anh"],
"nhiet đo?" "desc": "-Toc đo cua hoat anh menu (O=tat | S=cham | M=trung bình | F=nhanh)"
], },
"desc": "-Bat đau hieu chuan bù nhiet cho mui hàn" "PowerPulseWait": {
}, "text2": ["Trì hoãn", "đien áp kích"],
"SettingsReset": { "desc": "Trì hoãn truoc khi kích hoat kích nguon(x 2,5 giây)"
"text2": [ },
"Khôi phuc", "PowerPulseDuration": {
"cài đat goc?" "text2": ["Thoi luong", "kích nguon"],
], "desc": "-thoi luong kích nguon (x 250ms)"
"desc": "-đat lai tat ca cài đat ve mac đinh" },
}, "LanguageSwitch": {
"VoltageCalibration": { "text2": ["Ngôn ngu:", "VI Tieng Viet"],
"text2": [ "desc": "-Ngôn ngu firmware hien tai"
"Hieu chinh", },
"đien áp đau vào?" "Brightness": {
], "text2": ["Đo tuong phan", "màn hình"],
"desc": "-bat đau hieu chuan VIN (nhan và giu đe thoát)" "desc": "-Đieu chinh đo sáng màn hình OLED"
}, },
"AdvancedSoldering": { "ColourInversion": {
"text2": [ "text2": ["Đao nguoc màu", "màn hình"],
"Chi tiet", "desc": "-Đao nguoc màu màn hình OLED"
"màn hình hàn" },
], "LOGOTime": {
"desc": "-Hien thi thông tin bang phông chu nho hon trên màn hình hàn" "text2": ["Boot logo", "duration"],
}, "desc": "Sets the duration for the boot logo (S=seconds)"
"ScrollingSpeed": { }
"text2": [ }
"Toc đo",
"cuon"
],
"desc": "Toc đo cuon văn ban(S=cham | F=nhanh)"
},
"QCMaxVoltage": {
"text2": [
"QC",
"Voltage"
],
"desc": "Đien áp QC toi đa mà tay hàn yêu cau"
},
"PDNegTimeout": {
"text2": [
"PD",
"sau"
],
"desc": "Thoi gian cho đàm phán PD trong các buoc 100ms đe tuong thích voi mot so bo sac QC"
},
"PowerLimit": {
"text2": [
"Công suat",
"gioi han"
],
"desc": "-Công suat toi đa mà tay hàn có the su dung (W=watt)"
},
"ReverseButtonTempChange": {
"text2": [
"Đao nguoc",
"nút + -"
],
"desc": "Đao nguoc chuc năng các nút đieu chinh nhiet đo"
},
"TempChangeShortStep": {
"text2": [
"Thay đoi n.đo",
"an nút nhanh"
],
"desc": "Biên đo tăng/giam nhiet đo khi an nút nhanh"
},
"TempChangeLongStep": {
"text2": [
"Thay đoi n.đo",
"an nút lâu"
],
"desc": "Biên đo tăng/giam nhiet đo khi an nút lâu"
},
"PowerPulsePower": {
"text2": [
"Công suat",
"kích nguon"
],
"desc": "-Cuong đo công suat kích nguon (watt)"
},
"HallEffSensitivity": {
"text2": [
"Hall",
"đo nhay"
],
"desc": "Đo nhay cam bien Hall đe phát hien che đo ngu (0=tat | 1=ít nhay nhat |...| 9=nhay nhat)"
},
"LockingMode": {
"text2": [
"Cho phép khóa",
"các nút"
],
"desc": "Trong khi hàn, giu ca 2 nút đe khóa(D=tat | B=chi che đo tăng cuong | F=khóa hoàn toàn)"
},
"MinVolCell": {
"text2": [
"Voltage",
"toi thieu"
],
"desc": "Đien áp toi thieu cho phép trên moi cell (3S: 3 - 3,7V | 4-6S: 2,4 - 3,7V)"
},
"AnimLoop": {
"text2": [
"Hoat anh",
"lap lai"
],
"desc": "Lap lai các hoat anh trong màn hình chính"
},
"AnimSpeed": {
"text2": [
"Toc đo",
"hoat anh"
],
"desc": "-Toc đo cua hoat anh menu (O=tat | S=cham | M=trung bình | F=nhanh)"
},
"PowerPulseWait": {
"text2": [
"Trì hoãn",
"đien áp kích"
],
"desc": "Trì hoãn truoc khi kích hoat kích nguon(x 2,5 giây)"
},
"PowerPulseDuration": {
"text2": [
"Thoi luong",
"kích nguon"
],
"desc": "-thoi luong kích nguon (x 250ms)"
},
"LanguageSwitch": {
"text2": [
"Ngôn ngu:",
"VI Tieng Viet"
],
"desc": "-Ngôn ngu firmware hien tai"
},
"Brightness": {
"text2": [
"Đo tuong phan",
"màn hình"
],
"desc": "-Đieu chinh đo sáng màn hình OLED"
},
"ColourInversion": {
"text2": [
"Đao nguoc màu",
"màn hình"
],
"desc": "-Đao nguoc màu màn hình OLED"
}
}
} }

View File

@@ -12,10 +12,6 @@
"SleepingSimpleString": "Zzzz", "SleepingSimpleString": "Zzzz",
"SleepingAdvancedString": "Sleeping...", "SleepingAdvancedString": "Sleeping...",
"SleepingTipAdvancedString": "Tip:", "SleepingTipAdvancedString": "Tip:",
"IdleTipString": "Tip:",
"IdleSetString": " Set:",
"TipDisconnectedString": "NO TIP",
"SolderingAdvancedPowerPrompt": "Power: ",
"OffString": "關" "OffString": "關"
}, },
"messagesWarn": { "messagesWarn": {
@@ -46,8 +42,7 @@
"SettingSensitivityHigh": "高", "SettingSensitivityHigh": "高",
"SettingLockDisableChar": "無", "SettingLockDisableChar": "無",
"SettingLockBoostChar": "增", "SettingLockBoostChar": "增",
"SettingLockFullChar": "全", "SettingLockFullChar": "全"
"SettingNAChar": "不適用"
}, },
"menuGroups": { "menuGroups": {
"PowerMenu": { "PowerMenu": {
@@ -203,6 +198,10 @@
"ColourInversion": { "ColourInversion": {
"text2": "熒幕反轉色", "text2": "熒幕反轉色",
"desc": "反轉OLED熒幕嘅黑白色" "desc": "反轉OLED熒幕嘅黑白色"
},
"LOGOTime": {
"text2": ["Boot logo", "duration"],
"desc": "Sets the duration for the boot logo (S=seconds)"
} }
} }
} }

View File

@@ -12,10 +12,6 @@
"SleepingSimpleString": "Zzzz", "SleepingSimpleString": "Zzzz",
"SleepingAdvancedString": "Zzzz...", "SleepingAdvancedString": "Zzzz...",
"SleepingTipAdvancedString": "--->", "SleepingTipAdvancedString": "--->",
"IdleTipString": "--->",
"IdleSetString": " /",
"TipDisconnectedString": "<-X-",
"SolderingAdvancedPowerPrompt": "Power: ",
"OffString": "关" "OffString": "关"
}, },
"messagesWarn": { "messagesWarn": {
@@ -46,8 +42,7 @@
"SettingSensitivityHigh": "高", "SettingSensitivityHigh": "高",
"SettingLockDisableChar": "无", "SettingLockDisableChar": "无",
"SettingLockBoostChar": "增", "SettingLockBoostChar": "增",
"SettingLockFullChar": "全", "SettingLockFullChar": "全"
"SettingNAChar": "不适用"
}, },
"menuGroups": { "menuGroups": {
"PowerMenu": { "PowerMenu": {
@@ -203,6 +198,10 @@
"ColourInversion": { "ColourInversion": {
"text2": "反转屏幕颜色", "text2": "反转屏幕颜色",
"desc": "反转OLED黑/白屏幕" "desc": "反转OLED黑/白屏幕"
},
"LOGOTime": {
"text2": ["Boot logo", "duration"],
"desc": "Sets the duration for the boot logo (S=seconds)"
} }
} }
} }

View File

@@ -12,10 +12,6 @@
"SleepingSimpleString": "Zzzz", "SleepingSimpleString": "Zzzz",
"SleepingAdvancedString": "Sleeping...", "SleepingAdvancedString": "Sleeping...",
"SleepingTipAdvancedString": "Tip:", "SleepingTipAdvancedString": "Tip:",
"IdleTipString": "Tip:",
"IdleSetString": " Set:",
"TipDisconnectedString": "NO TIP",
"SolderingAdvancedPowerPrompt": "Power: ",
"OffString": "關" "OffString": "關"
}, },
"messagesWarn": { "messagesWarn": {
@@ -46,8 +42,7 @@
"SettingSensitivityHigh": "高", "SettingSensitivityHigh": "高",
"SettingLockDisableChar": "無", "SettingLockDisableChar": "無",
"SettingLockBoostChar": "增", "SettingLockBoostChar": "增",
"SettingLockFullChar": "全", "SettingLockFullChar": "全"
"SettingNAChar": "不適用"
}, },
"menuGroups": { "menuGroups": {
"PowerMenu": { "PowerMenu": {
@@ -203,6 +198,10 @@
"ColourInversion": { "ColourInversion": {
"text2": "螢幕反轉色", "text2": "螢幕反轉色",
"desc": "反轉OLED螢幕的黑白色彩" "desc": "反轉OLED螢幕的黑白色彩"
},
"LOGOTime": {
"text2": ["Boot logo", "duration"],
"desc": "Sets the duration for the boot logo (S=seconds)"
} }
} }
} }

View File

@@ -16,7 +16,7 @@ var def =
}, },
{ {
"id": "UndervoltageString", "id": "UndervoltageString",
"maxLen": 16, "maxLen": 15,
"description": "Warning text shown when the unit turns off due to undervoltage in advanced mode." "description": "Warning text shown when the unit turns off due to undervoltage in advanced mode."
}, },
{ {
@@ -33,7 +33,7 @@ var def =
}, },
{ {
"id": "SleepingAdvancedString", "id": "SleepingAdvancedString",
"maxLen": 16, "maxLen": 15,
"description": "The text shown to indicate the unit is in sleep mode when the advanced view is turned on." "description": "The text shown to indicate the unit is in sleep mode when the advanced view is turned on."
}, },
{ {
@@ -285,20 +285,20 @@ var def =
{ {
"id": "TemperatureCalibration", "id": "TemperatureCalibration",
"maxLen": 8, "maxLen": 8,
"maxLen2": 16, "maxLen2": 15,
"description": "Used to calibrate the ADC+Op-amp offsets for the tip. This calibration must be performed when the tip temperature and the handle temperature are equal. Generally not required unless your device is reading more than 5°C off target." "description": "Used to calibrate the ADC+Op-amp offsets for the tip. This calibration must be performed when the tip temperature and the handle temperature are equal. Generally not required unless your device is reading more than 5°C off target."
}, },
{ {
"id": "SettingsReset", "id": "SettingsReset",
"maxLen": 8, "maxLen": 8,
"maxLen2": 16, "maxLen2": 15,
"description": "Resets all settings and calibrations to factory defaults. Does NOT erase custom user boot up logo's." "description": "Resets all settings and calibrations to factory defaults. Does NOT erase custom user boot up logo's."
}, },
{ {
"id": "VoltageCalibration", "id": "VoltageCalibration",
"maxLen": 8, "maxLen": 8,
"maxLen2": 16, "maxLen2": 15,
"description": "Enters an adjustment mode where you can gradually adjust the measured voltage to compensate for any unit-to-unit variance in the voltage sense resistors." "description": "Enters an adjustment mode where you can gradually adjust the measured voltage to compensate for any unit-to-unit variance in the voltage sense resistors."
}, },
{ {
@@ -317,13 +317,13 @@ var def =
{ {
"id": "QCMaxVoltage", "id": "QCMaxVoltage",
"maxLen": 8, "maxLen": 8,
"maxLen2": 16, "maxLen2": 15,
"description": "This adjusts the maximum voltage the QC negotiation will adjust to. Does NOT affect USB-PD. Should be set safely based on the current rating of your power supply." "description": "This adjusts the maximum voltage the QC negotiation will adjust to. Does NOT affect USB-PD. Should be set safely based on the current rating of your power supply."
}, },
{ {
"id": "PDNegTimeout", "id": "PDNegTimeout",
"maxLen": 8, "maxLen": 8,
"maxLen2": 16, "maxLen2": 15,
"description": "How long until firmware stops trying to negotiate for USB-PD and tries QC instead. Longer times may help dodgy / old PD adapters, faster times move onto PD quickly. Units of 100ms. Recommended to keep small values." "description": "How long until firmware stops trying to negotiate for USB-PD and tries QC instead. Longer times may help dodgy / old PD adapters, faster times move onto PD quickly. Units of 100ms. Recommended to keep small values."
}, },
@@ -338,27 +338,27 @@ var def =
{ {
"id": "ReverseButtonTempChange", "id": "ReverseButtonTempChange",
"maxLen": 6, "maxLen": 6,
"maxLen2": 16, "maxLen2": 15,
"description": "Swaps which button increments and decrements on temperature change screens." "description": "Swaps which button increments and decrements on temperature change screens."
}, },
{ {
"id": "TempChangeShortStep", "id": "TempChangeShortStep",
"maxLen": 8, "maxLen": 8,
"maxLen2": 16, "maxLen2": 15,
"description": "Factor by which the temperature is changed with a quick press of the buttons." "description": "Factor by which the temperature is changed with a quick press of the buttons."
}, },
{ {
"id": "TempChangeLongStep", "id": "TempChangeLongStep",
"maxLen": 6, "maxLen": 6,
"maxLen2": 16, "maxLen2": 15,
"description": "Factor by which the temperature is changed with a hold of the buttons." "description": "Factor by which the temperature is changed with a hold of the buttons."
}, },
{ {
"id": "PowerPulsePower", "id": "PowerPulsePower",
"maxLen": 6, "maxLen": 6,
"maxLen2": 16, "maxLen2": 15,
"description": "Enables and sets the wattage of the power pulse. Power pulse causes the device to briefly turn on the heater to draw power to avoid power banks going to sleep." "description": "Enables and sets the wattage of the power pulse. Power pulse causes the device to briefly turn on the heater to draw power to avoid power banks going to sleep."
}, },
@@ -422,6 +422,12 @@ var def =
"maxLen": 7, "maxLen": 7,
"maxLen2": 15, "maxLen2": 15,
"description": "Inverts the entire OLED." "description": "Inverts the entire OLED."
},
{
"id": "LOGOTime",
"maxLen": 7,
"maxLen2": 15,
"description": "Sets the duration for the boot logo (S=seconds)."
} }
] ]
} }

View File

@@ -1321,10 +1321,10 @@ HAL_StatusTypeDef HAL_TIM_PWM_Start(TIM_HandleTypeDef *htim, uint32_t Channel) {
/* Enable the Capture compare channel */ /* Enable the Capture compare channel */
TIM_CCxChannelCmd(htim->Instance, Channel, TIM_CCx_ENABLE); TIM_CCxChannelCmd(htim->Instance, Channel, TIM_CCx_ENABLE);
if (IS_TIM_BREAK_INSTANCE(htim->Instance) != RESET) { // if (IS_TIM_BREAK_INSTANCE(htim->Instance) != RESET) {
/* Enable the main output */ // /* Enable the main output */
__HAL_TIM_MOE_ENABLE(htim); // __HAL_TIM_MOE_ENABLE(htim);
} // }
/* Enable the Peripheral, except in trigger mode where enable is automatically done with trigger */ /* Enable the Peripheral, except in trigger mode where enable is automatically done with trigger */
if (IS_TIM_SLAVE_INSTANCE(htim->Instance)) { if (IS_TIM_SLAVE_INSTANCE(htim->Instance)) {
@@ -3450,39 +3450,6 @@ void HAL_TIM_IRQHandler(TIM_HandleTypeDef *htim) {
htim->PeriodElapsedCallback(htim); htim->PeriodElapsedCallback(htim);
#else #else
HAL_TIM_PeriodElapsedCallback(htim); HAL_TIM_PeriodElapsedCallback(htim);
#endif /* USE_HAL_TIM_REGISTER_CALLBACKS */
}
}
/* TIM Break input event */
if (__HAL_TIM_GET_FLAG(htim, TIM_FLAG_BREAK) != RESET) {
if (__HAL_TIM_GET_IT_SOURCE(htim, TIM_IT_BREAK) != RESET) {
__HAL_TIM_CLEAR_IT(htim, TIM_IT_BREAK);
#if (USE_HAL_TIM_REGISTER_CALLBACKS == 1)
htim->BreakCallback(htim);
#else
HAL_TIMEx_BreakCallback(htim);
#endif /* USE_HAL_TIM_REGISTER_CALLBACKS */
}
}
/* TIM Trigger detection event */
if (__HAL_TIM_GET_FLAG(htim, TIM_FLAG_TRIGGER) != RESET) {
if (__HAL_TIM_GET_IT_SOURCE(htim, TIM_IT_TRIGGER) != RESET) {
__HAL_TIM_CLEAR_IT(htim, TIM_IT_TRIGGER);
#if (USE_HAL_TIM_REGISTER_CALLBACKS == 1)
htim->TriggerCallback(htim);
#else
HAL_TIM_TriggerCallback(htim);
#endif /* USE_HAL_TIM_REGISTER_CALLBACKS */
}
}
/* TIM commutation event */
if (__HAL_TIM_GET_FLAG(htim, TIM_FLAG_COM) != RESET) {
if (__HAL_TIM_GET_IT_SOURCE(htim, TIM_IT_COM) != RESET) {
__HAL_TIM_CLEAR_IT(htim, TIM_FLAG_COM);
#if (USE_HAL_TIM_REGISTER_CALLBACKS == 1)
htim->CommutationCallback(htim);
#else
HAL_TIMEx_CommutCallback(htim);
#endif /* USE_HAL_TIM_REGISTER_CALLBACKS */ #endif /* USE_HAL_TIM_REGISTER_CALLBACKS */
} }
} }

View File

@@ -20,11 +20,14 @@ void BootLogo::showOldFormat(const uint8_t *ptrLogoArea) {
OLED::drawAreaSwapped(0, 0, 96, 16, (uint8_t *)(ptrLogoArea + 4)); OLED::drawAreaSwapped(0, 0, 96, 16, (uint8_t *)(ptrLogoArea + 4));
OLED::refresh(); OLED::refresh();
// Delay here until button is pressed or its been 4 seconds // Delay here until button is pressed or its been the amount of seconds set by the user
waitForButtonPressOrTimeout(TICKS_SECOND * 4); waitForButtonPressOrTimeout(TICKS_SECOND * getSettingValue(SettingsOptions::LOGOTime));
} }
void BootLogo::showNewFormat(const uint8_t *ptrLogoArea) { void BootLogo::showNewFormat(const uint8_t *ptrLogoArea) {
if (getSettingValue(SettingsOptions::LOGOTime) == 0) {
return;
}
// New logo format (a) fixes long standing byte swap quirk and (b) supports animation // New logo format (a) fixes long standing byte swap quirk and (b) supports animation
uint8_t interFrameDelay = ptrLogoArea[0]; uint8_t interFrameDelay = ptrLogoArea[0];
OLED::clearScreen(); OLED::clearScreen();
@@ -39,24 +42,16 @@ void BootLogo::showNewFormat(const uint8_t *ptrLogoArea) {
position += len; position += len;
buttons = getButtonState(); buttons = getButtonState();
// Button pressed
if (buttons != BUTTON_NONE) {
return;
}
if (interFrameDelay) { if (interFrameDelay) {
osDelay(interFrameDelay * 5); osDelay(interFrameDelay * 5);
} else { }
// Delay here until button is pressed or its been 4 seconds // 1024 less the header type byte and the inter-frame-delay
waitForButtonPressOrTimeout(TICKS_SECOND * 4); if (getSettingValue(SettingsOptions::LOGOTime) < 5 && (position == 1022 || len == 0)) {
// Delay here until button is pressed or its been the amount of seconds set by the user
waitForButtonPressOrTimeout(TICKS_SECOND * getSettingValue(SettingsOptions::LOGOTime));
return; return;
} }
// If this was an early exit; bail now } while (buttons == BUTTON_NONE);
if (len == 0) {
return;
}
} while (position < 1022); // 1024 less the header type byte and the inter-frame-delay
} }
int BootLogo::showNewFrame(const uint8_t *ptrLogoArea) { int BootLogo::showNewFrame(const uint8_t *ptrLogoArea) {
uint8_t length = ptrLogoArea[0]; uint8_t length = ptrLogoArea[0];
@@ -81,4 +76,4 @@ int BootLogo::showNewFrame(const uint8_t *ptrLogoArea) {
OLED::refresh(); OLED::refresh();
return (length * 2) + 1; return (length * 2) + 1;
} }

View File

@@ -190,6 +190,12 @@ const uint8_t invertDisplayIcon[] = {
0xFE, 0x01, 0x79, 0x25, 0x79, 0x01, 0xFE, 0x00, 0x20, 0x20, 0x20, 0x20, 0xDF, 0x07, 0x8F, 0xDF, 0xFF, 0x01, 0xFE, 0x86, 0xDA, 0x86, 0xFE, 0x01, 0xFE, 0x01, 0x79, 0x25, 0x79, 0x01, 0xFE, 0x00, 0x20, 0x20, 0x20, 0x20, 0xDF, 0x07, 0x8F, 0xDF, 0xFF, 0x01, 0xFE, 0x86, 0xDA, 0x86, 0xFE, 0x01,
0x7F, 0x80, 0xA4, 0xBE, 0xA0, 0x80, 0x7F, 0x00, 0x04, 0x0E, 0x1F, 0x04, 0xFB, 0xFB, 0xFB, 0xFB, 0xFF, 0x80, 0x7F, 0x5B, 0x41, 0x5F, 0x7F, 0x80}; 0x7F, 0x80, 0xA4, 0xBE, 0xA0, 0x80, 0x7F, 0x00, 0x04, 0x0E, 0x1F, 0x04, 0xFB, 0xFB, 0xFB, 0xFB, 0xFF, 0x80, 0x7F, 0x5B, 0x41, 0x5F, 0x7F, 0x80};
const uint8_t infinityIcon[] = {
// width = 24
// height = 16
0x00, 0xc0, 0x70, 0x18, 0x0c, 0x0c, 0x0c, 0x0c, 0x18, 0x10, 0x20, 0x80, 0xc0, 0x60, 0x30, 0x18, 0x0c, 0x0c, 0x0c, 0x0c, 0x18, 0x70, 0xc0, 0x00,
0x00, 0x01, 0x07, 0x0c, 0x18, 0x18, 0x18, 0x18, 0x0c, 0x06, 0x03, 0x01, 0x00, 0x02, 0x04, 0x0c, 0x18, 0x18, 0x18, 0x18, 0x0c, 0x07, 0x01, 0x00};
/* /*
* 16x16 icons * 16x16 icons
* 32 * 3 = Frame size * Frame count * 32 * 3 = Frame size * Frame count

View File

@@ -49,9 +49,10 @@ enum SettingsOptions {
PDNegTimeout = 32, // PD timeout in 100ms steps PDNegTimeout = 32, // PD timeout in 100ms steps
OLEDInversion = 33, // Invert the colours on the display OLEDInversion = 33, // Invert the colours on the display
OLEDBrightness = 34, // Brightness for the OLED display OLEDBrightness = 34, // Brightness for the OLED display
LOGOTime = 35, // Duration the logo will be displayed for
// //
SettingsOptionsLength = 35, // SettingsOptionsLength = 36, //
}; };
typedef enum { typedef enum {

View File

@@ -63,6 +63,7 @@ enum class SettingsItemIndex : uint8_t {
LanguageSwitch, LanguageSwitch,
Brightness, Brightness,
ColourInversion, ColourInversion,
LOGOTime,
NUM_ITEMS, NUM_ITEMS,
}; };

View File

@@ -84,6 +84,7 @@ static const SettingConstants settingsConstants[(int)SettingsOptions::SettingsOp
{0, 50, 1, 20}, // PDNegTimeout {0, 50, 1, 20}, // PDNegTimeout
{0, 1, 1, 0}, // OLEDInversion {0, 1, 1, 0}, // OLEDInversion
{0, 99, 11, 33}, // OLEDBrightness {0, 99, 11, 33}, // OLEDBrightness
{0, 5, 1, 1}, // LOGOTime
}; };
static_assert((sizeof(settingsConstants) / sizeof(SettingConstants)) == ((int)SettingsOptions::SettingsOptionsLength)); static_assert((sizeof(settingsConstants) / sizeof(SettingConstants)) == ((int)SettingsOptions::SettingsOptionsLength));

View File

@@ -69,6 +69,7 @@ static bool settings_showPowerPulseOptions(void);
static void settings_displayPowerPulseDuration(void); static void settings_displayPowerPulseDuration(void);
static void settings_displayBrightnessLevel(void); static void settings_displayBrightnessLevel(void);
static void settings_displayInvertColor(void); static void settings_displayInvertColor(void);
static void settings_displayLogoTime(void);
#ifdef HALL_SENSOR #ifdef HALL_SENSOR
static void settings_displayHallEffect(void); static void settings_displayHallEffect(void);
@@ -223,6 +224,7 @@ const menuitem UIMenu[] = {
* -Animation Loop * -Animation Loop
* OLED Brightnes * OLED Brightnes
* Invert Screen * Invert Screen
* Logo Timeout
* Detailed IDLE * Detailed IDLE
* Detailed Soldering * Detailed Soldering
*/ */
@@ -239,6 +241,7 @@ const menuitem UIMenu[] = {
{SETTINGS_DESC(SettingsItemIndex::AnimLoop), nullptr, settings_displayAnimationLoop, settings_displayAnimationOptions, SettingsOptions::AnimationLoop}, /*Animation Loop switch */ {SETTINGS_DESC(SettingsItemIndex::AnimLoop), nullptr, settings_displayAnimationLoop, settings_displayAnimationOptions, SettingsOptions::AnimationLoop}, /*Animation Loop switch */
{SETTINGS_DESC(SettingsItemIndex::Brightness), nullptr, settings_displayBrightnessLevel, nullptr, SettingsOptions::OLEDBrightness}, /*Brightness Level*/ {SETTINGS_DESC(SettingsItemIndex::Brightness), nullptr, settings_displayBrightnessLevel, nullptr, SettingsOptions::OLEDBrightness}, /*Brightness Level*/
{SETTINGS_DESC(SettingsItemIndex::ColourInversion), nullptr, settings_displayInvertColor, nullptr, SettingsOptions::OLEDInversion}, /*Invert screen colour*/ {SETTINGS_DESC(SettingsItemIndex::ColourInversion), nullptr, settings_displayInvertColor, nullptr, SettingsOptions::OLEDInversion}, /*Invert screen colour*/
{SETTINGS_DESC(SettingsItemIndex::LOGOTime), nullptr, settings_displayLogoTime, nullptr, SettingsOptions::LOGOTime}, /*Set logo duration*/
{SETTINGS_DESC(SettingsItemIndex::AdvancedIdle), nullptr, settings_displayAdvancedIDLEScreens, nullptr, SettingsOptions::DetailedIDLE}, /*Advanced idle screen*/ {SETTINGS_DESC(SettingsItemIndex::AdvancedIdle), nullptr, settings_displayAdvancedIDLEScreens, nullptr, SettingsOptions::DetailedIDLE}, /*Advanced idle screen*/
{SETTINGS_DESC(SettingsItemIndex::AdvancedSoldering), nullptr, settings_displayAdvancedSolderingScreens, nullptr, SettingsOptions::DetailedSoldering}, /*Advanced soldering screen*/ {SETTINGS_DESC(SettingsItemIndex::AdvancedSoldering), nullptr, settings_displayAdvancedSolderingScreens, nullptr, SettingsOptions::DetailedSoldering}, /*Advanced soldering screen*/
{0, nullptr, nullptr, nullptr, SettingsOptions::SettingsOptionsLength} // end of menu marker. DO NOT REMOVE {0, nullptr, nullptr, nullptr, SettingsOptions::SettingsOptionsLength} // end of menu marker. DO NOT REMOVE
@@ -326,8 +329,8 @@ static void settings_displayInputVRange(void) {
static bool settings_showInputVOptions(void) { return getSettingValue(SettingsOptions::MinDCVoltageCells) > 0; } static bool settings_showInputVOptions(void) { return getSettingValue(SettingsOptions::MinDCVoltageCells) > 0; }
static void settings_displayInputMinVRange(void) { static void settings_displayInputMinVRange(void) {
printShortDescription(SettingsItemIndex::MinVolCell, 4); printShortDescription(SettingsItemIndex::MinVolCell, 5);
OLED::printNumber(getSettingValue(SettingsOptions::MinVoltageCells) / 10, 2, FontStyle::LARGE); OLED::printNumber(getSettingValue(SettingsOptions::MinVoltageCells) / 10, 1, FontStyle::LARGE);
OLED::print(SymbolDot, FontStyle::LARGE); OLED::print(SymbolDot, FontStyle::LARGE);
OLED::printNumber(getSettingValue(SettingsOptions::MinVoltageCells) % 10, 1, FontStyle::LARGE); OLED::printNumber(getSettingValue(SettingsOptions::MinVoltageCells) % 10, 1, FontStyle::LARGE);
} }
@@ -449,7 +452,6 @@ static bool settings_setTempF(void) {
static void settings_displayTempF(void) { static void settings_displayTempF(void) {
printShortDescription(SettingsItemIndex::TemperatureUnit, 7); printShortDescription(SettingsItemIndex::TemperatureUnit, 7);
OLED::print((getSettingValue(SettingsOptions::TemperatureInF)) ? SymbolDegF : SymbolDegC, FontStyle::LARGE); OLED::print((getSettingValue(SettingsOptions::TemperatureInF)) ? SymbolDegF : SymbolDegC, FontStyle::LARGE);
} }
@@ -460,7 +462,6 @@ static void settings_displayAdvancedSolderingScreens(void) {
static void settings_displayAdvancedIDLEScreens(void) { static void settings_displayAdvancedIDLEScreens(void) {
printShortDescription(SettingsItemIndex::AdvancedIdle, 7); printShortDescription(SettingsItemIndex::AdvancedIdle, 7);
OLED::drawCheckbox(getSettingValue(SettingsOptions::DetailedIDLE)); OLED::drawCheckbox(getSettingValue(SettingsOptions::DetailedIDLE));
} }
@@ -755,9 +756,9 @@ static void settings_displayPowerPulseDuration(void) {
static void settings_displayBrightnessLevel(void) { static void settings_displayBrightnessLevel(void) {
OLED::drawArea(0, 0, 16, 16, brightnessIcon); OLED::drawArea(0, 0, 16, 16, brightnessIcon);
OLED::setCursor(5 * FONT_12_WIDTH - 2, 0); OLED::setCursor(6 * FONT_12_WIDTH - 2, 0);
// printShortDescription(SettingsItemIndex::Brightness, 7); // printShortDescription(SettingsItemIndex::Brightness, 7);
OLED::printNumber((getSettingValue(SettingsOptions::OLEDBrightness) / 11 + 1), 3, FontStyle::LARGE); OLED::printNumber((getSettingValue(SettingsOptions::OLEDBrightness) / 11 + 1), 2, FontStyle::LARGE);
// While not optimal to apply this here, it is _very_ convienient // While not optimal to apply this here, it is _very_ convienient
OLED::setBrightness(getSettingValue(SettingsOptions::OLEDBrightness)); OLED::setBrightness(getSettingValue(SettingsOptions::OLEDBrightness));
} }
@@ -766,12 +767,23 @@ static void settings_displayInvertColor(void) {
OLED::drawArea(0, 0, 24, 16, invertDisplayIcon); OLED::drawArea(0, 0, 24, 16, invertDisplayIcon);
OLED::setCursor(7 * FONT_12_WIDTH - 2, 0); OLED::setCursor(7 * FONT_12_WIDTH - 2, 0);
// printShortDescription(SettingsItemIndex::ColourInversion, 7); // printShortDescription(SettingsItemIndex::ColourInversion, 7);
OLED::drawCheckbox(getSettingValue(SettingsOptions::OLEDInversion)); OLED::drawCheckbox(getSettingValue(SettingsOptions::OLEDInversion));
// While not optimal to apply this here, it is _very_ convienient // While not optimal to apply this here, it is _very_ convienient
OLED::setInverseDisplay(getSettingValue(SettingsOptions::OLEDInversion)); OLED::setInverseDisplay(getSettingValue(SettingsOptions::OLEDInversion));
} }
static void settings_displayLogoTime(void) {
printShortDescription(SettingsItemIndex::LOGOTime, 5);
if (getSettingValue(SettingsOptions::LOGOTime) == 0) {
OLED::print(translatedString(Tr->OffString), FontStyle::LARGE);
} else if (getSettingValue(SettingsOptions::LOGOTime) == 5) {
OLED::drawArea(OLED_WIDTH - 24 - 2, 0, 24, 16, infinityIcon);
} else {
OLED::printNumber(getSettingValue(SettingsOptions::LOGOTime), 2, FontStyle::LARGE);
OLED::print(SymbolSeconds, FontStyle::LARGE);
}
}
#ifdef HALL_SENSOR #ifdef HALL_SENSOR
static void settings_displayHallEffect(void) { static void settings_displayHallEffect(void) {
printShortDescription(SettingsItemIndex::HallEffSensitivity, 7); printShortDescription(SettingsItemIndex::HallEffSensitivity, 7);