mirror of
https://github.com/Ralim/IronOS.git
synced 2025-02-26 07:53:55 +00:00
Fix translations: add three new missing options (#370)
* updated spanish translation * fix translation of 'blinking' * print which translation json is being read * removed PID settings * #362: updated italian translation * improved json error reporting in make_translation.py * fixed extra escape character in LANG_SV * Update translation definitions and Lithuanian translation * Fix translations: add three new missing options
This commit is contained in:
committed by
Ben V. Brown
parent
5bce2d3b03
commit
a609d702f5
112
Translation Editor/make_translation.py
Normal file → Executable file
112
Translation Editor/make_translation.py
Normal file → Executable file
@@ -1,3 +1,5 @@
|
||||
#!/usr/bin/env python
|
||||
|
||||
from __future__ import print_function
|
||||
import json
|
||||
import os
|
||||
@@ -35,8 +37,13 @@ def readTranslations(jsonDir):
|
||||
|
||||
# Read only translation_XX.json
|
||||
if lf.startswith("translation_") and lf.endswith(".json"):
|
||||
lang = loadJson(fileWithPath, False)
|
||||
|
||||
try:
|
||||
lang = loadJson(fileWithPath, False)
|
||||
except json.decoder.JSONDecodeError as e:
|
||||
print("Failed to decode " + lf)
|
||||
print(str(e))
|
||||
sys.exit(2)
|
||||
|
||||
# Extract lang code from file name
|
||||
langCode = fileName[12:-5].upper()
|
||||
# ...and the one specified in the JSON file...
|
||||
@@ -65,10 +72,10 @@ def writeStart(f):
|
||||
|
||||
|
||||
def escapeC(s):
|
||||
return s.replace("\"", "\\\"");
|
||||
return s.replace("\"", "\\\"")
|
||||
|
||||
|
||||
def writeLanguage(languageCode):
|
||||
def writeLanguage(languageCode, defs, f):
|
||||
print("Generating block for " + languageCode)
|
||||
lang = langDict[languageCode]
|
||||
|
||||
@@ -167,52 +174,65 @@ def writeLanguage(languageCode):
|
||||
# ----- Block end
|
||||
f.write(to_unicode("#endif\n"))
|
||||
|
||||
|
||||
def read_opts():
|
||||
""" Reading input parameters
|
||||
First parameter = json directory
|
||||
Second parameter = target directory
|
||||
"""
|
||||
if len(sys.argv) > 1:
|
||||
jsonDir = sys.argv[1]
|
||||
else:
|
||||
jsonDir = "."
|
||||
|
||||
if len(sys.argv) > 2:
|
||||
outFile = sys.argv[2]
|
||||
else:
|
||||
outDir = os.path.relpath(jsonDir + "/../workspace/TS100/src/")
|
||||
outFile = os.path.join(outDir, TRANSLATION_CPP)
|
||||
|
||||
if len(sys.argv) > 3:
|
||||
raise Exception("Too many parameters!")
|
||||
|
||||
return jsonDir, outFile
|
||||
|
||||
|
||||
def orderOutput(langDict):
|
||||
# These languages go first
|
||||
mandatoryOrder = ['EN']
|
||||
|
||||
# Then add all others in alphabetical order
|
||||
sortedKeys = sorted(langDict.keys())
|
||||
|
||||
# Add the rest as they come
|
||||
for key in sortedKeys:
|
||||
if key not in mandatoryOrder:
|
||||
mandatoryOrder.append(key)
|
||||
|
||||
return mandatoryOrder
|
||||
|
||||
''' Reading input parameters
|
||||
First parameter = json directory
|
||||
Second parameter = target directory
|
||||
'''
|
||||
|
||||
def writeTarget(outFile, defs, langCodes):
|
||||
# Start writing the file
|
||||
with io.open(outFile, 'w', encoding='utf-8', newline="\n") as f:
|
||||
writeStart(f)
|
||||
|
||||
for langCode in langCodes:
|
||||
writeLanguage(langCode, defs, f)
|
||||
|
||||
|
||||
print("Making " + TRANSLATION_CPP + ":")
|
||||
if __name__ == "__main__":
|
||||
try:
|
||||
jsonDir, outFile = read_opts()
|
||||
except:
|
||||
print("usage: make_translation.py {json dir} {cpp dir}")
|
||||
sys.exit(1)
|
||||
|
||||
if len(sys.argv) > 1:
|
||||
jsonDir = sys.argv[1]
|
||||
else:
|
||||
jsonDir = "."
|
||||
print("Making " + outFile + " from " + jsonDir)
|
||||
|
||||
jsonDir = os.path.abspath(jsonDir)
|
||||
langDict = readTranslations(jsonDir)
|
||||
defs = loadJson(os.path.join(jsonDir, "translations_def.js"), True)
|
||||
langCodes = orderOutput(langDict)
|
||||
writeTarget(outFile, defs, langCodes)
|
||||
|
||||
if len(sys.argv) > 2:
|
||||
outDir = sys.argv[2]
|
||||
else:
|
||||
outDir = jsonDir + "/../workspace/TS100/src/"
|
||||
|
||||
langDict = readTranslations(jsonDir)
|
||||
|
||||
# Read definition (required for ordering)
|
||||
|
||||
defs = loadJson(os.path.join(jsonDir, "translations_def.js"), True)
|
||||
|
||||
# These languages go first
|
||||
mandatoryOrder = ['EN']
|
||||
|
||||
# Then add all others in alphabetical order
|
||||
sortedKeys = sorted(langDict.keys())
|
||||
|
||||
for key in sortedKeys:
|
||||
if key not in mandatoryOrder:
|
||||
mandatoryOrder.append(key)
|
||||
|
||||
# Add the rest as they come
|
||||
|
||||
# Start writing the file
|
||||
targetTranslationFile = os.path.join(outDir, TRANSLATION_CPP)
|
||||
|
||||
with io.open(targetTranslationFile, 'w', encoding='utf-8', newline="\n") as f:
|
||||
writeStart(f)
|
||||
|
||||
for langCode in mandatoryOrder:
|
||||
writeLanguage(langCode)
|
||||
|
||||
print("Done")
|
||||
|
||||
@@ -195,30 +195,30 @@
|
||||
],
|
||||
"desc": "Скорост на движение на този текст"
|
||||
},
|
||||
"PidSettingsP": {
|
||||
"text": "PIDP",
|
||||
"TipModel": {
|
||||
"text": "TIPMO",
|
||||
"text2": [
|
||||
"PID",
|
||||
"P"
|
||||
"Tip",
|
||||
"Model"
|
||||
],
|
||||
"desc": "PID P term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems"
|
||||
"desc": "Tip Model selection"
|
||||
},
|
||||
"PidSettingsI": {
|
||||
"text": "PIDI",
|
||||
"SimpleCalibrationMode": {
|
||||
"text": "SMPCAL",
|
||||
"text2": [
|
||||
"PID",
|
||||
"I"
|
||||
"Simple",
|
||||
"Calibration"
|
||||
],
|
||||
"desc": "PID I term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems"
|
||||
"desc": "Simple Calibration using Hot water"
|
||||
},
|
||||
"PidSettingsD": {
|
||||
"text": "PIDD",
|
||||
"AdvancedCalibrationMode": {
|
||||
"text": "ADVCAL",
|
||||
"text2": [
|
||||
"PID",
|
||||
"D"
|
||||
"Advanced",
|
||||
"Calibration"
|
||||
],
|
||||
"desc": "PID D term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems"
|
||||
"desc": "Advanced calibration using thermocouple on the tip"
|
||||
}
|
||||
},
|
||||
"languageLocalName": "български"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -195,30 +195,30 @@
|
||||
],
|
||||
"desc": "Rychlost skrolování popisků podobných tomuto <P=Pomalu,R=Rychle>"
|
||||
},
|
||||
"PidSettingsP": {
|
||||
"text": "PIDP",
|
||||
"TipModel": {
|
||||
"text": "TIPMO",
|
||||
"text2": [
|
||||
"PID",
|
||||
"P"
|
||||
"Tip",
|
||||
"Model"
|
||||
],
|
||||
"desc": "PID P term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems"
|
||||
"desc": "Tip Model selection"
|
||||
},
|
||||
"PidSettingsI": {
|
||||
"text": "PIDI",
|
||||
"SimpleCalibrationMode": {
|
||||
"text": "SMPCAL",
|
||||
"text2": [
|
||||
"PID",
|
||||
"I"
|
||||
"Simple",
|
||||
"Calibration"
|
||||
],
|
||||
"desc": "PID I term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems"
|
||||
"desc": "Simple Calibration using Hot water"
|
||||
},
|
||||
"PidSettingsD": {
|
||||
"text": "PIDD",
|
||||
"AdvancedCalibrationMode": {
|
||||
"text": "ADVCAL",
|
||||
"text2": [
|
||||
"PID",
|
||||
"D"
|
||||
"Advanced",
|
||||
"Calibration"
|
||||
],
|
||||
"desc": "PID D term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems"
|
||||
"desc": "Advanced calibration using thermocouple on the tip"
|
||||
}
|
||||
},
|
||||
"languageLocalName": "Český"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -195,30 +195,30 @@
|
||||
],
|
||||
"desc": "Scrollgeschwindigkeit der Texte"
|
||||
},
|
||||
"PidSettingsP": {
|
||||
"text": "PIDP",
|
||||
"TipModel": {
|
||||
"text": "TIPMO",
|
||||
"text2": [
|
||||
"PID",
|
||||
"P"
|
||||
"Tip",
|
||||
"Model"
|
||||
],
|
||||
"desc": "PID P term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems"
|
||||
"desc": "Tip Model selection"
|
||||
},
|
||||
"PidSettingsI": {
|
||||
"text": "PIDI",
|
||||
"SimpleCalibrationMode": {
|
||||
"text": "SMPCAL",
|
||||
"text2": [
|
||||
"PID",
|
||||
"I"
|
||||
"Simple",
|
||||
"Calibration"
|
||||
],
|
||||
"desc": "PID I term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems"
|
||||
"desc": "Simple Calibration using Hot water"
|
||||
},
|
||||
"PidSettingsD": {
|
||||
"text": "PIDD",
|
||||
"AdvancedCalibrationMode": {
|
||||
"text": "ADVCAL",
|
||||
"text2": [
|
||||
"PID",
|
||||
"D"
|
||||
"Advanced",
|
||||
"Calibration"
|
||||
],
|
||||
"desc": "PID D term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems"
|
||||
"desc": "Advanced calibration using thermocouple on the tip"
|
||||
}
|
||||
},
|
||||
"languageLocalName": "Deutsch"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -195,30 +195,30 @@
|
||||
],
|
||||
"desc": "Speed this text scrolls past at"
|
||||
},
|
||||
"PidSettingsP": {
|
||||
"text": "PIDP",
|
||||
"TipModel": {
|
||||
"text": "TIPMO",
|
||||
"text2": [
|
||||
"PID",
|
||||
"P"
|
||||
"Tip",
|
||||
"Model"
|
||||
],
|
||||
"desc": "PID P term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems"
|
||||
"desc": "Tip Model selection"
|
||||
},
|
||||
"PidSettingsI": {
|
||||
"text": "PIDI",
|
||||
"SimpleCalibrationMode": {
|
||||
"text": "SMPCAL",
|
||||
"text2": [
|
||||
"PID",
|
||||
"I"
|
||||
"Simple",
|
||||
"Calibration"
|
||||
],
|
||||
"desc": "PID I term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems"
|
||||
"desc": "Simple Calibration using Hot water"
|
||||
},
|
||||
"PidSettingsD": {
|
||||
"text": "PIDD",
|
||||
"AdvancedCalibrationMode": {
|
||||
"text": "ADVCAL",
|
||||
"text2": [
|
||||
"PID",
|
||||
"D"
|
||||
"Advanced",
|
||||
"Calibration"
|
||||
],
|
||||
"desc": "PID D term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems"
|
||||
"desc": "Advanced calibration using thermocouple on the tip"
|
||||
}
|
||||
},
|
||||
"languageLocalName": "Dansk"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -196,29 +196,29 @@
|
||||
],
|
||||
"desc": "Speed this text scrolls past at"
|
||||
},
|
||||
"PidSettingsP": {
|
||||
"text": "PIDP",
|
||||
"TipModel": {
|
||||
"text": "TIPMO",
|
||||
"text2": [
|
||||
"PID",
|
||||
"P"
|
||||
"Tip",
|
||||
"Model"
|
||||
],
|
||||
"desc": "PID P term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems"
|
||||
"desc": "Tip Model selection"
|
||||
},
|
||||
"PidSettingsI": {
|
||||
"text": "PIDI",
|
||||
"SimpleCalibrationMode": {
|
||||
"text": "SMPCAL",
|
||||
"text2": [
|
||||
"PID",
|
||||
"I"
|
||||
"Simple",
|
||||
"Calibration"
|
||||
],
|
||||
"desc": "PID I term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems"
|
||||
"desc": "Simple Calibration using Hot water"
|
||||
},
|
||||
"PidSettingsD": {
|
||||
"text": "PIDD",
|
||||
"AdvancedCalibrationMode": {
|
||||
"text": "ADVCAL",
|
||||
"text2": [
|
||||
"PID",
|
||||
"D"
|
||||
"Advanced",
|
||||
"Calibration"
|
||||
],
|
||||
"desc": "PID D term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems"
|
||||
"desc": "Advanced calibration using thermocouple on the tip"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -150,7 +150,7 @@
|
||||
"CooldownBlink": {
|
||||
"text": "CLBLNK",
|
||||
"text2": [
|
||||
"Temp. en el",
|
||||
"Parpadea m.",
|
||||
"enfriamiento"
|
||||
],
|
||||
"desc": "Parpadea la temperatura en el enfriamiento si la punta sigue caliente."
|
||||
@@ -183,7 +183,7 @@
|
||||
"text": "ADVSLD",
|
||||
"text2": [
|
||||
"Inf detallada",
|
||||
"de soldadura"
|
||||
"del soldadura"
|
||||
],
|
||||
"desc": "Mostrar información detallada mientras suelda."
|
||||
},
|
||||
@@ -195,30 +195,30 @@
|
||||
],
|
||||
"desc": "Velocidad de desplazamiento del texto."
|
||||
},
|
||||
"PidSettingsP": {
|
||||
"text": "PIDP",
|
||||
"TipModel": {
|
||||
"text": "TIPMO",
|
||||
"text2": [
|
||||
"PID",
|
||||
"P"
|
||||
"Tip",
|
||||
"Model"
|
||||
],
|
||||
"desc": "PID P term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems"
|
||||
"desc": "Tip Model selection"
|
||||
},
|
||||
"PidSettingsI": {
|
||||
"text": "PIDI",
|
||||
"SimpleCalibrationMode": {
|
||||
"text": "SMPCAL",
|
||||
"text2": [
|
||||
"PID",
|
||||
"I"
|
||||
"Simple",
|
||||
"Calibration"
|
||||
],
|
||||
"desc": "PID I term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems"
|
||||
"desc": "Simple Calibration using Hot water"
|
||||
},
|
||||
"PidSettingsD": {
|
||||
"text": "PIDD",
|
||||
"AdvancedCalibrationMode": {
|
||||
"text": "ADVCAL",
|
||||
"text2": [
|
||||
"PID",
|
||||
"D"
|
||||
"Advanced",
|
||||
"Calibration"
|
||||
],
|
||||
"desc": "PID D term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems"
|
||||
"desc": "Advanced calibration using thermocouple on the tip"
|
||||
}
|
||||
},
|
||||
"languageLocalName": "Español"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -196,29 +196,29 @@
|
||||
],
|
||||
"desc": "Näiden selitetekstien vieritysnopeus."
|
||||
},
|
||||
"PidSettingsP": {
|
||||
"text": "PIDP",
|
||||
"TipModel": {
|
||||
"text": "TIPMO",
|
||||
"text2": [
|
||||
"PID",
|
||||
"P"
|
||||
"Tip",
|
||||
"Model"
|
||||
],
|
||||
"desc": "PID P term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems"
|
||||
"desc": "Tip Model selection"
|
||||
},
|
||||
"PidSettingsI": {
|
||||
"text": "PIDI",
|
||||
"SimpleCalibrationMode": {
|
||||
"text": "SMPCAL",
|
||||
"text2": [
|
||||
"PID",
|
||||
"I"
|
||||
"Simple",
|
||||
"Calibration"
|
||||
],
|
||||
"desc": "PID I term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems"
|
||||
"desc": "Simple Calibration using Hot water"
|
||||
},
|
||||
"PidSettingsD": {
|
||||
"text": "PIDD",
|
||||
"AdvancedCalibrationMode": {
|
||||
"text": "ADVCAL",
|
||||
"text2": [
|
||||
"PID",
|
||||
"D"
|
||||
"Advanced",
|
||||
"Calibration"
|
||||
],
|
||||
"desc": "PID D term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems"
|
||||
"desc": "Advanced calibration using thermocouple on the tip"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -195,30 +195,30 @@
|
||||
],
|
||||
"desc": "Vitesse de défilement de ce texte en <R=Rapide L=Lent>"
|
||||
},
|
||||
"PidSettingsP": {
|
||||
"text": "PIDP",
|
||||
"TipModel": {
|
||||
"text": "TIPMO",
|
||||
"text2": [
|
||||
"PID",
|
||||
"P"
|
||||
"Tip",
|
||||
"Model"
|
||||
],
|
||||
"desc": "PID P term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems"
|
||||
"desc": "Tip Model selection"
|
||||
},
|
||||
"PidSettingsI": {
|
||||
"text": "PIDI",
|
||||
"SimpleCalibrationMode": {
|
||||
"text": "SMPCAL",
|
||||
"text2": [
|
||||
"PID",
|
||||
"I"
|
||||
"Simple",
|
||||
"Calibration"
|
||||
],
|
||||
"desc": "PID I term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems"
|
||||
"desc": "Simple Calibration using Hot water"
|
||||
},
|
||||
"PidSettingsD": {
|
||||
"text": "PIDD",
|
||||
"AdvancedCalibrationMode": {
|
||||
"text": "ADVCAL",
|
||||
"text2": [
|
||||
"PID",
|
||||
"D"
|
||||
"Advanced",
|
||||
"Calibration"
|
||||
],
|
||||
"desc": "PID D term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems"
|
||||
"desc": "Advanced calibration using thermocouple on the tip"
|
||||
}
|
||||
},
|
||||
"languageLocalName": "Français"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -196,29 +196,29 @@
|
||||
],
|
||||
"desc": "Brzina kretanja dugačkih poruka. <B=brzo, S=sporo>"
|
||||
},
|
||||
"PidSettingsP": {
|
||||
"text": "PIDP",
|
||||
"TipModel": {
|
||||
"text": "TIPMO",
|
||||
"text2": [
|
||||
"PID",
|
||||
"P"
|
||||
"Tip",
|
||||
"Model"
|
||||
],
|
||||
"desc": "PID P term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems"
|
||||
"desc": "Tip Model selection"
|
||||
},
|
||||
"PidSettingsI": {
|
||||
"text": "PIDI",
|
||||
"SimpleCalibrationMode": {
|
||||
"text": "SMPCAL",
|
||||
"text2": [
|
||||
"PID",
|
||||
"I"
|
||||
"Simple",
|
||||
"Calibration"
|
||||
],
|
||||
"desc": "PID I term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems"
|
||||
"desc": "Simple Calibration using Hot water"
|
||||
},
|
||||
"PidSettingsD": {
|
||||
"text": "PIDD",
|
||||
"AdvancedCalibrationMode": {
|
||||
"text": "ADVCAL",
|
||||
"text2": [
|
||||
"PID",
|
||||
"D"
|
||||
"Advanced",
|
||||
"Calibration"
|
||||
],
|
||||
"desc": "PID D term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems"
|
||||
"desc": "Advanced calibration using thermocouple on the tip"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -195,30 +195,30 @@
|
||||
],
|
||||
"desc": "Szöveg görgetésének gyorsítása"
|
||||
},
|
||||
"PidSettingsP": {
|
||||
"text": "PIDP",
|
||||
"TipModel": {
|
||||
"text": "TIPMO",
|
||||
"text2": [
|
||||
"PID",
|
||||
"P"
|
||||
"Tip",
|
||||
"Model"
|
||||
],
|
||||
"desc": "PID P term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems"
|
||||
"desc": "Tip Model selection"
|
||||
},
|
||||
"PidSettingsI": {
|
||||
"text": "PIDI",
|
||||
"SimpleCalibrationMode": {
|
||||
"text": "SMPCAL",
|
||||
"text2": [
|
||||
"PID",
|
||||
"I"
|
||||
"Simple",
|
||||
"Calibration"
|
||||
],
|
||||
"desc": "PID I term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems"
|
||||
"desc": "Simple Calibration using Hot water"
|
||||
},
|
||||
"PidSettingsD": {
|
||||
"text": "PIDD",
|
||||
"AdvancedCalibrationMode": {
|
||||
"text": "ADVCAL",
|
||||
"text2": [
|
||||
"PID",
|
||||
"D"
|
||||
"Advanced",
|
||||
"Calibration"
|
||||
],
|
||||
"desc": "PID D term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems"
|
||||
"desc": "Advanced calibration using thermocouple on the tip"
|
||||
}
|
||||
},
|
||||
"languageLocalName": "Magyar"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
"WarningAdvancedString": "PUNTA CALDA!",
|
||||
"SleepingTipAdvancedString": "Punta:",
|
||||
"IdleTipString": "Punta:",
|
||||
"IdleSetString": " Im:",
|
||||
"IdleSetString": "/",
|
||||
"TipDisconnectedString": "PUNTA ASSENTE",
|
||||
"SolderingAdvancedPowerPrompt": "Potenza:",
|
||||
"OffString": "OFF"
|
||||
@@ -34,28 +34,28 @@
|
||||
"Opzioni",
|
||||
"saldatura"
|
||||
],
|
||||
"desc": "Menù impostazioni saldatura"
|
||||
"desc": "Menù d'impostazioni della modalità Saldatura"
|
||||
},
|
||||
"PowerSavingMenu": {
|
||||
"text2": [
|
||||
"Risparmio",
|
||||
"energetico"
|
||||
],
|
||||
"desc": "Menù risparmio energetico"
|
||||
"desc": "Menù d'impostazioni per il risparmio energetico"
|
||||
},
|
||||
"UIMenu": {
|
||||
"text2": [
|
||||
"Interfaccia",
|
||||
"utente"
|
||||
],
|
||||
"desc": "Menù interfaccia utente"
|
||||
"desc": "Menù d'impostazioni dell'interfaccia utente"
|
||||
},
|
||||
"AdvancedMenu": {
|
||||
"text2": [
|
||||
"Opzioni",
|
||||
"avanzate"
|
||||
],
|
||||
"desc": "Menù impostazioni avanzate"
|
||||
"desc": "Menù d'impostazioni avanzate"
|
||||
}
|
||||
},
|
||||
"menuOptions": {
|
||||
@@ -65,7 +65,7 @@
|
||||
"Sorgente",
|
||||
"alimentaz"
|
||||
],
|
||||
"desc": "Scegli la sorgente di alimentazione; se a batteria, limita lo scaricamento al valore di soglia <DC: 10V; S: 3.3V per cella>"
|
||||
"desc": "Scegli la sorgente di alimentazione; se a batteria, limita lo scaricamento al valore di soglia <DC: 10V; S: 3,3V per cella>"
|
||||
},
|
||||
"SleepTemperature": {
|
||||
"text": "",
|
||||
@@ -127,7 +127,7 @@
|
||||
"text": "",
|
||||
"text2": [
|
||||
"Funzione",
|
||||
"\"boost\""
|
||||
"«Turbo»"
|
||||
],
|
||||
"desc": "Il tasto superiore attiva la funzione «Turbo» durante la modalità Saldatura"
|
||||
},
|
||||
@@ -135,7 +135,7 @@
|
||||
"text": "",
|
||||
"text2": [
|
||||
"Temp",
|
||||
"\"boost\""
|
||||
"«Turbo»"
|
||||
],
|
||||
"desc": "Imposta la temperatura della funzione «Turbo»"
|
||||
},
|
||||
@@ -153,7 +153,7 @@
|
||||
"Avviso",
|
||||
"punta calda"
|
||||
],
|
||||
"desc": "Mostra la temperatura durante il raffreddamento se la punta è ancora calda"
|
||||
"desc": "Mostra, lampeggiante, la temperatura durante il raffreddamento se la punta è ancora calda"
|
||||
},
|
||||
"TemperatureCalibration": {
|
||||
"text": "",
|
||||
@@ -195,30 +195,30 @@
|
||||
],
|
||||
"desc": "Imposta la velocità di scorrimento del testo <L: lento; V: veloce>"
|
||||
},
|
||||
"PidSettingsP": {
|
||||
"text": "PIDP",
|
||||
"TipModel": {
|
||||
"text": "TIPMO",
|
||||
"text2": [
|
||||
"PID",
|
||||
"P"
|
||||
"Tip",
|
||||
"Model"
|
||||
],
|
||||
"desc": "PID P term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems"
|
||||
"desc": "Tip Model selection"
|
||||
},
|
||||
"PidSettingsI": {
|
||||
"text": "PIDI",
|
||||
"SimpleCalibrationMode": {
|
||||
"text": "SMPCAL",
|
||||
"text2": [
|
||||
"PID",
|
||||
"I"
|
||||
"Simple",
|
||||
"Calibration"
|
||||
],
|
||||
"desc": "PID I term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems"
|
||||
"desc": "Simple Calibration using Hot water"
|
||||
},
|
||||
"PidSettingsD": {
|
||||
"text": "PIDD",
|
||||
"AdvancedCalibrationMode": {
|
||||
"text": "ADVCAL",
|
||||
"text2": [
|
||||
"PID",
|
||||
"D"
|
||||
"Advanced",
|
||||
"Calibration"
|
||||
],
|
||||
"desc": "PID D term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems"
|
||||
"desc": "Advanced calibration using thermocouple on the tip"
|
||||
}
|
||||
},
|
||||
"languageLocalName": "Italiano"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
"languageCode": "LT",
|
||||
"languageLocalName": "Lietuvių",
|
||||
"messages": {
|
||||
"SettingsCalibrationDone": "Calibration done!",
|
||||
"SettingsCalibrationDone": "Kalibracija atlikta!",
|
||||
"SettingsCalibrationWarning": "Prieš tęsdami įsitikinkite, kad antgalis yra kambario temperatūros!",
|
||||
"SettingsResetWarning": "Ar norite atstatyti nustatymus į numatytas reikšmes?",
|
||||
"UVLOWarningString": "MAŽ VOLT",
|
||||
@@ -196,29 +196,29 @@
|
||||
],
|
||||
"desc": "Greitis, kuriuo šis tekstas slenka"
|
||||
},
|
||||
"PidSettingsP": {
|
||||
"text": "PIDP",
|
||||
"TipModel": {
|
||||
"text": "TIPMO",
|
||||
"text2": [
|
||||
"PID",
|
||||
"P"
|
||||
"Antgalio",
|
||||
"modelis"
|
||||
],
|
||||
"desc": "PID P term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems"
|
||||
"desc": "Antgalio modelio pasirinkimas"
|
||||
},
|
||||
"PidSettingsI": {
|
||||
"text": "PIDI",
|
||||
"SimpleCalibrationMode": {
|
||||
"text": "SMPCAL",
|
||||
"text2": [
|
||||
"PID",
|
||||
"I"
|
||||
"Paprasta",
|
||||
"kalibracija"
|
||||
],
|
||||
"desc": "PID I term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems"
|
||||
"desc": "Paprasta kalibracija naudojant karštą vandienį"
|
||||
},
|
||||
"PidSettingsD": {
|
||||
"text": "PIDD",
|
||||
"AdvancedCalibrationMode": {
|
||||
"text": "ADVCAL",
|
||||
"text2": [
|
||||
"PID",
|
||||
"D"
|
||||
"Išplėstinė",
|
||||
"kalibracija"
|
||||
],
|
||||
"desc": "PID D term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems"
|
||||
"desc": "Išplėstinė kalibracija naudojant termoelementą"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -196,29 +196,29 @@
|
||||
],
|
||||
"desc": "Snelheid waarmee de tekst scrolt."
|
||||
},
|
||||
"PidSettingsP": {
|
||||
"text": "PIDP",
|
||||
"TipModel": {
|
||||
"text": "TIPMO",
|
||||
"text2": [
|
||||
"PID",
|
||||
"P"
|
||||
"Tip",
|
||||
"Model"
|
||||
],
|
||||
"desc": "PID P term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems"
|
||||
"desc": "Tip Model selection"
|
||||
},
|
||||
"PidSettingsI": {
|
||||
"text": "PIDI",
|
||||
"SimpleCalibrationMode": {
|
||||
"text": "SMPCAL",
|
||||
"text2": [
|
||||
"PID",
|
||||
"I"
|
||||
"Simple",
|
||||
"Calibration"
|
||||
],
|
||||
"desc": "PID I term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems"
|
||||
"desc": "Simple Calibration using Hot water"
|
||||
},
|
||||
"PidSettingsD": {
|
||||
"text": "PIDD",
|
||||
"AdvancedCalibrationMode": {
|
||||
"text": "ADVCAL",
|
||||
"text2": [
|
||||
"PID",
|
||||
"D"
|
||||
"Advanced",
|
||||
"Calibration"
|
||||
],
|
||||
"desc": "PID D term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems"
|
||||
"desc": "Advanced calibration using thermocouple on the tip"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -196,29 +196,29 @@
|
||||
],
|
||||
"desc": "Hastigheten på rulletekst"
|
||||
},
|
||||
"PidSettingsP": {
|
||||
"text": "PIDP",
|
||||
"TipModel": {
|
||||
"text": "TIPMO",
|
||||
"text2": [
|
||||
"PID",
|
||||
"P"
|
||||
"Tip",
|
||||
"Model"
|
||||
],
|
||||
"desc": "PID P term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems"
|
||||
"desc": "Tip Model selection"
|
||||
},
|
||||
"PidSettingsI": {
|
||||
"text": "PIDI",
|
||||
"SimpleCalibrationMode": {
|
||||
"text": "SMPCAL",
|
||||
"text2": [
|
||||
"PID",
|
||||
"I"
|
||||
"Simple",
|
||||
"Calibration"
|
||||
],
|
||||
"desc": "PID I term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems"
|
||||
"desc": "Simple Calibration using Hot water"
|
||||
},
|
||||
"PidSettingsD": {
|
||||
"text": "PIDD",
|
||||
"AdvancedCalibrationMode": {
|
||||
"text": "ADVCAL",
|
||||
"text2": [
|
||||
"PID",
|
||||
"D"
|
||||
"Advanced",
|
||||
"Calibration"
|
||||
],
|
||||
"desc": "PID D term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems"
|
||||
"desc": "Advanced calibration using thermocouple on the tip"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -195,30 +195,30 @@
|
||||
],
|
||||
"desc": "Speed this text scrolls past at"
|
||||
},
|
||||
"PidSettingsP": {
|
||||
"text": "PIDP",
|
||||
"TipModel": {
|
||||
"text": "TIPMO",
|
||||
"text2": [
|
||||
"PID",
|
||||
"P"
|
||||
"Tip",
|
||||
"Model"
|
||||
],
|
||||
"desc": "PID P term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems"
|
||||
"desc": "Tip Model selection"
|
||||
},
|
||||
"PidSettingsI": {
|
||||
"text": "PIDI",
|
||||
"SimpleCalibrationMode": {
|
||||
"text": "SMPCAL",
|
||||
"text2": [
|
||||
"PID",
|
||||
"I"
|
||||
"Simple",
|
||||
"Calibration"
|
||||
],
|
||||
"desc": "PID I term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems"
|
||||
"desc": "Simple Calibration using Hot water"
|
||||
},
|
||||
"PidSettingsD": {
|
||||
"text": "PIDD",
|
||||
"AdvancedCalibrationMode": {
|
||||
"text": "ADVCAL",
|
||||
"text2": [
|
||||
"PID",
|
||||
"D"
|
||||
"Advanced",
|
||||
"Calibration"
|
||||
],
|
||||
"desc": "PID D term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems"
|
||||
"desc": "Advanced calibration using thermocouple on the tip"
|
||||
}
|
||||
},
|
||||
"languageLocalName": "Polski"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -195,30 +195,30 @@
|
||||
],
|
||||
"desc": "Velocidade que esse texto é exibido"
|
||||
},
|
||||
"PidSettingsP": {
|
||||
"text": "PIDP",
|
||||
"TipModel": {
|
||||
"text": "TIPMO",
|
||||
"text2": [
|
||||
"PID",
|
||||
"P"
|
||||
"Tip",
|
||||
"Model"
|
||||
],
|
||||
"desc": "PID P term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems"
|
||||
"desc": "Tip Model selection"
|
||||
},
|
||||
"PidSettingsI": {
|
||||
"text": "PIDI",
|
||||
"SimpleCalibrationMode": {
|
||||
"text": "SMPCAL",
|
||||
"text2": [
|
||||
"PID",
|
||||
"I"
|
||||
"Simple",
|
||||
"Calibration"
|
||||
],
|
||||
"desc": "PID I term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems"
|
||||
"desc": "Simple Calibration using Hot water"
|
||||
},
|
||||
"PidSettingsD": {
|
||||
"text": "PIDD",
|
||||
"AdvancedCalibrationMode": {
|
||||
"text": "ADVCAL",
|
||||
"text2": [
|
||||
"PID",
|
||||
"D"
|
||||
"Advanced",
|
||||
"Calibration"
|
||||
],
|
||||
"desc": "PID D term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems"
|
||||
"desc": "Advanced calibration using thermocouple on the tip"
|
||||
}
|
||||
},
|
||||
"languageLocalName": "Portugues"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -195,30 +195,30 @@
|
||||
],
|
||||
"desc": "Скорость прокрутки текста"
|
||||
},
|
||||
"PidSettingsP": {
|
||||
"text": "PIDP",
|
||||
"TipModel": {
|
||||
"text": "TIPMO",
|
||||
"text2": [
|
||||
"PID",
|
||||
"P"
|
||||
"Tip",
|
||||
"Model"
|
||||
],
|
||||
"desc": "PID P term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems"
|
||||
"desc": "Tip Model selection"
|
||||
},
|
||||
"PidSettingsI": {
|
||||
"text": "PIDI",
|
||||
"SimpleCalibrationMode": {
|
||||
"text": "SMPCAL",
|
||||
"text2": [
|
||||
"PID",
|
||||
"I"
|
||||
"Simple",
|
||||
"Calibration"
|
||||
],
|
||||
"desc": "PID I term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems"
|
||||
"desc": "Simple Calibration using Hot water"
|
||||
},
|
||||
"PidSettingsD": {
|
||||
"text": "PIDD",
|
||||
"AdvancedCalibrationMode": {
|
||||
"text": "ADVCAL",
|
||||
"text2": [
|
||||
"PID",
|
||||
"D"
|
||||
"Advanced",
|
||||
"Calibration"
|
||||
],
|
||||
"desc": "PID D term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems"
|
||||
"desc": "Advanced calibration using thermocouple on the tip"
|
||||
}
|
||||
},
|
||||
"languageLocalName": "Русский"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -195,29 +195,29 @@
|
||||
],
|
||||
"desc": "Speed this text scrolls past at"
|
||||
},
|
||||
"PidSettingsP": {
|
||||
"text": "PIDP",
|
||||
"TipModel": {
|
||||
"text": "TIPMO",
|
||||
"text2": [
|
||||
"PID",
|
||||
"P"
|
||||
"Tip",
|
||||
"Model"
|
||||
],
|
||||
"desc": "PID P term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems"
|
||||
"desc": "Tip Model selection"
|
||||
},
|
||||
"PidSettingsI": {
|
||||
"text": "PIDI",
|
||||
"SimpleCalibrationMode": {
|
||||
"text": "SMPCAL",
|
||||
"text2": [
|
||||
"PID",
|
||||
"I"
|
||||
"Simple",
|
||||
"Calibration"
|
||||
],
|
||||
"desc": "PID I term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems"
|
||||
"desc": "Simple Calibration using Hot water"
|
||||
},
|
||||
"PidSettingsD": {
|
||||
"text": "PIDD",
|
||||
"AdvancedCalibrationMode": {
|
||||
"text": "ADVCAL",
|
||||
"text2": [
|
||||
"PID",
|
||||
"D"
|
||||
"Advanced",
|
||||
"Calibration"
|
||||
],
|
||||
"desc": "PID D term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems"
|
||||
"desc": "Advanced calibration using thermocouple on the tip"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -196,29 +196,29 @@
|
||||
],
|
||||
"desc": "Brzina kretanja dugačkih poruka <B=brzo, S=sporo>"
|
||||
},
|
||||
"PidSettingsP": {
|
||||
"text": "PIDP",
|
||||
"TipModel": {
|
||||
"text": "TIPMO",
|
||||
"text2": [
|
||||
"PID",
|
||||
"P"
|
||||
"Tip",
|
||||
"Model"
|
||||
],
|
||||
"desc": "PID P term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems"
|
||||
"desc": "Tip Model selection"
|
||||
},
|
||||
"PidSettingsI": {
|
||||
"text": "PIDI",
|
||||
"SimpleCalibrationMode": {
|
||||
"text": "SMPCAL",
|
||||
"text2": [
|
||||
"PID",
|
||||
"I"
|
||||
"Simple",
|
||||
"Calibration"
|
||||
],
|
||||
"desc": "PID I term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems"
|
||||
"desc": "Simple Calibration using Hot water"
|
||||
},
|
||||
"PidSettingsD": {
|
||||
"text": "PIDD",
|
||||
"AdvancedCalibrationMode": {
|
||||
"text": "ADVCAL",
|
||||
"text2": [
|
||||
"PID",
|
||||
"D"
|
||||
"Advanced",
|
||||
"Calibration"
|
||||
],
|
||||
"desc": "PID D term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems"
|
||||
"desc": "Advanced calibration using thermocouple on the tip"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -138,7 +138,7 @@
|
||||
"Turbo-",
|
||||
"temp"
|
||||
],
|
||||
"desc": "Temperatur i \\\"turbo\\\"-läge"
|
||||
"desc": "Temperatur i \"turbo\"-läge"
|
||||
},
|
||||
"AutoStart": {
|
||||
"text": "",
|
||||
@@ -196,29 +196,29 @@
|
||||
],
|
||||
"desc": "Hastighet som den här texten rullar i"
|
||||
},
|
||||
"PidSettingsP": {
|
||||
"text": "PIDP",
|
||||
"TipModel": {
|
||||
"text": "TIPMO",
|
||||
"text2": [
|
||||
"PID",
|
||||
"P"
|
||||
"Tip",
|
||||
"Model"
|
||||
],
|
||||
"desc": "PID P term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems"
|
||||
"desc": "Tip Model selection"
|
||||
},
|
||||
"PidSettingsI": {
|
||||
"text": "PIDI",
|
||||
"SimpleCalibrationMode": {
|
||||
"text": "SMPCAL",
|
||||
"text2": [
|
||||
"PID",
|
||||
"I"
|
||||
"Simple",
|
||||
"Calibration"
|
||||
],
|
||||
"desc": "PID I term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems"
|
||||
"desc": "Simple Calibration using Hot water"
|
||||
},
|
||||
"PidSettingsD": {
|
||||
"text": "PIDD",
|
||||
"AdvancedCalibrationMode": {
|
||||
"text": "ADVCAL",
|
||||
"text2": [
|
||||
"PID",
|
||||
"D"
|
||||
"Advanced",
|
||||
"Calibration"
|
||||
],
|
||||
"desc": "PID D term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems"
|
||||
"desc": "Advanced calibration using thermocouple on the tip"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -195,30 +195,30 @@
|
||||
],
|
||||
"desc": "Speed this text scrolls past at"
|
||||
},
|
||||
"PidSettingsP": {
|
||||
"text": "PIDP",
|
||||
"TipModel": {
|
||||
"text": "TIPMO",
|
||||
"text2": [
|
||||
"PID",
|
||||
"P"
|
||||
"Tip",
|
||||
"Model"
|
||||
],
|
||||
"desc": "PID P term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems"
|
||||
"desc": "Tip Model selection"
|
||||
},
|
||||
"PidSettingsI": {
|
||||
"text": "PIDI",
|
||||
"SimpleCalibrationMode": {
|
||||
"text": "SMPCAL",
|
||||
"text2": [
|
||||
"PID",
|
||||
"I"
|
||||
"Simple",
|
||||
"Calibration"
|
||||
],
|
||||
"desc": "PID I term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems"
|
||||
"desc": "Simple Calibration using Hot water"
|
||||
},
|
||||
"PidSettingsD": {
|
||||
"text": "PIDD",
|
||||
"AdvancedCalibrationMode": {
|
||||
"text": "ADVCAL",
|
||||
"text2": [
|
||||
"PID",
|
||||
"D"
|
||||
"Advanced",
|
||||
"Calibration"
|
||||
],
|
||||
"desc": "PID D term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems"
|
||||
"desc": "Advanced calibration using thermocouple on the tip"
|
||||
}
|
||||
},
|
||||
"languageLocalName": "Türk"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -196,29 +196,29 @@
|
||||
],
|
||||
"desc": "Швидкість прокрутки тексту"
|
||||
},
|
||||
"PidSettingsP": {
|
||||
"text": "PIDP",
|
||||
"TipModel": {
|
||||
"text": "TIPMO",
|
||||
"text2": [
|
||||
"PID",
|
||||
"P"
|
||||
"Tip",
|
||||
"Model"
|
||||
],
|
||||
"desc": "PID P term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems"
|
||||
"desc": "Tip Model selection"
|
||||
},
|
||||
"PidSettingsI": {
|
||||
"text": "PIDI",
|
||||
"SimpleCalibrationMode": {
|
||||
"text": "SMPCAL",
|
||||
"text2": [
|
||||
"PID",
|
||||
"I"
|
||||
"Simple",
|
||||
"Calibration"
|
||||
],
|
||||
"desc": "PID I term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems"
|
||||
"desc": "Simple Calibration using Hot water"
|
||||
},
|
||||
"PidSettingsD": {
|
||||
"text": "PIDD",
|
||||
"AdvancedCalibrationMode": {
|
||||
"text": "ADVCAL",
|
||||
"text2": [
|
||||
"PID",
|
||||
"D"
|
||||
"Advanced",
|
||||
"Calibration"
|
||||
],
|
||||
"desc": "PID D term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems"
|
||||
"desc": "Advanced calibration using thermocouple on the tip"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,9 @@
|
||||
var def =
|
||||
{
|
||||
"messages": [
|
||||
{
|
||||
"id": "SettingsCalibrationDone"
|
||||
},
|
||||
{
|
||||
"id": "SettingsCalibrationWarning"
|
||||
},
|
||||
@@ -206,22 +209,19 @@ var def =
|
||||
"maxLen2": 11
|
||||
},
|
||||
{
|
||||
"id": "PidSettingsP",
|
||||
"maxLen": 6,
|
||||
"maxLen2": 11,
|
||||
"feature": "PIDSETTINGS"
|
||||
"id": "TipModel",
|
||||
"maxLen": 8,
|
||||
"maxLen2": 16
|
||||
},
|
||||
{
|
||||
"id": "PidSettingsI",
|
||||
"maxLen": 6,
|
||||
"maxLen2": 11,
|
||||
"feature": "PIDSETTINGS"
|
||||
"id": "SimpleCalibrationMode",
|
||||
"maxLen": 8,
|
||||
"maxLen2": 16
|
||||
},
|
||||
{
|
||||
"id": "PidSettingsD",
|
||||
"maxLen": 6,
|
||||
"maxLen2": 11,
|
||||
"feature": "PIDSETTINGS"
|
||||
"id": "AdvancedCalibrationMode",
|
||||
"maxLen": 8,
|
||||
"maxLen2": 16
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -26,11 +26,11 @@ const char* SettingsDescriptions[] = {
|
||||
/* VoltageCalibration */ "VIN Calibration. Buttons adjust, long press to exit",
|
||||
/* AdvancedSoldering */ "Display detailed information while soldering",
|
||||
/* ScrollingSpeed */ "Speed this text scrolls past at",
|
||||
/* Tip Model */"Tip Model selection ",
|
||||
/* Simple Calibration Mode */"Simple Calibration using Hot water",
|
||||
/* Advanced Calibration Mode */"Advanced calibration using thermocouple on the tip"
|
||||
|
||||
/* TipModel */ "Tip Model selection",
|
||||
/* SimpleCalibrationMode */ "Simple Calibration using Hot water",
|
||||
/* AdvancedCalibrationMode */ "Advanced calibration using thermocouple on the tip",
|
||||
};
|
||||
|
||||
const char* SettingsCalibrationDone = "Calibration done!";
|
||||
const char* SettingsCalibrationWarning = "Please ensure the tip is at room temperature before continuing!";
|
||||
const char* SettingsResetWarning = "Are you sure you want to reset settings to default values?";
|
||||
@@ -75,9 +75,9 @@ const char* SettingsShortNames[][2] = {
|
||||
/* VoltageCalibration */ { "Calibrate", "input voltage?" },
|
||||
/* AdvancedSoldering */ { "Detailed", "solder screen" },
|
||||
/* ScrollingSpeed */ { "Scrolling", "Speed" },
|
||||
/* The Tip model being selected */{"Tip","Model"},
|
||||
/* Simple Calibration */{"Simple","Calibration"},
|
||||
/* Advanced Calibration */{"Advanced","Calibration"},
|
||||
/* TipModel */ { "Tip", "Model" },
|
||||
/* SimpleCalibrationMode */ { "Simple", "Calibration" },
|
||||
/* AdvancedCalibrationMode */ { "Advanced", "Calibration" },
|
||||
};
|
||||
|
||||
const char* SettingsMenuEntries[4] = {
|
||||
@@ -117,17 +117,12 @@ const char* SettingsDescriptions[] = {
|
||||
/* VoltageCalibration */ "Калибриране на входното напрежение (VIN). Задръжте бутонa за изход",
|
||||
/* AdvancedSoldering */ "Детайлна информация в работен режим при запояване",
|
||||
/* ScrollingSpeed */ "Скорост на движение на този текст",
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsP */ "PID P term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems",
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsI */ "PID I term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems",
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsD */ "PID D term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems",
|
||||
#endif
|
||||
/* TipModel */ "Tip Model selection",
|
||||
/* SimpleCalibrationMode */ "Simple Calibration using Hot water",
|
||||
/* AdvancedCalibrationMode */ "Advanced calibration using thermocouple on the tip",
|
||||
};
|
||||
|
||||
const char* SettingsCalibrationDone = "Calibration done!";
|
||||
const char* SettingsCalibrationWarning = "Уверете се, че човката на поялника е със стайна температура преди да продължите!";
|
||||
const char* SettingsResetWarning = "Сигурни ли сте, че искате да върнете фабричните настройки?";
|
||||
const char* UVLOWarningString = "Ниско V!";
|
||||
@@ -171,15 +166,9 @@ const char* SettingsShortNames[][2] = {
|
||||
/* VoltageCalibration */ { "Калибриране", "напрежение?" },
|
||||
/* AdvancedSoldering */ { "Детайлен", "работен екран" },
|
||||
/* ScrollingSpeed */ { "Скорост", "на текста" },
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsP */ { "PID", "P" },
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsI */ { "PID", "I" },
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsD */ { "PID", "D" },
|
||||
#endif
|
||||
/* TipModel */ { "Tip", "Model" },
|
||||
/* SimpleCalibrationMode */ { "Simple", "Calibration" },
|
||||
/* AdvancedCalibrationMode */ { "Advanced", "Calibration" },
|
||||
};
|
||||
|
||||
const char* SettingsMenuEntries[4] = {
|
||||
@@ -219,17 +208,12 @@ const char* SettingsDescriptions[] = {
|
||||
/* VoltageCalibration */ "Kalibrace vstupního napětí. Tlačítky uprav, podržením potvrď.",
|
||||
/* AdvancedSoldering */ "Zobrazit podrobnosti při pájení?",
|
||||
/* ScrollingSpeed */ "Rychlost skrolování popisků podobných tomuto <P=Pomalu,R=Rychle>",
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsP */ "PID P term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems",
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsI */ "PID I term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems",
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsD */ "PID D term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems",
|
||||
#endif
|
||||
/* TipModel */ "Tip Model selection",
|
||||
/* SimpleCalibrationMode */ "Simple Calibration using Hot water",
|
||||
/* AdvancedCalibrationMode */ "Advanced calibration using thermocouple on the tip",
|
||||
};
|
||||
|
||||
const char* SettingsCalibrationDone = "Calibration done!";
|
||||
const char* SettingsCalibrationWarning = "Ujistěte se, že hrot má pokojovou teplotu!";
|
||||
const char* SettingsResetWarning = "Opravdu chcete resetovat zařízení do továrního nastavení?";
|
||||
const char* UVLOWarningString = "DC LOW";
|
||||
@@ -273,15 +257,9 @@ const char* SettingsShortNames[][2] = {
|
||||
/* VoltageCalibration */ { "Kalibrovat", "vstupní napětí?" },
|
||||
/* AdvancedSoldering */ { "Podrobnosti", "při pájení" },
|
||||
/* ScrollingSpeed */ { "Rychlost", "popisků" },
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsP */ { "PID", "P" },
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsI */ { "PID", "I" },
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsD */ { "PID", "D" },
|
||||
#endif
|
||||
/* TipModel */ { "Tip", "Model" },
|
||||
/* SimpleCalibrationMode */ { "Simple", "Calibration" },
|
||||
/* AdvancedCalibrationMode */ { "Advanced", "Calibration" },
|
||||
};
|
||||
|
||||
const char* SettingsMenuEntries[4] = {
|
||||
@@ -321,17 +299,12 @@ const char* SettingsDescriptions[] = {
|
||||
/* VoltageCalibration */ "Kalibrierung der Eingangsspannung. Kurzer Tastendruck zum Einstellen, langer Tastendruck zum Verlassen.",
|
||||
/* AdvancedSoldering */ "Detaillierte Anzeige im Lötmodus <J=An, N=Aus>",
|
||||
/* ScrollingSpeed */ "Scrollgeschwindigkeit der Texte",
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsP */ "PID P term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems",
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsI */ "PID I term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems",
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsD */ "PID D term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems",
|
||||
#endif
|
||||
/* TipModel */ "Tip Model selection",
|
||||
/* SimpleCalibrationMode */ "Simple Calibration using Hot water",
|
||||
/* AdvancedCalibrationMode */ "Advanced calibration using thermocouple on the tip",
|
||||
};
|
||||
|
||||
const char* SettingsCalibrationDone = "Calibration done!";
|
||||
const char* SettingsCalibrationWarning = "Vor dem Fortfahren muss die Lötspitze vollständig abgekühlt sein!";
|
||||
const char* SettingsResetWarning = "Sind Sie sicher, dass Sie alle Werte Zurücksetzen wollen?";
|
||||
const char* UVLOWarningString = "V niedr.";
|
||||
@@ -375,15 +348,9 @@ const char* SettingsShortNames[][2] = {
|
||||
/* VoltageCalibration */ { "Eingangsspannung", "kalibrieren?" },
|
||||
/* AdvancedSoldering */ { "Detaillierte", "Lötansicht" },
|
||||
/* ScrollingSpeed */ { "Scroll-", "geschw." },
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsP */ { "PID", "P" },
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsI */ { "PID", "I" },
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsD */ { "PID", "D" },
|
||||
#endif
|
||||
/* TipModel */ { "Tip", "Model" },
|
||||
/* SimpleCalibrationMode */ { "Simple", "Calibration" },
|
||||
/* AdvancedCalibrationMode */ { "Advanced", "Calibration" },
|
||||
};
|
||||
|
||||
const char* SettingsMenuEntries[4] = {
|
||||
@@ -423,17 +390,12 @@ const char* SettingsDescriptions[] = {
|
||||
/* VoltageCalibration */ "VIN kalibrering. Knapperne justere, Lang tryk for at gå ud",
|
||||
/* AdvancedSoldering */ "Vis detialieret information mens der loddes",
|
||||
/* ScrollingSpeed */ "Speed this text scrolls past at",
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsP */ "PID P term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems",
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsI */ "PID I term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems",
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsD */ "PID D term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems",
|
||||
#endif
|
||||
/* TipModel */ "Tip Model selection",
|
||||
/* SimpleCalibrationMode */ "Simple Calibration using Hot water",
|
||||
/* AdvancedCalibrationMode */ "Advanced calibration using thermocouple on the tip",
|
||||
};
|
||||
|
||||
const char* SettingsCalibrationDone = "Calibration done!";
|
||||
const char* SettingsCalibrationWarning = "Sørg for at loddespidsen er ved stuetemperatur, inden du fortsætter!";
|
||||
const char* SettingsResetWarning = "Are you sure to reset settings to default values?";
|
||||
const char* UVLOWarningString = "Lav Volt";
|
||||
@@ -477,15 +439,9 @@ const char* SettingsShortNames[][2] = {
|
||||
/* VoltageCalibration */ { "CAL VIN?" },
|
||||
/* AdvancedSoldering */ { "ADVSLD" },
|
||||
/* ScrollingSpeed */ { "DESCSP" },
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsP */ { "PIDP" },
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsI */ { "PIDI" },
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsD */ { "PIDD" },
|
||||
#endif
|
||||
/* TipModel */ { "TIPMO" },
|
||||
/* SimpleCalibrationMode */ { "SMPCAL" },
|
||||
/* AdvancedCalibrationMode */ { "ADVCAL" },
|
||||
};
|
||||
|
||||
const char* SettingsMenuEntries[4] = {
|
||||
@@ -525,17 +481,12 @@ const char* SettingsDescriptions[] = {
|
||||
/* VoltageCalibration */ "Calibración VIN (Voltaje de entrada). Ajuste con ambos botones, pulsación larga para salir.",
|
||||
/* AdvancedSoldering */ "Mostrar información detallada mientras suelda.",
|
||||
/* ScrollingSpeed */ "Velocidad de desplazamiento del texto.",
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsP */ "PID P term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems",
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsI */ "PID I term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems",
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsD */ "PID D term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems",
|
||||
#endif
|
||||
/* TipModel */ "Tip Model selection",
|
||||
/* SimpleCalibrationMode */ "Simple Calibration using Hot water",
|
||||
/* AdvancedCalibrationMode */ "Advanced calibration using thermocouple on the tip",
|
||||
};
|
||||
|
||||
const char* SettingsCalibrationDone = "Calibration done!";
|
||||
const char* SettingsCalibrationWarning = "¡Asegúrese que la punta esté a temperatura ambiente antes de proceder!";
|
||||
const char* SettingsResetWarning = "¿Está seguro de volver a estado de fábrica?";
|
||||
const char* UVLOWarningString = "DC BAJO";
|
||||
@@ -573,21 +524,15 @@ const char* SettingsShortNames[][2] = {
|
||||
/* BoostEnabled */ { "Boost botón", "activado" },
|
||||
/* BoostTemperature */ { "Temp en", "Boost" },
|
||||
/* AutoStart */ { "Soldadura", "al enchufar" },
|
||||
/* CooldownBlink */ { "Temp. en el", "enfriamiento" },
|
||||
/* CooldownBlink */ { "Parpadea m.", "enfriamiento" },
|
||||
/* TemperatureCalibration */ { "Calibrar temp", "de la punta" },
|
||||
/* SettingsReset */ { "Estado de", "fábrica" },
|
||||
/* VoltageCalibration */ { "Calibrar", "V entrada" },
|
||||
/* AdvancedSoldering */ { "Inf detallada", "de soldadura" },
|
||||
/* AdvancedSoldering */ { "Inf detallada", "del soldadura" },
|
||||
/* ScrollingSpeed */ { "Velocidad", "del texto" },
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsP */ { "PID", "P" },
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsI */ { "PID", "I" },
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsD */ { "PID", "D" },
|
||||
#endif
|
||||
/* TipModel */ { "Tip", "Model" },
|
||||
/* SimpleCalibrationMode */ { "Simple", "Calibration" },
|
||||
/* AdvancedCalibrationMode */ { "Advanced", "Calibration" },
|
||||
};
|
||||
|
||||
const char* SettingsMenuEntries[4] = {
|
||||
@@ -627,17 +572,12 @@ const char* SettingsDescriptions[] = {
|
||||
/* VoltageCalibration */ "Tulojännitten kalibrointi (VIN). Painikkeilla säädetään ja pitkään painamalla poistutaan.",
|
||||
/* AdvancedSoldering */ "Näyttää yksityiskohtaisemmat tiedot juotostilassa.",
|
||||
/* ScrollingSpeed */ "Näiden selitetekstien vieritysnopeus.",
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsP */ "PID P term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems",
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsI */ "PID I term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems",
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsD */ "PID D term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems",
|
||||
#endif
|
||||
/* TipModel */ "Tip Model selection",
|
||||
/* SimpleCalibrationMode */ "Simple Calibration using Hot water",
|
||||
/* AdvancedCalibrationMode */ "Advanced calibration using thermocouple on the tip",
|
||||
};
|
||||
|
||||
const char* SettingsCalibrationDone = "Calibration done!";
|
||||
const char* SettingsCalibrationWarning = "Varmista että kärki on huoneenlämpöinen ennen jatkamista!";
|
||||
const char* SettingsResetWarning = "Haluatko varmasti palauttaa oletusarvot?";
|
||||
const char* UVLOWarningString = "DC LOW";
|
||||
@@ -681,15 +621,9 @@ const char* SettingsShortNames[][2] = {
|
||||
/* VoltageCalibration */ { "Kalibroi", "tulojännite?" },
|
||||
/* AdvancedSoldering */ { "Tarkempi", "juotosnäyttö" },
|
||||
/* ScrollingSpeed */ { "Tietojen", "näyttönopeus" },
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsP */ { "PID", "P" },
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsI */ { "PID", "I" },
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsD */ { "PID", "D" },
|
||||
#endif
|
||||
/* TipModel */ { "Tip", "Model" },
|
||||
/* SimpleCalibrationMode */ { "Simple", "Calibration" },
|
||||
/* AdvancedCalibrationMode */ { "Advanced", "Calibration" },
|
||||
};
|
||||
|
||||
const char* SettingsMenuEntries[4] = {
|
||||
@@ -729,17 +663,12 @@ const char* SettingsDescriptions[] = {
|
||||
/* VoltageCalibration */ "Etalonner tension d'entrée. Boutons pour ajuster, appui long pour quitter",
|
||||
/* AdvancedSoldering */ "Afficher des informations détaillées pendant la soudure",
|
||||
/* ScrollingSpeed */ "Vitesse de défilement de ce texte en <R=Rapide L=Lent>",
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsP */ "PID P term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems",
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsI */ "PID I term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems",
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsD */ "PID D term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems",
|
||||
#endif
|
||||
/* TipModel */ "Tip Model selection",
|
||||
/* SimpleCalibrationMode */ "Simple Calibration using Hot water",
|
||||
/* AdvancedCalibrationMode */ "Advanced calibration using thermocouple on the tip",
|
||||
};
|
||||
|
||||
const char* SettingsCalibrationDone = "Calibration done!";
|
||||
const char* SettingsCalibrationWarning = "Assurez-vous que la panne soit à température ambiante avant de continuer!";
|
||||
const char* SettingsResetWarning = "Voulez-vous vraiment réinitialiser les paramètres aux valeurs d'usine?";
|
||||
const char* UVLOWarningString = "DC FAIBLE";
|
||||
@@ -783,15 +712,9 @@ const char* SettingsShortNames[][2] = {
|
||||
/* VoltageCalibration */ { "Etalonner", "tension d'entrée" },
|
||||
/* AdvancedSoldering */ { "Ecran soudure", "détaillé" },
|
||||
/* ScrollingSpeed */ { "Vitesse de", "défilement" },
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsP */ { "PID", "P" },
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsI */ { "PID", "I" },
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsD */ { "PID", "D" },
|
||||
#endif
|
||||
/* TipModel */ { "Tip", "Model" },
|
||||
/* SimpleCalibrationMode */ { "Simple", "Calibration" },
|
||||
/* AdvancedCalibrationMode */ { "Advanced", "Calibration" },
|
||||
};
|
||||
|
||||
const char* SettingsMenuEntries[4] = {
|
||||
@@ -831,17 +754,12 @@ const char* SettingsDescriptions[] = {
|
||||
/* VoltageCalibration */ "Kalibracija ulaznog napona. Podešavanje gumbima, dugački pritisak za kraj.",
|
||||
/* AdvancedSoldering */ "Prikazivanje detaljnih informacija tijekom lemljenja.",
|
||||
/* ScrollingSpeed */ "Brzina kretanja dugačkih poruka. <B=brzo, S=sporo>",
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsP */ "PID P term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems",
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsI */ "PID I term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems",
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsD */ "PID D term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems",
|
||||
#endif
|
||||
/* TipModel */ "Tip Model selection",
|
||||
/* SimpleCalibrationMode */ "Simple Calibration using Hot water",
|
||||
/* AdvancedCalibrationMode */ "Advanced calibration using thermocouple on the tip",
|
||||
};
|
||||
|
||||
const char* SettingsCalibrationDone = "Calibration done!";
|
||||
const char* SettingsCalibrationWarning = "Provjerite da je vršak ohlađen na sobnu temperaturu prije nego što nastavite!";
|
||||
const char* SettingsResetWarning = "Jeste li sigurni da želite sve postavke vratiti na tvorničke vrijednosti?";
|
||||
const char* UVLOWarningString = "BATERIJA";
|
||||
@@ -885,15 +803,9 @@ const char* SettingsShortNames[][2] = {
|
||||
/* VoltageCalibration */ { "Kalibracija", "napona napajanja" },
|
||||
/* AdvancedSoldering */ { "Detalji", "pri lemljenju" },
|
||||
/* ScrollingSpeed */ { "Brzina", "poruka" },
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsP */ { "PID", "P" },
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsI */ { "PID", "I" },
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsD */ { "PID", "D" },
|
||||
#endif
|
||||
/* TipModel */ { "Tip", "Model" },
|
||||
/* SimpleCalibrationMode */ { "Simple", "Calibration" },
|
||||
/* AdvancedCalibrationMode */ { "Advanced", "Calibration" },
|
||||
};
|
||||
|
||||
const char* SettingsMenuEntries[4] = {
|
||||
@@ -933,17 +845,12 @@ const char* SettingsDescriptions[] = {
|
||||
/* VoltageCalibration */ "A bemeneti feszültség kalibrálása. Röviden megnyomva állítsa be, hosszan nyomja meg a kilépéshez.",
|
||||
/* AdvancedSoldering */ "Részletes információk megjelenítése forrasztás közben",
|
||||
/* ScrollingSpeed */ "Szöveg görgetésének gyorsítása",
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsP */ "PID P term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems",
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsI */ "PID I term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems",
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsD */ "PID D term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems",
|
||||
#endif
|
||||
/* TipModel */ "Tip Model selection",
|
||||
/* SimpleCalibrationMode */ "Simple Calibration using Hot water",
|
||||
/* AdvancedCalibrationMode */ "Advanced calibration using thermocouple on the tip",
|
||||
};
|
||||
|
||||
const char* SettingsCalibrationDone = "Calibration done!";
|
||||
const char* SettingsCalibrationWarning = "Folytatás előtt győződj meg róla, hogy a hegy szobahőmérsékletű!";
|
||||
const char* SettingsResetWarning = "Biztosan visszaállítja a beállításokat az alapértelmezett értékekre?";
|
||||
const char* UVLOWarningString = "DC LOW";
|
||||
@@ -987,15 +894,9 @@ const char* SettingsShortNames[][2] = {
|
||||
/* VoltageCalibration */ { "CAL VIN?" },
|
||||
/* AdvancedSoldering */ { "ADVSLD" },
|
||||
/* ScrollingSpeed */ { "DESCSP" },
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsP */ { "PIDP" },
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsI */ { "PIDI" },
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsD */ { "PIDD" },
|
||||
#endif
|
||||
/* TipModel */ { "TIPMO" },
|
||||
/* SimpleCalibrationMode */ { "SMPCAL" },
|
||||
/* AdvancedCalibrationMode */ { "ADVCAL" },
|
||||
};
|
||||
|
||||
const char* SettingsMenuEntries[4] = {
|
||||
@@ -1018,7 +919,7 @@ const char* SettingsMenuEntriesDescriptions[4] = {
|
||||
// ---- Italiano ----
|
||||
|
||||
const char* SettingsDescriptions[] = {
|
||||
/* PowerSource */ "Scegli la sorgente di alimentazione; se a batteria, limita lo scaricamento al valore di soglia <DC: 10V; S: 3.3V per cella>",
|
||||
/* PowerSource */ "Scegli la sorgente di alimentazione; se a batteria, limita lo scaricamento al valore di soglia <DC: 10V; S: 3,3V per cella>",
|
||||
/* SleepTemperature */ "Imposta la temperatura da mantenere in modalità Standby <°C/°F>",
|
||||
/* SleepTimeout */ "Imposta il timer per entrare in modalità Standby <minuti/secondi>",
|
||||
/* ShutdownTimeout */ "Imposta il timer per lo spegnimento <minuti>",
|
||||
@@ -1029,23 +930,18 @@ const char* SettingsDescriptions[] = {
|
||||
/* BoostEnabled */ "Il tasto superiore attiva la funzione «Turbo» durante la modalità Saldatura",
|
||||
/* BoostTemperature */ "Imposta la temperatura della funzione «Turbo»",
|
||||
/* AutoStart */ "Attiva automaticamente il saldatore quando viene alimentato <A: saldatura; S: standby; D: disattiva>",
|
||||
/* CooldownBlink */ "Mostra la temperatura durante il raffreddamento se la punta è ancora calda",
|
||||
/* CooldownBlink */ "Mostra, lampeggiante, la temperatura durante il raffreddamento se la punta è ancora calda",
|
||||
/* TemperatureCalibration */ "Calibra le rilevazioni di temperatura",
|
||||
/* SettingsReset */ "Ripristina tutte le impostazioni",
|
||||
/* VoltageCalibration */ "Calibra la tensione in ingresso; regola con entrambi i tasti, tieni premuto il tasto superiore per uscire",
|
||||
/* AdvancedSoldering */ "Mostra informazioni dettagliate durante la modalità Saldatura",
|
||||
/* ScrollingSpeed */ "Imposta la velocità di scorrimento del testo <L: lento; V: veloce>",
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsP */ "PID P term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems",
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsI */ "PID I term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems",
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsD */ "PID D term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems",
|
||||
#endif
|
||||
/* TipModel */ "Tip Model selection",
|
||||
/* SimpleCalibrationMode */ "Simple Calibration using Hot water",
|
||||
/* AdvancedCalibrationMode */ "Advanced calibration using thermocouple on the tip",
|
||||
};
|
||||
|
||||
const char* SettingsCalibrationDone = "Calibration done!";
|
||||
const char* SettingsCalibrationWarning = "Assicurati che la punta si trovi a temperatura ambiente prima di continuare!";
|
||||
const char* SettingsResetWarning = "Ripristinare le impostazioni iniziali?";
|
||||
const char* UVLOWarningString = "DC BASSA";
|
||||
@@ -1059,7 +955,7 @@ const char* WarningSimpleString = "HOT!";
|
||||
const char* WarningAdvancedString = "PUNTA CALDA!";
|
||||
const char* SleepingTipAdvancedString = "Punta:";
|
||||
const char* IdleTipString = "Punta:";
|
||||
const char* IdleSetString = " Im:";
|
||||
const char* IdleSetString = "/";
|
||||
const char* TipDisconnectedString = "PUNTA ASSENTE";
|
||||
const char* SolderingAdvancedPowerPrompt = "Potenza:";
|
||||
const char* OffString = "OFF";
|
||||
@@ -1080,8 +976,8 @@ const char* SettingsShortNames[][2] = {
|
||||
/* TemperatureUnit */ { "Unità di", "temperatura" },
|
||||
/* AdvancedIdle */ { "Mostra", "dettagli" },
|
||||
/* DisplayRotation */ { "Orientamento", "display" },
|
||||
/* BoostEnabled */ { "Funzione", "\"boost\"" },
|
||||
/* BoostTemperature */ { "Temp", "\"boost\"" },
|
||||
/* BoostEnabled */ { "Funzione", "«Turbo»" },
|
||||
/* BoostTemperature */ { "Temp", "«Turbo»" },
|
||||
/* AutoStart */ { "Avvio", "automatico" },
|
||||
/* CooldownBlink */ { "Avviso", "punta calda" },
|
||||
/* TemperatureCalibration */ { "Calibrazione", "temperatura" },
|
||||
@@ -1089,15 +985,9 @@ const char* SettingsShortNames[][2] = {
|
||||
/* VoltageCalibration */ { "Calibrazione", "tensione" },
|
||||
/* AdvancedSoldering */ { "Dettagli", "saldatura" },
|
||||
/* ScrollingSpeed */ { "Velocità", "testo" },
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsP */ { "PID", "P" },
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsI */ { "PID", "I" },
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsD */ { "PID", "D" },
|
||||
#endif
|
||||
/* TipModel */ { "Tip", "Model" },
|
||||
/* SimpleCalibrationMode */ { "Simple", "Calibration" },
|
||||
/* AdvancedCalibrationMode */ { "Advanced", "Calibration" },
|
||||
};
|
||||
|
||||
const char* SettingsMenuEntries[4] = {
|
||||
@@ -1108,10 +998,10 @@ const char* SettingsMenuEntries[4] = {
|
||||
};
|
||||
|
||||
const char* SettingsMenuEntriesDescriptions[4] = {
|
||||
/* SolderingMenu */ "Menù impostazioni saldatura",
|
||||
/* PowerSavingMenu */ "Menù risparmio energetico",
|
||||
/* UIMenu */ "Menù interfaccia utente",
|
||||
/* AdvancedMenu */ "Menù impostazioni avanzate",
|
||||
/* SolderingMenu */ "Menù d'impostazioni della modalità Saldatura",
|
||||
/* PowerSavingMenu */ "Menù d'impostazioni per il risparmio energetico",
|
||||
/* UIMenu */ "Menù d'impostazioni dell'interfaccia utente",
|
||||
/* AdvancedMenu */ "Menù d'impostazioni avanzate",
|
||||
};
|
||||
|
||||
#endif
|
||||
@@ -1137,17 +1027,12 @@ const char* SettingsDescriptions[] = {
|
||||
/* VoltageCalibration */ "Įvesties įtampos kalibravimas. Trumpai paspauskite, norėdami nustatyti, ilgai paspauskite, kad išeitumėte",
|
||||
/* AdvancedSoldering */ "Ar rodyti išsamią informaciją lituojant",
|
||||
/* ScrollingSpeed */ "Greitis, kuriuo šis tekstas slenka",
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsP */ "PID P term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems",
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsI */ "PID I term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems",
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsD */ "PID D term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems",
|
||||
#endif
|
||||
/* TipModel */ "Antgalio modelio pasirinkimas",
|
||||
/* SimpleCalibrationMode */ "Paprasta kalibracija naudojant karštą vandienį",
|
||||
/* AdvancedCalibrationMode */ "Išplėstinė kalibracija naudojant termoelementą",
|
||||
};
|
||||
|
||||
const char* SettingsCalibrationDone = "Kalibracija atlikta!";
|
||||
const char* SettingsCalibrationWarning = "Prieš tęsdami įsitikinkite, kad antgalis yra kambario temperatūros!";
|
||||
const char* SettingsResetWarning = "Ar norite atstatyti nustatymus į numatytas reikšmes?";
|
||||
const char* UVLOWarningString = "MAŽ VOLT";
|
||||
@@ -1191,15 +1076,9 @@ const char* SettingsShortNames[][2] = {
|
||||
/* VoltageCalibration */ { "Kalibruoti", "įvesties įtampą?" },
|
||||
/* AdvancedSoldering */ { "Detalus lita-", "vimo ekranas" },
|
||||
/* ScrollingSpeed */ { "Greitas apr", "ašym. slink" },
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsP */ { "PID", "P" },
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsI */ { "PID", "I" },
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsD */ { "PID", "D" },
|
||||
#endif
|
||||
/* TipModel */ { "Antgalio", "modelis" },
|
||||
/* SimpleCalibrationMode */ { "Paprasta", "kalibracija" },
|
||||
/* AdvancedCalibrationMode */ { "Išplėstinė", "kalibracija" },
|
||||
};
|
||||
|
||||
const char* SettingsMenuEntries[4] = {
|
||||
@@ -1239,17 +1118,12 @@ const char* SettingsDescriptions[] = {
|
||||
/* VoltageCalibration */ "VIN Calibreren. Knoppen lang ingedrukt houden om te bevestigen.",
|
||||
/* AdvancedSoldering */ "Gedetailleerde informatie weergeven in een kleiner lettertype op het soldeerscherm.",
|
||||
/* ScrollingSpeed */ "Snelheid waarmee de tekst scrolt.",
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsP */ "PID P term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems",
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsI */ "PID I term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems",
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsD */ "PID D term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems",
|
||||
#endif
|
||||
/* TipModel */ "Tip Model selection",
|
||||
/* SimpleCalibrationMode */ "Simple Calibration using Hot water",
|
||||
/* AdvancedCalibrationMode */ "Advanced calibration using thermocouple on the tip",
|
||||
};
|
||||
|
||||
const char* SettingsCalibrationDone = "Calibration done!";
|
||||
const char* SettingsCalibrationWarning = "Zorg ervoor dat de soldeerpunt op kamertemperatuur is voor je verdergaat!";
|
||||
const char* SettingsResetWarning = "Ben je zeker dat je alle instellingen naar de standaardwaardes wilt terugzetten?";
|
||||
const char* UVLOWarningString = "DC LAAG";
|
||||
@@ -1293,15 +1167,9 @@ const char* SettingsShortNames[][2] = {
|
||||
/* VoltageCalibration */ { "Calibreer", "input-voltage?" },
|
||||
/* AdvancedSoldering */ { "Gedetailleerd", "soldeerscherm" },
|
||||
/* ScrollingSpeed */ { "Scroll", "snelheid" },
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsP */ { "PID", "P" },
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsI */ { "PID", "I" },
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsD */ { "PID", "D" },
|
||||
#endif
|
||||
/* TipModel */ { "Tip", "Model" },
|
||||
/* SimpleCalibrationMode */ { "Simple", "Calibration" },
|
||||
/* AdvancedCalibrationMode */ { "Advanced", "Calibration" },
|
||||
};
|
||||
|
||||
const char* SettingsMenuEntries[4] = {
|
||||
@@ -1341,17 +1209,12 @@ const char* SettingsDescriptions[] = {
|
||||
/* VoltageCalibration */ "Kalibrer spenning. Knappene justerer. Langt trykk for å gå ut",
|
||||
/* AdvancedSoldering */ "Vis detaljert informasjon ved lodding",
|
||||
/* ScrollingSpeed */ "Hastigheten på rulletekst",
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsP */ "PID P term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems",
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsI */ "PID I term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems",
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsD */ "PID D term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems",
|
||||
#endif
|
||||
/* TipModel */ "Tip Model selection",
|
||||
/* SimpleCalibrationMode */ "Simple Calibration using Hot water",
|
||||
/* AdvancedCalibrationMode */ "Advanced calibration using thermocouple on the tip",
|
||||
};
|
||||
|
||||
const char* SettingsCalibrationDone = "Calibration done!";
|
||||
const char* SettingsCalibrationWarning = "Sørg for at loddespissen har romtemperatur før du fortsetter!";
|
||||
const char* SettingsResetWarning = "Er du sikker på at du vil tilbakestille til standardinnstillinger?";
|
||||
const char* UVLOWarningString = "Lavspenn";
|
||||
@@ -1395,15 +1258,9 @@ const char* SettingsShortNames[][2] = {
|
||||
/* VoltageCalibration */ { "KalSpIn?" },
|
||||
/* AdvancedSoldering */ { "AvLdSk" },
|
||||
/* ScrollingSpeed */ { "RullHa" },
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsP */ { "PIDP" },
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsI */ { "PIDI" },
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsD */ { "PIDD" },
|
||||
#endif
|
||||
/* TipModel */ { "TIPMO" },
|
||||
/* SimpleCalibrationMode */ { "SMPCAL" },
|
||||
/* AdvancedCalibrationMode */ { "ADVCAL" },
|
||||
};
|
||||
|
||||
const char* SettingsMenuEntries[4] = {
|
||||
@@ -1443,17 +1300,12 @@ const char* SettingsDescriptions[] = {
|
||||
/* VoltageCalibration */ "Kalibracja napięcia wejściowego. Krótkie naciśnięcie, aby ustawić, długie naciśnięcie, aby wyjść.",
|
||||
/* AdvancedSoldering */ "Wyświetl szczegółowe informacje podczas lutowania <T = wł., N = wył.>",
|
||||
/* ScrollingSpeed */ "Speed this text scrolls past at",
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsP */ "PID P term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems",
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsI */ "PID I term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems",
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsD */ "PID D term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems",
|
||||
#endif
|
||||
/* TipModel */ "Tip Model selection",
|
||||
/* SimpleCalibrationMode */ "Simple Calibration using Hot water",
|
||||
/* AdvancedCalibrationMode */ "Advanced calibration using thermocouple on the tip",
|
||||
};
|
||||
|
||||
const char* SettingsCalibrationDone = "Calibration done!";
|
||||
const char* SettingsCalibrationWarning = "Przed kontynuowaniem upewnij się, że końcówka osiągnela temperature pokojowa!";
|
||||
const char* SettingsResetWarning = "Are you sure to reset settings to default values?";
|
||||
const char* UVLOWarningString = "DC LOW";
|
||||
@@ -1497,15 +1349,9 @@ const char* SettingsShortNames[][2] = {
|
||||
/* VoltageCalibration */ { "CAL VIN?" },
|
||||
/* AdvancedSoldering */ { "ADVSLD" },
|
||||
/* ScrollingSpeed */ { "DESCSP" },
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsP */ { "PIDP" },
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsI */ { "PIDI" },
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsD */ { "PIDD" },
|
||||
#endif
|
||||
/* TipModel */ { "TIPMO" },
|
||||
/* SimpleCalibrationMode */ { "SMPCAL" },
|
||||
/* AdvancedCalibrationMode */ { "ADVCAL" },
|
||||
};
|
||||
|
||||
const char* SettingsMenuEntries[4] = {
|
||||
@@ -1545,17 +1391,12 @@ const char* SettingsDescriptions[] = {
|
||||
/* VoltageCalibration */ "Calibra a tensão de alimentação. Use os botões para ajustar o valor. Mantenha presionado para sair",
|
||||
/* AdvancedSoldering */ "Exibe informações avançadas durante o uso",
|
||||
/* ScrollingSpeed */ "Velocidade que esse texto é exibido",
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsP */ "PID P term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems",
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsI */ "PID I term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems",
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsD */ "PID D term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems",
|
||||
#endif
|
||||
/* TipModel */ "Tip Model selection",
|
||||
/* SimpleCalibrationMode */ "Simple Calibration using Hot water",
|
||||
/* AdvancedCalibrationMode */ "Advanced calibration using thermocouple on the tip",
|
||||
};
|
||||
|
||||
const char* SettingsCalibrationDone = "Calibration done!";
|
||||
const char* SettingsCalibrationWarning = "A ponta deve estar em temperatura ambiente antes de continuar!";
|
||||
const char* SettingsResetWarning = "Resetar para ajustes de fábrica?";
|
||||
const char* UVLOWarningString = "DC BAIXO";
|
||||
@@ -1599,15 +1440,9 @@ const char* SettingsShortNames[][2] = {
|
||||
/* VoltageCalibration */ { "Calibrar", "tensão" },
|
||||
/* AdvancedSoldering */ { "Tela trabalho", "avançada" },
|
||||
/* ScrollingSpeed */ { "Velocidade", "texto ajuda" },
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsP */ { "PID", "P" },
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsI */ { "PID", "I" },
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsD */ { "PID", "D" },
|
||||
#endif
|
||||
/* TipModel */ { "Tip", "Model" },
|
||||
/* SimpleCalibrationMode */ { "Simple", "Calibration" },
|
||||
/* AdvancedCalibrationMode */ { "Advanced", "Calibration" },
|
||||
};
|
||||
|
||||
const char* SettingsMenuEntries[4] = {
|
||||
@@ -1647,17 +1482,12 @@ const char* SettingsDescriptions[] = {
|
||||
/* VoltageCalibration */ "Калибровка напряжения входа. Настройка кнопками, нажать и удержать чтобы завершить.",
|
||||
/* AdvancedSoldering */ "Показывать детальную информацию при пайке.",
|
||||
/* ScrollingSpeed */ "Скорость прокрутки текста",
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsP */ "PID P term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems",
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsI */ "PID I term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems",
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsD */ "PID D term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems",
|
||||
#endif
|
||||
/* TipModel */ "Tip Model selection",
|
||||
/* SimpleCalibrationMode */ "Simple Calibration using Hot water",
|
||||
/* AdvancedCalibrationMode */ "Advanced calibration using thermocouple on the tip",
|
||||
};
|
||||
|
||||
const char* SettingsCalibrationDone = "Calibration done!";
|
||||
const char* SettingsCalibrationWarning = "Убедитесь, что жало остыло до комнатной температуры, прежде чем продолжать!";
|
||||
const char* SettingsResetWarning = "Вы действительно хотите сбросить настройки до значений по умолчанию?";
|
||||
const char* UVLOWarningString = "АККУМ--";
|
||||
@@ -1701,15 +1531,9 @@ const char* SettingsShortNames[][2] = {
|
||||
/* VoltageCalibration */ { "Калибровка", "напряжения" },
|
||||
/* AdvancedSoldering */ { "Подробный ре-", "жим пайки" },
|
||||
/* ScrollingSpeed */ { "Скорость", "текста" },
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsP */ { "PID", "P" },
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsI */ { "PID", "I" },
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsD */ { "PID", "D" },
|
||||
#endif
|
||||
/* TipModel */ { "Tip", "Model" },
|
||||
/* SimpleCalibrationMode */ { "Simple", "Calibration" },
|
||||
/* AdvancedCalibrationMode */ { "Advanced", "Calibration" },
|
||||
};
|
||||
|
||||
const char* SettingsMenuEntries[4] = {
|
||||
@@ -1749,17 +1573,12 @@ const char* SettingsDescriptions[] = {
|
||||
/* VoltageCalibration */ "Kalibracia VIN. Kratke stlacenie meni nastavenie, dlhe stlacenie pre navrat",
|
||||
/* AdvancedSoldering */ "Zobrazenie detailov pocas spajkovania <T=Zap, F=Vyp>",
|
||||
/* ScrollingSpeed */ "Speed this text scrolls past at",
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsP */ "PID P term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems",
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsI */ "PID I term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems",
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsD */ "PID D term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems",
|
||||
#endif
|
||||
/* TipModel */ "Tip Model selection",
|
||||
/* SimpleCalibrationMode */ "Simple Calibration using Hot water",
|
||||
/* AdvancedCalibrationMode */ "Advanced calibration using thermocouple on the tip",
|
||||
};
|
||||
|
||||
const char* SettingsCalibrationDone = "Calibration done!";
|
||||
const char* SettingsCalibrationWarning = "Najprv sa prosim uistite, ze hrot ma izbovu teplotu!";
|
||||
const char* SettingsResetWarning = "Are you sure to reset settings to default values?";
|
||||
const char* UVLOWarningString = "DC LOW";
|
||||
@@ -1803,15 +1622,9 @@ const char* SettingsShortNames[][2] = {
|
||||
/* VoltageCalibration */ { "CAL VIN?" },
|
||||
/* AdvancedSoldering */ { "ADVSLD" },
|
||||
/* ScrollingSpeed */ { "DESCSP" },
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsP */ { "PIDP" },
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsI */ { "PIDI" },
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsD */ { "PIDD" },
|
||||
#endif
|
||||
/* TipModel */ { "TIPMO" },
|
||||
/* SimpleCalibrationMode */ { "SMPCAL" },
|
||||
/* AdvancedCalibrationMode */ { "ADVCAL" },
|
||||
};
|
||||
|
||||
const char* SettingsMenuEntries[4] = {
|
||||
@@ -1851,17 +1664,12 @@ const char* SettingsDescriptions[] = {
|
||||
/* VoltageCalibration */ "Kalibracija ulaznog napona. Podešavanje tastera, dugački pritisak za kraj.",
|
||||
/* AdvancedSoldering */ "Prikazivanje detaljnih informacija tokom lemljenja.",
|
||||
/* ScrollingSpeed */ "Brzina kretanja dugačkih poruka <B=brzo, S=sporo>",
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsP */ "PID P term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems",
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsI */ "PID I term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems",
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsD */ "PID D term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems",
|
||||
#endif
|
||||
/* TipModel */ "Tip Model selection",
|
||||
/* SimpleCalibrationMode */ "Simple Calibration using Hot water",
|
||||
/* AdvancedCalibrationMode */ "Advanced calibration using thermocouple on the tip",
|
||||
};
|
||||
|
||||
const char* SettingsCalibrationDone = "Calibration done!";
|
||||
const char* SettingsCalibrationWarning = "Proverite da li je vrh ohlađen na sobnu temperaturu pre nego što nastavite!";
|
||||
const char* SettingsResetWarning = "Jeste li sigurni da želite da vratite sva podešavanja na fabričke vrednosti?";
|
||||
const char* UVLOWarningString = "BATERIJA";
|
||||
@@ -1905,15 +1713,9 @@ const char* SettingsShortNames[][2] = {
|
||||
/* VoltageCalibration */ { "Kalibracija", "napona napajanja" },
|
||||
/* AdvancedSoldering */ { "Detalji", "pri lemljenju" },
|
||||
/* ScrollingSpeed */ { "Brzina", "poruka" },
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsP */ { "PID", "P" },
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsI */ { "PID", "I" },
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsD */ { "PID", "D" },
|
||||
#endif
|
||||
/* TipModel */ { "Tip", "Model" },
|
||||
/* SimpleCalibrationMode */ { "Simple", "Calibration" },
|
||||
/* AdvancedCalibrationMode */ { "Advanced", "Calibration" },
|
||||
};
|
||||
|
||||
const char* SettingsMenuEntries[4] = {
|
||||
@@ -1945,7 +1747,7 @@ const char* SettingsDescriptions[] = {
|
||||
/* AdvancedIdle */ "Visa detaljerad information i mindre typsnitt när inaktiv.",
|
||||
/* DisplayRotation */ "Visningsläge <A. Automatisk V. Vänsterhänt H. Högerhänt>",
|
||||
/* BoostEnabled */ "Aktivera främre knappen för turboläge (temperaturhöjning) vid lödning",
|
||||
/* BoostTemperature */ "Temperatur i \\"turbo\\"-läge",
|
||||
/* BoostTemperature */ "Temperatur i \"turbo\"-läge",
|
||||
/* AutoStart */ "Startar automatiskt lödpennan vid uppstart. T=Lödning, S=Viloläge, F=Av",
|
||||
/* CooldownBlink */ "Blinka temperaturen medan spetsen kyls av och fortfarande är varm.",
|
||||
/* TemperatureCalibration */ "Kalibrera spets-kompensation.",
|
||||
@@ -1953,17 +1755,12 @@ const char* SettingsDescriptions[] = {
|
||||
/* VoltageCalibration */ "Inspänningskalibrering. Knapparna justerar, håll inne för avslut",
|
||||
/* AdvancedSoldering */ "Visa detaljerad information vid lödning",
|
||||
/* ScrollingSpeed */ "Hastighet som den här texten rullar i",
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsP */ "PID P term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems",
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsI */ "PID I term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems",
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsD */ "PID D term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems",
|
||||
#endif
|
||||
/* TipModel */ "Tip Model selection",
|
||||
/* SimpleCalibrationMode */ "Simple Calibration using Hot water",
|
||||
/* AdvancedCalibrationMode */ "Advanced calibration using thermocouple on the tip",
|
||||
};
|
||||
|
||||
const char* SettingsCalibrationDone = "Calibration done!";
|
||||
const char* SettingsCalibrationWarning = "Please ensure the tip is at room temperature before continuing!";
|
||||
const char* SettingsResetWarning = "Are you sure you want to reset settings to default values?";
|
||||
const char* UVLOWarningString = "DC LÅG";
|
||||
@@ -2007,15 +1804,9 @@ const char* SettingsShortNames[][2] = {
|
||||
/* VoltageCalibration */ { "Kalibrera", "inspänning?" },
|
||||
/* AdvancedSoldering */ { "Detaljerad", "lödng.skärm" },
|
||||
/* ScrollingSpeed */ { "Beskrivning", "rullhast." },
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsP */ { "PID", "P" },
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsI */ { "PID", "I" },
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsD */ { "PID", "D" },
|
||||
#endif
|
||||
/* TipModel */ { "Tip", "Model" },
|
||||
/* SimpleCalibrationMode */ { "Simple", "Calibration" },
|
||||
/* AdvancedCalibrationMode */ { "Advanced", "Calibration" },
|
||||
};
|
||||
|
||||
const char* SettingsMenuEntries[4] = {
|
||||
@@ -2055,17 +1846,12 @@ const char* SettingsDescriptions[] = {
|
||||
/* VoltageCalibration */ "VIN Kalibrasyonu. Düğmeler ayarlar, çıkmak için uzun bas.",
|
||||
/* AdvancedSoldering */ "Lehimleme yaparken detaylı bilgi göster",
|
||||
/* ScrollingSpeed */ "Speed this text scrolls past at",
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsP */ "PID P term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems",
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsI */ "PID I term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems",
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsD */ "PID D term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems",
|
||||
#endif
|
||||
/* TipModel */ "Tip Model selection",
|
||||
/* SimpleCalibrationMode */ "Simple Calibration using Hot water",
|
||||
/* AdvancedCalibrationMode */ "Advanced calibration using thermocouple on the tip",
|
||||
};
|
||||
|
||||
const char* SettingsCalibrationDone = "Calibration done!";
|
||||
const char* SettingsCalibrationWarning = "Lütfen devam etmeden önce ucun oda sıcaklığında olduğunu garantiye alın!";
|
||||
const char* SettingsResetWarning = "Are you sure to reset settings to default values?";
|
||||
const char* UVLOWarningString = "DC LOW";
|
||||
@@ -2109,15 +1895,9 @@ const char* SettingsShortNames[][2] = {
|
||||
/* VoltageCalibration */ { "CAL VIN?" },
|
||||
/* AdvancedSoldering */ { "ADVSLD" },
|
||||
/* ScrollingSpeed */ { "DESCSP" },
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsP */ { "PIDP" },
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsI */ { "PIDI" },
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsD */ { "PIDD" },
|
||||
#endif
|
||||
/* TipModel */ { "TIPMO" },
|
||||
/* SimpleCalibrationMode */ { "SMPCAL" },
|
||||
/* AdvancedCalibrationMode */ { "ADVCAL" },
|
||||
};
|
||||
|
||||
const char* SettingsMenuEntries[4] = {
|
||||
@@ -2157,17 +1937,12 @@ const char* SettingsDescriptions[] = {
|
||||
/* VoltageCalibration */ "Калібрування напруги входу. Налаштувати кнопками, натиснути і утримати щоб завершити.",
|
||||
/* AdvancedSoldering */ "Показувати детальну інформацію при пайці.",
|
||||
/* ScrollingSpeed */ "Швидкість прокрутки тексту",
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsP */ "PID P term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems",
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsI */ "PID I term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems",
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsD */ "PID D term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems",
|
||||
#endif
|
||||
/* TipModel */ "Tip Model selection",
|
||||
/* SimpleCalibrationMode */ "Simple Calibration using Hot water",
|
||||
/* AdvancedCalibrationMode */ "Advanced calibration using thermocouple on the tip",
|
||||
};
|
||||
|
||||
const char* SettingsCalibrationDone = "Calibration done!";
|
||||
const char* SettingsCalibrationWarning = "Переконайтеся, що жало охололо до кімнатної температури, перш ніж продовжувати!";
|
||||
const char* SettingsResetWarning = "Ви дійсно хочете скинути налаштування до значень за замовчуванням?";
|
||||
const char* UVLOWarningString = "АККУМ--";
|
||||
@@ -2211,15 +1986,9 @@ const char* SettingsShortNames[][2] = {
|
||||
/* VoltageCalibration */ { "Калібровка", "напруга" },
|
||||
/* AdvancedSoldering */ { "Детальний ре-", "жим пайки" },
|
||||
/* ScrollingSpeed */ { "Швидкість", "тексту" },
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsP */ { "PID", "P" },
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsI */ { "PID", "I" },
|
||||
#endif
|
||||
#ifdef PIDSETTINGS
|
||||
/* PidSettingsD */ { "PID", "D" },
|
||||
#endif
|
||||
/* TipModel */ { "Tip", "Model" },
|
||||
/* SimpleCalibrationMode */ { "Simple", "Calibration" },
|
||||
/* AdvancedCalibrationMode */ { "Advanced", "Calibration" },
|
||||
};
|
||||
|
||||
const char* SettingsMenuEntries[4] = {
|
||||
|
||||
Reference in New Issue
Block a user