mirror of
https://github.com/Ralim/IronOS.git
synced 2025-02-26 07:53:55 +00:00
Merge pull request #1493 from Ralim/new-translations-format
New translations format
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
# Translation
|
# Translation
|
||||||
If you would like to contribute a translation, use the [Translation Editor](http://htmlpreview.github.io/?https://github.com/Ralim/ts100/blob/master/Translations/TranslationEditor.html).
|
|
||||||
|
|
||||||
[Open a reference language file and optionally a target language file](https://github.com/Ralim/ts100/tree/master/Translations).
|
Moving forward (after 2022/12/07); IronOS is using Weblate to provide the visual interface to doing translations to make it easier for people to work with.
|
||||||
|
Currently there is a translation going on, so not _everything_ is perfect but its leaps in the right direction to help make it friendlier for people to edit and also subscribe to be notified when things are updated.
|
||||||
|
|
||||||
You can create a pull request with the new / updated json configuration file, and this will include this language into the new builds for the firmware.
|
This can be accessed on the [weblate hosted instance](https://hosted.weblate.org/projects/ironos/main-firmware/).
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||

|

|
||||||

|

|
||||||

|

|
||||||
|
[](https://hosted.weblate.org/engage/ironos/)
|
||||||
|
|
||||||
# IronOS - Flexible Soldering iron control Firmware
|
# IronOS - Flexible Soldering iron control Firmware
|
||||||
|
|
||||||
@@ -79,6 +80,11 @@ When on the main screen and having the tip plugged in, the unit shows a pair of
|
|||||||
|
|
||||||
Operation details are over in the [Menu information.](https://ralim.github.io/IronOS/Menu/)
|
Operation details are over in the [Menu information.](https://ralim.github.io/IronOS/Menu/)
|
||||||
|
|
||||||
|
## Translations
|
||||||
|
|
||||||
|
Is your preferred language missing localisation of languages?
|
||||||
|
This project is using Weblate for managing translations in a user friendly way; [the user interface for this is on their hosted website.](https://hosted.weblate.org/engage/ironos/)
|
||||||
|
|
||||||
## Thanks
|
## Thanks
|
||||||
|
|
||||||
If you love this firmware and want to continue my caffeine addiction, you can do so [here](https://paypal.me/RalimTek) (or email me for other options).
|
If you love this firmware and want to continue my caffeine addiction, you can do so [here](https://paypal.me/RalimTek) (or email me for other options).
|
||||||
|
|||||||
@@ -1,652 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8" />
|
|
||||||
<title>IronOS Translation Editor</title>
|
|
||||||
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
|
|
||||||
<script src="translations_commons.js"></script>
|
|
||||||
<script src="translations_def.js"></script>
|
|
||||||
<script>
|
|
||||||
var app;
|
|
||||||
var defMap = {};
|
|
||||||
|
|
||||||
function save() {
|
|
||||||
saveJSON(
|
|
||||||
app.current,
|
|
||||||
"translation_" + app.current.languageCode + ".json"
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
function view() {
|
|
||||||
showJSON(
|
|
||||||
app.current,
|
|
||||||
"translation_" + app.current.languageCode + ".json"
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
function fileChanged(e) {
|
|
||||||
var target = e;
|
|
||||||
var id = target.id;
|
|
||||||
|
|
||||||
var file = target.files[0];
|
|
||||||
if (!file) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
var fr = new FileReader();
|
|
||||||
fr.onload = function (e) {
|
|
||||||
try {
|
|
||||||
var json = JSON.parse(e.target.result);
|
|
||||||
} catch (ex) {
|
|
||||||
console.log(ex);
|
|
||||||
alert("Invalid JSON file: " + file.name);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (id == "referent-lang-file") {
|
|
||||||
if (checkTranslationFile(file.name)) {
|
|
||||||
app.referent = json;
|
|
||||||
app.meta.referentLoaded = true;
|
|
||||||
}
|
|
||||||
} else if (id == "current-lang-file") {
|
|
||||||
if (checkTranslationFile(file.name)) {
|
|
||||||
app.current = json;
|
|
||||||
if (!app.current.fonts) {
|
|
||||||
app.current.fonts = ["ascii_basic"];
|
|
||||||
}
|
|
||||||
app.meta.currentLoaded = true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
synchronizeData();
|
|
||||||
};
|
|
||||||
fr.readAsText(file);
|
|
||||||
}
|
|
||||||
|
|
||||||
function synchronizeData() {
|
|
||||||
app.obsolete = {};
|
|
||||||
copyMissing(
|
|
||||||
app.def.messages,
|
|
||||||
app.referent.messages,
|
|
||||||
app.current.messages
|
|
||||||
);
|
|
||||||
copyMissing(
|
|
||||||
app.def.characters,
|
|
||||||
app.referent.characters,
|
|
||||||
app.current.characters
|
|
||||||
);
|
|
||||||
copyMissing(
|
|
||||||
app.def.menuGroups,
|
|
||||||
app.referent.menuGroups,
|
|
||||||
app.current.menuGroups
|
|
||||||
);
|
|
||||||
copyMissing(
|
|
||||||
app.def.menuOptions,
|
|
||||||
app.referent.menuOptions,
|
|
||||||
app.current.menuOptions
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Copy all missing properties from referent to current
|
|
||||||
* for each entry in definition
|
|
||||||
*/
|
|
||||||
function copyMissing(defList, referentMap, currentMap) {
|
|
||||||
if (
|
|
||||||
!isDefined(defList) ||
|
|
||||||
!isDefined(referentMap) ||
|
|
||||||
!isDefined(currentMap)
|
|
||||||
) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
var len = defList.length;
|
|
||||||
for (var i = 0; i < len; i++) {
|
|
||||||
var id = defList[i].id;
|
|
||||||
if (!isDefined(referentMap[id])) {
|
|
||||||
referentMap[id] = "";
|
|
||||||
}
|
|
||||||
if (!isDefined(currentMap[id])) {
|
|
||||||
currentMap[id] = referentMap[id];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
processObsolete(defList, currentMap);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Passes through all entries from the given map.
|
|
||||||
// If a corresponding entry is not found in the defList, it is removed from the map, and added into the obsolete map.
|
|
||||||
function processObsolete(defList, map) {
|
|
||||||
// Index list to map for faster search
|
|
||||||
var defMap = copyArrayToMap(defList);
|
|
||||||
Object.keys(map).forEach(function (key) {
|
|
||||||
if (!isDefined(defMap[key])) {
|
|
||||||
app.obsolete[key] = { id: key, value: map[key] };
|
|
||||||
delete map[key];
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
function length(obj, mode) {
|
|
||||||
if (!isDefined(mode) || mode == 0) {
|
|
||||||
// return direct length
|
|
||||||
return obj.length;
|
|
||||||
}
|
|
||||||
// return the longest length in text2 array
|
|
||||||
return Math.max(
|
|
||||||
isDefinedNN(obj.text2[0]) ? obj.text2[0].length : 0,
|
|
||||||
isDefinedNN(obj.text2[1]) ? obj.text2[1].length : 0
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
function getAttribute(obj, attribute) {
|
|
||||||
var d = "2";
|
|
||||||
var v = obj[attribute + d];
|
|
||||||
if (isDefined(v)) return v;
|
|
||||||
return obj[attribute];
|
|
||||||
}
|
|
||||||
|
|
||||||
function loaded() {
|
|
||||||
app = new Vue({
|
|
||||||
el: "#app",
|
|
||||||
data: {
|
|
||||||
meta: {
|
|
||||||
referentLoaded: false,
|
|
||||||
currentLoaded: false,
|
|
||||||
},
|
|
||||||
def: {},
|
|
||||||
referent: {
|
|
||||||
messages: {},
|
|
||||||
},
|
|
||||||
current: {
|
|
||||||
loaded: false,
|
|
||||||
},
|
|
||||||
obsolete: {},
|
|
||||||
fontToAdd: "latin_extended",
|
|
||||||
},
|
|
||||||
methods: {
|
|
||||||
validateInput: function (valMap, id, mode) {
|
|
||||||
var d = defMap[id];
|
|
||||||
var vLen = 0;
|
|
||||||
if (!isDefined(mode)) mode = 0;
|
|
||||||
|
|
||||||
try {
|
|
||||||
// Sum for complex length
|
|
||||||
for (var i = 0; i < d.lenSum.fields.length; i++) {
|
|
||||||
vLen += length(valMap[d.lenSum.fields[i]], mode);
|
|
||||||
}
|
|
||||||
d = d.lenSum;
|
|
||||||
} catch (e) {
|
|
||||||
// Single field length
|
|
||||||
vLen = length(valMap[id], mode);
|
|
||||||
}
|
|
||||||
var maxLen = getAttribute(d, "maxLen", mode == 2);
|
|
||||||
var minLen = getAttribute(d, "minLen", mode == 2);
|
|
||||||
var len = getAttribute(d, "len", mode == 2);
|
|
||||||
if (
|
|
||||||
(isNumber(maxLen) && vLen > maxLen) ||
|
|
||||||
(isNumber(minLen) && vLen < minLen) ||
|
|
||||||
(isNumber(len) && vLen != len)
|
|
||||||
) {
|
|
||||||
return "invalid";
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
constraintString: function (e) {
|
|
||||||
var str = "";
|
|
||||||
var delim = "";
|
|
||||||
var v;
|
|
||||||
d = "2";
|
|
||||||
if (isDefinedNN(e.lenSum)) {
|
|
||||||
str =
|
|
||||||
"len(" +
|
|
||||||
(e.lenSum.fields + "").replace(/,/g, " + ") +
|
|
||||||
") -> ";
|
|
||||||
e = e.lenSum;
|
|
||||||
}
|
|
||||||
v = getAttribute(e, "len", d);
|
|
||||||
if (isNumber(v)) {
|
|
||||||
str += delim + "len=" + v;
|
|
||||||
delim = " and ";
|
|
||||||
}
|
|
||||||
v = getAttribute(e, "minLen", d);
|
|
||||||
if (isNumber(v)) {
|
|
||||||
str += delim + "len>=" + v;
|
|
||||||
delim = " and ";
|
|
||||||
}
|
|
||||||
v = getAttribute(e, "maxLen", d);
|
|
||||||
if (isNumber(v)) {
|
|
||||||
str += delim + "len<=" + v;
|
|
||||||
delim = " and ";
|
|
||||||
}
|
|
||||||
return str;
|
|
||||||
},
|
|
||||||
|
|
||||||
getWholeScreenMessageMaxLen: function (valMap, id, prop) {
|
|
||||||
var v = prop ? valMap[id][prop] : valMap[id];
|
|
||||||
var maxLen;
|
|
||||||
if (this.isSmall(v)) {
|
|
||||||
maxLen = defMap[id].maxLen2 || 16;
|
|
||||||
} else {
|
|
||||||
maxLen = defMap[id].maxLen || 8;
|
|
||||||
}
|
|
||||||
return maxLen;
|
|
||||||
},
|
|
||||||
|
|
||||||
validateWholeScreenMessage: function (valMap, id, prop) {
|
|
||||||
var v = prop ? valMap[id][prop] : valMap[id];
|
|
||||||
var maxLen = this.getWholeScreenMessageMaxLen(valMap, id, prop);
|
|
||||||
if (this.isSmall(v)) {
|
|
||||||
if (v[0].length === 0) {
|
|
||||||
return "invalid";
|
|
||||||
} else if (Math.max(v[0].length, v[1].length) > maxLen) {
|
|
||||||
return "invalid";
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
if (v.length > maxLen) {
|
|
||||||
return "invalid";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
constraintWholeScreenMessage: function (valMap, id, prop) {
|
|
||||||
return (
|
|
||||||
"len <= " + this.getWholeScreenMessageMaxLen(valMap, id, prop)
|
|
||||||
);
|
|
||||||
},
|
|
||||||
|
|
||||||
isSmall: function (v) {
|
|
||||||
return v instanceof Array;
|
|
||||||
},
|
|
||||||
|
|
||||||
convertToLarge: function (valMap, id, prop) {
|
|
||||||
var v = prop ? valMap[id][prop] : valMap[id];
|
|
||||||
var message = v[0] + (v[1] !== "" ? " " + v[1] : "");
|
|
||||||
if (prop) {
|
|
||||||
valMap[id][prop] = message;
|
|
||||||
} else {
|
|
||||||
valMap[id] = message;
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
convertToSmall: function (valMap, id, prop) {
|
|
||||||
var v = prop ? valMap[id][prop] : valMap[id];
|
|
||||||
var message = [v, ""];
|
|
||||||
if (prop) {
|
|
||||||
valMap[id][prop] = message;
|
|
||||||
} else {
|
|
||||||
valMap[id] = message;
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
removeFont: function (i) {
|
|
||||||
this.current.fonts.splice(i, 1);
|
|
||||||
},
|
|
||||||
|
|
||||||
addFont: function () {
|
|
||||||
this.current.fonts.push(this.fontToAdd);
|
|
||||||
},
|
|
||||||
},
|
|
||||||
});
|
|
||||||
app.def = def;
|
|
||||||
copyArrayToMap(app.def.messages, defMap);
|
|
||||||
copyArrayToMap(app.def.messagesWarn, defMap);
|
|
||||||
copyArrayToMap(app.def.characters, defMap);
|
|
||||||
copyArrayToMap(app.def.menuGroups, defMap);
|
|
||||||
copyArrayToMap(app.def.menuOptions, defMap);
|
|
||||||
}
|
|
||||||
|
|
||||||
window.onload = loaded;
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<link href="translations.css" rel="stylesheet" type="text/css" />
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body>
|
|
||||||
<div id="app">
|
|
||||||
<h1>
|
|
||||||
IronOS Translation Editor<span v-if="meta.currentLoaded">
|
|
||||||
- {{ current.languageLocalName }} [{{current.languageCode}}]</span
|
|
||||||
>
|
|
||||||
</h1>
|
|
||||||
<table class="header data">
|
|
||||||
<tr>
|
|
||||||
<td class="label">Reference Language</td>
|
|
||||||
<td class="value">
|
|
||||||
<input
|
|
||||||
type="file"
|
|
||||||
id="referent-lang-file"
|
|
||||||
onchange="fileChanged(this)"
|
|
||||||
accept=".json"
|
|
||||||
/>
|
|
||||||
<span class="selected" v-if="meta.referentLoaded"
|
|
||||||
>{{ referent.languageLocalName }}
|
|
||||||
[{{referent.languageCode}}]</span
|
|
||||||
>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<tr v-if="meta.referentLoaded">
|
|
||||||
<td class="label">Current Language</td>
|
|
||||||
<td class="value">
|
|
||||||
<input
|
|
||||||
type="file"
|
|
||||||
id="current-lang-file"
|
|
||||||
onchange="fileChanged(this)"
|
|
||||||
accept=".json"
|
|
||||||
/>
|
|
||||||
<span class="selected" v-if="meta.currentLoaded"
|
|
||||||
>{{ current.languageLocalName }} [{{current.languageCode}}]</span
|
|
||||||
>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<tr v-if="meta.currentLoaded">
|
|
||||||
<td class="label">Local Language Code</td>
|
|
||||||
<td class="value">
|
|
||||||
<input
|
|
||||||
type="text"
|
|
||||||
v-model="current.languageCode"
|
|
||||||
maxlength="8"
|
|
||||||
v-on:change="current.languageCode=current.languageCode.toUpperCase()"
|
|
||||||
class="short"
|
|
||||||
/>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<tr v-if="meta.currentLoaded">
|
|
||||||
<td class="label">Local Language Name</td>
|
|
||||||
<td class="value">
|
|
||||||
<input
|
|
||||||
type="text"
|
|
||||||
v-model="current.languageLocalName"
|
|
||||||
class="short"
|
|
||||||
/>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<tr v-if="meta.currentLoaded">
|
|
||||||
<td class="label">
|
|
||||||
Font tables to use<br />("ascii_basic" must be first)
|
|
||||||
</td>
|
|
||||||
<td class="value">
|
|
||||||
<ul>
|
|
||||||
<li v-for="(font, i) in current.fonts">
|
|
||||||
<button
|
|
||||||
type="button"
|
|
||||||
@click="removeFont(i)"
|
|
||||||
:disabled="i == 0 && font == 'ascii_basic'"
|
|
||||||
>
|
|
||||||
-
|
|
||||||
</button>
|
|
||||||
{{ font }}
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<select v-model="fontToAdd">
|
|
||||||
<!-- <option value="ascii_basic">ascii_basic: ASCII Basic</option> -->
|
|
||||||
<option value="latin_extended">
|
|
||||||
latin_extended: Latin Extended
|
|
||||||
</option>
|
|
||||||
<option value="greek">greek: Greek Glyphs</option>
|
|
||||||
<option value="cyrillic">cyrillic: Cyrillic Glyphs</option>
|
|
||||||
<option value="cjk">cjk: Chinese/Japanese/Korean</option>
|
|
||||||
</select>
|
|
||||||
<button type="button" @click="addFont()">Add</button>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
<div v-if="def.messages && referent.messages && current.messages">
|
|
||||||
<div class="footer">
|
|
||||||
<input type="button" value="Save" onclick="save()" />
|
|
||||||
<input type="button" value="View" onclick="view()" />
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div v-if="Object.keys(obsolete).length > 0">
|
|
||||||
<h2>Obsolete</h2>
|
|
||||||
<table class="data">
|
|
||||||
<tr v-for="entry in obsolete">
|
|
||||||
<td class="label"><div class="stringId">{{entry.id}}</div></td>
|
|
||||||
<td class="value"><div class="ref">{{entry.value}}</div></td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<h2>Messages and Strings</h2>
|
|
||||||
<table class="data">
|
|
||||||
<tr
|
|
||||||
v-for="message in def.messages"
|
|
||||||
v-bind:class="validateInput(current.messages, message.id)"
|
|
||||||
>
|
|
||||||
<td class="label"><div class="stringId">{{message.id}}</div></td>
|
|
||||||
<td class="value">
|
|
||||||
<div class="constraint">{{constraintString(message)}}</div>
|
|
||||||
<div class="label">Description</div>
|
|
||||||
<div class="ref">{{message.description}}</div>
|
|
||||||
<div class="label">Reference</div>
|
|
||||||
<div class="ref">{{referent.messages[message.id]}}</div>
|
|
||||||
<div class="note" v-if="message.note">{{message.note}}</div>
|
|
||||||
<div class="tran">
|
|
||||||
<input
|
|
||||||
:id="'in_'+message.id"
|
|
||||||
type="text"
|
|
||||||
v-model="current.messages[message.id]"
|
|
||||||
v-bind:class="{unchanged : current.messages[message.id] == referent.messages[message.id], empty : current.messages[message.id]==''}"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
<h2>Warning Messages</h2>
|
|
||||||
<table class="data">
|
|
||||||
<tr
|
|
||||||
v-for="message in def.messagesWarn"
|
|
||||||
v-bind:class="validateWholeScreenMessage(current.messagesWarn, message.id)"
|
|
||||||
>
|
|
||||||
<td class="label"><div class="stringId">{{message.id}}</div></td>
|
|
||||||
<td class="value">
|
|
||||||
<div class="constraint">
|
|
||||||
{{constraintWholeScreenMessage(current.messagesWarn,
|
|
||||||
message.id)}}
|
|
||||||
</div>
|
|
||||||
<div class="label">Description</div>
|
|
||||||
<div class="ref">{{message.description}}</div>
|
|
||||||
<div class="label">Reference</div>
|
|
||||||
<div class="ref">{{referent.messagesWarn[message.id]}}</div>
|
|
||||||
<div class="note" v-if="message.note">{{message.note}}</div>
|
|
||||||
<div
|
|
||||||
class="tran"
|
|
||||||
v-if="isSmall(current.messagesWarn[message.id])"
|
|
||||||
>
|
|
||||||
<input
|
|
||||||
:id="'in_'+message.id+'_0'"
|
|
||||||
type="text"
|
|
||||||
v-model="current.messagesWarn[message.id][0]"
|
|
||||||
v-bind:class="{unchanged : current.messagesWarn[message.id][0] == referent.messagesWarn[message.id][0] && current.messagesWarn[message.id][1] == referent.messagesWarn[message.id][1], empty : current.messagesWarn[message.id][0] == '' && current.messagesWarn[message.id][1] == ''}"
|
|
||||||
/>
|
|
||||||
<input
|
|
||||||
:id="'in_'+message.id+'_1'"
|
|
||||||
type="text"
|
|
||||||
v-model="current.messagesWarn[message.id][1]"
|
|
||||||
v-bind:class="{unchanged : current.messagesWarn[message.id][0] == referent.messagesWarn[message.id][0] && current.messagesWarn[message.id][1] == referent.messagesWarn[message.id][1], empty : current.messagesWarn[message.id][0] == '' && current.messagesWarn[message.id][1] == ''}"
|
|
||||||
/>
|
|
||||||
<button
|
|
||||||
type="button"
|
|
||||||
@click="convertToLarge(current.messagesWarn, message.id)"
|
|
||||||
>
|
|
||||||
Convert to large text
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
<div class="tran" v-else>
|
|
||||||
<input
|
|
||||||
:id="'in_'+message.id"
|
|
||||||
type="text"
|
|
||||||
v-model="current.messagesWarn[message.id]"
|
|
||||||
v-bind:class="{unchanged : current.messagesWarn[message.id] == referent.messagesWarn[message.id], empty : current.messagesWarn[message.id]==''}"
|
|
||||||
/>
|
|
||||||
<button
|
|
||||||
type="button"
|
|
||||||
@click="convertToSmall(current.messagesWarn, message.id)"
|
|
||||||
>
|
|
||||||
Convert to small text
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
<h2>Characters</h2>
|
|
||||||
<table class="data">
|
|
||||||
<tr
|
|
||||||
v-for="char in def.characters"
|
|
||||||
v-bind:class="validateInput(current.characters, char.id)"
|
|
||||||
>
|
|
||||||
<td class="label"><div class="stringId">{{char.id}}</div></td>
|
|
||||||
<td class="value">
|
|
||||||
<div class="constraint">{{constraintString(char)}}</div>
|
|
||||||
<div class="label">Description</div>
|
|
||||||
<div class="ref">{{char.description}}</div>
|
|
||||||
<div class="label">Reference</div>
|
|
||||||
<div class="ref">{{referent.characters[char.id]}}</div>
|
|
||||||
<div class="tran">
|
|
||||||
<input
|
|
||||||
type="text"
|
|
||||||
v-model="current.characters[char.id]"
|
|
||||||
v-bind:class="{unchanged : current.characters[char.id] == referent.characters[char.id], empty : current.characters[char.id].length != 1}"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
<h2>Menu Groups</h2>
|
|
||||||
<table class="data">
|
|
||||||
<tr
|
|
||||||
v-for="menu in def.menuGroups"
|
|
||||||
v-bind:class="validateWholeScreenMessage(current.menuGroups, menu.id, 'text2')"
|
|
||||||
>
|
|
||||||
<td class="label"><div class="stringId">{{menu.id}}</div></td>
|
|
||||||
<td class="value">
|
|
||||||
<div class="label">Menu Name</div>
|
|
||||||
<div class="constraint">
|
|
||||||
{{constraintWholeScreenMessage(current.menuGroups, menu.id,
|
|
||||||
'text2')}}
|
|
||||||
</div>
|
|
||||||
<div class="label">Description</div>
|
|
||||||
<div class="ref">{{menu.description}}</div>
|
|
||||||
<div class="label">Reference</div>
|
|
||||||
<div class="ref">{{referent.menuGroups[menu.id].text2}}</div>
|
|
||||||
<div
|
|
||||||
class="tran"
|
|
||||||
v-if="isSmall(current.menuGroups[menu.id].text2)"
|
|
||||||
>
|
|
||||||
<input
|
|
||||||
type="text"
|
|
||||||
v-model="current.menuGroups[menu.id].text2[0]"
|
|
||||||
v-bind:class="{unchanged : current.menuGroups[menu.id].text2[0] == referent.menuGroups[menu.id].text2[0] && current.menuGroups[menu.id].text2[1] == referent.menuGroups[menu.id].text2[1], empty : current.menuGroups[menu.id].text2[0] == '' && current.menuGroups[menu.id].text2[1] == ''}"
|
|
||||||
/>
|
|
||||||
<input
|
|
||||||
type="text"
|
|
||||||
v-model="current.menuGroups[menu.id].text2[1]"
|
|
||||||
v-bind:class="{unchanged : current.menuGroups[menu.id].text2[0] == referent.menuGroups[menu.id].text2[0] && current.menuGroups[menu.id].text2[1] == referent.menuGroups[menu.id].text2[1], empty : current.menuGroups[menu.id].text2[0] == '' && current.menuGroups[menu.id].text2[1] == ''}"
|
|
||||||
/>
|
|
||||||
<button
|
|
||||||
type="button"
|
|
||||||
@click="convertToLarge(current.menuGroups, menu.id, 'text2')"
|
|
||||||
>
|
|
||||||
Convert to large text
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
<div class="tran" v-else>
|
|
||||||
<input
|
|
||||||
type="text"
|
|
||||||
v-model="current.menuGroups[menu.id].text2"
|
|
||||||
v-bind:class="{unchanged : current.menuGroups[menu.id].text2 == referent.menuGroups[menu.id].text2, empty : current.menuGroups[menu.id].text2==''}"
|
|
||||||
/>
|
|
||||||
<button
|
|
||||||
type="button"
|
|
||||||
@click="convertToSmall(current.menuGroups, menu.id, 'text2')"
|
|
||||||
>
|
|
||||||
Convert to small text
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
<div class="label">Description</div>
|
|
||||||
<div class="ref">{{referent.menuGroups[menu.id].desc}}</div>
|
|
||||||
<div class="tran">
|
|
||||||
<input
|
|
||||||
type="text"
|
|
||||||
v-model="current.menuGroups[menu.id].desc"
|
|
||||||
v-bind:class="{unchanged : current.menuGroups[menu.id].desc == referent.menuGroups[menu.id].desc, empty : current.menuGroups[menu.id].desc == ''}"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
<h2>Menu Options</h2>
|
|
||||||
<table class="data">
|
|
||||||
<tr
|
|
||||||
v-for="menu in def.menuOptions"
|
|
||||||
v-bind:class="validateWholeScreenMessage(current.menuOptions, menu.id, 'text2')"
|
|
||||||
>
|
|
||||||
<td class="label"><div class="stringId">{{menu.id}}</div></td>
|
|
||||||
<td class="value">
|
|
||||||
<div v-bind:class="{hidden : false}">
|
|
||||||
<div class="label">Menu Name</div>
|
|
||||||
<div class="constraint">
|
|
||||||
{{constraintWholeScreenMessage(current.menuOptions, menu.id,
|
|
||||||
'text2')}}
|
|
||||||
</div>
|
|
||||||
<div class="label">Description</div>
|
|
||||||
<div class="ref">{{menu.description}}</div>
|
|
||||||
<div class="label">Reference</div>
|
|
||||||
<div class="ref">{{referent.menuOptions[menu.id].text2}}</div>
|
|
||||||
<div
|
|
||||||
class="tran"
|
|
||||||
v-if="isSmall(current.menuOptions[menu.id].text2)"
|
|
||||||
>
|
|
||||||
<input
|
|
||||||
type="text"
|
|
||||||
v-model="current.menuOptions[menu.id].text2[0]"
|
|
||||||
v-bind:class="{unchanged : current.menuOptions[menu.id].text2[0] == referent.menuOptions[menu.id].text2[0] && current.menuOptions[menu.id].text2[1] == referent.menuOptions[menu.id].text2[1], empty : current.menuOptions[menu.id].text2[0] == '' && current.menuOptions[menu.id].text2[1] == ''}"
|
|
||||||
/>
|
|
||||||
<input
|
|
||||||
type="text"
|
|
||||||
v-model="current.menuOptions[menu.id].text2[1]"
|
|
||||||
v-bind:class="{unchanged : current.menuOptions[menu.id].text2[0] == referent.menuOptions[menu.id].text2[0] && current.menuOptions[menu.id].text2[1] == referent.menuOptions[menu.id].text2[1], empty : current.menuOptions[menu.id].text2[0] == '' && current.menuOptions[menu.id].text2[1] == ''}"
|
|
||||||
/>
|
|
||||||
<button
|
|
||||||
type="button"
|
|
||||||
@click="convertToLarge(current.menuOptions, menu.id, 'text2')"
|
|
||||||
>
|
|
||||||
Convert to large text
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
<div class="tran" v-else>
|
|
||||||
<input
|
|
||||||
type="text"
|
|
||||||
v-model="current.menuOptions[menu.id].text2"
|
|
||||||
v-bind:class="{unchanged : current.menuOptions[menu.id].text2 == referent.menuOptions[menu.id].text2, empty : current.menuOptions[menu.id].text2==''}"
|
|
||||||
/>
|
|
||||||
<button
|
|
||||||
type="button"
|
|
||||||
@click="convertToSmall(current.menuOptions, menu.id, 'text2')"
|
|
||||||
>
|
|
||||||
Convert to small text
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="label">Description</div>
|
|
||||||
<div class="ref">{{referent.menuOptions[menu.id].desc}}</div>
|
|
||||||
<div class="tran">
|
|
||||||
<input
|
|
||||||
type="text"
|
|
||||||
v-model="current.menuOptions[menu.id].desc"
|
|
||||||
v-bind:class="{unchanged : current.menuOptions[menu.id].desc == referent.menuOptions[menu.id].desc, empty : current.menuOptions[menu.id].desc == ''}"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
<div class="footer">
|
|
||||||
<input type="button" value="Save" onclick="save()" />
|
|
||||||
<input type="button" value="View" onclick="view()" />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@@ -1,322 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<title>TS100 Translation Parser</title>
|
|
||||||
|
|
||||||
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
|
|
||||||
<script src="translations_commons.js"></script>
|
|
||||||
<script src="translations_def.js"></script>
|
|
||||||
<script>
|
|
||||||
|
|
||||||
var app;
|
|
||||||
var defMap = {};
|
|
||||||
var langMap = {};
|
|
||||||
var lang;
|
|
||||||
|
|
||||||
var defMsgMap;
|
|
||||||
var defCharMap;
|
|
||||||
var defGrpMap;
|
|
||||||
var defOptMap;
|
|
||||||
|
|
||||||
function save(langCode){
|
|
||||||
saveJSON(langMap[langCode], "translation_"+langCode.toLowerCase()+".json");
|
|
||||||
}
|
|
||||||
|
|
||||||
function view(langCode){
|
|
||||||
showJSON(langMap[langCode], "translation_"+langCode.toLowerCase()+".json");
|
|
||||||
}
|
|
||||||
|
|
||||||
function translationFileSelected(e) {
|
|
||||||
var target = e;
|
|
||||||
var id = target.id;
|
|
||||||
|
|
||||||
var file = target.files[0];
|
|
||||||
if (!file) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
var fr = new FileReader();
|
|
||||||
fr.onload = function(e) {
|
|
||||||
parseTranslationFile(file.name, e.target.result);
|
|
||||||
}
|
|
||||||
fr.readAsText(file);
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
function parseTranslationFile(name, src) {
|
|
||||||
// remove multiline comments
|
|
||||||
src = src.replace(/\/\*[\s\S.]*?\*\//mg, "");
|
|
||||||
// remove single-line comments
|
|
||||||
src = src.replace(/\/\/.*/mg, "");
|
|
||||||
// remove empty lines
|
|
||||||
src = src.replace(/^\s*\n/gm, "");
|
|
||||||
|
|
||||||
var langCode = "";
|
|
||||||
var srcLines = src.split("\n");
|
|
||||||
|
|
||||||
var reMessage = /const\s+char\s*\*\s+([\w\d]+)\s*=\s*"(.*)"/;
|
|
||||||
var reSettingsDescStart = /const\s+char\s*\*\s+SettingsDescriptions\[/;
|
|
||||||
var reSettingsNamesStart = /const\s+char\s*\*\s+SettingsShortNames\[/;
|
|
||||||
var reSettingsMenuDescStart = /const\s+char\s*\*\s+SettingsMenuEntriesDescriptions\[/;
|
|
||||||
var reChar = /const\s+char\s+([\w\d]+)\s*=\s*'(\w)'/;
|
|
||||||
var reMenuMode = /SettingsShortNameType\s*=\s*SHORT_NAME_(\w+)_LINE/;
|
|
||||||
|
|
||||||
var reMenuStart = /\s*const\s+char\s*\*\s+SettingsMenuEntries\[/;
|
|
||||||
|
|
||||||
// var reString = /^\s*"(.*)"/;
|
|
||||||
var reString = /"(.*)"/;
|
|
||||||
var reSingleLine = /{\s*"(.*)"\s*}/;
|
|
||||||
var reDoubleLine = /{\s*"(.*)"\s*,\s*"(.*)"\s*}/;
|
|
||||||
|
|
||||||
var mode = '';
|
|
||||||
var entryIndex = 0;
|
|
||||||
for (var li = 0; li < srcLines.length; li++) {
|
|
||||||
// trim lines
|
|
||||||
line = srcLines[li] = srcLines[li].trim();
|
|
||||||
|
|
||||||
// if entering a new lang block
|
|
||||||
if (startsWith(line, "#ifdef LANG_")) {
|
|
||||||
mode = 'new-language';
|
|
||||||
langCode = line.substring(12);
|
|
||||||
lang = langMap[langCode];
|
|
||||||
// use existing or instantiate new
|
|
||||||
if (!isDefined(lang)) {
|
|
||||||
lang = {
|
|
||||||
languageCode: langCode,
|
|
||||||
cyrillicGlyphs: false,
|
|
||||||
messages: {},
|
|
||||||
characters: {},
|
|
||||||
menuGroups: {},
|
|
||||||
menuOptions: {}
|
|
||||||
};
|
|
||||||
langMap[langCode] = lang;
|
|
||||||
app.languages[app.languages.length] = langCode;
|
|
||||||
}
|
|
||||||
entryIndex = 0;
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Use Cyrillic glyphs
|
|
||||||
if (startsWith(line, "#define CYRILLIC_GLYPHS")) {
|
|
||||||
lang.cyrillicGlyphs = true;
|
|
||||||
entryIndex = 0;
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Menu type
|
|
||||||
reMenuMode.lastIndex = 0;
|
|
||||||
match = reMenuMode.exec(line);
|
|
||||||
if (match) {
|
|
||||||
entryIndex = 0;
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Messages
|
|
||||||
reMessage.lastIndex = 0;
|
|
||||||
match = reMessage.exec(line);
|
|
||||||
if (match) {
|
|
||||||
lang.messages[match[1]] = xunescape(match[2]);
|
|
||||||
entryIndex = 0;
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Chars descriptions
|
|
||||||
reChar.lastIndex = 0;
|
|
||||||
match = reChar.exec(line);
|
|
||||||
if (match) {
|
|
||||||
// found description block start
|
|
||||||
mode = 'char';
|
|
||||||
lang.characters[match[1]] = xunescape(match[2]);
|
|
||||||
entryIndex = 0;
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
// Settings descriptions
|
|
||||||
reSettingsDescStart.lastIndex = 0;
|
|
||||||
match = reSettingsDescStart.exec(line);
|
|
||||||
if (match) {
|
|
||||||
// found description block start
|
|
||||||
mode = 'settingsDesc';
|
|
||||||
entryIndex = 0;
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
reSettingsNamesStart.lastIndex = 0;
|
|
||||||
match = reSettingsNamesStart.exec(line);
|
|
||||||
if (match) {
|
|
||||||
// found description block start
|
|
||||||
mode = 'settingsNames';
|
|
||||||
entryIndex = 0;
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
reMenuStart.lastIndex = 0;
|
|
||||||
match = reMenuStart.exec(line);
|
|
||||||
if (match) {
|
|
||||||
// found description block start
|
|
||||||
mode = 'menu';
|
|
||||||
entryIndex = 0;
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
reSettingsMenuDescStart.lastIndex = 0;
|
|
||||||
match = reSettingsMenuDescStart.exec(line);
|
|
||||||
if (match) {
|
|
||||||
// found description block start
|
|
||||||
mode = 'menuDesc';
|
|
||||||
entryIndex = 0;
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (mode == 'menu') {
|
|
||||||
// processing menu group names
|
|
||||||
reString.lastIndex = 0;
|
|
||||||
match = reString.exec(line);
|
|
||||||
if (match) {
|
|
||||||
// found description string
|
|
||||||
var entry = getMenuGroup(entryIndex);
|
|
||||||
var m = match[1].split("\\n");
|
|
||||||
entry.text2[0] = xunescape(m[0]);
|
|
||||||
entry.text2[1] = xunescape(m[1]);
|
|
||||||
entryIndex++;
|
|
||||||
}
|
|
||||||
} else if (mode == 'menuDesc') {
|
|
||||||
// processing menu group descriptions
|
|
||||||
reString.lastIndex = 0;
|
|
||||||
match = reString.exec(line);
|
|
||||||
if (match) {
|
|
||||||
// found description string
|
|
||||||
var entry = getMenuGroup(entryIndex);
|
|
||||||
entry.desc = xunescape(match[1]);
|
|
||||||
entryIndex++;
|
|
||||||
}
|
|
||||||
} else if (mode == 'settingsDesc') {
|
|
||||||
// processing option descriptions
|
|
||||||
reString.lastIndex = 0;
|
|
||||||
match = reString.exec(line);
|
|
||||||
if (match) {
|
|
||||||
// found description string
|
|
||||||
var entry = getMenuOption(entryIndex);
|
|
||||||
entry.desc = xunescape(match[1]);
|
|
||||||
entryIndex++;
|
|
||||||
}
|
|
||||||
} else if (mode == 'settingsNames') {
|
|
||||||
reDoubleLine.lastIndex = 0;
|
|
||||||
match = reDoubleLine.exec(line);
|
|
||||||
if (match) {
|
|
||||||
var entry = getMenuOption(entryIndex);
|
|
||||||
entry.text2[0] = xunescape(match[1]);
|
|
||||||
entry.text2[1] = xunescape(match[2]);
|
|
||||||
entryIndex++;
|
|
||||||
} else {
|
|
||||||
reSingleLine.lastIndex = 0;
|
|
||||||
match = reSingleLine.exec(line);
|
|
||||||
if (match) {
|
|
||||||
var entry = getMenuOption(entryIndex);
|
|
||||||
entry.text = xunescape(match[1]);
|
|
||||||
entryIndex++;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
app.done = 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
function getMenuOption(entryIndex) {
|
|
||||||
var optionDef = def.menuOptions[entryIndex];
|
|
||||||
if (!isDefined(optionDef)) {
|
|
||||||
var s = "Could not find menu option with index "+entryIndex;
|
|
||||||
alert(s);
|
|
||||||
throw s;
|
|
||||||
}
|
|
||||||
var id = optionDef.id;
|
|
||||||
var entry = lang.menuOptions[id];
|
|
||||||
if (!isDefined(entry)) {
|
|
||||||
entry =
|
|
||||||
{
|
|
||||||
"text2": ["", ""],
|
|
||||||
"desc": ""
|
|
||||||
}
|
|
||||||
lang.menuOptions[id] = entry;
|
|
||||||
}
|
|
||||||
return entry;
|
|
||||||
}
|
|
||||||
|
|
||||||
function getMenuGroup(entryIndex) {
|
|
||||||
var optionDef = def.menuGroups[entryIndex];
|
|
||||||
if (!isDefined(optionDef)) {
|
|
||||||
var s = "Could not find menu group with index "+entryIndex;
|
|
||||||
alert(s);
|
|
||||||
throw s;
|
|
||||||
}
|
|
||||||
var id = optionDef.id;
|
|
||||||
var entry = lang.menuGroups[id];
|
|
||||||
if (!isDefined(entry)) {
|
|
||||||
entry =
|
|
||||||
{
|
|
||||||
"text2": ["", ""],
|
|
||||||
"desc": ""
|
|
||||||
}
|
|
||||||
lang.menuGroups[id] = entry;
|
|
||||||
}
|
|
||||||
return entry;
|
|
||||||
}
|
|
||||||
|
|
||||||
function markSaved(lang) {
|
|
||||||
document.getElementById("row_"+lang).classList.add("saved");
|
|
||||||
}
|
|
||||||
|
|
||||||
function loaded() {
|
|
||||||
app = new Vue({
|
|
||||||
el : '#app',
|
|
||||||
data : {
|
|
||||||
languages: [],
|
|
||||||
done : false,
|
|
||||||
def : {
|
|
||||||
}
|
|
||||||
|
|
||||||
},
|
|
||||||
methods : {
|
|
||||||
vSave : function(lang) {
|
|
||||||
save(lang);
|
|
||||||
markSaved(lang);
|
|
||||||
},
|
|
||||||
vView : function(lang) {
|
|
||||||
view(lang);
|
|
||||||
markSaved(lang);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
app.def = def;
|
|
||||||
defMsgMap = copyArrayToMap(app.def.messages);
|
|
||||||
defCharMap = copyArrayToMap(app.def.characters);
|
|
||||||
defGrpMap = copyArrayToMap(app.def.menuGroups);
|
|
||||||
defOptMap = copyArrayToMap(app.def.menuOptions);
|
|
||||||
}
|
|
||||||
|
|
||||||
window.onload=loaded;
|
|
||||||
</script>
|
|
||||||
<link href="translations.css" rel="stylesheet" type="text/css">
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<div id="app">
|
|
||||||
<h1>TS100 Translation Parser</h1>
|
|
||||||
<table class="header data">
|
|
||||||
<tr>
|
|
||||||
<td class="label">Translation.cpp</td>
|
|
||||||
<td class="value">
|
|
||||||
<input type="file" id="translation-cpp-file" onchange="translationFileSelected(this)" accept=".cpp">
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
<div class="data" v-if="done">
|
|
||||||
<div class="value" v-for="lang in languages" :id="'row_'+lang">
|
|
||||||
<input type="button" :value="'Save '+lang" v-on:click="vSave(lang)">
|
|
||||||
<input type="button" :value="'View '+lang" v-on:click="vView(lang)">
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@@ -996,6 +996,12 @@ ALL_FONTS = [
|
|||||||
NAME_GREEK,
|
NAME_GREEK,
|
||||||
NAME_CJK, # CJK must come last
|
NAME_CJK, # CJK must come last
|
||||||
]
|
]
|
||||||
|
ALL_PRE_RENDERED_FONTS = [
|
||||||
|
NAME_ASCII_BASIC,
|
||||||
|
NAME_LATIN_EXTENDED,
|
||||||
|
NAME_CYRILLIC,
|
||||||
|
NAME_GREEK,
|
||||||
|
]
|
||||||
|
|
||||||
|
|
||||||
def get_font_maps_for_name(
|
def get_font_maps_for_name(
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ logging.basicConfig(stream=sys.stdout, level=logging.DEBUG)
|
|||||||
|
|
||||||
|
|
||||||
HERE = Path(__file__).resolve().parent
|
HERE = Path(__file__).resolve().parent
|
||||||
TRANSLATION_DEFS_PATH = os.path.join(HERE, "translations_def.js")
|
TRANSLATION_DEFS_PATH = os.path.join(HERE, "translations_definitions.json")
|
||||||
ENGLISH_TRANSLATION_PATH = os.path.join(HERE, "translation_EN.json")
|
ENGLISH_TRANSLATION_PATH = os.path.join(HERE, "translation_EN.json")
|
||||||
MENU_DOCS_FILE_PATH = os.path.join(HERE.parent, "Documentation/Settings.md")
|
MENU_DOCS_FILE_PATH = os.path.join(HERE.parent, "Documentation/Settings.md")
|
||||||
|
|
||||||
@@ -99,8 +99,8 @@ def main() -> None:
|
|||||||
json_dir = HERE
|
json_dir = HERE
|
||||||
print(json_dir)
|
print(json_dir)
|
||||||
logging.info("Loading translation definitions")
|
logging.info("Loading translation definitions")
|
||||||
defs = load_json(TRANSLATION_DEFS_PATH, True)
|
defs = load_json(TRANSLATION_DEFS_PATH)
|
||||||
eng_translation = load_json(ENGLISH_TRANSLATION_PATH, False)
|
eng_translation = load_json(ENGLISH_TRANSLATION_PATH)
|
||||||
with open(MENU_DOCS_FILE_PATH, "w") as outputf:
|
with open(MENU_DOCS_FILE_PATH, "w") as outputf:
|
||||||
write_header(outputf)
|
write_header(outputf)
|
||||||
write_menu_categories(outputf, defs, eng_translation)
|
write_menu_categories(outputf, defs, eng_translation)
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
75
Translations/migrate.py
Executable file
75
Translations/migrate.py
Executable file
@@ -0,0 +1,75 @@
|
|||||||
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
|
import json
|
||||||
|
import os
|
||||||
|
import sys
|
||||||
|
|
||||||
|
# Migrate json files to use "\n" encoding rather than []
|
||||||
|
|
||||||
|
|
||||||
|
def load_json(filename: str) -> dict:
|
||||||
|
with open(filename, "r", encoding="utf8") as f:
|
||||||
|
return json.loads(f.read())
|
||||||
|
|
||||||
|
|
||||||
|
def save_json(filename: str, data: dict):
|
||||||
|
with open(filename, "w", encoding="utf8") as f:
|
||||||
|
json.dump(data, f, indent=4, ensure_ascii=False)
|
||||||
|
|
||||||
|
|
||||||
|
file_name = sys.argv[1]
|
||||||
|
print(file_name)
|
||||||
|
|
||||||
|
data = load_json(file_name)
|
||||||
|
|
||||||
|
# Migrate messages to be delimited
|
||||||
|
for key in data["messagesWarn"]:
|
||||||
|
old_message = data["messagesWarn"][key]
|
||||||
|
if isinstance(old_message, list):
|
||||||
|
print(old_message)
|
||||||
|
new_message = "\n".join(old_message)
|
||||||
|
data["messagesWarn"][key] = {"message": new_message}
|
||||||
|
else:
|
||||||
|
data["messagesWarn"][key] = {"message": old_message}
|
||||||
|
|
||||||
|
for key in data["messages"]:
|
||||||
|
old_message = data["messages"][key]
|
||||||
|
if isinstance(old_message, list):
|
||||||
|
print(old_message)
|
||||||
|
new_message = "\n".join(old_message)
|
||||||
|
data["messagesWarn"][key] = {"message": new_message}
|
||||||
|
else:
|
||||||
|
data["messagesWarn"][key] = {"message": old_message}
|
||||||
|
|
||||||
|
del data["messages"]
|
||||||
|
print("Part 2")
|
||||||
|
# for menu-groups break out the text2 field
|
||||||
|
for key in data["menuGroups"]:
|
||||||
|
old_data = data["menuGroups"][key]
|
||||||
|
if isinstance(old_data.get("text2", ""), list):
|
||||||
|
new_data = "\n".join(old_data["text2"])
|
||||||
|
data["menuGroups"][key]["displayText"] = new_data
|
||||||
|
del data["menuGroups"][key]["text2"]
|
||||||
|
else:
|
||||||
|
data["menuGroups"][key]["displayText"] = old_data["text2"].replace("\n", "")
|
||||||
|
del data["menuGroups"][key]["text2"]
|
||||||
|
data["menuGroups"][key]["description"] = data["menuGroups"][key]["desc"]
|
||||||
|
del data["menuGroups"][key]["desc"]
|
||||||
|
|
||||||
|
|
||||||
|
print("Part 3")
|
||||||
|
# for menu-groups break out the text2 field
|
||||||
|
for key in data["menuOptions"]:
|
||||||
|
old_data = data["menuOptions"][key]
|
||||||
|
if isinstance(old_data.get("text2", ""), list):
|
||||||
|
new_data = "\n".join(old_data["text2"])
|
||||||
|
data["menuOptions"][key]["displayText"] = new_data
|
||||||
|
del data["menuOptions"][key]["text2"]
|
||||||
|
else:
|
||||||
|
data["menuOptions"][key]["displayText"] = old_data["text2"].replace("\n", "")
|
||||||
|
del data["menuOptions"][key]["text2"]
|
||||||
|
data["menuOptions"][key]["description"] = data["menuOptions"][key]["desc"]
|
||||||
|
del data["menuOptions"][key]["desc"]
|
||||||
|
|
||||||
|
|
||||||
|
save_json(file_name, data)
|
||||||
@@ -1,337 +1,243 @@
|
|||||||
{
|
{
|
||||||
"languageCode": "BE",
|
"languageCode": "BE",
|
||||||
"languageLocalName": "Беларуская",
|
"languageLocalName": "Беларуская",
|
||||||
"tempUnitFahrenheit": false,
|
"tempUnitFahrenheit": false,
|
||||||
"messages": {
|
"messagesWarn": {
|
||||||
"SettingsCalibrationWarning": "Пераканайцеся, што пры наступнай загрузцы наканечнік і ручка маюць пакаёвую тэмпературу!",
|
"CJCCalibrationDone": {
|
||||||
"CJCCalibrating": "каліброўка",
|
"message": "Каліброўка\nзроблена!"
|
||||||
"SettingsResetWarning": "Вы ўпэннены, што жадаеце зкінуць налады да першапачатковых значэнняў?",
|
},
|
||||||
"UVLOWarningString": "НАПРУГА--",
|
"ResetOKMessage": {
|
||||||
"UndervoltageString": "Нізкая напруга",
|
"message": "Скід OK"
|
||||||
"InputVoltageString": "Сілкаванне В: ",
|
},
|
||||||
"SleepingSimpleString": "Zzzz",
|
"SettingsResetMessage": {
|
||||||
"SleepingAdvancedString": "Чаканне...",
|
"message": "Налады\nзкінуты!"
|
||||||
"SleepingTipAdvancedString": "Джала:",
|
},
|
||||||
"OffString": "Выкл.",
|
"NoAccelerometerMessage": {
|
||||||
"DeviceFailedValidationWarning": "Ваша прылада, хутчэй за ўсё, падробка!"
|
"message": "Ня вызначаны\nакселерометр!"
|
||||||
},
|
},
|
||||||
"messagesWarn": {
|
"NoPowerDeliveryMessage": {
|
||||||
"CJCCalibrationDone": [
|
"message": "Няма USB-PD IC\nвыяўлены!"
|
||||||
"Каліброўка",
|
},
|
||||||
"зроблена!"
|
"LockingKeysString": {
|
||||||
],
|
"message": "ЗАМКНУТЫ"
|
||||||
"ResetOKMessage": "Скід OK",
|
},
|
||||||
"SettingsResetMessage": [
|
"UnlockingKeysString": {
|
||||||
"Налады",
|
"message": "АДЫМКНУТЫ"
|
||||||
"зкінуты!"
|
},
|
||||||
],
|
"WarningKeysLockedString": {
|
||||||
"NoAccelerometerMessage": [
|
"message": "!ЗАМКНУТЫ!"
|
||||||
"Ня вызначаны",
|
},
|
||||||
"акселерометр!"
|
"WarningThermalRunaway": {
|
||||||
],
|
"message": "Цеплавы\nУцякач"
|
||||||
"NoPowerDeliveryMessage": [
|
},
|
||||||
"Няма USB-PD IC",
|
"SettingsCalibrationWarning": {
|
||||||
"выяўлены!"
|
"message": "Пераканайцеся, што пры наступнай загрузцы наканечнік і ручка маюць пакаёвую тэмпературу!"
|
||||||
],
|
},
|
||||||
"LockingKeysString": "ЗАМКНУТЫ",
|
"CJCCalibrating": {
|
||||||
"UnlockingKeysString": "АДЫМКНУТЫ",
|
"message": "каліброўка"
|
||||||
"WarningKeysLockedString": "!ЗАМКНУТЫ!",
|
},
|
||||||
"WarningThermalRunaway": [
|
"SettingsResetWarning": {
|
||||||
"Цеплавы",
|
"message": "Вы ўпэннены, што жадаеце зкінуць налады да першапачатковых значэнняў?"
|
||||||
"Уцякач"
|
},
|
||||||
]
|
"UVLOWarningString": {
|
||||||
},
|
"message": "НАПРУГА--"
|
||||||
"characters": {
|
},
|
||||||
"SettingRightChar": "П",
|
"UndervoltageString": {
|
||||||
"SettingLeftChar": "Л",
|
"message": "Нізкая напруга"
|
||||||
"SettingAutoChar": "А",
|
},
|
||||||
"SettingOffChar": "O",
|
"InputVoltageString": {
|
||||||
"SettingSlowChar": "М",
|
"message": "Сілкаванне В: "
|
||||||
"SettingMediumChar": "С",
|
},
|
||||||
"SettingFastChar": "Х",
|
"SleepingSimpleString": {
|
||||||
"SettingStartNoneChar": "В",
|
"message": "Zzzz"
|
||||||
"SettingStartSolderingChar": "П",
|
},
|
||||||
"SettingStartSleepChar": "Ч",
|
"SleepingAdvancedString": {
|
||||||
"SettingStartSleepOffChar": "К",
|
"message": "Чаканне..."
|
||||||
"SettingLockDisableChar": "А",
|
},
|
||||||
"SettingLockBoostChar": "Т",
|
"SleepingTipAdvancedString": {
|
||||||
"SettingLockFullChar": "П"
|
"message": "Джала:"
|
||||||
},
|
},
|
||||||
"menuGroups": {
|
"OffString": {
|
||||||
"PowerMenu": {
|
"message": "Выкл."
|
||||||
"text2": [
|
},
|
||||||
"Налады",
|
"DeviceFailedValidationWarning": {
|
||||||
"сілкавання"
|
"message": "Ваша прылада, хутчэй за ўсё, падробка!"
|
||||||
],
|
}
|
||||||
"desc": ""
|
},
|
||||||
},
|
"characters": {
|
||||||
"SolderingMenu": {
|
"SettingRightChar": "П",
|
||||||
"text2": [
|
"SettingLeftChar": "Л",
|
||||||
"Налады",
|
"SettingAutoChar": "А",
|
||||||
"пайкі"
|
"SettingOffChar": "O",
|
||||||
],
|
"SettingSlowChar": "М",
|
||||||
"desc": ""
|
"SettingMediumChar": "С",
|
||||||
},
|
"SettingFastChar": "Х",
|
||||||
"PowerSavingMenu": {
|
"SettingStartNoneChar": "В",
|
||||||
"text2": [
|
"SettingStartSolderingChar": "П",
|
||||||
"Рэжымы",
|
"SettingStartSleepChar": "Ч",
|
||||||
"сну"
|
"SettingStartSleepOffChar": "К",
|
||||||
],
|
"SettingLockDisableChar": "А",
|
||||||
"desc": ""
|
"SettingLockBoostChar": "Т",
|
||||||
},
|
"SettingLockFullChar": "П"
|
||||||
"UIMenu": {
|
},
|
||||||
"text2": [
|
"menuGroups": {
|
||||||
"Налады",
|
"PowerMenu": {
|
||||||
"інтэрфейсу"
|
"displayText": "Налады\nсілкавання",
|
||||||
],
|
"description": ""
|
||||||
"desc": ""
|
},
|
||||||
},
|
"SolderingMenu": {
|
||||||
"AdvancedMenu": {
|
"displayText": "Налады\nпайкі",
|
||||||
"text2": [
|
"description": ""
|
||||||
"Дадатковыя",
|
},
|
||||||
"налады"
|
"PowerSavingMenu": {
|
||||||
],
|
"displayText": "Рэжымы\nсну",
|
||||||
"desc": ""
|
"description": ""
|
||||||
}
|
},
|
||||||
},
|
"UIMenu": {
|
||||||
"menuOptions": {
|
"displayText": "Налады\nінтэрфейсу",
|
||||||
"DCInCutoff": {
|
"description": ""
|
||||||
"text2": [
|
},
|
||||||
"Крыніца",
|
"AdvancedMenu": {
|
||||||
"сілкавання"
|
"displayText": "Дадатковыя\nналады",
|
||||||
],
|
"description": ""
|
||||||
"desc": "Крыніца сілкавання. Усталюе напругу адсечкі. (DC 10В) (S 3,3В на ячэйку, без абмежавання магутнасці)"
|
}
|
||||||
},
|
},
|
||||||
"MinVolCell": {
|
"menuOptions": {
|
||||||
"text2": [
|
"DCInCutoff": {
|
||||||
"Мін.",
|
"displayText": "Крыніца\nсілкавання",
|
||||||
"напр."
|
"description": "Крыніца сілкавання. Усталюе напругу адсечкі. (DC 10В) (S 3,3В на ячэйку, без абмежавання магутнасці)"
|
||||||
],
|
},
|
||||||
"desc": "Мінімальная дазволеная напруга на ячэйку (3S: 3 - 3,7V | 4S: 2,4 - 3,7V)"
|
"MinVolCell": {
|
||||||
},
|
"displayText": "Мін.\nнапр.",
|
||||||
"QCMaxVoltage": {
|
"description": "Мінімальная дазволеная напруга на ячэйку (3S: 3 - 3,7V | 4S: 2,4 - 3,7V)"
|
||||||
"text2": [
|
},
|
||||||
"Магутнасць",
|
"QCMaxVoltage": {
|
||||||
"сілкавання"
|
"displayText": "Магутнасць\nсілкавання",
|
||||||
],
|
"description": "Магутнасць выкарыстоўваемай крыніцы сілкавання"
|
||||||
"desc": "Магутнасць выкарыстоўваемай крыніцы сілкавання"
|
},
|
||||||
},
|
"PDNegTimeout": {
|
||||||
"PDNegTimeout": {
|
"displayText": "PD\nпрыпынак",
|
||||||
"text2": [
|
"description": "Час чакання ўзгаднення PD з крокам 100 мс для сумяшчальнасці з некаторымі зараднымі зараднымі прыладамі QC (0: адключана)"
|
||||||
"PD",
|
},
|
||||||
"прыпынак"
|
"BoostTemperature": {
|
||||||
],
|
"displayText": "t° турба\nрэжыму",
|
||||||
"desc": "Час чакання ўзгаднення PD з крокам 100 мс для сумяшчальнасці з некаторымі зараднымі зараднымі прыладамі QC (0: адключана)"
|
"description": "Тэмпература джала ў турба-рэжыме"
|
||||||
},
|
},
|
||||||
"BoostTemperature": {
|
"AutoStart": {
|
||||||
"text2": [
|
"displayText": "Аўта\nстарт",
|
||||||
"t° турба",
|
"description": "Рэжым, у якім запускаецца паяльнік пры падачы сілкавання (В=Выкл. | П=Пайка | Ч=Чаканне | К=Чаканне пры комн. тэмп.)"
|
||||||
"рэжыму"
|
},
|
||||||
],
|
"TempChangeShortStep": {
|
||||||
"desc": "Тэмпература джала ў турба-рэжыме"
|
"displayText": "Крок тэмп.\nкар. нац.",
|
||||||
},
|
"description": "Крок вымярэння тэмпературы пры кароткім націску кнопак"
|
||||||
"AutoStart": {
|
},
|
||||||
"text2": [
|
"TempChangeLongStep": {
|
||||||
"Аўта",
|
"displayText": "Крок тэмп.\nпад. нац.",
|
||||||
"старт"
|
"description": "Крок вымярэння тэмпературы пры падоўжаным націску кнопак"
|
||||||
],
|
},
|
||||||
"desc": "Рэжым, у якім запускаецца паяльнік пры падачы сілкавання (В=Выкл. | П=Пайка | Ч=Чаканне | К=Чаканне пры комн. тэмп.)"
|
"LockingMode": {
|
||||||
},
|
"displayText": "Дазволіць\nблок. кнопак",
|
||||||
"TempChangeShortStep": {
|
"description": "Пры рабоце падоўжаны націск дзьвух кнопак блакуе іх (А=Адключана | Т=Толькі турба | П=Поўная блакіроўка)"
|
||||||
"text2": [
|
},
|
||||||
"Крок тэмп.",
|
"MotionSensitivity": {
|
||||||
"кар. нац."
|
"displayText": "Адчувальнасць\nакселерометра",
|
||||||
],
|
"description": "Адчувальнасць акселерометра (0=Выкл. | 1=Мін. | ... | 9=Макс.)"
|
||||||
"desc": "Крок вымярэння тэмпературы пры кароткім націску кнопак"
|
},
|
||||||
},
|
"SleepTemperature": {
|
||||||
"TempChangeLongStep": {
|
"displayText": "Тэмп.\nчакання",
|
||||||
"text2": [
|
"description": "Тэмпература рэжыму чакання"
|
||||||
"Крок тэмп.",
|
},
|
||||||
"пад. нац."
|
"SleepTimeout": {
|
||||||
],
|
"displayText": "Таймаўт\nчакання",
|
||||||
"desc": "Крок вымярэння тэмпературы пры падоўжаным націску кнопак"
|
"description": "Час да пераходу ў рэжым чакання (Хвіліны | Секунды)"
|
||||||
},
|
},
|
||||||
"LockingMode": {
|
"ShutdownTimeout": {
|
||||||
"text2": [
|
"displayText": "Таймаут\nвыключэння",
|
||||||
"Дазволіць",
|
"description": "Час да адключэння паяльніка (Хвіліны)"
|
||||||
"блок. кнопак"
|
},
|
||||||
],
|
"HallEffSensitivity": {
|
||||||
"desc": "Пры рабоце падоўжаны націск дзьвух кнопак блакуе іх (А=Адключана | Т=Толькі турба | П=Поўная блакіроўка)"
|
"displayText": "Эфект Хола\nадчувальнасць",
|
||||||
},
|
"description": "Узровень адчувальнасці датчыка хола ў рэжыме сну (0=Выкл. | 1=Мін. | ... | 9=Макс.)"
|
||||||
"MotionSensitivity": {
|
},
|
||||||
"text2": [
|
"TemperatureUnit": {
|
||||||
"Адчувальнасць",
|
"displayText": "Адзінкі\nтэмпературы",
|
||||||
"акселерометра"
|
"description": "Адзінкі вымярэння тэмпературы (C=Цэльcія | F=Фарэнгейта)"
|
||||||
],
|
},
|
||||||
"desc": "Адчувальнасць акселерометра (0=Выкл. | 1=Мін. | ... | 9=Макс.)"
|
"DisplayRotation": {
|
||||||
},
|
"displayText": "Арыентацыя\nэкрану",
|
||||||
"SleepTemperature": {
|
"description": "Арыентацыя экрану (П=Правая рука | Л=Левая рука | А=Аўта)"
|
||||||
"text2": [
|
},
|
||||||
"Тэмп.",
|
"CooldownBlink": {
|
||||||
"чакання"
|
"displayText": "Мігценне t°\nпры астуджэнні",
|
||||||
],
|
"description": "Міргаць тэмпературай на экране астуджэння, пакуль джала яшчэ гарачае"
|
||||||
"desc": "Тэмпература рэжыму чакання"
|
},
|
||||||
},
|
"ScrollingSpeed": {
|
||||||
"SleepTimeout": {
|
"displayText": "Хуткацсь\nтексту",
|
||||||
"text2": [
|
"description": "Хуткасць гартання тэксту (М=марудна | Х=хутка)"
|
||||||
"Таймаўт",
|
},
|
||||||
"чакання"
|
"ReverseButtonTempChange": {
|
||||||
],
|
"displayText": "Інвертаваць\nкнопкі",
|
||||||
"desc": "Час да пераходу ў рэжым чакання (Хвіліны | Секунды)"
|
"description": "Інвертаваць кнопкі вымярэння тэмпературы"
|
||||||
},
|
},
|
||||||
"ShutdownTimeout": {
|
"AnimSpeed": {
|
||||||
"text2": [
|
"displayText": "Хуткасць\nанімацыі",
|
||||||
"Таймаут",
|
"description": "Хуткасць анімацыі гузікаў у галоўным меню (Мілісекунды) (А=Адключана | Н=Нізкая | С=Сярэдняя | В=Высокая)"
|
||||||
"выключэння"
|
},
|
||||||
],
|
"AnimLoop": {
|
||||||
"desc": "Час да адключэння паяльніка (Хвіліны)"
|
"displayText": "Зацыкленая\nанімацыя",
|
||||||
},
|
"description": "Зацыкленая анімацыя гузікаў у галоўным меню"
|
||||||
"HallEffSensitivity": {
|
},
|
||||||
"text2": [
|
"Brightness": {
|
||||||
"Эфект Хола",
|
"displayText": "Экран\nЯркасць",
|
||||||
"адчувальнасць"
|
"description": "Адрэгулюйце кантраснасць / яркасць OLED-экрана"
|
||||||
],
|
},
|
||||||
"desc": "Узровень адчувальнасці датчыка хола ў рэжыме сну (0=Выкл. | 1=Мін. | ... | 9=Макс.)"
|
"ColourInversion": {
|
||||||
},
|
"displayText": "Экран\nІнвертаваць",
|
||||||
"TemperatureUnit": {
|
"description": "Інвертаваць колеры OLED-экрана"
|
||||||
"text2": [
|
},
|
||||||
"Адзінкі",
|
"LOGOTime": {
|
||||||
"тэмпературы"
|
"displayText": "Лагатып загрузкі\nпрацягласць",
|
||||||
],
|
"description": "Усталяваць працягласць лагатыпа загрузкі (s=Секунды)"
|
||||||
"desc": "Адзінкі вымярэння тэмпературы (C=Цэльcія | F=Фарэнгейта)"
|
},
|
||||||
},
|
"AdvancedIdle": {
|
||||||
"DisplayRotation": {
|
"displayText": "Падрабязны\nрэжым чакання",
|
||||||
"text2": [
|
"description": "Адлюстроўваць дэталёвую инфармацыю паменьшаным шрыфтом на экране чакання"
|
||||||
"Арыентацыя",
|
},
|
||||||
"экрану"
|
"AdvancedSoldering": {
|
||||||
],
|
"displayText": "Падрабязны\nэкран пайкі",
|
||||||
"desc": "Арыентацыя экрану (П=Правая рука | Л=Левая рука | А=Аўта)"
|
"description": "Паказваць дэталёвую інформацыю на экране пайкі"
|
||||||
},
|
},
|
||||||
"CooldownBlink": {
|
"PowerLimit": {
|
||||||
"text2": [
|
"displayText": "Межы\nмагутнасці",
|
||||||
"Мігценне t°",
|
"description": "Максімальная магутнасць, якую можа выкарыстоўваць паяльнік (Ватт)"
|
||||||
"пры астуджэнні"
|
},
|
||||||
],
|
"CalibrateCJC": {
|
||||||
"desc": "Міргаць тэмпературай на экране астуджэння, пакуль джала яшчэ гарачае"
|
"displayText": "Каліброўка тэмпературы\nпры наступнай загрузцы",
|
||||||
},
|
"description": "Каліброўка тэмпературы пры наступным уключэнні (не патрабуецца, калі розніца тэмператур меньш за 5°C)"
|
||||||
"ScrollingSpeed": {
|
},
|
||||||
"text2": [
|
"VoltageCalibration": {
|
||||||
"Хуткацсь",
|
"displayText": "Каліброўка\nнапругі",
|
||||||
"тексту"
|
"description": "Каліброўка ўваходнай напругі (падоўжаны націск для выхаду)"
|
||||||
],
|
},
|
||||||
"desc": "Хуткасць гартання тэксту (М=марудна | Х=хутка)"
|
"PowerPulsePower": {
|
||||||
},
|
"displayText": "Сіла імп.\nсілкав. Вт",
|
||||||
"ReverseButtonTempChange": {
|
"description": "Моц імпульса ўтрымливаючага ад сну павербанку ці іншай крыніцы сілкавання"
|
||||||
"text2": [
|
},
|
||||||
"Інвертаваць",
|
"PowerPulseWait": {
|
||||||
"кнопкі"
|
"displayText": "Імпульс магутнасці\nчас чакання",
|
||||||
],
|
"description": "Час чакання перад запускам кожнага імпульсу няспання (x 2.5 с)"
|
||||||
"desc": "Інвертаваць кнопкі вымярэння тэмпературы"
|
},
|
||||||
},
|
"PowerPulseDuration": {
|
||||||
"AnimSpeed": {
|
"displayText": "Імпульс магутнасці\nпрацягласць",
|
||||||
"text2": [
|
"description": "Працягласць імпульсу няспання (x 250 мс)"
|
||||||
"Хуткасць",
|
},
|
||||||
"анімацыі"
|
"SettingsReset": {
|
||||||
],
|
"displayText": "Скід\nналадаў",
|
||||||
"desc": "Хуткасць анімацыі гузікаў у галоўным меню (Мілісекунды) (А=Адключана | Н=Нізкая | С=Сярэдняя | В=Высокая)"
|
"description": "Скід наладаў да першапачатковых значэнняў"
|
||||||
},
|
},
|
||||||
"AnimLoop": {
|
"LanguageSwitch": {
|
||||||
"text2": [
|
"displayText": "Мова:\n BY Беларуская",
|
||||||
"Зацыкленая",
|
"description": ""
|
||||||
"анімацыя"
|
}
|
||||||
],
|
}
|
||||||
"desc": "Зацыкленая анімацыя гузікаў у галоўным меню"
|
|
||||||
},
|
|
||||||
"Brightness": {
|
|
||||||
"text2": [
|
|
||||||
"Экран",
|
|
||||||
"Яркасць"
|
|
||||||
],
|
|
||||||
"desc": "Адрэгулюйце кантраснасць / яркасць OLED-экрана"
|
|
||||||
},
|
|
||||||
"ColourInversion": {
|
|
||||||
"text2": [
|
|
||||||
"Экран",
|
|
||||||
"Інвертаваць"
|
|
||||||
],
|
|
||||||
"desc": "Інвертаваць колеры OLED-экрана"
|
|
||||||
},
|
|
||||||
"LOGOTime": {
|
|
||||||
"text2": [
|
|
||||||
"Лагатып загрузкі",
|
|
||||||
"працягласць"
|
|
||||||
],
|
|
||||||
"desc": "Усталяваць працягласць лагатыпа загрузкі (s=Секунды)"
|
|
||||||
},
|
|
||||||
"AdvancedIdle": {
|
|
||||||
"text2": [
|
|
||||||
"Падрабязны",
|
|
||||||
"рэжым чакання"
|
|
||||||
],
|
|
||||||
"desc": "Адлюстроўваць дэталёвую инфармацыю паменьшаным шрыфтом на экране чакання"
|
|
||||||
},
|
|
||||||
"AdvancedSoldering": {
|
|
||||||
"text2": [
|
|
||||||
"Падрабязны",
|
|
||||||
"экран пайкі"
|
|
||||||
],
|
|
||||||
"desc": "Паказваць дэталёвую інформацыю на экране пайкі"
|
|
||||||
},
|
|
||||||
"PowerLimit": {
|
|
||||||
"text2": [
|
|
||||||
"Межы",
|
|
||||||
"магутнасці"
|
|
||||||
],
|
|
||||||
"desc": "Максімальная магутнасць, якую можа выкарыстоўваць паяльнік (Ватт)"
|
|
||||||
},
|
|
||||||
"CalibrateCJC": {
|
|
||||||
"text2": [
|
|
||||||
"Каліброўка тэмпературы",
|
|
||||||
"пры наступнай загрузцы"
|
|
||||||
],
|
|
||||||
"desc": "Каліброўка тэмпературы пры наступным уключэнні (не патрабуецца, калі розніца тэмператур меньш за 5°C)"
|
|
||||||
},
|
|
||||||
"VoltageCalibration": {
|
|
||||||
"text2": [
|
|
||||||
"Каліброўка",
|
|
||||||
"напругі"
|
|
||||||
],
|
|
||||||
"desc": "Каліброўка ўваходнай напругі (падоўжаны націск для выхаду)"
|
|
||||||
},
|
|
||||||
"PowerPulsePower": {
|
|
||||||
"text2": [
|
|
||||||
"Сіла імп.",
|
|
||||||
"сілкав. Вт"
|
|
||||||
],
|
|
||||||
"desc": "Моц імпульса ўтрымливаючага ад сну павербанку ці іншай крыніцы сілкавання"
|
|
||||||
},
|
|
||||||
"PowerPulseWait": {
|
|
||||||
"text2": [
|
|
||||||
"Імпульс магутнасці",
|
|
||||||
"час чакання"
|
|
||||||
],
|
|
||||||
"desc": "Час чакання перад запускам кожнага імпульсу няспання (x 2.5 с)"
|
|
||||||
},
|
|
||||||
"PowerPulseDuration": {
|
|
||||||
"text2": [
|
|
||||||
"Імпульс магутнасці",
|
|
||||||
"працягласць"
|
|
||||||
],
|
|
||||||
"desc": "Працягласць імпульсу няспання (x 250 мс)"
|
|
||||||
},
|
|
||||||
"SettingsReset": {
|
|
||||||
"text2": [
|
|
||||||
"Скід",
|
|
||||||
"наладаў"
|
|
||||||
],
|
|
||||||
"desc": "Скід наладаў да першапачатковых значэнняў"
|
|
||||||
},
|
|
||||||
"LanguageSwitch": {
|
|
||||||
"text2": [
|
|
||||||
"Мова:",
|
|
||||||
" BY Беларуская"
|
|
||||||
],
|
|
||||||
"desc": ""
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@@ -1,337 +1,243 @@
|
|||||||
{
|
{
|
||||||
"languageCode": "BG",
|
"languageCode": "BG",
|
||||||
"languageLocalName": "Български",
|
"languageLocalName": "Български",
|
||||||
"tempUnitFahrenheit": false,
|
"tempUnitFahrenheit": false,
|
||||||
"messages": {
|
"messagesWarn": {
|
||||||
"SettingsCalibrationWarning": "Before rebooting, make sure tip & handle are at room temperature!",
|
"CJCCalibrationDone": {
|
||||||
"CJCCalibrating": "calibrating",
|
"message": "Calibration\ndone!"
|
||||||
"SettingsResetWarning": "Сигурни ли сте, че искате да върнете фабричните настройки?",
|
},
|
||||||
"UVLOWarningString": "Ниско DC Напрежение",
|
"ResetOKMessage": {
|
||||||
"UndervoltageString": "Ниско Напрежение",
|
"message": "Нулиране"
|
||||||
"InputVoltageString": "Входно V: ",
|
},
|
||||||
"SleepingSimpleString": "Сън",
|
"SettingsResetMessage": {
|
||||||
"SleepingAdvancedString": "Хър Хър Хър...",
|
"message": "Настройките бяха\nнулирани!"
|
||||||
"SleepingTipAdvancedString": "Връх:",
|
},
|
||||||
"OffString": "Изкл.",
|
"NoAccelerometerMessage": {
|
||||||
"DeviceFailedValidationWarning": "Your device is most likely a counterfeit!"
|
"message": "No accelerometer\ndetected!"
|
||||||
},
|
},
|
||||||
"messagesWarn": {
|
"NoPowerDeliveryMessage": {
|
||||||
"CJCCalibrationDone": [
|
"message": "No USB-PD IC\ndetected!"
|
||||||
"Calibration",
|
},
|
||||||
"done!"
|
"LockingKeysString": {
|
||||||
],
|
"message": "LOCKED"
|
||||||
"ResetOKMessage": "Нулиране",
|
},
|
||||||
"SettingsResetMessage": [
|
"UnlockingKeysString": {
|
||||||
"Настройките бяха",
|
"message": "UNLOCKED"
|
||||||
"нулирани!"
|
},
|
||||||
],
|
"WarningKeysLockedString": {
|
||||||
"NoAccelerometerMessage": [
|
"message": "!LOCKED!"
|
||||||
"No accelerometer",
|
},
|
||||||
"detected!"
|
"WarningThermalRunaway": {
|
||||||
],
|
"message": "Thermal\nRunaway"
|
||||||
"NoPowerDeliveryMessage": [
|
},
|
||||||
"No USB-PD IC",
|
"SettingsCalibrationWarning": {
|
||||||
"detected!"
|
"message": "Before rebooting, make sure tip & handle are at room temperature!"
|
||||||
],
|
},
|
||||||
"LockingKeysString": "LOCKED",
|
"CJCCalibrating": {
|
||||||
"UnlockingKeysString": "UNLOCKED",
|
"message": "calibrating"
|
||||||
"WarningKeysLockedString": "!LOCKED!",
|
},
|
||||||
"WarningThermalRunaway": [
|
"SettingsResetWarning": {
|
||||||
"Thermal",
|
"message": "Сигурни ли сте, че искате да върнете фабричните настройки?"
|
||||||
"Runaway"
|
},
|
||||||
]
|
"UVLOWarningString": {
|
||||||
},
|
"message": "Ниско DC Напрежение"
|
||||||
"characters": {
|
},
|
||||||
"SettingRightChar": "R",
|
"UndervoltageString": {
|
||||||
"SettingLeftChar": "L",
|
"message": "Ниско Напрежение"
|
||||||
"SettingAutoChar": "A",
|
},
|
||||||
"SettingOffChar": "O",
|
"InputVoltageString": {
|
||||||
"SettingSlowChar": "S",
|
"message": "Входно V: "
|
||||||
"SettingMediumChar": "M",
|
},
|
||||||
"SettingFastChar": "F",
|
"SleepingSimpleString": {
|
||||||
"SettingStartNoneChar": "И",
|
"message": "Сън"
|
||||||
"SettingStartSolderingChar": "Р",
|
},
|
||||||
"SettingStartSleepChar": "С",
|
"SleepingAdvancedString": {
|
||||||
"SettingStartSleepOffChar": "П",
|
"message": "Хър Хър Хър..."
|
||||||
"SettingLockDisableChar": "D",
|
},
|
||||||
"SettingLockBoostChar": "B",
|
"SleepingTipAdvancedString": {
|
||||||
"SettingLockFullChar": "F"
|
"message": "Връх:"
|
||||||
},
|
},
|
||||||
"menuGroups": {
|
"OffString": {
|
||||||
"PowerMenu": {
|
"message": "Изкл."
|
||||||
"text2": [
|
},
|
||||||
"Power",
|
"DeviceFailedValidationWarning": {
|
||||||
"settings"
|
"message": "Your device is most likely a counterfeit!"
|
||||||
],
|
}
|
||||||
"desc": ""
|
},
|
||||||
},
|
"characters": {
|
||||||
"SolderingMenu": {
|
"SettingRightChar": "R",
|
||||||
"text2": [
|
"SettingLeftChar": "L",
|
||||||
"Поялник",
|
"SettingAutoChar": "A",
|
||||||
"Настройки"
|
"SettingOffChar": "O",
|
||||||
],
|
"SettingSlowChar": "S",
|
||||||
"desc": ""
|
"SettingMediumChar": "M",
|
||||||
},
|
"SettingFastChar": "F",
|
||||||
"PowerSavingMenu": {
|
"SettingStartNoneChar": "И",
|
||||||
"text2": [
|
"SettingStartSolderingChar": "Р",
|
||||||
"Режими",
|
"SettingStartSleepChar": "С",
|
||||||
"Настройки"
|
"SettingStartSleepOffChar": "П",
|
||||||
],
|
"SettingLockDisableChar": "D",
|
||||||
"desc": ""
|
"SettingLockBoostChar": "B",
|
||||||
},
|
"SettingLockFullChar": "F"
|
||||||
"UIMenu": {
|
},
|
||||||
"text2": [
|
"menuGroups": {
|
||||||
"Интерфейс",
|
"PowerMenu": {
|
||||||
"Настройки"
|
"displayText": "Power\nsettings",
|
||||||
],
|
"description": ""
|
||||||
"desc": ""
|
},
|
||||||
},
|
"SolderingMenu": {
|
||||||
"AdvancedMenu": {
|
"displayText": "Поялник\nНастройки",
|
||||||
"text2": [
|
"description": ""
|
||||||
"Разширени",
|
},
|
||||||
"Настройки"
|
"PowerSavingMenu": {
|
||||||
],
|
"displayText": "Режими\nНастройки",
|
||||||
"desc": ""
|
"description": ""
|
||||||
}
|
},
|
||||||
},
|
"UIMenu": {
|
||||||
"menuOptions": {
|
"displayText": "Интерфейс\nНастройки",
|
||||||
"DCInCutoff": {
|
"description": ""
|
||||||
"text2": [
|
},
|
||||||
"Източник",
|
"AdvancedMenu": {
|
||||||
"захранване"
|
"displayText": "Разширени\nНастройки",
|
||||||
],
|
"description": ""
|
||||||
"desc": "Източник на захранване. Минимално напрежение. (DC 10V) (S 3,3V за клетка)"
|
}
|
||||||
},
|
},
|
||||||
"MinVolCell": {
|
"menuOptions": {
|
||||||
"text2": [
|
"DCInCutoff": {
|
||||||
"Minimum",
|
"displayText": "Източник\nзахранване",
|
||||||
"voltage"
|
"description": "Източник на захранване. Минимално напрежение. (DC 10V) (S 3,3V за клетка)"
|
||||||
],
|
},
|
||||||
"desc": "Minimum allowed voltage per battery cell (3S: 3 - 3,7V | 4-6S: 2,4 - 3,7V)"
|
"MinVolCell": {
|
||||||
},
|
"displayText": "Minimum\nvoltage",
|
||||||
"QCMaxVoltage": {
|
"description": "Minimum allowed voltage per battery cell (3S: 3 - 3,7V | 4-6S: 2,4 - 3,7V)"
|
||||||
"text2": [
|
},
|
||||||
"Мощност на",
|
"QCMaxVoltage": {
|
||||||
"захранване"
|
"displayText": "Мощност на\nзахранване",
|
||||||
],
|
"description": "Мощност на избраното захранване"
|
||||||
"desc": "Мощност на избраното захранване"
|
},
|
||||||
},
|
"PDNegTimeout": {
|
||||||
"PDNegTimeout": {
|
"displayText": "PD\ntimeout",
|
||||||
"text2": [
|
"description": "PD negotiation timeout in 100ms steps for compatibility with some QC chargers"
|
||||||
"PD",
|
},
|
||||||
"timeout"
|
"BoostTemperature": {
|
||||||
],
|
"displayText": "Турбо\nтемп.",
|
||||||
"desc": "PD negotiation timeout in 100ms steps for compatibility with some QC chargers"
|
"description": "Температура за \"турбо\" режим"
|
||||||
},
|
},
|
||||||
"BoostTemperature": {
|
"AutoStart": {
|
||||||
"text2": [
|
"displayText": "Автоматичен\nработен режим",
|
||||||
"Турбо",
|
"description": "Режим на поялника при включване на захранването. (И=Изключен | Р=Работен | С=Сън | П=Сън температура помещение)"
|
||||||
"темп."
|
},
|
||||||
],
|
"TempChangeShortStep": {
|
||||||
"desc": "Температура за \"турбо\" режим"
|
"displayText": "Промяна T\nбързо?",
|
||||||
},
|
"description": "Промяна на температура при бързо натискане на бутон!"
|
||||||
"AutoStart": {
|
},
|
||||||
"text2": [
|
"TempChangeLongStep": {
|
||||||
"Автоматичен",
|
"displayText": "Промяна Т\nзадържане?",
|
||||||
"работен режим"
|
"description": "Промяна на температура при задържане на бутон!"
|
||||||
],
|
},
|
||||||
"desc": "Режим на поялника при включване на захранването. (И=Изключен | Р=Работен | С=Сън | П=Сън температура помещение)"
|
"LockingMode": {
|
||||||
},
|
"displayText": "Allow locking\nbuttons",
|
||||||
"TempChangeShortStep": {
|
"description": "While soldering, hold down both buttons to toggle locking them (D=disable | B=boost mode only | F=full locking)"
|
||||||
"text2": [
|
},
|
||||||
"Промяна T",
|
"MotionSensitivity": {
|
||||||
"бързо?"
|
"displayText": "Усещане\nза движение",
|
||||||
],
|
"description": "Усещане за движение (0=Изключено | 1=Слабо | ... | 9=Силно)"
|
||||||
"desc": "Промяна на температура при бързо натискане на бутон!"
|
},
|
||||||
},
|
"SleepTemperature": {
|
||||||
"TempChangeLongStep": {
|
"displayText": "Темп.\nсън",
|
||||||
"text2": [
|
"description": "Температура при режим \"сън\" (C)"
|
||||||
"Промяна Т",
|
},
|
||||||
"задържане?"
|
"SleepTimeout": {
|
||||||
],
|
"displayText": "Време\nсън",
|
||||||
"desc": "Промяна на температура при задържане на бутон!"
|
"description": "Включване в режим \"сън\" след: (Минути | Секунди)"
|
||||||
},
|
},
|
||||||
"LockingMode": {
|
"ShutdownTimeout": {
|
||||||
"text2": [
|
"displayText": "Време\nизкл.",
|
||||||
"Allow locking",
|
"description": "Изключване след (Минути)"
|
||||||
"buttons"
|
},
|
||||||
],
|
"HallEffSensitivity": {
|
||||||
"desc": "While soldering, hold down both buttons to toggle locking them (D=disable | B=boost mode only | F=full locking)"
|
"displayText": "Hall sensor\nsensitivity",
|
||||||
},
|
"description": "Sensitivity to magnets (0=Изключено | 1=Слабо | ... | 9=Силно)"
|
||||||
"MotionSensitivity": {
|
},
|
||||||
"text2": [
|
"TemperatureUnit": {
|
||||||
"Усещане",
|
"displayText": "Единици за\nтемпература",
|
||||||
"за движение"
|
"description": "Единици за температура (C=Целзии | F=Фаренхайт)"
|
||||||
],
|
},
|
||||||
"desc": "Усещане за движение (0=Изключено | 1=Слабо | ... | 9=Силно)"
|
"DisplayRotation": {
|
||||||
},
|
"displayText": "Ориентация\nна дисплея",
|
||||||
"SleepTemperature": {
|
"description": "Ориентация на дисплея (R=Дясна Ръка | L=Лява Ръка | A=Автоматично)"
|
||||||
"text2": [
|
},
|
||||||
"Темп.",
|
"CooldownBlink": {
|
||||||
"сън"
|
"displayText": "Мигай при\nтопъл поялник",
|
||||||
],
|
"description": "След изключване от работен режим, индикатора за температура да мига докато човката на поялника все още е топла"
|
||||||
"desc": "Температура при режим \"сън\" (C)"
|
},
|
||||||
},
|
"ScrollingSpeed": {
|
||||||
"SleepTimeout": {
|
"displayText": "Скорост\nна текста",
|
||||||
"text2": [
|
"description": "Скорост на движение на този текст"
|
||||||
"Време",
|
},
|
||||||
"сън"
|
"ReverseButtonTempChange": {
|
||||||
],
|
"displayText": "Размяна\nбутони +-?",
|
||||||
"desc": "Включване в режим \"сън\" след: (Минути | Секунди)"
|
"description": "Обръщане на бутоните \"+\" и \"-\" за промяна на температурата на върха на поялника"
|
||||||
},
|
},
|
||||||
"ShutdownTimeout": {
|
"AnimSpeed": {
|
||||||
"text2": [
|
"displayText": "Anim.\nspeed",
|
||||||
"Време",
|
"description": "Pace of icon animations in menu (O=off | S=slow | M=medium | F=fast)"
|
||||||
"изкл."
|
},
|
||||||
],
|
"AnimLoop": {
|
||||||
"desc": "Изключване след (Минути)"
|
"displayText": "Anim.\nloop",
|
||||||
},
|
"description": "Loop icon animations in main menu"
|
||||||
"HallEffSensitivity": {
|
},
|
||||||
"text2": [
|
"Brightness": {
|
||||||
"Hall sensor",
|
"displayText": "Screen\nbrightness",
|
||||||
"sensitivity"
|
"description": "Adjust the OLED screen brightness"
|
||||||
],
|
},
|
||||||
"desc": "Sensitivity to magnets (0=Изключено | 1=Слабо | ... | 9=Силно)"
|
"ColourInversion": {
|
||||||
},
|
"displayText": "Invert\nscreen",
|
||||||
"TemperatureUnit": {
|
"description": "Invert the OLED screen colors"
|
||||||
"text2": [
|
},
|
||||||
"Единици за",
|
"LOGOTime": {
|
||||||
"температура"
|
"displayText": "Boot logo\nduration",
|
||||||
],
|
"description": "Set boot logo duration (s=seconds)"
|
||||||
"desc": "Единици за температура (C=Целзии | F=Фаренхайт)"
|
},
|
||||||
},
|
"AdvancedIdle": {
|
||||||
"DisplayRotation": {
|
"displayText": "Детайлен\nекран в покой",
|
||||||
"text2": [
|
"description": "Покажи детайлна информация със ситен шрифт на екрана в режим на покой."
|
||||||
"Ориентация",
|
},
|
||||||
"на дисплея"
|
"AdvancedSoldering": {
|
||||||
],
|
"displayText": "Детайлен\nработен екран",
|
||||||
"desc": "Ориентация на дисплея (R=Дясна Ръка | L=Лява Ръка | A=Автоматично)"
|
"description": "Детайлна информация в работен режим при запояване"
|
||||||
},
|
},
|
||||||
"CooldownBlink": {
|
"PowerLimit": {
|
||||||
"text2": [
|
"displayText": "Лимит на\nмощност",
|
||||||
"Мигай при",
|
"description": "Максимална мощност на поялника (Watt)"
|
||||||
"топъл поялник"
|
},
|
||||||
],
|
"CalibrateCJC": {
|
||||||
"desc": "След изключване от работен режим, индикатора за температура да мига докато човката на поялника все още е топла"
|
"displayText": "Calibrate CJC\nat next boot",
|
||||||
},
|
"description": "At next boot tip Cold Junction Compensation will be calibrated (not required if Delta T is < 5 C)"
|
||||||
"ScrollingSpeed": {
|
},
|
||||||
"text2": [
|
"VoltageCalibration": {
|
||||||
"Скорост",
|
"displayText": "Калибриране\nнапрежение?",
|
||||||
"на текста"
|
"description": "Калибриране на входното напрежение. Задръжте бутонa за изход"
|
||||||
],
|
},
|
||||||
"desc": "Скорост на движение на този текст"
|
"PowerPulsePower": {
|
||||||
},
|
"displayText": "Захранващ\nимпулс",
|
||||||
"ReverseButtonTempChange": {
|
"description": "Поддържане на интензивност на захранващия импулс"
|
||||||
"text2": [
|
},
|
||||||
"Размяна",
|
"PowerPulseWait": {
|
||||||
"бутони +-?"
|
"displayText": "Power pulse\ndelay",
|
||||||
],
|
"description": "Delay before keep-awake-pulse is triggered (x 2,5с)"
|
||||||
"desc": "Обръщане на бутоните \"+\" и \"-\" за промяна на температурата на върха на поялника"
|
},
|
||||||
},
|
"PowerPulseDuration": {
|
||||||
"AnimSpeed": {
|
"displayText": "Power pulse\nduration",
|
||||||
"text2": [
|
"description": "Keep-awake-pulse duration (x 250мс)"
|
||||||
"Anim.",
|
},
|
||||||
"speed"
|
"SettingsReset": {
|
||||||
],
|
"displayText": "Фабрични\nнастройки?",
|
||||||
"desc": "Pace of icon animations in menu (O=off | S=slow | M=medium | F=fast)"
|
"description": "Връщане на фабрични настройки"
|
||||||
},
|
},
|
||||||
"AnimLoop": {
|
"LanguageSwitch": {
|
||||||
"text2": [
|
"displayText": "Език:\n BG Български",
|
||||||
"Anim.",
|
"description": ""
|
||||||
"loop"
|
}
|
||||||
],
|
}
|
||||||
"desc": "Loop icon animations in main menu"
|
|
||||||
},
|
|
||||||
"Brightness": {
|
|
||||||
"text2": [
|
|
||||||
"Screen",
|
|
||||||
"brightness"
|
|
||||||
],
|
|
||||||
"desc": "Adjust the OLED screen brightness"
|
|
||||||
},
|
|
||||||
"ColourInversion": {
|
|
||||||
"text2": [
|
|
||||||
"Invert",
|
|
||||||
"screen"
|
|
||||||
],
|
|
||||||
"desc": "Invert the OLED screen colors"
|
|
||||||
},
|
|
||||||
"LOGOTime": {
|
|
||||||
"text2": [
|
|
||||||
"Boot logo",
|
|
||||||
"duration"
|
|
||||||
],
|
|
||||||
"desc": "Set boot logo duration (s=seconds)"
|
|
||||||
},
|
|
||||||
"AdvancedIdle": {
|
|
||||||
"text2": [
|
|
||||||
"Детайлен",
|
|
||||||
"екран в покой"
|
|
||||||
],
|
|
||||||
"desc": "Покажи детайлна информация със ситен шрифт на екрана в режим на покой."
|
|
||||||
},
|
|
||||||
"AdvancedSoldering": {
|
|
||||||
"text2": [
|
|
||||||
"Детайлен",
|
|
||||||
"работен екран"
|
|
||||||
],
|
|
||||||
"desc": "Детайлна информация в работен режим при запояване"
|
|
||||||
},
|
|
||||||
"PowerLimit": {
|
|
||||||
"text2": [
|
|
||||||
"Лимит на",
|
|
||||||
"мощност"
|
|
||||||
],
|
|
||||||
"desc": "Максимална мощност на поялника (Watt)"
|
|
||||||
},
|
|
||||||
"CalibrateCJC": {
|
|
||||||
"text2": [
|
|
||||||
"Calibrate CJC",
|
|
||||||
"at next boot"
|
|
||||||
],
|
|
||||||
"desc": "At next boot tip Cold Junction Compensation will be calibrated (not required if Delta T is < 5 C)"
|
|
||||||
},
|
|
||||||
"VoltageCalibration": {
|
|
||||||
"text2": [
|
|
||||||
"Калибриране",
|
|
||||||
"напрежение?"
|
|
||||||
],
|
|
||||||
"desc": "Калибриране на входното напрежение. Задръжте бутонa за изход"
|
|
||||||
},
|
|
||||||
"PowerPulsePower": {
|
|
||||||
"text2": [
|
|
||||||
"Захранващ",
|
|
||||||
"импулс"
|
|
||||||
],
|
|
||||||
"desc": "Поддържане на интензивност на захранващия импулс"
|
|
||||||
},
|
|
||||||
"PowerPulseWait": {
|
|
||||||
"text2": [
|
|
||||||
"Power pulse",
|
|
||||||
"delay"
|
|
||||||
],
|
|
||||||
"desc": "Delay before keep-awake-pulse is triggered (x 2,5с)"
|
|
||||||
},
|
|
||||||
"PowerPulseDuration": {
|
|
||||||
"text2": [
|
|
||||||
"Power pulse",
|
|
||||||
"duration"
|
|
||||||
],
|
|
||||||
"desc": "Keep-awake-pulse duration (x 250мс)"
|
|
||||||
},
|
|
||||||
"SettingsReset": {
|
|
||||||
"text2": [
|
|
||||||
"Фабрични",
|
|
||||||
"настройки?"
|
|
||||||
],
|
|
||||||
"desc": "Връщане на фабрични настройки"
|
|
||||||
},
|
|
||||||
"LanguageSwitch": {
|
|
||||||
"text2": [
|
|
||||||
"Език:",
|
|
||||||
" BG Български"
|
|
||||||
],
|
|
||||||
"desc": ""
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@@ -1,337 +1,243 @@
|
|||||||
{
|
{
|
||||||
"languageCode": "CS",
|
"languageCode": "CS",
|
||||||
"languageLocalName": "Český",
|
"languageLocalName": "Český",
|
||||||
"tempUnitFahrenheit": false,
|
"tempUnitFahrenheit": false,
|
||||||
"messages": {
|
"messagesWarn": {
|
||||||
"SettingsCalibrationWarning": "Before rebooting, make sure tip & handle are at room temperature!",
|
"CJCCalibrationDone": {
|
||||||
"CJCCalibrating": "calibrating",
|
"message": "Calibration\ndone!"
|
||||||
"SettingsResetWarning": "Opravdu chcete resetovat zařízení do továrního nastavení?",
|
},
|
||||||
"UVLOWarningString": "Nízké DC",
|
"ResetOKMessage": {
|
||||||
"UndervoltageString": "Nízké napětí",
|
"message": "Reset OK"
|
||||||
"InputVoltageString": "Napětí: ",
|
},
|
||||||
"SleepingSimpleString": "Zzz ",
|
"SettingsResetMessage": {
|
||||||
"SleepingAdvancedString": "Režim spánku...",
|
"message": "Nějaká nastavení\nbyla změněna!"
|
||||||
"SleepingTipAdvancedString": "Hrot:",
|
},
|
||||||
"OffString": "Vyp",
|
"NoAccelerometerMessage": {
|
||||||
"DeviceFailedValidationWarning": "Your device is most likely a counterfeit!"
|
"message": "Akcelerometr\nnebyl detekován!"
|
||||||
},
|
},
|
||||||
"messagesWarn": {
|
"NoPowerDeliveryMessage": {
|
||||||
"CJCCalibrationDone": [
|
"message": "Žádný IO USB-PD\nnebyl detekován!"
|
||||||
"Calibration",
|
},
|
||||||
"done!"
|
"LockingKeysString": {
|
||||||
],
|
"message": "ZAMČENO"
|
||||||
"ResetOKMessage": "Reset OK",
|
},
|
||||||
"SettingsResetMessage": [
|
"UnlockingKeysString": {
|
||||||
"Nějaká nastavení",
|
"message": "ODEMČENO"
|
||||||
"byla změněna!"
|
},
|
||||||
],
|
"WarningKeysLockedString": {
|
||||||
"NoAccelerometerMessage": [
|
"message": "ZAMČENO!"
|
||||||
"Akcelerometr",
|
},
|
||||||
"nebyl detekován!"
|
"WarningThermalRunaway": {
|
||||||
],
|
"message": "Teplotní\nOchrana"
|
||||||
"NoPowerDeliveryMessage": [
|
},
|
||||||
"Žádný IO USB-PD",
|
"SettingsCalibrationWarning": {
|
||||||
"nebyl detekován!"
|
"message": "Before rebooting, make sure tip & handle are at room temperature!"
|
||||||
],
|
},
|
||||||
"LockingKeysString": "ZAMČENO",
|
"CJCCalibrating": {
|
||||||
"UnlockingKeysString": "ODEMČENO",
|
"message": "calibrating"
|
||||||
"WarningKeysLockedString": "ZAMČENO!",
|
},
|
||||||
"WarningThermalRunaway": [
|
"SettingsResetWarning": {
|
||||||
"Teplotní",
|
"message": "Opravdu chcete resetovat zařízení do továrního nastavení?"
|
||||||
"Ochrana"
|
},
|
||||||
]
|
"UVLOWarningString": {
|
||||||
},
|
"message": "Nízké DC"
|
||||||
"characters": {
|
},
|
||||||
"SettingRightChar": "P",
|
"UndervoltageString": {
|
||||||
"SettingLeftChar": "L",
|
"message": "Nízké napětí"
|
||||||
"SettingAutoChar": "A",
|
},
|
||||||
"SettingOffChar": "D",
|
"InputVoltageString": {
|
||||||
"SettingSlowChar": "P",
|
"message": "Napětí: "
|
||||||
"SettingMediumChar": "S",
|
},
|
||||||
"SettingFastChar": "R",
|
"SleepingSimpleString": {
|
||||||
"SettingStartNoneChar": "V",
|
"message": "Zzz "
|
||||||
"SettingStartSolderingChar": "P",
|
},
|
||||||
"SettingStartSleepChar": "S",
|
"SleepingAdvancedString": {
|
||||||
"SettingStartSleepOffChar": "M",
|
"message": "Režim spánku..."
|
||||||
"SettingLockDisableChar": "Z",
|
},
|
||||||
"SettingLockBoostChar": "B",
|
"SleepingTipAdvancedString": {
|
||||||
"SettingLockFullChar": "U"
|
"message": "Hrot:"
|
||||||
},
|
},
|
||||||
"menuGroups": {
|
"OffString": {
|
||||||
"PowerMenu": {
|
"message": "Vyp"
|
||||||
"text2": [
|
},
|
||||||
"Napájecí",
|
"DeviceFailedValidationWarning": {
|
||||||
"nastavení"
|
"message": "Your device is most likely a counterfeit!"
|
||||||
],
|
}
|
||||||
"desc": ""
|
},
|
||||||
},
|
"characters": {
|
||||||
"SolderingMenu": {
|
"SettingRightChar": "P",
|
||||||
"text2": [
|
"SettingLeftChar": "L",
|
||||||
"Pájecí",
|
"SettingAutoChar": "A",
|
||||||
"nastavení"
|
"SettingOffChar": "D",
|
||||||
],
|
"SettingSlowChar": "P",
|
||||||
"desc": ""
|
"SettingMediumChar": "S",
|
||||||
},
|
"SettingFastChar": "R",
|
||||||
"PowerSavingMenu": {
|
"SettingStartNoneChar": "V",
|
||||||
"text2": [
|
"SettingStartSolderingChar": "P",
|
||||||
"Režim",
|
"SettingStartSleepChar": "S",
|
||||||
"spánku"
|
"SettingStartSleepOffChar": "M",
|
||||||
],
|
"SettingLockDisableChar": "Z",
|
||||||
"desc": ""
|
"SettingLockBoostChar": "B",
|
||||||
},
|
"SettingLockFullChar": "U"
|
||||||
"UIMenu": {
|
},
|
||||||
"text2": [
|
"menuGroups": {
|
||||||
"Uživatelské",
|
"PowerMenu": {
|
||||||
"rozhraní"
|
"displayText": "Napájecí\nnastavení",
|
||||||
],
|
"description": ""
|
||||||
"desc": ""
|
},
|
||||||
},
|
"SolderingMenu": {
|
||||||
"AdvancedMenu": {
|
"displayText": "Pájecí\nnastavení",
|
||||||
"text2": [
|
"description": ""
|
||||||
"Pokročilá",
|
},
|
||||||
"nastavení"
|
"PowerSavingMenu": {
|
||||||
],
|
"displayText": "Režim\nspánku",
|
||||||
"desc": ""
|
"description": ""
|
||||||
}
|
},
|
||||||
},
|
"UIMenu": {
|
||||||
"menuOptions": {
|
"displayText": "Uživatelské\nrozhraní",
|
||||||
"DCInCutoff": {
|
"description": ""
|
||||||
"text2": [
|
},
|
||||||
"Zdroj",
|
"AdvancedMenu": {
|
||||||
"napájení"
|
"displayText": "Pokročilá\nnastavení",
|
||||||
],
|
"description": ""
|
||||||
"desc": "Při nižším napětí ukončit pájení (DC 10V) (S 3,3V na článek, zakázat omezení napájení)."
|
}
|
||||||
},
|
},
|
||||||
"MinVolCell": {
|
"menuOptions": {
|
||||||
"text2": [
|
"DCInCutoff": {
|
||||||
"Minimální",
|
"displayText": "Zdroj\nnapájení",
|
||||||
"napětí"
|
"description": "Při nižším napětí ukončit pájení (DC 10V) (S 3,3V na článek, zakázat omezení napájení)."
|
||||||
],
|
},
|
||||||
"desc": "Minimální dovolené napětí po článku (3S: 3 - 3,7V | 4-6S: 2,4 - 3,7V)"
|
"MinVolCell": {
|
||||||
},
|
"displayText": "Minimální\nnapětí",
|
||||||
"QCMaxVoltage": {
|
"description": "Minimální dovolené napětí po článku (3S: 3 - 3,7V | 4-6S: 2,4 - 3,7V)"
|
||||||
"text2": [
|
},
|
||||||
"Napětí",
|
"QCMaxVoltage": {
|
||||||
"QC"
|
"displayText": "Napětí\nQC",
|
||||||
],
|
"description": "Maximální napětí QC pro jednání páječkou"
|
||||||
"desc": "Maximální napětí QC pro jednání páječkou"
|
},
|
||||||
},
|
"PDNegTimeout": {
|
||||||
"PDNegTimeout": {
|
"displayText": "PD\ntimeout",
|
||||||
"text2": [
|
"description": "Maximální prodleva při jednání PD ve 100ms krocích pro kompatibilitu s některými QC nabíječkami"
|
||||||
"PD",
|
},
|
||||||
"timeout"
|
"BoostTemperature": {
|
||||||
],
|
"displayText": "Teplota\nboostu",
|
||||||
"desc": "Maximální prodleva při jednání PD ve 100ms krocích pro kompatibilitu s některými QC nabíječkami"
|
"description": "Teplota hrotu v \"režimu boost\""
|
||||||
},
|
},
|
||||||
"BoostTemperature": {
|
"AutoStart": {
|
||||||
"text2": [
|
"displayText": "Chování\npři startu",
|
||||||
"Teplota",
|
"description": "V=vypnuto | P=pájecí teplota | S=spánková teplota | M=zahřát hrot po pohybu"
|
||||||
"boostu"
|
},
|
||||||
],
|
"TempChangeShortStep": {
|
||||||
"desc": "Teplota hrotu v \"režimu boost\""
|
"displayText": "Krok teploty\nkrátký?",
|
||||||
},
|
"description": "Velikost přídavku při změně teploty krátkým stiskem tlačítka"
|
||||||
"AutoStart": {
|
},
|
||||||
"text2": [
|
"TempChangeLongStep": {
|
||||||
"Chování",
|
"displayText": "Krok teploty\ndlouhý?",
|
||||||
"při startu"
|
"description": "Velikost přídavku při změně teploty dlouhým stiskem tlačítka"
|
||||||
],
|
},
|
||||||
"desc": "V=vypnuto | P=pájecí teplota | S=spánková teplota | M=zahřát hrot po pohybu"
|
"LockingMode": {
|
||||||
},
|
"displayText": "Povolit zamč.\ntlačítek",
|
||||||
"TempChangeShortStep": {
|
"description": "Při pájení podržte obě tlačítka pro jejich zamčení (Z=zakázáno | B=pouze v režimu boost | U=úplné zamčení)"
|
||||||
"text2": [
|
},
|
||||||
"Krok teploty",
|
"MotionSensitivity": {
|
||||||
"krátký?"
|
"displayText": "Citlivost\nna pohyb",
|
||||||
],
|
"description": "0=vyp | 1=nejméně citlivé | ... | 9=nejvíce citlivé"
|
||||||
"desc": "Velikost přídavku při změně teploty krátkým stiskem tlačítka"
|
},
|
||||||
},
|
"SleepTemperature": {
|
||||||
"TempChangeLongStep": {
|
"displayText": "Teplota\nve spánku",
|
||||||
"text2": [
|
"description": "Teplota hrotu v režimu spánku."
|
||||||
"Krok teploty",
|
},
|
||||||
"dlouhý?"
|
"SleepTimeout": {
|
||||||
],
|
"displayText": "Čas\ndo spánku",
|
||||||
"desc": "Velikost přídavku při změně teploty dlouhým stiskem tlačítka"
|
"description": "\"Režim spánku\" naběhne v (s=sekundách | m=minutách)"
|
||||||
},
|
},
|
||||||
"LockingMode": {
|
"ShutdownTimeout": {
|
||||||
"text2": [
|
"displayText": "Čas do\nvypnutí",
|
||||||
"Povolit zamč.",
|
"description": "Interval automatického vypnutí (m=minut)"
|
||||||
"tlačítek"
|
},
|
||||||
],
|
"HallEffSensitivity": {
|
||||||
"desc": "Při pájení podržte obě tlačítka pro jejich zamčení (Z=zakázáno | B=pouze v režimu boost | U=úplné zamčení)"
|
"displayText": "Citlivost\nHall. čidla",
|
||||||
},
|
"description": "Citlivost Hallova čidla pro detekci spánku (0=vypnuto | 1=nejméně citlivé | ... | 9=nejvíce citlivé)"
|
||||||
"MotionSensitivity": {
|
},
|
||||||
"text2": [
|
"TemperatureUnit": {
|
||||||
"Citlivost",
|
"displayText": "Jednotka\nteploty",
|
||||||
"na pohyb"
|
"description": "C=Celsius | F=Fahrenheit"
|
||||||
],
|
},
|
||||||
"desc": "0=vyp | 1=nejméně citlivé | ... | 9=nejvíce citlivé"
|
"DisplayRotation": {
|
||||||
},
|
"displayText": "Orientace\nobrazovky",
|
||||||
"SleepTemperature": {
|
"description": "P=pravák | L=levák | A=automaticky"
|
||||||
"text2": [
|
},
|
||||||
"Teplota",
|
"CooldownBlink": {
|
||||||
"ve spánku"
|
"displayText": "Blikáni při\nchladnutí",
|
||||||
],
|
"description": "Blikat teplotou při chladnutí dokud je hrot horký"
|
||||||
"desc": "Teplota hrotu v režimu spánku."
|
},
|
||||||
},
|
"ScrollingSpeed": {
|
||||||
"SleepTimeout": {
|
"displayText": "Rychlost\nposouvání",
|
||||||
"text2": [
|
"description": "Rychlost posouvání popisků podobných tomuto (P=pomalu | R=rychle)"
|
||||||
"Čas",
|
},
|
||||||
"do spánku"
|
"ReverseButtonTempChange": {
|
||||||
],
|
"displayText": "Prohodit\ntl. +-?",
|
||||||
"desc": "\"Režim spánku\" naběhne v (s=sekundách | m=minutách)"
|
"description": "Prohodit tlačítka pro změnu teploty"
|
||||||
},
|
},
|
||||||
"ShutdownTimeout": {
|
"AnimSpeed": {
|
||||||
"text2": [
|
"displayText": "Anim.\nrychlost",
|
||||||
"Čas do",
|
"description": "Tempo animace ikon v menu (O=vypnuto | P=pomalu | S=středně | R=rychle)"
|
||||||
"vypnutí"
|
},
|
||||||
],
|
"AnimLoop": {
|
||||||
"desc": "Interval automatického vypnutí (m=minut)"
|
"displayText": "Anim.\nsmyčka",
|
||||||
},
|
"description": "Animovat ikony hlavního menu ve smyčce"
|
||||||
"HallEffSensitivity": {
|
},
|
||||||
"text2": [
|
"Brightness": {
|
||||||
"Citlivost",
|
"displayText": "Jas\nobrazovky",
|
||||||
"Hall. čidla"
|
"description": "Upravit jas OLED"
|
||||||
],
|
},
|
||||||
"desc": "Citlivost Hallova čidla pro detekci spánku (0=vypnuto | 1=nejméně citlivé | ... | 9=nejvíce citlivé)"
|
"ColourInversion": {
|
||||||
},
|
"displayText": "Invertovat\nobrazovku",
|
||||||
"TemperatureUnit": {
|
"description": "Invertovat barvy na OLED"
|
||||||
"text2": [
|
},
|
||||||
"Jednotka",
|
"LOGOTime": {
|
||||||
"teploty"
|
"displayText": "Trvání\nboot loga",
|
||||||
],
|
"description": "Nastavení doby trvání boot loga (s=sekundy)"
|
||||||
"desc": "C=Celsius | F=Fahrenheit"
|
},
|
||||||
},
|
"AdvancedIdle": {
|
||||||
"DisplayRotation": {
|
"displayText": "Podrobná obr.\nnečinnosti",
|
||||||
"text2": [
|
"description": "Zobrazit detailní informace malým fontem na obrazovce nečinnosti"
|
||||||
"Orientace",
|
},
|
||||||
"obrazovky"
|
"AdvancedSoldering": {
|
||||||
],
|
"displayText": "Podrobná obr.\npájení",
|
||||||
"desc": "P=pravák | L=levák | A=automaticky"
|
"description": "Zobrazit detailní informace malým fontem na obrazovce pájení"
|
||||||
},
|
},
|
||||||
"CooldownBlink": {
|
"PowerLimit": {
|
||||||
"text2": [
|
"displayText": "Omezení\nVýkonu",
|
||||||
"Blikáni při",
|
"description": "Maximální příkon páječky (W=watt)"
|
||||||
"chladnutí"
|
},
|
||||||
],
|
"CalibrateCJC": {
|
||||||
"desc": "Blikat teplotou při chladnutí dokud je hrot horký"
|
"displayText": "Calibrate CJC\nat next boot",
|
||||||
},
|
"description": "At next boot tip Cold Junction Compensation will be calibrated (not required if Delta T is < 5°C)"
|
||||||
"ScrollingSpeed": {
|
},
|
||||||
"text2": [
|
"VoltageCalibration": {
|
||||||
"Rychlost",
|
"displayText": "Kalibrovat\nvstupní napětí?",
|
||||||
"posouvání"
|
"description": "Začít kalibraci vstupního napětí (dlouhý stisk pro ukončení)"
|
||||||
],
|
},
|
||||||
"desc": "Rychlost posouvání popisků podobných tomuto (P=pomalu | R=rychle)"
|
"PowerPulsePower": {
|
||||||
},
|
"displayText": "Napájecí\npulz",
|
||||||
"ReverseButtonTempChange": {
|
"description": "Intenzita výkonu pulzu pro udržení páječky vzhůru (watt)"
|
||||||
"text2": [
|
},
|
||||||
"Prohodit",
|
"PowerPulseWait": {
|
||||||
"tl. +-?"
|
"displayText": "Prodleva\nnapáj. pulzu",
|
||||||
],
|
"description": "Prodleva než je spuštěn pulz pro udržení páječky vzhůru pulzu pro udržení páječky vzhůru (x 2,5s)"
|
||||||
"desc": "Prohodit tlačítka pro změnu teploty"
|
},
|
||||||
},
|
"PowerPulseDuration": {
|
||||||
"AnimSpeed": {
|
"displayText": "Délka\nnapáj. pulzu",
|
||||||
"text2": [
|
"description": "Délka pulzu pro udržení páječky vzhůru (x 250ms)"
|
||||||
"Anim.",
|
},
|
||||||
"rychlost"
|
"SettingsReset": {
|
||||||
],
|
"displayText": "Obnovit tovární\nnastavení?",
|
||||||
"desc": "Tempo animace ikon v menu (O=vypnuto | P=pomalu | S=středně | R=rychle)"
|
"description": "Obnovit všechna nastavení na výchozí"
|
||||||
},
|
},
|
||||||
"AnimLoop": {
|
"LanguageSwitch": {
|
||||||
"text2": [
|
"displayText": "Jazyk:\n CS Český",
|
||||||
"Anim.",
|
"description": ""
|
||||||
"smyčka"
|
}
|
||||||
],
|
}
|
||||||
"desc": "Animovat ikony hlavního menu ve smyčce"
|
|
||||||
},
|
|
||||||
"Brightness": {
|
|
||||||
"text2": [
|
|
||||||
"Jas",
|
|
||||||
"obrazovky"
|
|
||||||
],
|
|
||||||
"desc": "Upravit jas OLED"
|
|
||||||
},
|
|
||||||
"ColourInversion": {
|
|
||||||
"text2": [
|
|
||||||
"Invertovat",
|
|
||||||
"obrazovku"
|
|
||||||
],
|
|
||||||
"desc": "Invertovat barvy na OLED"
|
|
||||||
},
|
|
||||||
"LOGOTime": {
|
|
||||||
"text2": [
|
|
||||||
"Trvání",
|
|
||||||
"boot loga"
|
|
||||||
],
|
|
||||||
"desc": "Nastavení doby trvání boot loga (s=sekundy)"
|
|
||||||
},
|
|
||||||
"AdvancedIdle": {
|
|
||||||
"text2": [
|
|
||||||
"Podrobná obr.",
|
|
||||||
"nečinnosti"
|
|
||||||
],
|
|
||||||
"desc": "Zobrazit detailní informace malým fontem na obrazovce nečinnosti"
|
|
||||||
},
|
|
||||||
"AdvancedSoldering": {
|
|
||||||
"text2": [
|
|
||||||
"Podrobná obr.",
|
|
||||||
"pájení"
|
|
||||||
],
|
|
||||||
"desc": "Zobrazit detailní informace malým fontem na obrazovce pájení"
|
|
||||||
},
|
|
||||||
"PowerLimit": {
|
|
||||||
"text2": [
|
|
||||||
"Omezení",
|
|
||||||
"Výkonu"
|
|
||||||
],
|
|
||||||
"desc": "Maximální příkon páječky (W=watt)"
|
|
||||||
},
|
|
||||||
"CalibrateCJC": {
|
|
||||||
"text2": [
|
|
||||||
"Calibrate CJC",
|
|
||||||
"at next boot"
|
|
||||||
],
|
|
||||||
"desc": "At next boot tip Cold Junction Compensation will be calibrated (not required if Delta T is < 5°C)"
|
|
||||||
},
|
|
||||||
"VoltageCalibration": {
|
|
||||||
"text2": [
|
|
||||||
"Kalibrovat",
|
|
||||||
"vstupní napětí?"
|
|
||||||
],
|
|
||||||
"desc": "Začít kalibraci vstupního napětí (dlouhý stisk pro ukončení)"
|
|
||||||
},
|
|
||||||
"PowerPulsePower": {
|
|
||||||
"text2": [
|
|
||||||
"Napájecí",
|
|
||||||
"pulz"
|
|
||||||
],
|
|
||||||
"desc": "Intenzita výkonu pulzu pro udržení páječky vzhůru (watt)"
|
|
||||||
},
|
|
||||||
"PowerPulseWait": {
|
|
||||||
"text2": [
|
|
||||||
"Prodleva",
|
|
||||||
"napáj. pulzu"
|
|
||||||
],
|
|
||||||
"desc": "Prodleva než je spuštěn pulz pro udržení páječky vzhůru pulzu pro udržení páječky vzhůru (x 2,5s)"
|
|
||||||
},
|
|
||||||
"PowerPulseDuration": {
|
|
||||||
"text2": [
|
|
||||||
"Délka",
|
|
||||||
"napáj. pulzu"
|
|
||||||
],
|
|
||||||
"desc": "Délka pulzu pro udržení páječky vzhůru (x 250ms)"
|
|
||||||
},
|
|
||||||
"SettingsReset": {
|
|
||||||
"text2": [
|
|
||||||
"Obnovit tovární",
|
|
||||||
"nastavení?"
|
|
||||||
],
|
|
||||||
"desc": "Obnovit všechna nastavení na výchozí"
|
|
||||||
},
|
|
||||||
"LanguageSwitch": {
|
|
||||||
"text2": [
|
|
||||||
"Jazyk:",
|
|
||||||
" CS Český"
|
|
||||||
],
|
|
||||||
"desc": ""
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@@ -1,337 +1,243 @@
|
|||||||
{
|
{
|
||||||
"languageCode": "DA",
|
"languageCode": "DA",
|
||||||
"languageLocalName": "Dansk",
|
"languageLocalName": "Dansk",
|
||||||
"tempUnitFahrenheit": false,
|
"tempUnitFahrenheit": false,
|
||||||
"messages": {
|
"messagesWarn": {
|
||||||
"SettingsCalibrationWarning": "Before rebooting, make sure tip & handle are at room temperature!",
|
"CJCCalibrationDone": {
|
||||||
"CJCCalibrating": "calibrating",
|
"message": "Calibration\ndone!"
|
||||||
"SettingsResetWarning": "Er du sikker du vil resette indstillingerne til standard?",
|
},
|
||||||
"UVLOWarningString": "Lav Volt",
|
"ResetOKMessage": {
|
||||||
"UndervoltageString": "Undervolt",
|
"message": "Reset OK"
|
||||||
"InputVoltageString": "Input V: ",
|
},
|
||||||
"SleepingSimpleString": "Zzzz",
|
"SettingsResetMessage": {
|
||||||
"SleepingAdvancedString": "Dvale...",
|
"message": "Visse indstillinger\nEr blevet ændret!"
|
||||||
"SleepingTipAdvancedString": "Tip:",
|
},
|
||||||
"OffString": "Off",
|
"NoAccelerometerMessage": {
|
||||||
"DeviceFailedValidationWarning": "Din enhed er højst sandsyneligt en Kopivare!"
|
"message": "ingen accelerometer\nfundet!"
|
||||||
},
|
},
|
||||||
"messagesWarn": {
|
"NoPowerDeliveryMessage": {
|
||||||
"CJCCalibrationDone": [
|
"message": "ingen USB-PD IC\nFundet!"
|
||||||
"Calibration",
|
},
|
||||||
"done!"
|
"LockingKeysString": {
|
||||||
],
|
"message": "LÅST"
|
||||||
"ResetOKMessage": "Reset OK",
|
},
|
||||||
"SettingsResetMessage": [
|
"UnlockingKeysString": {
|
||||||
"Visse indstillinger",
|
"message": "ULÅST"
|
||||||
"Er blevet ændret!"
|
},
|
||||||
],
|
"WarningKeysLockedString": {
|
||||||
"NoAccelerometerMessage": [
|
"message": "!LÅST!"
|
||||||
"ingen accelerometer",
|
},
|
||||||
"fundet!"
|
"WarningThermalRunaway": {
|
||||||
],
|
"message": "Thermal\nRunaway"
|
||||||
"NoPowerDeliveryMessage": [
|
},
|
||||||
"ingen USB-PD IC",
|
"SettingsCalibrationWarning": {
|
||||||
"Fundet!"
|
"message": "Before rebooting, make sure tip & handle are at room temperature!"
|
||||||
],
|
},
|
||||||
"LockingKeysString": "LÅST",
|
"CJCCalibrating": {
|
||||||
"UnlockingKeysString": "ULÅST",
|
"message": "calibrating"
|
||||||
"WarningKeysLockedString": "!LÅST!",
|
},
|
||||||
"WarningThermalRunaway": [
|
"SettingsResetWarning": {
|
||||||
"Thermal",
|
"message": "Er du sikker du vil resette indstillingerne til standard?"
|
||||||
"Runaway"
|
},
|
||||||
]
|
"UVLOWarningString": {
|
||||||
},
|
"message": "Lav Volt"
|
||||||
"characters": {
|
},
|
||||||
"SettingRightChar": "H",
|
"UndervoltageString": {
|
||||||
"SettingLeftChar": "V",
|
"message": "Undervolt"
|
||||||
"SettingAutoChar": "A",
|
},
|
||||||
"SettingOffChar": "O",
|
"InputVoltageString": {
|
||||||
"SettingSlowChar": "S",
|
"message": "Input V: "
|
||||||
"SettingMediumChar": "M",
|
},
|
||||||
"SettingFastChar": "F",
|
"SleepingSimpleString": {
|
||||||
"SettingStartNoneChar": "S",
|
"message": "Zzzz"
|
||||||
"SettingStartSolderingChar": "L",
|
},
|
||||||
"SettingStartSleepChar": "D",
|
"SleepingAdvancedString": {
|
||||||
"SettingStartSleepOffChar": "R",
|
"message": "Dvale..."
|
||||||
"SettingLockDisableChar": "D",
|
},
|
||||||
"SettingLockBoostChar": "B",
|
"SleepingTipAdvancedString": {
|
||||||
"SettingLockFullChar": "F"
|
"message": "Tip:"
|
||||||
},
|
},
|
||||||
"menuGroups": {
|
"OffString": {
|
||||||
"PowerMenu": {
|
"message": "Off"
|
||||||
"text2": [
|
},
|
||||||
"Strøm",
|
"DeviceFailedValidationWarning": {
|
||||||
"Indstillinger"
|
"message": "Din enhed er højst sandsyneligt en Kopivare!"
|
||||||
],
|
}
|
||||||
"desc": ""
|
},
|
||||||
},
|
"characters": {
|
||||||
"SolderingMenu": {
|
"SettingRightChar": "H",
|
||||||
"text2": [
|
"SettingLeftChar": "V",
|
||||||
"Lodde",
|
"SettingAutoChar": "A",
|
||||||
"Indstillinger"
|
"SettingOffChar": "O",
|
||||||
],
|
"SettingSlowChar": "S",
|
||||||
"desc": ""
|
"SettingMediumChar": "M",
|
||||||
},
|
"SettingFastChar": "F",
|
||||||
"PowerSavingMenu": {
|
"SettingStartNoneChar": "S",
|
||||||
"text2": [
|
"SettingStartSolderingChar": "L",
|
||||||
"Dvale",
|
"SettingStartSleepChar": "D",
|
||||||
"mode"
|
"SettingStartSleepOffChar": "R",
|
||||||
],
|
"SettingLockDisableChar": "D",
|
||||||
"desc": ""
|
"SettingLockBoostChar": "B",
|
||||||
},
|
"SettingLockFullChar": "F"
|
||||||
"UIMenu": {
|
},
|
||||||
"text2": [
|
"menuGroups": {
|
||||||
"Bruger",
|
"PowerMenu": {
|
||||||
"Grændseflade"
|
"displayText": "Strøm\nIndstillinger",
|
||||||
],
|
"description": ""
|
||||||
"desc": ""
|
},
|
||||||
},
|
"SolderingMenu": {
|
||||||
"AdvancedMenu": {
|
"displayText": "Lodde\nIndstillinger",
|
||||||
"text2": [
|
"description": ""
|
||||||
"Advancerede",
|
},
|
||||||
"Indstillinger"
|
"PowerSavingMenu": {
|
||||||
],
|
"displayText": "Dvale\nmode",
|
||||||
"desc": ""
|
"description": ""
|
||||||
}
|
},
|
||||||
},
|
"UIMenu": {
|
||||||
"menuOptions": {
|
"displayText": "Bruger\nGrændseflade",
|
||||||
"DCInCutoff": {
|
"description": ""
|
||||||
"text2": [
|
},
|
||||||
"Strøm",
|
"AdvancedMenu": {
|
||||||
"Kilde"
|
"displayText": "Advancerede\nIndstillinger",
|
||||||
],
|
"description": ""
|
||||||
"desc": "Strømforsyning. Indstil Cutoff Spændingen. (DC 10V) (S 3,3V per celle)"
|
}
|
||||||
},
|
},
|
||||||
"MinVolCell": {
|
"menuOptions": {
|
||||||
"text2": [
|
"DCInCutoff": {
|
||||||
"Minimum",
|
"displayText": "Strøm\nKilde",
|
||||||
"Spænding"
|
"description": "Strømforsyning. Indstil Cutoff Spændingen. (DC 10V) (S 3,3V per celle)"
|
||||||
],
|
},
|
||||||
"desc": "Minimum tilladt spænding pr. celle (3S: 3 - 3,7V | 4-6S: 2,4 - 3,7V)"
|
"MinVolCell": {
|
||||||
},
|
"displayText": "Minimum\nSpænding",
|
||||||
"QCMaxVoltage": {
|
"description": "Minimum tilladt spænding pr. celle (3S: 3 - 3,7V | 4-6S: 2,4 - 3,7V)"
|
||||||
"text2": [
|
},
|
||||||
"QC",
|
"QCMaxVoltage": {
|
||||||
"Spænding"
|
"displayText": "QC\nSpænding",
|
||||||
],
|
"description": "Max QC spænding Loddekolben skal forhandle sig til"
|
||||||
"desc": "Max QC spænding Loddekolben skal forhandle sig til"
|
},
|
||||||
},
|
"PDNegTimeout": {
|
||||||
"PDNegTimeout": {
|
"displayText": "PD\ntimeout",
|
||||||
"text2": [
|
"description": "PD-forhandlingstimeout i trin på 100 ms for kompatibilitet med nogle QC-opladere"
|
||||||
"PD",
|
},
|
||||||
"timeout"
|
"BoostTemperature": {
|
||||||
],
|
"displayText": "Boost\ntemp",
|
||||||
"desc": "PD-forhandlingstimeout i trin på 100 ms for kompatibilitet med nogle QC-opladere"
|
"description": "Temperatur i \"boost mode\""
|
||||||
},
|
},
|
||||||
"BoostTemperature": {
|
"AutoStart": {
|
||||||
"text2": [
|
"displayText": "Start-up\nOpførsel",
|
||||||
"Boost",
|
"description": "Start automatisk med lodning når strøm sættes til. (S=Slukket | L=Lodning | D=Dvale tilstand | R=Dvale tilstand rumtemperatur)"
|
||||||
"temp"
|
},
|
||||||
],
|
"TempChangeShortStep": {
|
||||||
"desc": "Temperatur i \"boost mode\""
|
"displayText": "Temp ændring\nkort",
|
||||||
},
|
"description": "Temperatur-ændring-stigning ved kort tryk på knappen"
|
||||||
"AutoStart": {
|
},
|
||||||
"text2": [
|
"TempChangeLongStep": {
|
||||||
"Start-up",
|
"displayText": "Temp ændring\nlang",
|
||||||
"Opførsel"
|
"description": "Temperatur-ændring-stigning ved lang tryk på knappen"
|
||||||
],
|
},
|
||||||
"desc": "Start automatisk med lodning når strøm sættes til. (S=Slukket | L=Lodning | D=Dvale tilstand | R=Dvale tilstand rumtemperatur)"
|
"LockingMode": {
|
||||||
},
|
"displayText": "Tillad låsning\naf knapperne",
|
||||||
"TempChangeShortStep": {
|
"description": "Hold begge knapper nede under lodning for at låse dem (D=deaktiver | B=kun boost-tilstand | F=fuld låsning)"
|
||||||
"text2": [
|
},
|
||||||
"Temp ændring",
|
"MotionSensitivity": {
|
||||||
"kort"
|
"displayText": "Bevægelses\nfølsomhed",
|
||||||
],
|
"description": "Bevægelsesfølsomhed (0=Slukket | 1=Mindst følsom | ... | 9=Mest følsom)"
|
||||||
"desc": "Temperatur-ændring-stigning ved kort tryk på knappen"
|
},
|
||||||
},
|
"SleepTemperature": {
|
||||||
"TempChangeLongStep": {
|
"displayText": "Dvale\ntemp",
|
||||||
"text2": [
|
"description": "Dvale Temperatur (C)"
|
||||||
"Temp ændring",
|
},
|
||||||
"lang"
|
"SleepTimeout": {
|
||||||
],
|
"displayText": "Dvale\ntimeout",
|
||||||
"desc": "Temperatur-ændring-stigning ved lang tryk på knappen"
|
"description": "Dvale Timeout (Minutter | Sekunder)"
|
||||||
},
|
},
|
||||||
"LockingMode": {
|
"ShutdownTimeout": {
|
||||||
"text2": [
|
"displayText": "Sluknings\ntimeout",
|
||||||
"Tillad låsning",
|
"description": "sluknings Timeout (Minutter)"
|
||||||
"af knapperne"
|
},
|
||||||
],
|
"HallEffSensitivity": {
|
||||||
"desc": "Hold begge knapper nede under lodning for at låse dem (D=deaktiver | B=kun boost-tilstand | F=fuld låsning)"
|
"displayText": "Hall sensor\nfølsomhed",
|
||||||
},
|
"description": "følsomhed overfor magneten (0=Slukket | 1=Mindst følsom | ... | 9=Mest følsom)"
|
||||||
"MotionSensitivity": {
|
},
|
||||||
"text2": [
|
"TemperatureUnit": {
|
||||||
"Bevægelses",
|
"displayText": "Temperatur\nEnhed",
|
||||||
"følsomhed"
|
"description": "Temperatur Enhed (C=Celsius | F=Fahrenheit)"
|
||||||
],
|
},
|
||||||
"desc": "Bevægelsesfølsomhed (0=Slukket | 1=Mindst følsom | ... | 9=Mest følsom)"
|
"DisplayRotation": {
|
||||||
},
|
"displayText": "Skærm\nOrientering",
|
||||||
"SleepTemperature": {
|
"description": "Skærm Orientering (H=Højre Håndet | V=Venstre Håndet | A=Automatisk)"
|
||||||
"text2": [
|
},
|
||||||
"Dvale",
|
"CooldownBlink": {
|
||||||
"temp"
|
"displayText": "Køl ned\nBlinkning",
|
||||||
],
|
"description": "Blink temperaturen på skærmen, mens spidsen stadig er varm."
|
||||||
"desc": "Dvale Temperatur (C)"
|
},
|
||||||
},
|
"ScrollingSpeed": {
|
||||||
"SleepTimeout": {
|
"displayText": "Scrolling\nHastighed",
|
||||||
"text2": [
|
"description": "Hastigheden infotekst ruller forbi med (S=Langsom | F=Hurtigt)"
|
||||||
"Dvale",
|
},
|
||||||
"timeout"
|
"ReverseButtonTempChange": {
|
||||||
],
|
"displayText": "Skift\n+ - tasterne",
|
||||||
"desc": "Dvale Timeout (Minutter | Sekunder)"
|
"description": "Skift tildeling af knapper til temperaturjustering"
|
||||||
},
|
},
|
||||||
"ShutdownTimeout": {
|
"AnimSpeed": {
|
||||||
"text2": [
|
"displayText": "Anim.\nHastighed",
|
||||||
"Sluknings",
|
"description": "Hastigheden for ikonanimationer i menuen (O=fra | S=langsomt | M=medium | F=hurtigt)"
|
||||||
"timeout"
|
},
|
||||||
],
|
"AnimLoop": {
|
||||||
"desc": "sluknings Timeout (Minutter)"
|
"displayText": "Anim.\nsløfe",
|
||||||
},
|
"description": "ikonanimation sløfe i hovedmenuen"
|
||||||
"HallEffSensitivity": {
|
},
|
||||||
"text2": [
|
"Brightness": {
|
||||||
"Hall sensor",
|
"displayText": "Skærm\nlysstyrke",
|
||||||
"følsomhed"
|
"description": "Juster lysstyrken på OLED-skærmen"
|
||||||
],
|
},
|
||||||
"desc": "følsomhed overfor magneten (0=Slukket | 1=Mindst følsom | ... | 9=Mest følsom)"
|
"ColourInversion": {
|
||||||
},
|
"displayText": "spejlvende\nskærm",
|
||||||
"TemperatureUnit": {
|
"description": "spejlvende farverne på OLED-skærmen"
|
||||||
"text2": [
|
},
|
||||||
"Temperatur",
|
"LOGOTime": {
|
||||||
"Enhed"
|
"displayText": "opstartslogo\nvarighed",
|
||||||
],
|
"description": "Indstiller varigheden for opstartslogoet (s=sekunder)"
|
||||||
"desc": "Temperatur Enhed (C=Celsius | F=Fahrenheit)"
|
},
|
||||||
},
|
"AdvancedIdle": {
|
||||||
"DisplayRotation": {
|
"displayText": "Detaljeret\nStandby skærm",
|
||||||
"text2": [
|
"description": "Vis detialieret information med en mindre skriftstørrelse på standby skærmen."
|
||||||
"Skærm",
|
},
|
||||||
"Orientering"
|
"AdvancedSoldering": {
|
||||||
],
|
"displayText": "Detaljeret\nloddeskærm",
|
||||||
"desc": "Skærm Orientering (H=Højre Håndet | V=Venstre Håndet | A=Automatisk)"
|
"description": "Vis detaljeret information mens der loddes"
|
||||||
},
|
},
|
||||||
"CooldownBlink": {
|
"PowerLimit": {
|
||||||
"text2": [
|
"displayText": "Strøm\nbegrænsning",
|
||||||
"Køl ned",
|
"description": "Maksimal effekt Loddekolben kan bruge (W=watt)"
|
||||||
"Blinkning"
|
},
|
||||||
],
|
"CalibrateCJC": {
|
||||||
"desc": "Blink temperaturen på skærmen, mens spidsen stadig er varm."
|
"displayText": "kalibrere CJK\nunder næste opstart",
|
||||||
},
|
"description": "At next boot tip Cold Junction Compensation will be calibrated (not required if Delta T is < 5°C)"
|
||||||
"ScrollingSpeed": {
|
},
|
||||||
"text2": [
|
"VoltageCalibration": {
|
||||||
"Scrolling",
|
"displayText": "Kalibrere\ninput spændingen?",
|
||||||
"Hastighed"
|
"description": "VIN kalibrering. Knapperne justere, Lang tryk for at gå ud"
|
||||||
],
|
},
|
||||||
"desc": "Hastigheden infotekst ruller forbi med (S=Langsom | F=Hurtigt)"
|
"PowerPulsePower": {
|
||||||
},
|
"displayText": "Strøm\npuls",
|
||||||
"ReverseButtonTempChange": {
|
"description": "Intensiteten af strøm for hold-vågen-puls (watt)"
|
||||||
"text2": [
|
},
|
||||||
"Skift",
|
"PowerPulseWait": {
|
||||||
"+ - tasterne"
|
"displayText": "Strøm puls\nForsinkelse",
|
||||||
],
|
"description": "Forsinkelse før hold-vågen-puls udløses (x 2,5s)"
|
||||||
"desc": "Skift tildeling af knapper til temperaturjustering"
|
},
|
||||||
},
|
"PowerPulseDuration": {
|
||||||
"AnimSpeed": {
|
"displayText": "Strøm puls\nvarighed",
|
||||||
"text2": [
|
"description": "Hold-vågen-pulsvarighed (x 250ms)"
|
||||||
"Anim.",
|
},
|
||||||
"Hastighed"
|
"SettingsReset": {
|
||||||
],
|
"displayText": "Gendan fabriks\nIndstillinger",
|
||||||
"desc": "Hastigheden for ikonanimationer i menuen (O=fra | S=langsomt | M=medium | F=hurtigt)"
|
"description": "Gendan alle indstillinger"
|
||||||
},
|
},
|
||||||
"AnimLoop": {
|
"LanguageSwitch": {
|
||||||
"text2": [
|
"displayText": "Sprog:\n DA Dansk",
|
||||||
"Anim.",
|
"description": ""
|
||||||
"sløfe"
|
}
|
||||||
],
|
}
|
||||||
"desc": "ikonanimation sløfe i hovedmenuen"
|
|
||||||
},
|
|
||||||
"Brightness": {
|
|
||||||
"text2": [
|
|
||||||
"Skærm",
|
|
||||||
"lysstyrke"
|
|
||||||
],
|
|
||||||
"desc": "Juster lysstyrken på OLED-skærmen"
|
|
||||||
},
|
|
||||||
"ColourInversion": {
|
|
||||||
"text2": [
|
|
||||||
"spejlvende",
|
|
||||||
"skærm"
|
|
||||||
],
|
|
||||||
"desc": "spejlvende farverne på OLED-skærmen"
|
|
||||||
},
|
|
||||||
"LOGOTime": {
|
|
||||||
"text2": [
|
|
||||||
"opstartslogo",
|
|
||||||
"varighed"
|
|
||||||
],
|
|
||||||
"desc": "Indstiller varigheden for opstartslogoet (s=sekunder)"
|
|
||||||
},
|
|
||||||
"AdvancedIdle": {
|
|
||||||
"text2": [
|
|
||||||
"Detaljeret",
|
|
||||||
"Standby skærm"
|
|
||||||
],
|
|
||||||
"desc": "Vis detialieret information med en mindre skriftstørrelse på standby skærmen."
|
|
||||||
},
|
|
||||||
"AdvancedSoldering": {
|
|
||||||
"text2": [
|
|
||||||
"Detaljeret",
|
|
||||||
"loddeskærm"
|
|
||||||
],
|
|
||||||
"desc": "Vis detaljeret information mens der loddes"
|
|
||||||
},
|
|
||||||
"PowerLimit": {
|
|
||||||
"text2": [
|
|
||||||
"Strøm",
|
|
||||||
"begrænsning"
|
|
||||||
],
|
|
||||||
"desc": "Maksimal effekt Loddekolben kan bruge (W=watt)"
|
|
||||||
},
|
|
||||||
"CalibrateCJC": {
|
|
||||||
"text2": [
|
|
||||||
"kalibrere CJK",
|
|
||||||
"under næste opstart"
|
|
||||||
],
|
|
||||||
"desc": "At next boot tip Cold Junction Compensation will be calibrated (not required if Delta T is < 5°C)"
|
|
||||||
},
|
|
||||||
"VoltageCalibration": {
|
|
||||||
"text2": [
|
|
||||||
"Kalibrere",
|
|
||||||
"input spændingen?"
|
|
||||||
],
|
|
||||||
"desc": "VIN kalibrering. Knapperne justere, Lang tryk for at gå ud"
|
|
||||||
},
|
|
||||||
"PowerPulsePower": {
|
|
||||||
"text2": [
|
|
||||||
"Strøm",
|
|
||||||
"puls"
|
|
||||||
],
|
|
||||||
"desc": "Intensiteten af strøm for hold-vågen-puls (watt)"
|
|
||||||
},
|
|
||||||
"PowerPulseWait": {
|
|
||||||
"text2": [
|
|
||||||
"Strøm puls",
|
|
||||||
"Forsinkelse"
|
|
||||||
],
|
|
||||||
"desc": "Forsinkelse før hold-vågen-puls udløses (x 2,5s)"
|
|
||||||
},
|
|
||||||
"PowerPulseDuration": {
|
|
||||||
"text2": [
|
|
||||||
"Strøm puls",
|
|
||||||
"varighed"
|
|
||||||
],
|
|
||||||
"desc": "Hold-vågen-pulsvarighed (x 250ms)"
|
|
||||||
},
|
|
||||||
"SettingsReset": {
|
|
||||||
"text2": [
|
|
||||||
"Gendan fabriks",
|
|
||||||
"Indstillinger"
|
|
||||||
],
|
|
||||||
"desc": "Gendan alle indstillinger"
|
|
||||||
},
|
|
||||||
"LanguageSwitch": {
|
|
||||||
"text2": [
|
|
||||||
"Sprog:",
|
|
||||||
" DA Dansk"
|
|
||||||
],
|
|
||||||
"desc": ""
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@@ -1,337 +1,243 @@
|
|||||||
{
|
{
|
||||||
"languageCode": "DE",
|
"languageCode": "DE",
|
||||||
"languageLocalName": "Deutsch",
|
"languageLocalName": "Deutsch",
|
||||||
"tempUnitFahrenheit": false,
|
"tempUnitFahrenheit": false,
|
||||||
"messages": {
|
"messagesWarn": {
|
||||||
"SettingsCalibrationWarning": "Vor dem Neustart bitte sicherstellen, dass Lötspitze & Gerät Raumtemperatur haben!",
|
"CJCCalibrationDone": {
|
||||||
"CJCCalibrating": "kalibriere",
|
"message": "Erfolgreich\nkalibriert!"
|
||||||
"SettingsResetWarning": "Sicher, dass alle Werte zurückgesetzt werden sollen?",
|
},
|
||||||
"UVLOWarningString": "V niedr.",
|
"ResetOKMessage": {
|
||||||
"UndervoltageString": "Unterspannung",
|
"message": "Reset OK"
|
||||||
"InputVoltageString": "V Eingang: ",
|
},
|
||||||
"SleepingSimpleString": "Zzzz",
|
"SettingsResetMessage": {
|
||||||
"SleepingAdvancedString": "Ruhemodus...",
|
"message": "Einstellungen\nzurückgesetzt!"
|
||||||
"SleepingTipAdvancedString": "Temp:",
|
},
|
||||||
"OffString": "Aus",
|
"NoAccelerometerMessage": {
|
||||||
"DeviceFailedValidationWarning": "Höchstwahrscheinlich ist das Gerät eine Fälschung!"
|
"message": "Bewegungssensor\nnicht erkannt!"
|
||||||
},
|
},
|
||||||
"messagesWarn": {
|
"NoPowerDeliveryMessage": {
|
||||||
"CJCCalibrationDone": [
|
"message": "USB-PD IC\nnicht erkannt!"
|
||||||
"Erfolgreich",
|
},
|
||||||
"kalibriert!"
|
"LockingKeysString": {
|
||||||
],
|
"message": "GESPERRT"
|
||||||
"ResetOKMessage": "Reset OK",
|
},
|
||||||
"SettingsResetMessage": [
|
"UnlockingKeysString": {
|
||||||
"Einstellungen",
|
"message": "ENTSPERRT"
|
||||||
"zurückgesetzt!"
|
},
|
||||||
],
|
"WarningKeysLockedString": {
|
||||||
"NoAccelerometerMessage": [
|
"message": "!GESPERRT!"
|
||||||
"Bewegungssensor",
|
},
|
||||||
"nicht erkannt!"
|
"WarningThermalRunaway": {
|
||||||
],
|
"message": "Thermal\nRunaway"
|
||||||
"NoPowerDeliveryMessage": [
|
},
|
||||||
"USB-PD IC",
|
"SettingsCalibrationWarning": {
|
||||||
"nicht erkannt!"
|
"message": "Vor dem Neustart bitte sicherstellen, dass Lötspitze & Gerät Raumtemperatur haben!"
|
||||||
],
|
},
|
||||||
"LockingKeysString": "GESPERRT",
|
"CJCCalibrating": {
|
||||||
"UnlockingKeysString": "ENTSPERRT",
|
"message": "kalibriere"
|
||||||
"WarningKeysLockedString": "!GESPERRT!",
|
},
|
||||||
"WarningThermalRunaway": [
|
"SettingsResetWarning": {
|
||||||
"Thermal",
|
"message": "Sicher, dass alle Werte zurückgesetzt werden sollen?"
|
||||||
"Runaway"
|
},
|
||||||
]
|
"UVLOWarningString": {
|
||||||
},
|
"message": "V niedr."
|
||||||
"characters": {
|
},
|
||||||
"SettingRightChar": "R",
|
"UndervoltageString": {
|
||||||
"SettingLeftChar": "L",
|
"message": "Unterspannung"
|
||||||
"SettingAutoChar": "A",
|
},
|
||||||
"SettingOffChar": "A",
|
"InputVoltageString": {
|
||||||
"SettingSlowChar": "L",
|
"message": "V Eingang: "
|
||||||
"SettingMediumChar": "M",
|
},
|
||||||
"SettingFastChar": "S",
|
"SleepingSimpleString": {
|
||||||
"SettingStartNoneChar": "A",
|
"message": "Zzzz"
|
||||||
"SettingStartSolderingChar": "L",
|
},
|
||||||
"SettingStartSleepChar": "R",
|
"SleepingAdvancedString": {
|
||||||
"SettingStartSleepOffChar": "K",
|
"message": "Ruhemodus..."
|
||||||
"SettingLockDisableChar": "A",
|
},
|
||||||
"SettingLockBoostChar": "B",
|
"SleepingTipAdvancedString": {
|
||||||
"SettingLockFullChar": "V"
|
"message": "Temp:"
|
||||||
},
|
},
|
||||||
"menuGroups": {
|
"OffString": {
|
||||||
"PowerMenu": {
|
"message": "Aus"
|
||||||
"text2": [
|
},
|
||||||
"Energie-",
|
"DeviceFailedValidationWarning": {
|
||||||
"einstellungen"
|
"message": "Höchstwahrscheinlich ist das Gerät eine Fälschung!"
|
||||||
],
|
}
|
||||||
"desc": ""
|
},
|
||||||
},
|
"characters": {
|
||||||
"SolderingMenu": {
|
"SettingRightChar": "R",
|
||||||
"text2": [
|
"SettingLeftChar": "L",
|
||||||
"Löt-",
|
"SettingAutoChar": "A",
|
||||||
"einstellungen"
|
"SettingOffChar": "A",
|
||||||
],
|
"SettingSlowChar": "L",
|
||||||
"desc": ""
|
"SettingMediumChar": "M",
|
||||||
},
|
"SettingFastChar": "S",
|
||||||
"PowerSavingMenu": {
|
"SettingStartNoneChar": "A",
|
||||||
"text2": [
|
"SettingStartSolderingChar": "L",
|
||||||
"Ruhe-",
|
"SettingStartSleepChar": "R",
|
||||||
"modus"
|
"SettingStartSleepOffChar": "K",
|
||||||
],
|
"SettingLockDisableChar": "A",
|
||||||
"desc": ""
|
"SettingLockBoostChar": "B",
|
||||||
},
|
"SettingLockFullChar": "V"
|
||||||
"UIMenu": {
|
},
|
||||||
"text2": [
|
"menuGroups": {
|
||||||
"Anzeige-",
|
"PowerMenu": {
|
||||||
"einstellungen"
|
"displayText": "Energie-\neinstellungen",
|
||||||
],
|
"description": ""
|
||||||
"desc": ""
|
},
|
||||||
},
|
"SolderingMenu": {
|
||||||
"AdvancedMenu": {
|
"displayText": "Löt-\neinstellungen",
|
||||||
"text2": [
|
"description": ""
|
||||||
"Erweiterte",
|
},
|
||||||
"Einstellungen"
|
"PowerSavingMenu": {
|
||||||
],
|
"displayText": "Ruhe-\nmodus",
|
||||||
"desc": ""
|
"description": ""
|
||||||
}
|
},
|
||||||
},
|
"UIMenu": {
|
||||||
"menuOptions": {
|
"displayText": "Anzeige-\neinstellungen",
|
||||||
"DCInCutoff": {
|
"description": ""
|
||||||
"text2": [
|
},
|
||||||
"Spannungs-",
|
"AdvancedMenu": {
|
||||||
"quelle"
|
"displayText": "Erweiterte\nEinstellungen",
|
||||||
],
|
"description": ""
|
||||||
"desc": "Spannungsquelle (Abschaltspannung) (DC=10V | nS=n*3.3V für n LiIon-Zellen)"
|
}
|
||||||
},
|
},
|
||||||
"MinVolCell": {
|
"menuOptions": {
|
||||||
"text2": [
|
"DCInCutoff": {
|
||||||
"Minimale",
|
"displayText": "Spannungs-\nquelle",
|
||||||
"Spannung"
|
"description": "Spannungsquelle (Abschaltspannung) (DC=10V | nS=n*3.3V für n LiIon-Zellen)"
|
||||||
],
|
},
|
||||||
"desc": "Minimal zulässige Spannung pro Zelle (3S: 3 - 3,7V | 4-6S: 2,4 - 3,7V)"
|
"MinVolCell": {
|
||||||
},
|
"displayText": "Minimale\nSpannung",
|
||||||
"QCMaxVoltage": {
|
"description": "Minimal zulässige Spannung pro Zelle (3S: 3 - 3,7V | 4-6S: 2,4 - 3,7V)"
|
||||||
"text2": [
|
},
|
||||||
"Spannungs-",
|
"QCMaxVoltage": {
|
||||||
"maximum"
|
"displayText": "Spannungs-\nmaximum",
|
||||||
],
|
"description": "Maximal zulässige Spannung der verwendeten Spannungsversorgung (V=Volt)"
|
||||||
"desc": "Maximal zulässige Spannung der verwendeten Spannungsversorgung (V=Volt)"
|
},
|
||||||
},
|
"PDNegTimeout": {
|
||||||
"PDNegTimeout": {
|
"displayText": "PD\ntimeout",
|
||||||
"text2": [
|
"description": "PD Abfragedauer in 100ms Schritten (Kompatibilität mit best. QC-Ladegeräten)"
|
||||||
"PD",
|
},
|
||||||
"timeout"
|
"BoostTemperature": {
|
||||||
],
|
"displayText": "Boost-\ntemperatur",
|
||||||
"desc": "PD Abfragedauer in 100ms Schritten (Kompatibilität mit best. QC-Ladegeräten)"
|
"description": "Temperatur der Lötspitze im Boostmodus"
|
||||||
},
|
},
|
||||||
"BoostTemperature": {
|
"AutoStart": {
|
||||||
"text2": [
|
"displayText": "Start im\nLötmodus",
|
||||||
"Boost-",
|
"description": "Heizverhalten beim Einschalten der Spannungsversorgung (A=aus | L=Lötmodus | R=Ruhemodus | K=Ruhemodus mit kalter Spitze)"
|
||||||
"temperatur"
|
},
|
||||||
],
|
"TempChangeShortStep": {
|
||||||
"desc": "Temperatur der Lötspitze im Boostmodus"
|
"displayText": "Temp-Schritt\nDruck kurz",
|
||||||
},
|
"description": "Schrittweite für Temperaturwechsel bei kurzem Tastendruck"
|
||||||
"AutoStart": {
|
},
|
||||||
"text2": [
|
"TempChangeLongStep": {
|
||||||
"Start im",
|
"displayText": "Temp-Schritt\nDruck lang",
|
||||||
"Lötmodus"
|
"description": "Schrittweite für Temperaturwechsel bei langem Tastendruck"
|
||||||
],
|
},
|
||||||
"desc": "Heizverhalten beim Einschalten der Spannungsversorgung (A=aus | L=Lötmodus | R=Ruhemodus | K=Ruhemodus mit kalter Spitze)"
|
"LockingMode": {
|
||||||
},
|
"displayText": "Tasten-\nsperre",
|
||||||
"TempChangeShortStep": {
|
"description": "Langes drücken beider Tasten im Lötmodus sperrt diese (A=aus | B=nur Boost | V=vollständig)"
|
||||||
"text2": [
|
},
|
||||||
"Temp-Schritt",
|
"MotionSensitivity": {
|
||||||
"Druck kurz"
|
"displayText": "Bewegungs-\nempfindlichk.",
|
||||||
],
|
"description": "0=aus | 1=minimal | ... | 9=maximal"
|
||||||
"desc": "Schrittweite für Temperaturwechsel bei kurzem Tastendruck"
|
},
|
||||||
},
|
"SleepTemperature": {
|
||||||
"TempChangeLongStep": {
|
"displayText": "Ruhe-\ntemperatur",
|
||||||
"text2": [
|
"description": "Ruhetemperatur der Spitze"
|
||||||
"Temp-Schritt",
|
},
|
||||||
"Druck lang"
|
"SleepTimeout": {
|
||||||
],
|
"displayText": "Ruhever-\nzögerung",
|
||||||
"desc": "Schrittweite für Temperaturwechsel bei langem Tastendruck"
|
"description": "Dauer vor Übergang in den Ruhemodus (s=Sekunden | m=Minuten)"
|
||||||
},
|
},
|
||||||
"LockingMode": {
|
"ShutdownTimeout": {
|
||||||
"text2": [
|
"displayText": "Abschalt-\nverzög.",
|
||||||
"Tasten-",
|
"description": "Dauer vor automatischer Abschaltung (m=Minuten)"
|
||||||
"sperre"
|
},
|
||||||
],
|
"HallEffSensitivity": {
|
||||||
"desc": "Langes drücken beider Tasten im Lötmodus sperrt diese (A=aus | B=nur Boost | V=vollständig)"
|
"displayText": "Empfindlichkeit\nder Hall-Sonde",
|
||||||
},
|
"description": "Empfindlichkeit der Hall-Sonde um den Ruhemodus auszulösen (0=aus | 1=minimal | ... | 9=maximal)"
|
||||||
"MotionSensitivity": {
|
},
|
||||||
"text2": [
|
"TemperatureUnit": {
|
||||||
"Bewegungs-",
|
"displayText": "Temperatur-\neinheit",
|
||||||
"empfindlichk."
|
"description": "C=°Celsius | F=°Fahrenheit"
|
||||||
],
|
},
|
||||||
"desc": "0=aus | 1=minimal | ... | 9=maximal"
|
"DisplayRotation": {
|
||||||
},
|
"displayText": "Anzeige-\nausrichtung",
|
||||||
"SleepTemperature": {
|
"description": "R=rechtshändig | L=linkshändig | A=automatisch"
|
||||||
"text2": [
|
},
|
||||||
"Ruhe-",
|
"CooldownBlink": {
|
||||||
"temperatur"
|
"displayText": "Abkühl-\nblinken",
|
||||||
],
|
"description": "Temperaturanzeige blinkt beim Abkühlen, solange Spitze heiß ist"
|
||||||
"desc": "Ruhetemperatur der Spitze"
|
},
|
||||||
},
|
"ScrollingSpeed": {
|
||||||
"SleepTimeout": {
|
"displayText": "Scroll-\ngeschw.",
|
||||||
"text2": [
|
"description": "Scrollgeschwindigkeit der Erläuterungen (L=langsam | S=schnell)"
|
||||||
"Ruhever-",
|
},
|
||||||
"zögerung"
|
"ReverseButtonTempChange": {
|
||||||
],
|
"displayText": "+- Tasten\numkehren?",
|
||||||
"desc": "Dauer vor Übergang in den Ruhemodus (s=Sekunden | m=Minuten)"
|
"description": "Tastenbelegung zur Temperaturänderung umkehren"
|
||||||
},
|
},
|
||||||
"ShutdownTimeout": {
|
"AnimSpeed": {
|
||||||
"text2": [
|
"displayText": "Anim.\nGeschw.",
|
||||||
"Abschalt-",
|
"description": "Geschwindigkeit der Icon-Animationen im Menü (A=aus | L=langsam | M=mittel | S=schnell)"
|
||||||
"verzög."
|
},
|
||||||
],
|
"AnimLoop": {
|
||||||
"desc": "Dauer vor automatischer Abschaltung (m=Minuten)"
|
"displayText": "Anim.\nSchleife",
|
||||||
},
|
"description": "Icon-Animationen im Hauptmenü wiederholen"
|
||||||
"HallEffSensitivity": {
|
},
|
||||||
"text2": [
|
"Brightness": {
|
||||||
"Empfindlichkeit",
|
"displayText": "Bildschirm-\nkontrast",
|
||||||
"der Hall-Sonde"
|
"description": "Verändert die Helligkeit des OLED-Displays"
|
||||||
],
|
},
|
||||||
"desc": "Empfindlichkeit der Hall-Sonde um den Ruhemodus auszulösen (0=aus | 1=minimal | ... | 9=maximal)"
|
"ColourInversion": {
|
||||||
},
|
"displayText": "Farben\numkehren",
|
||||||
"TemperatureUnit": {
|
"description": "Invertiert die Farben des OLED-Displays"
|
||||||
"text2": [
|
},
|
||||||
"Temperatur-",
|
"LOGOTime": {
|
||||||
"einheit"
|
"displayText": "Startlogo-\ndauer",
|
||||||
],
|
"description": "Legt die Dauer der Anzeige des Startlogos fest (s=Sekunden)"
|
||||||
"desc": "C=°Celsius | F=°Fahrenheit"
|
},
|
||||||
},
|
"AdvancedIdle": {
|
||||||
"DisplayRotation": {
|
"displayText": "Detaillierte\nRuheansicht",
|
||||||
"text2": [
|
"description": "Detaillierte Anzeige im Ruhemodus"
|
||||||
"Anzeige-",
|
},
|
||||||
"ausrichtung"
|
"AdvancedSoldering": {
|
||||||
],
|
"displayText": "Detaillierte\nLötansicht",
|
||||||
"desc": "R=rechtshändig | L=linkshändig | A=automatisch"
|
"description": "Detaillierte Anzeige im Lötmodus"
|
||||||
},
|
},
|
||||||
"CooldownBlink": {
|
"PowerLimit": {
|
||||||
"text2": [
|
"displayText": "Leistungs-\nmaximum",
|
||||||
"Abkühl-",
|
"description": "Maximal zulässige Leistungsaufnahme des Lötkolbens (W=Watt)"
|
||||||
"blinken"
|
},
|
||||||
],
|
"CalibrateCJC": {
|
||||||
"desc": "Temperaturanzeige blinkt beim Abkühlen, solange Spitze heiß ist"
|
"displayText": "Temperatur\nkalibrieren?",
|
||||||
},
|
"description": "Beim nächsten Start wird die Kaltstellenkompensation kalibriert (nicht nötig wenn Delta T < 5°C)"
|
||||||
"ScrollingSpeed": {
|
},
|
||||||
"text2": [
|
"VoltageCalibration": {
|
||||||
"Scroll-",
|
"displayText": "Eingangsspannung\nkalibrieren?",
|
||||||
"geschw."
|
"description": "Kalibrierung der Eingangsspannung (Langer Tastendruck zum Verlassen)"
|
||||||
],
|
},
|
||||||
"desc": "Scrollgeschwindigkeit der Erläuterungen (L=langsam | S=schnell)"
|
"PowerPulsePower": {
|
||||||
},
|
"displayText": "Leistungs-\nimpuls",
|
||||||
"ReverseButtonTempChange": {
|
"description": "Powerbank mit einem Impuls wach halten (Watt)"
|
||||||
"text2": [
|
},
|
||||||
"+- Tasten",
|
"PowerPulseWait": {
|
||||||
"umkehren?"
|
"displayText": "Impuls-\nverzögerung",
|
||||||
],
|
"description": "Dauer vor Abgabe von Wachhalteimpulsen (x 2,5s)"
|
||||||
"desc": "Tastenbelegung zur Temperaturänderung umkehren"
|
},
|
||||||
},
|
"PowerPulseDuration": {
|
||||||
"AnimSpeed": {
|
"displayText": "Impuls-\ndauer",
|
||||||
"text2": [
|
"description": "Dauer des Wachhalteimpulses (x 250ms)"
|
||||||
"Anim.",
|
},
|
||||||
"Geschw."
|
"SettingsReset": {
|
||||||
],
|
"displayText": "Einstellungen\nzurücksetzen?",
|
||||||
"desc": "Geschwindigkeit der Icon-Animationen im Menü (A=aus | L=langsam | M=mittel | S=schnell)"
|
"description": "Werte auf Werkseinstellungen zurücksetzen"
|
||||||
},
|
},
|
||||||
"AnimLoop": {
|
"LanguageSwitch": {
|
||||||
"text2": [
|
"displayText": "Sprache:\n DE Deutsch",
|
||||||
"Anim.",
|
"description": ""
|
||||||
"Schleife"
|
}
|
||||||
],
|
}
|
||||||
"desc": "Icon-Animationen im Hauptmenü wiederholen"
|
|
||||||
},
|
|
||||||
"Brightness": {
|
|
||||||
"text2": [
|
|
||||||
"Bildschirm-",
|
|
||||||
"kontrast"
|
|
||||||
],
|
|
||||||
"desc": "Verändert die Helligkeit des OLED-Displays"
|
|
||||||
},
|
|
||||||
"ColourInversion": {
|
|
||||||
"text2": [
|
|
||||||
"Farben",
|
|
||||||
"umkehren"
|
|
||||||
],
|
|
||||||
"desc": "Invertiert die Farben des OLED-Displays"
|
|
||||||
},
|
|
||||||
"LOGOTime": {
|
|
||||||
"text2": [
|
|
||||||
"Startlogo-",
|
|
||||||
"dauer"
|
|
||||||
],
|
|
||||||
"desc": "Legt die Dauer der Anzeige des Startlogos fest (s=Sekunden)"
|
|
||||||
},
|
|
||||||
"AdvancedIdle": {
|
|
||||||
"text2": [
|
|
||||||
"Detaillierte",
|
|
||||||
"Ruheansicht"
|
|
||||||
],
|
|
||||||
"desc": "Detaillierte Anzeige im Ruhemodus"
|
|
||||||
},
|
|
||||||
"AdvancedSoldering": {
|
|
||||||
"text2": [
|
|
||||||
"Detaillierte",
|
|
||||||
"Lötansicht"
|
|
||||||
],
|
|
||||||
"desc": "Detaillierte Anzeige im Lötmodus"
|
|
||||||
},
|
|
||||||
"PowerLimit": {
|
|
||||||
"text2": [
|
|
||||||
"Leistungs-",
|
|
||||||
"maximum"
|
|
||||||
],
|
|
||||||
"desc": "Maximal zulässige Leistungsaufnahme des Lötkolbens (W=Watt)"
|
|
||||||
},
|
|
||||||
"CalibrateCJC": {
|
|
||||||
"text2": [
|
|
||||||
"Temperatur",
|
|
||||||
"kalibrieren?"
|
|
||||||
],
|
|
||||||
"desc": "Beim nächsten Start wird die Kaltstellenkompensation kalibriert (nicht nötig wenn Delta T < 5°C)"
|
|
||||||
},
|
|
||||||
"VoltageCalibration": {
|
|
||||||
"text2": [
|
|
||||||
"Eingangsspannung",
|
|
||||||
"kalibrieren?"
|
|
||||||
],
|
|
||||||
"desc": "Kalibrierung der Eingangsspannung (Langer Tastendruck zum Verlassen)"
|
|
||||||
},
|
|
||||||
"PowerPulsePower": {
|
|
||||||
"text2": [
|
|
||||||
"Leistungs-",
|
|
||||||
"impuls"
|
|
||||||
],
|
|
||||||
"desc": "Powerbank mit einem Impuls wach halten (Watt)"
|
|
||||||
},
|
|
||||||
"PowerPulseWait": {
|
|
||||||
"text2": [
|
|
||||||
"Impuls-",
|
|
||||||
"verzögerung"
|
|
||||||
],
|
|
||||||
"desc": "Dauer vor Abgabe von Wachhalteimpulsen (x 2,5s)"
|
|
||||||
},
|
|
||||||
"PowerPulseDuration": {
|
|
||||||
"text2": [
|
|
||||||
"Impuls-",
|
|
||||||
"dauer"
|
|
||||||
],
|
|
||||||
"desc": "Dauer des Wachhalteimpulses (x 250ms)"
|
|
||||||
},
|
|
||||||
"SettingsReset": {
|
|
||||||
"text2": [
|
|
||||||
"Einstellungen",
|
|
||||||
"zurücksetzen?"
|
|
||||||
],
|
|
||||||
"desc": "Werte auf Werkseinstellungen zurücksetzen"
|
|
||||||
},
|
|
||||||
"LanguageSwitch": {
|
|
||||||
"text2": [
|
|
||||||
"Sprache:",
|
|
||||||
" DE Deutsch"
|
|
||||||
],
|
|
||||||
"desc": ""
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@@ -1,340 +1,243 @@
|
|||||||
{
|
{
|
||||||
"languageCode": "EL",
|
"languageCode": "EL",
|
||||||
"languageLocalName": "Greek",
|
"languageLocalName": "Greek",
|
||||||
"tempUnitFahrenheit": true,
|
"tempUnitFahrenheit": true,
|
||||||
"messages": {
|
"messagesWarn": {
|
||||||
"SettingsCalibrationWarning": "Before rebooting, make sure tip & handle are at room temperature!",
|
"CJCCalibrationDone": {
|
||||||
"CJCCalibrating": "calibrating",
|
"message": "Calibration\ndone!"
|
||||||
"SettingsResetWarning": "Σίγουρα θέλετε επαναφορά αρχικών ρυθμίσεων;",
|
},
|
||||||
"UVLOWarningString": "Χαμηλ DC",
|
"ResetOKMessage": {
|
||||||
"UndervoltageString": "Υπόταση",
|
"message": "Επαν. OK"
|
||||||
"InputVoltageString": "Είσοδος V: ",
|
},
|
||||||
"SleepingSimpleString": "Zzzz",
|
"SettingsResetMessage": {
|
||||||
"SleepingAdvancedString": "Υπνος...",
|
"message": "Κάποιες ρυθμ.\nάλλαξαν"
|
||||||
"SleepingTipAdvancedString": "Μύτη:",
|
},
|
||||||
"OffString": "Απ.",
|
"NoAccelerometerMessage": {
|
||||||
"DeviceFailedValidationWarning": "Your device is most likely a counterfeit!"
|
"message": "Δεν εντοπίστηκε\nεπιταχυνσιόμετρο"
|
||||||
},
|
},
|
||||||
"messagesWarn": {
|
"NoPowerDeliveryMessage": {
|
||||||
"CJCCalibrationDone": [
|
"message": "Δεν εντοπίστηκε\nκύκλωμα USB-PD"
|
||||||
"Calibration",
|
},
|
||||||
"done!"
|
"LockingKeysString": {
|
||||||
],
|
"message": "ΚΛΕΙΔ."
|
||||||
"ResetOKMessage": "Επαν. OK",
|
},
|
||||||
"SettingsResetMessage": [
|
"UnlockingKeysString": {
|
||||||
"Κάποιες ρυθμ.",
|
"message": "ΞΕΚΛΕΙΔ."
|
||||||
"άλλαξαν"
|
},
|
||||||
],
|
"WarningKeysLockedString": {
|
||||||
"NoAccelerometerMessage": [
|
"message": "ΚΛΕΙΔΩΜΕΝΑ\nΠΛΗΚΤΡΑ!"
|
||||||
"Δεν εντοπίστηκε",
|
},
|
||||||
"επιταχυνσιόμετρο"
|
"WarningThermalRunaway": {
|
||||||
],
|
"message": "Θερμική\nΦυγή"
|
||||||
"NoPowerDeliveryMessage": [
|
},
|
||||||
"Δεν εντοπίστηκε",
|
"SettingsCalibrationWarning": {
|
||||||
"κύκλωμα USB-PD"
|
"message": "Before rebooting, make sure tip & handle are at room temperature!"
|
||||||
],
|
},
|
||||||
"LockingKeysString": "ΚΛΕΙΔ.",
|
"CJCCalibrating": {
|
||||||
"UnlockingKeysString": "ΞΕΚΛΕΙΔ.",
|
"message": "calibrating"
|
||||||
"WarningKeysLockedString": [
|
},
|
||||||
"ΚΛΕΙΔΩΜΕΝΑ",
|
"SettingsResetWarning": {
|
||||||
"ΠΛΗΚΤΡΑ!"
|
"message": "Σίγουρα θέλετε επαναφορά αρχικών ρυθμίσεων;"
|
||||||
],
|
},
|
||||||
"WarningThermalRunaway": [
|
"UVLOWarningString": {
|
||||||
"Θερμική",
|
"message": "Χαμηλ DC"
|
||||||
"Φυγή"
|
},
|
||||||
]
|
"UndervoltageString": {
|
||||||
},
|
"message": "Υπόταση"
|
||||||
"characters": {
|
},
|
||||||
"SettingRightChar": "R",
|
"InputVoltageString": {
|
||||||
"SettingLeftChar": "L",
|
"message": "Είσοδος V: "
|
||||||
"SettingAutoChar": "Α",
|
},
|
||||||
"SettingOffChar": "0",
|
"SleepingSimpleString": {
|
||||||
"SettingSlowChar": "Α",
|
"message": "Zzzz"
|
||||||
"SettingMediumChar": "Μ",
|
},
|
||||||
"SettingFastChar": "Γ",
|
"SleepingAdvancedString": {
|
||||||
"SettingStartNoneChar": "0",
|
"message": "Υπνος..."
|
||||||
"SettingStartSolderingChar": "Κ",
|
},
|
||||||
"SettingStartSleepChar": "Ζ",
|
"SleepingTipAdvancedString": {
|
||||||
"SettingStartSleepOffChar": "Υ",
|
"message": "Μύτη:"
|
||||||
"SettingLockDisableChar": "Α",
|
},
|
||||||
"SettingLockBoostChar": "B",
|
"OffString": {
|
||||||
"SettingLockFullChar": "Π"
|
"message": "Απ."
|
||||||
},
|
},
|
||||||
"menuGroups": {
|
"DeviceFailedValidationWarning": {
|
||||||
"PowerMenu": {
|
"message": "Your device is most likely a counterfeit!"
|
||||||
"text2": [
|
}
|
||||||
"Ρυθμίσεις",
|
},
|
||||||
"ενέργειας"
|
"characters": {
|
||||||
],
|
"SettingRightChar": "R",
|
||||||
"desc": ""
|
"SettingLeftChar": "L",
|
||||||
},
|
"SettingAutoChar": "Α",
|
||||||
"SolderingMenu": {
|
"SettingOffChar": "0",
|
||||||
"text2": [
|
"SettingSlowChar": "Α",
|
||||||
"Ρυθμίσεις",
|
"SettingMediumChar": "Μ",
|
||||||
"κόλλησης"
|
"SettingFastChar": "Γ",
|
||||||
],
|
"SettingStartNoneChar": "0",
|
||||||
"desc": ""
|
"SettingStartSolderingChar": "Κ",
|
||||||
},
|
"SettingStartSleepChar": "Ζ",
|
||||||
"PowerSavingMenu": {
|
"SettingStartSleepOffChar": "Υ",
|
||||||
"text2": [
|
"SettingLockDisableChar": "Α",
|
||||||
"Λειτουργία",
|
"SettingLockBoostChar": "B",
|
||||||
"ύπνου"
|
"SettingLockFullChar": "Π"
|
||||||
],
|
},
|
||||||
"desc": ""
|
"menuGroups": {
|
||||||
},
|
"PowerMenu": {
|
||||||
"UIMenu": {
|
"displayText": "Ρυθμίσεις\nενέργειας",
|
||||||
"text2": [
|
"description": ""
|
||||||
"Διεπαφή",
|
},
|
||||||
"χρήστη"
|
"SolderingMenu": {
|
||||||
],
|
"displayText": "Ρυθμίσεις\nκόλλησης",
|
||||||
"desc": ""
|
"description": ""
|
||||||
},
|
},
|
||||||
"AdvancedMenu": {
|
"PowerSavingMenu": {
|
||||||
"text2": [
|
"displayText": "Λειτουργία\nύπνου",
|
||||||
"Προηγμένες",
|
"description": ""
|
||||||
"ρυθμίσεις"
|
},
|
||||||
],
|
"UIMenu": {
|
||||||
"desc": ""
|
"displayText": "Διεπαφή\nχρήστη",
|
||||||
}
|
"description": ""
|
||||||
},
|
},
|
||||||
"menuOptions": {
|
"AdvancedMenu": {
|
||||||
"DCInCutoff": {
|
"displayText": "Προηγμένες\nρυθμίσεις",
|
||||||
"text2": [
|
"description": ""
|
||||||
"Πηγή",
|
}
|
||||||
"ενέργειας"
|
},
|
||||||
],
|
"menuOptions": {
|
||||||
"desc": "Πηγή ενέργειας. Oρισμός τάσης απενεργοποίησης. (DC 10V) (S 3.3V ανα κυψέλη, απενεργοποίηση ενεργειακού ορίου)"
|
"DCInCutoff": {
|
||||||
},
|
"displayText": "Πηγή\nενέργειας",
|
||||||
"MinVolCell": {
|
"description": "Πηγή ενέργειας. Oρισμός τάσης απενεργοποίησης. (DC 10V) (S 3.3V ανα κυψέλη, απενεργοποίηση ενεργειακού ορίου)"
|
||||||
"text2": [
|
},
|
||||||
"Ελάχιστη",
|
"MinVolCell": {
|
||||||
"τάση"
|
"displayText": "Ελάχιστη\nτάση",
|
||||||
],
|
"description": "Ελάχιστη επιτρεπτή τάση ανα κυψέλη (3 σε σειρά: 3 - 3.7V | 4-6 σε σειρά: 2.4 - 3.7V)"
|
||||||
"desc": "Ελάχιστη επιτρεπτή τάση ανα κυψέλη (3 σε σειρά: 3 - 3.7V | 4-6 σε σειρά: 2.4 - 3.7V)"
|
},
|
||||||
},
|
"QCMaxVoltage": {
|
||||||
"QCMaxVoltage": {
|
"displayText": "Τάση\nQC",
|
||||||
"text2": [
|
"description": "Μέγιστη τάση QC που να ζητά το κολλητήρι από το τροφοδοτικό"
|
||||||
"Τάση",
|
},
|
||||||
"QC"
|
"PDNegTimeout": {
|
||||||
],
|
"displayText": "χρονικό όριο\nPD",
|
||||||
"desc": "Μέγιστη τάση QC που να ζητά το κολλητήρι από το τροφοδοτικό"
|
"description": "Χρονικό όριο διαπραγμάτευσης PD σε βήματα 100ms για συμβατότητα με κάποιους φορτιστές QC"
|
||||||
},
|
},
|
||||||
"PDNegTimeout": {
|
"BoostTemperature": {
|
||||||
"text2": [
|
"displayText": "Θερμοκ.\nboost",
|
||||||
"χρονικό όριο",
|
"description": "Θερμοκρασία στη \"λειτουργία boost\""
|
||||||
"PD"
|
},
|
||||||
],
|
"AutoStart": {
|
||||||
"desc": "Χρονικό όριο διαπραγμάτευσης PD σε βήματα 100ms για συμβατότητα με κάποιους φορτιστές QC"
|
"displayText": "Ζέσταμα\nκατά την εν.",
|
||||||
},
|
"description": "0=off | Κ=θερμ. κόλλησης | Z=αναμονή σε θερμοκρασία ύπνου μέχρι την κίνηση | Υ=αναμονή χωρίς ζέσταμα μέχρι την κίνηση"
|
||||||
"BoostTemperature": {
|
},
|
||||||
"text2": [
|
"TempChangeShortStep": {
|
||||||
"Θερμοκ.",
|
"displayText": "Αλλαγή θερμοκ.\nστιγμιαίο",
|
||||||
"boost"
|
"description": "Βήμα αλλαγής θερμοκρασίας σε στιγμιαίο πάτημα πλήκτρου"
|
||||||
],
|
},
|
||||||
"desc": "Θερμοκρασία στη \"λειτουργία boost\""
|
"TempChangeLongStep": {
|
||||||
},
|
"displayText": "Αλλαγή θερμοκ.\nπαρατεταμένο",
|
||||||
"AutoStart": {
|
"description": "Βήμα αλλαγής θερμοκρασίας σε παρατεταμένο πάτημα πλήκτρου"
|
||||||
"text2": [
|
},
|
||||||
"Ζέσταμα",
|
"LockingMode": {
|
||||||
"κατά την εν."
|
"displayText": "Κλείδωμα\nπλήκτρων",
|
||||||
],
|
"description": "Κατά την κόλληση, κρατήστε και τα δύο πλήκτρα για κλείδωμα (A=απενεργοποίηση | B=μόνο λειτ. boost | Π=πλήρες κλείδωμα)"
|
||||||
"desc": "0=off | Κ=θερμ. κόλλησης | Z=αναμονή σε θερμοκρασία ύπνου μέχρι την κίνηση | Υ=αναμονή χωρίς ζέσταμα μέχρι την κίνηση"
|
},
|
||||||
},
|
"MotionSensitivity": {
|
||||||
"TempChangeShortStep": {
|
"displayText": "Ευαισθησία\nκίνησης",
|
||||||
"text2": [
|
"description": "0=off | 1=λιγότερο ευαίσθητο | ... | 9=περισσότερο ευαίσθητο"
|
||||||
"Αλλαγή θερμοκ.",
|
},
|
||||||
"στιγμιαίο"
|
"SleepTemperature": {
|
||||||
],
|
"displayText": "Θερμοκρ.\nύπνου",
|
||||||
"desc": "Βήμα αλλαγής θερμοκρασίας σε στιγμιαίο πάτημα πλήκτρου"
|
"description": "Θερμοκρασία μύτης σε λειτ. ύπνου"
|
||||||
},
|
},
|
||||||
"TempChangeLongStep": {
|
"SleepTimeout": {
|
||||||
"text2": [
|
"displayText": "Έναρξη\nύπνου",
|
||||||
"Αλλαγή θερμοκ.",
|
"description": "Χρονικό διάστημα πρίν την ενεργοποίηση λειτουργίας ύπνου (Δ=δευτ. | Λ=λεπτά)"
|
||||||
"παρατεταμένο"
|
},
|
||||||
],
|
"ShutdownTimeout": {
|
||||||
"desc": "Βήμα αλλαγής θερμοκρασίας σε παρατεταμένο πάτημα πλήκτρου"
|
"displayText": "Έναρξη\nαπενεργ.",
|
||||||
},
|
"description": "Χρονικό διάστημα πρίν την απενεργοποίηση του κολλητηριού (Λ=λεπτά)"
|
||||||
"LockingMode": {
|
},
|
||||||
"text2": [
|
"HallEffSensitivity": {
|
||||||
"Κλείδωμα",
|
"displayText": "Ευαισθ. αισθ. \nφαιν. Hall",
|
||||||
"πλήκτρων"
|
"description": "Ευαισθησία του αισθητήρα φαινομένου Hall για εντοπισμό αδράνειας (0=off | 1=λιγότερο ευαίσθητο | ... | 9=περισσότερο ευαίσθητο)"
|
||||||
],
|
},
|
||||||
"desc": "Κατά την κόλληση, κρατήστε και τα δύο πλήκτρα για κλείδωμα (A=απενεργοποίηση | B=μόνο λειτ. boost | Π=πλήρες κλείδωμα)"
|
"TemperatureUnit": {
|
||||||
},
|
"displayText": "Μονάδες\nθερμοκρασίας",
|
||||||
"MotionSensitivity": {
|
"description": "C=Κελσίου | F=Φαρενάιτ"
|
||||||
"text2": [
|
},
|
||||||
"Ευαισθησία",
|
"DisplayRotation": {
|
||||||
"κίνησης"
|
"displayText": "Διάταξη\nοθόνης",
|
||||||
],
|
"description": "R=δεξιόχειρες | L=αριστερόχειρες | Α=αυτόματο"
|
||||||
"desc": "0=off | 1=λιγότερο ευαίσθητο | ... | 9=περισσότερο ευαίσθητο"
|
},
|
||||||
},
|
"CooldownBlink": {
|
||||||
"SleepTemperature": {
|
"displayText": "Αναβοσβήσιμο\nψύξης",
|
||||||
"text2": [
|
"description": "Αναβοσβήσιμο της ενδειξης θερμοκρασίας κατά την παύση θέρμανσης όταν η μύτη είναι ακόμα καυτή"
|
||||||
"Θερμοκρ.",
|
},
|
||||||
"ύπνου"
|
"ScrollingSpeed": {
|
||||||
],
|
"displayText": "Ταχύτητα\nκύλισης",
|
||||||
"desc": "Θερμοκρασία μύτης σε λειτ. ύπνου"
|
"description": "Ταχύτητα κύλισης κειμένου (Α=αργά | Γ=γρήγορα)"
|
||||||
},
|
},
|
||||||
"SleepTimeout": {
|
"ReverseButtonTempChange": {
|
||||||
"text2": [
|
"displayText": "Αντιστροφή\nπλήκτρων + -",
|
||||||
"Έναρξη",
|
"description": "Αντιστροφή διάταξης πλήκτρων στη ρύθμιση θερμοκρασίας"
|
||||||
"ύπνου"
|
},
|
||||||
],
|
"AnimSpeed": {
|
||||||
"desc": "Χρονικό διάστημα πρίν την ενεργοποίηση λειτουργίας ύπνου (Δ=δευτ. | Λ=λεπτά)"
|
"displayText": "Ταχύτητα\nκιν. εικονιδ.",
|
||||||
},
|
"description": "Ρυθμός κίνησης εικονιδίων στο μενού (0=off | Α=αργός | Μ=μέτριος | Γ=γρήγορος)"
|
||||||
"ShutdownTimeout": {
|
},
|
||||||
"text2": [
|
"AnimLoop": {
|
||||||
"Έναρξη",
|
"displayText": "Επανάληψη\nκιν. εικονιδ.",
|
||||||
"απενεργ."
|
"description": "Επανάληψη κίνησης εικονιδίων στο αρχικό μενού"
|
||||||
],
|
},
|
||||||
"desc": "Χρονικό διάστημα πρίν την απενεργοποίηση του κολλητηριού (Λ=λεπτά)"
|
"Brightness": {
|
||||||
},
|
"displayText": "Αντίθεση\nοθόνης",
|
||||||
"HallEffSensitivity": {
|
"description": "Ρύθμιση φωτεινότητας οθόνης OLED"
|
||||||
"text2": [
|
},
|
||||||
"Ευαισθ. αισθ. ",
|
"ColourInversion": {
|
||||||
"φαιν. Hall"
|
"displayText": "Αντιστροφή\nχρωμάτων",
|
||||||
],
|
"description": "Αντιστροφή χρωμάτων οθόνης OLED"
|
||||||
"desc": "Ευαισθησία του αισθητήρα φαινομένου Hall για εντοπισμό αδράνειας (0=off | 1=λιγότερο ευαίσθητο | ... | 9=περισσότερο ευαίσθητο)"
|
},
|
||||||
},
|
"LOGOTime": {
|
||||||
"TemperatureUnit": {
|
"displayText": "Boot logo\nduration",
|
||||||
"text2": [
|
"description": "Sets the duration for the boot logo (s=seconds)"
|
||||||
"Μονάδες",
|
},
|
||||||
"θερμοκρασίας"
|
"AdvancedIdle": {
|
||||||
],
|
"displayText": "Λεπτομερής\nοθ. αδράνειας",
|
||||||
"desc": "C=Κελσίου | F=Φαρενάιτ"
|
"description": "Προβολή λεπτομερών πληροφοριών σε μικρότερη γραμματοσειρά στην οθόνη αδράνειας"
|
||||||
},
|
},
|
||||||
"DisplayRotation": {
|
"AdvancedSoldering": {
|
||||||
"text2": [
|
"displayText": "Λεπτομερής\nοθ. κόλλησης",
|
||||||
"Διάταξη",
|
"description": "Προβολή λεπτομερών πληροφοριών σε μικρότερη γραμματοσειρά στην οθόνη κόλλησης"
|
||||||
"οθόνης"
|
},
|
||||||
],
|
"PowerLimit": {
|
||||||
"desc": "R=δεξιόχειρες | L=αριστερόχειρες | Α=αυτόματο"
|
"displayText": "Ενεργειακό\nόριο",
|
||||||
},
|
"description": "Μέγιστη ενέργεια που μπορεί να χρησιμοποιεί το κολλητήρι (W=watt)"
|
||||||
"CooldownBlink": {
|
},
|
||||||
"text2": [
|
"CalibrateCJC": {
|
||||||
"Αναβοσβήσιμο",
|
"displayText": "Calibrate CJC\nat next boot",
|
||||||
"ψύξης"
|
"description": "At next boot tip Cold Junction Compensation will be calibrated (not required if Delta T is < 5 C)"
|
||||||
],
|
},
|
||||||
"desc": "Αναβοσβήσιμο της ενδειξης θερμοκρασίας κατά την παύση θέρμανσης όταν η μύτη είναι ακόμα καυτή"
|
"VoltageCalibration": {
|
||||||
},
|
"displayText": "Βαθμονόμηση\nτάσης εισόδου;",
|
||||||
"ScrollingSpeed": {
|
"description": "Έναρξη βαθμονόμησης τάσης εισόδου (κράτημα για έξοδο)"
|
||||||
"text2": [
|
},
|
||||||
"Ταχύτητα",
|
"PowerPulsePower": {
|
||||||
"κύλισης"
|
"displayText": "Παλμός\nενέργειας",
|
||||||
],
|
"description": "Ένταση ενέργειας παλμού διατήρησης λειτουργίας (W=watt)"
|
||||||
"desc": "Ταχύτητα κύλισης κειμένου (Α=αργά | Γ=γρήγορα)"
|
},
|
||||||
},
|
"PowerPulseWait": {
|
||||||
"ReverseButtonTempChange": {
|
"displayText": "Καθυστέρηση\nπαλμού ενέργ.",
|
||||||
"text2": [
|
"description": "Καθυστέρηση πριν την ενεργοποίση παλμού διατήρησης λειτουργίας (x 2.5s)"
|
||||||
"Αντιστροφή",
|
},
|
||||||
"πλήκτρων + -"
|
"PowerPulseDuration": {
|
||||||
],
|
"displayText": "Διάρκεια\nπαλμού ενέργ.",
|
||||||
"desc": "Αντιστροφή διάταξης πλήκτρων στη ρύθμιση θερμοκρασίας"
|
"description": "Διάρκεια παλμού διατήρησης ενέργειας (x 250ms)"
|
||||||
},
|
},
|
||||||
"AnimSpeed": {
|
"SettingsReset": {
|
||||||
"text2": [
|
"displayText": "Επαναφορά\nεργ. ρυθμίσεων;",
|
||||||
"Ταχύτητα",
|
"description": "Επαναφορά στις προεπιλεγμένες ρυθμίσεις"
|
||||||
"κιν. εικονιδ."
|
},
|
||||||
],
|
"LanguageSwitch": {
|
||||||
"desc": "Ρυθμός κίνησης εικονιδίων στο μενού (0=off | Α=αργός | Μ=μέτριος | Γ=γρήγορος)"
|
"displayText": "Γλώσσα:\n GR Ελληνικά",
|
||||||
},
|
"description": ""
|
||||||
"AnimLoop": {
|
}
|
||||||
"text2": [
|
}
|
||||||
"Επανάληψη",
|
|
||||||
"κιν. εικονιδ."
|
|
||||||
],
|
|
||||||
"desc": "Επανάληψη κίνησης εικονιδίων στο αρχικό μενού"
|
|
||||||
},
|
|
||||||
"Brightness": {
|
|
||||||
"text2": [
|
|
||||||
"Αντίθεση",
|
|
||||||
"οθόνης"
|
|
||||||
],
|
|
||||||
"desc": "Ρύθμιση φωτεινότητας οθόνης OLED"
|
|
||||||
},
|
|
||||||
"ColourInversion": {
|
|
||||||
"text2": [
|
|
||||||
"Αντιστροφή",
|
|
||||||
"χρωμάτων"
|
|
||||||
],
|
|
||||||
"desc": "Αντιστροφή χρωμάτων οθόνης OLED"
|
|
||||||
},
|
|
||||||
"LOGOTime": {
|
|
||||||
"text2": [
|
|
||||||
"Boot logo",
|
|
||||||
"duration"
|
|
||||||
],
|
|
||||||
"desc": "Sets the duration for the boot logo (s=seconds)"
|
|
||||||
},
|
|
||||||
"AdvancedIdle": {
|
|
||||||
"text2": [
|
|
||||||
"Λεπτομερής",
|
|
||||||
"οθ. αδράνειας"
|
|
||||||
],
|
|
||||||
"desc": "Προβολή λεπτομερών πληροφοριών σε μικρότερη γραμματοσειρά στην οθόνη αδράνειας"
|
|
||||||
},
|
|
||||||
"AdvancedSoldering": {
|
|
||||||
"text2": [
|
|
||||||
"Λεπτομερής",
|
|
||||||
"οθ. κόλλησης"
|
|
||||||
],
|
|
||||||
"desc": "Προβολή λεπτομερών πληροφοριών σε μικρότερη γραμματοσειρά στην οθόνη κόλλησης"
|
|
||||||
},
|
|
||||||
"PowerLimit": {
|
|
||||||
"text2": [
|
|
||||||
"Ενεργειακό",
|
|
||||||
"όριο"
|
|
||||||
],
|
|
||||||
"desc": "Μέγιστη ενέργεια που μπορεί να χρησιμοποιεί το κολλητήρι (W=watt)"
|
|
||||||
},
|
|
||||||
"CalibrateCJC": {
|
|
||||||
"text2": [
|
|
||||||
"Calibrate CJC",
|
|
||||||
"at next boot"
|
|
||||||
],
|
|
||||||
"desc": "At next boot tip Cold Junction Compensation will be calibrated (not required if Delta T is < 5 C)"
|
|
||||||
},
|
|
||||||
"VoltageCalibration": {
|
|
||||||
"text2": [
|
|
||||||
"Βαθμονόμηση",
|
|
||||||
"τάσης εισόδου;"
|
|
||||||
],
|
|
||||||
"desc": "Έναρξη βαθμονόμησης τάσης εισόδου (κράτημα για έξοδο)"
|
|
||||||
},
|
|
||||||
"PowerPulsePower": {
|
|
||||||
"text2": [
|
|
||||||
"Παλμός",
|
|
||||||
"ενέργειας"
|
|
||||||
],
|
|
||||||
"desc": "Ένταση ενέργειας παλμού διατήρησης λειτουργίας (W=watt)"
|
|
||||||
},
|
|
||||||
"PowerPulseWait": {
|
|
||||||
"text2": [
|
|
||||||
"Καθυστέρηση",
|
|
||||||
"παλμού ενέργ."
|
|
||||||
],
|
|
||||||
"desc": "Καθυστέρηση πριν την ενεργοποίση παλμού διατήρησης λειτουργίας (x 2.5s)"
|
|
||||||
},
|
|
||||||
"PowerPulseDuration": {
|
|
||||||
"text2": [
|
|
||||||
"Διάρκεια",
|
|
||||||
"παλμού ενέργ."
|
|
||||||
],
|
|
||||||
"desc": "Διάρκεια παλμού διατήρησης ενέργειας (x 250ms)"
|
|
||||||
},
|
|
||||||
"SettingsReset": {
|
|
||||||
"text2": [
|
|
||||||
"Επαναφορά",
|
|
||||||
"εργ. ρυθμίσεων;"
|
|
||||||
],
|
|
||||||
"desc": "Επαναφορά στις προεπιλεγμένες ρυθμίσεις"
|
|
||||||
},
|
|
||||||
"LanguageSwitch": {
|
|
||||||
"text2": [
|
|
||||||
"Γλώσσα:",
|
|
||||||
" GR Ελληνικά"
|
|
||||||
],
|
|
||||||
"desc": ""
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@@ -1,337 +1,243 @@
|
|||||||
{
|
{
|
||||||
"languageCode": "EN",
|
"languageCode": "EN",
|
||||||
"languageLocalName": "English",
|
"languageLocalName": "English",
|
||||||
"tempUnitFahrenheit": true,
|
"tempUnitFahrenheit": true,
|
||||||
"messages": {
|
"messagesWarn": {
|
||||||
"SettingsCalibrationWarning": "Before rebooting, make sure tip & handle are at room temperature!",
|
"CJCCalibrationDone": {
|
||||||
"CJCCalibrating": "calibrating",
|
"message": "Calibration\ndone!"
|
||||||
"SettingsResetWarning": "Are you sure you want to restore default settings?",
|
},
|
||||||
"UVLOWarningString": "DC LOW",
|
"ResetOKMessage": {
|
||||||
"UndervoltageString": "Undervoltage",
|
"message": "Reset OK"
|
||||||
"InputVoltageString": "Input V: ",
|
},
|
||||||
"SleepingSimpleString": "Zzzz",
|
"SettingsResetMessage": {
|
||||||
"SleepingAdvancedString": "Sleeping...",
|
"message": "Certain settings\nchanged!"
|
||||||
"SleepingTipAdvancedString": "Tip:",
|
},
|
||||||
"OffString": "Off",
|
"NoAccelerometerMessage": {
|
||||||
"DeviceFailedValidationWarning": "Your device is most likely a counterfeit!"
|
"message": "No accelerometer\ndetected!"
|
||||||
},
|
},
|
||||||
"messagesWarn": {
|
"NoPowerDeliveryMessage": {
|
||||||
"CJCCalibrationDone": [
|
"message": "No USB-PD IC\ndetected!"
|
||||||
"Calibration",
|
},
|
||||||
"done!"
|
"LockingKeysString": {
|
||||||
],
|
"message": "LOCKED"
|
||||||
"ResetOKMessage": "Reset OK",
|
},
|
||||||
"SettingsResetMessage": [
|
"UnlockingKeysString": {
|
||||||
"Certain settings",
|
"message": "UNLOCKED"
|
||||||
"changed!"
|
},
|
||||||
],
|
"WarningKeysLockedString": {
|
||||||
"NoAccelerometerMessage": [
|
"message": "!LOCKED!"
|
||||||
"No accelerometer",
|
},
|
||||||
"detected!"
|
"WarningThermalRunaway": {
|
||||||
],
|
"message": "Thermal\nRunaway"
|
||||||
"NoPowerDeliveryMessage": [
|
},
|
||||||
"No USB-PD IC",
|
"SettingsCalibrationWarning": {
|
||||||
"detected!"
|
"message": "Before rebooting, make sure tip & handle are at room temperature!"
|
||||||
],
|
},
|
||||||
"LockingKeysString": "LOCKED",
|
"CJCCalibrating": {
|
||||||
"UnlockingKeysString": "UNLOCKED",
|
"message": "calibrating"
|
||||||
"WarningKeysLockedString": "!LOCKED!",
|
},
|
||||||
"WarningThermalRunaway": [
|
"SettingsResetWarning": {
|
||||||
"Thermal",
|
"message": "Are you sure you want to restore default settings?"
|
||||||
"Runaway"
|
},
|
||||||
]
|
"UVLOWarningString": {
|
||||||
},
|
"message": "DC LOW"
|
||||||
"characters": {
|
},
|
||||||
"SettingRightChar": "R",
|
"UndervoltageString": {
|
||||||
"SettingLeftChar": "L",
|
"message": "Undervoltage"
|
||||||
"SettingAutoChar": "A",
|
},
|
||||||
"SettingOffChar": "O",
|
"InputVoltageString": {
|
||||||
"SettingSlowChar": "S",
|
"message": "Input V: "
|
||||||
"SettingMediumChar": "M",
|
},
|
||||||
"SettingFastChar": "F",
|
"SleepingSimpleString": {
|
||||||
"SettingStartNoneChar": "O",
|
"message": "Zzzz"
|
||||||
"SettingStartSolderingChar": "S",
|
},
|
||||||
"SettingStartSleepChar": "Z",
|
"SleepingAdvancedString": {
|
||||||
"SettingStartSleepOffChar": "R",
|
"message": "Sleeping..."
|
||||||
"SettingLockDisableChar": "D",
|
},
|
||||||
"SettingLockBoostChar": "B",
|
"SleepingTipAdvancedString": {
|
||||||
"SettingLockFullChar": "F"
|
"message": "Tip:"
|
||||||
},
|
},
|
||||||
"menuGroups": {
|
"OffString": {
|
||||||
"PowerMenu": {
|
"message": "Off"
|
||||||
"text2": [
|
},
|
||||||
"Power",
|
"DeviceFailedValidationWarning": {
|
||||||
"settings"
|
"message": "Your device is most likely a counterfeit!"
|
||||||
],
|
}
|
||||||
"desc": ""
|
},
|
||||||
},
|
"characters": {
|
||||||
"SolderingMenu": {
|
"SettingRightChar": "R",
|
||||||
"text2": [
|
"SettingLeftChar": "L",
|
||||||
"Soldering",
|
"SettingAutoChar": "A",
|
||||||
"settings"
|
"SettingOffChar": "O",
|
||||||
],
|
"SettingSlowChar": "S",
|
||||||
"desc": ""
|
"SettingMediumChar": "M",
|
||||||
},
|
"SettingFastChar": "F",
|
||||||
"PowerSavingMenu": {
|
"SettingStartNoneChar": "O",
|
||||||
"text2": [
|
"SettingStartSolderingChar": "S",
|
||||||
"Sleep",
|
"SettingStartSleepChar": "Z",
|
||||||
"mode"
|
"SettingStartSleepOffChar": "R",
|
||||||
],
|
"SettingLockDisableChar": "D",
|
||||||
"desc": ""
|
"SettingLockBoostChar": "B",
|
||||||
},
|
"SettingLockFullChar": "F"
|
||||||
"UIMenu": {
|
},
|
||||||
"text2": [
|
"menuGroups": {
|
||||||
"User",
|
"PowerMenu": {
|
||||||
"interface"
|
"displayText": "Power\nsettings",
|
||||||
],
|
"description": ""
|
||||||
"desc": ""
|
},
|
||||||
},
|
"SolderingMenu": {
|
||||||
"AdvancedMenu": {
|
"displayText": "Soldering\nsettings",
|
||||||
"text2": [
|
"description": ""
|
||||||
"Advanced",
|
},
|
||||||
"settings"
|
"PowerSavingMenu": {
|
||||||
],
|
"displayText": "Sleep\nmode",
|
||||||
"desc": ""
|
"description": ""
|
||||||
}
|
},
|
||||||
},
|
"UIMenu": {
|
||||||
"menuOptions": {
|
"displayText": "User\ninterface",
|
||||||
"DCInCutoff": {
|
"description": ""
|
||||||
"text2": [
|
},
|
||||||
"Power",
|
"AdvancedMenu": {
|
||||||
"source"
|
"displayText": "Advanced\nsettings",
|
||||||
],
|
"description": ""
|
||||||
"desc": "Set cutoff voltage to prevent battery overdrainage (DC 10V) (S=3.3V per cell, disable PWR limit)"
|
}
|
||||||
},
|
},
|
||||||
"MinVolCell": {
|
"menuOptions": {
|
||||||
"text2": [
|
"DCInCutoff": {
|
||||||
"Minimum",
|
"displayText": "Power\nsource",
|
||||||
"voltage"
|
"description": "Set cutoff voltage to prevent battery overdrainage (DC 10V) (S=3.3V per cell, disable PWR limit)"
|
||||||
],
|
},
|
||||||
"desc": "Minimum allowed voltage per battery cell (3S: 3 - 3.7V | 4-6S: 2.4 - 3.7V)"
|
"MinVolCell": {
|
||||||
},
|
"displayText": "Minimum\nvoltage",
|
||||||
"QCMaxVoltage": {
|
"description": "Minimum allowed voltage per battery cell (3S: 3 - 3.7V | 4-6S: 2.4 - 3.7V)"
|
||||||
"text2": [
|
},
|
||||||
"QC",
|
"QCMaxVoltage": {
|
||||||
"voltage"
|
"displayText": "QC\nvoltage",
|
||||||
],
|
"description": "Max QC voltage the iron should negotiate for"
|
||||||
"desc": "Max QC voltage the iron should negotiate for"
|
},
|
||||||
},
|
"PDNegTimeout": {
|
||||||
"PDNegTimeout": {
|
"displayText": "PD\ntimeout",
|
||||||
"text2": [
|
"description": "PD negotiation timeout in 100ms steps for compatibility with some QC chargers"
|
||||||
"PD",
|
},
|
||||||
"timeout"
|
"BoostTemperature": {
|
||||||
],
|
"displayText": "Boost\ntemp",
|
||||||
"desc": "PD negotiation timeout in 100ms steps for compatibility with some QC chargers"
|
"description": "Tip temperature used in \"boost mode\""
|
||||||
},
|
},
|
||||||
"BoostTemperature": {
|
"AutoStart": {
|
||||||
"text2": [
|
"displayText": "Start-up\nbehavior",
|
||||||
"Boost",
|
"description": "O=off | S=heat to soldering temp | Z=standby at sleep temp until moved | R=standby without heating until moved"
|
||||||
"temp"
|
},
|
||||||
],
|
"TempChangeShortStep": {
|
||||||
"desc": "Tip temperature used in \"boost mode\""
|
"displayText": "Temp change\nshort",
|
||||||
},
|
"description": "Temperature-change-increment on short button press"
|
||||||
"AutoStart": {
|
},
|
||||||
"text2": [
|
"TempChangeLongStep": {
|
||||||
"Start-up",
|
"displayText": "Temp change\nlong",
|
||||||
"behavior"
|
"description": "Temperature-change-increment on long button press"
|
||||||
],
|
},
|
||||||
"desc": "O=off | S=heat to soldering temp | Z=standby at sleep temp until moved | R=standby without heating until moved"
|
"LockingMode": {
|
||||||
},
|
"displayText": "Allow locking\nbuttons",
|
||||||
"TempChangeShortStep": {
|
"description": "While soldering, hold down both buttons to toggle locking them (D=disable | B=boost mode only | F=full locking)"
|
||||||
"text2": [
|
},
|
||||||
"Temp change",
|
"MotionSensitivity": {
|
||||||
"short"
|
"displayText": "Motion\nsensitivity",
|
||||||
],
|
"description": "0=off | 1=least sensitive | ... | 9=most sensitive"
|
||||||
"desc": "Temperature-change-increment on short button press"
|
},
|
||||||
},
|
"SleepTemperature": {
|
||||||
"TempChangeLongStep": {
|
"displayText": "Sleep\ntemp",
|
||||||
"text2": [
|
"description": "Tip temperature while in \"sleep mode\""
|
||||||
"Temp change",
|
},
|
||||||
"long"
|
"SleepTimeout": {
|
||||||
],
|
"displayText": "Sleep\ntimeout",
|
||||||
"desc": "Temperature-change-increment on long button press"
|
"description": "Interval before \"sleep mode\" starts (s=seconds | m=minutes)"
|
||||||
},
|
},
|
||||||
"LockingMode": {
|
"ShutdownTimeout": {
|
||||||
"text2": [
|
"displayText": "Shutdown\ntimeout",
|
||||||
"Allow locking",
|
"description": "Interval before the iron shuts down (m=minutes)"
|
||||||
"buttons"
|
},
|
||||||
],
|
"HallEffSensitivity": {
|
||||||
"desc": "While soldering, hold down both buttons to toggle locking them (D=disable | B=boost mode only | F=full locking)"
|
"displayText": "Hall sensor\nsensitivity",
|
||||||
},
|
"description": "Sensitivity to magnets (0=off | 1=least sensitive | ... | 9=most sensitive)"
|
||||||
"MotionSensitivity": {
|
},
|
||||||
"text2": [
|
"TemperatureUnit": {
|
||||||
"Motion",
|
"displayText": "Temperature\nunit",
|
||||||
"sensitivity"
|
"description": "C=°Celsius | F=°Fahrenheit"
|
||||||
],
|
},
|
||||||
"desc": "0=off | 1=least sensitive | ... | 9=most sensitive"
|
"DisplayRotation": {
|
||||||
},
|
"displayText": "Display\norientation",
|
||||||
"SleepTemperature": {
|
"description": "R=right-handed | L=left-handed | A=automatic"
|
||||||
"text2": [
|
},
|
||||||
"Sleep",
|
"CooldownBlink": {
|
||||||
"temp"
|
"displayText": "Cooldown\nflashing",
|
||||||
],
|
"description": "Flash temp reading at idle while tip is hot"
|
||||||
"desc": "Tip temperature while in \"sleep mode\""
|
},
|
||||||
},
|
"ScrollingSpeed": {
|
||||||
"SleepTimeout": {
|
"displayText": "Scrolling\nspeed",
|
||||||
"text2": [
|
"description": "Scrolling speed of info text (S=slow | F=fast)"
|
||||||
"Sleep",
|
},
|
||||||
"timeout"
|
"ReverseButtonTempChange": {
|
||||||
],
|
"displayText": "Swap\n+ - keys",
|
||||||
"desc": "Interval before \"sleep mode\" starts (s=seconds | m=minutes)"
|
"description": "Reverse assignment of buttons for temperature adjustment"
|
||||||
},
|
},
|
||||||
"ShutdownTimeout": {
|
"AnimSpeed": {
|
||||||
"text2": [
|
"displayText": "Anim.\nspeed",
|
||||||
"Shutdown",
|
"description": "Pace of icon animations in menu (O=off | S=slow | M=medium | F=fast)"
|
||||||
"timeout"
|
},
|
||||||
],
|
"AnimLoop": {
|
||||||
"desc": "Interval before the iron shuts down (m=minutes)"
|
"displayText": "Anim.\nloop",
|
||||||
},
|
"description": "Loop icon animations in main menu"
|
||||||
"HallEffSensitivity": {
|
},
|
||||||
"text2": [
|
"Brightness": {
|
||||||
"Hall sensor",
|
"displayText": "Screen\nbrightness",
|
||||||
"sensitivity"
|
"description": "Adjust the OLED screen brightness"
|
||||||
],
|
},
|
||||||
"desc": "Sensitivity to magnets (0=off | 1=least sensitive | ... | 9=most sensitive)"
|
"ColourInversion": {
|
||||||
},
|
"displayText": "Invert\nscreen",
|
||||||
"TemperatureUnit": {
|
"description": "Invert the OLED screen colors"
|
||||||
"text2": [
|
},
|
||||||
"Temperature",
|
"LOGOTime": {
|
||||||
"unit"
|
"displayText": "Boot logo\nduration",
|
||||||
],
|
"description": "Set boot logo duration (s=seconds)"
|
||||||
"desc": "C=°Celsius | F=°Fahrenheit"
|
},
|
||||||
},
|
"AdvancedIdle": {
|
||||||
"DisplayRotation": {
|
"displayText": "Detailed\nidle screen",
|
||||||
"text2": [
|
"description": "Display detailed info in a smaller font on idle screen"
|
||||||
"Display",
|
},
|
||||||
"orientation"
|
"AdvancedSoldering": {
|
||||||
],
|
"displayText": "Detailed\nsolder screen",
|
||||||
"desc": "R=right-handed | L=left-handed | A=automatic"
|
"description": "Display detailed info in a smaller font on soldering screen"
|
||||||
},
|
},
|
||||||
"CooldownBlink": {
|
"PowerLimit": {
|
||||||
"text2": [
|
"displayText": "Power\nlimit",
|
||||||
"Cooldown",
|
"description": "Maximum power the iron can use (W=watt)"
|
||||||
"flashing"
|
},
|
||||||
],
|
"CalibrateCJC": {
|
||||||
"desc": "Flash temp reading at idle while tip is hot"
|
"displayText": "Calibrate CJC\nat next boot",
|
||||||
},
|
"description": "Calbrate Cold Junction Compensation at next boot (not required if Delta T is < 5°C)"
|
||||||
"ScrollingSpeed": {
|
},
|
||||||
"text2": [
|
"VoltageCalibration": {
|
||||||
"Scrolling",
|
"displayText": "Calibrate\ninput voltage",
|
||||||
"speed"
|
"description": "Start VIN calibration (long press to exit)"
|
||||||
],
|
},
|
||||||
"desc": "Scrolling speed of info text (S=slow | F=fast)"
|
"PowerPulsePower": {
|
||||||
},
|
"displayText": "Power\npulse",
|
||||||
"ReverseButtonTempChange": {
|
"description": "Intensity of power of keep-awake-pulse (W=watt)"
|
||||||
"text2": [
|
},
|
||||||
"Swap",
|
"PowerPulseWait": {
|
||||||
"+ - keys"
|
"displayText": "Power pulse\ndelay",
|
||||||
],
|
"description": "Delay before keep-awake-pulse is triggered (x 2.5s)"
|
||||||
"desc": "Reverse assignment of buttons for temperature adjustment"
|
},
|
||||||
},
|
"PowerPulseDuration": {
|
||||||
"AnimSpeed": {
|
"displayText": "Power pulse\nduration",
|
||||||
"text2": [
|
"description": "Keep-awake-pulse duration (x 250ms)"
|
||||||
"Anim.",
|
},
|
||||||
"speed"
|
"SettingsReset": {
|
||||||
],
|
"displayText": "Restore default\nsettings",
|
||||||
"desc": "Pace of icon animations in menu (O=off | S=slow | M=medium | F=fast)"
|
"description": "Reset all settings to default"
|
||||||
},
|
},
|
||||||
"AnimLoop": {
|
"LanguageSwitch": {
|
||||||
"text2": [
|
"displayText": "Language:\n EN English",
|
||||||
"Anim.",
|
"description": ""
|
||||||
"loop"
|
}
|
||||||
],
|
}
|
||||||
"desc": "Loop icon animations in main menu"
|
}
|
||||||
},
|
|
||||||
"Brightness": {
|
|
||||||
"text2": [
|
|
||||||
"Screen",
|
|
||||||
"brightness"
|
|
||||||
],
|
|
||||||
"desc": "Adjust the OLED screen brightness"
|
|
||||||
},
|
|
||||||
"ColourInversion": {
|
|
||||||
"text2": [
|
|
||||||
"Invert",
|
|
||||||
"screen"
|
|
||||||
],
|
|
||||||
"desc": "Invert the OLED screen colors"
|
|
||||||
},
|
|
||||||
"LOGOTime": {
|
|
||||||
"text2": [
|
|
||||||
"Boot logo",
|
|
||||||
"duration"
|
|
||||||
],
|
|
||||||
"desc": "Set boot logo duration (s=seconds)"
|
|
||||||
},
|
|
||||||
"AdvancedIdle": {
|
|
||||||
"text2": [
|
|
||||||
"Detailed",
|
|
||||||
"idle screen"
|
|
||||||
],
|
|
||||||
"desc": "Display detailed info in a smaller font on idle screen"
|
|
||||||
},
|
|
||||||
"AdvancedSoldering": {
|
|
||||||
"text2": [
|
|
||||||
"Detailed",
|
|
||||||
"solder screen"
|
|
||||||
],
|
|
||||||
"desc": "Display detailed info in a smaller font on soldering screen"
|
|
||||||
},
|
|
||||||
"PowerLimit": {
|
|
||||||
"text2": [
|
|
||||||
"Power",
|
|
||||||
"limit"
|
|
||||||
],
|
|
||||||
"desc": "Maximum power the iron can use (W=watt)"
|
|
||||||
},
|
|
||||||
"CalibrateCJC": {
|
|
||||||
"text2": [
|
|
||||||
"Calibrate CJC",
|
|
||||||
"at next boot"
|
|
||||||
],
|
|
||||||
"desc": "Calbrate Cold Junction Compensation at next boot (not required if Delta T is < 5°C)"
|
|
||||||
},
|
|
||||||
"VoltageCalibration": {
|
|
||||||
"text2": [
|
|
||||||
"Calibrate",
|
|
||||||
"input voltage"
|
|
||||||
],
|
|
||||||
"desc": "Start VIN calibration (long press to exit)"
|
|
||||||
},
|
|
||||||
"PowerPulsePower": {
|
|
||||||
"text2": [
|
|
||||||
"Power",
|
|
||||||
"pulse"
|
|
||||||
],
|
|
||||||
"desc": "Intensity of power of keep-awake-pulse (W=watt)"
|
|
||||||
},
|
|
||||||
"PowerPulseWait": {
|
|
||||||
"text2": [
|
|
||||||
"Power pulse",
|
|
||||||
"delay"
|
|
||||||
],
|
|
||||||
"desc": "Delay before keep-awake-pulse is triggered (x 2.5s)"
|
|
||||||
},
|
|
||||||
"PowerPulseDuration": {
|
|
||||||
"text2": [
|
|
||||||
"Power pulse",
|
|
||||||
"duration"
|
|
||||||
],
|
|
||||||
"desc": "Keep-awake-pulse duration (x 250ms)"
|
|
||||||
},
|
|
||||||
"SettingsReset": {
|
|
||||||
"text2": [
|
|
||||||
"Restore default",
|
|
||||||
"settings"
|
|
||||||
],
|
|
||||||
"desc": "Reset all settings to default"
|
|
||||||
},
|
|
||||||
"LanguageSwitch": {
|
|
||||||
"text2": [
|
|
||||||
"Language:",
|
|
||||||
" EN English"
|
|
||||||
],
|
|
||||||
"desc": ""
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,338 +1,243 @@
|
|||||||
{
|
{
|
||||||
"languageCode": "ES",
|
"languageCode": "ES",
|
||||||
"languageLocalName": "Castellano",
|
"languageLocalName": "Castellano",
|
||||||
"tempUnitFahrenheit": false,
|
"tempUnitFahrenheit": false,
|
||||||
"messages": {
|
"messagesWarn": {
|
||||||
"SettingsCalibrationWarning": "Before rebooting, make sure tip & handle are at room temperature!",
|
"CJCCalibrationDone": {
|
||||||
"CJCCalibrating": "calibrating",
|
"message": "Calibration\ndone!"
|
||||||
"SettingsResetWarning": "¿Quieres restablecer los ajustes?",
|
},
|
||||||
"UVLOWarningString": "CC BAJA",
|
"ResetOKMessage": {
|
||||||
"UndervoltageString": "Voltaje bajo",
|
"message": "Hecho."
|
||||||
"InputVoltageString": "Voltaje: ",
|
},
|
||||||
"SleepingSimpleString": "Zzzz",
|
"SettingsResetMessage": {
|
||||||
"SleepingAdvancedString": "En reposo...",
|
"message": "Ajustes\n¡Reiniciados!"
|
||||||
"SleepingTipAdvancedString": "Punta:",
|
},
|
||||||
"OffString": " No",
|
"NoAccelerometerMessage": {
|
||||||
"DeviceFailedValidationWarning": "Your device is most likely a counterfeit!"
|
"message": "Sin acelerómetro\n¡Detectado!"
|
||||||
},
|
},
|
||||||
"messagesWarn": {
|
"NoPowerDeliveryMessage": {
|
||||||
"CJCCalibrationDone": [
|
"message": "Sin USB-PD IC\n¡Detectado!"
|
||||||
"Calibration",
|
},
|
||||||
"done!"
|
"LockingKeysString": {
|
||||||
],
|
"message": " BLOQUEADO"
|
||||||
"ResetOKMessage": "Hecho.",
|
},
|
||||||
"SettingsResetMessage": [
|
"UnlockingKeysString": {
|
||||||
"Ajustes",
|
"message": "DESBLOQUEADO"
|
||||||
"¡Reiniciados!"
|
},
|
||||||
],
|
"WarningKeysLockedString": {
|
||||||
"NoAccelerometerMessage": [
|
"message": "¡BLOQUEADO!"
|
||||||
"Sin acelerómetro",
|
},
|
||||||
"¡Detectado!"
|
"WarningThermalRunaway": {
|
||||||
],
|
"message": "Thermal\nRunaway"
|
||||||
"NoPowerDeliveryMessage": [
|
},
|
||||||
"Sin USB-PD IC",
|
"SettingsCalibrationWarning": {
|
||||||
"¡Detectado!"
|
"message": "Before rebooting, make sure tip & handle are at room temperature!"
|
||||||
],
|
},
|
||||||
"LockingKeysString": " BLOQUEADO",
|
"CJCCalibrating": {
|
||||||
"UnlockingKeysString": "DESBLOQUEADO",
|
"message": "calibrating"
|
||||||
"WarningKeysLockedString": "¡BLOQUEADO!",
|
},
|
||||||
"WarningThermalRunaway": [
|
"SettingsResetWarning": {
|
||||||
"Thermal",
|
"message": "¿Quieres restablecer los ajustes?"
|
||||||
"Runaway"
|
},
|
||||||
]
|
"UVLOWarningString": {
|
||||||
},
|
"message": "CC BAJA"
|
||||||
"characters": {
|
},
|
||||||
"SettingRightChar": "D",
|
"UndervoltageString": {
|
||||||
"SettingLeftChar": "I",
|
"message": "Voltaje bajo"
|
||||||
"SettingAutoChar": "A",
|
},
|
||||||
"SettingOffChar": "O",
|
"InputVoltageString": {
|
||||||
"SettingSlowChar": "L",
|
"message": "Voltaje: "
|
||||||
"SettingMediumChar": "M",
|
},
|
||||||
"SettingFastChar": "R",
|
"SleepingSimpleString": {
|
||||||
"SettingStartNoneChar": "N",
|
"message": "Zzzz"
|
||||||
"SettingStartSolderingChar": "S",
|
},
|
||||||
"SettingStartSleepChar": "R",
|
"SleepingAdvancedString": {
|
||||||
"SettingStartSleepOffChar": "F",
|
"message": "En reposo..."
|
||||||
"SettingLockDisableChar": "D",
|
},
|
||||||
"SettingLockBoostChar": "B",
|
"SleepingTipAdvancedString": {
|
||||||
"SettingLockFullChar": "F"
|
"message": "Punta:"
|
||||||
},
|
},
|
||||||
"menuGroups": {
|
"OffString": {
|
||||||
"PowerMenu": {
|
"message": " No"
|
||||||
"text2": [
|
},
|
||||||
"Potencia",
|
"DeviceFailedValidationWarning": {
|
||||||
"ajustes"
|
"message": "Your device is most likely a counterfeit!"
|
||||||
],
|
}
|
||||||
"desc": ""
|
},
|
||||||
},
|
"characters": {
|
||||||
"SolderingMenu": {
|
"SettingRightChar": "D",
|
||||||
"text2": [
|
"SettingLeftChar": "I",
|
||||||
"Soldadura",
|
"SettingAutoChar": "A",
|
||||||
"ajustes"
|
"SettingOffChar": "O",
|
||||||
],
|
"SettingSlowChar": "L",
|
||||||
"desc": ""
|
"SettingMediumChar": "M",
|
||||||
},
|
"SettingFastChar": "R",
|
||||||
"PowerSavingMenu": {
|
"SettingStartNoneChar": "N",
|
||||||
"text2": [
|
"SettingStartSolderingChar": "S",
|
||||||
"Modos de",
|
"SettingStartSleepChar": "R",
|
||||||
"reposo"
|
"SettingStartSleepOffChar": "F",
|
||||||
],
|
"SettingLockDisableChar": "D",
|
||||||
"desc": ""
|
"SettingLockBoostChar": "B",
|
||||||
},
|
"SettingLockFullChar": "F"
|
||||||
"UIMenu": {
|
},
|
||||||
"text2": [
|
"menuGroups": {
|
||||||
"Interfaz",
|
"PowerMenu": {
|
||||||
"de usuario"
|
"displayText": "Potencia\najustes",
|
||||||
],
|
"description": ""
|
||||||
"desc": ""
|
},
|
||||||
},
|
"SolderingMenu": {
|
||||||
"AdvancedMenu": {
|
"displayText": "Soldadura\najustes",
|
||||||
"text2": [
|
"description": ""
|
||||||
"Ajustes",
|
},
|
||||||
"avanzados"
|
"PowerSavingMenu": {
|
||||||
],
|
"displayText": "Modos de\nreposo",
|
||||||
"desc": ""
|
"description": ""
|
||||||
}
|
},
|
||||||
},
|
"UIMenu": {
|
||||||
"menuOptions": {
|
"displayText": "Interfaz\nde usuario",
|
||||||
"DCInCutoff": {
|
"description": ""
|
||||||
"text2": [
|
},
|
||||||
"Fuente",
|
"AdvancedMenu": {
|
||||||
"de energía"
|
"displayText": "Ajustes\navanzados",
|
||||||
],
|
"description": ""
|
||||||
"desc": "Elige el tipo de fuente para limitar el voltaje (DC 10V) (S 3,3V por pila, ilimitado)"
|
}
|
||||||
},
|
},
|
||||||
"MinVolCell": {
|
"menuOptions": {
|
||||||
"text2": [
|
"DCInCutoff": {
|
||||||
"Mínimo",
|
"displayText": "Fuente\nde energía",
|
||||||
"voltaje"
|
"description": "Elige el tipo de fuente para limitar el voltaje (DC 10V) (S 3,3V por pila, ilimitado)"
|
||||||
],
|
},
|
||||||
"desc": "voltaje mínimo permitido por célula (3S: 3 - 3,7V | 4-6S: 2,4 - 3,7V)"
|
"MinVolCell": {
|
||||||
},
|
"displayText": "Mínimo\nvoltaje",
|
||||||
"QCMaxVoltage": {
|
"description": "voltaje mínimo permitido por célula (3S: 3 - 3,7V | 4-6S: 2,4 - 3,7V)"
|
||||||
"text2": [
|
},
|
||||||
"Potencia de",
|
"QCMaxVoltage": {
|
||||||
"entrada"
|
"displayText": "Potencia de\nentrada",
|
||||||
],
|
"description": "Potencia en vatios del adaptador de corriente utilizado."
|
||||||
"desc": "Potencia en vatios del adaptador de corriente utilizado."
|
},
|
||||||
},
|
"PDNegTimeout": {
|
||||||
"PDNegTimeout": {
|
"displayText": "PD\ntimeout",
|
||||||
"text2": [
|
"description": "PD negotiation timeout in 100ms steps for compatibility with some QC chargers (0: disabled)"
|
||||||
"PD",
|
},
|
||||||
"timeout"
|
"BoostTemperature": {
|
||||||
],
|
"displayText": "Ajustar la\ntemp. extra",
|
||||||
"desc": "PD negotiation timeout in 100ms steps for compatibility with some QC chargers (0: disabled)"
|
"description": "Temperatura momentánea que se alcanza al apretar el botón del modo extra."
|
||||||
},
|
},
|
||||||
"BoostTemperature": {
|
"AutoStart": {
|
||||||
"text2": [
|
"displayText": "Calentar\nal enchufar",
|
||||||
"Ajustar la",
|
"description": "Se calienta él solo al arrancar (N=no | S=entrar en modo soldar | R=solo entrar en reposo | F=en reposo pero mantiene la punta fría)"
|
||||||
"temp. extra"
|
},
|
||||||
],
|
"TempChangeShortStep": {
|
||||||
"desc": "Temperatura momentánea que se alcanza al apretar el botón del modo extra."
|
"displayText": "Cambio temp.\npuls. cortas",
|
||||||
},
|
"description": "Subir y bajar X grados de temperatura con cada pulsación corta de los botones +/-."
|
||||||
"AutoStart": {
|
},
|
||||||
"text2": [
|
"TempChangeLongStep": {
|
||||||
"Calentar",
|
"displayText": "Cambio temp.\npuls. largas",
|
||||||
"al enchufar"
|
"description": "Subir y bajar X grados de temperatura con cada pulsación larga de los botones +/-."
|
||||||
],
|
},
|
||||||
"desc": "Se calienta él solo al arrancar (N=no | S=entrar en modo soldar | R=solo entrar en reposo | F=en reposo pero mantiene la punta fría)"
|
"LockingMode": {
|
||||||
},
|
"displayText": "Permitir botones\nbloqueo",
|
||||||
"TempChangeShortStep": {
|
"description": "Al soldar, una pulsación larga en ambos botones los bloquea (D=desactivar | B=sólo potenciar | F=bloqueo total)."
|
||||||
"text2": [
|
},
|
||||||
"Cambio temp.",
|
"MotionSensitivity": {
|
||||||
"puls. cortas"
|
"displayText": "Detección de\nmovimiento",
|
||||||
],
|
"description": "Tiempo de reacción al agarrar (0=no | 1=menos sensible | ... | 9=más sensible)"
|
||||||
"desc": "Subir y bajar X grados de temperatura con cada pulsación corta de los botones +/-."
|
},
|
||||||
},
|
"SleepTemperature": {
|
||||||
"TempChangeLongStep": {
|
"displayText": "Temperatura\nen reposo",
|
||||||
"text2": [
|
"description": "Temperatura de la punta en reposo."
|
||||||
"Cambio temp.",
|
},
|
||||||
"puls. largas"
|
"SleepTimeout": {
|
||||||
],
|
"displayText": "Entrar\nen reposo",
|
||||||
"desc": "Subir y bajar X grados de temperatura con cada pulsación larga de los botones +/-."
|
"description": "Tiempo de inactividad para entrar en reposo (min | seg)"
|
||||||
},
|
},
|
||||||
"LockingMode": {
|
"ShutdownTimeout": {
|
||||||
"text2": [
|
"displayText": "Tiempo de\napagado",
|
||||||
"Permitir botones",
|
"description": "Tiempo de inactividad para apagarse (en minutos)"
|
||||||
"bloqueo"
|
},
|
||||||
],
|
"HallEffSensitivity": {
|
||||||
"desc": "Al soldar, una pulsación larga en ambos botones los bloquea (D=desactivar | B=sólo potenciar | F=bloqueo total)."
|
"displayText": "Hall Eff\nSensibilidad",
|
||||||
},
|
"description": "Sensibilidad del sensor de efecto Hall en la detección de reposo (0=no | 1=menos sensible | ... | 9=más sensible)"
|
||||||
"MotionSensitivity": {
|
},
|
||||||
"text2": [
|
"TemperatureUnit": {
|
||||||
"Detección de",
|
"displayText": "Unidad de\ntemperatura",
|
||||||
"movimiento"
|
"description": "Unidad de temperatura (C=centígrados | F=Fahrenheit)"
|
||||||
],
|
},
|
||||||
"desc": "Tiempo de reacción al agarrar (0=no | 1=menos sensible | ... | 9=más sensible)"
|
"DisplayRotation": {
|
||||||
},
|
"displayText": "Orientación\nde pantalla",
|
||||||
"SleepTemperature": {
|
"description": "Orientación de la pantalla (D=diestro | I=zurdo | A=automático)"
|
||||||
"text2": [
|
},
|
||||||
"Temperatura",
|
"CooldownBlink": {
|
||||||
"en reposo"
|
"displayText": "Parpadear\nal enfriar",
|
||||||
],
|
"description": "La temperatura en pantalla parpadea mientras la punta siga caliente."
|
||||||
"desc": "Temperatura de la punta en reposo."
|
},
|
||||||
},
|
"ScrollingSpeed": {
|
||||||
"SleepTimeout": {
|
"displayText": "Velocidad\ndel texto",
|
||||||
"text2": [
|
"description": "Velocidad de desplazamiento del texto (R=rápida | L=lenta)"
|
||||||
"Entrar",
|
},
|
||||||
"en reposo"
|
"ReverseButtonTempChange": {
|
||||||
],
|
"displayText": "Invertir\nbotones +/-",
|
||||||
"desc": "Tiempo de inactividad para entrar en reposo (min | seg)"
|
"description": "Intercambia las funciones de subir y bajar la temperatura de los botones +/- para que funcionen al revés."
|
||||||
},
|
},
|
||||||
"ShutdownTimeout": {
|
"AnimSpeed": {
|
||||||
"text2": [
|
"displayText": "Anim.\nvelocidad",
|
||||||
"Tiempo de",
|
"description": "Velocidad de las animaciones de los iconos en el menú (O=off | L=low | M=medium | R=high)"
|
||||||
"apagado"
|
},
|
||||||
],
|
"AnimLoop": {
|
||||||
"desc": "Tiempo de inactividad para apagarse (en minutos)"
|
"displayText": "Anim.\nbucle",
|
||||||
},
|
"description": "Animaciones de iconos en bucle en el menú raíz"
|
||||||
"HallEffSensitivity": {
|
},
|
||||||
"text2": [
|
"Brightness": {
|
||||||
"Hall Eff",
|
"displayText": "Pantalla\nbrillo",
|
||||||
"Sensibilidad"
|
"description": "Ajusta el brillo de la pantalla OLED"
|
||||||
],
|
},
|
||||||
"desc": "Sensibilidad del sensor de efecto Hall en la detección de reposo (0=no | 1=menos sensible | ... | 9=más sensible)"
|
"ColourInversion": {
|
||||||
},
|
"displayText": "Invertir\npantalla",
|
||||||
"TemperatureUnit": {
|
"description": "Invertir la pantalla OLED"
|
||||||
"text2": [
|
},
|
||||||
"Unidad de",
|
"LOGOTime": {
|
||||||
"temperatura"
|
"displayText": "logo inicial\nduración",
|
||||||
],
|
"description": "Duración de la animación del logo inicial (s=segundos)"
|
||||||
"desc": "Unidad de temperatura (C=centígrados | F=Fahrenheit)"
|
},
|
||||||
},
|
"AdvancedIdle": {
|
||||||
"DisplayRotation": {
|
"displayText": "Info extra en\nmodo reposo",
|
||||||
"text2": [
|
"description": "Muestra información detallada en letra pequeña al reposar."
|
||||||
"Orientación",
|
},
|
||||||
"de pantalla"
|
"AdvancedSoldering": {
|
||||||
],
|
"displayText": "Info extra\nal soldar",
|
||||||
"desc": "Orientación de la pantalla (D=diestro | I=zurdo | A=automático)"
|
"description": "Muestra más datos por pantalla cuando se está soldando."
|
||||||
},
|
},
|
||||||
"CooldownBlink": {
|
"PowerLimit": {
|
||||||
"text2": [
|
"displayText": "Ajustar la\npotenc. máx.",
|
||||||
"Parpadear",
|
"description": "Elige el límite de potencia máxima del soldador (en vatios)"
|
||||||
"al enfriar"
|
},
|
||||||
],
|
"CalibrateCJC": {
|
||||||
"desc": "La temperatura en pantalla parpadea mientras la punta siga caliente."
|
"displayText": "Calibrar CJC\nen el próximo inicio",
|
||||||
},
|
"description": "At next boot tip Cold Junction Compensation will be calibrated (not required if Delta T is < 5°C)"
|
||||||
"ScrollingSpeed": {
|
},
|
||||||
"text2": [
|
"VoltageCalibration": {
|
||||||
"Velocidad",
|
"displayText": "Calibrar voltaje\nde entrada",
|
||||||
"del texto"
|
"description": "Calibra VIN. Ajusta con ambos botones y mantén pulsado para salir."
|
||||||
],
|
},
|
||||||
"desc": "Velocidad de desplazamiento del texto (R=rápida | L=lenta)"
|
"PowerPulsePower": {
|
||||||
},
|
"displayText": "Pulsos bat.\nconstantes",
|
||||||
"ReverseButtonTempChange": {
|
"description": "Aplica unos pulsos necesarios para mantener encendidas ciertas baterías portátiles. En vatios."
|
||||||
"text2": [
|
},
|
||||||
"Invertir",
|
"PowerPulseWait": {
|
||||||
"botones +/-"
|
"displayText": "Impulso de potencia\ntiempo de espera",
|
||||||
],
|
"description": "Tiempo de espera antes de disparar cada pulso de mantenimiento de la vigilia (x 2,5s)"
|
||||||
"desc": "Intercambia las funciones de subir y bajar la temperatura de los botones +/- para que funcionen al revés."
|
},
|
||||||
},
|
"PowerPulseDuration": {
|
||||||
"AnimSpeed": {
|
"displayText": "Impulso de potencia\nduración",
|
||||||
"text2": [
|
"description": "Duración del impulso de mantenimiento de la vigilia (x 250ms)"
|
||||||
"Anim.",
|
},
|
||||||
"velocidad"
|
"SettingsReset": {
|
||||||
],
|
"displayText": "Volver a ajustes\nde fábrica",
|
||||||
"desc": "Velocidad de las animaciones de los iconos en el menú (O=off | L=low | M=medium | R=high)"
|
"description": "Restablece todos los ajustes a los valores originales."
|
||||||
},
|
},
|
||||||
"AnimLoop": {
|
"LanguageSwitch": {
|
||||||
"text2": [
|
"displayText": "Idioma:\n ES Castellano",
|
||||||
"Anim.",
|
"description": ""
|
||||||
"bucle"
|
}
|
||||||
],
|
}
|
||||||
"desc": "Animaciones de iconos en bucle en el menú raíz"
|
|
||||||
},
|
|
||||||
"Brightness": {
|
|
||||||
"text2": [
|
|
||||||
"Pantalla",
|
|
||||||
"brillo"
|
|
||||||
],
|
|
||||||
"desc": "Ajusta el brillo de la pantalla OLED"
|
|
||||||
},
|
|
||||||
"ColourInversion": {
|
|
||||||
"text2": [
|
|
||||||
"Invertir",
|
|
||||||
"pantalla"
|
|
||||||
],
|
|
||||||
"desc": "Invertir la pantalla OLED"
|
|
||||||
},
|
|
||||||
"LOGOTime": {
|
|
||||||
"text2": [
|
|
||||||
"logo inicial",
|
|
||||||
"duración"
|
|
||||||
],
|
|
||||||
"desc": "Duración de la animación del logo inicial (s=segundos)"
|
|
||||||
},
|
|
||||||
"AdvancedIdle": {
|
|
||||||
"text2": [
|
|
||||||
"Info extra en",
|
|
||||||
"modo reposo"
|
|
||||||
],
|
|
||||||
"desc": "Muestra información detallada en letra pequeña al reposar."
|
|
||||||
},
|
|
||||||
"AdvancedSoldering": {
|
|
||||||
"text2": [
|
|
||||||
"Info extra",
|
|
||||||
"al soldar"
|
|
||||||
],
|
|
||||||
"desc": "Muestra más datos por pantalla cuando se está soldando."
|
|
||||||
},
|
|
||||||
"PowerLimit": {
|
|
||||||
"text2": [
|
|
||||||
"Ajustar la",
|
|
||||||
"potenc. máx."
|
|
||||||
],
|
|
||||||
"desc": "Elige el límite de potencia máxima del soldador (en vatios)"
|
|
||||||
},
|
|
||||||
"CalibrateCJC": {
|
|
||||||
"text2": [
|
|
||||||
"Calibrar CJC",
|
|
||||||
|
|
||||||
"en el próximo inicio"
|
|
||||||
],
|
|
||||||
"desc": "At next boot tip Cold Junction Compensation will be calibrated (not required if Delta T is < 5°C)"
|
|
||||||
},
|
|
||||||
"VoltageCalibration": {
|
|
||||||
"text2": [
|
|
||||||
"Calibrar voltaje",
|
|
||||||
"de entrada"
|
|
||||||
],
|
|
||||||
"desc": "Calibra VIN. Ajusta con ambos botones y mantén pulsado para salir."
|
|
||||||
},
|
|
||||||
"PowerPulsePower": {
|
|
||||||
"text2": [
|
|
||||||
"Pulsos bat.",
|
|
||||||
"constantes"
|
|
||||||
],
|
|
||||||
"desc": "Aplica unos pulsos necesarios para mantener encendidas ciertas baterías portátiles. En vatios."
|
|
||||||
},
|
|
||||||
"PowerPulseWait": {
|
|
||||||
"text2": [
|
|
||||||
"Impulso de potencia",
|
|
||||||
"tiempo de espera"
|
|
||||||
],
|
|
||||||
"desc": "Tiempo de espera antes de disparar cada pulso de mantenimiento de la vigilia (x 2,5s)"
|
|
||||||
},
|
|
||||||
"PowerPulseDuration": {
|
|
||||||
"text2": [
|
|
||||||
"Impulso de potencia",
|
|
||||||
"duración"
|
|
||||||
],
|
|
||||||
"desc": "Duración del impulso de mantenimiento de la vigilia (x 250ms)"
|
|
||||||
},
|
|
||||||
"SettingsReset": {
|
|
||||||
"text2": [
|
|
||||||
"Volver a ajustes",
|
|
||||||
"de fábrica"
|
|
||||||
],
|
|
||||||
"desc": "Restablece todos los ajustes a los valores originales."
|
|
||||||
},
|
|
||||||
"LanguageSwitch": {
|
|
||||||
"text2": [
|
|
||||||
"Idioma:",
|
|
||||||
" ES Castellano"
|
|
||||||
],
|
|
||||||
"desc": ""
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@@ -1,337 +1,243 @@
|
|||||||
{
|
{
|
||||||
"languageCode": "FI",
|
"languageCode": "FI",
|
||||||
"languageLocalName": "Suomi",
|
"languageLocalName": "Suomi",
|
||||||
"tempUnitFahrenheit": false,
|
"tempUnitFahrenheit": false,
|
||||||
"messages": {
|
"messagesWarn": {
|
||||||
"SettingsCalibrationWarning": "Before rebooting, make sure tip & handle are at room temperature!",
|
"CJCCalibrationDone": {
|
||||||
"CJCCalibrating": "calibrating",
|
"message": "Calibration\ndone!"
|
||||||
"SettingsResetWarning": "Haluatko varmasti palauttaa oletusarvot?",
|
},
|
||||||
"UVLOWarningString": "DC ALH.",
|
"ResetOKMessage": {
|
||||||
"UndervoltageString": "Alijännite",
|
"message": "Palautus"
|
||||||
"InputVoltageString": "Jännite: ",
|
},
|
||||||
"SleepingSimpleString": "Zzzz",
|
"SettingsResetMessage": {
|
||||||
"SleepingAdvancedString": "Lepotila...",
|
"message": "Asetukset\npalautettu!"
|
||||||
"SleepingTipAdvancedString": "Kärki:",
|
},
|
||||||
"OffString": "Off",
|
"NoAccelerometerMessage": {
|
||||||
"DeviceFailedValidationWarning": "Your device is most likely a counterfeit!"
|
"message": "Kiihtyvyysanturi\npuuttuu!"
|
||||||
},
|
},
|
||||||
"messagesWarn": {
|
"NoPowerDeliveryMessage": {
|
||||||
"CJCCalibrationDone": [
|
"message": "USB-PD IC\npuuttuu!"
|
||||||
"Calibration",
|
},
|
||||||
"done!"
|
"LockingKeysString": {
|
||||||
],
|
"message": " LUKITTU"
|
||||||
"ResetOKMessage": "Palautus",
|
},
|
||||||
"SettingsResetMessage": [
|
"UnlockingKeysString": {
|
||||||
"Asetukset",
|
"message": "AUKI"
|
||||||
"palautettu!"
|
},
|
||||||
],
|
"WarningKeysLockedString": {
|
||||||
"NoAccelerometerMessage": [
|
"message": "!LUKKO!"
|
||||||
"Kiihtyvyysanturi",
|
},
|
||||||
"puuttuu!"
|
"WarningThermalRunaway": {
|
||||||
],
|
"message": "Thermal\nRunaway"
|
||||||
"NoPowerDeliveryMessage": [
|
},
|
||||||
"USB-PD IC",
|
"SettingsCalibrationWarning": {
|
||||||
"puuttuu!"
|
"message": "Before rebooting, make sure tip & handle are at room temperature!"
|
||||||
],
|
},
|
||||||
"LockingKeysString": " LUKITTU",
|
"CJCCalibrating": {
|
||||||
"UnlockingKeysString": "AUKI",
|
"message": "calibrating"
|
||||||
"WarningKeysLockedString": "!LUKKO!",
|
},
|
||||||
"WarningThermalRunaway": [
|
"SettingsResetWarning": {
|
||||||
"Thermal",
|
"message": "Haluatko varmasti palauttaa oletusarvot?"
|
||||||
"Runaway"
|
},
|
||||||
]
|
"UVLOWarningString": {
|
||||||
},
|
"message": "DC ALH."
|
||||||
"characters": {
|
},
|
||||||
"SettingRightChar": "O",
|
"UndervoltageString": {
|
||||||
"SettingLeftChar": "V",
|
"message": "Alijännite"
|
||||||
"SettingAutoChar": "A",
|
},
|
||||||
"SettingOffChar": "P",
|
"InputVoltageString": {
|
||||||
"SettingSlowChar": "A",
|
"message": "Jännite: "
|
||||||
"SettingMediumChar": "M",
|
},
|
||||||
"SettingFastChar": "S",
|
"SleepingSimpleString": {
|
||||||
"SettingStartNoneChar": "E",
|
"message": "Zzzz"
|
||||||
"SettingStartSolderingChar": "J",
|
},
|
||||||
"SettingStartSleepChar": "L",
|
"SleepingAdvancedString": {
|
||||||
"SettingStartSleepOffChar": "H",
|
"message": "Lepotila..."
|
||||||
"SettingLockDisableChar": "P",
|
},
|
||||||
"SettingLockBoostChar": "V",
|
"SleepingTipAdvancedString": {
|
||||||
"SettingLockFullChar": "K"
|
"message": "Kärki:"
|
||||||
},
|
},
|
||||||
"menuGroups": {
|
"OffString": {
|
||||||
"PowerMenu": {
|
"message": "Off"
|
||||||
"text2": [
|
},
|
||||||
"Virta-",
|
"DeviceFailedValidationWarning": {
|
||||||
"asetukset"
|
"message": "Your device is most likely a counterfeit!"
|
||||||
],
|
}
|
||||||
"desc": ""
|
},
|
||||||
},
|
"characters": {
|
||||||
"SolderingMenu": {
|
"SettingRightChar": "O",
|
||||||
"text2": [
|
"SettingLeftChar": "V",
|
||||||
"Juotos-",
|
"SettingAutoChar": "A",
|
||||||
"asetukset"
|
"SettingOffChar": "P",
|
||||||
],
|
"SettingSlowChar": "A",
|
||||||
"desc": ""
|
"SettingMediumChar": "M",
|
||||||
},
|
"SettingFastChar": "S",
|
||||||
"PowerSavingMenu": {
|
"SettingStartNoneChar": "E",
|
||||||
"text2": [
|
"SettingStartSolderingChar": "J",
|
||||||
"Lepotilan",
|
"SettingStartSleepChar": "L",
|
||||||
"asetukset"
|
"SettingStartSleepOffChar": "H",
|
||||||
],
|
"SettingLockDisableChar": "P",
|
||||||
"desc": ""
|
"SettingLockBoostChar": "V",
|
||||||
},
|
"SettingLockFullChar": "K"
|
||||||
"UIMenu": {
|
},
|
||||||
"text2": [
|
"menuGroups": {
|
||||||
"Käyttö-",
|
"PowerMenu": {
|
||||||
"liittymä"
|
"displayText": "Virta-\nasetukset",
|
||||||
],
|
"description": ""
|
||||||
"desc": ""
|
},
|
||||||
},
|
"SolderingMenu": {
|
||||||
"AdvancedMenu": {
|
"displayText": "Juotos-\nasetukset",
|
||||||
"text2": [
|
"description": ""
|
||||||
"Lisä-",
|
},
|
||||||
"asetukset"
|
"PowerSavingMenu": {
|
||||||
],
|
"displayText": "Lepotilan\nasetukset",
|
||||||
"desc": ""
|
"description": ""
|
||||||
}
|
},
|
||||||
},
|
"UIMenu": {
|
||||||
"menuOptions": {
|
"displayText": "Käyttö-\nliittymä",
|
||||||
"DCInCutoff": {
|
"description": ""
|
||||||
"text2": [
|
},
|
||||||
"Virtalähde",
|
"AdvancedMenu": {
|
||||||
"DC"
|
"displayText": "Lisä-\nasetukset",
|
||||||
],
|
"description": ""
|
||||||
"desc": "Virtalähde. Asettaa katkaisujännitteen. (DC 10V) (S 3.3V per kenno, poistaa virtarajoitukset)"
|
}
|
||||||
},
|
},
|
||||||
"MinVolCell": {
|
"menuOptions": {
|
||||||
"text2": [
|
"DCInCutoff": {
|
||||||
"Pienin",
|
"displayText": "Virtalähde\nDC",
|
||||||
"jännite"
|
"description": "Virtalähde. Asettaa katkaisujännitteen. (DC 10V) (S 3.3V per kenno, poistaa virtarajoitukset)"
|
||||||
],
|
},
|
||||||
"desc": "Pienin sallittu jännite per kenno (3S: 3 - 3.7V | 4-6S: 2.4 - 3.7V)"
|
"MinVolCell": {
|
||||||
},
|
"displayText": "Pienin\njännite",
|
||||||
"QCMaxVoltage": {
|
"description": "Pienin sallittu jännite per kenno (3S: 3 - 3.7V | 4-6S: 2.4 - 3.7V)"
|
||||||
"text2": [
|
},
|
||||||
"QC",
|
"QCMaxVoltage": {
|
||||||
"jännite"
|
"displayText": "QC\njännite",
|
||||||
],
|
"description": "Ensisijainen maksimi QC jännite"
|
||||||
"desc": "Ensisijainen maksimi QC jännite"
|
},
|
||||||
},
|
"PDNegTimeout": {
|
||||||
"PDNegTimeout": {
|
"displayText": "PD\ntimeout",
|
||||||
"text2": [
|
"description": "PD negotiation timeout in 100ms steps for compatibility with some QC chargers"
|
||||||
"PD",
|
},
|
||||||
"timeout"
|
"BoostTemperature": {
|
||||||
],
|
"displayText": "Tehostus-\nlämpötila",
|
||||||
"desc": "PD negotiation timeout in 100ms steps for compatibility with some QC chargers"
|
"description": "Tehostustilan lämpötila"
|
||||||
},
|
},
|
||||||
"BoostTemperature": {
|
"AutoStart": {
|
||||||
"text2": [
|
"displayText": "Autom.\nkäynnistys",
|
||||||
"Tehostus-",
|
"description": "Käynnistää virrat kytkettäessä juotostilan automaattisesti. (E=Ei käytössä | J=juotostila | L=Lepotila | H=Lepotila huoneenlämpö)"
|
||||||
"lämpötila"
|
},
|
||||||
],
|
"TempChangeShortStep": {
|
||||||
"desc": "Tehostustilan lämpötila"
|
"displayText": "Lämmön muutos\nlyhyt painal.",
|
||||||
},
|
"description": "Lämpötilan muutos lyhyellä painalluksella"
|
||||||
"AutoStart": {
|
},
|
||||||
"text2": [
|
"TempChangeLongStep": {
|
||||||
"Autom.",
|
"displayText": "Lämmön muutos\npitkä painal.",
|
||||||
"käynnistys"
|
"description": "Lämpötilan muutos pitkällä painalluksella"
|
||||||
],
|
},
|
||||||
"desc": "Käynnistää virrat kytkettäessä juotostilan automaattisesti. (E=Ei käytössä | J=juotostila | L=Lepotila | H=Lepotila huoneenlämpö)"
|
"LockingMode": {
|
||||||
},
|
"displayText": "Salli nappien\nlukitus",
|
||||||
"TempChangeShortStep": {
|
"description": "Kolvatessa paina molempia näppäimiä lukitaksesi ne (P=pois | V=vain tehostus | K=kaikki)"
|
||||||
"text2": [
|
},
|
||||||
"Lämmön muutos",
|
"MotionSensitivity": {
|
||||||
"lyhyt painal."
|
"displayText": "Liikkeen\nherkkyys",
|
||||||
],
|
"description": "0=pois päältä | 1=vähäinen herkkyys | ... | 9=suurin herkkyys"
|
||||||
"desc": "Lämpötilan muutos lyhyellä painalluksella"
|
},
|
||||||
},
|
"SleepTemperature": {
|
||||||
"TempChangeLongStep": {
|
"displayText": "Lepotilan\nlämpötila",
|
||||||
"text2": [
|
"description": "Kärjen lämpötila \"lepotilassa\""
|
||||||
"Lämmön muutos",
|
},
|
||||||
"pitkä painal."
|
"SleepTimeout": {
|
||||||
],
|
"displayText": "Lepotilan\nviive",
|
||||||
"desc": "Lämpötilan muutos pitkällä painalluksella"
|
"description": "\"Lepotilan\" ajastus (s=sekuntia | m=minuuttia)"
|
||||||
},
|
},
|
||||||
"LockingMode": {
|
"ShutdownTimeout": {
|
||||||
"text2": [
|
"displayText": "Sammutus\nviive",
|
||||||
"Salli nappien",
|
"description": "Automaattisen sammutuksen ajastus (m=minuuttia)"
|
||||||
"lukitus"
|
},
|
||||||
],
|
"HallEffSensitivity": {
|
||||||
"desc": "Kolvatessa paina molempia näppäimiä lukitaksesi ne (P=pois | V=vain tehostus | K=kaikki)"
|
"displayText": "Hall-\nherk.",
|
||||||
},
|
"description": "Hall-efektianturin herkkyys lepotilan tunnistuksessa (0=pois päältä | 1=vähäinen herkkyys | ... | 9=suurin herkkyys)"
|
||||||
"MotionSensitivity": {
|
},
|
||||||
"text2": [
|
"TemperatureUnit": {
|
||||||
"Liikkeen",
|
"displayText": "Lämpötilan\nyksikkö",
|
||||||
"herkkyys"
|
"description": "C=celsius, F=fahrenheit"
|
||||||
],
|
},
|
||||||
"desc": "0=pois päältä | 1=vähäinen herkkyys | ... | 9=suurin herkkyys"
|
"DisplayRotation": {
|
||||||
},
|
"displayText": "Näytön\nkierto",
|
||||||
"SleepTemperature": {
|
"description": "O=oikeakätinen | V=vasenkätinen | A=automaattinen"
|
||||||
"text2": [
|
},
|
||||||
"Lepotilan",
|
"CooldownBlink": {
|
||||||
"lämpötila"
|
"displayText": "Jäähdytyksen\nvilkutus",
|
||||||
],
|
"description": "Vilkuttaa jäähtyessä juotoskärjen lämpötilaa sen ollessa vielä vaarallisen kuuma"
|
||||||
"desc": "Kärjen lämpötila \"lepotilassa\""
|
},
|
||||||
},
|
"ScrollingSpeed": {
|
||||||
"SleepTimeout": {
|
"displayText": "Selityksien\nnopeus",
|
||||||
"text2": [
|
"description": "Selityksien vieritysnopeus (H=hidas | N=nopea)"
|
||||||
"Lepotilan",
|
},
|
||||||
"viive"
|
"ReverseButtonTempChange": {
|
||||||
],
|
"displayText": "Suunnanvaihto\n+ - näppäimille",
|
||||||
"desc": "\"Lepotilan\" ajastus (s=sekuntia | m=minuuttia)"
|
"description": "Lämpötilapainikkeiden suunnan vaihtaminen"
|
||||||
},
|
},
|
||||||
"ShutdownTimeout": {
|
"AnimSpeed": {
|
||||||
"text2": [
|
"displayText": "Animaation\nnopeus",
|
||||||
"Sammutus",
|
"description": "Animaatioiden nopeus valikossa (P=pois | A=alhainen | K=keskiverto | S=suuri)"
|
||||||
"viive"
|
},
|
||||||
],
|
"AnimLoop": {
|
||||||
"desc": "Automaattisen sammutuksen ajastus (m=minuuttia)"
|
"displayText": "Animaation\ntoistaminen",
|
||||||
},
|
"description": "Toista animaatiot valikossa"
|
||||||
"HallEffSensitivity": {
|
},
|
||||||
"text2": [
|
"Brightness": {
|
||||||
"Hall-",
|
"displayText": "Screen\nbrightness",
|
||||||
"herk."
|
"description": "Adjust the OLED screen brightness"
|
||||||
],
|
},
|
||||||
"desc": "Hall-efektianturin herkkyys lepotilan tunnistuksessa (0=pois päältä | 1=vähäinen herkkyys | ... | 9=suurin herkkyys)"
|
"ColourInversion": {
|
||||||
},
|
"displayText": "Invert\nscreen",
|
||||||
"TemperatureUnit": {
|
"description": "Invert the OLED screen colors"
|
||||||
"text2": [
|
},
|
||||||
"Lämpötilan",
|
"LOGOTime": {
|
||||||
"yksikkö"
|
"displayText": "Boot logo\nduration",
|
||||||
],
|
"description": "Set boot logo duration (s=seconds)"
|
||||||
"desc": "C=celsius, F=fahrenheit"
|
},
|
||||||
},
|
"AdvancedIdle": {
|
||||||
"DisplayRotation": {
|
"displayText": "Tiedot\nlepotilassa",
|
||||||
"text2": [
|
"description": "Näyttää yksityiskohtaisemmat pienemmällä fontilla tiedot lepotilassa."
|
||||||
"Näytön",
|
},
|
||||||
"kierto"
|
"AdvancedSoldering": {
|
||||||
],
|
"displayText": "Tarkempi\njuotosnäyttö",
|
||||||
"desc": "O=oikeakätinen | V=vasenkätinen | A=automaattinen"
|
"description": "Näyttää yksityiskohtaisemmat tiedot pienellä fontilla juotostilassa"
|
||||||
},
|
},
|
||||||
"CooldownBlink": {
|
"PowerLimit": {
|
||||||
"text2": [
|
"displayText": "Tehon-\nrajoitus",
|
||||||
"Jäähdytyksen",
|
"description": "Suurin sallittu teho (Watti)"
|
||||||
"vilkutus"
|
},
|
||||||
],
|
"CalibrateCJC": {
|
||||||
"desc": "Vilkuttaa jäähtyessä juotoskärjen lämpötilaa sen ollessa vielä vaarallisen kuuma"
|
"displayText": "Calibrate CJC\nat next boot",
|
||||||
},
|
"description": "At next boot tip Cold Junction Compensation will be calibrated (not required if Delta T is < 5°C)"
|
||||||
"ScrollingSpeed": {
|
},
|
||||||
"text2": [
|
"VoltageCalibration": {
|
||||||
"Selityksien",
|
"displayText": "Kalibroi\ntulojännite?",
|
||||||
"nopeus"
|
"description": "Tulojännitten kalibrointi (VIN) (paina pitkään poistuaksesi)"
|
||||||
],
|
},
|
||||||
"desc": "Selityksien vieritysnopeus (H=hidas | N=nopea)"
|
"PowerPulsePower": {
|
||||||
},
|
"displayText": "Herätyspulssin\nvoimakkuus",
|
||||||
"ReverseButtonTempChange": {
|
"description": "Herätyspulssin voimakkuus (Watti)"
|
||||||
"text2": [
|
},
|
||||||
"Suunnanvaihto",
|
"PowerPulseWait": {
|
||||||
"+ - näppäimille"
|
"displayText": "Pulssin\nodotusaika",
|
||||||
],
|
"description": "Odotusaika herätyspulssin lähetykseen (x 2.5s)"
|
||||||
"desc": "Lämpötilapainikkeiden suunnan vaihtaminen"
|
},
|
||||||
},
|
"PowerPulseDuration": {
|
||||||
"AnimSpeed": {
|
"displayText": "Pulssin\nkesto",
|
||||||
"text2": [
|
"description": "Herätyspulssin kesto (x 250ms)"
|
||||||
"Animaation",
|
},
|
||||||
"nopeus"
|
"SettingsReset": {
|
||||||
],
|
"displayText": "Palauta\ntehdasasetukset?",
|
||||||
"desc": "Animaatioiden nopeus valikossa (P=pois | A=alhainen | K=keskiverto | S=suuri)"
|
"description": "Palauta kaikki asetukset oletusarvoihin"
|
||||||
},
|
},
|
||||||
"AnimLoop": {
|
"LanguageSwitch": {
|
||||||
"text2": [
|
"displayText": "Kieli:\n FI Suomi",
|
||||||
"Animaation",
|
"description": ""
|
||||||
"toistaminen"
|
}
|
||||||
],
|
}
|
||||||
"desc": "Toista animaatiot valikossa"
|
|
||||||
},
|
|
||||||
"Brightness": {
|
|
||||||
"text2": [
|
|
||||||
"Screen",
|
|
||||||
"brightness"
|
|
||||||
],
|
|
||||||
"desc": "Adjust the OLED screen brightness"
|
|
||||||
},
|
|
||||||
"ColourInversion": {
|
|
||||||
"text2": [
|
|
||||||
"Invert",
|
|
||||||
"screen"
|
|
||||||
],
|
|
||||||
"desc": "Invert the OLED screen colors"
|
|
||||||
},
|
|
||||||
"LOGOTime": {
|
|
||||||
"text2": [
|
|
||||||
"Boot logo",
|
|
||||||
"duration"
|
|
||||||
],
|
|
||||||
"desc": "Set boot logo duration (s=seconds)"
|
|
||||||
},
|
|
||||||
"AdvancedIdle": {
|
|
||||||
"text2": [
|
|
||||||
"Tiedot",
|
|
||||||
"lepotilassa"
|
|
||||||
],
|
|
||||||
"desc": "Näyttää yksityiskohtaisemmat pienemmällä fontilla tiedot lepotilassa."
|
|
||||||
},
|
|
||||||
"AdvancedSoldering": {
|
|
||||||
"text2": [
|
|
||||||
"Tarkempi",
|
|
||||||
"juotosnäyttö"
|
|
||||||
],
|
|
||||||
"desc": "Näyttää yksityiskohtaisemmat tiedot pienellä fontilla juotostilassa"
|
|
||||||
},
|
|
||||||
"PowerLimit": {
|
|
||||||
"text2": [
|
|
||||||
"Tehon-",
|
|
||||||
"rajoitus"
|
|
||||||
],
|
|
||||||
"desc": "Suurin sallittu teho (Watti)"
|
|
||||||
},
|
|
||||||
"CalibrateCJC": {
|
|
||||||
"text2": [
|
|
||||||
"Calibrate CJC",
|
|
||||||
"at next boot"
|
|
||||||
],
|
|
||||||
"desc": "At next boot tip Cold Junction Compensation will be calibrated (not required if Delta T is < 5°C)"
|
|
||||||
},
|
|
||||||
"VoltageCalibration": {
|
|
||||||
"text2": [
|
|
||||||
"Kalibroi",
|
|
||||||
"tulojännite?"
|
|
||||||
],
|
|
||||||
"desc": "Tulojännitten kalibrointi (VIN) (paina pitkään poistuaksesi)"
|
|
||||||
},
|
|
||||||
"PowerPulsePower": {
|
|
||||||
"text2": [
|
|
||||||
"Herätyspulssin",
|
|
||||||
"voimakkuus"
|
|
||||||
],
|
|
||||||
"desc": "Herätyspulssin voimakkuus (Watti)"
|
|
||||||
},
|
|
||||||
"PowerPulseWait": {
|
|
||||||
"text2": [
|
|
||||||
"Pulssin",
|
|
||||||
"odotusaika"
|
|
||||||
],
|
|
||||||
"desc": "Odotusaika herätyspulssin lähetykseen (x 2.5s)"
|
|
||||||
},
|
|
||||||
"PowerPulseDuration": {
|
|
||||||
"text2": [
|
|
||||||
"Pulssin",
|
|
||||||
"kesto"
|
|
||||||
],
|
|
||||||
"desc": "Herätyspulssin kesto (x 250ms)"
|
|
||||||
},
|
|
||||||
"SettingsReset": {
|
|
||||||
"text2": [
|
|
||||||
"Palauta",
|
|
||||||
"tehdasasetukset?"
|
|
||||||
],
|
|
||||||
"desc": "Palauta kaikki asetukset oletusarvoihin"
|
|
||||||
},
|
|
||||||
"LanguageSwitch": {
|
|
||||||
"text2": [
|
|
||||||
"Kieli:",
|
|
||||||
" FI Suomi"
|
|
||||||
],
|
|
||||||
"desc": ""
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@@ -1,337 +1,243 @@
|
|||||||
{
|
{
|
||||||
"languageCode": "FR",
|
"languageCode": "FR",
|
||||||
"languageLocalName": "Français",
|
"languageLocalName": "Français",
|
||||||
"tempUnitFahrenheit": false,
|
"tempUnitFahrenheit": false,
|
||||||
"messages": {
|
"messagesWarn": {
|
||||||
"SettingsCalibrationWarning": "Before rebooting, make sure tip & handle are at room temperature!",
|
"CJCCalibrationDone": {
|
||||||
"CJCCalibrating": "calibrating",
|
"message": "Calibration\ndone!"
|
||||||
"SettingsResetWarning": "Voulez-vous vraiment réinitialiser les paramètres aux valeurs par défaut ?",
|
},
|
||||||
"UVLOWarningString": "DC FAIBL",
|
"ResetOKMessage": {
|
||||||
"UndervoltageString": "Sous-tension",
|
"message": "Reset OK"
|
||||||
"InputVoltageString": "V d'entrée: ",
|
},
|
||||||
"SleepingSimpleString": "Zzzz",
|
"SettingsResetMessage": {
|
||||||
"SleepingAdvancedString": "En veille...",
|
"message": "Réglages\nréinitialisés !"
|
||||||
"SleepingTipAdvancedString": "Panne:",
|
},
|
||||||
"OffString": "Off",
|
"NoAccelerometerMessage": {
|
||||||
"DeviceFailedValidationWarning": "Votre appareil semble être une contrefaçon !"
|
"message": "Accéléromètre\nnon détecté !"
|
||||||
},
|
},
|
||||||
"messagesWarn": {
|
"NoPowerDeliveryMessage": {
|
||||||
"CJCCalibrationDone": [
|
"message": "USB-PD\nnon détecté !"
|
||||||
"Calibration",
|
},
|
||||||
"done!"
|
"LockingKeysString": {
|
||||||
],
|
"message": "VERROUIL"
|
||||||
"ResetOKMessage": "Reset OK",
|
},
|
||||||
"SettingsResetMessage": [
|
"UnlockingKeysString": {
|
||||||
"Réglages",
|
"message": "DEVERROU"
|
||||||
"réinitialisés !"
|
},
|
||||||
],
|
"WarningKeysLockedString": {
|
||||||
"NoAccelerometerMessage": [
|
"message": "! VERR. !"
|
||||||
"Accéléromètre",
|
},
|
||||||
"non détecté !"
|
"WarningThermalRunaway": {
|
||||||
],
|
"message": "Emballement\nthermique"
|
||||||
"NoPowerDeliveryMessage": [
|
},
|
||||||
"USB-PD",
|
"SettingsCalibrationWarning": {
|
||||||
"non détecté !"
|
"message": "Before rebooting, make sure tip & handle are at room temperature!"
|
||||||
],
|
},
|
||||||
"LockingKeysString": "VERROUIL",
|
"CJCCalibrating": {
|
||||||
"UnlockingKeysString": "DEVERROU",
|
"message": "calibrating"
|
||||||
"WarningKeysLockedString": "! VERR. !",
|
},
|
||||||
"WarningThermalRunaway": [
|
"SettingsResetWarning": {
|
||||||
"Emballement",
|
"message": "Voulez-vous vraiment réinitialiser les paramètres aux valeurs par défaut ?"
|
||||||
"thermique"
|
},
|
||||||
]
|
"UVLOWarningString": {
|
||||||
},
|
"message": "DC FAIBL"
|
||||||
"characters": {
|
},
|
||||||
"SettingRightChar": "D",
|
"UndervoltageString": {
|
||||||
"SettingLeftChar": "G",
|
"message": "Sous-tension"
|
||||||
"SettingAutoChar": "A",
|
},
|
||||||
"SettingOffChar": "D",
|
"InputVoltageString": {
|
||||||
"SettingSlowChar": "L",
|
"message": "V d'entrée: "
|
||||||
"SettingMediumChar": "M",
|
},
|
||||||
"SettingFastChar": "R",
|
"SleepingSimpleString": {
|
||||||
"SettingStartNoneChar": "D",
|
"message": "Zzzz"
|
||||||
"SettingStartSolderingChar": "A",
|
},
|
||||||
"SettingStartSleepChar": "V",
|
"SleepingAdvancedString": {
|
||||||
"SettingStartSleepOffChar": "O",
|
"message": "En veille..."
|
||||||
"SettingLockDisableChar": "D",
|
},
|
||||||
"SettingLockBoostChar": "B",
|
"SleepingTipAdvancedString": {
|
||||||
"SettingLockFullChar": "V"
|
"message": "Panne:"
|
||||||
},
|
},
|
||||||
"menuGroups": {
|
"OffString": {
|
||||||
"PowerMenu": {
|
"message": "Off"
|
||||||
"text2": [
|
},
|
||||||
"Paramètres",
|
"DeviceFailedValidationWarning": {
|
||||||
"d'alim."
|
"message": "Votre appareil semble être une contrefaçon !"
|
||||||
],
|
}
|
||||||
"desc": ""
|
},
|
||||||
},
|
"characters": {
|
||||||
"SolderingMenu": {
|
"SettingRightChar": "D",
|
||||||
"text2": [
|
"SettingLeftChar": "G",
|
||||||
"Paramètres",
|
"SettingAutoChar": "A",
|
||||||
"de soudure"
|
"SettingOffChar": "D",
|
||||||
],
|
"SettingSlowChar": "L",
|
||||||
"desc": ""
|
"SettingMediumChar": "M",
|
||||||
},
|
"SettingFastChar": "R",
|
||||||
"PowerSavingMenu": {
|
"SettingStartNoneChar": "D",
|
||||||
"text2": [
|
"SettingStartSolderingChar": "A",
|
||||||
"Mode",
|
"SettingStartSleepChar": "V",
|
||||||
"veille"
|
"SettingStartSleepOffChar": "O",
|
||||||
],
|
"SettingLockDisableChar": "D",
|
||||||
"desc": ""
|
"SettingLockBoostChar": "B",
|
||||||
},
|
"SettingLockFullChar": "V"
|
||||||
"UIMenu": {
|
},
|
||||||
"text2": [
|
"menuGroups": {
|
||||||
"Interface",
|
"PowerMenu": {
|
||||||
"utilisateur"
|
"displayText": "Paramètres\nd'alim.",
|
||||||
],
|
"description": ""
|
||||||
"desc": ""
|
},
|
||||||
},
|
"SolderingMenu": {
|
||||||
"AdvancedMenu": {
|
"displayText": "Paramètres\nde soudure",
|
||||||
"text2": [
|
"description": ""
|
||||||
"Options",
|
},
|
||||||
"avancées"
|
"PowerSavingMenu": {
|
||||||
],
|
"displayText": "Mode\nveille",
|
||||||
"desc": ""
|
"description": ""
|
||||||
}
|
},
|
||||||
},
|
"UIMenu": {
|
||||||
"menuOptions": {
|
"displayText": "Interface\nutilisateur",
|
||||||
"DCInCutoff": {
|
"description": ""
|
||||||
"text2": [
|
},
|
||||||
"Source",
|
"AdvancedMenu": {
|
||||||
"d'alim."
|
"displayText": "Options\navancées",
|
||||||
],
|
"description": ""
|
||||||
"desc": "Source d'alimentation. Règle la tension de coupure (DC 10V) (S 3.3V par cellules, désactive la limite de puissance)"
|
}
|
||||||
},
|
},
|
||||||
"MinVolCell": {
|
"menuOptions": {
|
||||||
"text2": [
|
"DCInCutoff": {
|
||||||
"Tension",
|
"displayText": "Source\nd'alim.",
|
||||||
"minimale"
|
"description": "Source d'alimentation. Règle la tension de coupure (DC 10V) (S 3.3V par cellules, désactive la limite de puissance)"
|
||||||
],
|
},
|
||||||
"desc": "Tension minimale autorisée par cellule (3S: 3 - 3.7V | 4-6S: 2.4 - 3.7V)"
|
"MinVolCell": {
|
||||||
},
|
"displayText": "Tension\nminimale",
|
||||||
"QCMaxVoltage": {
|
"description": "Tension minimale autorisée par cellule (3S: 3 - 3.7V | 4-6S: 2.4 - 3.7V)"
|
||||||
"text2": [
|
},
|
||||||
"Tension",
|
"QCMaxVoltage": {
|
||||||
"QC"
|
"displayText": "Tension\nQC",
|
||||||
],
|
"description": "Tension maximale désirée avec une alimentation QC"
|
||||||
"desc": "Tension maximale désirée avec une alimentation QC"
|
},
|
||||||
},
|
"PDNegTimeout": {
|
||||||
"PDNegTimeout": {
|
"displayText": "Délai\nexpir. PD",
|
||||||
"text2": [
|
"description": "Délai de la negociation PD par étapes de 100ms pour la compatiblité avec certains chargeurs QC"
|
||||||
"Délai",
|
},
|
||||||
"expir. PD"
|
"BoostTemperature": {
|
||||||
],
|
"displayText": "Temp.\nboost",
|
||||||
"desc": "Délai de la negociation PD par étapes de 100ms pour la compatiblité avec certains chargeurs QC"
|
"description": "Température utilisée en \"mode boost\""
|
||||||
},
|
},
|
||||||
"BoostTemperature": {
|
"AutoStart": {
|
||||||
"text2": [
|
"displayText": "Chauffer au\ndémarrage",
|
||||||
"Temp.",
|
"description": "D=désactivé | A=activé | V=mode veille | O=mode veille à température ambiante"
|
||||||
"boost"
|
},
|
||||||
],
|
"TempChangeShortStep": {
|
||||||
"desc": "Température utilisée en \"mode boost\""
|
"displayText": "Incrément\nappui court",
|
||||||
},
|
"description": "Incrément de changement de température sur appui court"
|
||||||
"AutoStart": {
|
},
|
||||||
"text2": [
|
"TempChangeLongStep": {
|
||||||
"Chauffer au",
|
"displayText": "Incrément\nappui long",
|
||||||
"démarrage"
|
"description": "Incrément de changement de température sur appui long"
|
||||||
],
|
},
|
||||||
"desc": "D=désactivé | A=activé | V=mode veille | O=mode veille à température ambiante"
|
"LockingMode": {
|
||||||
},
|
"displayText": "Verrouiller\nles boutons",
|
||||||
"TempChangeShortStep": {
|
"description": "Pendant la soudure, appuyer sur les deux boutons pour les verrouiller (D=désactivé | B=boost seulement | V=verr. total)"
|
||||||
"text2": [
|
},
|
||||||
"Incrément",
|
"MotionSensitivity": {
|
||||||
"appui court"
|
"displayText": "Sensibilité\nau mouvement",
|
||||||
],
|
"description": "0=désactivé | 1=peu sensible | ... | 9=très sensible"
|
||||||
"desc": "Incrément de changement de température sur appui court"
|
},
|
||||||
},
|
"SleepTemperature": {
|
||||||
"TempChangeLongStep": {
|
"displayText": "Temp.\nveille",
|
||||||
"text2": [
|
"description": "Température de la panne en \"mode veille\""
|
||||||
"Incrément",
|
},
|
||||||
"appui long"
|
"SleepTimeout": {
|
||||||
],
|
"displayText": "Délai\nveille",
|
||||||
"desc": "Incrément de changement de température sur appui long"
|
"description": "Délai avant mise en veille (s=secondes | m=minutes)"
|
||||||
},
|
},
|
||||||
"LockingMode": {
|
"ShutdownTimeout": {
|
||||||
"text2": [
|
"displayText": "Délai\narrêt",
|
||||||
"Verrouiller",
|
"description": "Délai avant l'arrêt du fer à souder (m=minutes)"
|
||||||
"les boutons"
|
},
|
||||||
],
|
"HallEffSensitivity": {
|
||||||
"desc": "Pendant la soudure, appuyer sur les deux boutons pour les verrouiller (D=désactivé | B=boost seulement | V=verr. total)"
|
"displayText": "Sensibilité\ncapteur effet hall",
|
||||||
},
|
"description": "Sensibilité du capteur à effet Hall pour la mise en veille (0=désactivé | 1=peu sensible | ... | 9=très sensible)"
|
||||||
"MotionSensitivity": {
|
},
|
||||||
"text2": [
|
"TemperatureUnit": {
|
||||||
"Sensibilité",
|
"displayText": "Unité de\ntempérature",
|
||||||
"au mouvement"
|
"description": "C=Celsius | F=Fahrenheit"
|
||||||
],
|
},
|
||||||
"desc": "0=désactivé | 1=peu sensible | ... | 9=très sensible"
|
"DisplayRotation": {
|
||||||
},
|
"displayText": "Orientation\nde l'écran",
|
||||||
"SleepTemperature": {
|
"description": "D=droitier | G=gaucher | A=automatique"
|
||||||
"text2": [
|
},
|
||||||
"Temp.",
|
"CooldownBlink": {
|
||||||
"veille"
|
"displayText": "Refroidir en\nclignotant",
|
||||||
],
|
"description": "Faire clignoter la température lors du refroidissement tant que la panne est chaude"
|
||||||
"desc": "Température de la panne en \"mode veille\""
|
},
|
||||||
},
|
"ScrollingSpeed": {
|
||||||
"SleepTimeout": {
|
"displayText": "Vitesse de\ndéfilement",
|
||||||
"text2": [
|
"description": "Vitesse de défilement du texte (R=rapide | L=lent)"
|
||||||
"Délai",
|
},
|
||||||
"veille"
|
"ReverseButtonTempChange": {
|
||||||
],
|
"displayText": "Inverser les\ntouches + -",
|
||||||
"desc": "Délai avant mise en veille (s=secondes | m=minutes)"
|
"description": "Inverser les boutons d'ajustement de température"
|
||||||
},
|
},
|
||||||
"ShutdownTimeout": {
|
"AnimSpeed": {
|
||||||
"text2": [
|
"displayText": "Vitesse\nanim. icônes",
|
||||||
"Délai",
|
"description": "Vitesse des animations des icônes dans le menu (D=désactivé | L=lente | M=moyenne | R=rapide)"
|
||||||
"arrêt"
|
},
|
||||||
],
|
"AnimLoop": {
|
||||||
"desc": "Délai avant l'arrêt du fer à souder (m=minutes)"
|
"displayText": "Rejouer\nanim. icônes",
|
||||||
},
|
"description": "Rejouer en boucle les animations des icônes dans le menu principal"
|
||||||
"HallEffSensitivity": {
|
},
|
||||||
"text2": [
|
"Brightness": {
|
||||||
"Sensibilité",
|
"displayText": "Luminosité\nde l'écran",
|
||||||
"capteur effet hall"
|
"description": "Ajuster la luminosité de l'écran OLED"
|
||||||
],
|
},
|
||||||
"desc": "Sensibilité du capteur à effet Hall pour la mise en veille (0=désactivé | 1=peu sensible | ... | 9=très sensible)"
|
"ColourInversion": {
|
||||||
},
|
"displayText": "Inverser\nles couleurs",
|
||||||
"TemperatureUnit": {
|
"description": "Inverser les couleurs de l'écran OLED"
|
||||||
"text2": [
|
},
|
||||||
"Unité de",
|
"LOGOTime": {
|
||||||
"température"
|
"displayText": "Durée logo\nau démarrage",
|
||||||
],
|
"description": "Définit la durée d'affichage du logo au démarrage (s=secondes)"
|
||||||
"desc": "C=Celsius | F=Fahrenheit"
|
},
|
||||||
},
|
"AdvancedIdle": {
|
||||||
"DisplayRotation": {
|
"displayText": "Écran veille\ndétaillé",
|
||||||
"text2": [
|
"description": "Afficher les informations détaillées sur l'écran de veille"
|
||||||
"Orientation",
|
},
|
||||||
"de l'écran"
|
"AdvancedSoldering": {
|
||||||
],
|
"displayText": "Écran soudure\ndétaillé",
|
||||||
"desc": "D=droitier | G=gaucher | A=automatique"
|
"description": "Afficher les informations détaillées sur l'écran de soudure"
|
||||||
},
|
},
|
||||||
"CooldownBlink": {
|
"PowerLimit": {
|
||||||
"text2": [
|
"displayText": "Limite de\npuissance",
|
||||||
"Refroidir en",
|
"description": "Puissance maximale utilisable (W=watts)"
|
||||||
"clignotant"
|
},
|
||||||
],
|
"CalibrateCJC": {
|
||||||
"desc": "Faire clignoter la température lors du refroidissement tant que la panne est chaude"
|
"displayText": "Calibrate CJC\nat next boot",
|
||||||
},
|
"description": "At next boot tip Cold Junction Compensation will be calibrated (not required if Delta T is < 5°C)"
|
||||||
"ScrollingSpeed": {
|
},
|
||||||
"text2": [
|
"VoltageCalibration": {
|
||||||
"Vitesse de",
|
"displayText": "Étalonner\ntension d'entrée",
|
||||||
"défilement"
|
"description": "Étalonner tension d'entrée (appui long pour quitter)"
|
||||||
],
|
},
|
||||||
"desc": "Vitesse de défilement du texte (R=rapide | L=lent)"
|
"PowerPulsePower": {
|
||||||
},
|
"displayText": "Puissance\nimpulsions",
|
||||||
"ReverseButtonTempChange": {
|
"description": "Puissance des impulsions pour éviter la mise en veille des batteries (watts)"
|
||||||
"text2": [
|
},
|
||||||
"Inverser les",
|
"PowerPulseWait": {
|
||||||
"touches + -"
|
"displayText": "Délai entre\nles impulsions",
|
||||||
],
|
"description": "Délai entre chaque impulsion pour empêcher la mise en veille (x 2.5s)"
|
||||||
"desc": "Inverser les boutons d'ajustement de température"
|
},
|
||||||
},
|
"PowerPulseDuration": {
|
||||||
"AnimSpeed": {
|
"displayText": "Durée des\nimpulsions",
|
||||||
"text2": [
|
"description": "Durée des impulsions pour empêcher la mise en veille (x 250ms)"
|
||||||
"Vitesse",
|
},
|
||||||
"anim. icônes"
|
"SettingsReset": {
|
||||||
],
|
"displayText": "Réinitialisation\nd'usine",
|
||||||
"desc": "Vitesse des animations des icônes dans le menu (D=désactivé | L=lente | M=moyenne | R=rapide)"
|
"description": "Réinitialiser tous les réglages"
|
||||||
},
|
},
|
||||||
"AnimLoop": {
|
"LanguageSwitch": {
|
||||||
"text2": [
|
"displayText": "Langue:\n FR Français",
|
||||||
"Rejouer",
|
"description": ""
|
||||||
"anim. icônes"
|
}
|
||||||
],
|
}
|
||||||
"desc": "Rejouer en boucle les animations des icônes dans le menu principal"
|
|
||||||
},
|
|
||||||
"Brightness": {
|
|
||||||
"text2": [
|
|
||||||
"Luminosité",
|
|
||||||
"de l'écran"
|
|
||||||
],
|
|
||||||
"desc": "Ajuster la luminosité de l'écran OLED"
|
|
||||||
},
|
|
||||||
"ColourInversion": {
|
|
||||||
"text2": [
|
|
||||||
"Inverser",
|
|
||||||
"les couleurs"
|
|
||||||
],
|
|
||||||
"desc": "Inverser les couleurs de l'écran OLED"
|
|
||||||
},
|
|
||||||
"LOGOTime": {
|
|
||||||
"text2": [
|
|
||||||
"Durée logo",
|
|
||||||
"au démarrage"
|
|
||||||
],
|
|
||||||
"desc": "Définit la durée d'affichage du logo au démarrage (s=secondes)"
|
|
||||||
},
|
|
||||||
"AdvancedIdle": {
|
|
||||||
"text2": [
|
|
||||||
"Écran veille",
|
|
||||||
"détaillé"
|
|
||||||
],
|
|
||||||
"desc": "Afficher les informations détaillées sur l'écran de veille"
|
|
||||||
},
|
|
||||||
"AdvancedSoldering": {
|
|
||||||
"text2": [
|
|
||||||
"Écran soudure",
|
|
||||||
"détaillé"
|
|
||||||
],
|
|
||||||
"desc": "Afficher les informations détaillées sur l'écran de soudure"
|
|
||||||
},
|
|
||||||
"PowerLimit": {
|
|
||||||
"text2": [
|
|
||||||
"Limite de",
|
|
||||||
"puissance"
|
|
||||||
],
|
|
||||||
"desc": "Puissance maximale utilisable (W=watts)"
|
|
||||||
},
|
|
||||||
"CalibrateCJC": {
|
|
||||||
"text2": [
|
|
||||||
"Calibrate CJC",
|
|
||||||
"at next boot"
|
|
||||||
],
|
|
||||||
"desc": "At next boot tip Cold Junction Compensation will be calibrated (not required if Delta T is < 5°C)"
|
|
||||||
},
|
|
||||||
"VoltageCalibration": {
|
|
||||||
"text2": [
|
|
||||||
"Étalonner",
|
|
||||||
"tension d'entrée"
|
|
||||||
],
|
|
||||||
"desc": "Étalonner tension d'entrée (appui long pour quitter)"
|
|
||||||
},
|
|
||||||
"PowerPulsePower": {
|
|
||||||
"text2": [
|
|
||||||
"Puissance",
|
|
||||||
"impulsions"
|
|
||||||
],
|
|
||||||
"desc": "Puissance des impulsions pour éviter la mise en veille des batteries (watts)"
|
|
||||||
},
|
|
||||||
"PowerPulseWait": {
|
|
||||||
"text2": [
|
|
||||||
"Délai entre",
|
|
||||||
"les impulsions"
|
|
||||||
],
|
|
||||||
"desc": "Délai entre chaque impulsion pour empêcher la mise en veille (x 2.5s)"
|
|
||||||
},
|
|
||||||
"PowerPulseDuration": {
|
|
||||||
"text2": [
|
|
||||||
"Durée des",
|
|
||||||
"impulsions"
|
|
||||||
],
|
|
||||||
"desc": "Durée des impulsions pour empêcher la mise en veille (x 250ms)"
|
|
||||||
},
|
|
||||||
"SettingsReset": {
|
|
||||||
"text2": [
|
|
||||||
"Réinitialisation",
|
|
||||||
"d'usine"
|
|
||||||
],
|
|
||||||
"desc": "Réinitialiser tous les réglages"
|
|
||||||
},
|
|
||||||
"LanguageSwitch": {
|
|
||||||
"text2": [
|
|
||||||
"Langue:",
|
|
||||||
" FR Français"
|
|
||||||
],
|
|
||||||
"desc": ""
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@@ -1,337 +1,243 @@
|
|||||||
{
|
{
|
||||||
"languageCode": "HR",
|
"languageCode": "HR",
|
||||||
"languageLocalName": "Hrvatski",
|
"languageLocalName": "Hrvatski",
|
||||||
"tempUnitFahrenheit": false,
|
"tempUnitFahrenheit": false,
|
||||||
"messages": {
|
"messagesWarn": {
|
||||||
"SettingsCalibrationWarning": "Prije restarta provjerite da su vrh i ručka na sobnoj temperaturi!",
|
"CJCCalibrationDone": {
|
||||||
"CJCCalibrating": "kalibriram",
|
"message": "Kalibracija\ndovršena!"
|
||||||
"SettingsResetWarning": "Jeste li sigurni da želite sve postavke vratiti na tvorničke vrijednosti?",
|
},
|
||||||
"UVLOWarningString": "BAT!!!",
|
"ResetOKMessage": {
|
||||||
"UndervoltageString": "PRENIZAK NAPON",
|
"message": "Reset OK"
|
||||||
"InputVoltageString": "Napon V: ",
|
},
|
||||||
"SleepingSimpleString": "Zzz ",
|
"SettingsResetMessage": {
|
||||||
"SleepingAdvancedString": "SPAVAM...",
|
"message": "Neke postavke\nsu izmijenjene!"
|
||||||
"SleepingTipAdvancedString": "Vrh: ",
|
},
|
||||||
"OffString": "Off",
|
"NoAccelerometerMessage": {
|
||||||
"DeviceFailedValidationWarning": "Vaš uređaj je najvjerojatnije krivotvoren!"
|
"message": "Akcelerometar\nnije pronađen!"
|
||||||
},
|
},
|
||||||
"messagesWarn": {
|
"NoPowerDeliveryMessage": {
|
||||||
"CJCCalibrationDone": [
|
"message": "USB-PD IC\nnije pronađen!"
|
||||||
"Kalibracija",
|
},
|
||||||
"dovršena!"
|
"LockingKeysString": {
|
||||||
],
|
"message": "ZAKLJUČ"
|
||||||
"ResetOKMessage": "Reset OK",
|
},
|
||||||
"SettingsResetMessage": [
|
"UnlockingKeysString": {
|
||||||
"Neke postavke",
|
"message": "OTKLJUČ"
|
||||||
"su izmijenjene!"
|
},
|
||||||
],
|
"WarningKeysLockedString": {
|
||||||
"NoAccelerometerMessage": [
|
"message": "ZAKLJUČ!"
|
||||||
"Akcelerometar",
|
},
|
||||||
"nije pronađen!"
|
"WarningThermalRunaway": {
|
||||||
],
|
"message": "Neispravan\ngrijač"
|
||||||
"NoPowerDeliveryMessage": [
|
},
|
||||||
"USB-PD IC",
|
"SettingsCalibrationWarning": {
|
||||||
"nije pronađen!"
|
"message": "Prije restarta provjerite da su vrh i ručka na sobnoj temperaturi!"
|
||||||
],
|
},
|
||||||
"LockingKeysString": "ZAKLJUČ",
|
"CJCCalibrating": {
|
||||||
"UnlockingKeysString": "OTKLJUČ",
|
"message": "kalibriram"
|
||||||
"WarningKeysLockedString": "ZAKLJUČ!",
|
},
|
||||||
"WarningThermalRunaway": [
|
"SettingsResetWarning": {
|
||||||
"Neispravan",
|
"message": "Jeste li sigurni da želite sve postavke vratiti na tvorničke vrijednosti?"
|
||||||
"grijač"
|
},
|
||||||
]
|
"UVLOWarningString": {
|
||||||
},
|
"message": "BAT!!!"
|
||||||
"characters": {
|
},
|
||||||
"SettingRightChar": "D",
|
"UndervoltageString": {
|
||||||
"SettingLeftChar": "L",
|
"message": "PRENIZAK NAPON"
|
||||||
"SettingAutoChar": "A",
|
},
|
||||||
"SettingOffChar": "U",
|
"InputVoltageString": {
|
||||||
"SettingSlowChar": "S",
|
"message": "Napon V: "
|
||||||
"SettingMediumChar": "M",
|
},
|
||||||
"SettingFastChar": "B",
|
"SleepingSimpleString": {
|
||||||
"SettingStartNoneChar": "U",
|
"message": "Zzz "
|
||||||
"SettingStartSolderingChar": "L",
|
},
|
||||||
"SettingStartSleepChar": "T",
|
"SleepingAdvancedString": {
|
||||||
"SettingStartSleepOffChar": "H",
|
"message": "SPAVAM..."
|
||||||
"SettingLockDisableChar": "O",
|
},
|
||||||
"SettingLockBoostChar": "B",
|
"SleepingTipAdvancedString": {
|
||||||
"SettingLockFullChar": "Z"
|
"message": "Vrh: "
|
||||||
},
|
},
|
||||||
"menuGroups": {
|
"OffString": {
|
||||||
"PowerMenu": {
|
"message": "Off"
|
||||||
"text2": [
|
},
|
||||||
"Postavke",
|
"DeviceFailedValidationWarning": {
|
||||||
"napajanja"
|
"message": "Vaš uređaj je najvjerojatnije krivotvoren!"
|
||||||
],
|
}
|
||||||
"desc": ""
|
},
|
||||||
},
|
"characters": {
|
||||||
"SolderingMenu": {
|
"SettingRightChar": "D",
|
||||||
"text2": [
|
"SettingLeftChar": "L",
|
||||||
"Postavke",
|
"SettingAutoChar": "A",
|
||||||
"lemljenja"
|
"SettingOffChar": "U",
|
||||||
],
|
"SettingSlowChar": "S",
|
||||||
"desc": ""
|
"SettingMediumChar": "M",
|
||||||
},
|
"SettingFastChar": "B",
|
||||||
"PowerSavingMenu": {
|
"SettingStartNoneChar": "U",
|
||||||
"text2": [
|
"SettingStartSolderingChar": "L",
|
||||||
"Ušteda",
|
"SettingStartSleepChar": "T",
|
||||||
"energije"
|
"SettingStartSleepOffChar": "H",
|
||||||
],
|
"SettingLockDisableChar": "O",
|
||||||
"desc": ""
|
"SettingLockBoostChar": "B",
|
||||||
},
|
"SettingLockFullChar": "Z"
|
||||||
"UIMenu": {
|
},
|
||||||
"text2": [
|
"menuGroups": {
|
||||||
"Korisničko",
|
"PowerMenu": {
|
||||||
"sučelje"
|
"displayText": "Postavke\nnapajanja",
|
||||||
],
|
"description": ""
|
||||||
"desc": ""
|
},
|
||||||
},
|
"SolderingMenu": {
|
||||||
"AdvancedMenu": {
|
"displayText": "Postavke\nlemljenja",
|
||||||
"text2": [
|
"description": ""
|
||||||
"Napredne",
|
},
|
||||||
"opcije"
|
"PowerSavingMenu": {
|
||||||
],
|
"displayText": "Ušteda\nenergije",
|
||||||
"desc": ""
|
"description": ""
|
||||||
}
|
},
|
||||||
},
|
"UIMenu": {
|
||||||
"menuOptions": {
|
"displayText": "Korisničko\nsučelje",
|
||||||
"DCInCutoff": {
|
"description": ""
|
||||||
"text2": [
|
},
|
||||||
"Izvor",
|
"AdvancedMenu": {
|
||||||
"napajanja"
|
"displayText": "Napredne\nopcije",
|
||||||
],
|
"description": ""
|
||||||
"desc": "Izvor napajanja. Postavlja napon isključivanja. (DC 10V) (S 3.3V po ćeliji)"
|
}
|
||||||
},
|
},
|
||||||
"MinVolCell": {
|
"menuOptions": {
|
||||||
"text2": [
|
"DCInCutoff": {
|
||||||
"Najniži",
|
"displayText": "Izvor\nnapajanja",
|
||||||
"napon"
|
"description": "Izvor napajanja. Postavlja napon isključivanja. (DC 10V) (S 3.3V po ćeliji)"
|
||||||
],
|
},
|
||||||
"desc": "Najniži dozvoljeni napon po ćeliji baterije (3S: 3 - 3.7V | 4-6S: 2.4 - 3.7V)"
|
"MinVolCell": {
|
||||||
},
|
"displayText": "Najniži\nnapon",
|
||||||
"QCMaxVoltage": {
|
"description": "Najniži dozvoljeni napon po ćeliji baterije (3S: 3 - 3.7V | 4-6S: 2.4 - 3.7V)"
|
||||||
"text2": [
|
},
|
||||||
"Snaga",
|
"QCMaxVoltage": {
|
||||||
"napajanja"
|
"displayText": "Snaga\nnapajanja",
|
||||||
],
|
"description": "Snaga modula za napajanje"
|
||||||
"desc": "Snaga modula za napajanje"
|
},
|
||||||
},
|
"PDNegTimeout": {
|
||||||
"PDNegTimeout": {
|
"displayText": "USB-PD\ntimeout",
|
||||||
"text2": [
|
"description": "Timeout za USB-Power Delivery u koracima od 100ms za kompatibilnost s nekim QC punjačima"
|
||||||
"USB-PD",
|
},
|
||||||
"timeout"
|
"BoostTemperature": {
|
||||||
],
|
"displayText": "Boost\ntemp",
|
||||||
"desc": "Timeout za USB-Power Delivery u koracima od 100ms za kompatibilnost s nekim QC punjačima"
|
"description": "Temperatura u pojačanom (Boost) načinu."
|
||||||
},
|
},
|
||||||
"BoostTemperature": {
|
"AutoStart": {
|
||||||
"text2": [
|
"displayText": "Auto\nstart",
|
||||||
"Boost",
|
"description": "Ako je aktivno, lemilica po uključivanju napajanja odmah počinje grijati. (U=ugašeno | L=lemljenje | T=spavanje toplo | H=spavanje hladno)"
|
||||||
"temp"
|
},
|
||||||
],
|
"TempChangeShortStep": {
|
||||||
"desc": "Temperatura u pojačanom (Boost) načinu."
|
"displayText": "Korak temp\nkratki pritisak",
|
||||||
},
|
"description": "Korak temperature pri kratkom pritisku tipke"
|
||||||
"AutoStart": {
|
},
|
||||||
"text2": [
|
"TempChangeLongStep": {
|
||||||
"Auto",
|
"displayText": "Korak temp\ndugi pritisak",
|
||||||
"start"
|
"description": "Korak temperature pri dugačkom pritisku tipke"
|
||||||
],
|
},
|
||||||
"desc": "Ako je aktivno, lemilica po uključivanju napajanja odmah počinje grijati. (U=ugašeno | L=lemljenje | T=spavanje toplo | H=spavanje hladno)"
|
"LockingMode": {
|
||||||
},
|
"displayText": "Zaključavanje\ntipki",
|
||||||
"TempChangeShortStep": {
|
"description": "Tokom lemljenja, držite obje tipke kako biste ih zaključali ili otključali (O=otključano | B=zaključan boost | Z=zaključano sve)"
|
||||||
"text2": [
|
},
|
||||||
"Korak temp",
|
"MotionSensitivity": {
|
||||||
"kratki pritisak"
|
"displayText": "Osjetljivost\npokreta",
|
||||||
],
|
"description": "Osjetljivost prepoznavanja pokreta. (0=ugašeno | 1=najmanje osjetljivo | ... | 9=najosjetljivije)"
|
||||||
"desc": "Korak temperature pri kratkom pritisku tipke"
|
},
|
||||||
},
|
"SleepTemperature": {
|
||||||
"TempChangeLongStep": {
|
"displayText": "Temp\nspavanja",
|
||||||
"text2": [
|
"description": "Temperatura na koju se spušta lemilica nakon određenog vremena mirovanja (C | F)"
|
||||||
"Korak temp",
|
},
|
||||||
"dugi pritisak"
|
"SleepTimeout": {
|
||||||
],
|
"displayText": "Vrijeme\nspavanja",
|
||||||
"desc": "Korak temperature pri dugačkom pritisku tipke"
|
"description": "Vrijeme mirovanja nakon kojega lemilica spušta temperaturu. (Minute | Sekunde)"
|
||||||
},
|
},
|
||||||
"LockingMode": {
|
"ShutdownTimeout": {
|
||||||
"text2": [
|
"displayText": "Vrijeme\ngašenja",
|
||||||
"Zaključavanje",
|
"description": "Vrijeme mirovanja nakon kojega će se lemilica ugasiti (Minute)"
|
||||||
"tipki"
|
},
|
||||||
],
|
"HallEffSensitivity": {
|
||||||
"desc": "Tokom lemljenja, držite obje tipke kako biste ih zaključali ili otključali (O=otključano | B=zaključan boost | Z=zaključano sve)"
|
"displayText": "Osjetljivost\nHall senzora",
|
||||||
},
|
"description": "Osjetljivost senzora magnetskog polja za detekciju spavanja (U=Ugašeno | N=Najmanja | S=Srednja | V=Visoka)"
|
||||||
"MotionSensitivity": {
|
},
|
||||||
"text2": [
|
"TemperatureUnit": {
|
||||||
"Osjetljivost",
|
"displayText": "Jedinica\ntemperature",
|
||||||
"pokreta"
|
"description": "Jedinica temperature (C=Celzij | F=Fahrenheit)"
|
||||||
],
|
},
|
||||||
"desc": "Osjetljivost prepoznavanja pokreta. (0=ugašeno | 1=najmanje osjetljivo | ... | 9=najosjetljivije)"
|
"DisplayRotation": {
|
||||||
},
|
"displayText": "Rotacija\nekrana",
|
||||||
"SleepTemperature": {
|
"description": "Orijentacija ekrana (D=desnoruki | L=ljevoruki | A=automatski)"
|
||||||
"text2": [
|
},
|
||||||
"Temp",
|
"CooldownBlink": {
|
||||||
"spavanja"
|
"displayText": "Upozorenje\npri hlađenju",
|
||||||
],
|
"description": "Bljeskanje temperature prilikom hlađenja, ako je lemilica vruća"
|
||||||
"desc": "Temperatura na koju se spušta lemilica nakon određenog vremena mirovanja (C | F)"
|
},
|
||||||
},
|
"ScrollingSpeed": {
|
||||||
"SleepTimeout": {
|
"displayText": "Brzina\nporuka",
|
||||||
"text2": [
|
"description": "Brzina kretanja dugačkih poruka (B=brzo | S=sporo)"
|
||||||
"Vrijeme",
|
},
|
||||||
"spavanja"
|
"ReverseButtonTempChange": {
|
||||||
],
|
"displayText": "Zamjena\n+ - tipki",
|
||||||
"desc": "Vrijeme mirovanja nakon kojega lemilica spušta temperaturu. (Minute | Sekunde)"
|
"description": "Zamjenjuje funkciju gornje i donje tipke za podešavanje temperature"
|
||||||
},
|
},
|
||||||
"ShutdownTimeout": {
|
"AnimSpeed": {
|
||||||
"text2": [
|
"displayText": "Brzina\nanimacije",
|
||||||
"Vrijeme",
|
"description": "Brzina animacije ikona u menijima (U=ugašeno | S=sporo | M=srednje | B=brzo)"
|
||||||
"gašenja"
|
},
|
||||||
],
|
"AnimLoop": {
|
||||||
"desc": "Vrijeme mirovanja nakon kojega će se lemilica ugasiti (Minute)"
|
"displayText": "Ponavljanje\nanimacije",
|
||||||
},
|
"description": "Hoće li se animacije menija vrtiti u petlji - samo ako brzina animacije nije na \"Ugašeno\""
|
||||||
"HallEffSensitivity": {
|
},
|
||||||
"text2": [
|
"Brightness": {
|
||||||
"Osjetljivost",
|
"displayText": "Svjetlina\nekrana",
|
||||||
"Hall senzora"
|
"description": "Podešavanje svjetline OLED ekrana. Veća svjetlina može dugotrajno dovesti do pojave duhova na ekranu."
|
||||||
],
|
},
|
||||||
"desc": "Osjetljivost senzora magnetskog polja za detekciju spavanja (U=Ugašeno | N=Najmanja | S=Srednja | V=Visoka)"
|
"ColourInversion": {
|
||||||
},
|
"displayText": "Inverzija\nekrana",
|
||||||
"TemperatureUnit": {
|
"description": "Inverzan prikaz slike na ekranu"
|
||||||
"text2": [
|
},
|
||||||
"Jedinica",
|
"LOGOTime": {
|
||||||
"temperature"
|
"displayText": "Trajanje\nboot logotipa",
|
||||||
],
|
"description": "Trajanje prikaza boot logotipa (s=seconds)"
|
||||||
"desc": "Jedinica temperature (C=Celzij | F=Fahrenheit)"
|
},
|
||||||
},
|
"AdvancedIdle": {
|
||||||
"DisplayRotation": {
|
"displayText": "Detalji\npri čekanju",
|
||||||
"text2": [
|
"description": "Prikazivanje detaljnih informacija tijekom čekanja"
|
||||||
"Rotacija",
|
},
|
||||||
"ekrana"
|
"AdvancedSoldering": {
|
||||||
],
|
"displayText": "Detalji\npri lemljenju",
|
||||||
"desc": "Orijentacija ekrana (D=desnoruki | L=ljevoruki | A=automatski)"
|
"description": "Prikazivanje detaljnih informacija tijekom lemljenja"
|
||||||
},
|
},
|
||||||
"CooldownBlink": {
|
"PowerLimit": {
|
||||||
"text2": [
|
"displayText": "Ograničenje\nsnage",
|
||||||
"Upozorenje",
|
"description": "Najveća snaga koju lemilica smije vući iz napajanja (W=watt)"
|
||||||
"pri hlađenju"
|
},
|
||||||
],
|
"CalibrateCJC": {
|
||||||
"desc": "Bljeskanje temperature prilikom hlađenja, ako je lemilica vruća"
|
"displayText": "Kalibracija kod\nsljed. starta",
|
||||||
},
|
"description": "Kod sljedećeg starta izvršit će se kalibracija (nije potrebno ako je pogreška manja od 5°C)"
|
||||||
"ScrollingSpeed": {
|
},
|
||||||
"text2": [
|
"VoltageCalibration": {
|
||||||
"Brzina",
|
"displayText": "Kalibracija\nnapajanja",
|
||||||
"poruka"
|
"description": "Kalibracija ulaznog napona napajanja (Podešavanje tipkama, dugački pritisak za kraj)"
|
||||||
],
|
},
|
||||||
"desc": "Brzina kretanja dugačkih poruka (B=brzo | S=sporo)"
|
"PowerPulsePower": {
|
||||||
},
|
"displayText": "Snaga period.\npulsa napajanja",
|
||||||
"ReverseButtonTempChange": {
|
"description": "Intenzitet periodičkog pulsa kojega lemilica povlači kako se USB napajanje ne bi ugasilo (W=watt)"
|
||||||
"text2": [
|
},
|
||||||
"Zamjena",
|
"PowerPulseWait": {
|
||||||
"+ - tipki"
|
"displayText": "Interval per.\npulsa nap.",
|
||||||
],
|
"description": "Razmak periodičkih pulseva koje lemilica povlači kako se USB napajanje ne bi ugasilo (x 2.5s)"
|
||||||
"desc": "Zamjenjuje funkciju gornje i donje tipke za podešavanje temperature"
|
},
|
||||||
},
|
"PowerPulseDuration": {
|
||||||
"AnimSpeed": {
|
"displayText": "Trajanje per.\npulsa nap.",
|
||||||
"text2": [
|
"description": "Trajanje periodičkog pulsa kojega lemilica povlači kako se USB napajanje ne bi ugasilo (x 250ms)"
|
||||||
"Brzina",
|
},
|
||||||
"animacije"
|
"SettingsReset": {
|
||||||
],
|
"displayText": "Tvorničke\npostavke",
|
||||||
"desc": "Brzina animacije ikona u menijima (U=ugašeno | S=sporo | M=srednje | B=brzo)"
|
"description": "Vraćanje svih postavki na tvorničke vrijednosti"
|
||||||
},
|
},
|
||||||
"AnimLoop": {
|
"LanguageSwitch": {
|
||||||
"text2": [
|
"displayText": "Jezik:\n HR Hrvatski",
|
||||||
"Ponavljanje",
|
"description": ""
|
||||||
"animacije"
|
}
|
||||||
],
|
}
|
||||||
"desc": "Hoće li se animacije menija vrtiti u petlji - samo ako brzina animacije nije na \"Ugašeno\""
|
|
||||||
},
|
|
||||||
"Brightness": {
|
|
||||||
"text2": [
|
|
||||||
"Svjetlina",
|
|
||||||
"ekrana"
|
|
||||||
],
|
|
||||||
"desc": "Podešavanje svjetline OLED ekrana. Veća svjetlina može dugotrajno dovesti do pojave duhova na ekranu."
|
|
||||||
},
|
|
||||||
"ColourInversion": {
|
|
||||||
"text2": [
|
|
||||||
"Inverzija",
|
|
||||||
"ekrana"
|
|
||||||
],
|
|
||||||
"desc": "Inverzan prikaz slike na ekranu"
|
|
||||||
},
|
|
||||||
"LOGOTime": {
|
|
||||||
"text2": [
|
|
||||||
"Trajanje",
|
|
||||||
"boot logotipa"
|
|
||||||
],
|
|
||||||
"desc": "Trajanje prikaza boot logotipa (s=seconds)"
|
|
||||||
},
|
|
||||||
"AdvancedIdle": {
|
|
||||||
"text2": [
|
|
||||||
"Detalji",
|
|
||||||
"pri čekanju"
|
|
||||||
],
|
|
||||||
"desc": "Prikazivanje detaljnih informacija tijekom čekanja"
|
|
||||||
},
|
|
||||||
"AdvancedSoldering": {
|
|
||||||
"text2": [
|
|
||||||
"Detalji",
|
|
||||||
"pri lemljenju"
|
|
||||||
],
|
|
||||||
"desc": "Prikazivanje detaljnih informacija tijekom lemljenja"
|
|
||||||
},
|
|
||||||
"PowerLimit": {
|
|
||||||
"text2": [
|
|
||||||
"Ograničenje",
|
|
||||||
"snage"
|
|
||||||
],
|
|
||||||
"desc": "Najveća snaga koju lemilica smije vući iz napajanja (W=watt)"
|
|
||||||
},
|
|
||||||
"CalibrateCJC": {
|
|
||||||
"text2": [
|
|
||||||
"Kalibracija kod",
|
|
||||||
"sljed. starta"
|
|
||||||
],
|
|
||||||
"desc": "Kod sljedećeg starta izvršit će se kalibracija (nije potrebno ako je pogreška manja od 5°C)"
|
|
||||||
},
|
|
||||||
"VoltageCalibration": {
|
|
||||||
"text2": [
|
|
||||||
"Kalibracija",
|
|
||||||
"napajanja"
|
|
||||||
],
|
|
||||||
"desc": "Kalibracija ulaznog napona napajanja (Podešavanje tipkama, dugački pritisak za kraj)"
|
|
||||||
},
|
|
||||||
"PowerPulsePower": {
|
|
||||||
"text2": [
|
|
||||||
"Snaga period.",
|
|
||||||
"pulsa napajanja"
|
|
||||||
],
|
|
||||||
"desc": "Intenzitet periodičkog pulsa kojega lemilica povlači kako se USB napajanje ne bi ugasilo (W=watt)"
|
|
||||||
},
|
|
||||||
"PowerPulseWait": {
|
|
||||||
"text2": [
|
|
||||||
"Interval per.",
|
|
||||||
"pulsa nap."
|
|
||||||
],
|
|
||||||
"desc": "Razmak periodičkih pulseva koje lemilica povlači kako se USB napajanje ne bi ugasilo (x 2.5s)"
|
|
||||||
},
|
|
||||||
"PowerPulseDuration": {
|
|
||||||
"text2": [
|
|
||||||
"Trajanje per.",
|
|
||||||
"pulsa nap."
|
|
||||||
],
|
|
||||||
"desc": "Trajanje periodičkog pulsa kojega lemilica povlači kako se USB napajanje ne bi ugasilo (x 250ms)"
|
|
||||||
},
|
|
||||||
"SettingsReset": {
|
|
||||||
"text2": [
|
|
||||||
"Tvorničke",
|
|
||||||
"postavke"
|
|
||||||
],
|
|
||||||
"desc": "Vraćanje svih postavki na tvorničke vrijednosti"
|
|
||||||
},
|
|
||||||
"LanguageSwitch": {
|
|
||||||
"text2": [
|
|
||||||
"Jezik:",
|
|
||||||
" HR Hrvatski"
|
|
||||||
],
|
|
||||||
"desc": ""
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@@ -1,337 +1,243 @@
|
|||||||
{
|
{
|
||||||
"languageCode": "HU",
|
"languageCode": "HU",
|
||||||
"languageLocalName": "Magyar",
|
"languageLocalName": "Magyar",
|
||||||
"tempUnitFahrenheit": false,
|
"tempUnitFahrenheit": false,
|
||||||
"messages": {
|
"messagesWarn": {
|
||||||
"SettingsCalibrationWarning": "Újraindítás előtt a hegy és az eszköz legyen szobahőmérsékletű!",
|
"CJCCalibrationDone": {
|
||||||
"CJCCalibrating": "Kalibrálás",
|
"message": "Kalibráció\nkész!"
|
||||||
"SettingsResetWarning": "Biztos visszaállítja a beállításokat alapértékekre?",
|
},
|
||||||
"UVLOWarningString": "DC túl alacsony",
|
"ResetOKMessage": {
|
||||||
"UndervoltageString": "Alulfeszültség",
|
"message": "Törlés OK"
|
||||||
"InputVoltageString": "Bemenet V: ",
|
},
|
||||||
"SleepingSimpleString": "Zzzz",
|
"SettingsResetMessage": {
|
||||||
"SleepingAdvancedString": "Alvás...",
|
"message": "Beállítások\nvisszaállítva!"
|
||||||
"SleepingTipAdvancedString": "Hegy:",
|
},
|
||||||
"OffString": "Ki",
|
"NoAccelerometerMessage": {
|
||||||
"DeviceFailedValidationWarning": "Az eszköz valószínűleg nem eredeti!"
|
"message": "Nincs\ngyorsulásmérő!"
|
||||||
},
|
},
|
||||||
"messagesWarn": {
|
"NoPowerDeliveryMessage": {
|
||||||
"CJCCalibrationDone": [
|
"message": "Nincs\nUSB-PD IC!"
|
||||||
"Kalibráció",
|
},
|
||||||
"kész!"
|
"LockingKeysString": {
|
||||||
],
|
"message": "LEZÁRVA"
|
||||||
"ResetOKMessage": "Törlés OK",
|
},
|
||||||
"SettingsResetMessage": [
|
"UnlockingKeysString": {
|
||||||
"Beállítások",
|
"message": "FELOLDVA"
|
||||||
"visszaállítva!"
|
},
|
||||||
],
|
"WarningKeysLockedString": {
|
||||||
"NoAccelerometerMessage": [
|
"message": "!LEZÁRVA!"
|
||||||
"Nincs",
|
},
|
||||||
"gyorsulásmérő!"
|
"WarningThermalRunaway": {
|
||||||
],
|
"message": "Kontrollálatlan\nhőmérséklet!"
|
||||||
"NoPowerDeliveryMessage": [
|
},
|
||||||
"Nincs",
|
"SettingsCalibrationWarning": {
|
||||||
"USB-PD IC!"
|
"message": "Újraindítás előtt a hegy és az eszköz legyen szobahőmérsékletű!"
|
||||||
],
|
},
|
||||||
"LockingKeysString": "LEZÁRVA",
|
"CJCCalibrating": {
|
||||||
"UnlockingKeysString": "FELOLDVA",
|
"message": "Kalibrálás"
|
||||||
"WarningKeysLockedString": "!LEZÁRVA!",
|
},
|
||||||
"WarningThermalRunaway": [
|
"SettingsResetWarning": {
|
||||||
"Kontrollálatlan",
|
"message": "Biztos visszaállítja a beállításokat alapértékekre?"
|
||||||
"hőmérséklet!"
|
},
|
||||||
]
|
"UVLOWarningString": {
|
||||||
},
|
"message": "DC túl alacsony"
|
||||||
"characters": {
|
},
|
||||||
"SettingRightChar": "J",
|
"UndervoltageString": {
|
||||||
"SettingLeftChar": "B",
|
"message": "Alulfeszültség"
|
||||||
"SettingAutoChar": "A",
|
},
|
||||||
"SettingOffChar": "0",
|
"InputVoltageString": {
|
||||||
"SettingSlowChar": "L",
|
"message": "Bemenet V: "
|
||||||
"SettingMediumChar": "K",
|
},
|
||||||
"SettingFastChar": "Gy",
|
"SleepingSimpleString": {
|
||||||
"SettingStartNoneChar": "K",
|
"message": "Zzzz"
|
||||||
"SettingStartSolderingChar": "F",
|
},
|
||||||
"SettingStartSleepChar": "A",
|
"SleepingAdvancedString": {
|
||||||
"SettingStartSleepOffChar": "Sz",
|
"message": "Alvás..."
|
||||||
"SettingLockDisableChar": "K",
|
},
|
||||||
"SettingLockBoostChar": "B",
|
"SleepingTipAdvancedString": {
|
||||||
"SettingLockFullChar": "T"
|
"message": "Hegy:"
|
||||||
},
|
},
|
||||||
"menuGroups": {
|
"OffString": {
|
||||||
"PowerMenu": {
|
"message": "Ki"
|
||||||
"text2": [
|
},
|
||||||
"Táp",
|
"DeviceFailedValidationWarning": {
|
||||||
"beállítások"
|
"message": "Az eszköz valószínűleg nem eredeti!"
|
||||||
],
|
}
|
||||||
"desc": ""
|
},
|
||||||
},
|
"characters": {
|
||||||
"SolderingMenu": {
|
"SettingRightChar": "J",
|
||||||
"text2": [
|
"SettingLeftChar": "B",
|
||||||
"Forrasztási",
|
"SettingAutoChar": "A",
|
||||||
"beállítások"
|
"SettingOffChar": "0",
|
||||||
],
|
"SettingSlowChar": "L",
|
||||||
"desc": ""
|
"SettingMediumChar": "K",
|
||||||
},
|
"SettingFastChar": "Gy",
|
||||||
"PowerSavingMenu": {
|
"SettingStartNoneChar": "K",
|
||||||
"text2": [
|
"SettingStartSolderingChar": "F",
|
||||||
"Alvási",
|
"SettingStartSleepChar": "A",
|
||||||
"módok"
|
"SettingStartSleepOffChar": "Sz",
|
||||||
],
|
"SettingLockDisableChar": "K",
|
||||||
"desc": ""
|
"SettingLockBoostChar": "B",
|
||||||
},
|
"SettingLockFullChar": "T"
|
||||||
"UIMenu": {
|
},
|
||||||
"text2": [
|
"menuGroups": {
|
||||||
"Felhasználói",
|
"PowerMenu": {
|
||||||
"felület"
|
"displayText": "Táp\nbeállítások",
|
||||||
],
|
"description": ""
|
||||||
"desc": ""
|
},
|
||||||
},
|
"SolderingMenu": {
|
||||||
"AdvancedMenu": {
|
"displayText": "Forrasztási\nbeállítások",
|
||||||
"text2": [
|
"description": ""
|
||||||
"Haladó",
|
},
|
||||||
"beállítások"
|
"PowerSavingMenu": {
|
||||||
],
|
"displayText": "Alvási\nmódok",
|
||||||
"desc": ""
|
"description": ""
|
||||||
}
|
},
|
||||||
},
|
"UIMenu": {
|
||||||
"menuOptions": {
|
"displayText": "Felhasználói\nfelület",
|
||||||
"DCInCutoff": {
|
"description": ""
|
||||||
"text2": [
|
},
|
||||||
"Áram",
|
"AdvancedMenu": {
|
||||||
"forrás"
|
"displayText": "Haladó\nbeállítások",
|
||||||
],
|
"description": ""
|
||||||
"desc": "Kikapcsolási feszültség beállítása (DC:10V | S:3.3V/LiPo cella | ki)"
|
}
|
||||||
},
|
},
|
||||||
"MinVolCell": {
|
"menuOptions": {
|
||||||
"text2": [
|
"DCInCutoff": {
|
||||||
"Minimum",
|
"displayText": "Áram\nforrás",
|
||||||
"feszültség"
|
"description": "Kikapcsolási feszültség beállítása (DC:10V | S:3.3V/LiPo cella | ki)"
|
||||||
],
|
},
|
||||||
"desc": "Minimális engedélyezett cellafeszültség (3S: 3 - 3.7V | 4-6S: 2.4 - 3.7V)"
|
"MinVolCell": {
|
||||||
},
|
"displayText": "Minimum\nfeszültség",
|
||||||
"QCMaxVoltage": {
|
"description": "Minimális engedélyezett cellafeszültség (3S: 3 - 3.7V | 4-6S: 2.4 - 3.7V)"
|
||||||
"text2": [
|
},
|
||||||
"Max. USB",
|
"QCMaxVoltage": {
|
||||||
"feszültség"
|
"displayText": "Max. USB\nfeszültség",
|
||||||
],
|
"description": "Maximális USB feszültség (QuickCharge)"
|
||||||
"desc": "Maximális USB feszültség (QuickCharge)"
|
},
|
||||||
},
|
"PDNegTimeout": {
|
||||||
"PDNegTimeout": {
|
"displayText": "PD\nidőtúllépés",
|
||||||
"text2": [
|
"description": "PD egyeztetés időkerete (kompatibilitás QC töltőkkel) (x 100ms)"
|
||||||
"PD",
|
},
|
||||||
"időtúllépés"
|
"BoostTemperature": {
|
||||||
],
|
"displayText": "Boost\nhőmérséklet",
|
||||||
"desc": "PD egyeztetés időkerete (kompatibilitás QC töltőkkel) (x 100ms)"
|
"description": "Hőmérséklet \"boost\" módban"
|
||||||
},
|
},
|
||||||
"BoostTemperature": {
|
"AutoStart": {
|
||||||
"text2": [
|
"displayText": "Automatikus\nindítás",
|
||||||
"Boost",
|
"description": "Bekapcsolás után automatikusan lépjen forrasztás módba (K=ki | F=forrasztás | A=alvó mód | Sz=szobahőmérséklet)"
|
||||||
"hőmérséklet"
|
},
|
||||||
],
|
"TempChangeShortStep": {
|
||||||
"desc": "Hőmérséklet \"boost\" módban"
|
"displayText": "Hőm. állítás\nrövid",
|
||||||
},
|
"description": "Hőmérséklet állítás rövid gombnyomásra (C | F)"
|
||||||
"AutoStart": {
|
},
|
||||||
"text2": [
|
"TempChangeLongStep": {
|
||||||
"Automatikus",
|
"displayText": "Hőm. állítás\nhosszú",
|
||||||
"indítás"
|
"description": "Hőmérséklet állítás hosszú gombnyomásra (C | F)"
|
||||||
],
|
},
|
||||||
"desc": "Bekapcsolás után automatikusan lépjen forrasztás módba (K=ki | F=forrasztás | A=alvó mód | Sz=szobahőmérséklet)"
|
"LockingMode": {
|
||||||
},
|
"displayText": "Lezárás\nengedélyezés",
|
||||||
"TempChangeShortStep": {
|
"description": "Forrasztás közben mindkét gombot hosszan lenyomva lezárja a kezelést (K=ki | B=csak \"boost\" módban | T=teljes lezárás)"
|
||||||
"text2": [
|
},
|
||||||
"Hőm. állítás",
|
"MotionSensitivity": {
|
||||||
"rövid"
|
"displayText": "Mozgás\nérzékenység",
|
||||||
],
|
"description": "Mozgás érzékenység beállítása (0=kikapcsolva | 1=legkevésbé érzékeny | ... | 9=legérzékenyebb)"
|
||||||
"desc": "Hőmérséklet állítás rövid gombnyomásra (C | F)"
|
},
|
||||||
},
|
"SleepTemperature": {
|
||||||
"TempChangeLongStep": {
|
"displayText": "Alvási\nhőmérséklet",
|
||||||
"text2": [
|
"description": "Hőmérséklet alvó módban (C | F)"
|
||||||
"Hőm. állítás",
|
},
|
||||||
"hosszú"
|
"SleepTimeout": {
|
||||||
],
|
"displayText": "Alvás\nidőzítő",
|
||||||
"desc": "Hőmérséklet állítás hosszú gombnyomásra (C | F)"
|
"description": "Alvási időzítő (perc | másodperc)"
|
||||||
},
|
},
|
||||||
"LockingMode": {
|
"ShutdownTimeout": {
|
||||||
"text2": [
|
"displayText": "Kikapcsolás\nidőzítő",
|
||||||
"Lezárás",
|
"description": "Kikapcsolási időzítő (perc)"
|
||||||
"engedélyezés"
|
},
|
||||||
],
|
"HallEffSensitivity": {
|
||||||
"desc": "Forrasztás közben mindkét gombot hosszan lenyomva lezárja a kezelést (K=ki | B=csak \"boost\" módban | T=teljes lezárás)"
|
"displayText": "Alvásérzékelő\nérzékenység",
|
||||||
},
|
"description": "Alvásérzékelő gyorsulásmérő érzékenysége (0=kikapcsolva | 1=legkevésbé érzékeny | ... | 9=legérzékenyebb)"
|
||||||
"MotionSensitivity": {
|
},
|
||||||
"text2": [
|
"TemperatureUnit": {
|
||||||
"Mozgás",
|
"displayText": "Hőmérséklet\nmértékegysége",
|
||||||
"érzékenység"
|
"description": "Hőmérséklet mértékegysége (C=Celsius | F=Fahrenheit)"
|
||||||
],
|
},
|
||||||
"desc": "Mozgás érzékenység beállítása (0=kikapcsolva | 1=legkevésbé érzékeny | ... | 9=legérzékenyebb)"
|
"DisplayRotation": {
|
||||||
},
|
"displayText": "Kijelző\ntájolása",
|
||||||
"SleepTemperature": {
|
"description": "Kijelző tájolása (J=jobbkezes | B=balkezes | A=automatikus)"
|
||||||
"text2": [
|
},
|
||||||
"Alvási",
|
"CooldownBlink": {
|
||||||
"hőmérséklet"
|
"displayText": "Villogás\nhűléskor",
|
||||||
],
|
"description": "Villogjon a hőmérséklet kijelzése hűlés közben, amíg a forrasztó hegy forró"
|
||||||
"desc": "Hőmérséklet alvó módban (C | F)"
|
},
|
||||||
},
|
"ScrollingSpeed": {
|
||||||
"SleepTimeout": {
|
"displayText": "Görgetés\nsebessége",
|
||||||
"text2": [
|
"description": "Szöveggörgetés sebessége"
|
||||||
"Alvás",
|
},
|
||||||
"időzítő"
|
"ReverseButtonTempChange": {
|
||||||
],
|
"displayText": "+/- gomb\nmegfordítása",
|
||||||
"desc": "Alvási időzítő (perc | másodperc)"
|
"description": "Forrasztó hegy hőmérsékletállító gombok felcserélése"
|
||||||
},
|
},
|
||||||
"ShutdownTimeout": {
|
"AnimSpeed": {
|
||||||
"text2": [
|
"displayText": "Animáció\nsebessége",
|
||||||
"Kikapcsolás",
|
"description": "Menüikonok animációjának sebessége (0=ki | L=lassú | K=közepes | Gy=gyors)"
|
||||||
"időzítő"
|
},
|
||||||
],
|
"AnimLoop": {
|
||||||
"desc": "Kikapcsolási időzítő (perc)"
|
"displayText": "Folytonos\nanimáció",
|
||||||
},
|
"description": "Főmenü ikonjainak folytonos animációja"
|
||||||
"HallEffSensitivity": {
|
},
|
||||||
"text2": [
|
"Brightness": {
|
||||||
"Alvásérzékelő",
|
"displayText": "Képernyő\nkontraszt",
|
||||||
"érzékenység"
|
"description": "Képernyő kontrasztjának állítása"
|
||||||
],
|
},
|
||||||
"desc": "Alvásérzékelő gyorsulásmérő érzékenysége (0=kikapcsolva | 1=legkevésbé érzékeny | ... | 9=legérzékenyebb)"
|
"ColourInversion": {
|
||||||
},
|
"displayText": "Képernyő\ninvertálás",
|
||||||
"TemperatureUnit": {
|
"description": "Képernyő színeinek invertálása"
|
||||||
"text2": [
|
},
|
||||||
"Hőmérséklet",
|
"LOGOTime": {
|
||||||
"mértékegysége"
|
"displayText": "Boot logo\nmegjelenítés",
|
||||||
],
|
"description": "Boot logo megjelenítési idejének beállítása (s=seconds)"
|
||||||
"desc": "Hőmérséklet mértékegysége (C=Celsius | F=Fahrenheit)"
|
},
|
||||||
},
|
"AdvancedIdle": {
|
||||||
"DisplayRotation": {
|
"displayText": "Részletes\nkészenlét",
|
||||||
"text2": [
|
"description": "Részletes információk megjelenítése kisebb betűméretben a készenléti képernyőn"
|
||||||
"Kijelző",
|
},
|
||||||
"tájolása"
|
"AdvancedSoldering": {
|
||||||
],
|
"displayText": "Részletes\nforrasztás infó",
|
||||||
"desc": "Kijelző tájolása (J=jobbkezes | B=balkezes | A=automatikus)"
|
"description": "Részletes információk megjelenítése forrasztás közben"
|
||||||
},
|
},
|
||||||
"CooldownBlink": {
|
"PowerLimit": {
|
||||||
"text2": [
|
"displayText": "Teljesítmény\nmaximum",
|
||||||
"Villogás",
|
"description": "Maximális felvett teljesitmény beállitása"
|
||||||
"hűléskor"
|
},
|
||||||
],
|
"CalibrateCJC": {
|
||||||
"desc": "Villogjon a hőmérséklet kijelzése hűlés közben, amíg a forrasztó hegy forró"
|
"displayText": "Calibrate CJC\nköv. indításnál",
|
||||||
},
|
"description": "Következő indításnál a hegy Cold Junction Compensation kalibrálása (nem szükséges ha Delta T kisebb mint 5°C)"
|
||||||
"ScrollingSpeed": {
|
},
|
||||||
"text2": [
|
"VoltageCalibration": {
|
||||||
"Görgetés",
|
"displayText": "Bemeneti fesz.\nkalibrálása?",
|
||||||
"sebessége"
|
"description": "Bemeneti feszültség kalibrálása (hosszan nyomva kilép)"
|
||||||
],
|
},
|
||||||
"desc": "Szöveggörgetés sebessége"
|
"PowerPulsePower": {
|
||||||
},
|
"displayText": "Ébr. pulzus\nnagysága",
|
||||||
"ReverseButtonTempChange": {
|
"description": "Powerbankot ébrentartó áramfelvételi pulzusok nagysága (W)"
|
||||||
"text2": [
|
},
|
||||||
"+/- gomb",
|
"PowerPulseWait": {
|
||||||
"megfordítása"
|
"displayText": "Ébr. pulzus\nidőköze",
|
||||||
],
|
"description": "Powerbankot ébrentartó áramfelvételi pulzusok időköze (x 2.5s)"
|
||||||
"desc": "Forrasztó hegy hőmérsékletállító gombok felcserélése"
|
},
|
||||||
},
|
"PowerPulseDuration": {
|
||||||
"AnimSpeed": {
|
"displayText": "Ébr. pulzus\nidőtartama",
|
||||||
"text2": [
|
"description": "Powerbankot ébrentartó áramfelvételi pulzusok időtartama (x 250ms)"
|
||||||
"Animáció",
|
},
|
||||||
"sebessége"
|
"SettingsReset": {
|
||||||
],
|
"displayText": "Gyári\nbeállítások?",
|
||||||
"desc": "Menüikonok animációjának sebessége (0=ki | L=lassú | K=közepes | Gy=gyors)"
|
"description": "Beállítások alaphelyzetbe állítása"
|
||||||
},
|
},
|
||||||
"AnimLoop": {
|
"LanguageSwitch": {
|
||||||
"text2": [
|
"displayText": "Nyelv:\n HU Magyar",
|
||||||
"Folytonos",
|
"description": ""
|
||||||
"animáció"
|
}
|
||||||
],
|
}
|
||||||
"desc": "Főmenü ikonjainak folytonos animációja"
|
|
||||||
},
|
|
||||||
"Brightness": {
|
|
||||||
"text2": [
|
|
||||||
"Képernyő",
|
|
||||||
"kontraszt"
|
|
||||||
],
|
|
||||||
"desc": "Képernyő kontrasztjának állítása"
|
|
||||||
},
|
|
||||||
"ColourInversion": {
|
|
||||||
"text2": [
|
|
||||||
"Képernyő",
|
|
||||||
"invertálás"
|
|
||||||
],
|
|
||||||
"desc": "Képernyő színeinek invertálása"
|
|
||||||
},
|
|
||||||
"LOGOTime": {
|
|
||||||
"text2": [
|
|
||||||
"Boot logo",
|
|
||||||
"megjelenítés"
|
|
||||||
],
|
|
||||||
"desc": "Boot logo megjelenítési idejének beállítása (s=seconds)"
|
|
||||||
},
|
|
||||||
"AdvancedIdle": {
|
|
||||||
"text2": [
|
|
||||||
"Részletes",
|
|
||||||
"készenlét"
|
|
||||||
],
|
|
||||||
"desc": "Részletes információk megjelenítése kisebb betűméretben a készenléti képernyőn"
|
|
||||||
},
|
|
||||||
"AdvancedSoldering": {
|
|
||||||
"text2": [
|
|
||||||
"Részletes",
|
|
||||||
"forrasztás infó"
|
|
||||||
],
|
|
||||||
"desc": "Részletes információk megjelenítése forrasztás közben"
|
|
||||||
},
|
|
||||||
"PowerLimit": {
|
|
||||||
"text2": [
|
|
||||||
"Teljesítmény",
|
|
||||||
"maximum"
|
|
||||||
],
|
|
||||||
"desc": "Maximális felvett teljesitmény beállitása"
|
|
||||||
},
|
|
||||||
"CalibrateCJC": {
|
|
||||||
"text2": [
|
|
||||||
"Calibrate CJC",
|
|
||||||
"köv. indításnál"
|
|
||||||
],
|
|
||||||
"desc": "Következő indításnál a hegy Cold Junction Compensation kalibrálása (nem szükséges ha Delta T kisebb mint 5°C)"
|
|
||||||
},
|
|
||||||
"VoltageCalibration": {
|
|
||||||
"text2": [
|
|
||||||
"Bemeneti fesz.",
|
|
||||||
"kalibrálása?"
|
|
||||||
],
|
|
||||||
"desc": "Bemeneti feszültség kalibrálása (hosszan nyomva kilép)"
|
|
||||||
},
|
|
||||||
"PowerPulsePower": {
|
|
||||||
"text2": [
|
|
||||||
"Ébr. pulzus",
|
|
||||||
"nagysága"
|
|
||||||
],
|
|
||||||
"desc": "Powerbankot ébrentartó áramfelvételi pulzusok nagysága (W)"
|
|
||||||
},
|
|
||||||
"PowerPulseWait": {
|
|
||||||
"text2": [
|
|
||||||
"Ébr. pulzus",
|
|
||||||
"időköze"
|
|
||||||
],
|
|
||||||
"desc": "Powerbankot ébrentartó áramfelvételi pulzusok időköze (x 2.5s)"
|
|
||||||
},
|
|
||||||
"PowerPulseDuration": {
|
|
||||||
"text2": [
|
|
||||||
"Ébr. pulzus",
|
|
||||||
"időtartama"
|
|
||||||
],
|
|
||||||
"desc": "Powerbankot ébrentartó áramfelvételi pulzusok időtartama (x 250ms)"
|
|
||||||
},
|
|
||||||
"SettingsReset": {
|
|
||||||
"text2": [
|
|
||||||
"Gyári",
|
|
||||||
"beállítások?"
|
|
||||||
],
|
|
||||||
"desc": "Beállítások alaphelyzetbe állítása"
|
|
||||||
},
|
|
||||||
"LanguageSwitch": {
|
|
||||||
"text2": [
|
|
||||||
"Nyelv:",
|
|
||||||
" HU Magyar"
|
|
||||||
],
|
|
||||||
"desc": ""
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@@ -1,337 +1,243 @@
|
|||||||
{
|
{
|
||||||
"languageCode": "IT",
|
"languageCode": "IT",
|
||||||
"languageLocalName": "Italiano",
|
"languageLocalName": "Italiano",
|
||||||
"tempUnitFahrenheit": false,
|
"tempUnitFahrenheit": false,
|
||||||
"messages": {
|
"messagesWarn": {
|
||||||
"SettingsCalibrationWarning": "Prima di riavviare assicurati che punta e impugnatura siano a temperatura ambiente!",
|
"CJCCalibrationDone": {
|
||||||
"CJCCalibrating": "Calibrazione in corso",
|
"message": "Calibrazione\ncompletata!"
|
||||||
"SettingsResetWarning": "Ripristinare le impostazioni di default?",
|
},
|
||||||
"UVLOWarningString": "DC BASSA",
|
"ResetOKMessage": {
|
||||||
"UndervoltageString": "DC INSUFFICIENTE",
|
"message": "Reset OK"
|
||||||
"InputVoltageString": "V in:",
|
},
|
||||||
"SleepingSimpleString": "Zzz ",
|
"SettingsResetMessage": {
|
||||||
"SleepingAdvancedString": "Riposo",
|
"message": "Impostazioni\nripristinate"
|
||||||
"SleepingTipAdvancedString": "Punta:",
|
},
|
||||||
"OffString": "OFF",
|
"NoAccelerometerMessage": {
|
||||||
"DeviceFailedValidationWarning": "È probabile che questo dispositivo sia contraffatto!"
|
"message": "Accelerometro\nnon rilevato"
|
||||||
},
|
},
|
||||||
"messagesWarn": {
|
"NoPowerDeliveryMessage": {
|
||||||
"CJCCalibrationDone": [
|
"message": "USB PD\nnon rilevato"
|
||||||
"Calibrazione",
|
},
|
||||||
"completata!"
|
"LockingKeysString": {
|
||||||
],
|
"message": "Blocc."
|
||||||
"ResetOKMessage": "Reset OK",
|
},
|
||||||
"SettingsResetMessage": [
|
"UnlockingKeysString": {
|
||||||
"Impostazioni",
|
"message": "Sblocc."
|
||||||
"ripristinate"
|
},
|
||||||
],
|
"WarningKeysLockedString": {
|
||||||
"NoAccelerometerMessage": [
|
"message": "BLOCCATO"
|
||||||
"Accelerometro",
|
},
|
||||||
"non rilevato"
|
"WarningThermalRunaway": {
|
||||||
],
|
"message": "Temperatura\nfuori controllo"
|
||||||
"NoPowerDeliveryMessage": [
|
},
|
||||||
"USB PD",
|
"SettingsCalibrationWarning": {
|
||||||
"non rilevato"
|
"message": "Prima di riavviare assicurati che punta e impugnatura siano a temperatura ambiente!"
|
||||||
],
|
},
|
||||||
"LockingKeysString": "Blocc.",
|
"CJCCalibrating": {
|
||||||
"UnlockingKeysString": "Sblocc.",
|
"message": "Calibrazione in corso"
|
||||||
"WarningKeysLockedString": "BLOCCATO",
|
},
|
||||||
"WarningThermalRunaway": [
|
"SettingsResetWarning": {
|
||||||
"Temperatura",
|
"message": "Ripristinare le impostazioni di default?"
|
||||||
"fuori controllo"
|
},
|
||||||
]
|
"UVLOWarningString": {
|
||||||
},
|
"message": "DC BASSA"
|
||||||
"characters": {
|
},
|
||||||
"SettingRightChar": "D",
|
"UndervoltageString": {
|
||||||
"SettingLeftChar": "S",
|
"message": "DC INSUFFICIENTE"
|
||||||
"SettingAutoChar": "A",
|
},
|
||||||
"SettingOffChar": "O",
|
"InputVoltageString": {
|
||||||
"SettingSlowChar": "L",
|
"message": "V in:"
|
||||||
"SettingMediumChar": "M",
|
},
|
||||||
"SettingFastChar": "V",
|
"SleepingSimpleString": {
|
||||||
"SettingStartNoneChar": "D",
|
"message": "Zzz "
|
||||||
"SettingStartSolderingChar": "S",
|
},
|
||||||
"SettingStartSleepChar": "R",
|
"SleepingAdvancedString": {
|
||||||
"SettingStartSleepOffChar": "A",
|
"message": "Riposo"
|
||||||
"SettingLockDisableChar": "D",
|
},
|
||||||
"SettingLockBoostChar": "T",
|
"SleepingTipAdvancedString": {
|
||||||
"SettingLockFullChar": "C"
|
"message": "Punta:"
|
||||||
},
|
},
|
||||||
"menuGroups": {
|
"OffString": {
|
||||||
"PowerMenu": {
|
"message": "OFF"
|
||||||
"text2": [
|
},
|
||||||
"Opzioni",
|
"DeviceFailedValidationWarning": {
|
||||||
"alimentaz"
|
"message": "È probabile che questo dispositivo sia contraffatto!"
|
||||||
],
|
}
|
||||||
"desc": ""
|
},
|
||||||
},
|
"characters": {
|
||||||
"SolderingMenu": {
|
"SettingRightChar": "D",
|
||||||
"text2": [
|
"SettingLeftChar": "S",
|
||||||
"Opzioni",
|
"SettingAutoChar": "A",
|
||||||
"saldatura"
|
"SettingOffChar": "O",
|
||||||
],
|
"SettingSlowChar": "L",
|
||||||
"desc": ""
|
"SettingMediumChar": "M",
|
||||||
},
|
"SettingFastChar": "V",
|
||||||
"PowerSavingMenu": {
|
"SettingStartNoneChar": "D",
|
||||||
"text2": [
|
"SettingStartSolderingChar": "S",
|
||||||
"Risparmio",
|
"SettingStartSleepChar": "R",
|
||||||
"energetico"
|
"SettingStartSleepOffChar": "A",
|
||||||
],
|
"SettingLockDisableChar": "D",
|
||||||
"desc": ""
|
"SettingLockBoostChar": "T",
|
||||||
},
|
"SettingLockFullChar": "C"
|
||||||
"UIMenu": {
|
},
|
||||||
"text2": [
|
"menuGroups": {
|
||||||
"Interfaccia",
|
"PowerMenu": {
|
||||||
"utente"
|
"displayText": "Opzioni\nalimentaz",
|
||||||
],
|
"description": ""
|
||||||
"desc": ""
|
},
|
||||||
},
|
"SolderingMenu": {
|
||||||
"AdvancedMenu": {
|
"displayText": "Opzioni\nsaldatura",
|
||||||
"text2": [
|
"description": ""
|
||||||
"Opzioni",
|
},
|
||||||
"avanzate"
|
"PowerSavingMenu": {
|
||||||
],
|
"displayText": "Risparmio\nenergetico",
|
||||||
"desc": ""
|
"description": ""
|
||||||
}
|
},
|
||||||
},
|
"UIMenu": {
|
||||||
"menuOptions": {
|
"displayText": "Interfaccia\nutente",
|
||||||
"DCInCutoff": {
|
"description": ""
|
||||||
"text2": [
|
},
|
||||||
"Sorgente",
|
"AdvancedMenu": {
|
||||||
"alimentaz"
|
"displayText": "Opzioni\navanzate",
|
||||||
],
|
"description": ""
|
||||||
"desc": "Imposta una tensione minima di alimentazione attraverso la selezione di una sorgente [DC: 10 V; 3S/4S/5S/6S: 3,3 V per cella]"
|
}
|
||||||
},
|
},
|
||||||
"MinVolCell": {
|
"menuOptions": {
|
||||||
"text2": [
|
"DCInCutoff": {
|
||||||
"Tensione",
|
"displayText": "Sorgente\nalimentaz",
|
||||||
"min celle"
|
"description": "Imposta una tensione minima di alimentazione attraverso la selezione di una sorgente [DC: 10 V; 3S/4S/5S/6S: 3,3 V per cella]"
|
||||||
],
|
},
|
||||||
"desc": "Modifica la tensione di minima carica delle celle di una batteria Li-Po [3S: 3,0-3,7 V; 4S/5S/6S: 2,4-3,7 V]"
|
"MinVolCell": {
|
||||||
},
|
"displayText": "Tensione\nmin celle",
|
||||||
"QCMaxVoltage": {
|
"description": "Modifica la tensione di minima carica delle celle di una batteria Li-Po [3S: 3,0-3,7 V; 4S/5S/6S: 2,4-3,7 V]"
|
||||||
"text2": [
|
},
|
||||||
"Tensione",
|
"QCMaxVoltage": {
|
||||||
"QC"
|
"displayText": "Tensione\nQC",
|
||||||
],
|
"description": "Imposta la tensione massima negoziabile con un alimentatore Quick Charge [volt]"
|
||||||
"desc": "Imposta la tensione massima negoziabile con un alimentatore Quick Charge [volt]"
|
},
|
||||||
},
|
"PDNegTimeout": {
|
||||||
"PDNegTimeout": {
|
"displayText": "Abilitazione\nUSB PD",
|
||||||
"text2": [
|
"description": "Regola il massimo tempo utile per la negoziazione del protocollo USB Power Delivery con alimentatori compatibili [0: disattiva; multipli di 100 ms]"
|
||||||
"Abilitazione",
|
},
|
||||||
"USB PD"
|
"BoostTemperature": {
|
||||||
],
|
"displayText": "Temp\nTurbo",
|
||||||
"desc": "Regola il massimo tempo utile per la negoziazione del protocollo USB Power Delivery con alimentatori compatibili [0: disattiva; multipli di 100 ms]"
|
"description": "Imposta la temperatura della funzione Turbo [°C/°F]"
|
||||||
},
|
},
|
||||||
"BoostTemperature": {
|
"AutoStart": {
|
||||||
"text2": [
|
"displayText": "Avvio\nautomatico",
|
||||||
"Temp",
|
"description": "Attiva automaticamente il saldatore quando viene alimentato [D: disattiva; S: saldatura; R: riposo; A: temperatura ambiente]"
|
||||||
"Turbo"
|
},
|
||||||
],
|
"TempChangeShortStep": {
|
||||||
"desc": "Imposta la temperatura della funzione Turbo [°C/°F]"
|
"displayText": "Temp passo\nbreve",
|
||||||
},
|
"description": "Imposta il passo dei valori di temperatura per una breve pressione dei tasti"
|
||||||
"AutoStart": {
|
},
|
||||||
"text2": [
|
"TempChangeLongStep": {
|
||||||
"Avvio",
|
"displayText": "Temp passo\nlungo",
|
||||||
"automatico"
|
"description": "Imposta il passo dei valori di temperatura per una lunga pressione dei tasti"
|
||||||
],
|
},
|
||||||
"desc": "Attiva automaticamente il saldatore quando viene alimentato [D: disattiva; S: saldatura; R: riposo; A: temperatura ambiente]"
|
"LockingMode": {
|
||||||
},
|
"displayText": "Blocco\ntasti",
|
||||||
"TempChangeShortStep": {
|
"description": "Blocca i tasti durante la modalità Saldatura; tieni premuto entrambi per bloccare o sbloccare [D: disattiva; T: consenti Turbo; C: blocco completo]"
|
||||||
"text2": [
|
},
|
||||||
"Temp passo",
|
"MotionSensitivity": {
|
||||||
"breve"
|
"displayText": "Sensibilità\nal movimento",
|
||||||
],
|
"description": "Imposta la sensibilità al movimento per uscire dalla modalità Riposo [0: nessuna; 1: minima; 9: massima]"
|
||||||
"desc": "Imposta il passo dei valori di temperatura per una breve pressione dei tasti"
|
},
|
||||||
},
|
"SleepTemperature": {
|
||||||
"TempChangeLongStep": {
|
"displayText": "Temp\nriposo",
|
||||||
"text2": [
|
"description": "Imposta la temperatura da mantenere in modalità Riposo [°C/°F]"
|
||||||
"Temp passo",
|
},
|
||||||
"lungo"
|
"SleepTimeout": {
|
||||||
],
|
"displayText": "Timer\nriposo",
|
||||||
"desc": "Imposta il passo dei valori di temperatura per una lunga pressione dei tasti"
|
"description": "Imposta il timer per entrare in modalità Riposo [secondi/minuti]"
|
||||||
},
|
},
|
||||||
"LockingMode": {
|
"ShutdownTimeout": {
|
||||||
"text2": [
|
"displayText": "Timer\nspegnimento",
|
||||||
"Blocco",
|
"description": "Imposta il timer per lo spegnimento [minuti]"
|
||||||
"tasti"
|
},
|
||||||
],
|
"HallEffSensitivity": {
|
||||||
"desc": "Blocca i tasti durante la modalità Saldatura; tieni premuto entrambi per bloccare o sbloccare [D: disattiva; T: consenti Turbo; C: blocco completo]"
|
"displayText": "Sensore\nHall",
|
||||||
},
|
"description": "Regola la sensibilità del sensore ad effetto Hall per entrare in modalità Riposo [0: nessuna; 1: minima; 9: massima]"
|
||||||
"MotionSensitivity": {
|
},
|
||||||
"text2": [
|
"TemperatureUnit": {
|
||||||
"Sensibilità",
|
"displayText": "Unità di\ntemperatura",
|
||||||
"al movimento"
|
"description": "Scegli l'unità di misura per la temperatura [C: grado Celsius; F: grado Farenheit]"
|
||||||
],
|
},
|
||||||
"desc": "Imposta la sensibilità al movimento per uscire dalla modalità Riposo [0: nessuna; 1: minima; 9: massima]"
|
"DisplayRotation": {
|
||||||
},
|
"displayText": "Orientamento\nschermo",
|
||||||
"SleepTemperature": {
|
"description": "Imposta l'orientamento dello schermo [D: mano destra; S: mano sinistra; A: automatico]"
|
||||||
"text2": [
|
},
|
||||||
"Temp",
|
"CooldownBlink": {
|
||||||
"riposo"
|
"displayText": "Avviso\npunta calda",
|
||||||
],
|
"description": "Evidenzia il valore di temperatura durante il raffreddamento se la punta è ancora calda"
|
||||||
"desc": "Imposta la temperatura da mantenere in modalità Riposo [°C/°F]"
|
},
|
||||||
},
|
"ScrollingSpeed": {
|
||||||
"SleepTimeout": {
|
"displayText": "Velocità\ntesto",
|
||||||
"text2": [
|
"description": "Imposta la velocità di scorrimento del testo [L: lenta; V: veloce]"
|
||||||
"Timer",
|
},
|
||||||
"riposo"
|
"ReverseButtonTempChange": {
|
||||||
],
|
"displayText": "Inversione\ntasti",
|
||||||
"desc": "Imposta il timer per entrare in modalità Riposo [secondi/minuti]"
|
"description": "Inverti i tasti per aumentare o diminuire la temperatura della punta"
|
||||||
},
|
},
|
||||||
"ShutdownTimeout": {
|
"AnimSpeed": {
|
||||||
"text2": [
|
"displayText": "Velocità\nanimazioni",
|
||||||
"Timer",
|
"description": "Imposta la velocità di riproduzione delle animazioni del menù principale [O: OFF; L: lenta; M: media; V: veloce]"
|
||||||
"spegnimento"
|
},
|
||||||
],
|
"AnimLoop": {
|
||||||
"desc": "Imposta il timer per lo spegnimento [minuti]"
|
"displayText": "Ciclo\nanimazioni",
|
||||||
},
|
"description": "Abilita la riproduzione ciclica delle animazioni del menù principale"
|
||||||
"HallEffSensitivity": {
|
},
|
||||||
"text2": [
|
"Brightness": {
|
||||||
"Sensore",
|
"displayText": "Luminosità\nschermo",
|
||||||
"Hall"
|
"description": "Regola la luminosità dello schermo [1: minimo; 10: massimo]"
|
||||||
],
|
},
|
||||||
"desc": "Regola la sensibilità del sensore ad effetto Hall per entrare in modalità Riposo [0: nessuna; 1: minima; 9: massima]"
|
"ColourInversion": {
|
||||||
},
|
"displayText": "Inverti\ncolori",
|
||||||
"TemperatureUnit": {
|
"description": "Inverti i colori dello schermo"
|
||||||
"text2": [
|
},
|
||||||
"Unità di",
|
"LOGOTime": {
|
||||||
"temperatura"
|
"displayText": "Durata\nlogo",
|
||||||
],
|
"description": "Imposta la permanenza sullo schermo del logo iniziale [secondi]"
|
||||||
"desc": "Scegli l'unità di misura per la temperatura [C: grado Celsius; F: grado Farenheit]"
|
},
|
||||||
},
|
"AdvancedIdle": {
|
||||||
"DisplayRotation": {
|
"displayText": "Interfaccia\ntestuale",
|
||||||
"text2": [
|
"description": "Mostra informazioni dettagliate all'interno della schermata principale"
|
||||||
"Orientamento",
|
},
|
||||||
"schermo"
|
"AdvancedSoldering": {
|
||||||
],
|
"displayText": "Dettagli\nsaldatura",
|
||||||
"desc": "Imposta l'orientamento dello schermo [D: mano destra; S: mano sinistra; A: automatico]"
|
"description": "Mostra informazioni dettagliate durante la modalità Saldatura"
|
||||||
},
|
},
|
||||||
"CooldownBlink": {
|
"PowerLimit": {
|
||||||
"text2": [
|
"displayText": "Limite\npotenza",
|
||||||
"Avviso",
|
"description": "Imposta il valore di potenza massima erogabile al saldatore [watt]"
|
||||||
"punta calda"
|
},
|
||||||
],
|
"CalibrateCJC": {
|
||||||
"desc": "Evidenzia il valore di temperatura durante il raffreddamento se la punta è ancora calda"
|
"displayText": "Calibra T\nall'avvio",
|
||||||
},
|
"description": "Calibra le rilevazioni di temperatura al prossimo riavvio (non necessario se il Delta T<5 °C)"
|
||||||
"ScrollingSpeed": {
|
},
|
||||||
"text2": [
|
"VoltageCalibration": {
|
||||||
"Velocità",
|
"displayText": "Calibrazione\ntensione",
|
||||||
"testo"
|
"description": "Calibra la tensione in ingresso; regola con entrambi i tasti, tieni premuto il tasto superiore per uscire"
|
||||||
],
|
},
|
||||||
"desc": "Imposta la velocità di scorrimento del testo [L: lenta; V: veloce]"
|
"PowerPulsePower": {
|
||||||
},
|
"displayText": "Potenza\nimpulso",
|
||||||
"ReverseButtonTempChange": {
|
"description": "Regola la potenza di un \"impulso sveglia\" atto a prevenire lo standby eventuale dell'alimentatore [watt]"
|
||||||
"text2": [
|
},
|
||||||
"Inversione",
|
"PowerPulseWait": {
|
||||||
"tasti"
|
"displayText": "Distanza\nimpulsi",
|
||||||
],
|
"description": "Imposta il tempo che deve intercorrere tra due \"impulsi sveglia\" [multipli di 2,5 s]"
|
||||||
"desc": "Inverti i tasti per aumentare o diminuire la temperatura della punta"
|
},
|
||||||
},
|
"PowerPulseDuration": {
|
||||||
"AnimSpeed": {
|
"displayText": "Durata\nimpulso",
|
||||||
"text2": [
|
"description": "Regola la durata dell'«impulso sveglia» [multipli di 250 ms]"
|
||||||
"Velocità",
|
},
|
||||||
"animazioni"
|
"SettingsReset": {
|
||||||
],
|
"displayText": "Ripristino\nimpostazioni",
|
||||||
"desc": "Imposta la velocità di riproduzione delle animazioni del menù principale [O: OFF; L: lenta; M: media; V: veloce]"
|
"description": "Ripristina le impostazioni di default"
|
||||||
},
|
},
|
||||||
"AnimLoop": {
|
"LanguageSwitch": {
|
||||||
"text2": [
|
"displayText": "Lingua:\n IT Italiano",
|
||||||
"Ciclo",
|
"description": ""
|
||||||
"animazioni"
|
}
|
||||||
],
|
}
|
||||||
"desc": "Abilita la riproduzione ciclica delle animazioni del menù principale"
|
}
|
||||||
},
|
|
||||||
"Brightness": {
|
|
||||||
"text2": [
|
|
||||||
"Luminosità",
|
|
||||||
"schermo"
|
|
||||||
],
|
|
||||||
"desc": "Regola la luminosità dello schermo [1: minimo; 10: massimo]"
|
|
||||||
},
|
|
||||||
"ColourInversion": {
|
|
||||||
"text2": [
|
|
||||||
"Inverti",
|
|
||||||
"colori"
|
|
||||||
],
|
|
||||||
"desc": "Inverti i colori dello schermo"
|
|
||||||
},
|
|
||||||
"LOGOTime": {
|
|
||||||
"text2": [
|
|
||||||
"Durata",
|
|
||||||
"logo"
|
|
||||||
],
|
|
||||||
"desc": "Imposta la permanenza sullo schermo del logo iniziale [secondi]"
|
|
||||||
},
|
|
||||||
"AdvancedIdle": {
|
|
||||||
"text2": [
|
|
||||||
"Interfaccia",
|
|
||||||
"testuale"
|
|
||||||
],
|
|
||||||
"desc": "Mostra informazioni dettagliate all'interno della schermata principale"
|
|
||||||
},
|
|
||||||
"AdvancedSoldering": {
|
|
||||||
"text2": [
|
|
||||||
"Dettagli",
|
|
||||||
"saldatura"
|
|
||||||
],
|
|
||||||
"desc": "Mostra informazioni dettagliate durante la modalità Saldatura"
|
|
||||||
},
|
|
||||||
"PowerLimit": {
|
|
||||||
"text2": [
|
|
||||||
"Limite",
|
|
||||||
"potenza"
|
|
||||||
],
|
|
||||||
"desc": "Imposta il valore di potenza massima erogabile al saldatore [watt]"
|
|
||||||
},
|
|
||||||
"CalibrateCJC": {
|
|
||||||
"text2": [
|
|
||||||
"Calibra T",
|
|
||||||
"all'avvio"
|
|
||||||
],
|
|
||||||
"desc": "Calibra le rilevazioni di temperatura al prossimo riavvio (non necessario se il Delta T<5 °C)"
|
|
||||||
},
|
|
||||||
"VoltageCalibration": {
|
|
||||||
"text2": [
|
|
||||||
"Calibrazione",
|
|
||||||
"tensione"
|
|
||||||
],
|
|
||||||
"desc": "Calibra la tensione in ingresso; regola con entrambi i tasti, tieni premuto il tasto superiore per uscire"
|
|
||||||
},
|
|
||||||
"PowerPulsePower": {
|
|
||||||
"text2": [
|
|
||||||
"Potenza",
|
|
||||||
"impulso"
|
|
||||||
],
|
|
||||||
"desc": "Regola la potenza di un \"impulso sveglia\" atto a prevenire lo standby eventuale dell'alimentatore [watt]"
|
|
||||||
},
|
|
||||||
"PowerPulseWait": {
|
|
||||||
"text2": [
|
|
||||||
"Distanza",
|
|
||||||
"impulsi"
|
|
||||||
],
|
|
||||||
"desc": "Imposta il tempo che deve intercorrere tra due \"impulsi sveglia\" [multipli di 2,5 s]"
|
|
||||||
},
|
|
||||||
"PowerPulseDuration": {
|
|
||||||
"text2": [
|
|
||||||
"Durata",
|
|
||||||
"impulso"
|
|
||||||
],
|
|
||||||
"desc": "Regola la durata dell'«impulso sveglia» [multipli di 250 ms]"
|
|
||||||
},
|
|
||||||
"SettingsReset": {
|
|
||||||
"text2": [
|
|
||||||
"Ripristino",
|
|
||||||
"impostazioni"
|
|
||||||
],
|
|
||||||
"desc": "Ripristina le impostazioni di default"
|
|
||||||
},
|
|
||||||
"LanguageSwitch": {
|
|
||||||
"text2": [
|
|
||||||
"Lingua:",
|
|
||||||
" IT Italiano"
|
|
||||||
],
|
|
||||||
"desc": ""
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,208 +1,243 @@
|
|||||||
{
|
{
|
||||||
"languageCode": "JA_JP",
|
"languageCode": "JA_JP",
|
||||||
"languageLocalName": "日本語",
|
"languageLocalName": "日本語",
|
||||||
"tempUnitFahrenheit": true,
|
"tempUnitFahrenheit": true,
|
||||||
"messages": {
|
"messagesWarn": {
|
||||||
"SettingsCalibrationWarning": "Before rebooting, make sure tip & handle are at room temperature!",
|
"CJCCalibrationDone": {
|
||||||
"CJCCalibrating": "calibrating",
|
"message": "Calibration done!"
|
||||||
"SettingsResetWarning": "設定をリセットしますか?",
|
},
|
||||||
"UVLOWarningString": "電圧が低すぎます",
|
"ResetOKMessage": {
|
||||||
"UndervoltageString": "Undervoltage",
|
"message": "リセットOK"
|
||||||
"InputVoltageString": "Input V: ",
|
},
|
||||||
"SleepingSimpleString": "Zzzz",
|
"SettingsResetMessage": {
|
||||||
"SleepingAdvancedString": "Sleeping...",
|
"message": "初期化されました"
|
||||||
"SleepingTipAdvancedString": "Tip:",
|
},
|
||||||
"OffString": "オフ",
|
"NoAccelerometerMessage": {
|
||||||
"DeviceFailedValidationWarning": "このデバイスはおそらく偽造品です"
|
"message": "加速度計未検出"
|
||||||
},
|
},
|
||||||
"messagesWarn": {
|
"NoPowerDeliveryMessage": {
|
||||||
"CJCCalibrationDone": "Calibration done!",
|
"message": "PD IC未検出"
|
||||||
"ResetOKMessage": "リセットOK",
|
},
|
||||||
"SettingsResetMessage": "初期化されました",
|
"LockingKeysString": {
|
||||||
"NoAccelerometerMessage": "加速度計未検出",
|
"message": "ボタンロック"
|
||||||
"NoPowerDeliveryMessage": "PD IC未検出",
|
},
|
||||||
"LockingKeysString": "ボタンロック",
|
"UnlockingKeysString": {
|
||||||
"UnlockingKeysString": "ロックを解除",
|
"message": "ロックを解除"
|
||||||
"WarningKeysLockedString": "!入力ロック中!",
|
},
|
||||||
"WarningThermalRunaway": "過熱"
|
"WarningKeysLockedString": {
|
||||||
},
|
"message": "!入力ロック中!"
|
||||||
"characters": {
|
},
|
||||||
"SettingRightChar": "右",
|
"WarningThermalRunaway": {
|
||||||
"SettingLeftChar": "左",
|
"message": "過熱"
|
||||||
"SettingAutoChar": "自",
|
},
|
||||||
"SettingOffChar": "×",
|
"SettingsCalibrationWarning": {
|
||||||
"SettingSlowChar": "遅",
|
"message": "Before rebooting, make sure tip & handle are at room temperature!"
|
||||||
"SettingMediumChar": "中",
|
},
|
||||||
"SettingFastChar": "速",
|
"CJCCalibrating": {
|
||||||
"SettingStartNoneChar": "×",
|
"message": "calibrating"
|
||||||
"SettingStartSolderingChar": "熱",
|
},
|
||||||
"SettingStartSleepChar": "待",
|
"SettingsResetWarning": {
|
||||||
"SettingStartSleepOffChar": "室",
|
"message": "設定をリセットしますか?"
|
||||||
"SettingLockDisableChar": "×",
|
},
|
||||||
"SettingLockBoostChar": "ブ",
|
"UVLOWarningString": {
|
||||||
"SettingLockFullChar": "全"
|
"message": "電圧が低すぎます"
|
||||||
},
|
},
|
||||||
"menuGroups": {
|
"UndervoltageString": {
|
||||||
"PowerMenu": {
|
"message": "Undervoltage"
|
||||||
"text2": "電源設定",
|
},
|
||||||
"desc": ""
|
"InputVoltageString": {
|
||||||
},
|
"message": "Input V: "
|
||||||
"SolderingMenu": {
|
},
|
||||||
"text2": "半田付け設定",
|
"SleepingSimpleString": {
|
||||||
"desc": ""
|
"message": "Zzzz"
|
||||||
},
|
},
|
||||||
"PowerSavingMenu": {
|
"SleepingAdvancedString": {
|
||||||
"text2": "待機設定",
|
"message": "Sleeping..."
|
||||||
"desc": ""
|
},
|
||||||
},
|
"SleepingTipAdvancedString": {
|
||||||
"UIMenu": {
|
"message": "Tip:"
|
||||||
"text2": "UI設定",
|
},
|
||||||
"desc": ""
|
"OffString": {
|
||||||
},
|
"message": "オフ"
|
||||||
"AdvancedMenu": {
|
},
|
||||||
"text2": "高度な設定",
|
"DeviceFailedValidationWarning": {
|
||||||
"desc": ""
|
"message": "このデバイスはおそらく偽造品です"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"menuOptions": {
|
"characters": {
|
||||||
"DCInCutoff": {
|
"SettingRightChar": "右",
|
||||||
"text2": "下限電圧",
|
"SettingLeftChar": "左",
|
||||||
"desc": "下限電圧を指定する <DC=10V | S=セルあたり3.3V、電力制限を無効化>"
|
"SettingAutoChar": "自",
|
||||||
},
|
"SettingOffChar": "×",
|
||||||
"MinVolCell": {
|
"SettingSlowChar": "遅",
|
||||||
"text2": "最低電圧",
|
"SettingMediumChar": "中",
|
||||||
"desc": "セルあたりの最低電圧 <ボルト> <3S: 3.0V - 3.7V, 4/5/6S: 2.4V - 3.7V>"
|
"SettingFastChar": "速",
|
||||||
},
|
"SettingStartNoneChar": "×",
|
||||||
"QCMaxVoltage": {
|
"SettingStartSolderingChar": "熱",
|
||||||
"text2": "QC電圧",
|
"SettingStartSleepChar": "待",
|
||||||
"desc": "QC電源使用時に要求する目標電圧"
|
"SettingStartSleepOffChar": "室",
|
||||||
},
|
"SettingLockDisableChar": "×",
|
||||||
"PDNegTimeout": {
|
"SettingLockBoostChar": "ブ",
|
||||||
"text2": [
|
"SettingLockFullChar": "全"
|
||||||
"PD",
|
},
|
||||||
"timeout"
|
"menuGroups": {
|
||||||
],
|
"PowerMenu": {
|
||||||
"desc": "一部のQC電源との互換性のため、PDネゴシエーションをタイムアウトする時間 <x100ms(ミリ秒)>"
|
"displayText": "電源設定",
|
||||||
},
|
"description": ""
|
||||||
"BoostTemperature": {
|
},
|
||||||
"text2": "ブースト温度",
|
"SolderingMenu": {
|
||||||
"desc": "ブーストモードで使用される温度"
|
"displayText": "半田付け設定",
|
||||||
},
|
"description": ""
|
||||||
"AutoStart": {
|
},
|
||||||
"text2": "自動加熱",
|
"PowerSavingMenu": {
|
||||||
"desc": "電源投入時に自動的に加熱する <×=オフ | 熱=半田付けモード | 待=スタンバイモード | 室=室温スタンバイモード>"
|
"displayText": "待機設定",
|
||||||
},
|
"description": ""
|
||||||
"TempChangeShortStep": {
|
},
|
||||||
"text2": "温度変化 短",
|
"UIMenu": {
|
||||||
"desc": "ボタンを短く押した時の温度変化値"
|
"displayText": "UI設定",
|
||||||
},
|
"description": ""
|
||||||
"TempChangeLongStep": {
|
},
|
||||||
"text2": "温度変化 長",
|
"AdvancedMenu": {
|
||||||
"desc": "ボタンを長押しした時の温度変化値"
|
"displayText": "高度な設定",
|
||||||
},
|
"description": ""
|
||||||
"LockingMode": {
|
}
|
||||||
"text2": "ボタンロック",
|
},
|
||||||
"desc": "半田付けモード時に両方のボタンを長押しし、ボタンロックする <×=オフ | ブ=ブーストのみ許可 | 全=すべてをロック>"
|
"menuOptions": {
|
||||||
},
|
"DCInCutoff": {
|
||||||
"MotionSensitivity": {
|
"displayText": "下限電圧",
|
||||||
"text2": "動きの感度",
|
"description": "下限電圧を指定する <DC=10V | S=セルあたり3.3V、電力制限を無効化>"
|
||||||
"desc": "0=オフ | 1=最低感度 | ... | 9=最高感度"
|
},
|
||||||
},
|
"MinVolCell": {
|
||||||
"SleepTemperature": {
|
"displayText": "最低電圧",
|
||||||
"text2": "待機温度",
|
"description": "セルあたりの最低電圧 <ボルト> <3S: 3.0V - 3.7V, 4/5/6S: 2.4V - 3.7V>"
|
||||||
"desc": "スタンバイ時のコテ先温度"
|
},
|
||||||
},
|
"QCMaxVoltage": {
|
||||||
"SleepTimeout": {
|
"displayText": "QC電圧",
|
||||||
"text2": "待機遅延",
|
"description": "QC電源使用時に要求する目標電圧"
|
||||||
"desc": "スタンバイモードに入るまでの待機時間 <s=秒 | m=分>"
|
},
|
||||||
},
|
"PDNegTimeout": {
|
||||||
"ShutdownTimeout": {
|
"displayText": "PD\ntimeout",
|
||||||
"text2": "自動オフ",
|
"description": "一部のQC電源との互換性のため、PDネゴシエーションをタイムアウトする時間 <x100ms(ミリ秒)>"
|
||||||
"desc": "自動電源オフまでの待機時間 <m=分>"
|
},
|
||||||
},
|
"BoostTemperature": {
|
||||||
"HallEffSensitivity": {
|
"displayText": "ブースト温度",
|
||||||
"text2": "磁界感度",
|
"description": "ブーストモードで使用される温度"
|
||||||
"desc": "スタンバイモードに入るのに使用される磁場センサーの感度 <0=オフ | 1=最低感度 | ... | 9=最高感度>"
|
},
|
||||||
},
|
"AutoStart": {
|
||||||
"TemperatureUnit": {
|
"displayText": "自動加熱",
|
||||||
"text2": "温度単位",
|
"description": "電源投入時に自動的に加熱する <×=オフ | 熱=半田付けモード | 待=スタンバイモード | 室=室温スタンバイモード>"
|
||||||
"desc": "C=摂氏 | F=華氏"
|
},
|
||||||
},
|
"TempChangeShortStep": {
|
||||||
"DisplayRotation": {
|
"displayText": "温度変化 短",
|
||||||
"text2": "画面の向き",
|
"description": "ボタンを短く押した時の温度変化値"
|
||||||
"desc": "右=右利き | 左=左利き | 自=自動"
|
},
|
||||||
},
|
"TempChangeLongStep": {
|
||||||
"CooldownBlink": {
|
"displayText": "温度変化 長",
|
||||||
"text2": "冷却中に点滅",
|
"description": "ボタンを長押しした時の温度変化値"
|
||||||
"desc": "加熱の停止後、コテ先が熱い間は温度表示を点滅する"
|
},
|
||||||
},
|
"LockingMode": {
|
||||||
"ScrollingSpeed": {
|
"displayText": "ボタンロック",
|
||||||
"text2": "スクロール速度",
|
"description": "半田付けモード時に両方のボタンを長押しし、ボタンロックする <×=オフ | ブ=ブーストのみ許可 | 全=すべてをロック>"
|
||||||
"desc": "テキストをスクロールする速さ <遅=遅い | 速=速い>"
|
},
|
||||||
},
|
"MotionSensitivity": {
|
||||||
"ReverseButtonTempChange": {
|
"displayText": "動きの感度",
|
||||||
"text2": "キー入れ替え",
|
"description": "0=オフ | 1=最低感度 | ... | 9=最高感度"
|
||||||
"desc": "温度設定時に+ボタンと-ボタンを入れ替える"
|
},
|
||||||
},
|
"SleepTemperature": {
|
||||||
"AnimSpeed": {
|
"displayText": "待機温度",
|
||||||
"text2": "動画の速度",
|
"description": "スタンバイ時のコテ先温度"
|
||||||
"desc": "メニューアイコンのアニメーションの速さ <×=再生しない | 遅=低速 | 中=中速 | 速=高速>"
|
},
|
||||||
},
|
"SleepTimeout": {
|
||||||
"AnimLoop": {
|
"displayText": "待機遅延",
|
||||||
"text2": "動画をループ",
|
"description": "スタンバイモードに入るまでの待機時間 <s=秒 | m=分>"
|
||||||
"desc": "メニューアイコンのアニメーションをループする"
|
},
|
||||||
},
|
"ShutdownTimeout": {
|
||||||
"Brightness": {
|
"displayText": "自動オフ",
|
||||||
"text2": "画面輝度",
|
"description": "自動電源オフまでの待機時間 <m=分>"
|
||||||
"desc": "画面の明るさ・コントラストを変更する"
|
},
|
||||||
},
|
"HallEffSensitivity": {
|
||||||
"ColourInversion": {
|
"displayText": "磁界感度",
|
||||||
"text2": "色反転",
|
"description": "スタンバイモードに入るのに使用される磁場センサーの感度 <0=オフ | 1=最低感度 | ... | 9=最高感度>"
|
||||||
"desc": "画面の色を反転する"
|
},
|
||||||
},
|
"TemperatureUnit": {
|
||||||
"LOGOTime": {
|
"displayText": "温度単位",
|
||||||
"text2": "起動画面",
|
"description": "C=摂氏 | F=華氏"
|
||||||
"desc": "起動画面の表示時間を設定する"
|
},
|
||||||
},
|
"DisplayRotation": {
|
||||||
"AdvancedIdle": {
|
"displayText": "画面の向き",
|
||||||
"text2": "詳細な待受画面",
|
"description": "右=右利き | 左=左利き | 自=自動"
|
||||||
"desc": "待ち受け画面に詳細情報を表示する"
|
},
|
||||||
},
|
"CooldownBlink": {
|
||||||
"AdvancedSoldering": {
|
"displayText": "冷却中に点滅",
|
||||||
"text2": "詳細な作業画面",
|
"description": "加熱の停止後、コテ先が熱い間は温度表示を点滅する"
|
||||||
"desc": "半田付け画面に詳細情報を表示する"
|
},
|
||||||
},
|
"ScrollingSpeed": {
|
||||||
"PowerLimit": {
|
"displayText": "スクロール速度",
|
||||||
"text2": "電力制限",
|
"description": "テキストをスクロールする速さ <遅=遅い | 速=速い>"
|
||||||
"desc": "最大電力を制限する <W=ワット>"
|
},
|
||||||
},
|
"ReverseButtonTempChange": {
|
||||||
"CalibrateCJC": {
|
"displayText": "キー入れ替え",
|
||||||
"text2": "Calibrate CJC",
|
"description": "温度設定時に+ボタンと-ボタンを入れ替える"
|
||||||
"desc": "At next boot tip Cold Junction Compensation will be calibrated (not required if Delta T is < 5 C)"
|
},
|
||||||
},
|
"AnimSpeed": {
|
||||||
"VoltageCalibration": {
|
"displayText": "動画の速度",
|
||||||
"text2": "電圧校正",
|
"description": "メニューアイコンのアニメーションの速さ <×=再生しない | 遅=低速 | 中=中速 | 速=高速>"
|
||||||
"desc": "入力電圧(VIN)の校正を開始する <長押しで終了>"
|
},
|
||||||
},
|
"AnimLoop": {
|
||||||
"PowerPulsePower": {
|
"displayText": "動画をループ",
|
||||||
"text2": "電力パルス",
|
"description": "メニューアイコンのアニメーションをループする"
|
||||||
"desc": "電源をオンに保つための電力パルス <ワット>"
|
},
|
||||||
},
|
"Brightness": {
|
||||||
"PowerPulseWait": {
|
"displayText": "画面輝度",
|
||||||
"text2": "パルス間隔",
|
"description": "画面の明るさ・コントラストを変更する"
|
||||||
"desc": "電源をオンに保つための電力パルスの時間間隔 <x2.5s(秒)>"
|
},
|
||||||
},
|
"ColourInversion": {
|
||||||
"PowerPulseDuration": {
|
"displayText": "色反転",
|
||||||
"text2": "パルス時間長",
|
"description": "画面の色を反転する"
|
||||||
"desc": "電源をオンに保つための電力パルスの時間長 <x250ms(ミリ秒)>"
|
},
|
||||||
},
|
"LOGOTime": {
|
||||||
"SettingsReset": {
|
"displayText": "起動画面",
|
||||||
"text2": "設定をリセット",
|
"description": "起動画面の表示時間を設定する"
|
||||||
"desc": "すべての設定を初期化する"
|
},
|
||||||
},
|
"AdvancedIdle": {
|
||||||
"LanguageSwitch": {
|
"displayText": "詳細な待受画面",
|
||||||
"text2": "言語: 日本語",
|
"description": "待ち受け画面に詳細情報を表示する"
|
||||||
"desc": ""
|
},
|
||||||
}
|
"AdvancedSoldering": {
|
||||||
}
|
"displayText": "詳細な作業画面",
|
||||||
|
"description": "半田付け画面に詳細情報を表示する"
|
||||||
|
},
|
||||||
|
"PowerLimit": {
|
||||||
|
"displayText": "電力制限",
|
||||||
|
"description": "最大電力を制限する <W=ワット>"
|
||||||
|
},
|
||||||
|
"CalibrateCJC": {
|
||||||
|
"displayText": "Calibrate CJC",
|
||||||
|
"description": "At next boot tip Cold Junction Compensation will be calibrated (not required if Delta T is < 5 C)"
|
||||||
|
},
|
||||||
|
"VoltageCalibration": {
|
||||||
|
"displayText": "電圧校正",
|
||||||
|
"description": "入力電圧(VIN)の校正を開始する <長押しで終了>"
|
||||||
|
},
|
||||||
|
"PowerPulsePower": {
|
||||||
|
"displayText": "電力パルス",
|
||||||
|
"description": "電源をオンに保つための電力パルス <ワット>"
|
||||||
|
},
|
||||||
|
"PowerPulseWait": {
|
||||||
|
"displayText": "パルス間隔",
|
||||||
|
"description": "電源をオンに保つための電力パルスの時間間隔 <x2.5s(秒)>"
|
||||||
|
},
|
||||||
|
"PowerPulseDuration": {
|
||||||
|
"displayText": "パルス時間長",
|
||||||
|
"description": "電源をオンに保つための電力パルスの時間長 <x250ms(ミリ秒)>"
|
||||||
|
},
|
||||||
|
"SettingsReset": {
|
||||||
|
"displayText": "設定をリセット",
|
||||||
|
"description": "すべての設定を初期化する"
|
||||||
|
},
|
||||||
|
"LanguageSwitch": {
|
||||||
|
"displayText": "言語: 日本語",
|
||||||
|
"description": ""
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@@ -1,337 +1,243 @@
|
|||||||
{
|
{
|
||||||
"languageCode": "LT",
|
"languageCode": "LT",
|
||||||
"languageLocalName": "Lietuvių",
|
"languageLocalName": "Lietuvių",
|
||||||
"tempUnitFahrenheit": false,
|
"tempUnitFahrenheit": false,
|
||||||
"messages": {
|
"messagesWarn": {
|
||||||
"SettingsCalibrationWarning": "Before rebooting, make sure tip & handle are at room temperature!",
|
"CJCCalibrationDone": {
|
||||||
"CJCCalibrating": "calibrating",
|
"message": "Calibration\ndone!"
|
||||||
"SettingsResetWarning": "Ar norite atstatyti nustatymus į numatytas reikšmes?",
|
},
|
||||||
"UVLOWarningString": "MAŽ VOLT",
|
"ResetOKMessage": {
|
||||||
"UndervoltageString": "Žema įtampa",
|
"message": "Atstatyta"
|
||||||
"InputVoltageString": "Įvestis V: ",
|
},
|
||||||
"SleepingSimpleString": "Zzzz",
|
"SettingsResetMessage": {
|
||||||
"SleepingAdvancedString": "Miegu...",
|
"message": "Nust. atstatyti!\n"
|
||||||
"SleepingTipAdvancedString": "Antg:",
|
},
|
||||||
"OffString": "Išj",
|
"NoAccelerometerMessage": {
|
||||||
"DeviceFailedValidationWarning": "Your device is most likely a counterfeit!"
|
"message": "Nerastas\nakselerometras!"
|
||||||
},
|
},
|
||||||
"messagesWarn": {
|
"NoPowerDeliveryMessage": {
|
||||||
"CJCCalibrationDone": [
|
"message": "Nerastas\nUSB-PD IC!"
|
||||||
"Calibration",
|
},
|
||||||
"done!"
|
"LockingKeysString": {
|
||||||
],
|
"message": "UŽRAKIN"
|
||||||
"ResetOKMessage": "Atstatyta",
|
},
|
||||||
"SettingsResetMessage": [
|
"UnlockingKeysString": {
|
||||||
"Nust. atstatyti!",
|
"message": "ATRAKIN"
|
||||||
""
|
},
|
||||||
],
|
"WarningKeysLockedString": {
|
||||||
"NoAccelerometerMessage": [
|
"message": "!UŽRAK!"
|
||||||
"Nerastas",
|
},
|
||||||
"akselerometras!"
|
"WarningThermalRunaway": {
|
||||||
],
|
"message": "Perkaitimo\npavojus"
|
||||||
"NoPowerDeliveryMessage": [
|
},
|
||||||
"Nerastas",
|
"SettingsCalibrationWarning": {
|
||||||
"USB-PD IC!"
|
"message": "Before rebooting, make sure tip & handle are at room temperature!"
|
||||||
],
|
},
|
||||||
"LockingKeysString": "UŽRAKIN",
|
"CJCCalibrating": {
|
||||||
"UnlockingKeysString": "ATRAKIN",
|
"message": "calibrating"
|
||||||
"WarningKeysLockedString": "!UŽRAK!",
|
},
|
||||||
"WarningThermalRunaway": [
|
"SettingsResetWarning": {
|
||||||
"Perkaitimo",
|
"message": "Ar norite atstatyti nustatymus į numatytas reikšmes?"
|
||||||
"pavojus"
|
},
|
||||||
]
|
"UVLOWarningString": {
|
||||||
},
|
"message": "MAŽ VOLT"
|
||||||
"characters": {
|
},
|
||||||
"SettingRightChar": "D",
|
"UndervoltageString": {
|
||||||
"SettingLeftChar": "K",
|
"message": "Žema įtampa"
|
||||||
"SettingAutoChar": "A",
|
},
|
||||||
"SettingOffChar": "I",
|
"InputVoltageString": {
|
||||||
"SettingSlowChar": "L",
|
"message": "Įvestis V: "
|
||||||
"SettingMediumChar": "V",
|
},
|
||||||
"SettingFastChar": "G",
|
"SleepingSimpleString": {
|
||||||
"SettingStartNoneChar": "N",
|
"message": "Zzzz"
|
||||||
"SettingStartSolderingChar": "T",
|
},
|
||||||
"SettingStartSleepChar": "M",
|
"SleepingAdvancedString": {
|
||||||
"SettingStartSleepOffChar": "K",
|
"message": "Miegu..."
|
||||||
"SettingLockDisableChar": "I",
|
},
|
||||||
"SettingLockBoostChar": "T",
|
"SleepingTipAdvancedString": {
|
||||||
"SettingLockFullChar": "V"
|
"message": "Antg:"
|
||||||
},
|
},
|
||||||
"menuGroups": {
|
"OffString": {
|
||||||
"PowerMenu": {
|
"message": "Išj"
|
||||||
"text2": [
|
},
|
||||||
"Maitinimo",
|
"DeviceFailedValidationWarning": {
|
||||||
"nustatymai"
|
"message": "Your device is most likely a counterfeit!"
|
||||||
],
|
}
|
||||||
"desc": ""
|
},
|
||||||
},
|
"characters": {
|
||||||
"SolderingMenu": {
|
"SettingRightChar": "D",
|
||||||
"text2": [
|
"SettingLeftChar": "K",
|
||||||
"Litavimo",
|
"SettingAutoChar": "A",
|
||||||
"nustatymai"
|
"SettingOffChar": "I",
|
||||||
],
|
"SettingSlowChar": "L",
|
||||||
"desc": ""
|
"SettingMediumChar": "V",
|
||||||
},
|
"SettingFastChar": "G",
|
||||||
"PowerSavingMenu": {
|
"SettingStartNoneChar": "N",
|
||||||
"text2": [
|
"SettingStartSolderingChar": "T",
|
||||||
"Miego",
|
"SettingStartSleepChar": "M",
|
||||||
"režimai"
|
"SettingStartSleepOffChar": "K",
|
||||||
],
|
"SettingLockDisableChar": "I",
|
||||||
"desc": ""
|
"SettingLockBoostChar": "T",
|
||||||
},
|
"SettingLockFullChar": "V"
|
||||||
"UIMenu": {
|
},
|
||||||
"text2": [
|
"menuGroups": {
|
||||||
"Naudotojo",
|
"PowerMenu": {
|
||||||
"sąsaja"
|
"displayText": "Maitinimo\nnustatymai",
|
||||||
],
|
"description": ""
|
||||||
"desc": ""
|
},
|
||||||
},
|
"SolderingMenu": {
|
||||||
"AdvancedMenu": {
|
"displayText": "Litavimo\nnustatymai",
|
||||||
"text2": [
|
"description": ""
|
||||||
"Išplėsti.",
|
},
|
||||||
"nustatymai"
|
"PowerSavingMenu": {
|
||||||
],
|
"displayText": "Miego\nrežimai",
|
||||||
"desc": ""
|
"description": ""
|
||||||
}
|
},
|
||||||
},
|
"UIMenu": {
|
||||||
"menuOptions": {
|
"displayText": "Naudotojo\nsąsaja",
|
||||||
"DCInCutoff": {
|
"description": ""
|
||||||
"text2": [
|
},
|
||||||
"Maitinimo",
|
"AdvancedMenu": {
|
||||||
"šaltinis"
|
"displayText": "Išplėsti.\nnustatymai",
|
||||||
],
|
"description": ""
|
||||||
"desc": "Išjungimo įtampa. (DC 10V) (arba celių [S] kiekis [3.3V per celę])"
|
}
|
||||||
},
|
},
|
||||||
"MinVolCell": {
|
"menuOptions": {
|
||||||
"text2": [
|
"DCInCutoff": {
|
||||||
"Minimalus",
|
"displayText": "Maitinimo\nšaltinis",
|
||||||
"voltažas"
|
"description": "Išjungimo įtampa. (DC 10V) (arba celių [S] kiekis [3.3V per celę])"
|
||||||
],
|
},
|
||||||
"desc": "Minimalus voltažas, kuris yra leidžiamas kiekvienam baterijos elementui (3S: 3 - 3.7V | 4-6S: 2.4 - 3.7V)"
|
"MinVolCell": {
|
||||||
},
|
"displayText": "Minimalus\nvoltažas",
|
||||||
"QCMaxVoltage": {
|
"description": "Minimalus voltažas, kuris yra leidžiamas kiekvienam baterijos elementui (3S: 3 - 3.7V | 4-6S: 2.4 - 3.7V)"
|
||||||
"text2": [
|
},
|
||||||
"QC mait.",
|
"QCMaxVoltage": {
|
||||||
"įtampa"
|
"displayText": "QC mait.\nįtampa",
|
||||||
],
|
"description": "Maksimali QC maitinimo bloko įtampa"
|
||||||
"desc": "Maksimali QC maitinimo bloko įtampa"
|
},
|
||||||
},
|
"PDNegTimeout": {
|
||||||
"PDNegTimeout": {
|
"displayText": "PD\nlaikas",
|
||||||
"text2": [
|
"description": "PD suderinimo laikas žingsniais po 100ms suderinamumui su kai kuriais QC įkrovikliais"
|
||||||
"PD",
|
},
|
||||||
"laikas"
|
"BoostTemperature": {
|
||||||
],
|
"displayText": "Turbo\ntemperat.",
|
||||||
"desc": "PD suderinimo laikas žingsniais po 100ms suderinamumui su kai kuriais QC įkrovikliais"
|
"description": "Temperatūra turbo režimu"
|
||||||
},
|
},
|
||||||
"BoostTemperature": {
|
"AutoStart": {
|
||||||
"text2": [
|
"displayText": "Automatinis\npaleidimas",
|
||||||
"Turbo",
|
"description": "Ar pradėti kaitininti iš karto įjungus lituoklį (N=Ne | T=Taip | M=Miegas | K=Miegoti kambario temperatūroje)"
|
||||||
"temperat."
|
},
|
||||||
],
|
"TempChangeShortStep": {
|
||||||
"desc": "Temperatūra turbo režimu"
|
"displayText": "Temp.keitim.\ntrump.spust.",
|
||||||
},
|
"description": "Temperatūros keitimo žingsnis trumpai spustėlėjus mygtuką"
|
||||||
"AutoStart": {
|
},
|
||||||
"text2": [
|
"TempChangeLongStep": {
|
||||||
"Automatinis",
|
"displayText": "Temp.keitim.\nilgas pasp.",
|
||||||
"paleidimas"
|
"description": "Temperatūros keitimo žingsnis ilgai paspaudus mygtuką"
|
||||||
],
|
},
|
||||||
"desc": "Ar pradėti kaitininti iš karto įjungus lituoklį (N=Ne | T=Taip | M=Miegas | K=Miegoti kambario temperatūroje)"
|
"LockingMode": {
|
||||||
},
|
"displayText": "Mygtukų\nužraktas",
|
||||||
"TempChangeShortStep": {
|
"description": "Lituodami, ilgai paspauskite abu mygtukus, kad juos užrakintumėte (I=Išjungta | T=leidžiamas tik Turbo režimas | V=Visiškas užrakinimas)"
|
||||||
"text2": [
|
},
|
||||||
"Temp.keitim.",
|
"MotionSensitivity": {
|
||||||
"trump.spust."
|
"displayText": "Judesio\njautrumas",
|
||||||
],
|
"description": "Judesio jautrumas (0=Išjungta | 1=Mažiausias | ... | 9=Didžiausias)"
|
||||||
"desc": "Temperatūros keitimo žingsnis trumpai spustėlėjus mygtuką"
|
},
|
||||||
},
|
"SleepTemperature": {
|
||||||
"TempChangeLongStep": {
|
"displayText": "Miego\ntemperat.",
|
||||||
"text2": [
|
"description": "Antgalio temperatūra miego režimu"
|
||||||
"Temp.keitim.",
|
},
|
||||||
"ilgas pasp."
|
"SleepTimeout": {
|
||||||
],
|
"displayText": "Miego\nlaikas",
|
||||||
"desc": "Temperatūros keitimo žingsnis ilgai paspaudus mygtuką"
|
"description": "Užmigimo laikas (sekundės | minutės)"
|
||||||
},
|
},
|
||||||
"LockingMode": {
|
"ShutdownTimeout": {
|
||||||
"text2": [
|
"displayText": "Išjungimo\nlaikas",
|
||||||
"Mygtukų",
|
"description": "Išjungimo laikas (minutės)"
|
||||||
"užraktas"
|
},
|
||||||
],
|
"HallEffSensitivity": {
|
||||||
"desc": "Lituodami, ilgai paspauskite abu mygtukus, kad juos užrakintumėte (I=Išjungta | T=leidžiamas tik Turbo režimas | V=Visiškas užrakinimas)"
|
"displayText": "Holo\njutiklis",
|
||||||
},
|
"description": "Holo jutiklio jautrumas nustatant miegą (0=Išjungta | 1=Mažiausias | ... | 9=Didžiausias)"
|
||||||
"MotionSensitivity": {
|
},
|
||||||
"text2": [
|
"TemperatureUnit": {
|
||||||
"Judesio",
|
"displayText": "Temperatūros\nvienetai",
|
||||||
"jautrumas"
|
"description": "Temperatūros vienetai (C=Celsijus | F=Farenheitas)"
|
||||||
],
|
},
|
||||||
"desc": "Judesio jautrumas (0=Išjungta | 1=Mažiausias | ... | 9=Didžiausias)"
|
"DisplayRotation": {
|
||||||
},
|
"displayText": "Ekrano\norientacija",
|
||||||
"SleepTemperature": {
|
"description": "Ekrano orientacija (D=Dešiniarankiams | K=Kairiarankiams | A=Automatinė)"
|
||||||
"text2": [
|
},
|
||||||
"Miego",
|
"CooldownBlink": {
|
||||||
"temperat."
|
"displayText": "Atvėsimo\nmirksėjimas",
|
||||||
],
|
"description": "Ar mirksėti temperatūrą ekrane kol vėstantis antgalis vis dar karštas?"
|
||||||
"desc": "Antgalio temperatūra miego režimu"
|
},
|
||||||
},
|
"ScrollingSpeed": {
|
||||||
"SleepTimeout": {
|
"displayText": "Aprašymo\ngreitis",
|
||||||
"text2": [
|
"description": "Greitis, kuriuo šis tekstas slenka"
|
||||||
"Miego",
|
},
|
||||||
"laikas"
|
"ReverseButtonTempChange": {
|
||||||
],
|
"displayText": "Sukeisti + -\nmygtukus?",
|
||||||
"desc": "Užmigimo laikas (sekundės | minutės)"
|
"description": "Sukeisti + - temperatūros keitimo mygtukus vietomis"
|
||||||
},
|
},
|
||||||
"ShutdownTimeout": {
|
"AnimSpeed": {
|
||||||
"text2": [
|
"displayText": "Animacijų\ngreitis",
|
||||||
"Išjungimo",
|
"description": "Paveiksliukų animacijų greitis meniu punktuose (I=Išjungtas | L=Lėtas | V=Vidutinis | G=Greitas)"
|
||||||
"laikas"
|
},
|
||||||
],
|
"AnimLoop": {
|
||||||
"desc": "Išjungimo laikas (minutės)"
|
"displayText": "Animacijų\npakartojimas",
|
||||||
},
|
"description": "Leidžia kartoti animacijas be sustojimo pagrindiniame meniu"
|
||||||
"HallEffSensitivity": {
|
},
|
||||||
"text2": [
|
"Brightness": {
|
||||||
"Holo",
|
"displayText": "Ekrano\nšviesumas",
|
||||||
"jutiklis"
|
"description": "Nustato OLED ekrano kontrastą/šviesumą."
|
||||||
],
|
},
|
||||||
"desc": "Holo jutiklio jautrumas nustatant miegą (0=Išjungta | 1=Mažiausias | ... | 9=Didžiausias)"
|
"ColourInversion": {
|
||||||
},
|
"displayText": "Ekrano\ninvertavimas",
|
||||||
"TemperatureUnit": {
|
"description": "Invertuoja OLED ekrano spalvas"
|
||||||
"text2": [
|
},
|
||||||
"Temperatūros",
|
"LOGOTime": {
|
||||||
"vienetai"
|
"displayText": "Boot logo\nduration",
|
||||||
],
|
"description": "Set boot logo duration (s=seconds)"
|
||||||
"desc": "Temperatūros vienetai (C=Celsijus | F=Farenheitas)"
|
},
|
||||||
},
|
"AdvancedIdle": {
|
||||||
"DisplayRotation": {
|
"displayText": "Detalus lau-\nkimo ekranas",
|
||||||
"text2": [
|
"description": "Ar rodyti papildomą informaciją mažesniu šriftu laukimo ekrane"
|
||||||
"Ekrano",
|
},
|
||||||
"orientacija"
|
"AdvancedSoldering": {
|
||||||
],
|
"displayText": "Detalus lita-\nvimo ekranas",
|
||||||
"desc": "Ekrano orientacija (D=Dešiniarankiams | K=Kairiarankiams | A=Automatinė)"
|
"description": "Ar rodyti išsamią informaciją lituojant"
|
||||||
},
|
},
|
||||||
"CooldownBlink": {
|
"PowerLimit": {
|
||||||
"text2": [
|
"displayText": "Galios\nriba",
|
||||||
"Atvėsimo",
|
"description": "Didžiausia galia, kurią gali naudoti lituoklis (Vatai)"
|
||||||
"mirksėjimas"
|
},
|
||||||
],
|
"CalibrateCJC": {
|
||||||
"desc": "Ar mirksėti temperatūrą ekrane kol vėstantis antgalis vis dar karštas?"
|
"displayText": "Calibrate CJC\nat next boot",
|
||||||
},
|
"description": "At next boot tip Cold Junction Compensation will be calibrated (not required if Delta T is < 5°C)"
|
||||||
"ScrollingSpeed": {
|
},
|
||||||
"text2": [
|
"VoltageCalibration": {
|
||||||
"Aprašymo",
|
"displayText": "Kalibruoti\nįvesties įtampą?",
|
||||||
"greitis"
|
"description": "Įvesties įtampos kalibravimas. Trumpai paspauskite, norėdami nustatyti, ilgai paspauskite, kad išeitumėte."
|
||||||
],
|
},
|
||||||
"desc": "Greitis, kuriuo šis tekstas slenka"
|
"PowerPulsePower": {
|
||||||
},
|
"displayText": "Galios\npulso W",
|
||||||
"ReverseButtonTempChange": {
|
"description": "Periodinis galios pulso intensyvumas maitinblokiui, neleidžiantis jam užmigti."
|
||||||
"text2": [
|
},
|
||||||
"Sukeisti + -",
|
"PowerPulseWait": {
|
||||||
"mygtukus?"
|
"displayText": "Galios pulso\ndažnumas",
|
||||||
],
|
"description": "Pasikartojantis laiko intervalas (x 2.5s), ties kuriuo kartojamas galios pulsas maitinblokiui, neleidžiantis jam užmigti"
|
||||||
"desc": "Sukeisti + - temperatūros keitimo mygtukus vietomis"
|
},
|
||||||
},
|
"PowerPulseDuration": {
|
||||||
"AnimSpeed": {
|
"displayText": "Galios pulso\ntrukmė",
|
||||||
"text2": [
|
"description": "Galios pulso aktyvioji trukmė (x 250ms)"
|
||||||
"Animacijų",
|
},
|
||||||
"greitis"
|
"SettingsReset": {
|
||||||
],
|
"displayText": "Atstatyti\nnustatymus?",
|
||||||
"desc": "Paveiksliukų animacijų greitis meniu punktuose (I=Išjungtas | L=Lėtas | V=Vidutinis | G=Greitas)"
|
"description": "Nustato nustatymus į numatytuosius"
|
||||||
},
|
},
|
||||||
"AnimLoop": {
|
"LanguageSwitch": {
|
||||||
"text2": [
|
"displayText": "Kalba:\n LT Lietuvių",
|
||||||
"Animacijų",
|
"description": ""
|
||||||
"pakartojimas"
|
}
|
||||||
],
|
}
|
||||||
"desc": "Leidžia kartoti animacijas be sustojimo pagrindiniame meniu"
|
|
||||||
},
|
|
||||||
"Brightness": {
|
|
||||||
"text2": [
|
|
||||||
"Ekrano",
|
|
||||||
"šviesumas"
|
|
||||||
],
|
|
||||||
"desc": "Nustato OLED ekrano kontrastą/šviesumą."
|
|
||||||
},
|
|
||||||
"ColourInversion": {
|
|
||||||
"text2": [
|
|
||||||
"Ekrano",
|
|
||||||
"invertavimas"
|
|
||||||
],
|
|
||||||
"desc": "Invertuoja OLED ekrano spalvas"
|
|
||||||
},
|
|
||||||
"LOGOTime": {
|
|
||||||
"text2": [
|
|
||||||
"Boot logo",
|
|
||||||
"duration"
|
|
||||||
],
|
|
||||||
"desc": "Set boot logo duration (s=seconds)"
|
|
||||||
},
|
|
||||||
"AdvancedIdle": {
|
|
||||||
"text2": [
|
|
||||||
"Detalus lau-",
|
|
||||||
"kimo ekranas"
|
|
||||||
],
|
|
||||||
"desc": "Ar rodyti papildomą informaciją mažesniu šriftu laukimo ekrane"
|
|
||||||
},
|
|
||||||
"AdvancedSoldering": {
|
|
||||||
"text2": [
|
|
||||||
"Detalus lita-",
|
|
||||||
"vimo ekranas"
|
|
||||||
],
|
|
||||||
"desc": "Ar rodyti išsamią informaciją lituojant"
|
|
||||||
},
|
|
||||||
"PowerLimit": {
|
|
||||||
"text2": [
|
|
||||||
"Galios",
|
|
||||||
"riba"
|
|
||||||
],
|
|
||||||
"desc": "Didžiausia galia, kurią gali naudoti lituoklis (Vatai)"
|
|
||||||
},
|
|
||||||
"CalibrateCJC": {
|
|
||||||
"text2": [
|
|
||||||
"Calibrate CJC",
|
|
||||||
"at next boot"
|
|
||||||
],
|
|
||||||
"desc": "At next boot tip Cold Junction Compensation will be calibrated (not required if Delta T is < 5°C)"
|
|
||||||
},
|
|
||||||
"VoltageCalibration": {
|
|
||||||
"text2": [
|
|
||||||
"Kalibruoti",
|
|
||||||
"įvesties įtampą?"
|
|
||||||
],
|
|
||||||
"desc": "Įvesties įtampos kalibravimas. Trumpai paspauskite, norėdami nustatyti, ilgai paspauskite, kad išeitumėte."
|
|
||||||
},
|
|
||||||
"PowerPulsePower": {
|
|
||||||
"text2": [
|
|
||||||
"Galios",
|
|
||||||
"pulso W"
|
|
||||||
],
|
|
||||||
"desc": "Periodinis galios pulso intensyvumas maitinblokiui, neleidžiantis jam užmigti."
|
|
||||||
},
|
|
||||||
"PowerPulseWait": {
|
|
||||||
"text2": [
|
|
||||||
"Galios pulso",
|
|
||||||
"dažnumas"
|
|
||||||
],
|
|
||||||
"desc": "Pasikartojantis laiko intervalas (x 2.5s), ties kuriuo kartojamas galios pulsas maitinblokiui, neleidžiantis jam užmigti"
|
|
||||||
},
|
|
||||||
"PowerPulseDuration": {
|
|
||||||
"text2": [
|
|
||||||
"Galios pulso",
|
|
||||||
"trukmė"
|
|
||||||
],
|
|
||||||
"desc": "Galios pulso aktyvioji trukmė (x 250ms)"
|
|
||||||
},
|
|
||||||
"SettingsReset": {
|
|
||||||
"text2": [
|
|
||||||
"Atstatyti",
|
|
||||||
"nustatymus?"
|
|
||||||
],
|
|
||||||
"desc": "Nustato nustatymus į numatytuosius"
|
|
||||||
},
|
|
||||||
"LanguageSwitch": {
|
|
||||||
"text2": [
|
|
||||||
"Kalba:",
|
|
||||||
" LT Lietuvių"
|
|
||||||
],
|
|
||||||
"desc": ""
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@@ -1,337 +1,243 @@
|
|||||||
{
|
{
|
||||||
"languageCode": "NB",
|
"languageCode": "NB",
|
||||||
"languageLocalName": "Norsk bokmål",
|
"languageLocalName": "Norsk bokmål",
|
||||||
"tempUnitFahrenheit": false,
|
"tempUnitFahrenheit": false,
|
||||||
"messages": {
|
"messagesWarn": {
|
||||||
"SettingsCalibrationWarning": "Before rebooting, make sure tip & handle are at room temperature!",
|
"CJCCalibrationDone": {
|
||||||
"CJCCalibrating": "calibrating",
|
"message": "Calibration\ndone!"
|
||||||
"SettingsResetWarning": "Er du sikker på at du vil tilbakestille til standardinnstillinger?",
|
},
|
||||||
"UVLOWarningString": "Lavspenn",
|
"ResetOKMessage": {
|
||||||
"UndervoltageString": "Underspenning",
|
"message": "Tilbakestilling OK"
|
||||||
"InputVoltageString": "Innspenn.: ",
|
},
|
||||||
"SleepingSimpleString": "Zzzz",
|
"SettingsResetMessage": {
|
||||||
"SleepingAdvancedString": "Dvale...",
|
"message": "Noen innstillinger\nble endret!"
|
||||||
"SleepingTipAdvancedString": "Spiss:",
|
},
|
||||||
"OffString": "Av",
|
"NoAccelerometerMessage": {
|
||||||
"DeviceFailedValidationWarning": "Enheten din er sannsynligvis en forfalskning!"
|
"message": "Ingen akselerometer\nfunnet!"
|
||||||
},
|
},
|
||||||
"messagesWarn": {
|
"NoPowerDeliveryMessage": {
|
||||||
"CJCCalibrationDone": [
|
"message": "Ingen USB-PD IC\nfunnet!"
|
||||||
"Calibration",
|
},
|
||||||
"done!"
|
"LockingKeysString": {
|
||||||
],
|
"message": "LÅST"
|
||||||
"ResetOKMessage": "Tilbakestilling OK",
|
},
|
||||||
"SettingsResetMessage": [
|
"UnlockingKeysString": {
|
||||||
"Noen innstillinger",
|
"message": "ÅPNET"
|
||||||
"ble endret!"
|
},
|
||||||
],
|
"WarningKeysLockedString": {
|
||||||
"NoAccelerometerMessage": [
|
"message": "!LÅST!"
|
||||||
"Ingen akselerometer",
|
},
|
||||||
"funnet!"
|
"WarningThermalRunaway": {
|
||||||
],
|
"message": "Termisk\nrømling"
|
||||||
"NoPowerDeliveryMessage": [
|
},
|
||||||
"Ingen USB-PD IC",
|
"SettingsCalibrationWarning": {
|
||||||
"funnet!"
|
"message": "Before rebooting, make sure tip & handle are at room temperature!"
|
||||||
],
|
},
|
||||||
"LockingKeysString": "LÅST",
|
"CJCCalibrating": {
|
||||||
"UnlockingKeysString": "ÅPNET",
|
"message": "calibrating"
|
||||||
"WarningKeysLockedString": "!LÅST!",
|
},
|
||||||
"WarningThermalRunaway": [
|
"SettingsResetWarning": {
|
||||||
"Termisk",
|
"message": "Er du sikker på at du vil tilbakestille til standardinnstillinger?"
|
||||||
"rømling"
|
},
|
||||||
]
|
"UVLOWarningString": {
|
||||||
},
|
"message": "Lavspenn"
|
||||||
"characters": {
|
},
|
||||||
"SettingRightChar": "H",
|
"UndervoltageString": {
|
||||||
"SettingLeftChar": "V",
|
"message": "Underspenning"
|
||||||
"SettingAutoChar": "A",
|
},
|
||||||
"SettingOffChar": "O",
|
"InputVoltageString": {
|
||||||
"SettingSlowChar": "S",
|
"message": "Innspenn.: "
|
||||||
"SettingMediumChar": "M",
|
},
|
||||||
"SettingFastChar": "F",
|
"SleepingSimpleString": {
|
||||||
"SettingStartNoneChar": "I",
|
"message": "Zzzz"
|
||||||
"SettingStartSolderingChar": "L",
|
},
|
||||||
"SettingStartSleepChar": "D",
|
"SleepingAdvancedString": {
|
||||||
"SettingStartSleepOffChar": "R",
|
"message": "Dvale..."
|
||||||
"SettingLockDisableChar": "D",
|
},
|
||||||
"SettingLockBoostChar": "B",
|
"SleepingTipAdvancedString": {
|
||||||
"SettingLockFullChar": "F"
|
"message": "Spiss:"
|
||||||
},
|
},
|
||||||
"menuGroups": {
|
"OffString": {
|
||||||
"PowerMenu": {
|
"message": "Av"
|
||||||
"text2": [
|
},
|
||||||
"Effekt-",
|
"DeviceFailedValidationWarning": {
|
||||||
"innst."
|
"message": "Enheten din er sannsynligvis en forfalskning!"
|
||||||
],
|
}
|
||||||
"desc": ""
|
},
|
||||||
},
|
"characters": {
|
||||||
"SolderingMenu": {
|
"SettingRightChar": "H",
|
||||||
"text2": [
|
"SettingLeftChar": "V",
|
||||||
"Lodde-",
|
"SettingAutoChar": "A",
|
||||||
"innst."
|
"SettingOffChar": "O",
|
||||||
],
|
"SettingSlowChar": "S",
|
||||||
"desc": ""
|
"SettingMediumChar": "M",
|
||||||
},
|
"SettingFastChar": "F",
|
||||||
"PowerSavingMenu": {
|
"SettingStartNoneChar": "I",
|
||||||
"text2": [
|
"SettingStartSolderingChar": "L",
|
||||||
"Dvale-",
|
"SettingStartSleepChar": "D",
|
||||||
"innst."
|
"SettingStartSleepOffChar": "R",
|
||||||
],
|
"SettingLockDisableChar": "D",
|
||||||
"desc": ""
|
"SettingLockBoostChar": "B",
|
||||||
},
|
"SettingLockFullChar": "F"
|
||||||
"UIMenu": {
|
},
|
||||||
"text2": [
|
"menuGroups": {
|
||||||
"Bruker-",
|
"PowerMenu": {
|
||||||
"grensesn."
|
"displayText": "Effekt-\ninnst.",
|
||||||
],
|
"description": ""
|
||||||
"desc": ""
|
},
|
||||||
},
|
"SolderingMenu": {
|
||||||
"AdvancedMenu": {
|
"displayText": "Lodde-\ninnst.",
|
||||||
"text2": [
|
"description": ""
|
||||||
"Avanserte",
|
},
|
||||||
"valg"
|
"PowerSavingMenu": {
|
||||||
],
|
"displayText": "Dvale-\ninnst.",
|
||||||
"desc": ""
|
"description": ""
|
||||||
}
|
},
|
||||||
},
|
"UIMenu": {
|
||||||
"menuOptions": {
|
"displayText": "Bruker-\ngrensesn.",
|
||||||
"DCInCutoff": {
|
"description": ""
|
||||||
"text2": [
|
},
|
||||||
"Kilde",
|
"AdvancedMenu": {
|
||||||
""
|
"displayText": "Avanserte\nvalg",
|
||||||
],
|
"description": ""
|
||||||
"desc": "Strømforsyning. Sett nedre spenning for automatisk nedstenging. (DC 10V) (S 3.3V per celle)"
|
}
|
||||||
},
|
},
|
||||||
"MinVolCell": {
|
"menuOptions": {
|
||||||
"text2": [
|
"DCInCutoff": {
|
||||||
"Minimum",
|
"displayText": "Kilde\n",
|
||||||
"spenning"
|
"description": "Strømforsyning. Sett nedre spenning for automatisk nedstenging. (DC 10V) (S 3.3V per celle)"
|
||||||
],
|
},
|
||||||
"desc": "Minimum tillatt spenning per celle (3S: 3 - 3.7V | 4-6S: 2.4 - 3.7V)"
|
"MinVolCell": {
|
||||||
},
|
"displayText": "Minimum\nspenning",
|
||||||
"QCMaxVoltage": {
|
"description": "Minimum tillatt spenning per celle (3S: 3 - 3.7V | 4-6S: 2.4 - 3.7V)"
|
||||||
"text2": [
|
},
|
||||||
"QC-",
|
"QCMaxVoltage": {
|
||||||
"spenning"
|
"displayText": "QC-\nspenning",
|
||||||
],
|
"description": "Maks QC-spenning bolten skal forhandle om"
|
||||||
"desc": "Maks QC-spenning bolten skal forhandle om"
|
},
|
||||||
},
|
"PDNegTimeout": {
|
||||||
"PDNegTimeout": {
|
"displayText": "PD-\ntidsavb.",
|
||||||
"text2": [
|
"description": "PD-forhandlingstidsavbrudd i steg på 100 ms for kompatibilitet med noen QC-ladere"
|
||||||
"PD-",
|
},
|
||||||
"tidsavb."
|
"BoostTemperature": {
|
||||||
],
|
"displayText": "KTmp\n",
|
||||||
"desc": "PD-forhandlingstidsavbrudd i steg på 100 ms for kompatibilitet med noen QC-ladere"
|
"description": "Temperatur i \"kraft-modus\""
|
||||||
},
|
},
|
||||||
"BoostTemperature": {
|
"AutoStart": {
|
||||||
"text2": [
|
"displayText": "AStart\n",
|
||||||
"KTmp",
|
"description": "Start automatisk med lodding når strøm kobles til. (I=Inaktiv | L=Lodding | D=Dvale | R=Dvale romtemperatur)"
|
||||||
""
|
},
|
||||||
],
|
"TempChangeShortStep": {
|
||||||
"desc": "Temperatur i \"kraft-modus\""
|
"displayText": "Temp-endring\nkort",
|
||||||
},
|
"description": "Hvor mye temperaturen skal endres ved kort trykk på knapp"
|
||||||
"AutoStart": {
|
},
|
||||||
"text2": [
|
"TempChangeLongStep": {
|
||||||
"AStart",
|
"displayText": "Temp-endring\nlang",
|
||||||
""
|
"description": "Hvor mye temperaturen skal endres ved langt trykk på knapp"
|
||||||
],
|
},
|
||||||
"desc": "Start automatisk med lodding når strøm kobles til. (I=Inaktiv | L=Lodding | D=Dvale | R=Dvale romtemperatur)"
|
"LockingMode": {
|
||||||
},
|
"displayText": "Tillat å låse\nknapper",
|
||||||
"TempChangeShortStep": {
|
"description": "Mens du lodder, hold nede begge knapper for å bytte mellom låsemodus (D=deaktiver | B=kun boost | F=full lås)"
|
||||||
"text2": [
|
},
|
||||||
"Temp-endring",
|
"MotionSensitivity": {
|
||||||
"kort"
|
"displayText": "BSensr\n",
|
||||||
],
|
"description": "Bevegelsesfølsomhet (0=Inaktiv | 1=Minst følsom | ... | 9=Mest følsom)"
|
||||||
"desc": "Hvor mye temperaturen skal endres ved kort trykk på knapp"
|
},
|
||||||
},
|
"SleepTemperature": {
|
||||||
"TempChangeLongStep": {
|
"displayText": "DTmp\n",
|
||||||
"text2": [
|
"description": "Dvaletemperatur (C)"
|
||||||
"Temp-endring",
|
},
|
||||||
"lang"
|
"SleepTimeout": {
|
||||||
],
|
"displayText": "DTid\n",
|
||||||
"desc": "Hvor mye temperaturen skal endres ved langt trykk på knapp"
|
"description": "Tid før dvale (Minutter | Sekunder)"
|
||||||
},
|
},
|
||||||
"LockingMode": {
|
"ShutdownTimeout": {
|
||||||
"text2": [
|
"displayText": "AvTid\n",
|
||||||
"Tillat å låse",
|
"description": "Tid før automatisk nedstenging (Minutter)"
|
||||||
"knapper"
|
},
|
||||||
],
|
"HallEffSensitivity": {
|
||||||
"desc": "Mens du lodder, hold nede begge knapper for å bytte mellom låsemodus (D=deaktiver | B=kun boost | F=full lås)"
|
"displayText": "Hall-sensor\nfølsomhet",
|
||||||
},
|
"description": "Sensitiviteten til Hall-effekt-sensoren for å detektere inaktivitet (0=Inaktiv | 1=Minst følsom | ... | 9=Mest følsom)"
|
||||||
"MotionSensitivity": {
|
},
|
||||||
"text2": [
|
"TemperatureUnit": {
|
||||||
"BSensr",
|
"displayText": "TmpEnh\n",
|
||||||
""
|
"description": "Temperaturskala (C=Celsius | F=Fahrenheit)"
|
||||||
],
|
},
|
||||||
"desc": "Bevegelsesfølsomhet (0=Inaktiv | 1=Minst følsom | ... | 9=Mest følsom)"
|
"DisplayRotation": {
|
||||||
},
|
"displayText": "SkRetn\n",
|
||||||
"SleepTemperature": {
|
"description": "Skjermretning (H=Høyrehendt | V=Venstrehendt | A=Automatisk)"
|
||||||
"text2": [
|
},
|
||||||
"DTmp",
|
"CooldownBlink": {
|
||||||
""
|
"displayText": "KjBlnk\n",
|
||||||
],
|
"description": "Blink temperaturen på skjermen mens spissen fortsatt er varm."
|
||||||
"desc": "Dvaletemperatur (C)"
|
},
|
||||||
},
|
"ScrollingSpeed": {
|
||||||
"SleepTimeout": {
|
"displayText": "RullHa\n",
|
||||||
"text2": [
|
"description": "Hastigheten på rulletekst"
|
||||||
"DTid",
|
},
|
||||||
""
|
"ReverseButtonTempChange": {
|
||||||
],
|
"displayText": "Bytt\n+ - kn.",
|
||||||
"desc": "Tid før dvale (Minutter | Sekunder)"
|
"description": "Bytt om på knappene for å stille temperatur"
|
||||||
},
|
},
|
||||||
"ShutdownTimeout": {
|
"AnimSpeed": {
|
||||||
"text2": [
|
"displayText": "Anim.\nhastighet",
|
||||||
"AvTid",
|
"description": "Hastigheten til animasjonene i menyen (O=off | S=slow | M=medium | F=fast)"
|
||||||
""
|
},
|
||||||
],
|
"AnimLoop": {
|
||||||
"desc": "Tid før automatisk nedstenging (Minutter)"
|
"displayText": "Anim.\nloop",
|
||||||
},
|
"description": "Loop ikon-animasjoner i hovedmenyen"
|
||||||
"HallEffSensitivity": {
|
},
|
||||||
"text2": [
|
"Brightness": {
|
||||||
"Hall-sensor",
|
"displayText": "Skjerm-\nlysstyrke",
|
||||||
"følsomhet"
|
"description": "Juster lysstyrken til OLED-skjermen"
|
||||||
],
|
},
|
||||||
"desc": "Sensitiviteten til Hall-effekt-sensoren for å detektere inaktivitet (0=Inaktiv | 1=Minst følsom | ... | 9=Mest følsom)"
|
"ColourInversion": {
|
||||||
},
|
"displayText": "Inverter\nskjerm",
|
||||||
"TemperatureUnit": {
|
"description": "Inverter fargene på OLED-skjermen"
|
||||||
"text2": [
|
},
|
||||||
"TmpEnh",
|
"LOGOTime": {
|
||||||
""
|
"displayText": "Oppstartlogo\nvarighet",
|
||||||
],
|
"description": "Setter varigheten til oppstartlogoen (s=sekunder)"
|
||||||
"desc": "Temperaturskala (C=Celsius | F=Fahrenheit)"
|
},
|
||||||
},
|
"AdvancedIdle": {
|
||||||
"DisplayRotation": {
|
"displayText": "AvDvSk\n",
|
||||||
"text2": [
|
"description": "Vis detaljert informasjon med liten skrift på dvaleskjermen."
|
||||||
"SkRetn",
|
},
|
||||||
""
|
"AdvancedSoldering": {
|
||||||
],
|
"displayText": "AvLdSk\n",
|
||||||
"desc": "Skjermretning (H=Høyrehendt | V=Venstrehendt | A=Automatisk)"
|
"description": "Vis detaljert informasjon ved lodding"
|
||||||
},
|
},
|
||||||
"CooldownBlink": {
|
"PowerLimit": {
|
||||||
"text2": [
|
"displayText": "Effekt-\ngrense",
|
||||||
"KjBlnk",
|
"description": "Maks effekt jernet kan bruke (W=watt)"
|
||||||
""
|
},
|
||||||
],
|
"CalibrateCJC": {
|
||||||
"desc": "Blink temperaturen på skjermen mens spissen fortsatt er varm."
|
"displayText": "TempKal?\n",
|
||||||
},
|
"description": "At next boot tip Cold Junction Compensation will be calibrated (not required if Delta T is < 5°C)"
|
||||||
"ScrollingSpeed": {
|
},
|
||||||
"text2": [
|
"VoltageCalibration": {
|
||||||
"RullHa",
|
"displayText": "KalSpIn?\n",
|
||||||
""
|
"description": "Kalibrer spenning. Knappene justerer. Langt trykk for å gå ut"
|
||||||
],
|
},
|
||||||
"desc": "Hastigheten på rulletekst"
|
"PowerPulsePower": {
|
||||||
},
|
"displayText": "Effekt-\npuls",
|
||||||
"ReverseButtonTempChange": {
|
"description": "Hvor høy effekt pulsen for å holde laderen våken skal ha (watt)"
|
||||||
"text2": [
|
},
|
||||||
"Bytt",
|
"PowerPulseWait": {
|
||||||
"+ - kn."
|
"displayText": "Effektpuls\nforsink.",
|
||||||
],
|
"description": "Forsinkelse før effektpulsen utløses (x 2.5s)"
|
||||||
"desc": "Bytt om på knappene for å stille temperatur"
|
},
|
||||||
},
|
"PowerPulseDuration": {
|
||||||
"AnimSpeed": {
|
"displayText": "Effektpuls\nvarighet",
|
||||||
"text2": [
|
"description": "Hvor lenge holde-våken-pulsen varer (x 250ms)"
|
||||||
"Anim.",
|
},
|
||||||
"hastighet"
|
"SettingsReset": {
|
||||||
],
|
"displayText": "TilbStl?\n",
|
||||||
"desc": "Hastigheten til animasjonene i menyen (O=off | S=slow | M=medium | F=fast)"
|
"description": "Tilbakestill alle innstillinger"
|
||||||
},
|
},
|
||||||
"AnimLoop": {
|
"LanguageSwitch": {
|
||||||
"text2": [
|
"displayText": "Språk:\n NB Norsk bm",
|
||||||
"Anim.",
|
"description": ""
|
||||||
"loop"
|
}
|
||||||
],
|
}
|
||||||
"desc": "Loop ikon-animasjoner i hovedmenyen"
|
|
||||||
},
|
|
||||||
"Brightness": {
|
|
||||||
"text2": [
|
|
||||||
"Skjerm-",
|
|
||||||
"lysstyrke"
|
|
||||||
],
|
|
||||||
"desc": "Juster lysstyrken til OLED-skjermen"
|
|
||||||
},
|
|
||||||
"ColourInversion": {
|
|
||||||
"text2": [
|
|
||||||
"Inverter",
|
|
||||||
"skjerm"
|
|
||||||
],
|
|
||||||
"desc": "Inverter fargene på OLED-skjermen"
|
|
||||||
},
|
|
||||||
"LOGOTime": {
|
|
||||||
"text2": [
|
|
||||||
"Oppstartlogo",
|
|
||||||
"varighet"
|
|
||||||
],
|
|
||||||
"desc": "Setter varigheten til oppstartlogoen (s=sekunder)"
|
|
||||||
},
|
|
||||||
"AdvancedIdle": {
|
|
||||||
"text2": [
|
|
||||||
"AvDvSk",
|
|
||||||
""
|
|
||||||
],
|
|
||||||
"desc": "Vis detaljert informasjon med liten skrift på dvaleskjermen."
|
|
||||||
},
|
|
||||||
"AdvancedSoldering": {
|
|
||||||
"text2": [
|
|
||||||
"AvLdSk",
|
|
||||||
""
|
|
||||||
],
|
|
||||||
"desc": "Vis detaljert informasjon ved lodding"
|
|
||||||
},
|
|
||||||
"PowerLimit": {
|
|
||||||
"text2": [
|
|
||||||
"Effekt-",
|
|
||||||
"grense"
|
|
||||||
],
|
|
||||||
"desc": "Maks effekt jernet kan bruke (W=watt)"
|
|
||||||
},
|
|
||||||
"CalibrateCJC": {
|
|
||||||
"text2": [
|
|
||||||
"TempKal?",
|
|
||||||
""
|
|
||||||
],
|
|
||||||
"desc": "At next boot tip Cold Junction Compensation will be calibrated (not required if Delta T is < 5°C)"
|
|
||||||
},
|
|
||||||
"VoltageCalibration": {
|
|
||||||
"text2": [
|
|
||||||
"KalSpIn?",
|
|
||||||
""
|
|
||||||
],
|
|
||||||
"desc": "Kalibrer spenning. Knappene justerer. Langt trykk for å gå ut"
|
|
||||||
},
|
|
||||||
"PowerPulsePower": {
|
|
||||||
"text2": [
|
|
||||||
"Effekt-",
|
|
||||||
"puls"
|
|
||||||
],
|
|
||||||
"desc": "Hvor høy effekt pulsen for å holde laderen våken skal ha (watt)"
|
|
||||||
},
|
|
||||||
"PowerPulseWait": {
|
|
||||||
"text2": [
|
|
||||||
"Effektpuls",
|
|
||||||
"forsink."
|
|
||||||
],
|
|
||||||
"desc": "Forsinkelse før effektpulsen utløses (x 2.5s)"
|
|
||||||
},
|
|
||||||
"PowerPulseDuration": {
|
|
||||||
"text2": [
|
|
||||||
"Effektpuls",
|
|
||||||
"varighet"
|
|
||||||
],
|
|
||||||
"desc": "Hvor lenge holde-våken-pulsen varer (x 250ms)"
|
|
||||||
},
|
|
||||||
"SettingsReset": {
|
|
||||||
"text2": [
|
|
||||||
"TilbStl?",
|
|
||||||
""
|
|
||||||
],
|
|
||||||
"desc": "Tilbakestill alle innstillinger"
|
|
||||||
},
|
|
||||||
"LanguageSwitch": {
|
|
||||||
"text2": [
|
|
||||||
"Språk:",
|
|
||||||
" NB Norsk bm"
|
|
||||||
],
|
|
||||||
"desc": ""
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@@ -1,337 +1,243 @@
|
|||||||
{
|
{
|
||||||
"languageCode": "NL",
|
"languageCode": "NL",
|
||||||
"languageLocalName": "Nederlands",
|
"languageLocalName": "Nederlands",
|
||||||
"tempUnitFahrenheit": false,
|
"tempUnitFahrenheit": false,
|
||||||
"messages": {
|
"messagesWarn": {
|
||||||
"SettingsCalibrationWarning": "Before rebooting, make sure tip & handle are at room temperature!",
|
"CJCCalibrationDone": {
|
||||||
"CJCCalibrating": "calibrating",
|
"message": "Calibration\ndone!"
|
||||||
"SettingsResetWarning": "Weet je zeker dat je de fabrieksinstellingen terug wilt zetten?",
|
},
|
||||||
"UVLOWarningString": "DC Laag",
|
"ResetOKMessage": {
|
||||||
"UndervoltageString": "Onderspanning",
|
"message": "Reset OK"
|
||||||
"InputVoltageString": "Voeding V: ",
|
},
|
||||||
"SleepingSimpleString": "Zzzz",
|
"SettingsResetMessage": {
|
||||||
"SleepingAdvancedString": "Slaapstand...",
|
"message": "Instellingen\nzijn gereset!"
|
||||||
"SleepingTipAdvancedString": "Punt:",
|
},
|
||||||
"OffString": "Uit",
|
"NoAccelerometerMessage": {
|
||||||
"DeviceFailedValidationWarning": "Jouw toestel is wellicht een namaak-versie!"
|
"message": "Geen accelerometer\ngedetecteerd!"
|
||||||
},
|
},
|
||||||
"messagesWarn": {
|
"NoPowerDeliveryMessage": {
|
||||||
"CJCCalibrationDone": [
|
"message": "Geen USB-PD IC \ngedetecteerd!"
|
||||||
"Calibration",
|
},
|
||||||
"done!"
|
"LockingKeysString": {
|
||||||
],
|
"message": "GEBLOKKEERD"
|
||||||
"ResetOKMessage": "Reset OK",
|
},
|
||||||
"SettingsResetMessage": [
|
"UnlockingKeysString": {
|
||||||
"Instellingen",
|
"message": "GEDEBLOKKEERD"
|
||||||
"zijn gereset!"
|
},
|
||||||
],
|
"WarningKeysLockedString": {
|
||||||
"NoAccelerometerMessage": [
|
"message": "!GEBLOKKEERD!"
|
||||||
"Geen accelerometer",
|
},
|
||||||
"gedetecteerd!"
|
"WarningThermalRunaway": {
|
||||||
],
|
"message": "Verwarming\nOncontroleerbaar"
|
||||||
"NoPowerDeliveryMessage": [
|
},
|
||||||
"Geen USB-PD IC ",
|
"SettingsCalibrationWarning": {
|
||||||
"gedetecteerd!"
|
"message": "Before rebooting, make sure tip & handle are at room temperature!"
|
||||||
],
|
},
|
||||||
"LockingKeysString": "GEBLOKKEERD",
|
"CJCCalibrating": {
|
||||||
"UnlockingKeysString": "GEDEBLOKKEERD",
|
"message": "calibrating"
|
||||||
"WarningKeysLockedString": "!GEBLOKKEERD!",
|
},
|
||||||
"WarningThermalRunaway": [
|
"SettingsResetWarning": {
|
||||||
"Verwarming",
|
"message": "Weet je zeker dat je de fabrieksinstellingen terug wilt zetten?"
|
||||||
"Oncontroleerbaar"
|
},
|
||||||
]
|
"UVLOWarningString": {
|
||||||
},
|
"message": "DC Laag"
|
||||||
"characters": {
|
},
|
||||||
"SettingRightChar": "R",
|
"UndervoltageString": {
|
||||||
"SettingLeftChar": "L",
|
"message": "Onderspanning"
|
||||||
"SettingAutoChar": "A",
|
},
|
||||||
"SettingOffChar": "U",
|
"InputVoltageString": {
|
||||||
"SettingSlowChar": "L",
|
"message": "Voeding V: "
|
||||||
"SettingMediumChar": "G",
|
},
|
||||||
"SettingFastChar": "S",
|
"SleepingSimpleString": {
|
||||||
"SettingStartNoneChar": "U",
|
"message": "Zzzz"
|
||||||
"SettingStartSolderingChar": "G",
|
},
|
||||||
"SettingStartSleepChar": "S",
|
"SleepingAdvancedString": {
|
||||||
"SettingStartSleepOffChar": "B",
|
"message": "Slaapstand..."
|
||||||
"SettingLockDisableChar": "U",
|
},
|
||||||
"SettingLockBoostChar": "B",
|
"SleepingTipAdvancedString": {
|
||||||
"SettingLockFullChar": "V"
|
"message": "Punt:"
|
||||||
},
|
},
|
||||||
"menuGroups": {
|
"OffString": {
|
||||||
"PowerMenu": {
|
"message": "Uit"
|
||||||
"text2": [
|
},
|
||||||
"Voeding",
|
"DeviceFailedValidationWarning": {
|
||||||
"instellingen"
|
"message": "Jouw toestel is wellicht een namaak-versie!"
|
||||||
],
|
}
|
||||||
"desc": ""
|
},
|
||||||
},
|
"characters": {
|
||||||
"SolderingMenu": {
|
"SettingRightChar": "R",
|
||||||
"text2": [
|
"SettingLeftChar": "L",
|
||||||
"Soldeer",
|
"SettingAutoChar": "A",
|
||||||
"instellingen"
|
"SettingOffChar": "U",
|
||||||
],
|
"SettingSlowChar": "L",
|
||||||
"desc": ""
|
"SettingMediumChar": "G",
|
||||||
},
|
"SettingFastChar": "S",
|
||||||
"PowerSavingMenu": {
|
"SettingStartNoneChar": "U",
|
||||||
"text2": [
|
"SettingStartSolderingChar": "G",
|
||||||
"Slaap",
|
"SettingStartSleepChar": "S",
|
||||||
"Modes"
|
"SettingStartSleepOffChar": "B",
|
||||||
],
|
"SettingLockDisableChar": "U",
|
||||||
"desc": ""
|
"SettingLockBoostChar": "B",
|
||||||
},
|
"SettingLockFullChar": "V"
|
||||||
"UIMenu": {
|
},
|
||||||
"text2": [
|
"menuGroups": {
|
||||||
"Weergave",
|
"PowerMenu": {
|
||||||
"instellingen"
|
"displayText": "Voeding\ninstellingen",
|
||||||
],
|
"description": ""
|
||||||
"desc": ""
|
},
|
||||||
},
|
"SolderingMenu": {
|
||||||
"AdvancedMenu": {
|
"displayText": "Soldeer\ninstellingen",
|
||||||
"text2": [
|
"description": ""
|
||||||
"Geavanceerde",
|
},
|
||||||
"instellingen"
|
"PowerSavingMenu": {
|
||||||
],
|
"displayText": "Slaap\nModes",
|
||||||
"desc": ""
|
"description": ""
|
||||||
}
|
},
|
||||||
},
|
"UIMenu": {
|
||||||
"menuOptions": {
|
"displayText": "Weergave\ninstellingen",
|
||||||
"DCInCutoff": {
|
"description": ""
|
||||||
"text2": [
|
},
|
||||||
"Spannings-",
|
"AdvancedMenu": {
|
||||||
"bron"
|
"displayText": "Geavanceerde\ninstellingen",
|
||||||
],
|
"description": ""
|
||||||
"desc": "Spanningsbron. Stelt drempelspanning in. (DC 10V) (S 3.3V per cel)"
|
}
|
||||||
},
|
},
|
||||||
"MinVolCell": {
|
"menuOptions": {
|
||||||
"text2": [
|
"DCInCutoff": {
|
||||||
"Minimum",
|
"displayText": "Spannings-\nbron",
|
||||||
"voltage"
|
"description": "Spanningsbron. Stelt drempelspanning in. (DC 10V) (S 3.3V per cel)"
|
||||||
],
|
},
|
||||||
"desc": "Minimum toegestaan voltage per cell (3S: 3 - 3.7V | 4-6S: 2.4 - 3.7V)"
|
"MinVolCell": {
|
||||||
},
|
"displayText": "Minimum\nvoltage",
|
||||||
"QCMaxVoltage": {
|
"description": "Minimum toegestaan voltage per cell (3S: 3 - 3.7V | 4-6S: 2.4 - 3.7V)"
|
||||||
"text2": [
|
},
|
||||||
"QC",
|
"QCMaxVoltage": {
|
||||||
"Voltage"
|
"displayText": "QC\nVoltage",
|
||||||
],
|
"description": "Maximaal QC voltage dat gevraagd mag worden"
|
||||||
"desc": "Maximaal QC voltage dat gevraagd mag worden"
|
},
|
||||||
},
|
"PDNegTimeout": {
|
||||||
"PDNegTimeout": {
|
"displayText": "PD\ntimeout",
|
||||||
"text2": [
|
"description": "PD afstemmingsduur in stappen van 100ms (voor compatibiliteit met sommige QC laders)"
|
||||||
"PD",
|
},
|
||||||
"timeout"
|
"BoostTemperature": {
|
||||||
],
|
"displayText": "Boost\ntemp",
|
||||||
"desc": "PD afstemmingsduur in stappen van 100ms (voor compatibiliteit met sommige QC laders)"
|
"description": "Punt temperatuur in boostmode"
|
||||||
},
|
},
|
||||||
"BoostTemperature": {
|
"AutoStart": {
|
||||||
"text2": [
|
"displayText": "Opstart\ngedrag",
|
||||||
"Boost",
|
"description": "Gedrag bij opstarten (U=Uit | G=Gebruiks-temperatuur | S=Slaapstand-temperatuur tot beweging | B=Uit tot beweging)"
|
||||||
"temp"
|
},
|
||||||
],
|
"TempChangeShortStep": {
|
||||||
"desc": "Punt temperatuur in boostmode"
|
"displayText": "Temp veranderen\nkort",
|
||||||
},
|
"description": "Temperatuur verandering bij kort drukken"
|
||||||
"AutoStart": {
|
},
|
||||||
"text2": [
|
"TempChangeLongStep": {
|
||||||
"Opstart",
|
"displayText": "Temp veranderen\nlang",
|
||||||
"gedrag"
|
"description": "Temperatuur verandering bij lang drukken"
|
||||||
],
|
},
|
||||||
"desc": "Gedrag bij opstarten (U=Uit | G=Gebruiks-temperatuur | S=Slaapstand-temperatuur tot beweging | B=Uit tot beweging)"
|
"LockingMode": {
|
||||||
},
|
"displayText": "Knopblokkering\ninschakelen",
|
||||||
"TempChangeShortStep": {
|
"description": "Tijdens solderen lang op beide knoppen drukken blokkeert de knoppen (U=Uit | B=Alleen boost mode | V=Volledig blokkeren)"
|
||||||
"text2": [
|
},
|
||||||
"Temp veranderen",
|
"MotionSensitivity": {
|
||||||
"kort"
|
"displayText": "Bewegings-\ngevoeligheid",
|
||||||
],
|
"description": "Bewegingsgevoeligheid (0=uit | 1=minst gevoelig | ... | 9=meest gevoelig)"
|
||||||
"desc": "Temperatuur verandering bij kort drukken"
|
},
|
||||||
},
|
"SleepTemperature": {
|
||||||
"TempChangeLongStep": {
|
"displayText": "Slaap\ntemp",
|
||||||
"text2": [
|
"description": "Punt temperatuur in slaapstand"
|
||||||
"Temp veranderen",
|
},
|
||||||
"lang"
|
"SleepTimeout": {
|
||||||
],
|
"displayText": "Slaap\ntime-out",
|
||||||
"desc": "Temperatuur verandering bij lang drukken"
|
"description": "Tijd voordat slaapmodus wordt geactiveerd (S=seconden | M=minuten)"
|
||||||
},
|
},
|
||||||
"LockingMode": {
|
"ShutdownTimeout": {
|
||||||
"text2": [
|
"displayText": "Uitschakel\ntime-out",
|
||||||
"Knopblokkering",
|
"description": "Tijd voordat soldeerbout automatisch uitschakelt (M=minuten)"
|
||||||
"inschakelen"
|
},
|
||||||
],
|
"HallEffSensitivity": {
|
||||||
"desc": "Tijdens solderen lang op beide knoppen drukken blokkeert de knoppen (U=Uit | B=Alleen boost mode | V=Volledig blokkeren)"
|
"displayText": "Hall sensor\ngevoeligheid",
|
||||||
},
|
"description": "Gevoeligheid van de Hall effect sensor om naar slaapmodus te gaan (0=uit | 1=minst gevoelig | ... | 9=meest gevoelig)"
|
||||||
"MotionSensitivity": {
|
},
|
||||||
"text2": [
|
"TemperatureUnit": {
|
||||||
"Bewegings-",
|
"displayText": "Temperatuur\neenheid",
|
||||||
"gevoeligheid"
|
"description": "Temperatuureenheid (C=Celsius | F=Fahrenheit)"
|
||||||
],
|
},
|
||||||
"desc": "Bewegingsgevoeligheid (0=uit | 1=minst gevoelig | ... | 9=meest gevoelig)"
|
"DisplayRotation": {
|
||||||
},
|
"displayText": "Scherm-\noriëntatie",
|
||||||
"SleepTemperature": {
|
"description": "Schermoriëntatie (R=Rechtshandig | L=Linkshandig | A=Automatisch)"
|
||||||
"text2": [
|
},
|
||||||
"Slaap",
|
"CooldownBlink": {
|
||||||
"temp"
|
"displayText": "Afkoel\nflitsen",
|
||||||
],
|
"description": "Temperatuur laten flitsen in het hoofdmenu zo lang de punt nog warm is"
|
||||||
"desc": "Punt temperatuur in slaapstand"
|
},
|
||||||
},
|
"ScrollingSpeed": {
|
||||||
"SleepTimeout": {
|
"displayText": "Scroll\nsnelheid",
|
||||||
"text2": [
|
"description": "Snelheid waarmee de tekst scrolt (S=Snel | L=Langzaam)"
|
||||||
"Slaap",
|
},
|
||||||
"time-out"
|
"ReverseButtonTempChange": {
|
||||||
],
|
"displayText": "Draai\n+ - knoppen om",
|
||||||
"desc": "Tijd voordat slaapmodus wordt geactiveerd (S=seconden | M=minuten)"
|
"description": "Keer de +- knoppen van de temperatuurregeling om"
|
||||||
},
|
},
|
||||||
"ShutdownTimeout": {
|
"AnimSpeed": {
|
||||||
"text2": [
|
"displayText": "Animatie\nsnelheid",
|
||||||
"Uitschakel",
|
"description": "Tempo van de icoon animaties in het hoofdmenu (U=uit | L=langzaam | G=gemiddeld | S=snel)"
|
||||||
"time-out"
|
},
|
||||||
],
|
"AnimLoop": {
|
||||||
"desc": "Tijd voordat soldeerbout automatisch uitschakelt (M=minuten)"
|
"displayText": "Animatie\nherhaling",
|
||||||
},
|
"description": "Herhaal icoon animaties in hoofdmenu"
|
||||||
"HallEffSensitivity": {
|
},
|
||||||
"text2": [
|
"Brightness": {
|
||||||
"Hall sensor",
|
"displayText": "Scherm\nhelderheid",
|
||||||
"gevoeligheid"
|
"description": "Pas helderheid van het OLED scherm aan"
|
||||||
],
|
},
|
||||||
"desc": "Gevoeligheid van de Hall effect sensor om naar slaapmodus te gaan (0=uit | 1=minst gevoelig | ... | 9=meest gevoelig)"
|
"ColourInversion": {
|
||||||
},
|
"displayText": "Inverteer\nscherm",
|
||||||
"TemperatureUnit": {
|
"description": "Inverteer de kleuren van het OLED scherm"
|
||||||
"text2": [
|
},
|
||||||
"Temperatuur",
|
"LOGOTime": {
|
||||||
"eenheid"
|
"displayText": "Opstart logo\nduur",
|
||||||
],
|
"description": "Stelt de weergaveduur van het opstartlogo in (s=seconden)"
|
||||||
"desc": "Temperatuureenheid (C=Celsius | F=Fahrenheit)"
|
},
|
||||||
},
|
"AdvancedIdle": {
|
||||||
"DisplayRotation": {
|
"displayText": "Gedetailleerd\nstartscherm",
|
||||||
"text2": [
|
"description": "Gedetailleerde informatie weergeven in een kleine letters op het startscherm."
|
||||||
"Scherm-",
|
},
|
||||||
"oriëntatie"
|
"AdvancedSoldering": {
|
||||||
],
|
"displayText": "Gedetailleerd\nsoldeerscherm",
|
||||||
"desc": "Schermoriëntatie (R=Rechtshandig | L=Linkshandig | A=Automatisch)"
|
"description": "Gedetailleerde informatie weergeven in een kleiner lettertype op het soldeerscherm"
|
||||||
},
|
},
|
||||||
"CooldownBlink": {
|
"PowerLimit": {
|
||||||
"text2": [
|
"displayText": "Vermogen\nlimiet",
|
||||||
"Afkoel",
|
"description": "Maximaal vermogen (W=Watt)"
|
||||||
"flitsen"
|
},
|
||||||
],
|
"CalibrateCJC": {
|
||||||
"desc": "Temperatuur laten flitsen in het hoofdmenu zo lang de punt nog warm is"
|
"displayText": "Calibrate CJC\nat next boot",
|
||||||
},
|
"description": "At next boot tip Cold Junction Compensation will be calibrated (not required if Delta T is < 5°C)"
|
||||||
"ScrollingSpeed": {
|
},
|
||||||
"text2": [
|
"VoltageCalibration": {
|
||||||
"Scroll",
|
"displayText": "Kalibreer\ninput-voltage?",
|
||||||
"snelheid"
|
"description": "Start VIN Kalibratie (druk lang om te sluiten)"
|
||||||
],
|
},
|
||||||
"desc": "Snelheid waarmee de tekst scrolt (S=Snel | L=Langzaam)"
|
"PowerPulsePower": {
|
||||||
},
|
"displayText": "Stroom\nPuls",
|
||||||
"ReverseButtonTempChange": {
|
"description": "Intensiteit van stroompuls om voeding aan te houden (watt)"
|
||||||
"text2": [
|
},
|
||||||
"Draai",
|
"PowerPulseWait": {
|
||||||
"+ - knoppen om"
|
"displayText": "Stroompuls\ninterval",
|
||||||
],
|
"description": "Tijdsduur tussen voeding wakker-blijf-pulsen (x 2.5s)"
|
||||||
"desc": "Keer de +- knoppen van de temperatuurregeling om"
|
},
|
||||||
},
|
"PowerPulseDuration": {
|
||||||
"AnimSpeed": {
|
"displayText": "Power pulse\nduur",
|
||||||
"text2": [
|
"description": "Duur van voeding-wakker-blijf-pulsen (x 250ms)"
|
||||||
"Animatie",
|
},
|
||||||
"snelheid"
|
"SettingsReset": {
|
||||||
],
|
"displayText": "Instellingen\nresetten?",
|
||||||
"desc": "Tempo van de icoon animaties in het hoofdmenu (U=uit | L=langzaam | G=gemiddeld | S=snel)"
|
"description": "Alle instellingen terugzetten naar fabrieksinstellingen"
|
||||||
},
|
},
|
||||||
"AnimLoop": {
|
"LanguageSwitch": {
|
||||||
"text2": [
|
"displayText": "Taal:\n NL Nederlands",
|
||||||
"Animatie",
|
"description": ""
|
||||||
"herhaling"
|
}
|
||||||
],
|
}
|
||||||
"desc": "Herhaal icoon animaties in hoofdmenu"
|
|
||||||
},
|
|
||||||
"Brightness": {
|
|
||||||
"text2": [
|
|
||||||
"Scherm",
|
|
||||||
"helderheid"
|
|
||||||
],
|
|
||||||
"desc": "Pas helderheid van het OLED scherm aan"
|
|
||||||
},
|
|
||||||
"ColourInversion": {
|
|
||||||
"text2": [
|
|
||||||
"Inverteer",
|
|
||||||
"scherm"
|
|
||||||
],
|
|
||||||
"desc": "Inverteer de kleuren van het OLED scherm"
|
|
||||||
},
|
|
||||||
"LOGOTime": {
|
|
||||||
"text2": [
|
|
||||||
"Opstart logo",
|
|
||||||
"duur"
|
|
||||||
],
|
|
||||||
"desc": "Stelt de weergaveduur van het opstartlogo in (s=seconden)"
|
|
||||||
},
|
|
||||||
"AdvancedIdle": {
|
|
||||||
"text2": [
|
|
||||||
"Gedetailleerd",
|
|
||||||
"startscherm"
|
|
||||||
],
|
|
||||||
"desc": "Gedetailleerde informatie weergeven in een kleine letters op het startscherm."
|
|
||||||
},
|
|
||||||
"AdvancedSoldering": {
|
|
||||||
"text2": [
|
|
||||||
"Gedetailleerd",
|
|
||||||
"soldeerscherm"
|
|
||||||
],
|
|
||||||
"desc": "Gedetailleerde informatie weergeven in een kleiner lettertype op het soldeerscherm"
|
|
||||||
},
|
|
||||||
"PowerLimit": {
|
|
||||||
"text2": [
|
|
||||||
"Vermogen",
|
|
||||||
"limiet"
|
|
||||||
],
|
|
||||||
"desc": "Maximaal vermogen (W=Watt)"
|
|
||||||
},
|
|
||||||
"CalibrateCJC": {
|
|
||||||
"text2": [
|
|
||||||
"Calibrate CJC",
|
|
||||||
"at next boot"
|
|
||||||
],
|
|
||||||
"desc": "At next boot tip Cold Junction Compensation will be calibrated (not required if Delta T is < 5°C)"
|
|
||||||
},
|
|
||||||
"VoltageCalibration": {
|
|
||||||
"text2": [
|
|
||||||
"Kalibreer",
|
|
||||||
"input-voltage?"
|
|
||||||
],
|
|
||||||
"desc": "Start VIN Kalibratie (druk lang om te sluiten)"
|
|
||||||
},
|
|
||||||
"PowerPulsePower": {
|
|
||||||
"text2": [
|
|
||||||
"Stroom",
|
|
||||||
"Puls"
|
|
||||||
],
|
|
||||||
"desc": "Intensiteit van stroompuls om voeding aan te houden (watt)"
|
|
||||||
},
|
|
||||||
"PowerPulseWait": {
|
|
||||||
"text2": [
|
|
||||||
"Stroompuls",
|
|
||||||
"interval"
|
|
||||||
],
|
|
||||||
"desc": "Tijdsduur tussen voeding wakker-blijf-pulsen (x 2.5s)"
|
|
||||||
},
|
|
||||||
"PowerPulseDuration": {
|
|
||||||
"text2": [
|
|
||||||
"Power pulse",
|
|
||||||
"duur"
|
|
||||||
],
|
|
||||||
"desc": "Duur van voeding-wakker-blijf-pulsen (x 250ms)"
|
|
||||||
},
|
|
||||||
"SettingsReset": {
|
|
||||||
"text2": [
|
|
||||||
"Instellingen",
|
|
||||||
"resetten?"
|
|
||||||
],
|
|
||||||
"desc": "Alle instellingen terugzetten naar fabrieksinstellingen"
|
|
||||||
},
|
|
||||||
"LanguageSwitch": {
|
|
||||||
"text2": [
|
|
||||||
"Taal:",
|
|
||||||
" NL Nederlands"
|
|
||||||
],
|
|
||||||
"desc": ""
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@@ -1,337 +1,243 @@
|
|||||||
{
|
{
|
||||||
"languageCode": "NL_BE",
|
"languageCode": "NL_BE",
|
||||||
"languageLocalName": "Vlaams",
|
"languageLocalName": "Vlaams",
|
||||||
"tempUnitFahrenheit": false,
|
"tempUnitFahrenheit": false,
|
||||||
"messages": {
|
"messagesWarn": {
|
||||||
"SettingsCalibrationWarning": "Before rebooting, make sure tip & handle are at room temperature!",
|
"CJCCalibrationDone": {
|
||||||
"CJCCalibrating": "calibrating",
|
"message": "Calibration\ndone!"
|
||||||
"SettingsResetWarning": "Ben je zeker dat je alle standaardwaarden wil resetten?",
|
},
|
||||||
"UVLOWarningString": "Voedingsspanning LAAG",
|
"ResetOKMessage": {
|
||||||
"UndervoltageString": "Onderspanning",
|
"message": "Reset OK"
|
||||||
"InputVoltageString": "Voedingsspanning: ",
|
},
|
||||||
"SleepingSimpleString": "Zzz ",
|
"SettingsResetMessage": {
|
||||||
"SleepingAdvancedString": "Slaapstand...",
|
"message": "Certain settings\nwere changed!"
|
||||||
"SleepingTipAdvancedString": "Punt:",
|
},
|
||||||
"OffString": "Uit",
|
"NoAccelerometerMessage": {
|
||||||
"DeviceFailedValidationWarning": "Your device is most likely a counterfeit!"
|
"message": "No accelerometer\ndetected!"
|
||||||
},
|
},
|
||||||
"messagesWarn": {
|
"NoPowerDeliveryMessage": {
|
||||||
"CJCCalibrationDone": [
|
"message": "No USB-PD IC\ndetected!"
|
||||||
"Calibration",
|
},
|
||||||
"done!"
|
"LockingKeysString": {
|
||||||
],
|
"message": "LOCKED"
|
||||||
"ResetOKMessage": "Reset OK",
|
},
|
||||||
"SettingsResetMessage": [
|
"UnlockingKeysString": {
|
||||||
"Certain settings",
|
"message": "UNLOCKED"
|
||||||
"were changed!"
|
},
|
||||||
],
|
"WarningKeysLockedString": {
|
||||||
"NoAccelerometerMessage": [
|
"message": "!LOCKED!"
|
||||||
"No accelerometer",
|
},
|
||||||
"detected!"
|
"WarningThermalRunaway": {
|
||||||
],
|
"message": "Thermal\nRunaway"
|
||||||
"NoPowerDeliveryMessage": [
|
},
|
||||||
"No USB-PD IC",
|
"SettingsCalibrationWarning": {
|
||||||
"detected!"
|
"message": "Before rebooting, make sure tip & handle are at room temperature!"
|
||||||
],
|
},
|
||||||
"LockingKeysString": "LOCKED",
|
"CJCCalibrating": {
|
||||||
"UnlockingKeysString": "UNLOCKED",
|
"message": "calibrating"
|
||||||
"WarningKeysLockedString": "!LOCKED!",
|
},
|
||||||
"WarningThermalRunaway": [
|
"SettingsResetWarning": {
|
||||||
"Thermal",
|
"message": "Ben je zeker dat je alle standaardwaarden wil resetten?"
|
||||||
"Runaway"
|
},
|
||||||
]
|
"UVLOWarningString": {
|
||||||
},
|
"message": "Voedingsspanning LAAG"
|
||||||
"characters": {
|
},
|
||||||
"SettingRightChar": "R",
|
"UndervoltageString": {
|
||||||
"SettingLeftChar": "L",
|
"message": "Onderspanning"
|
||||||
"SettingAutoChar": "A",
|
},
|
||||||
"SettingOffChar": "O",
|
"InputVoltageString": {
|
||||||
"SettingSlowChar": "T",
|
"message": "Voedingsspanning: "
|
||||||
"SettingMediumChar": "M",
|
},
|
||||||
"SettingFastChar": "S",
|
"SleepingSimpleString": {
|
||||||
"SettingStartNoneChar": "F",
|
"message": "Zzz "
|
||||||
"SettingStartSolderingChar": "T",
|
},
|
||||||
"SettingStartSleepChar": "S",
|
"SleepingAdvancedString": {
|
||||||
"SettingStartSleepOffChar": "K",
|
"message": "Slaapstand..."
|
||||||
"SettingLockDisableChar": "D",
|
},
|
||||||
"SettingLockBoostChar": "B",
|
"SleepingTipAdvancedString": {
|
||||||
"SettingLockFullChar": "F"
|
"message": "Punt:"
|
||||||
},
|
},
|
||||||
"menuGroups": {
|
"OffString": {
|
||||||
"PowerMenu": {
|
"message": "Uit"
|
||||||
"text2": [
|
},
|
||||||
"Power",
|
"DeviceFailedValidationWarning": {
|
||||||
"settings"
|
"message": "Your device is most likely a counterfeit!"
|
||||||
],
|
}
|
||||||
"desc": ""
|
},
|
||||||
},
|
"characters": {
|
||||||
"SolderingMenu": {
|
"SettingRightChar": "R",
|
||||||
"text2": [
|
"SettingLeftChar": "L",
|
||||||
"Soldeer",
|
"SettingAutoChar": "A",
|
||||||
"Instellingen"
|
"SettingOffChar": "O",
|
||||||
],
|
"SettingSlowChar": "T",
|
||||||
"desc": ""
|
"SettingMediumChar": "M",
|
||||||
},
|
"SettingFastChar": "S",
|
||||||
"PowerSavingMenu": {
|
"SettingStartNoneChar": "F",
|
||||||
"text2": [
|
"SettingStartSolderingChar": "T",
|
||||||
"Slaap",
|
"SettingStartSleepChar": "S",
|
||||||
"standen"
|
"SettingStartSleepOffChar": "K",
|
||||||
],
|
"SettingLockDisableChar": "D",
|
||||||
"desc": ""
|
"SettingLockBoostChar": "B",
|
||||||
},
|
"SettingLockFullChar": "F"
|
||||||
"UIMenu": {
|
},
|
||||||
"text2": [
|
"menuGroups": {
|
||||||
"Gebruikers-",
|
"PowerMenu": {
|
||||||
"Interface"
|
"displayText": "Power\nsettings",
|
||||||
],
|
"description": ""
|
||||||
"desc": ""
|
},
|
||||||
},
|
"SolderingMenu": {
|
||||||
"AdvancedMenu": {
|
"displayText": "Soldeer\nInstellingen",
|
||||||
"text2": [
|
"description": ""
|
||||||
"Gevorderde",
|
},
|
||||||
"Instellingen"
|
"PowerSavingMenu": {
|
||||||
],
|
"displayText": "Slaap\nstanden",
|
||||||
"desc": ""
|
"description": ""
|
||||||
}
|
},
|
||||||
},
|
"UIMenu": {
|
||||||
"menuOptions": {
|
"displayText": "Gebruikers-\nInterface",
|
||||||
"DCInCutoff": {
|
"description": ""
|
||||||
"text2": [
|
},
|
||||||
"Spannings-",
|
"AdvancedMenu": {
|
||||||
"bron"
|
"displayText": "Gevorderde\nInstellingen",
|
||||||
],
|
"description": ""
|
||||||
"desc": "Spanningsbron. Stelt minimumspanning in. (DC 10V) (S 3.3V per cel)"
|
}
|
||||||
},
|
},
|
||||||
"MinVolCell": {
|
"menuOptions": {
|
||||||
"text2": [
|
"DCInCutoff": {
|
||||||
"Minimum",
|
"displayText": "Spannings-\nbron",
|
||||||
"voltage"
|
"description": "Spanningsbron. Stelt minimumspanning in. (DC 10V) (S 3.3V per cel)"
|
||||||
],
|
},
|
||||||
"desc": "Minimum allowed voltage per cell (3S: 3 - 3.7V | 4-6S: 2.4 - 3.7V)"
|
"MinVolCell": {
|
||||||
},
|
"displayText": "Minimum\nvoltage",
|
||||||
"QCMaxVoltage": {
|
"description": "Minimum allowed voltage per cell (3S: 3 - 3.7V | 4-6S: 2.4 - 3.7V)"
|
||||||
"text2": [
|
},
|
||||||
"Vermogen",
|
"QCMaxVoltage": {
|
||||||
"Watt"
|
"displayText": "Vermogen\nWatt",
|
||||||
],
|
"description": "Vermogen van de adapter"
|
||||||
"desc": "Vermogen van de adapter"
|
},
|
||||||
},
|
"PDNegTimeout": {
|
||||||
"PDNegTimeout": {
|
"displayText": "PD\ntimeout",
|
||||||
"text2": [
|
"description": "PD negotiation timeout in 100ms steps for compatibility with some QC chargers"
|
||||||
"PD",
|
},
|
||||||
"timeout"
|
"BoostTemperature": {
|
||||||
],
|
"displayText": "Verhogings\ntemp",
|
||||||
"desc": "PD negotiation timeout in 100ms steps for compatibility with some QC chargers"
|
"description": "Verhogingstemperatuur"
|
||||||
},
|
},
|
||||||
"BoostTemperature": {
|
"AutoStart": {
|
||||||
"text2": [
|
"displayText": "Auto\nstart",
|
||||||
"Verhogings",
|
"description": "Breng de soldeerbout op temperatuur bij het opstarten. (F=Uit | T=Soldeertemperatuur | S=Slaapstand-temperatuur | K=Slaapstand kamertemperatuur)"
|
||||||
"temp"
|
},
|
||||||
],
|
"TempChangeShortStep": {
|
||||||
"desc": "Verhogingstemperatuur"
|
"displayText": "Temp change\nshort",
|
||||||
},
|
"description": "Temperature-change-increment on short button press"
|
||||||
"AutoStart": {
|
},
|
||||||
"text2": [
|
"TempChangeLongStep": {
|
||||||
"Auto",
|
"displayText": "Temp change\nlong",
|
||||||
"start"
|
"description": "Temperature-change-increment on long button press"
|
||||||
],
|
},
|
||||||
"desc": "Breng de soldeerbout op temperatuur bij het opstarten. (F=Uit | T=Soldeertemperatuur | S=Slaapstand-temperatuur | K=Slaapstand kamertemperatuur)"
|
"LockingMode": {
|
||||||
},
|
"displayText": "Allow locking\nbuttons",
|
||||||
"TempChangeShortStep": {
|
"description": "While soldering, hold down both buttons to toggle locking them (D=disable | B=boost mode only | F=full locking)"
|
||||||
"text2": [
|
},
|
||||||
"Temp change",
|
"MotionSensitivity": {
|
||||||
"short"
|
"displayText": "Bewegings-\ngevoeligheid",
|
||||||
],
|
"description": "Bewegingsgevoeligheid (0=uit | 1=minst gevoelig | ... | 9=meest gevoelig)"
|
||||||
"desc": "Temperature-change-increment on short button press"
|
},
|
||||||
},
|
"SleepTemperature": {
|
||||||
"TempChangeLongStep": {
|
"displayText": "Slaap\ntemp",
|
||||||
"text2": [
|
"description": "Temperatuur in slaapstand (°C)"
|
||||||
"Temp change",
|
},
|
||||||
"long"
|
"SleepTimeout": {
|
||||||
],
|
"displayText": "Slaap\ntime-out",
|
||||||
"desc": "Temperature-change-increment on long button press"
|
"description": "Slaapstand time-out (Minuten | Seconden)"
|
||||||
},
|
},
|
||||||
"LockingMode": {
|
"ShutdownTimeout": {
|
||||||
"text2": [
|
"displayText": "Uitschakel\ntime-out",
|
||||||
"Allow locking",
|
"description": "Automatisch afsluiten time-out (Minuten)"
|
||||||
"buttons"
|
},
|
||||||
],
|
"HallEffSensitivity": {
|
||||||
"desc": "While soldering, hold down both buttons to toggle locking them (D=disable | B=boost mode only | F=full locking)"
|
"displayText": "Hall sensor\nsensitivity",
|
||||||
},
|
"description": "Sensitivity to magnets (0=uit | 1=minst gevoelig | ... | 9=meest gevoelig)"
|
||||||
"MotionSensitivity": {
|
},
|
||||||
"text2": [
|
"TemperatureUnit": {
|
||||||
"Bewegings-",
|
"displayText": "Temperatuur\nschaal",
|
||||||
"gevoeligheid"
|
"description": "Temperatuurschaal (°C=Celsius | °F=Fahrenheit)"
|
||||||
],
|
},
|
||||||
"desc": "Bewegingsgevoeligheid (0=uit | 1=minst gevoelig | ... | 9=meest gevoelig)"
|
"DisplayRotation": {
|
||||||
},
|
"displayText": "Scherm-\noriëntatie",
|
||||||
"SleepTemperature": {
|
"description": "Schermoriëntatie (R=Rechtshandig | L=Linkshandig | A=Automatisch)"
|
||||||
"text2": [
|
},
|
||||||
"Slaap",
|
"CooldownBlink": {
|
||||||
"temp"
|
"displayText": "Afkoel\nknipper",
|
||||||
],
|
"description": "Temperatuur knippert in hoofdmenu tijdens afkoeling."
|
||||||
"desc": "Temperatuur in slaapstand (°C)"
|
},
|
||||||
},
|
"ScrollingSpeed": {
|
||||||
"SleepTimeout": {
|
"displayText": "Scrol\nsnelheid",
|
||||||
"text2": [
|
"description": "Scrolsnelheid van de tekst."
|
||||||
"Slaap",
|
},
|
||||||
"time-out"
|
"ReverseButtonTempChange": {
|
||||||
],
|
"displayText": "Swap\n+ - keys",
|
||||||
"desc": "Slaapstand time-out (Minuten | Seconden)"
|
"description": "Reverse assignment of buttons for temperature adjustment"
|
||||||
},
|
},
|
||||||
"ShutdownTimeout": {
|
"AnimSpeed": {
|
||||||
"text2": [
|
"displayText": "Anim.\nspeed",
|
||||||
"Uitschakel",
|
"description": "Pace of icon animations in menu (O=off | T=slow | M=medium | S=fast)"
|
||||||
"time-out"
|
},
|
||||||
],
|
"AnimLoop": {
|
||||||
"desc": "Automatisch afsluiten time-out (Minuten)"
|
"displayText": "Anim.\nloop",
|
||||||
},
|
"description": "Loop icon animations in main menu"
|
||||||
"HallEffSensitivity": {
|
},
|
||||||
"text2": [
|
"Brightness": {
|
||||||
"Hall sensor",
|
"displayText": "Screen\nbrightness",
|
||||||
"sensitivity"
|
"description": "Adjust the OLED screen brightness"
|
||||||
],
|
},
|
||||||
"desc": "Sensitivity to magnets (0=uit | 1=minst gevoelig | ... | 9=meest gevoelig)"
|
"ColourInversion": {
|
||||||
},
|
"displayText": "Invert\nscreen",
|
||||||
"TemperatureUnit": {
|
"description": "Invert the OLED screen colors"
|
||||||
"text2": [
|
},
|
||||||
"Temperatuur",
|
"LOGOTime": {
|
||||||
"schaal"
|
"displayText": "Boot logo\nduration",
|
||||||
],
|
"description": "Set boot logo duration (s=seconds)"
|
||||||
"desc": "Temperatuurschaal (°C=Celsius | °F=Fahrenheit)"
|
},
|
||||||
},
|
"AdvancedIdle": {
|
||||||
"DisplayRotation": {
|
"displayText": "Gedetailleerd\nslaapscherm",
|
||||||
"text2": [
|
"description": "Gedetailleerde informatie in een kleiner lettertype in het slaapscherm."
|
||||||
"Scherm-",
|
},
|
||||||
"oriëntatie"
|
"AdvancedSoldering": {
|
||||||
],
|
"displayText": "Gedetailleerd\nsoldeerscherm",
|
||||||
"desc": "Schermoriëntatie (R=Rechtshandig | L=Linkshandig | A=Automatisch)"
|
"description": "Gedetailleerde informatie in kleiner lettertype in soldeerscherm."
|
||||||
},
|
},
|
||||||
"CooldownBlink": {
|
"PowerLimit": {
|
||||||
"text2": [
|
"displayText": "Power\nlimit",
|
||||||
"Afkoel",
|
"description": "Maximum power the iron can use (W=watt)"
|
||||||
"knipper"
|
},
|
||||||
],
|
"CalibrateCJC": {
|
||||||
"desc": "Temperatuur knippert in hoofdmenu tijdens afkoeling."
|
"displayText": "Calibrate CJC\nat next boot",
|
||||||
},
|
"description": "At next boot tip Cold Junction Compensation will be calibrated (not required if Delta T is < 5°C)"
|
||||||
"ScrollingSpeed": {
|
},
|
||||||
"text2": [
|
"VoltageCalibration": {
|
||||||
"Scrol",
|
"displayText": "Calibreer\nvoedingsspanning?",
|
||||||
"snelheid"
|
"description": "VIN Calibreren. Bevestigen door knoppen lang in te drukken."
|
||||||
],
|
},
|
||||||
"desc": "Scrolsnelheid van de tekst."
|
"PowerPulsePower": {
|
||||||
},
|
"displayText": "Power\npulse",
|
||||||
"ReverseButtonTempChange": {
|
"description": "Intensity of power of keep-awake-pulse (W=watt)"
|
||||||
"text2": [
|
},
|
||||||
"Swap",
|
"PowerPulseWait": {
|
||||||
"+ - keys"
|
"displayText": "Power pulse\ndelay",
|
||||||
],
|
"description": "Delay before keep-awake-pulse is triggered (x 2.5s)"
|
||||||
"desc": "Reverse assignment of buttons for temperature adjustment"
|
},
|
||||||
},
|
"PowerPulseDuration": {
|
||||||
"AnimSpeed": {
|
"displayText": "Power pulse\nduration",
|
||||||
"text2": [
|
"description": "Keep-awake-pulse duration (x 250ms)"
|
||||||
"Anim.",
|
},
|
||||||
"speed"
|
"SettingsReset": {
|
||||||
],
|
"displayText": "Instellingen\nresetten?",
|
||||||
"desc": "Pace of icon animations in menu (O=off | T=slow | M=medium | S=fast)"
|
"description": "Alle instellingen resetten."
|
||||||
},
|
},
|
||||||
"AnimLoop": {
|
"LanguageSwitch": {
|
||||||
"text2": [
|
"displayText": "Spraak:\n NL_BE Vlaams",
|
||||||
"Anim.",
|
"description": ""
|
||||||
"loop"
|
}
|
||||||
],
|
}
|
||||||
"desc": "Loop icon animations in main menu"
|
|
||||||
},
|
|
||||||
"Brightness": {
|
|
||||||
"text2": [
|
|
||||||
"Screen",
|
|
||||||
"brightness"
|
|
||||||
],
|
|
||||||
"desc": "Adjust the OLED screen brightness"
|
|
||||||
},
|
|
||||||
"ColourInversion": {
|
|
||||||
"text2": [
|
|
||||||
"Invert",
|
|
||||||
"screen"
|
|
||||||
],
|
|
||||||
"desc": "Invert the OLED screen colors"
|
|
||||||
},
|
|
||||||
"LOGOTime": {
|
|
||||||
"text2": [
|
|
||||||
"Boot logo",
|
|
||||||
"duration"
|
|
||||||
],
|
|
||||||
"desc": "Set boot logo duration (s=seconds)"
|
|
||||||
},
|
|
||||||
"AdvancedIdle": {
|
|
||||||
"text2": [
|
|
||||||
"Gedetailleerd",
|
|
||||||
"slaapscherm"
|
|
||||||
],
|
|
||||||
"desc": "Gedetailleerde informatie in een kleiner lettertype in het slaapscherm."
|
|
||||||
},
|
|
||||||
"AdvancedSoldering": {
|
|
||||||
"text2": [
|
|
||||||
"Gedetailleerd",
|
|
||||||
"soldeerscherm"
|
|
||||||
],
|
|
||||||
"desc": "Gedetailleerde informatie in kleiner lettertype in soldeerscherm."
|
|
||||||
},
|
|
||||||
"PowerLimit": {
|
|
||||||
"text2": [
|
|
||||||
"Power",
|
|
||||||
"limit"
|
|
||||||
],
|
|
||||||
"desc": "Maximum power the iron can use (W=watt)"
|
|
||||||
},
|
|
||||||
"CalibrateCJC": {
|
|
||||||
"text2": [
|
|
||||||
"Calibrate CJC",
|
|
||||||
"at next boot"
|
|
||||||
],
|
|
||||||
"desc": "At next boot tip Cold Junction Compensation will be calibrated (not required if Delta T is < 5°C)"
|
|
||||||
},
|
|
||||||
"VoltageCalibration": {
|
|
||||||
"text2": [
|
|
||||||
"Calibreer",
|
|
||||||
"voedingsspanning?"
|
|
||||||
],
|
|
||||||
"desc": "VIN Calibreren. Bevestigen door knoppen lang in te drukken."
|
|
||||||
},
|
|
||||||
"PowerPulsePower": {
|
|
||||||
"text2": [
|
|
||||||
"Power",
|
|
||||||
"pulse"
|
|
||||||
],
|
|
||||||
"desc": "Intensity of power of keep-awake-pulse (W=watt)"
|
|
||||||
},
|
|
||||||
"PowerPulseWait": {
|
|
||||||
"text2": [
|
|
||||||
"Power pulse",
|
|
||||||
"delay"
|
|
||||||
],
|
|
||||||
"desc": "Delay before keep-awake-pulse is triggered (x 2.5s)"
|
|
||||||
},
|
|
||||||
"PowerPulseDuration": {
|
|
||||||
"text2": [
|
|
||||||
"Power pulse",
|
|
||||||
"duration"
|
|
||||||
],
|
|
||||||
"desc": "Keep-awake-pulse duration (x 250ms)"
|
|
||||||
},
|
|
||||||
"SettingsReset": {
|
|
||||||
"text2": [
|
|
||||||
"Instellingen",
|
|
||||||
"resetten?"
|
|
||||||
],
|
|
||||||
"desc": "Alle instellingen resetten."
|
|
||||||
},
|
|
||||||
"LanguageSwitch": {
|
|
||||||
"text2": [
|
|
||||||
"Spraak:",
|
|
||||||
" NL_BE Vlaams"
|
|
||||||
],
|
|
||||||
"desc": ""
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@@ -1,337 +1,243 @@
|
|||||||
{
|
{
|
||||||
"languageCode": "PL",
|
"languageCode": "PL",
|
||||||
"languageLocalName": "Polski",
|
"languageLocalName": "Polski",
|
||||||
"tempUnitFahrenheit": false,
|
"tempUnitFahrenheit": false,
|
||||||
"messages": {
|
"messagesWarn": {
|
||||||
"SettingsCalibrationWarning": "Upewnij się, że końcówka i uchwyt mają temperaturę pokojową podczas następnego rozruchu!",
|
"CJCCalibrationDone": {
|
||||||
"CJCCalibrating": "kalibracja",
|
"message": "Kalibracja\nwykonana!"
|
||||||
"SettingsResetWarning": "Czy na pewno chcesz przywrócić ustawienia fabryczne?",
|
},
|
||||||
"UVLOWarningString": "NIS. NAP",
|
"ResetOKMessage": {
|
||||||
"UndervoltageString": "Zbyt niskie nap.",
|
"message": "Reset OK"
|
||||||
"InputVoltageString": "Nap. wej.:",
|
},
|
||||||
"SleepingSimpleString": "Zzz!",
|
"SettingsResetMessage": {
|
||||||
"SleepingAdvancedString": "Tr. uśpienia",
|
"message": "Ust. zresetowane\n"
|
||||||
"SleepingTipAdvancedString": "Grot:",
|
},
|
||||||
"OffString": "Wył",
|
"NoAccelerometerMessage": {
|
||||||
"DeviceFailedValidationWarning": "Twoje urządzenie jest najprawdopodobniej podróbką!"
|
"message": "Nie rozpoznano\nakcelerometru!"
|
||||||
},
|
},
|
||||||
"messagesWarn": {
|
"NoPowerDeliveryMessage": {
|
||||||
"CJCCalibrationDone": [
|
"message": "Nie rozpoznano\nkont. USB-PD IC!"
|
||||||
"Kalibracja",
|
},
|
||||||
"wykonana!"
|
"LockingKeysString": {
|
||||||
],
|
"message": " ZABLOK."
|
||||||
"ResetOKMessage": "Reset OK",
|
},
|
||||||
"SettingsResetMessage": [
|
"UnlockingKeysString": {
|
||||||
"Ust. zresetowane",
|
"message": "ODBLOK."
|
||||||
""
|
},
|
||||||
],
|
"WarningKeysLockedString": {
|
||||||
"NoAccelerometerMessage": [
|
"message": "!ZABLOK!"
|
||||||
"Nie rozpoznano",
|
},
|
||||||
"akcelerometru!"
|
"WarningThermalRunaway": {
|
||||||
],
|
"message": "Ucieczka\ntermiczna"
|
||||||
"NoPowerDeliveryMessage": [
|
},
|
||||||
"Nie rozpoznano",
|
"SettingsCalibrationWarning": {
|
||||||
"kont. USB-PD IC!"
|
"message": "Upewnij się, że końcówka i uchwyt mają temperaturę pokojową podczas następnego rozruchu!"
|
||||||
],
|
},
|
||||||
"LockingKeysString": " ZABLOK.",
|
"CJCCalibrating": {
|
||||||
"UnlockingKeysString": "ODBLOK.",
|
"message": "kalibracja"
|
||||||
"WarningKeysLockedString": "!ZABLOK!",
|
},
|
||||||
"WarningThermalRunaway": [
|
"SettingsResetWarning": {
|
||||||
"Ucieczka",
|
"message": "Czy na pewno chcesz przywrócić ustawienia fabryczne?"
|
||||||
"termiczna"
|
},
|
||||||
]
|
"UVLOWarningString": {
|
||||||
},
|
"message": "NIS. NAP"
|
||||||
"characters": {
|
},
|
||||||
"SettingRightChar": "P",
|
"UndervoltageString": {
|
||||||
"SettingLeftChar": "L",
|
"message": "Zbyt niskie nap."
|
||||||
"SettingAutoChar": "A",
|
},
|
||||||
"SettingOffChar": "O",
|
"InputVoltageString": {
|
||||||
"SettingSlowChar": "W",
|
"message": "Nap. wej.:"
|
||||||
"SettingMediumChar": "M",
|
},
|
||||||
"SettingFastChar": "S",
|
"SleepingSimpleString": {
|
||||||
"SettingStartNoneChar": "B",
|
"message": "Zzz!"
|
||||||
"SettingStartSolderingChar": "T",
|
},
|
||||||
"SettingStartSleepChar": "Z",
|
"SleepingAdvancedString": {
|
||||||
"SettingStartSleepOffChar": "O",
|
"message": "Tr. uśpienia"
|
||||||
"SettingLockDisableChar": "W",
|
},
|
||||||
"SettingLockBoostChar": "B",
|
"SleepingTipAdvancedString": {
|
||||||
"SettingLockFullChar": "P"
|
"message": "Grot:"
|
||||||
},
|
},
|
||||||
"menuGroups": {
|
"OffString": {
|
||||||
"PowerMenu": {
|
"message": "Wył"
|
||||||
"text2": [
|
},
|
||||||
"Ustawienia",
|
"DeviceFailedValidationWarning": {
|
||||||
"zasilania"
|
"message": "Twoje urządzenie jest najprawdopodobniej podróbką!"
|
||||||
],
|
}
|
||||||
"desc": ""
|
},
|
||||||
},
|
"characters": {
|
||||||
"SolderingMenu": {
|
"SettingRightChar": "P",
|
||||||
"text2": [
|
"SettingLeftChar": "L",
|
||||||
"Lutowanie",
|
"SettingAutoChar": "A",
|
||||||
""
|
"SettingOffChar": "O",
|
||||||
],
|
"SettingSlowChar": "W",
|
||||||
"desc": ""
|
"SettingMediumChar": "M",
|
||||||
},
|
"SettingFastChar": "S",
|
||||||
"PowerSavingMenu": {
|
"SettingStartNoneChar": "B",
|
||||||
"text2": [
|
"SettingStartSolderingChar": "T",
|
||||||
"Oszcz.",
|
"SettingStartSleepChar": "Z",
|
||||||
"energii"
|
"SettingStartSleepOffChar": "O",
|
||||||
],
|
"SettingLockDisableChar": "W",
|
||||||
"desc": ""
|
"SettingLockBoostChar": "B",
|
||||||
},
|
"SettingLockFullChar": "P"
|
||||||
"UIMenu": {
|
},
|
||||||
"text2": [
|
"menuGroups": {
|
||||||
"Interfejs",
|
"PowerMenu": {
|
||||||
"użytkownika"
|
"displayText": "Ustawienia\nzasilania",
|
||||||
],
|
"description": ""
|
||||||
"desc": ""
|
},
|
||||||
},
|
"SolderingMenu": {
|
||||||
"AdvancedMenu": {
|
"displayText": "Lutowanie\n",
|
||||||
"text2": [
|
"description": ""
|
||||||
"Ustawienia",
|
},
|
||||||
"zaawans."
|
"PowerSavingMenu": {
|
||||||
],
|
"displayText": "Oszcz.\nenergii",
|
||||||
"desc": ""
|
"description": ""
|
||||||
}
|
},
|
||||||
},
|
"UIMenu": {
|
||||||
"menuOptions": {
|
"displayText": "Interfejs\nużytkownika",
|
||||||
"DCInCutoff": {
|
"description": ""
|
||||||
"text2": [
|
},
|
||||||
"Źródło",
|
"AdvancedMenu": {
|
||||||
"zasilania"
|
"displayText": "Ustawienia\nzaawans.",
|
||||||
],
|
"description": ""
|
||||||
"desc": "Źródło zasilania. Ustaw napięcie odcięcia. (DC 10V) (S 3.3V dla ogniw Li, wyłącz limit mocy)"
|
}
|
||||||
},
|
},
|
||||||
"MinVolCell": {
|
"menuOptions": {
|
||||||
"text2": [
|
"DCInCutoff": {
|
||||||
"Minimalne",
|
"displayText": "Źródło\nzasilania",
|
||||||
"napięcie"
|
"description": "Źródło zasilania. Ustaw napięcie odcięcia. (DC 10V) (S 3.3V dla ogniw Li, wyłącz limit mocy)"
|
||||||
],
|
},
|
||||||
"desc": "Minimalne dozwolone napięcie na komórkę (3S: 3 - 3,7V | 4-6S: 2,4 - 3,7V)"
|
"MinVolCell": {
|
||||||
},
|
"displayText": "Minimalne\nnapięcie",
|
||||||
"QCMaxVoltage": {
|
"description": "Minimalne dozwolone napięcie na komórkę (3S: 3 - 3,7V | 4-6S: 2,4 - 3,7V)"
|
||||||
"text2": [
|
},
|
||||||
"QC",
|
"QCMaxVoltage": {
|
||||||
"napięcie"
|
"displayText": "QC\nnapięcie",
|
||||||
],
|
"description": "Maksymalne napięcie, które lutownica będzie próbowała wynegocjować z ładowarką Quick Charge (V)"
|
||||||
"desc": "Maksymalne napięcie, które lutownica będzie próbowała wynegocjować z ładowarką Quick Charge (V)"
|
},
|
||||||
},
|
"PDNegTimeout": {
|
||||||
"PDNegTimeout": {
|
"displayText": "Limit czasu\nPD",
|
||||||
"text2": [
|
"description": "Limit czasu negocjacji PD w krokach co 100 ms dla zgodności z niektórymi ładowarkami QC (0: wyłączone)"
|
||||||
"Limit czasu",
|
},
|
||||||
"PD"
|
"BoostTemperature": {
|
||||||
],
|
"displayText": "Temp.\nboost",
|
||||||
"desc": "Limit czasu negocjacji PD w krokach co 100 ms dla zgodności z niektórymi ładowarkami QC (0: wyłączone)"
|
"description": "Temperatura w trybie \"boost\" "
|
||||||
},
|
},
|
||||||
"BoostTemperature": {
|
"AutoStart": {
|
||||||
"text2": [
|
"displayText": "Aut. uruch.\ntr. lutowania",
|
||||||
"Temp.",
|
"description": "Automatyczne uruchamianie trybu lutowania po włączeniu zasilania. (B: wyłączone | T: lutowanie | Z: uśpienie | O: uśpienie w temp. pokojowej)"
|
||||||
"boost"
|
},
|
||||||
],
|
"TempChangeShortStep": {
|
||||||
"desc": "Temperatura w trybie \"boost\" "
|
"displayText": "Zm. temp.\nkr. przyc.",
|
||||||
},
|
"description": "Wartość zmiany temperatury, po krótkim przyciśnięciu (°C)"
|
||||||
"AutoStart": {
|
},
|
||||||
"text2": [
|
"TempChangeLongStep": {
|
||||||
"Aut. uruch.",
|
"displayText": "Zm. temp.\ndł. przyc.",
|
||||||
"tr. lutowania"
|
"description": "Wartość zmiany temperatury, po długim przyciśnięciu (°C)"
|
||||||
],
|
},
|
||||||
"desc": "Automatyczne uruchamianie trybu lutowania po włączeniu zasilania. (B: wyłączone | T: lutowanie | Z: uśpienie | O: uśpienie w temp. pokojowej)"
|
"LockingMode": {
|
||||||
},
|
"displayText": "Blokada\nprzycisków",
|
||||||
"TempChangeShortStep": {
|
"description": "W trybie lutowania, wciśnij oba przyciski aby je zablokować (O=Wyłączona | B=tylko Boost | P=pełna blokada)"
|
||||||
"text2": [
|
},
|
||||||
"Zm. temp.",
|
"MotionSensitivity": {
|
||||||
"kr. przyc."
|
"displayText": "Czułość\nwykr. ruchu",
|
||||||
],
|
"description": "Czułość wykrywania ruchu (0: Wyłączona | 1: Minimalna | ... | 9: Maksymalna)"
|
||||||
"desc": "Wartość zmiany temperatury, po krótkim przyciśnięciu (°C)"
|
},
|
||||||
},
|
"SleepTemperature": {
|
||||||
"TempChangeLongStep": {
|
"displayText": "Temp.\nuśpienia",
|
||||||
"text2": [
|
"description": "Temperatura w trybie uśpienia (°C)"
|
||||||
"Zm. temp.",
|
},
|
||||||
"dł. przyc."
|
"SleepTimeout": {
|
||||||
],
|
"displayText": "Czas do\nuśpienia",
|
||||||
"desc": "Wartość zmiany temperatury, po długim przyciśnięciu (°C)"
|
"description": "Czas do przejścia w tryb uśpienia (minuty | sekundy)"
|
||||||
},
|
},
|
||||||
"LockingMode": {
|
"ShutdownTimeout": {
|
||||||
"text2": [
|
"displayText": "Czas do\nwyłączenia",
|
||||||
"Blokada",
|
"description": "Czas do wyłączenia (minuty)"
|
||||||
"przycisków"
|
},
|
||||||
],
|
"HallEffSensitivity": {
|
||||||
"desc": "W trybie lutowania, wciśnij oba przyciski aby je zablokować (O=Wyłączona | B=tylko Boost | P=pełna blokada)"
|
"displayText": "Czułość\ncz. Halla",
|
||||||
},
|
"description": "Czułość czujnika Halla, używanego do przechodznia w tryb uśpienia (0: Wyłączona | 1: Minimalna | ... | 9: Maksymalna)"
|
||||||
"MotionSensitivity": {
|
},
|
||||||
"text2": [
|
"TemperatureUnit": {
|
||||||
"Czułość",
|
"displayText": "Jednostka\ntemperatury",
|
||||||
"wykr. ruchu"
|
"description": "Jednostka temperatury (C: Celciusz | F: Fahrenheit)"
|
||||||
],
|
},
|
||||||
"desc": "Czułość wykrywania ruchu (0: Wyłączona | 1: Minimalna | ... | 9: Maksymalna)"
|
"DisplayRotation": {
|
||||||
},
|
"displayText": "Obrót\nekranu",
|
||||||
"SleepTemperature": {
|
"description": "Obrót ekranu (P: dla praworęcznych | L: dla leworęcznych | A: automatycznie)"
|
||||||
"text2": [
|
},
|
||||||
"Temp.",
|
"CooldownBlink": {
|
||||||
"uśpienia"
|
"displayText": "Mig. podczas\nwychładzania",
|
||||||
],
|
"description": "Temperatura miga podczas wychładzania, gdy grot jest wciąż gorący"
|
||||||
"desc": "Temperatura w trybie uśpienia (°C)"
|
},
|
||||||
},
|
"ScrollingSpeed": {
|
||||||
"SleepTimeout": {
|
"displayText": "Sz. przew.\ntekstu",
|
||||||
"text2": [
|
"description": "Szybkość przewijania tekstu"
|
||||||
"Czas do",
|
},
|
||||||
"uśpienia"
|
"ReverseButtonTempChange": {
|
||||||
],
|
"displayText": "Zamień przyc.\n+ -",
|
||||||
"desc": "Czas do przejścia w tryb uśpienia (minuty | sekundy)"
|
"description": "Zamienia działanie przycisków zmiany temperatury grotu"
|
||||||
},
|
},
|
||||||
"ShutdownTimeout": {
|
"AnimSpeed": {
|
||||||
"text2": [
|
"displayText": "Prędkosć\nanimacji",
|
||||||
"Czas do",
|
"description": "Prędkość animacji ikon w menu (O: wył. | W: mała | M: średnia | S: duża)"
|
||||||
"wyłączenia"
|
},
|
||||||
],
|
"AnimLoop": {
|
||||||
"desc": "Czas do wyłączenia (minuty)"
|
"displayText": "Zapętlona\nanimacja",
|
||||||
},
|
"description": "Zapętla animację ikon w menu głównym"
|
||||||
"HallEffSensitivity": {
|
},
|
||||||
"text2": [
|
"Brightness": {
|
||||||
"Czułość",
|
"displayText": "Jasność\nwyświetlacza",
|
||||||
"cz. Halla"
|
"description": "Regulacja kontrastu/jasności wyświetlacza OLED"
|
||||||
],
|
},
|
||||||
"desc": "Czułość czujnika Halla, używanego do przechodznia w tryb uśpienia (0: Wyłączona | 1: Minimalna | ... | 9: Maksymalna)"
|
"ColourInversion": {
|
||||||
},
|
"displayText": "Odwrócenie\nkolorów",
|
||||||
"TemperatureUnit": {
|
"description": "Odwrócenie kolorów wyświetlacza OLED"
|
||||||
"text2": [
|
},
|
||||||
"Jednostka",
|
"LOGOTime": {
|
||||||
"temperatury"
|
"displayText": "Długość wyś.\nloga",
|
||||||
],
|
"description": "Ustawia czas wyświetlania loga podczas uruchamiania (s=sekund)"
|
||||||
"desc": "Jednostka temperatury (C: Celciusz | F: Fahrenheit)"
|
},
|
||||||
},
|
"AdvancedIdle": {
|
||||||
"DisplayRotation": {
|
"displayText": "Szeczegółowy\nekran bezczy.",
|
||||||
"text2": [
|
"description": "Wyświetla szczegółowe informacje za pomocą mniejszej czcionki na ekranie bezczynności"
|
||||||
"Obrót",
|
},
|
||||||
"ekranu"
|
"AdvancedSoldering": {
|
||||||
],
|
"displayText": "Sz. inf. w\ntr. lutowania",
|
||||||
"desc": "Obrót ekranu (P: dla praworęcznych | L: dla leworęcznych | A: automatycznie)"
|
"description": "Wyświetl szczegółowe informacje w trybie lutowania"
|
||||||
},
|
},
|
||||||
"CooldownBlink": {
|
"PowerLimit": {
|
||||||
"text2": [
|
"displayText": "Ogr.\nmocy",
|
||||||
"Mig. podczas",
|
"description": "Maksymalna moc (W), jakiej może użyć lutownica"
|
||||||
"wychładzania"
|
},
|
||||||
],
|
"CalibrateCJC": {
|
||||||
"desc": "Temperatura miga podczas wychładzania, gdy grot jest wciąż gorący"
|
"displayText": "Kalibracja temperatury\nprzy następnym uruchomieniu",
|
||||||
},
|
"description": "Kalibracja temperatury przy następnym włączeniu (nie jest wymagana, jeśli różnica temperatur jest mniejsza niż 5°C"
|
||||||
"ScrollingSpeed": {
|
},
|
||||||
"text2": [
|
"VoltageCalibration": {
|
||||||
"Sz. przew.",
|
"displayText": "Kalibracja\nnapięcia",
|
||||||
"tekstu"
|
"description": "Kalibracja napięcia wejściowego. Krótkie naciśnięcie, aby ustawić, długie naciśnięcie, aby wyjść."
|
||||||
],
|
},
|
||||||
"desc": "Szybkość przewijania tekstu"
|
"PowerPulsePower": {
|
||||||
},
|
"displayText": "Moc\nimpulsu",
|
||||||
"ReverseButtonTempChange": {
|
"description": "W przypadku używania powerbanku, utrzymuj moc na poziomie (W) aby nie uśpić powerbanku"
|
||||||
"text2": [
|
},
|
||||||
"Zamień przyc.",
|
"PowerPulseWait": {
|
||||||
"+ -"
|
"displayText": "Czas między\nimp. mocy",
|
||||||
],
|
"description": "Czas między kolejnymi impulsami mocy zapobiegającymi usypianiu powerbanku (x2,5 s)"
|
||||||
"desc": "Zamienia działanie przycisków zmiany temperatury grotu"
|
},
|
||||||
},
|
"PowerPulseDuration": {
|
||||||
"AnimSpeed": {
|
"displayText": "Długość\nimpulsu mocy",
|
||||||
"text2": [
|
"description": "Długość impulsu mocy zapobiegającego usypianiu powerbanku (x250 ms)"
|
||||||
"Prędkosć",
|
},
|
||||||
"animacji"
|
"SettingsReset": {
|
||||||
],
|
"displayText": "Ustawienia\nfabryczne",
|
||||||
"desc": "Prędkość animacji ikon w menu (O: wył. | W: mała | M: średnia | S: duża)"
|
"description": "Resetuje wszystkie ustawienia"
|
||||||
},
|
},
|
||||||
"AnimLoop": {
|
"LanguageSwitch": {
|
||||||
"text2": [
|
"displayText": "Język:\n PL Polski",
|
||||||
"Zapętlona",
|
"description": ""
|
||||||
"animacja"
|
}
|
||||||
],
|
}
|
||||||
"desc": "Zapętla animację ikon w menu głównym"
|
|
||||||
},
|
|
||||||
"Brightness": {
|
|
||||||
"text2": [
|
|
||||||
"Jasność",
|
|
||||||
"wyświetlacza"
|
|
||||||
],
|
|
||||||
"desc": "Regulacja kontrastu/jasności wyświetlacza OLED"
|
|
||||||
},
|
|
||||||
"ColourInversion": {
|
|
||||||
"text2": [
|
|
||||||
"Odwrócenie",
|
|
||||||
"kolorów"
|
|
||||||
],
|
|
||||||
"desc": "Odwrócenie kolorów wyświetlacza OLED"
|
|
||||||
},
|
|
||||||
"LOGOTime": {
|
|
||||||
"text2": [
|
|
||||||
"Długość wyś.",
|
|
||||||
"loga"
|
|
||||||
],
|
|
||||||
"desc": "Ustawia czas wyświetlania loga podczas uruchamiania (s=sekund)"
|
|
||||||
},
|
|
||||||
"AdvancedIdle": {
|
|
||||||
"text2": [
|
|
||||||
"Szeczegółowy",
|
|
||||||
"ekran bezczy."
|
|
||||||
],
|
|
||||||
"desc": "Wyświetla szczegółowe informacje za pomocą mniejszej czcionki na ekranie bezczynności"
|
|
||||||
},
|
|
||||||
"AdvancedSoldering": {
|
|
||||||
"text2": [
|
|
||||||
"Sz. inf. w",
|
|
||||||
"tr. lutowania"
|
|
||||||
],
|
|
||||||
"desc": "Wyświetl szczegółowe informacje w trybie lutowania"
|
|
||||||
},
|
|
||||||
"PowerLimit": {
|
|
||||||
"text2": [
|
|
||||||
"Ogr.",
|
|
||||||
"mocy"
|
|
||||||
],
|
|
||||||
"desc": "Maksymalna moc (W), jakiej może użyć lutownica"
|
|
||||||
},
|
|
||||||
"CalibrateCJC": {
|
|
||||||
"text2": [
|
|
||||||
"Kalibracja temperatury",
|
|
||||||
"przy następnym uruchomieniu"
|
|
||||||
],
|
|
||||||
"desc": "Kalibracja temperatury przy następnym włączeniu (nie jest wymagana, jeśli różnica temperatur jest mniejsza niż 5°C"
|
|
||||||
},
|
|
||||||
"VoltageCalibration": {
|
|
||||||
"text2": [
|
|
||||||
"Kalibracja",
|
|
||||||
"napięcia"
|
|
||||||
],
|
|
||||||
"desc": "Kalibracja napięcia wejściowego. Krótkie naciśnięcie, aby ustawić, długie naciśnięcie, aby wyjść."
|
|
||||||
},
|
|
||||||
"PowerPulsePower": {
|
|
||||||
"text2": [
|
|
||||||
"Moc",
|
|
||||||
"impulsu"
|
|
||||||
],
|
|
||||||
"desc": "W przypadku używania powerbanku, utrzymuj moc na poziomie (W) aby nie uśpić powerbanku"
|
|
||||||
},
|
|
||||||
"PowerPulseWait": {
|
|
||||||
"text2": [
|
|
||||||
"Czas między",
|
|
||||||
"imp. mocy"
|
|
||||||
],
|
|
||||||
"desc": "Czas między kolejnymi impulsami mocy zapobiegającymi usypianiu powerbanku (x2,5 s)"
|
|
||||||
},
|
|
||||||
"PowerPulseDuration": {
|
|
||||||
"text2": [
|
|
||||||
"Długość",
|
|
||||||
"impulsu mocy"
|
|
||||||
],
|
|
||||||
"desc": "Długość impulsu mocy zapobiegającego usypianiu powerbanku (x250 ms)"
|
|
||||||
},
|
|
||||||
"SettingsReset": {
|
|
||||||
"text2": [
|
|
||||||
"Ustawienia",
|
|
||||||
"fabryczne"
|
|
||||||
],
|
|
||||||
"desc": "Resetuje wszystkie ustawienia"
|
|
||||||
},
|
|
||||||
"LanguageSwitch": {
|
|
||||||
"text2": [
|
|
||||||
"Język:",
|
|
||||||
" PL Polski"
|
|
||||||
],
|
|
||||||
"desc": ""
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@@ -1,337 +1,243 @@
|
|||||||
{
|
{
|
||||||
"languageCode": "PT",
|
"languageCode": "PT",
|
||||||
"languageLocalName": "Português",
|
"languageLocalName": "Português",
|
||||||
"tempUnitFahrenheit": false,
|
"tempUnitFahrenheit": false,
|
||||||
"messages": {
|
"messagesWarn": {
|
||||||
"SettingsCalibrationWarning": "Before rebooting, make sure tip & handle are at room temperature!",
|
"CJCCalibrationDone": {
|
||||||
"CJCCalibrating": "calibrating",
|
"message": "Calibration\ndone!"
|
||||||
"SettingsResetWarning": "Definições de fábrica?",
|
},
|
||||||
"UVLOWarningString": "DC BAIXO",
|
"ResetOKMessage": {
|
||||||
"UndervoltageString": "Subtensão",
|
"message": "Reset OK"
|
||||||
"InputVoltageString": "Tensão ",
|
},
|
||||||
"SleepingSimpleString": "Zzzz",
|
"SettingsResetMessage": {
|
||||||
"SleepingAdvancedString": "Repouso...",
|
"message": "Certain settings\nwere changed!"
|
||||||
"SleepingTipAdvancedString": "Ponta:",
|
},
|
||||||
"OffString": "Off",
|
"NoAccelerometerMessage": {
|
||||||
"DeviceFailedValidationWarning": "Your device is most likely a counterfeit!"
|
"message": "No accelerometer\ndetected!"
|
||||||
},
|
},
|
||||||
"messagesWarn": {
|
"NoPowerDeliveryMessage": {
|
||||||
"CJCCalibrationDone": [
|
"message": "No USB-PD IC\ndetected!"
|
||||||
"Calibration",
|
},
|
||||||
"done!"
|
"LockingKeysString": {
|
||||||
],
|
"message": "LOCKED"
|
||||||
"ResetOKMessage": "Reset OK",
|
},
|
||||||
"SettingsResetMessage": [
|
"UnlockingKeysString": {
|
||||||
"Certain settings",
|
"message": "UNLOCKED"
|
||||||
"were changed!"
|
},
|
||||||
],
|
"WarningKeysLockedString": {
|
||||||
"NoAccelerometerMessage": [
|
"message": "!LOCKED!"
|
||||||
"No accelerometer",
|
},
|
||||||
"detected!"
|
"WarningThermalRunaway": {
|
||||||
],
|
"message": "Thermal\nRunaway"
|
||||||
"NoPowerDeliveryMessage": [
|
},
|
||||||
"No USB-PD IC",
|
"SettingsCalibrationWarning": {
|
||||||
"detected!"
|
"message": "Before rebooting, make sure tip & handle are at room temperature!"
|
||||||
],
|
},
|
||||||
"LockingKeysString": "LOCKED",
|
"CJCCalibrating": {
|
||||||
"UnlockingKeysString": "UNLOCKED",
|
"message": "calibrating"
|
||||||
"WarningKeysLockedString": "!LOCKED!",
|
},
|
||||||
"WarningThermalRunaway": [
|
"SettingsResetWarning": {
|
||||||
"Thermal",
|
"message": "Definições de fábrica?"
|
||||||
"Runaway"
|
},
|
||||||
]
|
"UVLOWarningString": {
|
||||||
},
|
"message": "DC BAIXO"
|
||||||
"characters": {
|
},
|
||||||
"SettingRightChar": "D",
|
"UndervoltageString": {
|
||||||
"SettingLeftChar": "C",
|
"message": "Subtensão"
|
||||||
"SettingAutoChar": "A",
|
},
|
||||||
"SettingOffChar": "O",
|
"InputVoltageString": {
|
||||||
"SettingSlowChar": "S",
|
"message": "Tensão "
|
||||||
"SettingMediumChar": "M",
|
},
|
||||||
"SettingFastChar": "F",
|
"SleepingSimpleString": {
|
||||||
"SettingStartNoneChar": "D",
|
"message": "Zzzz"
|
||||||
"SettingStartSolderingChar": "S",
|
},
|
||||||
"SettingStartSleepChar": "H",
|
"SleepingAdvancedString": {
|
||||||
"SettingStartSleepOffChar": "A",
|
"message": "Repouso..."
|
||||||
"SettingLockDisableChar": "D",
|
},
|
||||||
"SettingLockBoostChar": "B",
|
"SleepingTipAdvancedString": {
|
||||||
"SettingLockFullChar": "F"
|
"message": "Ponta:"
|
||||||
},
|
},
|
||||||
"menuGroups": {
|
"OffString": {
|
||||||
"PowerMenu": {
|
"message": "Off"
|
||||||
"text2": [
|
},
|
||||||
"Power",
|
"DeviceFailedValidationWarning": {
|
||||||
"settings"
|
"message": "Your device is most likely a counterfeit!"
|
||||||
],
|
}
|
||||||
"desc": ""
|
},
|
||||||
},
|
"characters": {
|
||||||
"SolderingMenu": {
|
"SettingRightChar": "D",
|
||||||
"text2": [
|
"SettingLeftChar": "C",
|
||||||
"Configurações",
|
"SettingAutoChar": "A",
|
||||||
"Solda"
|
"SettingOffChar": "O",
|
||||||
],
|
"SettingSlowChar": "S",
|
||||||
"desc": ""
|
"SettingMediumChar": "M",
|
||||||
},
|
"SettingFastChar": "F",
|
||||||
"PowerSavingMenu": {
|
"SettingStartNoneChar": "D",
|
||||||
"text2": [
|
"SettingStartSolderingChar": "S",
|
||||||
"Modos",
|
"SettingStartSleepChar": "H",
|
||||||
"Repouso"
|
"SettingStartSleepOffChar": "A",
|
||||||
],
|
"SettingLockDisableChar": "D",
|
||||||
"desc": ""
|
"SettingLockBoostChar": "B",
|
||||||
},
|
"SettingLockFullChar": "F"
|
||||||
"UIMenu": {
|
},
|
||||||
"text2": [
|
"menuGroups": {
|
||||||
"Interface",
|
"PowerMenu": {
|
||||||
"Utilizador"
|
"displayText": "Power\nsettings",
|
||||||
],
|
"description": ""
|
||||||
"desc": ""
|
},
|
||||||
},
|
"SolderingMenu": {
|
||||||
"AdvancedMenu": {
|
"displayText": "Configurações\nSolda",
|
||||||
"text2": [
|
"description": ""
|
||||||
"Menu",
|
},
|
||||||
"Avançado"
|
"PowerSavingMenu": {
|
||||||
],
|
"displayText": "Modos\nRepouso",
|
||||||
"desc": ""
|
"description": ""
|
||||||
}
|
},
|
||||||
},
|
"UIMenu": {
|
||||||
"menuOptions": {
|
"displayText": "Interface\nUtilizador",
|
||||||
"DCInCutoff": {
|
"description": ""
|
||||||
"text2": [
|
},
|
||||||
"Fonte",
|
"AdvancedMenu": {
|
||||||
"alimentação"
|
"displayText": "Menu\nAvançado",
|
||||||
],
|
"description": ""
|
||||||
"desc": "Fonte de alimentação. Define a tensão de corte. (DC=10V) (S=3.3V/célula)"
|
}
|
||||||
},
|
},
|
||||||
"MinVolCell": {
|
"menuOptions": {
|
||||||
"text2": [
|
"DCInCutoff": {
|
||||||
"Minimum",
|
"displayText": "Fonte\nalimentação",
|
||||||
"voltage"
|
"description": "Fonte de alimentação. Define a tensão de corte. (DC=10V) (S=3.3V/célula)"
|
||||||
],
|
},
|
||||||
"desc": "Minimum allowed voltage per battery cell (3S: 3 - 3.7V | 4-6S: 2.4 - 3.7V)"
|
"MinVolCell": {
|
||||||
},
|
"displayText": "Minimum\nvoltage",
|
||||||
"QCMaxVoltage": {
|
"description": "Minimum allowed voltage per battery cell (3S: 3 - 3.7V | 4-6S: 2.4 - 3.7V)"
|
||||||
"text2": [
|
},
|
||||||
"Potência",
|
"QCMaxVoltage": {
|
||||||
"Fonte"
|
"displayText": "Potência\nFonte",
|
||||||
],
|
"description": "Potência da fonte usada (Watt)"
|
||||||
"desc": "Potência da fonte usada (Watt)"
|
},
|
||||||
},
|
"PDNegTimeout": {
|
||||||
"PDNegTimeout": {
|
"displayText": "PD\ntimeout",
|
||||||
"text2": [
|
"description": "PD negotiation timeout in 100ms steps for compatibility with some QC chargers (0: disabled)"
|
||||||
"PD",
|
},
|
||||||
"timeout"
|
"BoostTemperature": {
|
||||||
],
|
"displayText": "Modo turbo\ntemperat.",
|
||||||
"desc": "PD negotiation timeout in 100ms steps for compatibility with some QC chargers (0: disabled)"
|
"description": "Ajuste de temperatura do \"modo turbo\""
|
||||||
},
|
},
|
||||||
"BoostTemperature": {
|
"AutoStart": {
|
||||||
"text2": [
|
"displayText": "Partida\nautomática",
|
||||||
"Modo turbo",
|
"description": "Aquece a ponta automaticamente ao ligar (D=desligar | S=soldagem | H=hibernar | A=hibernar temp. ambiente)"
|
||||||
"temperat."
|
},
|
||||||
],
|
"TempChangeShortStep": {
|
||||||
"desc": "Ajuste de temperatura do \"modo turbo\""
|
"displayText": "Temp change\nshort",
|
||||||
},
|
"description": "Temperature-change-increment on short button press"
|
||||||
"AutoStart": {
|
},
|
||||||
"text2": [
|
"TempChangeLongStep": {
|
||||||
"Partida",
|
"displayText": "Temp change\nlong",
|
||||||
"automática"
|
"description": "Temperature-change-increment on long button press"
|
||||||
],
|
},
|
||||||
"desc": "Aquece a ponta automaticamente ao ligar (D=desligar | S=soldagem | H=hibernar | A=hibernar temp. ambiente)"
|
"LockingMode": {
|
||||||
},
|
"displayText": "Allow locking\nbuttons",
|
||||||
"TempChangeShortStep": {
|
"description": "While soldering, hold down both buttons to toggle locking them (D=disable | B=boost mode only | F=full locking)"
|
||||||
"text2": [
|
},
|
||||||
"Temp change",
|
"MotionSensitivity": {
|
||||||
"short"
|
"displayText": "Sensibilidade\nmovimento",
|
||||||
],
|
"description": "Sensibilidade ao movimento (0=Desligado | 1=Menor | ... | 9=Maior)"
|
||||||
"desc": "Temperature-change-increment on short button press"
|
},
|
||||||
},
|
"SleepTemperature": {
|
||||||
"TempChangeLongStep": {
|
"displayText": "Temperat.\nrepouso",
|
||||||
"text2": [
|
"description": "Temperatura de repouso (C)"
|
||||||
"Temp change",
|
},
|
||||||
"long"
|
"SleepTimeout": {
|
||||||
],
|
"displayText": "Tempo\nrepouso",
|
||||||
"desc": "Temperature-change-increment on long button press"
|
"description": "Tempo para repouso (Minutos | Segundos)"
|
||||||
},
|
},
|
||||||
"LockingMode": {
|
"ShutdownTimeout": {
|
||||||
"text2": [
|
"displayText": "Tempo\ndesligam.",
|
||||||
"Allow locking",
|
"description": "Tempo para desligamento (Minutos)"
|
||||||
"buttons"
|
},
|
||||||
],
|
"HallEffSensitivity": {
|
||||||
"desc": "While soldering, hold down both buttons to toggle locking them (D=disable | B=boost mode only | F=full locking)"
|
"displayText": "Hall sensor\nsensitivity",
|
||||||
},
|
"description": "Sensitivity to magnets (0=Desligado | 1=Menor | ... | 9=Maior)"
|
||||||
"MotionSensitivity": {
|
},
|
||||||
"text2": [
|
"TemperatureUnit": {
|
||||||
"Sensibilidade",
|
"displayText": "Unidade\ntemperatura",
|
||||||
"movimento"
|
"description": "Unidade de temperatura (C=Celsius | F=Fahrenheit)"
|
||||||
],
|
},
|
||||||
"desc": "Sensibilidade ao movimento (0=Desligado | 1=Menor | ... | 9=Maior)"
|
"DisplayRotation": {
|
||||||
},
|
"displayText": "Orientação\ntela",
|
||||||
"SleepTemperature": {
|
"description": "Orientação da tela (D=estro | C=anhoto | A=utomática)"
|
||||||
"text2": [
|
},
|
||||||
"Temperat.",
|
"CooldownBlink": {
|
||||||
"repouso"
|
"displayText": "Piscar ao\narrefecer",
|
||||||
],
|
"description": "Faz o valor da temperatura piscar durante o arrefecimento"
|
||||||
"desc": "Temperatura de repouso (C)"
|
},
|
||||||
},
|
"ScrollingSpeed": {
|
||||||
"SleepTimeout": {
|
"displayText": "Velocidade\ntexto ajuda",
|
||||||
"text2": [
|
"description": "Velocidade a que o texto é exibido"
|
||||||
"Tempo",
|
},
|
||||||
"repouso"
|
"ReverseButtonTempChange": {
|
||||||
],
|
"displayText": "Swap\n+ - keys",
|
||||||
"desc": "Tempo para repouso (Minutos | Segundos)"
|
"description": "Reverse assignment of buttons for temperature adjustment"
|
||||||
},
|
},
|
||||||
"ShutdownTimeout": {
|
"AnimSpeed": {
|
||||||
"text2": [
|
"displayText": "Anim.\nspeed",
|
||||||
"Tempo",
|
"description": "Pace of icon animations in menu (O=off | S=slow | M=medium | F=fast)"
|
||||||
"desligam."
|
},
|
||||||
],
|
"AnimLoop": {
|
||||||
"desc": "Tempo para desligamento (Minutos)"
|
"displayText": "Anim.\nloop",
|
||||||
},
|
"description": "Loop icon animations in main menu"
|
||||||
"HallEffSensitivity": {
|
},
|
||||||
"text2": [
|
"Brightness": {
|
||||||
"Hall sensor",
|
"displayText": "Screen\nbrightness",
|
||||||
"sensitivity"
|
"description": "Adjust the OLED screen brightness"
|
||||||
],
|
},
|
||||||
"desc": "Sensitivity to magnets (0=Desligado | 1=Menor | ... | 9=Maior)"
|
"ColourInversion": {
|
||||||
},
|
"displayText": "Invert\nscreen",
|
||||||
"TemperatureUnit": {
|
"description": "Invert the OLED screen colors"
|
||||||
"text2": [
|
},
|
||||||
"Unidade",
|
"LOGOTime": {
|
||||||
"temperatura"
|
"displayText": "Boot logo\nduration",
|
||||||
],
|
"description": "Set boot logo duration (s=seconds)"
|
||||||
"desc": "Unidade de temperatura (C=Celsius | F=Fahrenheit)"
|
},
|
||||||
},
|
"AdvancedIdle": {
|
||||||
"DisplayRotation": {
|
"displayText": "Tela repouso\navançada",
|
||||||
"text2": [
|
"description": "Exibe informações avançadas quando em espera"
|
||||||
"Orientação",
|
},
|
||||||
"tela"
|
"AdvancedSoldering": {
|
||||||
],
|
"displayText": "Tela trabalho\navançada",
|
||||||
"desc": "Orientação da tela (D=estro | C=anhoto | A=utomática)"
|
"description": "Exibe informações avançadas durante o uso"
|
||||||
},
|
},
|
||||||
"CooldownBlink": {
|
"PowerLimit": {
|
||||||
"text2": [
|
"displayText": "Power\nlimit",
|
||||||
"Piscar ao",
|
"description": "Maximum power the iron can use (W=watt)"
|
||||||
"arrefecer"
|
},
|
||||||
],
|
"CalibrateCJC": {
|
||||||
"desc": "Faz o valor da temperatura piscar durante o arrefecimento"
|
"displayText": "Calibrate CJC\nat next boot",
|
||||||
},
|
"description": "At next boot tip Cold Junction Compensation will be calibrated (not required if Delta T is < 5°C)"
|
||||||
"ScrollingSpeed": {
|
},
|
||||||
"text2": [
|
"VoltageCalibration": {
|
||||||
"Velocidade",
|
"displayText": "Calibrar\ntensão",
|
||||||
"texto ajuda"
|
"description": "Calibra a tensão de alimentação. Use os botões para ajustar o valor. Mantenha pressionado para sair"
|
||||||
],
|
},
|
||||||
"desc": "Velocidade a que o texto é exibido"
|
"PowerPulsePower": {
|
||||||
},
|
"displayText": "Power\npulse",
|
||||||
"ReverseButtonTempChange": {
|
"description": "Intensity of power of keep-awake-pulse (W=watt)"
|
||||||
"text2": [
|
},
|
||||||
"Swap",
|
"PowerPulseWait": {
|
||||||
"+ - keys"
|
"displayText": "Power pulse\ndelay",
|
||||||
],
|
"description": "Delay before keep-awake-pulse is triggered (x 2.5s)"
|
||||||
"desc": "Reverse assignment of buttons for temperature adjustment"
|
},
|
||||||
},
|
"PowerPulseDuration": {
|
||||||
"AnimSpeed": {
|
"displayText": "Power pulse\nduration",
|
||||||
"text2": [
|
"description": "Keep-awake-pulse duration (x 250ms)"
|
||||||
"Anim.",
|
},
|
||||||
"speed"
|
"SettingsReset": {
|
||||||
],
|
"displayText": "Reset de\nfábrica?",
|
||||||
"desc": "Pace of icon animations in menu (O=off | S=slow | M=medium | F=fast)"
|
"description": "Reverte todos ajustes"
|
||||||
},
|
},
|
||||||
"AnimLoop": {
|
"LanguageSwitch": {
|
||||||
"text2": [
|
"displayText": "Idioma:\n PT Português",
|
||||||
"Anim.",
|
"description": ""
|
||||||
"loop"
|
}
|
||||||
],
|
}
|
||||||
"desc": "Loop icon animations in main menu"
|
|
||||||
},
|
|
||||||
"Brightness": {
|
|
||||||
"text2": [
|
|
||||||
"Screen",
|
|
||||||
"brightness"
|
|
||||||
],
|
|
||||||
"desc": "Adjust the OLED screen brightness"
|
|
||||||
},
|
|
||||||
"ColourInversion": {
|
|
||||||
"text2": [
|
|
||||||
"Invert",
|
|
||||||
"screen"
|
|
||||||
],
|
|
||||||
"desc": "Invert the OLED screen colors"
|
|
||||||
},
|
|
||||||
"LOGOTime": {
|
|
||||||
"text2": [
|
|
||||||
"Boot logo",
|
|
||||||
"duration"
|
|
||||||
],
|
|
||||||
"desc": "Set boot logo duration (s=seconds)"
|
|
||||||
},
|
|
||||||
"AdvancedIdle": {
|
|
||||||
"text2": [
|
|
||||||
"Tela repouso",
|
|
||||||
"avançada"
|
|
||||||
],
|
|
||||||
"desc": "Exibe informações avançadas quando em espera"
|
|
||||||
},
|
|
||||||
"AdvancedSoldering": {
|
|
||||||
"text2": [
|
|
||||||
"Tela trabalho",
|
|
||||||
"avançada"
|
|
||||||
],
|
|
||||||
"desc": "Exibe informações avançadas durante o uso"
|
|
||||||
},
|
|
||||||
"PowerLimit": {
|
|
||||||
"text2": [
|
|
||||||
"Power",
|
|
||||||
"limit"
|
|
||||||
],
|
|
||||||
"desc": "Maximum power the iron can use (W=watt)"
|
|
||||||
},
|
|
||||||
"CalibrateCJC": {
|
|
||||||
"text2": [
|
|
||||||
"Calibrate CJC",
|
|
||||||
"at next boot"
|
|
||||||
],
|
|
||||||
"desc": "At next boot tip Cold Junction Compensation will be calibrated (not required if Delta T is < 5°C)"
|
|
||||||
},
|
|
||||||
"VoltageCalibration": {
|
|
||||||
"text2": [
|
|
||||||
"Calibrar",
|
|
||||||
"tensão"
|
|
||||||
],
|
|
||||||
"desc": "Calibra a tensão de alimentação. Use os botões para ajustar o valor. Mantenha pressionado para sair"
|
|
||||||
},
|
|
||||||
"PowerPulsePower": {
|
|
||||||
"text2": [
|
|
||||||
"Power",
|
|
||||||
"pulse"
|
|
||||||
],
|
|
||||||
"desc": "Intensity of power of keep-awake-pulse (W=watt)"
|
|
||||||
},
|
|
||||||
"PowerPulseWait": {
|
|
||||||
"text2": [
|
|
||||||
"Power pulse",
|
|
||||||
"delay"
|
|
||||||
],
|
|
||||||
"desc": "Delay before keep-awake-pulse is triggered (x 2.5s)"
|
|
||||||
},
|
|
||||||
"PowerPulseDuration": {
|
|
||||||
"text2": [
|
|
||||||
"Power pulse",
|
|
||||||
"duration"
|
|
||||||
],
|
|
||||||
"desc": "Keep-awake-pulse duration (x 250ms)"
|
|
||||||
},
|
|
||||||
"SettingsReset": {
|
|
||||||
"text2": [
|
|
||||||
"Reset de",
|
|
||||||
"fábrica?"
|
|
||||||
],
|
|
||||||
"desc": "Reverte todos ajustes"
|
|
||||||
},
|
|
||||||
"LanguageSwitch": {
|
|
||||||
"text2": [
|
|
||||||
"Idioma:",
|
|
||||||
" PT Português"
|
|
||||||
],
|
|
||||||
"desc": ""
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@@ -1,337 +1,243 @@
|
|||||||
{
|
{
|
||||||
"languageCode": "RO",
|
"languageCode": "RO",
|
||||||
"languageLocalName": "Română",
|
"languageLocalName": "Română",
|
||||||
"tempUnitFahrenheit": true,
|
"tempUnitFahrenheit": true,
|
||||||
"messages": {
|
"messagesWarn": {
|
||||||
"SettingsCalibrationWarning": "Before rebooting, make sure tip & handle are at room temperature!",
|
"CJCCalibrationDone": {
|
||||||
"CJCCalibrating": "calibrating",
|
"message": "Calibration\ndone!"
|
||||||
"SettingsResetWarning": "Sigur doriti să restaurati la setările implicite?",
|
},
|
||||||
"UVLOWarningString": "DC LOW",
|
"ResetOKMessage": {
|
||||||
"UndervoltageString": "Sub tensiune",
|
"message": "Reset OK"
|
||||||
"InputVoltageString": "Intrare V: ",
|
},
|
||||||
"SleepingSimpleString": "Zzzz",
|
"SettingsResetMessage": {
|
||||||
"SleepingAdvancedString": "Adormit...",
|
"message": "Setările au fost\nresetate!"
|
||||||
"SleepingTipAdvancedString": "Tip:",
|
},
|
||||||
"OffString": "Nu",
|
"NoAccelerometerMessage": {
|
||||||
"DeviceFailedValidationWarning": "Your device is most likely a counterfeit!"
|
"message": "Nu accelerometru\ndetectat!"
|
||||||
},
|
},
|
||||||
"messagesWarn": {
|
"NoPowerDeliveryMessage": {
|
||||||
"CJCCalibrationDone": [
|
"message": "Fără USB-PD IC\ndetectat!"
|
||||||
"Calibration",
|
},
|
||||||
"done!"
|
"LockingKeysString": {
|
||||||
],
|
"message": "BLOCAT"
|
||||||
"ResetOKMessage": "Reset OK",
|
},
|
||||||
"SettingsResetMessage": [
|
"UnlockingKeysString": {
|
||||||
"Setările au fost",
|
"message": "DEBLOCAT"
|
||||||
"resetate!"
|
},
|
||||||
],
|
"WarningKeysLockedString": {
|
||||||
"NoAccelerometerMessage": [
|
"message": "!BLOCAT!"
|
||||||
"Nu accelerometru",
|
},
|
||||||
"detectat!"
|
"WarningThermalRunaway": {
|
||||||
],
|
"message": "Incalzire\nEsuata"
|
||||||
"NoPowerDeliveryMessage": [
|
},
|
||||||
"Fără USB-PD IC",
|
"SettingsCalibrationWarning": {
|
||||||
"detectat!"
|
"message": "Before rebooting, make sure tip & handle are at room temperature!"
|
||||||
],
|
},
|
||||||
"LockingKeysString": "BLOCAT",
|
"CJCCalibrating": {
|
||||||
"UnlockingKeysString": "DEBLOCAT",
|
"message": "calibrating"
|
||||||
"WarningKeysLockedString": "!BLOCAT!",
|
},
|
||||||
"WarningThermalRunaway": [
|
"SettingsResetWarning": {
|
||||||
"Incalzire",
|
"message": "Sigur doriti să restaurati la setările implicite?"
|
||||||
"Esuata"
|
},
|
||||||
]
|
"UVLOWarningString": {
|
||||||
},
|
"message": "DC LOW"
|
||||||
"characters": {
|
},
|
||||||
"SettingRightChar": "D",
|
"UndervoltageString": {
|
||||||
"SettingLeftChar": "S",
|
"message": "Sub tensiune"
|
||||||
"SettingAutoChar": "A",
|
},
|
||||||
"SettingOffChar": "O",
|
"InputVoltageString": {
|
||||||
"SettingSlowChar": "Î",
|
"message": "Intrare V: "
|
||||||
"SettingMediumChar": "M",
|
},
|
||||||
"SettingFastChar": "R",
|
"SleepingSimpleString": {
|
||||||
"SettingStartNoneChar": "O",
|
"message": "Zzzz"
|
||||||
"SettingStartSolderingChar": "S",
|
},
|
||||||
"SettingStartSleepChar": "Z",
|
"SleepingAdvancedString": {
|
||||||
"SettingStartSleepOffChar": "R",
|
"message": "Adormit..."
|
||||||
"SettingLockDisableChar": "D",
|
},
|
||||||
"SettingLockBoostChar": "B",
|
"SleepingTipAdvancedString": {
|
||||||
"SettingLockFullChar": "F"
|
"message": "Tip:"
|
||||||
},
|
},
|
||||||
"menuGroups": {
|
"OffString": {
|
||||||
"PowerMenu": {
|
"message": "Nu"
|
||||||
"text2": [
|
},
|
||||||
"Setări de",
|
"DeviceFailedValidationWarning": {
|
||||||
"alimentare"
|
"message": "Your device is most likely a counterfeit!"
|
||||||
],
|
}
|
||||||
"desc": ""
|
},
|
||||||
},
|
"characters": {
|
||||||
"SolderingMenu": {
|
"SettingRightChar": "D",
|
||||||
"text2": [
|
"SettingLeftChar": "S",
|
||||||
"Setări de",
|
"SettingAutoChar": "A",
|
||||||
"lipire"
|
"SettingOffChar": "O",
|
||||||
],
|
"SettingSlowChar": "Î",
|
||||||
"desc": ""
|
"SettingMediumChar": "M",
|
||||||
},
|
"SettingFastChar": "R",
|
||||||
"PowerSavingMenu": {
|
"SettingStartNoneChar": "O",
|
||||||
"text2": [
|
"SettingStartSolderingChar": "S",
|
||||||
"Modul",
|
"SettingStartSleepChar": "Z",
|
||||||
"repaus"
|
"SettingStartSleepOffChar": "R",
|
||||||
],
|
"SettingLockDisableChar": "D",
|
||||||
"desc": ""
|
"SettingLockBoostChar": "B",
|
||||||
},
|
"SettingLockFullChar": "F"
|
||||||
"UIMenu": {
|
},
|
||||||
"text2": [
|
"menuGroups": {
|
||||||
"Interfată",
|
"PowerMenu": {
|
||||||
"utilizator"
|
"displayText": "Setări de\nalimentare",
|
||||||
],
|
"description": ""
|
||||||
"desc": ""
|
},
|
||||||
},
|
"SolderingMenu": {
|
||||||
"AdvancedMenu": {
|
"displayText": "Setări de\nlipire",
|
||||||
"text2": [
|
"description": ""
|
||||||
"Optiuni",
|
},
|
||||||
"avansate"
|
"PowerSavingMenu": {
|
||||||
],
|
"displayText": "Modul\nrepaus",
|
||||||
"desc": ""
|
"description": ""
|
||||||
}
|
},
|
||||||
},
|
"UIMenu": {
|
||||||
"menuOptions": {
|
"displayText": "Interfată\nutilizator",
|
||||||
"DCInCutoff": {
|
"description": ""
|
||||||
"text2": [
|
},
|
||||||
"Sursa de",
|
"AdvancedMenu": {
|
||||||
"alimentare"
|
"displayText": "Optiuni\navansate",
|
||||||
],
|
"description": ""
|
||||||
"desc": "Sursa de alimentare. Setează tensiunea de întrerupere. (DC 10V) (S 3.3V per celulă, dezactivati limita de alimentare)"
|
}
|
||||||
},
|
},
|
||||||
"MinVolCell": {
|
"menuOptions": {
|
||||||
"text2": [
|
"DCInCutoff": {
|
||||||
"Voltaj",
|
"displayText": "Sursa de\nalimentare",
|
||||||
"minim"
|
"description": "Sursa de alimentare. Setează tensiunea de întrerupere. (DC 10V) (S 3.3V per celulă, dezactivati limita de alimentare)"
|
||||||
],
|
},
|
||||||
"desc": "Tensiunea minimă admisă pe celulă (3S: 3 - 3.7V | 4-6S: 2.4 - 3.7V)"
|
"MinVolCell": {
|
||||||
},
|
"displayText": "Voltaj\nminim",
|
||||||
"QCMaxVoltage": {
|
"description": "Tensiunea minimă admisă pe celulă (3S: 3 - 3.7V | 4-6S: 2.4 - 3.7V)"
|
||||||
"text2": [
|
},
|
||||||
"QC",
|
"QCMaxVoltage": {
|
||||||
"voltaj"
|
"displayText": "QC\nvoltaj",
|
||||||
],
|
"description": "Tensiunea maximă QC dorită pentru care negociază letconul"
|
||||||
"desc": "Tensiunea maximă QC dorită pentru care negociază letconul"
|
},
|
||||||
},
|
"PDNegTimeout": {
|
||||||
"PDNegTimeout": {
|
"displayText": "PD\ntimeout",
|
||||||
"text2": [
|
"description": "Timp limita de negociere pentru tranzactia PD, in pasi de 100ms, pentru compatibilitate cu alimentatoarele QC"
|
||||||
"PD",
|
},
|
||||||
"timeout"
|
"BoostTemperature": {
|
||||||
],
|
"displayText": "Boost\ntemp",
|
||||||
"desc": "Timp limita de negociere pentru tranzactia PD, in pasi de 100ms, pentru compatibilitate cu alimentatoarele QC"
|
"description": "Temperatura utilizată în \"modul boost\""
|
||||||
},
|
},
|
||||||
"BoostTemperature": {
|
"AutoStart": {
|
||||||
"text2": [
|
"displayText": "Auto\nstart",
|
||||||
"Boost",
|
"description": "Start letcon în modul de lipire la pornire (O=oprit | S=lipire | Z=repaus | R=repaus la temperatura camerei)"
|
||||||
"temp"
|
},
|
||||||
],
|
"TempChangeShortStep": {
|
||||||
"desc": "Temperatura utilizată în \"modul boost\""
|
"displayText": "Schimbare temp.\napăsare scută",
|
||||||
},
|
"description": "Schimbarea temperaturii la apăsarea scurtă a butonului"
|
||||||
"AutoStart": {
|
},
|
||||||
"text2": [
|
"TempChangeLongStep": {
|
||||||
"Auto",
|
"displayText": "Schimbare temp.\napăsare lungă",
|
||||||
"start"
|
"description": "Schimbarea temperaturii la apăsarea lungă a butonului"
|
||||||
],
|
},
|
||||||
"desc": "Start letcon în modul de lipire la pornire (O=oprit | S=lipire | Z=repaus | R=repaus la temperatura camerei)"
|
"LockingMode": {
|
||||||
},
|
"displayText": "Blocare\nbutoane",
|
||||||
"TempChangeShortStep": {
|
"description": "Când lipiti, apăsati lung ambele butoane, pentru a le bloca (D=dezactivare | B=numai \"modul boost\" | F=blocare completă)"
|
||||||
"text2": [
|
},
|
||||||
"Schimbare temp.",
|
"MotionSensitivity": {
|
||||||
"apăsare scută"
|
"displayText": "Sensibilitate\nla miscare",
|
||||||
],
|
"description": "Sensibilitate senzor miscare (0=oprit | 1=putin sensibil | ... | 9=cel mai sensibil)"
|
||||||
"desc": "Schimbarea temperaturii la apăsarea scurtă a butonului"
|
},
|
||||||
},
|
"SleepTemperature": {
|
||||||
"TempChangeLongStep": {
|
"displayText": "Temp\nrepaus",
|
||||||
"text2": [
|
"description": "Temperatura vârfului în \"modul repaus\""
|
||||||
"Schimbare temp.",
|
},
|
||||||
"apăsare lungă"
|
"SleepTimeout": {
|
||||||
],
|
"displayText": "Expirare\nrepaus",
|
||||||
"desc": "Schimbarea temperaturii la apăsarea lungă a butonului"
|
"description": "Interval înainte de lansarea \"modului de repaus\" în (s=secunde | m=minute)"
|
||||||
},
|
},
|
||||||
"LockingMode": {
|
"ShutdownTimeout": {
|
||||||
"text2": [
|
"displayText": "Expirare\noprire",
|
||||||
"Blocare",
|
"description": "Interval înainte ca letconul să se oprească (m=minute)"
|
||||||
"butoane"
|
},
|
||||||
],
|
"HallEffSensitivity": {
|
||||||
"desc": "Când lipiti, apăsati lung ambele butoane, pentru a le bloca (D=dezactivare | B=numai \"modul boost\" | F=blocare completă)"
|
"displayText": "Sensibilitate\nsenzor Hall",
|
||||||
},
|
"description": "Sensibilitate senzor cu efect Hall pentru a detecta repausul (0=oprit | 1=putin sensibil | ... | 9=cel mai sensibil)"
|
||||||
"MotionSensitivity": {
|
},
|
||||||
"text2": [
|
"TemperatureUnit": {
|
||||||
"Sensibilitate",
|
"displayText": "Unitate de\ntemperatură",
|
||||||
"la miscare"
|
"description": "C=Celsius | F=Fahrenheit"
|
||||||
],
|
},
|
||||||
"desc": "Sensibilitate senzor miscare (0=oprit | 1=putin sensibil | ... | 9=cel mai sensibil)"
|
"DisplayRotation": {
|
||||||
},
|
"displayText": "Orientare\necran",
|
||||||
"SleepTemperature": {
|
"description": "R=dreptaci | L=stângaci | A=auto"
|
||||||
"text2": [
|
},
|
||||||
"Temp",
|
"CooldownBlink": {
|
||||||
"repaus"
|
"displayText": "Clipeste\nla răcire",
|
||||||
],
|
"description": "Clipeste temperatura după oprirea încălzirii, în timp ce vârful este încă fierbinte"
|
||||||
"desc": "Temperatura vârfului în \"modul repaus\""
|
},
|
||||||
},
|
"ScrollingSpeed": {
|
||||||
"SleepTimeout": {
|
"displayText": "Viteză\nderulare",
|
||||||
"text2": [
|
"description": "Viteză derulare text cu informatii la (S=lent | F=rapid)"
|
||||||
"Expirare",
|
},
|
||||||
"repaus"
|
"ReverseButtonTempChange": {
|
||||||
],
|
"displayText": "Inversare\n+ - butoane",
|
||||||
"desc": "Interval înainte de lansarea \"modului de repaus\" în (s=secunde | m=minute)"
|
"description": "Inversarea butoanelor de reglare a temperaturii"
|
||||||
},
|
},
|
||||||
"ShutdownTimeout": {
|
"AnimSpeed": {
|
||||||
"text2": [
|
"displayText": "Animatii\nviteză",
|
||||||
"Expirare",
|
"description": "Ritmul animatiilor pictogramei din meniu (O=oprit | Î=încet | M=mediu | R=rapid)"
|
||||||
"oprire"
|
},
|
||||||
],
|
"AnimLoop": {
|
||||||
"desc": "Interval înainte ca letconul să se oprească (m=minute)"
|
"displayText": "Animatii\nbuclă",
|
||||||
},
|
"description": "Animatii de pictograme în meniul principal"
|
||||||
"HallEffSensitivity": {
|
},
|
||||||
"text2": [
|
"Brightness": {
|
||||||
"Sensibilitate",
|
"displayText": "Ecranului\nluminozitatea",
|
||||||
"senzor Hall"
|
"description": "Ajusteaza luminozitatea ecranului"
|
||||||
],
|
},
|
||||||
"desc": "Sensibilitate senzor cu efect Hall pentru a detecta repausul (0=oprit | 1=putin sensibil | ... | 9=cel mai sensibil)"
|
"ColourInversion": {
|
||||||
},
|
"displayText": "Inverseaza\nculoarea",
|
||||||
"TemperatureUnit": {
|
"description": "Inverseaza culoarea ecranului"
|
||||||
"text2": [
|
},
|
||||||
"Unitate de",
|
"LOGOTime": {
|
||||||
"temperatură"
|
"displayText": "Durată\nlogo încărcare",
|
||||||
],
|
"description": "Setati durata logo de pornire (s=secunde)"
|
||||||
"desc": "C=Celsius | F=Fahrenheit"
|
},
|
||||||
},
|
"AdvancedIdle": {
|
||||||
"DisplayRotation": {
|
"displayText": "Detalii,\necran inactiv",
|
||||||
"text2": [
|
"description": "Afisati informatii detaliate într-un font mai mic pe ecranul de repaus"
|
||||||
"Orientare",
|
},
|
||||||
"ecran"
|
"AdvancedSoldering": {
|
||||||
],
|
"displayText": "Detalii\necran lipire",
|
||||||
"desc": "R=dreptaci | L=stângaci | A=auto"
|
"description": "Afisati informatii detaliate într-un font mai mic pe ecranul de lipire"
|
||||||
},
|
},
|
||||||
"CooldownBlink": {
|
"PowerLimit": {
|
||||||
"text2": [
|
"displayText": "Putere\nlimită",
|
||||||
"Clipeste",
|
"description": "Puterea maximă pe care letconul o poate folosi (W=watt)"
|
||||||
"la răcire"
|
},
|
||||||
],
|
"CalibrateCJC": {
|
||||||
"desc": "Clipeste temperatura după oprirea încălzirii, în timp ce vârful este încă fierbinte"
|
"displayText": "Calibrare CJC\nla următoarea pornire",
|
||||||
},
|
"description": "At next boot tip Cold Junction Compensation will be calibrated (not required if Delta T is < 5°C)"
|
||||||
"ScrollingSpeed": {
|
},
|
||||||
"text2": [
|
"VoltageCalibration": {
|
||||||
"Viteză",
|
"displayText": "Calibrare tens.\nde intrare?",
|
||||||
"derulare"
|
"description": "Porniti calibrarea VIN (apăsati lung pentru a iesi)"
|
||||||
],
|
},
|
||||||
"desc": "Viteză derulare text cu informatii la (S=lent | F=rapid)"
|
"PowerPulsePower": {
|
||||||
},
|
"displayText": "Putere\npuls",
|
||||||
"ReverseButtonTempChange": {
|
"description": "Puterea pulsului de mentinere activa a blocului de alimentare (watt)"
|
||||||
"text2": [
|
},
|
||||||
"Inversare",
|
"PowerPulseWait": {
|
||||||
"+ - butoane"
|
"displayText": "Întârziere\npuls putere",
|
||||||
],
|
"description": "Perioada pulsului de mentinere (x 2.5s)"
|
||||||
"desc": "Inversarea butoanelor de reglare a temperaturii"
|
},
|
||||||
},
|
"PowerPulseDuration": {
|
||||||
"AnimSpeed": {
|
"displayText": "Durată\npuls putere",
|
||||||
"text2": [
|
"description": "Durata pulsului de mentinere (x 250ms)"
|
||||||
"Animatii",
|
},
|
||||||
"viteză"
|
"SettingsReset": {
|
||||||
],
|
"displayText": "Setări\ndin fabrică",
|
||||||
"desc": "Ritmul animatiilor pictogramei din meniu (O=oprit | Î=încet | M=mediu | R=rapid)"
|
"description": "Reveniti la setările din fabrică"
|
||||||
},
|
},
|
||||||
"AnimLoop": {
|
"LanguageSwitch": {
|
||||||
"text2": [
|
"displayText": "Limbă:\n RO Română",
|
||||||
"Animatii",
|
"description": ""
|
||||||
"buclă"
|
}
|
||||||
],
|
}
|
||||||
"desc": "Animatii de pictograme în meniul principal"
|
|
||||||
},
|
|
||||||
"Brightness": {
|
|
||||||
"text2": [
|
|
||||||
"Ecranului",
|
|
||||||
"luminozitatea"
|
|
||||||
],
|
|
||||||
"desc": "Ajusteaza luminozitatea ecranului"
|
|
||||||
},
|
|
||||||
"ColourInversion": {
|
|
||||||
"text2": [
|
|
||||||
"Inverseaza",
|
|
||||||
"culoarea"
|
|
||||||
],
|
|
||||||
"desc": "Inverseaza culoarea ecranului"
|
|
||||||
},
|
|
||||||
"LOGOTime": {
|
|
||||||
"text2": [
|
|
||||||
"Durată",
|
|
||||||
"logo încărcare"
|
|
||||||
],
|
|
||||||
"desc": "Setati durata logo de pornire (s=secunde)"
|
|
||||||
},
|
|
||||||
"AdvancedIdle": {
|
|
||||||
"text2": [
|
|
||||||
"Detalii,",
|
|
||||||
"ecran inactiv"
|
|
||||||
],
|
|
||||||
"desc": "Afisati informatii detaliate într-un font mai mic pe ecranul de repaus"
|
|
||||||
},
|
|
||||||
"AdvancedSoldering": {
|
|
||||||
"text2": [
|
|
||||||
"Detalii",
|
|
||||||
"ecran lipire"
|
|
||||||
],
|
|
||||||
"desc": "Afisati informatii detaliate într-un font mai mic pe ecranul de lipire"
|
|
||||||
},
|
|
||||||
"PowerLimit": {
|
|
||||||
"text2": [
|
|
||||||
"Putere",
|
|
||||||
"limită"
|
|
||||||
],
|
|
||||||
"desc": "Puterea maximă pe care letconul o poate folosi (W=watt)"
|
|
||||||
},
|
|
||||||
"CalibrateCJC": {
|
|
||||||
"text2": [
|
|
||||||
"Calibrare CJC",
|
|
||||||
"la următoarea pornire"
|
|
||||||
],
|
|
||||||
"desc": "At next boot tip Cold Junction Compensation will be calibrated (not required if Delta T is < 5°C)"
|
|
||||||
},
|
|
||||||
"VoltageCalibration": {
|
|
||||||
"text2": [
|
|
||||||
"Calibrare tens.",
|
|
||||||
"de intrare?"
|
|
||||||
],
|
|
||||||
"desc": "Porniti calibrarea VIN (apăsati lung pentru a iesi)"
|
|
||||||
},
|
|
||||||
"PowerPulsePower": {
|
|
||||||
"text2": [
|
|
||||||
"Putere",
|
|
||||||
"puls"
|
|
||||||
],
|
|
||||||
"desc": "Puterea pulsului de mentinere activa a blocului de alimentare (watt)"
|
|
||||||
},
|
|
||||||
"PowerPulseWait": {
|
|
||||||
"text2": [
|
|
||||||
"Întârziere",
|
|
||||||
"puls putere"
|
|
||||||
],
|
|
||||||
"desc": "Perioada pulsului de mentinere (x 2.5s)"
|
|
||||||
},
|
|
||||||
"PowerPulseDuration": {
|
|
||||||
"text2": [
|
|
||||||
"Durată",
|
|
||||||
"puls putere"
|
|
||||||
],
|
|
||||||
"desc": "Durata pulsului de mentinere (x 250ms)"
|
|
||||||
},
|
|
||||||
"SettingsReset": {
|
|
||||||
"text2": [
|
|
||||||
"Setări",
|
|
||||||
"din fabrică"
|
|
||||||
],
|
|
||||||
"desc": "Reveniti la setările din fabrică"
|
|
||||||
},
|
|
||||||
"LanguageSwitch": {
|
|
||||||
"text2": [
|
|
||||||
"Limbă:",
|
|
||||||
" RO Română"
|
|
||||||
],
|
|
||||||
"desc": ""
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@@ -1,337 +1,243 @@
|
|||||||
{
|
{
|
||||||
"languageCode": "RU",
|
"languageCode": "RU",
|
||||||
"languageLocalName": "Русский",
|
"languageLocalName": "Русский",
|
||||||
"tempUnitFahrenheit": false,
|
"tempUnitFahrenheit": false,
|
||||||
"messages": {
|
"messagesWarn": {
|
||||||
"SettingsCalibrationWarning": "Пожалуйста, убедитесь, что жало и корпус имеют комнатную температуру при следующей загрузке!",
|
"CJCCalibrationDone": {
|
||||||
"CJCCalibrating": "калибровка",
|
"message": "Калибровка\nзавершена!"
|
||||||
"SettingsResetWarning": "Вы уверены, что хотите сбросить настройки к значениям по умолчанию?",
|
},
|
||||||
"UVLOWarningString": "НАПРЯЖ--",
|
"ResetOKMessage": {
|
||||||
"UndervoltageString": "Низ. напряжение",
|
"message": "Сброс OK"
|
||||||
"InputVoltageString": "Питание В: ",
|
},
|
||||||
"SleepingSimpleString": "Zzzz",
|
"SettingsResetMessage": {
|
||||||
"SleepingAdvancedString": "Ожидание...",
|
"message": "Настройки\nсброшены!"
|
||||||
"SleepingTipAdvancedString": "Жало:",
|
},
|
||||||
"OffString": "Вык",
|
"NoAccelerometerMessage": {
|
||||||
"DeviceFailedValidationWarning": "Скорее всего, это устройство подделка!"
|
"message": "Не определен\nакселерометр!"
|
||||||
},
|
},
|
||||||
"messagesWarn": {
|
"NoPowerDeliveryMessage": {
|
||||||
"CJCCalibrationDone": [
|
"message": "USB-PD питание\nне обнаружено"
|
||||||
"Калибровка",
|
},
|
||||||
"завершена!"
|
"LockingKeysString": {
|
||||||
],
|
"message": "ЗАБЛОК"
|
||||||
"ResetOKMessage": "Сброс OK",
|
},
|
||||||
"SettingsResetMessage": [
|
"UnlockingKeysString": {
|
||||||
"Настройки",
|
"message": "РАЗБЛОК"
|
||||||
"сброшены!"
|
},
|
||||||
],
|
"WarningKeysLockedString": {
|
||||||
"NoAccelerometerMessage": [
|
"message": "!ЗАБЛОК!"
|
||||||
"Не определен",
|
},
|
||||||
"акселерометр!"
|
"WarningThermalRunaway": {
|
||||||
],
|
"message": "Thermal\nRunaway"
|
||||||
"NoPowerDeliveryMessage": [
|
},
|
||||||
"USB-PD питание",
|
"SettingsCalibrationWarning": {
|
||||||
"не обнаружено"
|
"message": "Пожалуйста, убедитесь, что жало и корпус имеют комнатную температуру при следующей загрузке!"
|
||||||
],
|
},
|
||||||
"LockingKeysString": "ЗАБЛОК",
|
"CJCCalibrating": {
|
||||||
"UnlockingKeysString": "РАЗБЛОК",
|
"message": "калибровка"
|
||||||
"WarningKeysLockedString": "!ЗАБЛОК!",
|
},
|
||||||
"WarningThermalRunaway": [
|
"SettingsResetWarning": {
|
||||||
"Thermal",
|
"message": "Вы уверены, что хотите сбросить настройки к значениям по умолчанию?"
|
||||||
"Runaway"
|
},
|
||||||
]
|
"UVLOWarningString": {
|
||||||
},
|
"message": "НАПРЯЖ--"
|
||||||
"characters": {
|
},
|
||||||
"SettingRightChar": "П",
|
"UndervoltageString": {
|
||||||
"SettingLeftChar": "Л",
|
"message": "Низ. напряжение"
|
||||||
"SettingAutoChar": "А",
|
},
|
||||||
"SettingOffChar": "О",
|
"InputVoltageString": {
|
||||||
"SettingSlowChar": "М",
|
"message": "Питание В: "
|
||||||
"SettingMediumChar": "С",
|
},
|
||||||
"SettingFastChar": "Б",
|
"SleepingSimpleString": {
|
||||||
"SettingStartNoneChar": "В",
|
"message": "Zzzz"
|
||||||
"SettingStartSolderingChar": "П",
|
},
|
||||||
"SettingStartSleepChar": "О",
|
"SleepingAdvancedString": {
|
||||||
"SettingStartSleepOffChar": "К",
|
"message": "Ожидание..."
|
||||||
"SettingLockDisableChar": "О",
|
},
|
||||||
"SettingLockBoostChar": "Т",
|
"SleepingTipAdvancedString": {
|
||||||
"SettingLockFullChar": "П"
|
"message": "Жало:"
|
||||||
},
|
},
|
||||||
"menuGroups": {
|
"OffString": {
|
||||||
"PowerMenu": {
|
"message": "Вык"
|
||||||
"text2": [
|
},
|
||||||
"Параметры",
|
"DeviceFailedValidationWarning": {
|
||||||
"питания"
|
"message": "Скорее всего, это устройство подделка!"
|
||||||
],
|
}
|
||||||
"desc": ""
|
},
|
||||||
},
|
"characters": {
|
||||||
"SolderingMenu": {
|
"SettingRightChar": "П",
|
||||||
"text2": [
|
"SettingLeftChar": "Л",
|
||||||
"Параметры",
|
"SettingAutoChar": "А",
|
||||||
"пайки"
|
"SettingOffChar": "О",
|
||||||
],
|
"SettingSlowChar": "М",
|
||||||
"desc": ""
|
"SettingMediumChar": "С",
|
||||||
},
|
"SettingFastChar": "Б",
|
||||||
"PowerSavingMenu": {
|
"SettingStartNoneChar": "В",
|
||||||
"text2": [
|
"SettingStartSolderingChar": "П",
|
||||||
"Режимы",
|
"SettingStartSleepChar": "О",
|
||||||
"сна"
|
"SettingStartSleepOffChar": "К",
|
||||||
],
|
"SettingLockDisableChar": "О",
|
||||||
"desc": ""
|
"SettingLockBoostChar": "Т",
|
||||||
},
|
"SettingLockFullChar": "П"
|
||||||
"UIMenu": {
|
},
|
||||||
"text2": [
|
"menuGroups": {
|
||||||
"Параметры",
|
"PowerMenu": {
|
||||||
"интерфейса"
|
"displayText": "Параметры\nпитания",
|
||||||
],
|
"description": ""
|
||||||
"desc": ""
|
},
|
||||||
},
|
"SolderingMenu": {
|
||||||
"AdvancedMenu": {
|
"displayText": "Параметры\nпайки",
|
||||||
"text2": [
|
"description": ""
|
||||||
"Дополнител.",
|
},
|
||||||
"настройки"
|
"PowerSavingMenu": {
|
||||||
],
|
"displayText": "Режимы\nсна",
|
||||||
"desc": ""
|
"description": ""
|
||||||
}
|
},
|
||||||
},
|
"UIMenu": {
|
||||||
"menuOptions": {
|
"displayText": "Параметры\nинтерфейса",
|
||||||
"DCInCutoff": {
|
"description": ""
|
||||||
"text2": [
|
},
|
||||||
"Источник",
|
"AdvancedMenu": {
|
||||||
"питания"
|
"displayText": "Дополнител.\nнастройки",
|
||||||
],
|
"description": ""
|
||||||
"desc": "Источник питания. Устанавливает напряжение отсечки. (DC 10В) (S 3,3В на ячейку, без лимита мощности)"
|
}
|
||||||
},
|
},
|
||||||
"MinVolCell": {
|
"menuOptions": {
|
||||||
"text2": [
|
"DCInCutoff": {
|
||||||
"Мин.",
|
"displayText": "Источник\nпитания",
|
||||||
"напр."
|
"description": "Источник питания. Устанавливает напряжение отсечки. (DC 10В) (S 3,3В на ячейку, без лимита мощности)"
|
||||||
],
|
},
|
||||||
"desc": "Минимальное разрешенное напряжение на ячейку (3S: 3 - 3,7V | 4S-6S: 2,4 - 3,7V)"
|
"MinVolCell": {
|
||||||
},
|
"displayText": "Мин.\nнапр.",
|
||||||
"QCMaxVoltage": {
|
"description": "Минимальное разрешенное напряжение на ячейку (3S: 3 - 3,7V | 4S-6S: 2,4 - 3,7V)"
|
||||||
"text2": [
|
},
|
||||||
"Ограничение",
|
"QCMaxVoltage": {
|
||||||
"напряжения QC"
|
"displayText": "Ограничение\nнапряжения QC",
|
||||||
],
|
"description": "Максимальное напряжение для согласования с QC источником питания"
|
||||||
"desc": "Максимальное напряжение для согласования с QC источником питания"
|
},
|
||||||
},
|
"PDNegTimeout": {
|
||||||
"PDNegTimeout": {
|
"displayText": "PD\nтайм-аут",
|
||||||
"text2": [
|
"description": "Power Delivery тайм-аут согласования с шагом 100 мс для совместимости с некоторыми быстрыми зарядными QC (0: отключено)"
|
||||||
"PD",
|
},
|
||||||
"тайм-аут"
|
"BoostTemperature": {
|
||||||
],
|
"displayText": "t° турбо\nрежима",
|
||||||
"desc": "Power Delivery тайм-аут согласования с шагом 100 мс для совместимости с некоторыми быстрыми зарядными QC (0: отключено)"
|
"description": "Температура жала в турбо-режиме"
|
||||||
},
|
},
|
||||||
"BoostTemperature": {
|
"AutoStart": {
|
||||||
"text2": [
|
"displayText": "Авто\nстарт",
|
||||||
"t° турбо",
|
"description": "Режим, в котором запускается паяльник при подаче питания (В=Выкл. | П=Пайка | О=Ожидание | К=Ожидание при комн. темп.)"
|
||||||
"режима"
|
},
|
||||||
],
|
"TempChangeShortStep": {
|
||||||
"desc": "Температура жала в турбо-режиме"
|
"displayText": "Шаг темп.\nкор. наж.",
|
||||||
},
|
"description": "Шаг изменения температуры при коротком нажатии кнопок"
|
||||||
"AutoStart": {
|
},
|
||||||
"text2": [
|
"TempChangeLongStep": {
|
||||||
"Авто",
|
"displayText": "Шаг темп.\nдлин. наж.",
|
||||||
"старт"
|
"description": "Шаг изменения температуры при длинном нажатии кнопок"
|
||||||
],
|
},
|
||||||
"desc": "Режим, в котором запускается паяльник при подаче питания (В=Выкл. | П=Пайка | О=Ожидание | К=Ожидание при комн. темп.)"
|
"LockingMode": {
|
||||||
},
|
"displayText": "Разрешить\nблок. кнопок",
|
||||||
"TempChangeShortStep": {
|
"description": "При работе длинное нажатие обеих кнопок блокирует их (О=Отключено | Т=Только турбо | П=Полная блокировка)"
|
||||||
"text2": [
|
},
|
||||||
"Шаг темп.",
|
"MotionSensitivity": {
|
||||||
"кор. наж."
|
"displayText": "Чувствительн.\nакселерометра",
|
||||||
],
|
"description": "Чувствительность акселерометра (0=Выкл. | 1=мин. | ... | 9=макс.)"
|
||||||
"desc": "Шаг изменения температуры при коротком нажатии кнопок"
|
},
|
||||||
},
|
"SleepTemperature": {
|
||||||
"TempChangeLongStep": {
|
"displayText": "Темп.\nожидания",
|
||||||
"text2": [
|
"description": "Температура жала в режиме ожидания"
|
||||||
"Шаг темп.",
|
},
|
||||||
"длин. наж."
|
"SleepTimeout": {
|
||||||
],
|
"displayText": "Таймаут\nожидания",
|
||||||
"desc": "Шаг изменения температуры при длинном нажатии кнопок"
|
"description": "Время до перехода в режим ожидания (Минуты | Секунды)"
|
||||||
},
|
},
|
||||||
"LockingMode": {
|
"ShutdownTimeout": {
|
||||||
"text2": [
|
"displayText": "Таймаут\nвыключения",
|
||||||
"Разрешить",
|
"description": "Время до выключения паяльника (минуты)"
|
||||||
"блок. кнопок"
|
},
|
||||||
],
|
"HallEffSensitivity": {
|
||||||
"desc": "При работе длинное нажатие обеих кнопок блокирует их (О=Отключено | Т=Только турбо | П=Полная блокировка)"
|
"displayText": "Датчик\nХолла",
|
||||||
},
|
"description": "Чувствительность датчика Холла к переходу в спящий режим (0=Выкл. | 1=мин. | ... | 9=макс.)"
|
||||||
"MotionSensitivity": {
|
},
|
||||||
"text2": [
|
"TemperatureUnit": {
|
||||||
"Чувствительн.",
|
"displayText": "Единицы\nтемпературы",
|
||||||
"акселерометра"
|
"description": "Единицы измерения температуры (C=°Цельcия | F=°Фаренгейта)"
|
||||||
],
|
},
|
||||||
"desc": "Чувствительность акселерометра (0=Выкл. | 1=мин. | ... | 9=макс.)"
|
"DisplayRotation": {
|
||||||
},
|
"displayText": "Ориентация\nэкрана",
|
||||||
"SleepTemperature": {
|
"description": "Ориентация экрана (П=Правая рука | Л=Левая рука | А=Авто)"
|
||||||
"text2": [
|
},
|
||||||
"Темп.",
|
"CooldownBlink": {
|
||||||
"ожидания"
|
"displayText": "Мигание t°\nпри остывании",
|
||||||
],
|
"description": "Мигать температурой на экране охлаждения, пока жало еще горячее"
|
||||||
"desc": "Температура жала в режиме ожидания"
|
},
|
||||||
},
|
"ScrollingSpeed": {
|
||||||
"SleepTimeout": {
|
"displayText": "Скорость\nтекста",
|
||||||
"text2": [
|
"description": "Скорость прокрутки текста (М=медленно | Б=быстро)"
|
||||||
"Таймаут",
|
},
|
||||||
"ожидания"
|
"ReverseButtonTempChange": {
|
||||||
],
|
"displayText": "Поменять\nкнопки+-",
|
||||||
"desc": "Время до перехода в режим ожидания (Минуты | Секунды)"
|
"description": "Поменять кнопки изменения температуры"
|
||||||
},
|
},
|
||||||
"ShutdownTimeout": {
|
"AnimSpeed": {
|
||||||
"text2": [
|
"displayText": "Скорость\nанимации",
|
||||||
"Таймаут",
|
"description": "Скорость анимации иконок в главном меню (Милисекунды) (О=Отключено | Н=Низкий | С=Средний | В=Высокий)"
|
||||||
"выключения"
|
},
|
||||||
],
|
"AnimLoop": {
|
||||||
"desc": "Время до выключения паяльника (минуты)"
|
"displayText": "Зацикленная\nанимация",
|
||||||
},
|
"description": "Зацикленная анимация иконок в главном меню"
|
||||||
"HallEffSensitivity": {
|
},
|
||||||
"text2": [
|
"Brightness": {
|
||||||
"Датчик",
|
"displayText": "Яркость\nэкрана",
|
||||||
"Холла"
|
"description": "Настройки контраста/яркости OLED экрана"
|
||||||
],
|
},
|
||||||
"desc": "Чувствительность датчика Холла к переходу в спящий режим (0=Выкл. | 1=мин. | ... | 9=макс.)"
|
"ColourInversion": {
|
||||||
},
|
"displayText": "Инверсия\nэкрана",
|
||||||
"TemperatureUnit": {
|
"description": "Инвертировать цвета на OLED экране"
|
||||||
"text2": [
|
},
|
||||||
"Единицы",
|
"LOGOTime": {
|
||||||
"температуры"
|
"displayText": "Длительность\nпоказа логотипа",
|
||||||
],
|
"description": "Длительность отображения логотипа (в секундах)"
|
||||||
"desc": "Единицы измерения температуры (C=°Цельcия | F=°Фаренгейта)"
|
},
|
||||||
},
|
"AdvancedIdle": {
|
||||||
"DisplayRotation": {
|
"displayText": "Подробный\nреж. ожидания",
|
||||||
"text2": [
|
"description": "Отображать детальную информацию уменьшенным шрифтом на экране ожидания"
|
||||||
"Ориентация",
|
},
|
||||||
"экрана"
|
"AdvancedSoldering": {
|
||||||
],
|
"displayText": "Подробный\nэкран пайки",
|
||||||
"desc": "Ориентация экрана (П=Правая рука | Л=Левая рука | А=Авто)"
|
"description": "Показывать детальную информацию на экране пайки"
|
||||||
},
|
},
|
||||||
"CooldownBlink": {
|
"PowerLimit": {
|
||||||
"text2": [
|
"displayText": "Предел\nмощности",
|
||||||
"Мигание t°",
|
"description": "Максимальная мощность, которую может использовать паяльник (Ватт)"
|
||||||
"при остывании"
|
},
|
||||||
],
|
"CalibrateCJC": {
|
||||||
"desc": "Мигать температурой на экране охлаждения, пока жало еще горячее"
|
"displayText": "Калибровка\nтемпературы",
|
||||||
},
|
"description": "Калибровка температуры (CJC) при следующем включении (не требуется при разнице менее 5°C)"
|
||||||
"ScrollingSpeed": {
|
},
|
||||||
"text2": [
|
"VoltageCalibration": {
|
||||||
"Скорость",
|
"displayText": "Калибровка\nнапряжения",
|
||||||
"текста"
|
"description": "Калибровка входного напряжения (долгое нажатие для выхода)"
|
||||||
],
|
},
|
||||||
"desc": "Скорость прокрутки текста (М=медленно | Б=быстро)"
|
"PowerPulsePower": {
|
||||||
},
|
"displayText": "Сила имп.\nпитания Вт",
|
||||||
"ReverseButtonTempChange": {
|
"description": "Сила импульса удерживающего от сна повербанк или другой источник питания"
|
||||||
"text2": [
|
},
|
||||||
"Поменять",
|
"PowerPulseWait": {
|
||||||
"кнопки+-"
|
"displayText": "Пауза имп.\nпитания с",
|
||||||
],
|
"description": "Пауза между импульсами удерживающими источник питания от сна (x 2,5с)"
|
||||||
"desc": "Поменять кнопки изменения температуры"
|
},
|
||||||
},
|
"PowerPulseDuration": {
|
||||||
"AnimSpeed": {
|
"displayText": "Длина имп.\nпитания мс",
|
||||||
"text2": [
|
"description": "Длина импульса удерживающего от сна источник питания (x 250мс)"
|
||||||
"Скорость",
|
},
|
||||||
"анимации"
|
"SettingsReset": {
|
||||||
],
|
"displayText": "Сброс\nНастроек",
|
||||||
"desc": "Скорость анимации иконок в главном меню (Милисекунды) (О=Отключено | Н=Низкий | С=Средний | В=Высокий)"
|
"description": "Сброс настроек к значеням по умолчанию"
|
||||||
},
|
},
|
||||||
"AnimLoop": {
|
"LanguageSwitch": {
|
||||||
"text2": [
|
"displayText": "Язык:\n RU Русский",
|
||||||
"Зацикленная",
|
"description": ""
|
||||||
"анимация"
|
}
|
||||||
],
|
}
|
||||||
"desc": "Зацикленная анимация иконок в главном меню"
|
}
|
||||||
},
|
|
||||||
"Brightness": {
|
|
||||||
"text2": [
|
|
||||||
"Яркость",
|
|
||||||
"экрана"
|
|
||||||
],
|
|
||||||
"desc": "Настройки контраста/яркости OLED экрана"
|
|
||||||
},
|
|
||||||
"ColourInversion": {
|
|
||||||
"text2": [
|
|
||||||
"Инверсия",
|
|
||||||
"экрана"
|
|
||||||
],
|
|
||||||
"desc": "Инвертировать цвета на OLED экране"
|
|
||||||
},
|
|
||||||
"LOGOTime": {
|
|
||||||
"text2": [
|
|
||||||
"Длительность",
|
|
||||||
"показа логотипа"
|
|
||||||
],
|
|
||||||
"desc": "Длительность отображения логотипа (в секундах)"
|
|
||||||
},
|
|
||||||
"AdvancedIdle": {
|
|
||||||
"text2": [
|
|
||||||
"Подробный",
|
|
||||||
"реж. ожидания"
|
|
||||||
],
|
|
||||||
"desc": "Отображать детальную информацию уменьшенным шрифтом на экране ожидания"
|
|
||||||
},
|
|
||||||
"AdvancedSoldering": {
|
|
||||||
"text2": [
|
|
||||||
"Подробный",
|
|
||||||
"экран пайки"
|
|
||||||
],
|
|
||||||
"desc": "Показывать детальную информацию на экране пайки"
|
|
||||||
},
|
|
||||||
"PowerLimit": {
|
|
||||||
"text2": [
|
|
||||||
"Предел",
|
|
||||||
"мощности"
|
|
||||||
],
|
|
||||||
"desc": "Максимальная мощность, которую может использовать паяльник (Ватт)"
|
|
||||||
},
|
|
||||||
"CalibrateCJC": {
|
|
||||||
"text2": [
|
|
||||||
"Калибровка",
|
|
||||||
"температуры"
|
|
||||||
],
|
|
||||||
"desc": "Калибровка температуры (CJC) при следующем включении (не требуется при разнице менее 5°C)"
|
|
||||||
},
|
|
||||||
"VoltageCalibration": {
|
|
||||||
"text2": [
|
|
||||||
"Калибровка",
|
|
||||||
"напряжения"
|
|
||||||
],
|
|
||||||
"desc": "Калибровка входного напряжения (долгое нажатие для выхода)"
|
|
||||||
},
|
|
||||||
"PowerPulsePower": {
|
|
||||||
"text2": [
|
|
||||||
"Сила имп.",
|
|
||||||
"питания Вт"
|
|
||||||
],
|
|
||||||
"desc": "Сила импульса удерживающего от сна повербанк или другой источник питания"
|
|
||||||
},
|
|
||||||
"PowerPulseWait": {
|
|
||||||
"text2": [
|
|
||||||
"Пауза имп.",
|
|
||||||
"питания с"
|
|
||||||
],
|
|
||||||
"desc": "Пауза между импульсами удерживающими источник питания от сна (x 2,5с)"
|
|
||||||
},
|
|
||||||
"PowerPulseDuration": {
|
|
||||||
"text2": [
|
|
||||||
"Длина имп.",
|
|
||||||
"питания мс"
|
|
||||||
],
|
|
||||||
"desc": "Длина импульса удерживающего от сна источник питания (x 250мс)"
|
|
||||||
},
|
|
||||||
"SettingsReset": {
|
|
||||||
"text2": [
|
|
||||||
"Сброс",
|
|
||||||
"Настроек"
|
|
||||||
],
|
|
||||||
"desc": "Сброс настроек к значеням по умолчанию"
|
|
||||||
},
|
|
||||||
"LanguageSwitch": {
|
|
||||||
"text2": [
|
|
||||||
"Язык:",
|
|
||||||
" RU Русский"
|
|
||||||
],
|
|
||||||
"desc": ""
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,337 +1,243 @@
|
|||||||
{
|
{
|
||||||
"languageCode": "SK",
|
"languageCode": "SK",
|
||||||
"languageLocalName": "Slovenčina",
|
"languageLocalName": "Slovenčina",
|
||||||
"tempUnitFahrenheit": false,
|
"tempUnitFahrenheit": false,
|
||||||
"messages": {
|
"messagesWarn": {
|
||||||
"SettingsCalibrationWarning": "Before rebooting, make sure tip & handle are at room temperature!",
|
"CJCCalibrationDone": {
|
||||||
"CJCCalibrating": "calibrating",
|
"message": "Calibration\ndone!"
|
||||||
"SettingsResetWarning": "Naozaj chcete obnoviť továrenské nastavenia?",
|
},
|
||||||
"UVLOWarningString": "Nízke U!",
|
"ResetOKMessage": {
|
||||||
"UndervoltageString": "Nízke napätie",
|
"message": "Reset OK"
|
||||||
"InputVoltageString": "Vstupné U: ",
|
},
|
||||||
"SleepingSimpleString": "Chrr",
|
"SettingsResetMessage": {
|
||||||
"SleepingAdvancedString": "Pokojový režim.",
|
"message": "Nastavenia\nresetované"
|
||||||
"SleepingTipAdvancedString": "Hrot:",
|
},
|
||||||
"OffString": "Vyp",
|
"NoAccelerometerMessage": {
|
||||||
"DeviceFailedValidationWarning": "Vaše zariadenie je pravdepodobne falzifikát!"
|
"message": "Bez pohybového\nsenzora!"
|
||||||
},
|
},
|
||||||
"messagesWarn": {
|
"NoPowerDeliveryMessage": {
|
||||||
"CJCCalibrationDone": [
|
"message": "Chýba čip\nUSB-PD!"
|
||||||
"Calibration",
|
},
|
||||||
"done!"
|
"LockingKeysString": {
|
||||||
],
|
"message": "ZABLOK."
|
||||||
"ResetOKMessage": "Reset OK",
|
},
|
||||||
"SettingsResetMessage": [
|
"UnlockingKeysString": {
|
||||||
"Nastavenia",
|
"message": "ODBLOK."
|
||||||
"resetované"
|
},
|
||||||
],
|
"WarningKeysLockedString": {
|
||||||
"NoAccelerometerMessage": [
|
"message": "!ZABLOK!"
|
||||||
"Bez pohybového",
|
},
|
||||||
"senzora!"
|
"WarningThermalRunaway": {
|
||||||
],
|
"message": "Únik\nTepla"
|
||||||
"NoPowerDeliveryMessage": [
|
},
|
||||||
"Chýba čip",
|
"SettingsCalibrationWarning": {
|
||||||
"USB-PD!"
|
"message": "Before rebooting, make sure tip & handle are at room temperature!"
|
||||||
],
|
},
|
||||||
"LockingKeysString": "ZABLOK.",
|
"CJCCalibrating": {
|
||||||
"UnlockingKeysString": "ODBLOK.",
|
"message": "calibrating"
|
||||||
"WarningKeysLockedString": "!ZABLOK!",
|
},
|
||||||
"WarningThermalRunaway": [
|
"SettingsResetWarning": {
|
||||||
"Únik",
|
"message": "Naozaj chcete obnoviť továrenské nastavenia?"
|
||||||
"Tepla"
|
},
|
||||||
]
|
"UVLOWarningString": {
|
||||||
},
|
"message": "Nízke U!"
|
||||||
"characters": {
|
},
|
||||||
"SettingRightChar": "P",
|
"UndervoltageString": {
|
||||||
"SettingLeftChar": "L",
|
"message": "Nízke napätie"
|
||||||
"SettingAutoChar": "A",
|
},
|
||||||
"SettingOffChar": "Z",
|
"InputVoltageString": {
|
||||||
"SettingSlowChar": "P",
|
"message": "Vstupné U: "
|
||||||
"SettingMediumChar": "S",
|
},
|
||||||
"SettingFastChar": "R",
|
"SleepingSimpleString": {
|
||||||
"SettingStartNoneChar": "V",
|
"message": "Chrr"
|
||||||
"SettingStartSolderingChar": "Z",
|
},
|
||||||
"SettingStartSleepChar": "S",
|
"SleepingAdvancedString": {
|
||||||
"SettingStartSleepOffChar": "I",
|
"message": "Pokojový režim."
|
||||||
"SettingLockDisableChar": "Z",
|
},
|
||||||
"SettingLockBoostChar": "B",
|
"SleepingTipAdvancedString": {
|
||||||
"SettingLockFullChar": "P"
|
"message": "Hrot:"
|
||||||
},
|
},
|
||||||
"menuGroups": {
|
"OffString": {
|
||||||
"PowerMenu": {
|
"message": "Vyp"
|
||||||
"text2": [
|
},
|
||||||
"Nastavenie",
|
"DeviceFailedValidationWarning": {
|
||||||
"výkonu"
|
"message": "Vaše zariadenie je pravdepodobne falzifikát!"
|
||||||
],
|
}
|
||||||
"desc": ""
|
},
|
||||||
},
|
"characters": {
|
||||||
"SolderingMenu": {
|
"SettingRightChar": "P",
|
||||||
"text2": [
|
"SettingLeftChar": "L",
|
||||||
"Nastavenie",
|
"SettingAutoChar": "A",
|
||||||
"spájkovania"
|
"SettingOffChar": "Z",
|
||||||
],
|
"SettingSlowChar": "P",
|
||||||
"desc": ""
|
"SettingMediumChar": "S",
|
||||||
},
|
"SettingFastChar": "R",
|
||||||
"PowerSavingMenu": {
|
"SettingStartNoneChar": "V",
|
||||||
"text2": [
|
"SettingStartSolderingChar": "Z",
|
||||||
"Úsporný",
|
"SettingStartSleepChar": "S",
|
||||||
"režim"
|
"SettingStartSleepOffChar": "I",
|
||||||
],
|
"SettingLockDisableChar": "Z",
|
||||||
"desc": ""
|
"SettingLockBoostChar": "B",
|
||||||
},
|
"SettingLockFullChar": "P"
|
||||||
"UIMenu": {
|
},
|
||||||
"text2": [
|
"menuGroups": {
|
||||||
"Nastavenie",
|
"PowerMenu": {
|
||||||
"zobrazenia"
|
"displayText": "Nastavenie\nvýkonu",
|
||||||
],
|
"description": ""
|
||||||
"desc": ""
|
},
|
||||||
},
|
"SolderingMenu": {
|
||||||
"AdvancedMenu": {
|
"displayText": "Nastavenie\nspájkovania",
|
||||||
"text2": [
|
"description": ""
|
||||||
"Pokročilé",
|
},
|
||||||
"nastavenia"
|
"PowerSavingMenu": {
|
||||||
],
|
"displayText": "Úsporný\nrežim",
|
||||||
"desc": ""
|
"description": ""
|
||||||
}
|
},
|
||||||
},
|
"UIMenu": {
|
||||||
"menuOptions": {
|
"displayText": "Nastavenie\nzobrazenia",
|
||||||
"DCInCutoff": {
|
"description": ""
|
||||||
"text2": [
|
},
|
||||||
"Zdroj",
|
"AdvancedMenu": {
|
||||||
"napätia"
|
"displayText": "Pokročilé\nnastavenia",
|
||||||
],
|
"description": ""
|
||||||
"desc": "Zdroj napätia. Nastavenie napätia pre vypnutie (cutoff) (DC=10V | nS=n*3.3V pre LiIon články)"
|
}
|
||||||
},
|
},
|
||||||
"MinVolCell": {
|
"menuOptions": {
|
||||||
"text2": [
|
"DCInCutoff": {
|
||||||
"Minimálne",
|
"displayText": "Zdroj\nnapätia",
|
||||||
"napätie"
|
"description": "Zdroj napätia. Nastavenie napätia pre vypnutie (cutoff) (DC=10V | nS=n*3.3V pre LiIon články)"
|
||||||
],
|
},
|
||||||
"desc": "Minimálne napätie povolené na jeden článok (3S: 3 - 3.7V | 4-6S: 2.4 - 3.7V)"
|
"MinVolCell": {
|
||||||
},
|
"displayText": "Minimálne\nnapätie",
|
||||||
"QCMaxVoltage": {
|
"description": "Minimálne napätie povolené na jeden článok (3S: 3 - 3.7V | 4-6S: 2.4 - 3.7V)"
|
||||||
"text2": [
|
},
|
||||||
"Obmedzenie QC",
|
"QCMaxVoltage": {
|
||||||
"napätia"
|
"displayText": "Obmedzenie QC\nnapätia",
|
||||||
],
|
"description": "Maximálne QC napätie ktoré si má systém vyžiadať"
|
||||||
"desc": "Maximálne QC napätie ktoré si má systém vyžiadať"
|
},
|
||||||
},
|
"PDNegTimeout": {
|
||||||
"PDNegTimeout": {
|
"displayText": "Čas vypršania\nPower Delivery",
|
||||||
"text2": [
|
"description": "Čas vyjednávania Power Delivery v 100ms krokoch pre kompatibilitu s niektorými QC nabíjačkami (0: vypnuté)"
|
||||||
"Čas vypršania",
|
},
|
||||||
"Power Delivery"
|
"BoostTemperature": {
|
||||||
],
|
"displayText": "Boost\nteplota",
|
||||||
"desc": "Čas vyjednávania Power Delivery v 100ms krokoch pre kompatibilitu s niektorými QC nabíjačkami (0: vypnuté)"
|
"description": "Cieľová teplota pre prudký náhrev (v nastavených jednotkách)"
|
||||||
},
|
},
|
||||||
"BoostTemperature": {
|
"AutoStart": {
|
||||||
"text2": [
|
"displayText": "Automatické\nspustenie",
|
||||||
"Boost",
|
"description": "Pri štarte spustiť režim spájkovania (V=Vyp | Z=Spájkovanie | S=Spanok | I=Spanok izbová teplota)"
|
||||||
"teplota"
|
},
|
||||||
],
|
"TempChangeShortStep": {
|
||||||
"desc": "Cieľová teplota pre prudký náhrev (v nastavených jednotkách)"
|
"displayText": "Malý krok\nteploty",
|
||||||
},
|
"description": "Zmena teploty pri krátkom stlačení tlačidla"
|
||||||
"AutoStart": {
|
},
|
||||||
"text2": [
|
"TempChangeLongStep": {
|
||||||
"Automatické",
|
"displayText": "Veľký krok\nteploty",
|
||||||
"spustenie"
|
"description": "Zmena teploty pri držaní tlačidla"
|
||||||
],
|
},
|
||||||
"desc": "Pri štarte spustiť režim spájkovania (V=Vyp | Z=Spájkovanie | S=Spanok | I=Spanok izbová teplota)"
|
"LockingMode": {
|
||||||
},
|
"displayText": "Povoliť zámok\ntlačidiel",
|
||||||
"TempChangeShortStep": {
|
"description": "Zamknutie tlačidiel - dlhé stlačenie oboch naraz počas spájkovania (Z=Zakázať | B=Okrem boost | P=Plné zamknutie)"
|
||||||
"text2": [
|
},
|
||||||
"Malý krok",
|
"MotionSensitivity": {
|
||||||
"teploty"
|
"displayText": "Citlivosť\npohybu",
|
||||||
],
|
"description": "Citlivosť detekcie pohybu (0=Vyp | 1=Min | ... | 9=Max)"
|
||||||
"desc": "Zmena teploty pri krátkom stlačení tlačidla"
|
},
|
||||||
},
|
"SleepTemperature": {
|
||||||
"TempChangeLongStep": {
|
"displayText": "Pokojová\nteplota",
|
||||||
"text2": [
|
"description": "Pokojová teplota (v nastavených jednotkách)"
|
||||||
"Veľký krok",
|
},
|
||||||
"teploty"
|
"SleepTimeout": {
|
||||||
],
|
"displayText": "Pokojový\nrežim po",
|
||||||
"desc": "Zmena teploty pri držaní tlačidla"
|
"description": "Pokojový režim po (s=sekundách | m=minútach)"
|
||||||
},
|
},
|
||||||
"LockingMode": {
|
"ShutdownTimeout": {
|
||||||
"text2": [
|
"displayText": "Vypnutie\npo",
|
||||||
"Povoliť zámok",
|
"description": "Čas na vypnutie (minúty)"
|
||||||
"tlačidiel"
|
},
|
||||||
],
|
"HallEffSensitivity": {
|
||||||
"desc": "Zamknutie tlačidiel - dlhé stlačenie oboch naraz počas spájkovania (Z=Zakázať | B=Okrem boost | P=Plné zamknutie)"
|
"displayText": "Citliv.\nHall",
|
||||||
},
|
"description": "Citlivosť Hallovho senzora pre detekciu spánku (0=Vyp | 1=Min | ... | 9=Max)"
|
||||||
"MotionSensitivity": {
|
},
|
||||||
"text2": [
|
"TemperatureUnit": {
|
||||||
"Citlivosť",
|
"displayText": "Jednotka\nteploty",
|
||||||
"pohybu"
|
"description": "Jednotky merania teploty (C=stupne Celzia | F=stupne Fahrenheita)"
|
||||||
],
|
},
|
||||||
"desc": "Citlivosť detekcie pohybu (0=Vyp | 1=Min | ... | 9=Max)"
|
"DisplayRotation": {
|
||||||
},
|
"displayText": "Orientácia\ndispleja",
|
||||||
"SleepTemperature": {
|
"description": "Orientácia displeja (P=Pravák | L=Ľavák | A=Auto)"
|
||||||
"text2": [
|
},
|
||||||
"Pokojová",
|
"CooldownBlink": {
|
||||||
"teplota"
|
"displayText": "Blikanie pri\nchladnutí",
|
||||||
],
|
"description": "Blikanie ukazovateľa teploty počas chladnutia hrotu"
|
||||||
"desc": "Pokojová teplota (v nastavených jednotkách)"
|
},
|
||||||
},
|
"ScrollingSpeed": {
|
||||||
"SleepTimeout": {
|
"displayText": "Rýchlosť\nskrolovania",
|
||||||
"text2": [
|
"description": "Rýchlosť pohybu tohto textu"
|
||||||
"Pokojový",
|
},
|
||||||
"režim po"
|
"ReverseButtonTempChange": {
|
||||||
],
|
"displayText": "Otočenie\ntlačidiel +/-",
|
||||||
"desc": "Pokojový režim po (s=sekundách | m=minútach)"
|
"description": "Prehodenie tlačidiel na nastavovanie teploty"
|
||||||
},
|
},
|
||||||
"ShutdownTimeout": {
|
"AnimSpeed": {
|
||||||
"text2": [
|
"displayText": "Rýchlosť\nanimácií",
|
||||||
"Vypnutie",
|
"description": "Rýchlosť animácií ikoniek v menu (O=off | P=pomaly | S=stredne | R=rýchlo)"
|
||||||
"po"
|
},
|
||||||
],
|
"AnimLoop": {
|
||||||
"desc": "Čas na vypnutie (minúty)"
|
"displayText": "Opakovanie\nanimácií",
|
||||||
},
|
"description": "Opakovanie animácií ikoniek v hlavnom menu"
|
||||||
"HallEffSensitivity": {
|
},
|
||||||
"text2": [
|
"Brightness": {
|
||||||
"Citliv.",
|
"displayText": "Jas\nobrazovky",
|
||||||
"Hall"
|
"description": "Mení jas/kontrast OLED displeja"
|
||||||
],
|
},
|
||||||
"desc": "Citlivosť Hallovho senzora pre detekciu spánku (0=Vyp | 1=Min | ... | 9=Max)"
|
"ColourInversion": {
|
||||||
},
|
"displayText": "Invertovať\nobrazovku",
|
||||||
"TemperatureUnit": {
|
"description": "Invertovať farby OLED displeja"
|
||||||
"text2": [
|
},
|
||||||
"Jednotka",
|
"LOGOTime": {
|
||||||
"teploty"
|
"displayText": "Trvanie\nboot loga",
|
||||||
],
|
"description": "Doba trvania boot loga (s=sekundy)"
|
||||||
"desc": "Jednotky merania teploty (C=stupne Celzia | F=stupne Fahrenheita)"
|
},
|
||||||
},
|
"AdvancedIdle": {
|
||||||
"DisplayRotation": {
|
"displayText": "Detaily v\npokoj. režime",
|
||||||
"text2": [
|
"description": "Zobraziť detailné informácie v pokojovom režime (T=Zap | F=Vyp)"
|
||||||
"Orientácia",
|
},
|
||||||
"displeja"
|
"AdvancedSoldering": {
|
||||||
],
|
"displayText": "Detaily počas\nspájkovania",
|
||||||
"desc": "Orientácia displeja (P=Pravák | L=Ľavák | A=Auto)"
|
"description": "Zobrazenie detailov počas spájkovania"
|
||||||
},
|
},
|
||||||
"CooldownBlink": {
|
"PowerLimit": {
|
||||||
"text2": [
|
"displayText": "Obmedzenie\nvýkonu",
|
||||||
"Blikanie pri",
|
"description": "Obmedzenie výkonu podľa použitého zdroja (watt)"
|
||||||
"chladnutí"
|
},
|
||||||
],
|
"CalibrateCJC": {
|
||||||
"desc": "Blikanie ukazovateľa teploty počas chladnutia hrotu"
|
"displayText": "Calibrate CJC\nat next boot",
|
||||||
},
|
"description": "At next boot tip Cold Junction Compensation will be calibrated (not required if Delta T is < 5°C)"
|
||||||
"ScrollingSpeed": {
|
},
|
||||||
"text2": [
|
"VoltageCalibration": {
|
||||||
"Rýchlosť",
|
"displayText": "Kalibrácia\nnap. napätia",
|
||||||
"skrolovania"
|
"description": "Kalibrácia napájacieho napätia. Krátke stlačenie mení nastavenie, dlhé stlačenie pre návrat"
|
||||||
],
|
},
|
||||||
"desc": "Rýchlosť pohybu tohto textu"
|
"PowerPulsePower": {
|
||||||
},
|
"displayText": "Intenzita\nimpulzu",
|
||||||
"ReverseButtonTempChange": {
|
"description": "Impulz udržujúci napájací zdroj zapnutý (power banky) (watt)"
|
||||||
"text2": [
|
},
|
||||||
"Otočenie",
|
"PowerPulseWait": {
|
||||||
"tlačidiel +/-"
|
"displayText": "Interval\nimpulzu",
|
||||||
],
|
"description": "Interval medzi impulzami udržujúcimi napájací zdroj zapnutý (x 2.5s)"
|
||||||
"desc": "Prehodenie tlačidiel na nastavovanie teploty"
|
},
|
||||||
},
|
"PowerPulseDuration": {
|
||||||
"AnimSpeed": {
|
"displayText": "Dĺžka impulzu\n",
|
||||||
"text2": [
|
"description": "Dĺžka impulzu udržujúci napájací zdroj zapnutý (x 250ms)"
|
||||||
"Rýchlosť",
|
},
|
||||||
"animácií"
|
"SettingsReset": {
|
||||||
],
|
"displayText": "Obnovenie\nnastavení",
|
||||||
"desc": "Rýchlosť animácií ikoniek v menu (O=off | P=pomaly | S=stredne | R=rýchlo)"
|
"description": "Obnovenie nastavení na pôvodné hodnoty"
|
||||||
},
|
},
|
||||||
"AnimLoop": {
|
"LanguageSwitch": {
|
||||||
"text2": [
|
"displayText": "Jazyk:\n SK Slovenčina",
|
||||||
"Opakovanie",
|
"description": ""
|
||||||
"animácií"
|
}
|
||||||
],
|
}
|
||||||
"desc": "Opakovanie animácií ikoniek v hlavnom menu"
|
|
||||||
},
|
|
||||||
"Brightness": {
|
|
||||||
"text2": [
|
|
||||||
"Jas",
|
|
||||||
"obrazovky"
|
|
||||||
],
|
|
||||||
"desc": "Mení jas/kontrast OLED displeja"
|
|
||||||
},
|
|
||||||
"ColourInversion": {
|
|
||||||
"text2": [
|
|
||||||
"Invertovať",
|
|
||||||
"obrazovku"
|
|
||||||
],
|
|
||||||
"desc": "Invertovať farby OLED displeja"
|
|
||||||
},
|
|
||||||
"LOGOTime": {
|
|
||||||
"text2": [
|
|
||||||
"Trvanie",
|
|
||||||
"boot loga"
|
|
||||||
],
|
|
||||||
"desc": "Doba trvania boot loga (s=sekundy)"
|
|
||||||
},
|
|
||||||
"AdvancedIdle": {
|
|
||||||
"text2": [
|
|
||||||
"Detaily v",
|
|
||||||
"pokoj. režime"
|
|
||||||
],
|
|
||||||
"desc": "Zobraziť detailné informácie v pokojovom režime (T=Zap | F=Vyp)"
|
|
||||||
},
|
|
||||||
"AdvancedSoldering": {
|
|
||||||
"text2": [
|
|
||||||
"Detaily počas",
|
|
||||||
"spájkovania"
|
|
||||||
],
|
|
||||||
"desc": "Zobrazenie detailov počas spájkovania"
|
|
||||||
},
|
|
||||||
"PowerLimit": {
|
|
||||||
"text2": [
|
|
||||||
"Obmedzenie",
|
|
||||||
"výkonu"
|
|
||||||
],
|
|
||||||
"desc": "Obmedzenie výkonu podľa použitého zdroja (watt)"
|
|
||||||
},
|
|
||||||
"CalibrateCJC": {
|
|
||||||
"text2": [
|
|
||||||
"Calibrate CJC",
|
|
||||||
"at next boot"
|
|
||||||
],
|
|
||||||
"desc": "At next boot tip Cold Junction Compensation will be calibrated (not required if Delta T is < 5°C)"
|
|
||||||
},
|
|
||||||
"VoltageCalibration": {
|
|
||||||
"text2": [
|
|
||||||
"Kalibrácia",
|
|
||||||
"nap. napätia"
|
|
||||||
],
|
|
||||||
"desc": "Kalibrácia napájacieho napätia. Krátke stlačenie mení nastavenie, dlhé stlačenie pre návrat"
|
|
||||||
},
|
|
||||||
"PowerPulsePower": {
|
|
||||||
"text2": [
|
|
||||||
"Intenzita",
|
|
||||||
"impulzu"
|
|
||||||
],
|
|
||||||
"desc": "Impulz udržujúci napájací zdroj zapnutý (power banky) (watt)"
|
|
||||||
},
|
|
||||||
"PowerPulseWait": {
|
|
||||||
"text2": [
|
|
||||||
"Interval",
|
|
||||||
"impulzu"
|
|
||||||
],
|
|
||||||
"desc": "Interval medzi impulzami udržujúcimi napájací zdroj zapnutý (x 2.5s)"
|
|
||||||
},
|
|
||||||
"PowerPulseDuration": {
|
|
||||||
"text2": [
|
|
||||||
"Dĺžka impulzu",
|
|
||||||
""
|
|
||||||
],
|
|
||||||
"desc": "Dĺžka impulzu udržujúci napájací zdroj zapnutý (x 250ms)"
|
|
||||||
},
|
|
||||||
"SettingsReset": {
|
|
||||||
"text2": [
|
|
||||||
"Obnovenie",
|
|
||||||
"nastavení"
|
|
||||||
],
|
|
||||||
"desc": "Obnovenie nastavení na pôvodné hodnoty"
|
|
||||||
},
|
|
||||||
"LanguageSwitch": {
|
|
||||||
"text2": [
|
|
||||||
"Jazyk:",
|
|
||||||
" SK Slovenčina"
|
|
||||||
],
|
|
||||||
"desc": ""
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@@ -1,337 +1,243 @@
|
|||||||
{
|
{
|
||||||
"languageCode": "SL",
|
"languageCode": "SL",
|
||||||
"languageLocalName": "Slovenščina",
|
"languageLocalName": "Slovenščina",
|
||||||
"tempUnitFahrenheit": false,
|
"tempUnitFahrenheit": false,
|
||||||
"messages": {
|
"messagesWarn": {
|
||||||
"SettingsCalibrationWarning": "Before rebooting, make sure tip & handle are at room temperature!",
|
"CJCCalibrationDone": {
|
||||||
"CJCCalibrating": "calibrating",
|
"message": "Calibration\ndone!"
|
||||||
"SettingsResetWarning": "Res želite ponastaviti na privzete nastavitve?",
|
},
|
||||||
"UVLOWarningString": "NIZKA U",
|
"ResetOKMessage": {
|
||||||
"UndervoltageString": "Nizka napetost",
|
"message": "Reset OK"
|
||||||
"InputVoltageString": "Vhodna U: ",
|
},
|
||||||
"SleepingSimpleString": "Zzzz",
|
"SettingsResetMessage": {
|
||||||
"SleepingAdvancedString": "Spim...",
|
"message": "Nastavitve OK!\n"
|
||||||
"SleepingTipAdvancedString": "Konica",
|
},
|
||||||
"OffString": "Off",
|
"NoAccelerometerMessage": {
|
||||||
"DeviceFailedValidationWarning": "Your device is most likely a counterfeit!"
|
"message": "Ni pospeševalnik\n"
|
||||||
},
|
},
|
||||||
"messagesWarn": {
|
"NoPowerDeliveryMessage": {
|
||||||
"CJCCalibrationDone": [
|
"message": "Ni USB-PD čipa!\n"
|
||||||
"Calibration",
|
},
|
||||||
"done!"
|
"LockingKeysString": {
|
||||||
],
|
"message": "ZAKLENJ."
|
||||||
"ResetOKMessage": "Reset OK",
|
},
|
||||||
"SettingsResetMessage": [
|
"UnlockingKeysString": {
|
||||||
"Nastavitve OK!",
|
"message": "ODKLENJ."
|
||||||
""
|
},
|
||||||
],
|
"WarningKeysLockedString": {
|
||||||
"NoAccelerometerMessage": [
|
"message": "ZAKLENJ."
|
||||||
"Ni pospeševalnik",
|
},
|
||||||
""
|
"WarningThermalRunaway": {
|
||||||
],
|
"message": "Thermal\nRunaway"
|
||||||
"NoPowerDeliveryMessage": [
|
},
|
||||||
"Ni USB-PD čipa!",
|
"SettingsCalibrationWarning": {
|
||||||
""
|
"message": "Before rebooting, make sure tip & handle are at room temperature!"
|
||||||
],
|
},
|
||||||
"LockingKeysString": "ZAKLENJ.",
|
"CJCCalibrating": {
|
||||||
"UnlockingKeysString": "ODKLENJ.",
|
"message": "calibrating"
|
||||||
"WarningKeysLockedString": "ZAKLENJ.",
|
},
|
||||||
"WarningThermalRunaway": [
|
"SettingsResetWarning": {
|
||||||
"Thermal",
|
"message": "Res želite ponastaviti na privzete nastavitve?"
|
||||||
"Runaway"
|
},
|
||||||
]
|
"UVLOWarningString": {
|
||||||
},
|
"message": "NIZKA U"
|
||||||
"characters": {
|
},
|
||||||
"SettingRightChar": "D",
|
"UndervoltageString": {
|
||||||
"SettingLeftChar": "L",
|
"message": "Nizka napetost"
|
||||||
"SettingAutoChar": "S",
|
},
|
||||||
"SettingOffChar": "U",
|
"InputVoltageString": {
|
||||||
"SettingSlowChar": "P",
|
"message": "Vhodna U: "
|
||||||
"SettingMediumChar": "M",
|
},
|
||||||
"SettingFastChar": "H",
|
"SleepingSimpleString": {
|
||||||
"SettingStartNoneChar": "U",
|
"message": "Zzzz"
|
||||||
"SettingStartSolderingChar": "S",
|
},
|
||||||
"SettingStartSleepChar": "Z",
|
"SleepingAdvancedString": {
|
||||||
"SettingStartSleepOffChar": "V",
|
"message": "Spim..."
|
||||||
"SettingLockDisableChar": "O",
|
},
|
||||||
"SettingLockBoostChar": "L",
|
"SleepingTipAdvancedString": {
|
||||||
"SettingLockFullChar": "P"
|
"message": "Konica"
|
||||||
},
|
},
|
||||||
"menuGroups": {
|
"OffString": {
|
||||||
"PowerMenu": {
|
"message": "Off"
|
||||||
"text2": [
|
},
|
||||||
"Power",
|
"DeviceFailedValidationWarning": {
|
||||||
"settings"
|
"message": "Your device is most likely a counterfeit!"
|
||||||
],
|
}
|
||||||
"desc": ""
|
},
|
||||||
},
|
"characters": {
|
||||||
"SolderingMenu": {
|
"SettingRightChar": "D",
|
||||||
"text2": [
|
"SettingLeftChar": "L",
|
||||||
"Nastavitve",
|
"SettingAutoChar": "S",
|
||||||
"spajkanja"
|
"SettingOffChar": "U",
|
||||||
],
|
"SettingSlowChar": "P",
|
||||||
"desc": ""
|
"SettingMediumChar": "M",
|
||||||
},
|
"SettingFastChar": "H",
|
||||||
"PowerSavingMenu": {
|
"SettingStartNoneChar": "U",
|
||||||
"text2": [
|
"SettingStartSolderingChar": "S",
|
||||||
"Način",
|
"SettingStartSleepChar": "Z",
|
||||||
"spanja"
|
"SettingStartSleepOffChar": "V",
|
||||||
],
|
"SettingLockDisableChar": "O",
|
||||||
"desc": ""
|
"SettingLockBoostChar": "L",
|
||||||
},
|
"SettingLockFullChar": "P"
|
||||||
"UIMenu": {
|
},
|
||||||
"text2": [
|
"menuGroups": {
|
||||||
"Uporabniški",
|
"PowerMenu": {
|
||||||
"vmesnik"
|
"displayText": "Power\nsettings",
|
||||||
],
|
"description": ""
|
||||||
"desc": ""
|
},
|
||||||
},
|
"SolderingMenu": {
|
||||||
"AdvancedMenu": {
|
"displayText": "Nastavitve\nspajkanja",
|
||||||
"text2": [
|
"description": ""
|
||||||
"Napredne",
|
},
|
||||||
"možnosti"
|
"PowerSavingMenu": {
|
||||||
],
|
"displayText": "Način\nspanja",
|
||||||
"desc": ""
|
"description": ""
|
||||||
}
|
},
|
||||||
},
|
"UIMenu": {
|
||||||
"menuOptions": {
|
"displayText": "Uporabniški\nvmesnik",
|
||||||
"DCInCutoff": {
|
"description": ""
|
||||||
"text2": [
|
},
|
||||||
"Vir",
|
"AdvancedMenu": {
|
||||||
"napajanja"
|
"displayText": "Napredne\nmožnosti",
|
||||||
],
|
"description": ""
|
||||||
"desc": "Vir napajanja. Nastavi napetost izklopa. (DC 10V) (S 3.3V na celico)"
|
}
|
||||||
},
|
},
|
||||||
"MinVolCell": {
|
"menuOptions": {
|
||||||
"text2": [
|
"DCInCutoff": {
|
||||||
"Minimum",
|
"displayText": "Vir\nnapajanja",
|
||||||
"voltage"
|
"description": "Vir napajanja. Nastavi napetost izklopa. (DC 10V) (S 3.3V na celico)"
|
||||||
],
|
},
|
||||||
"desc": "Minimum allowed voltage per battery cell (3S: 3 - 3.7V | 4-6S: 2.4 - 3.7V)"
|
"MinVolCell": {
|
||||||
},
|
"displayText": "Minimum\nvoltage",
|
||||||
"QCMaxVoltage": {
|
"description": "Minimum allowed voltage per battery cell (3S: 3 - 3.7V | 4-6S: 2.4 - 3.7V)"
|
||||||
"text2": [
|
},
|
||||||
"QC",
|
"QCMaxVoltage": {
|
||||||
"napetost"
|
"displayText": "QC\nnapetost",
|
||||||
],
|
"description": "Moč napajalnega vira v vatih [W]"
|
||||||
"desc": "Moč napajalnega vira v vatih [W]"
|
},
|
||||||
},
|
"PDNegTimeout": {
|
||||||
"PDNegTimeout": {
|
"displayText": "PD\ntimeout",
|
||||||
"text2": [
|
"description": "PD negotiation timeout in 100ms steps for compatibility with some QC chargers"
|
||||||
"PD",
|
},
|
||||||
"timeout"
|
"BoostTemperature": {
|
||||||
],
|
"displayText": "Pospešena\ntemp.",
|
||||||
"desc": "PD negotiation timeout in 100ms steps for compatibility with some QC chargers"
|
"description": "Temperatura v pospešenem načinu"
|
||||||
},
|
},
|
||||||
"BoostTemperature": {
|
"AutoStart": {
|
||||||
"text2": [
|
"displayText": "Samodejni\nzagon",
|
||||||
"Pospešena",
|
"description": "Samodejno gretje konice ob vklopu (U=ugasnjeno | S=spajkanje | Z=spanje | V=spanje na sobni temperaturi)"
|
||||||
"temp."
|
},
|
||||||
],
|
"TempChangeShortStep": {
|
||||||
"desc": "Temperatura v pospešenem načinu"
|
"displayText": "Kratka sprememba\ntemperature?",
|
||||||
},
|
"description": "Temperatura se spremeni ob kratkem pritisku na gumb."
|
||||||
"AutoStart": {
|
},
|
||||||
"text2": [
|
"TempChangeLongStep": {
|
||||||
"Samodejni",
|
"displayText": "Dolga sprememba\ntemperature?",
|
||||||
"zagon"
|
"description": "Temperatura se spremeni ob dolgem pritisku na gumb."
|
||||||
],
|
},
|
||||||
"desc": "Samodejno gretje konice ob vklopu (U=ugasnjeno | S=spajkanje | Z=spanje | V=spanje na sobni temperaturi)"
|
"LockingMode": {
|
||||||
},
|
"displayText": "Omogoči\nzaklep gumbov",
|
||||||
"TempChangeShortStep": {
|
"description": "Za zaklep med spajkanjem drži oba gumba (O=onemogoči | L=le pospešeno | P=polno)"
|
||||||
"text2": [
|
},
|
||||||
"Kratka sprememba",
|
"MotionSensitivity": {
|
||||||
"temperature?"
|
"displayText": "Občutljivost\npremikanja",
|
||||||
],
|
"description": "0=izklopljeno | 1=najmanjša | ... | 9=največja"
|
||||||
"desc": "Temperatura se spremeni ob kratkem pritisku na gumb."
|
},
|
||||||
},
|
"SleepTemperature": {
|
||||||
"TempChangeLongStep": {
|
"displayText": "Temp. med\nspanjem",
|
||||||
"text2": [
|
"description": "Temperatura med spanjem"
|
||||||
"Dolga sprememba",
|
},
|
||||||
"temperature?"
|
"SleepTimeout": {
|
||||||
],
|
"displayText": "Čas do\nspanja",
|
||||||
"desc": "Temperatura se spremeni ob dolgem pritisku na gumb."
|
"description": "Čas pred spanjem (s=sekunde | m=minute)"
|
||||||
},
|
},
|
||||||
"LockingMode": {
|
"ShutdownTimeout": {
|
||||||
"text2": [
|
"displayText": "Čas do\nizklopa",
|
||||||
"Omogoči",
|
"description": "Čas do izklopa (m=minute)"
|
||||||
"zaklep gumbov"
|
},
|
||||||
],
|
"HallEffSensitivity": {
|
||||||
"desc": "Za zaklep med spajkanjem drži oba gumba (O=onemogoči | L=le pospešeno | P=polno)"
|
"displayText": "Občut.\nHall son",
|
||||||
},
|
"description": "Občutljivost Hallove sonde za zaznavanje spanja (0=izklopljeno | 1=najmanjša | ... | 9=največja)"
|
||||||
"MotionSensitivity": {
|
},
|
||||||
"text2": [
|
"TemperatureUnit": {
|
||||||
"Občutljivost",
|
"displayText": "Enota za\ntemperaturo",
|
||||||
"premikanja"
|
"description": "Enota za temperaturo (C=celzij | F=fahrenheit)"
|
||||||
],
|
},
|
||||||
"desc": "0=izklopljeno | 1=najmanjša | ... | 9=največja"
|
"DisplayRotation": {
|
||||||
},
|
"displayText": "Orientacija\nzaslona",
|
||||||
"SleepTemperature": {
|
"description": "D=desničar | L=levičar | S=samodejno"
|
||||||
"text2": [
|
},
|
||||||
"Temp. med",
|
"CooldownBlink": {
|
||||||
"spanjem"
|
"displayText": "Utripanje med\nhlajenjem",
|
||||||
],
|
"description": "Ko je konica še vroča, utripaj prikaz temperature med hlajenjem."
|
||||||
"desc": "Temperatura med spanjem"
|
},
|
||||||
},
|
"ScrollingSpeed": {
|
||||||
"SleepTimeout": {
|
"displayText": "Hitrost\nbesedila",
|
||||||
"text2": [
|
"description": "Hitrost, s katero se prikazuje besedilo (P=počasi | H=hitro)"
|
||||||
"Čas do",
|
},
|
||||||
"spanja"
|
"ReverseButtonTempChange": {
|
||||||
],
|
"displayText": "Obrni\ntipki + -?",
|
||||||
"desc": "Čas pred spanjem (s=sekunde | m=minute)"
|
"description": "Zamenjaj funkciji gumbov."
|
||||||
},
|
},
|
||||||
"ShutdownTimeout": {
|
"AnimSpeed": {
|
||||||
"text2": [
|
"displayText": "Anim.\nspeed",
|
||||||
"Čas do",
|
"description": "Pace of icon animations in menu (O=off | P=slow | M=medium | H=fast)"
|
||||||
"izklopa"
|
},
|
||||||
],
|
"AnimLoop": {
|
||||||
"desc": "Čas do izklopa (m=minute)"
|
"displayText": "Anim.\nloop",
|
||||||
},
|
"description": "Loop icon animations in main menu"
|
||||||
"HallEffSensitivity": {
|
},
|
||||||
"text2": [
|
"Brightness": {
|
||||||
"Občut.",
|
"displayText": "Screen\nbrightness",
|
||||||
"Hall son"
|
"description": "Adjust the OLED screen brightness"
|
||||||
],
|
},
|
||||||
"desc": "Občutljivost Hallove sonde za zaznavanje spanja (0=izklopljeno | 1=najmanjša | ... | 9=največja)"
|
"ColourInversion": {
|
||||||
},
|
"displayText": "Invert\nscreen",
|
||||||
"TemperatureUnit": {
|
"description": "Invert the OLED screen colors"
|
||||||
"text2": [
|
},
|
||||||
"Enota za",
|
"LOGOTime": {
|
||||||
"temperaturo"
|
"displayText": "Boot logo\nduration",
|
||||||
],
|
"description": "Set boot logo duration (s=seconds)"
|
||||||
"desc": "Enota za temperaturo (C=celzij | F=fahrenheit)"
|
},
|
||||||
},
|
"AdvancedIdle": {
|
||||||
"DisplayRotation": {
|
"displayText": "Več info. na\nmir. zaslonu",
|
||||||
"text2": [
|
"description": "Prikaži več informacij z manjšo pisavo na mirovalnem zaslonu."
|
||||||
"Orientacija",
|
},
|
||||||
"zaslona"
|
"AdvancedSoldering": {
|
||||||
],
|
"displayText": "Več info na\nzaslonu spaj.",
|
||||||
"desc": "D=desničar | L=levičar | S=samodejno"
|
"description": "Prikaže več informacij z manjšo pisavo na zaslonu med spajkanjem."
|
||||||
},
|
},
|
||||||
"CooldownBlink": {
|
"PowerLimit": {
|
||||||
"text2": [
|
"displayText": "Meja\nmoči",
|
||||||
"Utripanje med",
|
"description": "Največja dovoljena moč v vatih [W]"
|
||||||
"hlajenjem"
|
},
|
||||||
],
|
"CalibrateCJC": {
|
||||||
"desc": "Ko je konica še vroča, utripaj prikaz temperature med hlajenjem."
|
"displayText": "Calibrate CJC\nat next boot",
|
||||||
},
|
"description": "At next boot tip Cold Junction Compensation will be calibrated (not required if Delta T is < 5°C)"
|
||||||
"ScrollingSpeed": {
|
},
|
||||||
"text2": [
|
"VoltageCalibration": {
|
||||||
"Hitrost",
|
"displayText": "Kalibriram\nvhodno napetost?",
|
||||||
"besedila"
|
"description": "Kalibracija VIN (nastavitve z gumbi, dolg pritisk za izhod)"
|
||||||
],
|
},
|
||||||
"desc": "Hitrost, s katero se prikazuje besedilo (P=počasi | H=hitro)"
|
"PowerPulsePower": {
|
||||||
},
|
"displayText": "Pulz\nmoči",
|
||||||
"ReverseButtonTempChange": {
|
"description": "Velikost moči za vzdrževanje budnosti."
|
||||||
"text2": [
|
},
|
||||||
"Obrni",
|
"PowerPulseWait": {
|
||||||
"tipki + -?"
|
"displayText": "Power pulse\ndelay",
|
||||||
],
|
"description": "Delay before keep-awake-pulse is triggered (x 2.5s)"
|
||||||
"desc": "Zamenjaj funkciji gumbov."
|
},
|
||||||
},
|
"PowerPulseDuration": {
|
||||||
"AnimSpeed": {
|
"displayText": "Power pulse\nduration",
|
||||||
"text2": [
|
"description": "Keep-awake-pulse duration (x 250ms)"
|
||||||
"Anim.",
|
},
|
||||||
"speed"
|
"SettingsReset": {
|
||||||
],
|
"displayText": "Tovarniške\nnastavitve?",
|
||||||
"desc": "Pace of icon animations in menu (O=off | P=slow | M=medium | H=fast)"
|
"description": "Ponastavitev vseh nastavitev"
|
||||||
},
|
},
|
||||||
"AnimLoop": {
|
"LanguageSwitch": {
|
||||||
"text2": [
|
"displayText": "Jezik:\n SL Slovenščina",
|
||||||
"Anim.",
|
"description": ""
|
||||||
"loop"
|
}
|
||||||
],
|
}
|
||||||
"desc": "Loop icon animations in main menu"
|
|
||||||
},
|
|
||||||
"Brightness": {
|
|
||||||
"text2": [
|
|
||||||
"Screen",
|
|
||||||
"brightness"
|
|
||||||
],
|
|
||||||
"desc": "Adjust the OLED screen brightness"
|
|
||||||
},
|
|
||||||
"ColourInversion": {
|
|
||||||
"text2": [
|
|
||||||
"Invert",
|
|
||||||
"screen"
|
|
||||||
],
|
|
||||||
"desc": "Invert the OLED screen colors"
|
|
||||||
},
|
|
||||||
"LOGOTime": {
|
|
||||||
"text2": [
|
|
||||||
"Boot logo",
|
|
||||||
"duration"
|
|
||||||
],
|
|
||||||
"desc": "Set boot logo duration (s=seconds)"
|
|
||||||
},
|
|
||||||
"AdvancedIdle": {
|
|
||||||
"text2": [
|
|
||||||
"Več info. na",
|
|
||||||
"mir. zaslonu"
|
|
||||||
],
|
|
||||||
"desc": "Prikaži več informacij z manjšo pisavo na mirovalnem zaslonu."
|
|
||||||
},
|
|
||||||
"AdvancedSoldering": {
|
|
||||||
"text2": [
|
|
||||||
"Več info na",
|
|
||||||
"zaslonu spaj."
|
|
||||||
],
|
|
||||||
"desc": "Prikaže več informacij z manjšo pisavo na zaslonu med spajkanjem."
|
|
||||||
},
|
|
||||||
"PowerLimit": {
|
|
||||||
"text2": [
|
|
||||||
"Meja",
|
|
||||||
"moči"
|
|
||||||
],
|
|
||||||
"desc": "Največja dovoljena moč v vatih [W]"
|
|
||||||
},
|
|
||||||
"CalibrateCJC": {
|
|
||||||
"text2": [
|
|
||||||
"Calibrate CJC",
|
|
||||||
"at next boot"
|
|
||||||
],
|
|
||||||
"desc": "At next boot tip Cold Junction Compensation will be calibrated (not required if Delta T is < 5°C)"
|
|
||||||
},
|
|
||||||
"VoltageCalibration": {
|
|
||||||
"text2": [
|
|
||||||
"Kalibriram",
|
|
||||||
"vhodno napetost?"
|
|
||||||
],
|
|
||||||
"desc": "Kalibracija VIN (nastavitve z gumbi, dolg pritisk za izhod)"
|
|
||||||
},
|
|
||||||
"PowerPulsePower": {
|
|
||||||
"text2": [
|
|
||||||
"Pulz",
|
|
||||||
"moči"
|
|
||||||
],
|
|
||||||
"desc": "Velikost moči za vzdrževanje budnosti."
|
|
||||||
},
|
|
||||||
"PowerPulseWait": {
|
|
||||||
"text2": [
|
|
||||||
"Power pulse",
|
|
||||||
"delay"
|
|
||||||
],
|
|
||||||
"desc": "Delay before keep-awake-pulse is triggered (x 2.5s)"
|
|
||||||
},
|
|
||||||
"PowerPulseDuration": {
|
|
||||||
"text2": [
|
|
||||||
"Power pulse",
|
|
||||||
"duration"
|
|
||||||
],
|
|
||||||
"desc": "Keep-awake-pulse duration (x 250ms)"
|
|
||||||
},
|
|
||||||
"SettingsReset": {
|
|
||||||
"text2": [
|
|
||||||
"Tovarniške",
|
|
||||||
"nastavitve?"
|
|
||||||
],
|
|
||||||
"desc": "Ponastavitev vseh nastavitev"
|
|
||||||
},
|
|
||||||
"LanguageSwitch": {
|
|
||||||
"text2": [
|
|
||||||
"Jezik:",
|
|
||||||
" SL Slovenščina"
|
|
||||||
],
|
|
||||||
"desc": ""
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@@ -1,337 +1,243 @@
|
|||||||
{
|
{
|
||||||
"languageCode": "SR_CYRL",
|
"languageCode": "SR_CYRL",
|
||||||
"languageLocalName": "Српски",
|
"languageLocalName": "Српски",
|
||||||
"tempUnitFahrenheit": false,
|
"tempUnitFahrenheit": false,
|
||||||
"messages": {
|
"messagesWarn": {
|
||||||
"SettingsCalibrationWarning": "Before rebooting, make sure tip & handle are at room temperature!",
|
"CJCCalibrationDone": {
|
||||||
"CJCCalibrating": "calibrating",
|
"message": "Calibration\ndone!"
|
||||||
"SettingsResetWarning": "Да ли заиста желите да вратите поставке на фабричке вредности?",
|
},
|
||||||
"UVLOWarningString": "НИЗ.НАП.",
|
"ResetOKMessage": {
|
||||||
"UndervoltageString": "ПРЕНИЗАК НАПОН",
|
"message": "Reset OK"
|
||||||
"InputVoltageString": "Ул. напон: ",
|
},
|
||||||
"SleepingSimpleString": "Сан",
|
"SettingsResetMessage": {
|
||||||
"SleepingAdvancedString": "Спавање...",
|
"message": "Certain settings\nwere changed!"
|
||||||
"SleepingTipAdvancedString": "Врх:",
|
},
|
||||||
"OffString": "Иск",
|
"NoAccelerometerMessage": {
|
||||||
"DeviceFailedValidationWarning": "Your device is most likely a counterfeit!"
|
"message": "No accelerometer\ndetected!"
|
||||||
},
|
},
|
||||||
"messagesWarn": {
|
"NoPowerDeliveryMessage": {
|
||||||
"CJCCalibrationDone": [
|
"message": "No USB-PD IC\ndetected!"
|
||||||
"Calibration",
|
},
|
||||||
"done!"
|
"LockingKeysString": {
|
||||||
],
|
"message": "LOCKED"
|
||||||
"ResetOKMessage": "Reset OK",
|
},
|
||||||
"SettingsResetMessage": [
|
"UnlockingKeysString": {
|
||||||
"Certain settings",
|
"message": "UNLOCKED"
|
||||||
"were changed!"
|
},
|
||||||
],
|
"WarningKeysLockedString": {
|
||||||
"NoAccelerometerMessage": [
|
"message": "!LOCKED!"
|
||||||
"No accelerometer",
|
},
|
||||||
"detected!"
|
"WarningThermalRunaway": {
|
||||||
],
|
"message": "Thermal\nRunaway"
|
||||||
"NoPowerDeliveryMessage": [
|
},
|
||||||
"No USB-PD IC",
|
"SettingsCalibrationWarning": {
|
||||||
"detected!"
|
"message": "Before rebooting, make sure tip & handle are at room temperature!"
|
||||||
],
|
},
|
||||||
"LockingKeysString": "LOCKED",
|
"CJCCalibrating": {
|
||||||
"UnlockingKeysString": "UNLOCKED",
|
"message": "calibrating"
|
||||||
"WarningKeysLockedString": "!LOCKED!",
|
},
|
||||||
"WarningThermalRunaway": [
|
"SettingsResetWarning": {
|
||||||
"Thermal",
|
"message": "Да ли заиста желите да вратите поставке на фабричке вредности?"
|
||||||
"Runaway"
|
},
|
||||||
]
|
"UVLOWarningString": {
|
||||||
},
|
"message": "НИЗ.НАП."
|
||||||
"characters": {
|
},
|
||||||
"SettingRightChar": "Д",
|
"UndervoltageString": {
|
||||||
"SettingLeftChar": "Л",
|
"message": "ПРЕНИЗАК НАПОН"
|
||||||
"SettingAutoChar": "А",
|
},
|
||||||
"SettingOffChar": "O",
|
"InputVoltageString": {
|
||||||
"SettingSlowChar": "С",
|
"message": "Ул. напон: "
|
||||||
"SettingMediumChar": "M",
|
},
|
||||||
"SettingFastChar": "Б",
|
"SleepingSimpleString": {
|
||||||
"SettingStartNoneChar": "И",
|
"message": "Сан"
|
||||||
"SettingStartSolderingChar": "Л",
|
},
|
||||||
"SettingStartSleepChar": "С",
|
"SleepingAdvancedString": {
|
||||||
"SettingStartSleepOffChar": "X",
|
"message": "Спавање..."
|
||||||
"SettingLockDisableChar": "D",
|
},
|
||||||
"SettingLockBoostChar": "B",
|
"SleepingTipAdvancedString": {
|
||||||
"SettingLockFullChar": "F"
|
"message": "Врх:"
|
||||||
},
|
},
|
||||||
"menuGroups": {
|
"OffString": {
|
||||||
"PowerMenu": {
|
"message": "Иск"
|
||||||
"text2": [
|
},
|
||||||
"Power",
|
"DeviceFailedValidationWarning": {
|
||||||
"settings"
|
"message": "Your device is most likely a counterfeit!"
|
||||||
],
|
}
|
||||||
"desc": ""
|
},
|
||||||
},
|
"characters": {
|
||||||
"SolderingMenu": {
|
"SettingRightChar": "Д",
|
||||||
"text2": [
|
"SettingLeftChar": "Л",
|
||||||
"Поставке",
|
"SettingAutoChar": "А",
|
||||||
"лемљења"
|
"SettingOffChar": "O",
|
||||||
],
|
"SettingSlowChar": "С",
|
||||||
"desc": ""
|
"SettingMediumChar": "M",
|
||||||
},
|
"SettingFastChar": "Б",
|
||||||
"PowerSavingMenu": {
|
"SettingStartNoneChar": "И",
|
||||||
"text2": [
|
"SettingStartSolderingChar": "Л",
|
||||||
"Уштеда",
|
"SettingStartSleepChar": "С",
|
||||||
"енергије"
|
"SettingStartSleepOffChar": "X",
|
||||||
],
|
"SettingLockDisableChar": "D",
|
||||||
"desc": ""
|
"SettingLockBoostChar": "B",
|
||||||
},
|
"SettingLockFullChar": "F"
|
||||||
"UIMenu": {
|
},
|
||||||
"text2": [
|
"menuGroups": {
|
||||||
"Корисничко",
|
"PowerMenu": {
|
||||||
"сучеље"
|
"displayText": "Power\nsettings",
|
||||||
],
|
"description": ""
|
||||||
"desc": ""
|
},
|
||||||
},
|
"SolderingMenu": {
|
||||||
"AdvancedMenu": {
|
"displayText": "Поставке\nлемљења",
|
||||||
"text2": [
|
"description": ""
|
||||||
"Напредне",
|
},
|
||||||
"поставке"
|
"PowerSavingMenu": {
|
||||||
],
|
"displayText": "Уштеда\nенергије",
|
||||||
"desc": ""
|
"description": ""
|
||||||
}
|
},
|
||||||
},
|
"UIMenu": {
|
||||||
"menuOptions": {
|
"displayText": "Корисничко\nсучеље",
|
||||||
"DCInCutoff": {
|
"description": ""
|
||||||
"text2": [
|
},
|
||||||
"Врста",
|
"AdvancedMenu": {
|
||||||
"напајања"
|
"displayText": "Напредне\nпоставке",
|
||||||
],
|
"description": ""
|
||||||
"desc": "Тип напајања; одређује најнижи радни напон. (DC=адаптер [10V] | S=батерија [3,3V по ћелији])"
|
}
|
||||||
},
|
},
|
||||||
"MinVolCell": {
|
"menuOptions": {
|
||||||
"text2": [
|
"DCInCutoff": {
|
||||||
"Minimum",
|
"displayText": "Врста\nнапајања",
|
||||||
"voltage"
|
"description": "Тип напајања; одређује најнижи радни напон. (DC=адаптер [10V] | S=батерија [3,3V по ћелији])"
|
||||||
],
|
},
|
||||||
"desc": "Minimum allowed voltage per battery cell (3S: 3 - 3.7V | 4-6S: 2.4 - 3.7V)"
|
"MinVolCell": {
|
||||||
},
|
"displayText": "Minimum\nvoltage",
|
||||||
"QCMaxVoltage": {
|
"description": "Minimum allowed voltage per battery cell (3S: 3 - 3.7V | 4-6S: 2.4 - 3.7V)"
|
||||||
"text2": [
|
},
|
||||||
"Улазна",
|
"QCMaxVoltage": {
|
||||||
"снага"
|
"displayText": "Улазна\nснага",
|
||||||
],
|
"description": "Снага напајања у ватима."
|
||||||
"desc": "Снага напајања у ватима."
|
},
|
||||||
},
|
"PDNegTimeout": {
|
||||||
"PDNegTimeout": {
|
"displayText": "PD\ntimeout",
|
||||||
"text2": [
|
"description": "PD negotiation timeout in 100ms steps for compatibility with some QC chargers"
|
||||||
"PD",
|
},
|
||||||
"timeout"
|
"BoostTemperature": {
|
||||||
],
|
"displayText": "Темп.\nпојачања",
|
||||||
"desc": "PD negotiation timeout in 100ms steps for compatibility with some QC chargers"
|
"description": "Температура врха лемилице у току појачања."
|
||||||
},
|
},
|
||||||
"BoostTemperature": {
|
"AutoStart": {
|
||||||
"text2": [
|
"displayText": "Врући\nстарт",
|
||||||
"Темп.",
|
"description": "Лемилица одмах по покретању прелази у режим лемљења и греје се. (И=искључити | Л=лемљење | С=спавати | X=спавати собна температура)"
|
||||||
"појачања"
|
},
|
||||||
],
|
"TempChangeShortStep": {
|
||||||
"desc": "Температура врха лемилице у току појачања."
|
"displayText": "Temp change\nshort",
|
||||||
},
|
"description": "Temperature-change-increment on short button press"
|
||||||
"AutoStart": {
|
},
|
||||||
"text2": [
|
"TempChangeLongStep": {
|
||||||
"Врући",
|
"displayText": "Temp change\nlong",
|
||||||
"старт"
|
"description": "Temperature-change-increment on long button press"
|
||||||
],
|
},
|
||||||
"desc": "Лемилица одмах по покретању прелази у режим лемљења и греје се. (И=искључити | Л=лемљење | С=спавати | X=спавати собна температура)"
|
"LockingMode": {
|
||||||
},
|
"displayText": "Allow locking\nbuttons",
|
||||||
"TempChangeShortStep": {
|
"description": "While soldering, hold down both buttons to toggle locking them (D=disable | B=boost mode only | F=full locking)"
|
||||||
"text2": [
|
},
|
||||||
"Temp change",
|
"MotionSensitivity": {
|
||||||
"short"
|
"displayText": "Осетљивост\nна покрет",
|
||||||
],
|
"description": "Осетљивост сензора покрета. (0=искључено | 1=најмање осетљиво | ... | 9=најосетљивије)"
|
||||||
"desc": "Temperature-change-increment on short button press"
|
},
|
||||||
},
|
"SleepTemperature": {
|
||||||
"TempChangeLongStep": {
|
"displayText": "Темп.\nспавања",
|
||||||
"text2": [
|
"description": "Температура на коју се спушта лемилица након одређеног времена мировања. (C | F)"
|
||||||
"Temp change",
|
},
|
||||||
"long"
|
"SleepTimeout": {
|
||||||
],
|
"displayText": "Време до\nспавања",
|
||||||
"desc": "Temperature-change-increment on long button press"
|
"description": "Време мировања након кога лемилица спушта температуру. (m=минути | s=секунде)"
|
||||||
},
|
},
|
||||||
"LockingMode": {
|
"ShutdownTimeout": {
|
||||||
"text2": [
|
"displayText": "Време до\nгашења",
|
||||||
"Allow locking",
|
"description": "Време мировања након кога се лемилица гаси. (m=минути)"
|
||||||
"buttons"
|
},
|
||||||
],
|
"HallEffSensitivity": {
|
||||||
"desc": "While soldering, hold down both buttons to toggle locking them (D=disable | B=boost mode only | F=full locking)"
|
"displayText": "Hall sensor\nsensitivity",
|
||||||
},
|
"description": "Sensitivity to magnets (0=искључено | 1=најмање осетљиво | ... | 9=најосетљивије)"
|
||||||
"MotionSensitivity": {
|
},
|
||||||
"text2": [
|
"TemperatureUnit": {
|
||||||
"Осетљивост",
|
"displayText": "Јединица\nтемпературе",
|
||||||
"на покрет"
|
"description": "Јединице у којима се приказује температура. (C=целзијус | F=фаренхајт)"
|
||||||
],
|
},
|
||||||
"desc": "Осетљивост сензора покрета. (0=искључено | 1=најмање осетљиво | ... | 9=најосетљивије)"
|
"DisplayRotation": {
|
||||||
},
|
"displayText": "Оријентација\nекрана",
|
||||||
"SleepTemperature": {
|
"description": "Како је окренут екран. (Д=за десноруке | Л=за леворуке | А=аутоматски)"
|
||||||
"text2": [
|
},
|
||||||
"Темп.",
|
"CooldownBlink": {
|
||||||
"спавања"
|
"displayText": "Упозорење\nпри хлађењу",
|
||||||
],
|
"description": "Приказ температуре трепће приликом хлађења докле год је врх и даље врућ."
|
||||||
"desc": "Температура на коју се спушта лемилица након одређеног времена мировања. (C | F)"
|
},
|
||||||
},
|
"ScrollingSpeed": {
|
||||||
"SleepTimeout": {
|
"displayText": "Брзина\nпорука",
|
||||||
"text2": [
|
"description": "Брзина кретања описних порука попут ове. (С=споро | Б=брзо)"
|
||||||
"Време до",
|
},
|
||||||
"спавања"
|
"ReverseButtonTempChange": {
|
||||||
],
|
"displayText": "Swap\n+ - keys",
|
||||||
"desc": "Време мировања након кога лемилица спушта температуру. (m=минути | s=секунде)"
|
"description": "Reverse assignment of buttons for temperature adjustment"
|
||||||
},
|
},
|
||||||
"ShutdownTimeout": {
|
"AnimSpeed": {
|
||||||
"text2": [
|
"displayText": "Anim.\nspeed",
|
||||||
"Време до",
|
"description": "Pace of icon animations in menu (O=off | С=slow | M=medium | Б=fast)"
|
||||||
"гашења"
|
},
|
||||||
],
|
"AnimLoop": {
|
||||||
"desc": "Време мировања након кога се лемилица гаси. (m=минути)"
|
"displayText": "Anim.\nloop",
|
||||||
},
|
"description": "Loop icon animations in main menu"
|
||||||
"HallEffSensitivity": {
|
},
|
||||||
"text2": [
|
"Brightness": {
|
||||||
"Hall sensor",
|
"displayText": "Screen\nbrightness",
|
||||||
"sensitivity"
|
"description": "Adjust the OLED screen brightness"
|
||||||
],
|
},
|
||||||
"desc": "Sensitivity to magnets (0=искључено | 1=најмање осетљиво | ... | 9=најосетљивије)"
|
"ColourInversion": {
|
||||||
},
|
"displayText": "Invert\nscreen",
|
||||||
"TemperatureUnit": {
|
"description": "Invert the OLED screen colors"
|
||||||
"text2": [
|
},
|
||||||
"Јединица",
|
"LOGOTime": {
|
||||||
"температуре"
|
"displayText": "Boot logo\nduration",
|
||||||
],
|
"description": "Set boot logo duration (s=seconds)"
|
||||||
"desc": "Јединице у којима се приказује температура. (C=целзијус | F=фаренхајт)"
|
},
|
||||||
},
|
"AdvancedIdle": {
|
||||||
"DisplayRotation": {
|
"displayText": "Детаљи током\nмировања",
|
||||||
"text2": [
|
"description": "Приказивање детаљних информација на екрану током мировања."
|
||||||
"Оријентација",
|
},
|
||||||
"екрана"
|
"AdvancedSoldering": {
|
||||||
],
|
"displayText": "Детаљи током\nлемљења",
|
||||||
"desc": "Како је окренут екран. (Д=за десноруке | Л=за леворуке | А=аутоматски)"
|
"description": "Приказивање детаљних информација на екрану током лемљења."
|
||||||
},
|
},
|
||||||
"CooldownBlink": {
|
"PowerLimit": {
|
||||||
"text2": [
|
"displayText": "Power\nlimit",
|
||||||
"Упозорење",
|
"description": "Maximum power the iron can use (W=watt)"
|
||||||
"при хлађењу"
|
},
|
||||||
],
|
"CalibrateCJC": {
|
||||||
"desc": "Приказ температуре трепће приликом хлађења докле год је врх и даље врућ."
|
"displayText": "Calibrate CJC\nat next boot",
|
||||||
},
|
"description": "At next boot tip Cold Junction Compensation will be calibrated (not required if Delta T is < 5 C)"
|
||||||
"ScrollingSpeed": {
|
},
|
||||||
"text2": [
|
"VoltageCalibration": {
|
||||||
"Брзина",
|
"displayText": "Калибрација\nулазног напона",
|
||||||
"порука"
|
"description": "Калибрисање улазног напона. Подешава се на тастере; дуги притисак за крај."
|
||||||
],
|
},
|
||||||
"desc": "Брзина кретања описних порука попут ове. (С=споро | Б=брзо)"
|
"PowerPulsePower": {
|
||||||
},
|
"displayText": "Power\npulse",
|
||||||
"ReverseButtonTempChange": {
|
"description": "Intensity of power of keep-awake-pulse (W=watt)"
|
||||||
"text2": [
|
},
|
||||||
"Swap",
|
"PowerPulseWait": {
|
||||||
"+ - keys"
|
"displayText": "Power pulse\ndelay",
|
||||||
],
|
"description": "Delay before keep-awake-pulse is triggered (x 2.5с)"
|
||||||
"desc": "Reverse assignment of buttons for temperature adjustment"
|
},
|
||||||
},
|
"PowerPulseDuration": {
|
||||||
"AnimSpeed": {
|
"displayText": "Power pulse\nduration",
|
||||||
"text2": [
|
"description": "Keep-awake-pulse duration (x 250мс)"
|
||||||
"Anim.",
|
},
|
||||||
"speed"
|
"SettingsReset": {
|
||||||
],
|
"displayText": "Фабричке\nпоставке",
|
||||||
"desc": "Pace of icon animations in menu (O=off | С=slow | M=medium | Б=fast)"
|
"description": "Враћање свих поставки на фабричке вредности."
|
||||||
},
|
},
|
||||||
"AnimLoop": {
|
"LanguageSwitch": {
|
||||||
"text2": [
|
"displayText": "Jезик:\n SR Српски",
|
||||||
"Anim.",
|
"description": ""
|
||||||
"loop"
|
}
|
||||||
],
|
}
|
||||||
"desc": "Loop icon animations in main menu"
|
|
||||||
},
|
|
||||||
"Brightness": {
|
|
||||||
"text2": [
|
|
||||||
"Screen",
|
|
||||||
"brightness"
|
|
||||||
],
|
|
||||||
"desc": "Adjust the OLED screen brightness"
|
|
||||||
},
|
|
||||||
"ColourInversion": {
|
|
||||||
"text2": [
|
|
||||||
"Invert",
|
|
||||||
"screen"
|
|
||||||
],
|
|
||||||
"desc": "Invert the OLED screen colors"
|
|
||||||
},
|
|
||||||
"LOGOTime": {
|
|
||||||
"text2": [
|
|
||||||
"Boot logo",
|
|
||||||
"duration"
|
|
||||||
],
|
|
||||||
"desc": "Set boot logo duration (s=seconds)"
|
|
||||||
},
|
|
||||||
"AdvancedIdle": {
|
|
||||||
"text2": [
|
|
||||||
"Детаљи током",
|
|
||||||
"мировања"
|
|
||||||
],
|
|
||||||
"desc": "Приказивање детаљних информација на екрану током мировања."
|
|
||||||
},
|
|
||||||
"AdvancedSoldering": {
|
|
||||||
"text2": [
|
|
||||||
"Детаљи током",
|
|
||||||
"лемљења"
|
|
||||||
],
|
|
||||||
"desc": "Приказивање детаљних информација на екрану током лемљења."
|
|
||||||
},
|
|
||||||
"PowerLimit": {
|
|
||||||
"text2": [
|
|
||||||
"Power",
|
|
||||||
"limit"
|
|
||||||
],
|
|
||||||
"desc": "Maximum power the iron can use (W=watt)"
|
|
||||||
},
|
|
||||||
"CalibrateCJC": {
|
|
||||||
"text2": [
|
|
||||||
"Calibrate CJC",
|
|
||||||
"at next boot"
|
|
||||||
],
|
|
||||||
"desc": "At next boot tip Cold Junction Compensation will be calibrated (not required if Delta T is < 5 C)"
|
|
||||||
},
|
|
||||||
"VoltageCalibration": {
|
|
||||||
"text2": [
|
|
||||||
"Калибрација",
|
|
||||||
"улазног напона"
|
|
||||||
],
|
|
||||||
"desc": "Калибрисање улазног напона. Подешава се на тастере; дуги притисак за крај."
|
|
||||||
},
|
|
||||||
"PowerPulsePower": {
|
|
||||||
"text2": [
|
|
||||||
"Power",
|
|
||||||
"pulse"
|
|
||||||
],
|
|
||||||
"desc": "Intensity of power of keep-awake-pulse (W=watt)"
|
|
||||||
},
|
|
||||||
"PowerPulseWait": {
|
|
||||||
"text2": [
|
|
||||||
"Power pulse",
|
|
||||||
"delay"
|
|
||||||
],
|
|
||||||
"desc": "Delay before keep-awake-pulse is triggered (x 2.5с)"
|
|
||||||
},
|
|
||||||
"PowerPulseDuration": {
|
|
||||||
"text2": [
|
|
||||||
"Power pulse",
|
|
||||||
"duration"
|
|
||||||
],
|
|
||||||
"desc": "Keep-awake-pulse duration (x 250мс)"
|
|
||||||
},
|
|
||||||
"SettingsReset": {
|
|
||||||
"text2": [
|
|
||||||
"Фабричке",
|
|
||||||
"поставке"
|
|
||||||
],
|
|
||||||
"desc": "Враћање свих поставки на фабричке вредности."
|
|
||||||
},
|
|
||||||
"LanguageSwitch": {
|
|
||||||
"text2": [
|
|
||||||
"Jезик:",
|
|
||||||
" SR Српски"
|
|
||||||
],
|
|
||||||
"desc": ""
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@@ -1,337 +1,243 @@
|
|||||||
{
|
{
|
||||||
"languageCode": "SR_LATN",
|
"languageCode": "SR_LATN",
|
||||||
"languageLocalName": "Srpski",
|
"languageLocalName": "Srpski",
|
||||||
"tempUnitFahrenheit": false,
|
"tempUnitFahrenheit": false,
|
||||||
"messages": {
|
"messagesWarn": {
|
||||||
"SettingsCalibrationWarning": "Before rebooting, make sure tip & handle are at room temperature!",
|
"CJCCalibrationDone": {
|
||||||
"CJCCalibrating": "calibrating",
|
"message": "Calibration\ndone!"
|
||||||
"SettingsResetWarning": "Da li zaista želite da vratite postavke na fabričke vrednosti?",
|
},
|
||||||
"UVLOWarningString": "NIZ.NAP.",
|
"ResetOKMessage": {
|
||||||
"UndervoltageString": "PRENIZAK NAPON",
|
"message": "Reset OK"
|
||||||
"InputVoltageString": "Ul. napon: ",
|
},
|
||||||
"SleepingSimpleString": "Zzz",
|
"SettingsResetMessage": {
|
||||||
"SleepingAdvancedString": "Spavanje...",
|
"message": "Certain settings\nwere changed!"
|
||||||
"SleepingTipAdvancedString": "Vrh:",
|
},
|
||||||
"OffString": "Isk",
|
"NoAccelerometerMessage": {
|
||||||
"DeviceFailedValidationWarning": "Your device is most likely a counterfeit!"
|
"message": "No accelerometer\ndetected!"
|
||||||
},
|
},
|
||||||
"messagesWarn": {
|
"NoPowerDeliveryMessage": {
|
||||||
"CJCCalibrationDone": [
|
"message": "No USB-PD IC\ndetected!"
|
||||||
"Calibration",
|
},
|
||||||
"done!"
|
"LockingKeysString": {
|
||||||
],
|
"message": "LOCKED"
|
||||||
"ResetOKMessage": "Reset OK",
|
},
|
||||||
"SettingsResetMessage": [
|
"UnlockingKeysString": {
|
||||||
"Certain settings",
|
"message": "UNLOCKED"
|
||||||
"were changed!"
|
},
|
||||||
],
|
"WarningKeysLockedString": {
|
||||||
"NoAccelerometerMessage": [
|
"message": "!LOCKED!"
|
||||||
"No accelerometer",
|
},
|
||||||
"detected!"
|
"WarningThermalRunaway": {
|
||||||
],
|
"message": "Thermal\nRunaway"
|
||||||
"NoPowerDeliveryMessage": [
|
},
|
||||||
"No USB-PD IC",
|
"SettingsCalibrationWarning": {
|
||||||
"detected!"
|
"message": "Before rebooting, make sure tip & handle are at room temperature!"
|
||||||
],
|
},
|
||||||
"LockingKeysString": "LOCKED",
|
"CJCCalibrating": {
|
||||||
"UnlockingKeysString": "UNLOCKED",
|
"message": "calibrating"
|
||||||
"WarningKeysLockedString": "!LOCKED!",
|
},
|
||||||
"WarningThermalRunaway": [
|
"SettingsResetWarning": {
|
||||||
"Thermal",
|
"message": "Da li zaista želite da vratite postavke na fabričke vrednosti?"
|
||||||
"Runaway"
|
},
|
||||||
]
|
"UVLOWarningString": {
|
||||||
},
|
"message": "NIZ.NAP."
|
||||||
"characters": {
|
},
|
||||||
"SettingRightChar": "D",
|
"UndervoltageString": {
|
||||||
"SettingLeftChar": "L",
|
"message": "PRENIZAK NAPON"
|
||||||
"SettingAutoChar": "A",
|
},
|
||||||
"SettingOffChar": "O",
|
"InputVoltageString": {
|
||||||
"SettingSlowChar": "S",
|
"message": "Ul. napon: "
|
||||||
"SettingMediumChar": "M",
|
},
|
||||||
"SettingFastChar": "B",
|
"SleepingSimpleString": {
|
||||||
"SettingStartNoneChar": "I",
|
"message": "Zzz"
|
||||||
"SettingStartSolderingChar": "L",
|
},
|
||||||
"SettingStartSleepChar": "S",
|
"SleepingAdvancedString": {
|
||||||
"SettingStartSleepOffChar": "X",
|
"message": "Spavanje..."
|
||||||
"SettingLockDisableChar": "D",
|
},
|
||||||
"SettingLockBoostChar": "B",
|
"SleepingTipAdvancedString": {
|
||||||
"SettingLockFullChar": "F"
|
"message": "Vrh:"
|
||||||
},
|
},
|
||||||
"menuGroups": {
|
"OffString": {
|
||||||
"PowerMenu": {
|
"message": "Isk"
|
||||||
"text2": [
|
},
|
||||||
"Power",
|
"DeviceFailedValidationWarning": {
|
||||||
"settings"
|
"message": "Your device is most likely a counterfeit!"
|
||||||
],
|
}
|
||||||
"desc": ""
|
},
|
||||||
},
|
"characters": {
|
||||||
"SolderingMenu": {
|
"SettingRightChar": "D",
|
||||||
"text2": [
|
"SettingLeftChar": "L",
|
||||||
"Postavke",
|
"SettingAutoChar": "A",
|
||||||
"lemljenja"
|
"SettingOffChar": "O",
|
||||||
],
|
"SettingSlowChar": "S",
|
||||||
"desc": ""
|
"SettingMediumChar": "M",
|
||||||
},
|
"SettingFastChar": "B",
|
||||||
"PowerSavingMenu": {
|
"SettingStartNoneChar": "I",
|
||||||
"text2": [
|
"SettingStartSolderingChar": "L",
|
||||||
"Ušteda",
|
"SettingStartSleepChar": "S",
|
||||||
"energije"
|
"SettingStartSleepOffChar": "X",
|
||||||
],
|
"SettingLockDisableChar": "D",
|
||||||
"desc": ""
|
"SettingLockBoostChar": "B",
|
||||||
},
|
"SettingLockFullChar": "F"
|
||||||
"UIMenu": {
|
},
|
||||||
"text2": [
|
"menuGroups": {
|
||||||
"Korisničko",
|
"PowerMenu": {
|
||||||
"sučelje"
|
"displayText": "Power\nsettings",
|
||||||
],
|
"description": ""
|
||||||
"desc": ""
|
},
|
||||||
},
|
"SolderingMenu": {
|
||||||
"AdvancedMenu": {
|
"displayText": "Postavke\nlemljenja",
|
||||||
"text2": [
|
"description": ""
|
||||||
"Napredne",
|
},
|
||||||
"postavke"
|
"PowerSavingMenu": {
|
||||||
],
|
"displayText": "Ušteda\nenergije",
|
||||||
"desc": ""
|
"description": ""
|
||||||
}
|
},
|
||||||
},
|
"UIMenu": {
|
||||||
"menuOptions": {
|
"displayText": "Korisničko\nsučelje",
|
||||||
"DCInCutoff": {
|
"description": ""
|
||||||
"text2": [
|
},
|
||||||
"Vrsta",
|
"AdvancedMenu": {
|
||||||
"napajanja"
|
"displayText": "Napredne\npostavke",
|
||||||
],
|
"description": ""
|
||||||
"desc": "Tip napajanja; određuje najniži radni napon. (DC=adapter [10V], S=baterija [3,3V po ćeliji])"
|
}
|
||||||
},
|
},
|
||||||
"MinVolCell": {
|
"menuOptions": {
|
||||||
"text2": [
|
"DCInCutoff": {
|
||||||
"Minimum",
|
"displayText": "Vrsta\nnapajanja",
|
||||||
"voltage"
|
"description": "Tip napajanja; određuje najniži radni napon. (DC=adapter [10V], S=baterija [3,3V po ćeliji])"
|
||||||
],
|
},
|
||||||
"desc": "Minimum allowed voltage per battery cell (3S: 3 - 3.7V | 4-6S: 2.4 - 3.7V)"
|
"MinVolCell": {
|
||||||
},
|
"displayText": "Minimum\nvoltage",
|
||||||
"QCMaxVoltage": {
|
"description": "Minimum allowed voltage per battery cell (3S: 3 - 3.7V | 4-6S: 2.4 - 3.7V)"
|
||||||
"text2": [
|
},
|
||||||
"Ulazna",
|
"QCMaxVoltage": {
|
||||||
"snaga"
|
"displayText": "Ulazna\nsnaga",
|
||||||
],
|
"description": "Snaga napajanja u vatima."
|
||||||
"desc": "Snaga napajanja u vatima."
|
},
|
||||||
},
|
"PDNegTimeout": {
|
||||||
"PDNegTimeout": {
|
"displayText": "PD\ntimeout",
|
||||||
"text2": [
|
"description": "PD negotiation timeout in 100ms steps for compatibility with some QC chargers"
|
||||||
"PD",
|
},
|
||||||
"timeout"
|
"BoostTemperature": {
|
||||||
],
|
"displayText": "Temp.\npojačanja",
|
||||||
"desc": "PD negotiation timeout in 100ms steps for compatibility with some QC chargers"
|
"description": "Temperatura vrha lemilice u toku pojačanja."
|
||||||
},
|
},
|
||||||
"BoostTemperature": {
|
"AutoStart": {
|
||||||
"text2": [
|
"displayText": "Vrući\nstart",
|
||||||
"Temp.",
|
"description": "Lemilica odmah po pokretanju prelazi u režim lemljenja i greje se. (I=isključiti | L=lemljenje | S=spavati | X=spavati sobna temperatura)"
|
||||||
"pojačanja"
|
},
|
||||||
],
|
"TempChangeShortStep": {
|
||||||
"desc": "Temperatura vrha lemilice u toku pojačanja."
|
"displayText": "Temp change\nshort",
|
||||||
},
|
"description": "Temperature-change-increment on short button press"
|
||||||
"AutoStart": {
|
},
|
||||||
"text2": [
|
"TempChangeLongStep": {
|
||||||
"Vrući",
|
"displayText": "Temp change\nlong",
|
||||||
"start"
|
"description": "Temperature-change-increment on long button press"
|
||||||
],
|
},
|
||||||
"desc": "Lemilica odmah po pokretanju prelazi u režim lemljenja i greje se. (I=isključiti | L=lemljenje | S=spavati | X=spavati sobna temperatura)"
|
"LockingMode": {
|
||||||
},
|
"displayText": "Allow locking\nbuttons",
|
||||||
"TempChangeShortStep": {
|
"description": "While soldering, hold down both buttons to toggle locking them (D=disable | B=boost mode only | F=full locking)"
|
||||||
"text2": [
|
},
|
||||||
"Temp change",
|
"MotionSensitivity": {
|
||||||
"short"
|
"displayText": "Osetljivost\nna pokret",
|
||||||
],
|
"description": "Osetljivost senzora pokreta. (0=isključeno | 1=najmanje osetljivo | ... | 9=najosetljivije)"
|
||||||
"desc": "Temperature-change-increment on short button press"
|
},
|
||||||
},
|
"SleepTemperature": {
|
||||||
"TempChangeLongStep": {
|
"displayText": "Temp.\nspavanja",
|
||||||
"text2": [
|
"description": "Temperatura na koju se spušta lemilica nakon određenog vremena mirovanja. (C | F)"
|
||||||
"Temp change",
|
},
|
||||||
"long"
|
"SleepTimeout": {
|
||||||
],
|
"displayText": "Vreme do\nspavanja",
|
||||||
"desc": "Temperature-change-increment on long button press"
|
"description": "Vreme mirovanja nakon koga lemilica spušta temperaturu. (m=minuti | s=sekunde)"
|
||||||
},
|
},
|
||||||
"LockingMode": {
|
"ShutdownTimeout": {
|
||||||
"text2": [
|
"displayText": "Vreme do\ngašenja",
|
||||||
"Allow locking",
|
"description": "Vreme mirovanja nakon koga se lemilica gasi. (m=minuti)"
|
||||||
"buttons"
|
},
|
||||||
],
|
"HallEffSensitivity": {
|
||||||
"desc": "While soldering, hold down both buttons to toggle locking them (D=disable | B=boost mode only | F=full locking)"
|
"displayText": "Hall sensor\nsensitivity",
|
||||||
},
|
"description": "Sensitivity to magnets (0=isključeno | 1=najmanje osetljivo | ... | 9=najosetljivije)"
|
||||||
"MotionSensitivity": {
|
},
|
||||||
"text2": [
|
"TemperatureUnit": {
|
||||||
"Osetljivost",
|
"displayText": "Jedinica\ntemperature",
|
||||||
"na pokret"
|
"description": "Jedinice u kojima se prikazuje temperatura. (C=celzijus | F=farenhajt)"
|
||||||
],
|
},
|
||||||
"desc": "Osetljivost senzora pokreta. (0=isključeno | 1=najmanje osetljivo | ... | 9=najosetljivije)"
|
"DisplayRotation": {
|
||||||
},
|
"displayText": "Orijentacija\nekrana",
|
||||||
"SleepTemperature": {
|
"description": "Kako je okrenut ekran. (D=za desnoruke | L=za levoruke | A=automatski)"
|
||||||
"text2": [
|
},
|
||||||
"Temp.",
|
"CooldownBlink": {
|
||||||
"spavanja"
|
"displayText": "Upozorenje\npri hlađenju",
|
||||||
],
|
"description": "Prikaz temperature trepće prilikom hlađenja dokle god je vrh i dalje vruć."
|
||||||
"desc": "Temperatura na koju se spušta lemilica nakon određenog vremena mirovanja. (C | F)"
|
},
|
||||||
},
|
"ScrollingSpeed": {
|
||||||
"SleepTimeout": {
|
"displayText": "Brzina\nporuka",
|
||||||
"text2": [
|
"description": "Brzina kretanja opisnih poruka poput ove. (S=sporo | B=brzo)"
|
||||||
"Vreme do",
|
},
|
||||||
"spavanja"
|
"ReverseButtonTempChange": {
|
||||||
],
|
"displayText": "Swap\n+ - keys",
|
||||||
"desc": "Vreme mirovanja nakon koga lemilica spušta temperaturu. (m=minuti | s=sekunde)"
|
"description": "Reverse assignment of buttons for temperature adjustment"
|
||||||
},
|
},
|
||||||
"ShutdownTimeout": {
|
"AnimSpeed": {
|
||||||
"text2": [
|
"displayText": "Anim.\nspeed",
|
||||||
"Vreme do",
|
"description": "Pace of icon animations in menu (O=off | S=slow | M=medium | B=fast)"
|
||||||
"gašenja"
|
},
|
||||||
],
|
"AnimLoop": {
|
||||||
"desc": "Vreme mirovanja nakon koga se lemilica gasi. (m=minuti)"
|
"displayText": "Anim.\nloop",
|
||||||
},
|
"description": "Loop icon animations in main menu"
|
||||||
"HallEffSensitivity": {
|
},
|
||||||
"text2": [
|
"Brightness": {
|
||||||
"Hall sensor",
|
"displayText": "Screen\nbrightness",
|
||||||
"sensitivity"
|
"description": "Adjust the OLED screen brightness"
|
||||||
],
|
},
|
||||||
"desc": "Sensitivity to magnets (0=isključeno | 1=najmanje osetljivo | ... | 9=najosetljivije)"
|
"ColourInversion": {
|
||||||
},
|
"displayText": "Invert\nscreen",
|
||||||
"TemperatureUnit": {
|
"description": "Invert the OLED screen colors"
|
||||||
"text2": [
|
},
|
||||||
"Jedinica",
|
"LOGOTime": {
|
||||||
"temperature"
|
"displayText": "Boot logo\nduration",
|
||||||
],
|
"description": "Set boot logo duration (s=seconds)"
|
||||||
"desc": "Jedinice u kojima se prikazuje temperatura. (C=celzijus | F=farenhajt)"
|
},
|
||||||
},
|
"AdvancedIdle": {
|
||||||
"DisplayRotation": {
|
"displayText": "Detalji tokom\nmirovanja",
|
||||||
"text2": [
|
"description": "Prikazivanje detaljnih informacija na ekranu tokom mirovanja."
|
||||||
"Orijentacija",
|
},
|
||||||
"ekrana"
|
"AdvancedSoldering": {
|
||||||
],
|
"displayText": "Detalji tokom\nlemljenja",
|
||||||
"desc": "Kako je okrenut ekran. (D=za desnoruke | L=za levoruke | A=automatski)"
|
"description": "Prikazivanje detaljnih informacija na ekranu tokom lemljenja."
|
||||||
},
|
},
|
||||||
"CooldownBlink": {
|
"PowerLimit": {
|
||||||
"text2": [
|
"displayText": "Power\nlimit",
|
||||||
"Upozorenje",
|
"description": "Maximum power the iron can use (W=watt)"
|
||||||
"pri hlađenju"
|
},
|
||||||
],
|
"CalibrateCJC": {
|
||||||
"desc": "Prikaz temperature trepće prilikom hlađenja dokle god je vrh i dalje vruć."
|
"displayText": "Calibrate CJC\nat next boot",
|
||||||
},
|
"description": "At next boot tip Cold Junction Compensation will be calibrated (not required if Delta T is < 5°C)"
|
||||||
"ScrollingSpeed": {
|
},
|
||||||
"text2": [
|
"VoltageCalibration": {
|
||||||
"Brzina",
|
"displayText": "Kalibracija\nulaznog napona",
|
||||||
"poruka"
|
"description": "Kalibrisanje ulaznog napona. Podešava se na tastere; dugi pritisak za kraj."
|
||||||
],
|
},
|
||||||
"desc": "Brzina kretanja opisnih poruka poput ove. (S=sporo | B=brzo)"
|
"PowerPulsePower": {
|
||||||
},
|
"displayText": "Power\npulse",
|
||||||
"ReverseButtonTempChange": {
|
"description": "Intensity of power of keep-awake-pulse (W=watt)"
|
||||||
"text2": [
|
},
|
||||||
"Swap",
|
"PowerPulseWait": {
|
||||||
"+ - keys"
|
"displayText": "Power pulse\ndelay",
|
||||||
],
|
"description": "Delay before keep-awake-pulse is triggered (x 2.5s)"
|
||||||
"desc": "Reverse assignment of buttons for temperature adjustment"
|
},
|
||||||
},
|
"PowerPulseDuration": {
|
||||||
"AnimSpeed": {
|
"displayText": "Power pulse\nduration",
|
||||||
"text2": [
|
"description": "Keep-awake-pulse duration (x 250ms)"
|
||||||
"Anim.",
|
},
|
||||||
"speed"
|
"SettingsReset": {
|
||||||
],
|
"displayText": "Fabričke\npostavke",
|
||||||
"desc": "Pace of icon animations in menu (O=off | S=slow | M=medium | B=fast)"
|
"description": "Vraćanje svih postavki na fabričke vrednosti."
|
||||||
},
|
},
|
||||||
"AnimLoop": {
|
"LanguageSwitch": {
|
||||||
"text2": [
|
"displayText": "Jezik:\n SR Srpski",
|
||||||
"Anim.",
|
"description": ""
|
||||||
"loop"
|
}
|
||||||
],
|
}
|
||||||
"desc": "Loop icon animations in main menu"
|
|
||||||
},
|
|
||||||
"Brightness": {
|
|
||||||
"text2": [
|
|
||||||
"Screen",
|
|
||||||
"brightness"
|
|
||||||
],
|
|
||||||
"desc": "Adjust the OLED screen brightness"
|
|
||||||
},
|
|
||||||
"ColourInversion": {
|
|
||||||
"text2": [
|
|
||||||
"Invert",
|
|
||||||
"screen"
|
|
||||||
],
|
|
||||||
"desc": "Invert the OLED screen colors"
|
|
||||||
},
|
|
||||||
"LOGOTime": {
|
|
||||||
"text2": [
|
|
||||||
"Boot logo",
|
|
||||||
"duration"
|
|
||||||
],
|
|
||||||
"desc": "Set boot logo duration (s=seconds)"
|
|
||||||
},
|
|
||||||
"AdvancedIdle": {
|
|
||||||
"text2": [
|
|
||||||
"Detalji tokom",
|
|
||||||
"mirovanja"
|
|
||||||
],
|
|
||||||
"desc": "Prikazivanje detaljnih informacija na ekranu tokom mirovanja."
|
|
||||||
},
|
|
||||||
"AdvancedSoldering": {
|
|
||||||
"text2": [
|
|
||||||
"Detalji tokom",
|
|
||||||
"lemljenja"
|
|
||||||
],
|
|
||||||
"desc": "Prikazivanje detaljnih informacija na ekranu tokom lemljenja."
|
|
||||||
},
|
|
||||||
"PowerLimit": {
|
|
||||||
"text2": [
|
|
||||||
"Power",
|
|
||||||
"limit"
|
|
||||||
],
|
|
||||||
"desc": "Maximum power the iron can use (W=watt)"
|
|
||||||
},
|
|
||||||
"CalibrateCJC": {
|
|
||||||
"text2": [
|
|
||||||
"Calibrate CJC",
|
|
||||||
"at next boot"
|
|
||||||
],
|
|
||||||
"desc": "At next boot tip Cold Junction Compensation will be calibrated (not required if Delta T is < 5°C)"
|
|
||||||
},
|
|
||||||
"VoltageCalibration": {
|
|
||||||
"text2": [
|
|
||||||
"Kalibracija",
|
|
||||||
"ulaznog napona"
|
|
||||||
],
|
|
||||||
"desc": "Kalibrisanje ulaznog napona. Podešava se na tastere; dugi pritisak za kraj."
|
|
||||||
},
|
|
||||||
"PowerPulsePower": {
|
|
||||||
"text2": [
|
|
||||||
"Power",
|
|
||||||
"pulse"
|
|
||||||
],
|
|
||||||
"desc": "Intensity of power of keep-awake-pulse (W=watt)"
|
|
||||||
},
|
|
||||||
"PowerPulseWait": {
|
|
||||||
"text2": [
|
|
||||||
"Power pulse",
|
|
||||||
"delay"
|
|
||||||
],
|
|
||||||
"desc": "Delay before keep-awake-pulse is triggered (x 2.5s)"
|
|
||||||
},
|
|
||||||
"PowerPulseDuration": {
|
|
||||||
"text2": [
|
|
||||||
"Power pulse",
|
|
||||||
"duration"
|
|
||||||
],
|
|
||||||
"desc": "Keep-awake-pulse duration (x 250ms)"
|
|
||||||
},
|
|
||||||
"SettingsReset": {
|
|
||||||
"text2": [
|
|
||||||
"Fabričke",
|
|
||||||
"postavke"
|
|
||||||
],
|
|
||||||
"desc": "Vraćanje svih postavki na fabričke vrednosti."
|
|
||||||
},
|
|
||||||
"LanguageSwitch": {
|
|
||||||
"text2": [
|
|
||||||
"Jezik:",
|
|
||||||
" SR Srpski"
|
|
||||||
],
|
|
||||||
"desc": ""
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@@ -1,337 +1,243 @@
|
|||||||
{
|
{
|
||||||
"languageCode": "SV",
|
"languageCode": "SV",
|
||||||
"languageLocalName": "Svenska",
|
"languageLocalName": "Svenska",
|
||||||
"tempUnitFahrenheit": false,
|
"tempUnitFahrenheit": false,
|
||||||
"messages": {
|
"messagesWarn": {
|
||||||
"SettingsCalibrationWarning": "Before rebooting, make sure tip & handle are at room temperature!",
|
"CJCCalibrationDone": {
|
||||||
"CJCCalibrating": "calibrating",
|
"message": "Calibration\ndone!"
|
||||||
"SettingsResetWarning": "Är du säker på att du vill återställa inställningarna?",
|
},
|
||||||
"UVLOWarningString": "DC LÅG",
|
"ResetOKMessage": {
|
||||||
"UndervoltageString": "Underspänning",
|
"message": "Reset OK"
|
||||||
"InputVoltageString": "Inspän. V: ",
|
},
|
||||||
"SleepingSimpleString": "Zzzz",
|
"SettingsResetMessage": {
|
||||||
"SleepingAdvancedString": "Viloläge...",
|
"message": "Inställningar\nåterställda"
|
||||||
"SleepingTipAdvancedString": "Spets:",
|
},
|
||||||
"OffString": "Av",
|
"NoAccelerometerMessage": {
|
||||||
"DeviceFailedValidationWarning": "Your device is most likely a counterfeit!"
|
"message": "Ingen\naccelerometer"
|
||||||
},
|
},
|
||||||
"messagesWarn": {
|
"NoPowerDeliveryMessage": {
|
||||||
"CJCCalibrationDone": [
|
"message": "Ingen USB-PD IC\nhittades!"
|
||||||
"Calibration",
|
},
|
||||||
"done!"
|
"LockingKeysString": {
|
||||||
],
|
"message": "LÅST"
|
||||||
"ResetOKMessage": "Reset OK",
|
},
|
||||||
"SettingsResetMessage": [
|
"UnlockingKeysString": {
|
||||||
"Inställningar",
|
"message": "UPPLÅST"
|
||||||
"återställda"
|
},
|
||||||
],
|
"WarningKeysLockedString": {
|
||||||
"NoAccelerometerMessage": [
|
"message": "!LÅST!"
|
||||||
"Ingen",
|
},
|
||||||
"accelerometer"
|
"WarningThermalRunaway": {
|
||||||
],
|
"message": "Thermal\nRunaway"
|
||||||
"NoPowerDeliveryMessage": [
|
},
|
||||||
"Ingen USB-PD IC",
|
"SettingsCalibrationWarning": {
|
||||||
"hittades!"
|
"message": "Before rebooting, make sure tip & handle are at room temperature!"
|
||||||
],
|
},
|
||||||
"LockingKeysString": "LÅST",
|
"CJCCalibrating": {
|
||||||
"UnlockingKeysString": "UPPLÅST",
|
"message": "calibrating"
|
||||||
"WarningKeysLockedString": "!LÅST!",
|
},
|
||||||
"WarningThermalRunaway": [
|
"SettingsResetWarning": {
|
||||||
"Thermal",
|
"message": "Är du säker på att du vill återställa inställningarna?"
|
||||||
"Runaway"
|
},
|
||||||
]
|
"UVLOWarningString": {
|
||||||
},
|
"message": "DC LÅG"
|
||||||
"characters": {
|
},
|
||||||
"SettingRightChar": "H",
|
"UndervoltageString": {
|
||||||
"SettingLeftChar": "V",
|
"message": "Underspänning"
|
||||||
"SettingAutoChar": "A",
|
},
|
||||||
"SettingOffChar": "A",
|
"InputVoltageString": {
|
||||||
"SettingSlowChar": "L",
|
"message": "Inspän. V: "
|
||||||
"SettingMediumChar": "M",
|
},
|
||||||
"SettingFastChar": "S",
|
"SleepingSimpleString": {
|
||||||
"SettingStartNoneChar": "A",
|
"message": "Zzzz"
|
||||||
"SettingStartSolderingChar": "L",
|
},
|
||||||
"SettingStartSleepChar": "V",
|
"SleepingAdvancedString": {
|
||||||
"SettingStartSleepOffChar": "R",
|
"message": "Viloläge..."
|
||||||
"SettingLockDisableChar": "A",
|
},
|
||||||
"SettingLockBoostChar": "T",
|
"SleepingTipAdvancedString": {
|
||||||
"SettingLockFullChar": "F"
|
"message": "Spets:"
|
||||||
},
|
},
|
||||||
"menuGroups": {
|
"OffString": {
|
||||||
"PowerMenu": {
|
"message": "Av"
|
||||||
"text2": [
|
},
|
||||||
"Effekt-",
|
"DeviceFailedValidationWarning": {
|
||||||
"inställning"
|
"message": "Your device is most likely a counterfeit!"
|
||||||
],
|
}
|
||||||
"desc": ""
|
},
|
||||||
},
|
"characters": {
|
||||||
"SolderingMenu": {
|
"SettingRightChar": "H",
|
||||||
"text2": [
|
"SettingLeftChar": "V",
|
||||||
"Lödnings-",
|
"SettingAutoChar": "A",
|
||||||
"inställning"
|
"SettingOffChar": "A",
|
||||||
],
|
"SettingSlowChar": "L",
|
||||||
"desc": ""
|
"SettingMediumChar": "M",
|
||||||
},
|
"SettingFastChar": "S",
|
||||||
"PowerSavingMenu": {
|
"SettingStartNoneChar": "A",
|
||||||
"text2": [
|
"SettingStartSolderingChar": "L",
|
||||||
"Vilo-",
|
"SettingStartSleepChar": "V",
|
||||||
"läge"
|
"SettingStartSleepOffChar": "R",
|
||||||
],
|
"SettingLockDisableChar": "A",
|
||||||
"desc": ""
|
"SettingLockBoostChar": "T",
|
||||||
},
|
"SettingLockFullChar": "F"
|
||||||
"UIMenu": {
|
},
|
||||||
"text2": [
|
"menuGroups": {
|
||||||
"Användar-",
|
"PowerMenu": {
|
||||||
"gränssnitt"
|
"displayText": "Effekt-\ninställning",
|
||||||
],
|
"description": ""
|
||||||
"desc": ""
|
},
|
||||||
},
|
"SolderingMenu": {
|
||||||
"AdvancedMenu": {
|
"displayText": "Lödnings-\ninställning",
|
||||||
"text2": [
|
"description": ""
|
||||||
"Avancerade",
|
},
|
||||||
"alternativ"
|
"PowerSavingMenu": {
|
||||||
],
|
"displayText": "Vilo-\nläge",
|
||||||
"desc": ""
|
"description": ""
|
||||||
}
|
},
|
||||||
},
|
"UIMenu": {
|
||||||
"menuOptions": {
|
"displayText": "Användar-\ngränssnitt",
|
||||||
"DCInCutoff": {
|
"description": ""
|
||||||
"text2": [
|
},
|
||||||
"Ström-",
|
"AdvancedMenu": {
|
||||||
"källa"
|
"displayText": "Avancerade\nalternativ",
|
||||||
],
|
"description": ""
|
||||||
"desc": "Strömkälla. Anger lägsta spänning. (DC 10V) (S 3.3V per cell)"
|
}
|
||||||
},
|
},
|
||||||
"MinVolCell": {
|
"menuOptions": {
|
||||||
"text2": [
|
"DCInCutoff": {
|
||||||
"Minimim-",
|
"displayText": "Ström-\nkälla",
|
||||||
"spänning"
|
"description": "Strömkälla. Anger lägsta spänning. (DC 10V) (S 3.3V per cell)"
|
||||||
],
|
},
|
||||||
"desc": "Minimumspänning per cell (3S: 3 - 3.7V | 4-6S: 2.4 - 3.7V)"
|
"MinVolCell": {
|
||||||
},
|
"displayText": "Minimim-\nspänning",
|
||||||
"QCMaxVoltage": {
|
"description": "Minimumspänning per cell (3S: 3 - 3.7V | 4-6S: 2.4 - 3.7V)"
|
||||||
"text2": [
|
},
|
||||||
"QC",
|
"QCMaxVoltage": {
|
||||||
"spänning"
|
"displayText": "QC\nspänning",
|
||||||
],
|
"description": "Maximal QC-spänning enheten skall efterfråga"
|
||||||
"desc": "Maximal QC-spänning enheten skall efterfråga"
|
},
|
||||||
},
|
"PDNegTimeout": {
|
||||||
"PDNegTimeout": {
|
"displayText": "PD\ntimeout",
|
||||||
"text2": [
|
"description": "PD negotiation timeout in 100ms steps for compatibility with some QC chargers"
|
||||||
"PD",
|
},
|
||||||
"timeout"
|
"BoostTemperature": {
|
||||||
],
|
"displayText": "Turbo-\ntemp",
|
||||||
"desc": "PD negotiation timeout in 100ms steps for compatibility with some QC chargers"
|
"description": "Temperatur i \"turbo-läge\""
|
||||||
},
|
},
|
||||||
"BoostTemperature": {
|
"AutoStart": {
|
||||||
"text2": [
|
"displayText": "Auto\nstart",
|
||||||
"Turbo-",
|
"description": "Startar automatiskt lödpennan vid uppstart. (A=Av | L=Lödning | V=Viloläge | R=Viloläge Rumstemperatur)"
|
||||||
"temp"
|
},
|
||||||
],
|
"TempChangeShortStep": {
|
||||||
"desc": "Temperatur i \"turbo-läge\""
|
"displayText": "Temp.just\nkorttryck",
|
||||||
},
|
"description": "Temperaturjustering vid kort knapptryckning"
|
||||||
"AutoStart": {
|
},
|
||||||
"text2": [
|
"TempChangeLongStep": {
|
||||||
"Auto",
|
"displayText": "Temp.just\nlångtryck",
|
||||||
"start"
|
"description": "Temperaturjustering vid lång knapptryckning"
|
||||||
],
|
},
|
||||||
"desc": "Startar automatiskt lödpennan vid uppstart. (A=Av | L=Lödning | V=Viloläge | R=Viloläge Rumstemperatur)"
|
"LockingMode": {
|
||||||
},
|
"displayText": "Tillåt lås\nvia knappar",
|
||||||
"TempChangeShortStep": {
|
"description": "Vid lödning, håll nere bägge knappar för att slå på lås (A=Av | T=Bara turbo | F=Fullt lås)"
|
||||||
"text2": [
|
},
|
||||||
"Temp.just",
|
"MotionSensitivity": {
|
||||||
"korttryck"
|
"displayText": "Rörelse-\nkänslighet",
|
||||||
],
|
"description": "Rörelsekänslighet (0=Av | 1=minst känslig | ... | 9=mest känslig)"
|
||||||
"desc": "Temperaturjustering vid kort knapptryckning"
|
},
|
||||||
},
|
"SleepTemperature": {
|
||||||
"TempChangeLongStep": {
|
"displayText": "Vilo-\ntemp",
|
||||||
"text2": [
|
"description": "Vilotemperatur (C)"
|
||||||
"Temp.just",
|
},
|
||||||
"långtryck"
|
"SleepTimeout": {
|
||||||
],
|
"displayText": "Vilo-\ntimeout",
|
||||||
"desc": "Temperaturjustering vid lång knapptryckning"
|
"description": "Vilo-timeout (m=Minuter | s=Sekunder)"
|
||||||
},
|
},
|
||||||
"LockingMode": {
|
"ShutdownTimeout": {
|
||||||
"text2": [
|
"displayText": "Avstängn.\ntimeout",
|
||||||
"Tillåt lås",
|
"description": "Avstängnings-timeout (Minuter)"
|
||||||
"via knappar"
|
},
|
||||||
],
|
"HallEffSensitivity": {
|
||||||
"desc": "Vid lödning, håll nere bägge knappar för att slå på lås (A=Av | T=Bara turbo | F=Fullt lås)"
|
"displayText": "Sensor-\nkänslght",
|
||||||
},
|
"description": "Känslighet för halleffekt-sensorn för viloläges-detektering (0=Av | 1=minst känslig | ... | 9=mest känslig)"
|
||||||
"MotionSensitivity": {
|
},
|
||||||
"text2": [
|
"TemperatureUnit": {
|
||||||
"Rörelse-",
|
"displayText": "Temperatur-\nenheter",
|
||||||
"känslighet"
|
"description": "Temperaturenhet (C=Celsius | F=Fahrenheit)"
|
||||||
],
|
},
|
||||||
"desc": "Rörelsekänslighet (0=Av | 1=minst känslig | ... | 9=mest känslig)"
|
"DisplayRotation": {
|
||||||
},
|
"displayText": "Visnings\nläge",
|
||||||
"SleepTemperature": {
|
"description": "Visningsläge (H=Högerhänt | V=Vänsterhänt | A=Automatisk)"
|
||||||
"text2": [
|
},
|
||||||
"Vilo-",
|
"CooldownBlink": {
|
||||||
"temp"
|
"displayText": "Nedkylnings-\nblink",
|
||||||
],
|
"description": "Blinka temperaturen medan spetsen kyls av och fortfarande är varm."
|
||||||
"desc": "Vilotemperatur (C)"
|
},
|
||||||
},
|
"ScrollingSpeed": {
|
||||||
"SleepTimeout": {
|
"displayText": "Beskrivning\nrullhast.",
|
||||||
"text2": [
|
"description": "Hastighet som den här texten rullar i"
|
||||||
"Vilo-",
|
},
|
||||||
"timeout"
|
"ReverseButtonTempChange": {
|
||||||
],
|
"displayText": "Omvända\n+- knappar",
|
||||||
"desc": "Vilo-timeout (m=Minuter | s=Sekunder)"
|
"description": "Omvänd ordning för temperaturjustering via plus/minus knapparna"
|
||||||
},
|
},
|
||||||
"ShutdownTimeout": {
|
"AnimSpeed": {
|
||||||
"text2": [
|
"displayText": "Anim.-\nhastighet",
|
||||||
"Avstängn.",
|
"description": "Animationshastighet för ikoner i menyer (A=av | L=långsam | M=medel | S=snabb)"
|
||||||
"timeout"
|
},
|
||||||
],
|
"AnimLoop": {
|
||||||
"desc": "Avstängnings-timeout (Minuter)"
|
"displayText": "Anim.\nloop",
|
||||||
},
|
"description": "Loopa animationer i huvudmeny"
|
||||||
"HallEffSensitivity": {
|
},
|
||||||
"text2": [
|
"Brightness": {
|
||||||
"Sensor-",
|
"displayText": "Screen\nbrightness",
|
||||||
"känslght"
|
"description": "Adjust the OLED screen brightness"
|
||||||
],
|
},
|
||||||
"desc": "Känslighet för halleffekt-sensorn för viloläges-detektering (0=Av | 1=minst känslig | ... | 9=mest känslig)"
|
"ColourInversion": {
|
||||||
},
|
"displayText": "Invert\nscreen",
|
||||||
"TemperatureUnit": {
|
"description": "Invert the OLED screen colors"
|
||||||
"text2": [
|
},
|
||||||
"Temperatur-",
|
"LOGOTime": {
|
||||||
"enheter"
|
"displayText": "Boot logo\nduration",
|
||||||
],
|
"description": "Set boot logo duration (s=seconds)"
|
||||||
"desc": "Temperaturenhet (C=Celsius | F=Fahrenheit)"
|
},
|
||||||
},
|
"AdvancedIdle": {
|
||||||
"DisplayRotation": {
|
"displayText": "Detaljerad\nvid inaktiv",
|
||||||
"text2": [
|
"description": "Visa detaljerad information i mindre typsnitt när inaktiv."
|
||||||
"Visnings",
|
},
|
||||||
"läge"
|
"AdvancedSoldering": {
|
||||||
],
|
"displayText": "Detaljerad\nlödng.skärm",
|
||||||
"desc": "Visningsläge (H=Högerhänt | V=Vänsterhänt | A=Automatisk)"
|
"description": "Visa detaljerad information vid lödning"
|
||||||
},
|
},
|
||||||
"CooldownBlink": {
|
"PowerLimit": {
|
||||||
"text2": [
|
"displayText": "Max-\neffekt",
|
||||||
"Nedkylnings-",
|
"description": "Maximal effekt som enheten kan använda (Watt)"
|
||||||
"blink"
|
},
|
||||||
],
|
"CalibrateCJC": {
|
||||||
"desc": "Blinka temperaturen medan spetsen kyls av och fortfarande är varm."
|
"displayText": "Calibrate CJC\nat next boot",
|
||||||
},
|
"description": "At next boot tip Cold Junction Compensation will be calibrated (not required if Delta T is < 5°C)"
|
||||||
"ScrollingSpeed": {
|
},
|
||||||
"text2": [
|
"VoltageCalibration": {
|
||||||
"Beskrivning",
|
"displayText": "Kalibrera\ninspänning?",
|
||||||
"rullhast."
|
"description": "Inspänningskalibrering. Knapparna justerar, håll inne för avslut"
|
||||||
],
|
},
|
||||||
"desc": "Hastighet som den här texten rullar i"
|
"PowerPulsePower": {
|
||||||
},
|
"displayText": "Power\npulse",
|
||||||
"ReverseButtonTempChange": {
|
"description": "Intensity of power of keep-awake-pulse (W=watt)"
|
||||||
"text2": [
|
},
|
||||||
"Omvända",
|
"PowerPulseWait": {
|
||||||
"+- knappar"
|
"displayText": "Power pulse\ndelay",
|
||||||
],
|
"description": "Delay before keep-awake-pulse is triggered (x 2.5s)"
|
||||||
"desc": "Omvänd ordning för temperaturjustering via plus/minus knapparna"
|
},
|
||||||
},
|
"PowerPulseDuration": {
|
||||||
"AnimSpeed": {
|
"displayText": "Power pulse\nduration",
|
||||||
"text2": [
|
"description": "Keep-awake-pulse duration (x 250ms)"
|
||||||
"Anim.-",
|
},
|
||||||
"hastighet"
|
"SettingsReset": {
|
||||||
],
|
"displayText": "Fabriks-\ninställ?",
|
||||||
"desc": "Animationshastighet för ikoner i menyer (A=av | L=långsam | M=medel | S=snabb)"
|
"description": "Återställ alla inställningar"
|
||||||
},
|
},
|
||||||
"AnimLoop": {
|
"LanguageSwitch": {
|
||||||
"text2": [
|
"displayText": "Språk:\n SV Svenska",
|
||||||
"Anim.",
|
"description": ""
|
||||||
"loop"
|
}
|
||||||
],
|
}
|
||||||
"desc": "Loopa animationer i huvudmeny"
|
|
||||||
},
|
|
||||||
"Brightness": {
|
|
||||||
"text2": [
|
|
||||||
"Screen",
|
|
||||||
"brightness"
|
|
||||||
],
|
|
||||||
"desc": "Adjust the OLED screen brightness"
|
|
||||||
},
|
|
||||||
"ColourInversion": {
|
|
||||||
"text2": [
|
|
||||||
"Invert",
|
|
||||||
"screen"
|
|
||||||
],
|
|
||||||
"desc": "Invert the OLED screen colors"
|
|
||||||
},
|
|
||||||
"LOGOTime": {
|
|
||||||
"text2": [
|
|
||||||
"Boot logo",
|
|
||||||
"duration"
|
|
||||||
],
|
|
||||||
"desc": "Set boot logo duration (s=seconds)"
|
|
||||||
},
|
|
||||||
"AdvancedIdle": {
|
|
||||||
"text2": [
|
|
||||||
"Detaljerad",
|
|
||||||
"vid inaktiv"
|
|
||||||
],
|
|
||||||
"desc": "Visa detaljerad information i mindre typsnitt när inaktiv."
|
|
||||||
},
|
|
||||||
"AdvancedSoldering": {
|
|
||||||
"text2": [
|
|
||||||
"Detaljerad",
|
|
||||||
"lödng.skärm"
|
|
||||||
],
|
|
||||||
"desc": "Visa detaljerad information vid lödning"
|
|
||||||
},
|
|
||||||
"PowerLimit": {
|
|
||||||
"text2": [
|
|
||||||
"Max-",
|
|
||||||
"effekt"
|
|
||||||
],
|
|
||||||
"desc": "Maximal effekt som enheten kan använda (Watt)"
|
|
||||||
},
|
|
||||||
"CalibrateCJC": {
|
|
||||||
"text2": [
|
|
||||||
"Calibrate CJC",
|
|
||||||
"at next boot"
|
|
||||||
],
|
|
||||||
"desc": "At next boot tip Cold Junction Compensation will be calibrated (not required if Delta T is < 5°C)"
|
|
||||||
},
|
|
||||||
"VoltageCalibration": {
|
|
||||||
"text2": [
|
|
||||||
"Kalibrera",
|
|
||||||
"inspänning?"
|
|
||||||
],
|
|
||||||
"desc": "Inspänningskalibrering. Knapparna justerar, håll inne för avslut"
|
|
||||||
},
|
|
||||||
"PowerPulsePower": {
|
|
||||||
"text2": [
|
|
||||||
"Power",
|
|
||||||
"pulse"
|
|
||||||
],
|
|
||||||
"desc": "Intensity of power of keep-awake-pulse (W=watt)"
|
|
||||||
},
|
|
||||||
"PowerPulseWait": {
|
|
||||||
"text2": [
|
|
||||||
"Power pulse",
|
|
||||||
"delay"
|
|
||||||
],
|
|
||||||
"desc": "Delay before keep-awake-pulse is triggered (x 2.5s)"
|
|
||||||
},
|
|
||||||
"PowerPulseDuration": {
|
|
||||||
"text2": [
|
|
||||||
"Power pulse",
|
|
||||||
"duration"
|
|
||||||
],
|
|
||||||
"desc": "Keep-awake-pulse duration (x 250ms)"
|
|
||||||
},
|
|
||||||
"SettingsReset": {
|
|
||||||
"text2": [
|
|
||||||
"Fabriks-",
|
|
||||||
"inställ?"
|
|
||||||
],
|
|
||||||
"desc": "Återställ alla inställningar"
|
|
||||||
},
|
|
||||||
"LanguageSwitch": {
|
|
||||||
"text2": [
|
|
||||||
"Språk:",
|
|
||||||
" SV Svenska"
|
|
||||||
],
|
|
||||||
"desc": ""
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@@ -1,337 +1,243 @@
|
|||||||
{
|
{
|
||||||
"languageCode": "TR",
|
"languageCode": "TR",
|
||||||
"languageLocalName": "Türkçe",
|
"languageLocalName": "Türkçe",
|
||||||
"tempUnitFahrenheit": false,
|
"tempUnitFahrenheit": false,
|
||||||
"messages": {
|
"messagesWarn": {
|
||||||
"SettingsCalibrationWarning": "Before rebooting, make sure tip & handle are at room temperature!",
|
"CJCCalibrationDone": {
|
||||||
"CJCCalibrating": "calibrating",
|
"message": "Calibration\ndone!"
|
||||||
"SettingsResetWarning": "Ayarları varsayılan değerlere sıfırlamak istediğinizden emin misiniz?",
|
},
|
||||||
"UVLOWarningString": "Güç Az",
|
"ResetOKMessage": {
|
||||||
"UndervoltageString": "Düşük Voltaj",
|
"message": "Sıfırlama Tamam"
|
||||||
"InputVoltageString": "Giriş V: ",
|
},
|
||||||
"SleepingSimpleString": "Zzzz",
|
"SettingsResetMessage": {
|
||||||
"SleepingAdvancedString": "Bekleme Modu ...",
|
"message": "Ayarlar\nSıfırlandı"
|
||||||
"SleepingTipAdvancedString": "Uç:",
|
},
|
||||||
"OffString": "Kapalı",
|
"NoAccelerometerMessage": {
|
||||||
"DeviceFailedValidationWarning": "Your device is most likely a counterfeit!"
|
"message": "No accelerometer\ndetected!"
|
||||||
},
|
},
|
||||||
"messagesWarn": {
|
"NoPowerDeliveryMessage": {
|
||||||
"CJCCalibrationDone": [
|
"message": "No USB-PD IC\ndetected!"
|
||||||
"Calibration",
|
},
|
||||||
"done!"
|
"LockingKeysString": {
|
||||||
],
|
"message": "LOCKED"
|
||||||
"ResetOKMessage": "Sıfırlama Tamam",
|
},
|
||||||
"SettingsResetMessage": [
|
"UnlockingKeysString": {
|
||||||
"Ayarlar",
|
"message": "UNLOCKED"
|
||||||
"Sıfırlandı"
|
},
|
||||||
],
|
"WarningKeysLockedString": {
|
||||||
"NoAccelerometerMessage": [
|
"message": "!LOCKED!"
|
||||||
"No accelerometer",
|
},
|
||||||
"detected!"
|
"WarningThermalRunaway": {
|
||||||
],
|
"message": "Thermal\nRunaway"
|
||||||
"NoPowerDeliveryMessage": [
|
},
|
||||||
"No USB-PD IC",
|
"SettingsCalibrationWarning": {
|
||||||
"detected!"
|
"message": "Before rebooting, make sure tip & handle are at room temperature!"
|
||||||
],
|
},
|
||||||
"LockingKeysString": "LOCKED",
|
"CJCCalibrating": {
|
||||||
"UnlockingKeysString": "UNLOCKED",
|
"message": "calibrating"
|
||||||
"WarningKeysLockedString": "!LOCKED!",
|
},
|
||||||
"WarningThermalRunaway": [
|
"SettingsResetWarning": {
|
||||||
"Thermal",
|
"message": "Ayarları varsayılan değerlere sıfırlamak istediğinizden emin misiniz?"
|
||||||
"Runaway"
|
},
|
||||||
]
|
"UVLOWarningString": {
|
||||||
},
|
"message": "Güç Az"
|
||||||
"characters": {
|
},
|
||||||
"SettingRightChar": "R",
|
"UndervoltageString": {
|
||||||
"SettingLeftChar": "L",
|
"message": "Düşük Voltaj"
|
||||||
"SettingAutoChar": "O",
|
},
|
||||||
"SettingOffChar": "K",
|
"InputVoltageString": {
|
||||||
"SettingSlowChar": "Y",
|
"message": "Giriş V: "
|
||||||
"SettingMediumChar": "O",
|
},
|
||||||
"SettingFastChar": "H",
|
"SleepingSimpleString": {
|
||||||
"SettingStartNoneChar": "K",
|
"message": "Zzzz"
|
||||||
"SettingStartSolderingChar": "L",
|
},
|
||||||
"SettingStartSleepChar": "U",
|
"SleepingAdvancedString": {
|
||||||
"SettingStartSleepOffChar": "S",
|
"message": "Bekleme Modu ..."
|
||||||
"SettingLockDisableChar": "K",
|
},
|
||||||
"SettingLockBoostChar": "B",
|
"SleepingTipAdvancedString": {
|
||||||
"SettingLockFullChar": "F"
|
"message": "Uç:"
|
||||||
},
|
},
|
||||||
"menuGroups": {
|
"OffString": {
|
||||||
"PowerMenu": {
|
"message": "Kapalı"
|
||||||
"text2": [
|
},
|
||||||
"Power",
|
"DeviceFailedValidationWarning": {
|
||||||
"settings"
|
"message": "Your device is most likely a counterfeit!"
|
||||||
],
|
}
|
||||||
"desc": ""
|
},
|
||||||
},
|
"characters": {
|
||||||
"SolderingMenu": {
|
"SettingRightChar": "R",
|
||||||
"text2": [
|
"SettingLeftChar": "L",
|
||||||
"Lehimleme",
|
"SettingAutoChar": "O",
|
||||||
"Ayarları"
|
"SettingOffChar": "K",
|
||||||
],
|
"SettingSlowChar": "Y",
|
||||||
"desc": ""
|
"SettingMediumChar": "O",
|
||||||
},
|
"SettingFastChar": "H",
|
||||||
"PowerSavingMenu": {
|
"SettingStartNoneChar": "K",
|
||||||
"text2": [
|
"SettingStartSolderingChar": "L",
|
||||||
"Uyku",
|
"SettingStartSleepChar": "U",
|
||||||
"Modları"
|
"SettingStartSleepOffChar": "S",
|
||||||
],
|
"SettingLockDisableChar": "K",
|
||||||
"desc": ""
|
"SettingLockBoostChar": "B",
|
||||||
},
|
"SettingLockFullChar": "F"
|
||||||
"UIMenu": {
|
},
|
||||||
"text2": [
|
"menuGroups": {
|
||||||
"Kullanıcı",
|
"PowerMenu": {
|
||||||
"Arayüzü"
|
"displayText": "Power\nsettings",
|
||||||
],
|
"description": ""
|
||||||
"desc": ""
|
},
|
||||||
},
|
"SolderingMenu": {
|
||||||
"AdvancedMenu": {
|
"displayText": "Lehimleme\nAyarları",
|
||||||
"text2": [
|
"description": ""
|
||||||
"Gelişmiş",
|
},
|
||||||
"Ayarlar"
|
"PowerSavingMenu": {
|
||||||
],
|
"displayText": "Uyku\nModları",
|
||||||
"desc": ""
|
"description": ""
|
||||||
}
|
},
|
||||||
},
|
"UIMenu": {
|
||||||
"menuOptions": {
|
"displayText": "Kullanıcı\nArayüzü",
|
||||||
"DCInCutoff": {
|
"description": ""
|
||||||
"text2": [
|
},
|
||||||
"GÇKYN",
|
"AdvancedMenu": {
|
||||||
""
|
"displayText": "Gelişmiş\nAyarlar",
|
||||||
],
|
"description": ""
|
||||||
"desc": "\"Güç Kaynağı\". En düşük çalışma voltajını ayarlar. (DC 10V) (S 3.3V hücre başına)"
|
}
|
||||||
},
|
},
|
||||||
"MinVolCell": {
|
"menuOptions": {
|
||||||
"text2": [
|
"DCInCutoff": {
|
||||||
"Minimum",
|
"displayText": "GÇKYN\n",
|
||||||
"voltage"
|
"description": "\"Güç Kaynağı\". En düşük çalışma voltajını ayarlar. (DC 10V) (S 3.3V hücre başına)"
|
||||||
],
|
},
|
||||||
"desc": "Minimum allowed voltage per battery cell (3S: 3 - 3.7V | 4-6S: 2.4 - 3.7V)"
|
"MinVolCell": {
|
||||||
},
|
"displayText": "Minimum\nvoltage",
|
||||||
"QCMaxVoltage": {
|
"description": "Minimum allowed voltage per battery cell (3S: 3 - 3.7V | 4-6S: 2.4 - 3.7V)"
|
||||||
"text2": [
|
},
|
||||||
"QC",
|
"QCMaxVoltage": {
|
||||||
"voltage"
|
"displayText": "QC\nvoltage",
|
||||||
],
|
"description": "Max QC voltage the iron should negotiate for"
|
||||||
"desc": "Max QC voltage the iron should negotiate for"
|
},
|
||||||
},
|
"PDNegTimeout": {
|
||||||
"PDNegTimeout": {
|
"displayText": "PD\ntimeout",
|
||||||
"text2": [
|
"description": "PD negotiation timeout in 100ms steps for compatibility with some QC chargers"
|
||||||
"PD",
|
},
|
||||||
"timeout"
|
"BoostTemperature": {
|
||||||
],
|
"displayText": "YKSC\n",
|
||||||
"desc": "PD negotiation timeout in 100ms steps for compatibility with some QC chargers"
|
"description": "Yüksek Performans Modu Sıcaklığı"
|
||||||
},
|
},
|
||||||
"BoostTemperature": {
|
"AutoStart": {
|
||||||
"text2": [
|
"displayText": "OTOBAŞ\n",
|
||||||
"YKSC",
|
"description": "Güç verildiğinde otomatik olarak lehimleme modunda başlat. (K=Kapalı | L=Lehimleme Modu | U=Uyku Modu | S=Uyku Modu Oda Sıcaklığı)"
|
||||||
""
|
},
|
||||||
],
|
"TempChangeShortStep": {
|
||||||
"desc": "Yüksek Performans Modu Sıcaklığı"
|
"displayText": "Temp change\nshort",
|
||||||
},
|
"description": "Kısa basışlardaki sıcaklık derecesi atlama oranı"
|
||||||
"AutoStart": {
|
},
|
||||||
"text2": [
|
"TempChangeLongStep": {
|
||||||
"OTOBAŞ",
|
"displayText": "Temp change\nlong",
|
||||||
""
|
"description": "Uzun başışlardaki sıcaklık derecesi atlama oranı"
|
||||||
],
|
},
|
||||||
"desc": "Güç verildiğinde otomatik olarak lehimleme modunda başlat. (K=Kapalı | L=Lehimleme Modu | U=Uyku Modu | S=Uyku Modu Oda Sıcaklığı)"
|
"LockingMode": {
|
||||||
},
|
"displayText": "Allow locking\nbuttons",
|
||||||
"TempChangeShortStep": {
|
"description": "While soldering, hold down both buttons to toggle locking them (K=Kapalı | B=boost mode only | F=full locking)"
|
||||||
"text2": [
|
},
|
||||||
"Temp change",
|
"MotionSensitivity": {
|
||||||
"short"
|
"displayText": "HARHAS\n",
|
||||||
],
|
"description": "Hareket Hassasiyeti (0=Kapalı | 1=En az duyarlı | ... | 9=En duyarlı)"
|
||||||
"desc": "Kısa basışlardaki sıcaklık derecesi atlama oranı"
|
},
|
||||||
},
|
"SleepTemperature": {
|
||||||
"TempChangeLongStep": {
|
"displayText": "BKSC\n",
|
||||||
"text2": [
|
"description": "Bekleme Modu Sıcaklığı (C)"
|
||||||
"Temp change",
|
},
|
||||||
"long"
|
"SleepTimeout": {
|
||||||
],
|
"displayText": "BMZA\n",
|
||||||
"desc": "Uzun başışlardaki sıcaklık derecesi atlama oranı"
|
"description": "Bekleme Modu Zaman Aşımı (Dakika | Saniye)"
|
||||||
},
|
},
|
||||||
"LockingMode": {
|
"ShutdownTimeout": {
|
||||||
"text2": [
|
"displayText": "KPTZA\n",
|
||||||
"Allow locking",
|
"description": "Kapatma Zaman Aşımı (Dakika)"
|
||||||
"buttons"
|
},
|
||||||
],
|
"HallEffSensitivity": {
|
||||||
"desc": "While soldering, hold down both buttons to toggle locking them (K=Kapalı | B=boost mode only | F=full locking)"
|
"displayText": "Hall sensor\nsensitivity",
|
||||||
},
|
"description": "Sensitivity to magnets (0=Kapalı | 1=En az duyarlı | ... | 9=En duyarlı)"
|
||||||
"MotionSensitivity": {
|
},
|
||||||
"text2": [
|
"TemperatureUnit": {
|
||||||
"HARHAS",
|
"displayText": "SCKBRM\n",
|
||||||
""
|
"description": "Sıcaklık Birimi (C=Celsius | F=Fahrenheit)"
|
||||||
],
|
},
|
||||||
"desc": "Hareket Hassasiyeti (0=Kapalı | 1=En az duyarlı | ... | 9=En duyarlı)"
|
"DisplayRotation": {
|
||||||
},
|
"displayText": "GRNYÖN\n",
|
||||||
"SleepTemperature": {
|
"description": "Görüntü Yönlendirme (R=Sağlak | L=Solak | O=Otomatik)"
|
||||||
"text2": [
|
},
|
||||||
"BKSC",
|
"CooldownBlink": {
|
||||||
""
|
"displayText": "SĞGÖST\n",
|
||||||
],
|
"description": "Soğutma ekranında uç hala sıcakken derece gösterilsin."
|
||||||
"desc": "Bekleme Modu Sıcaklığı (C)"
|
},
|
||||||
},
|
"ScrollingSpeed": {
|
||||||
"SleepTimeout": {
|
"displayText": "YZKYHZ\n",
|
||||||
"text2": [
|
"description": "Bu yazının kayma hızı (Y=Yavaş | H=Hızlı)"
|
||||||
"BMZA",
|
},
|
||||||
""
|
"ReverseButtonTempChange": {
|
||||||
],
|
"displayText": "Swap\n+ - keys",
|
||||||
"desc": "Bekleme Modu Zaman Aşımı (Dakika | Saniye)"
|
"description": "\"Düğme Yerleri Rotasyonu\" Sıcaklık ayar düğmelerinin yerini değiştirin"
|
||||||
},
|
},
|
||||||
"ShutdownTimeout": {
|
"AnimSpeed": {
|
||||||
"text2": [
|
"displayText": "Anim.\nspeed",
|
||||||
"KPTZA",
|
"description": "Pace of icon animations in menu (K=Kapalı | Y=Yavaş | O=Orta | H=Hızlı)"
|
||||||
""
|
},
|
||||||
],
|
"AnimLoop": {
|
||||||
"desc": "Kapatma Zaman Aşımı (Dakika)"
|
"displayText": "Anim.\nloop",
|
||||||
},
|
"description": "Loop icon animations in main menu"
|
||||||
"HallEffSensitivity": {
|
},
|
||||||
"text2": [
|
"Brightness": {
|
||||||
"Hall sensor",
|
"displayText": "Screen\nbrightness",
|
||||||
"sensitivity"
|
"description": "Adjust the OLED screen brightness"
|
||||||
],
|
},
|
||||||
"desc": "Sensitivity to magnets (0=Kapalı | 1=En az duyarlı | ... | 9=En duyarlı)"
|
"ColourInversion": {
|
||||||
},
|
"displayText": "Invert\nscreen",
|
||||||
"TemperatureUnit": {
|
"description": "Invert the OLED screen colors"
|
||||||
"text2": [
|
},
|
||||||
"SCKBRM",
|
"LOGOTime": {
|
||||||
""
|
"displayText": "Boot logo\nduration",
|
||||||
],
|
"description": "Set boot logo duration (s=seconds)"
|
||||||
"desc": "Sıcaklık Birimi (C=Celsius | F=Fahrenheit)"
|
},
|
||||||
},
|
"AdvancedIdle": {
|
||||||
"DisplayRotation": {
|
"displayText": "AYRBİL\n",
|
||||||
"text2": [
|
"description": "Boş ekranda ayrıntılı bilgileri daha küçük bir yazı tipi ile göster."
|
||||||
"GRNYÖN",
|
},
|
||||||
""
|
"AdvancedSoldering": {
|
||||||
],
|
"displayText": "GELLHM\n",
|
||||||
"desc": "Görüntü Yönlendirme (R=Sağlak | L=Solak | O=Otomatik)"
|
"description": "\"Gelişmiş Lehimleme\" Lehimleme yaparken detaylı bilgi göster"
|
||||||
},
|
},
|
||||||
"CooldownBlink": {
|
"PowerLimit": {
|
||||||
"text2": [
|
"displayText": "Power\nlimit",
|
||||||
"SĞGÖST",
|
"description": "Havyanın kullanacağı en yüksek güç (W=Watts)"
|
||||||
""
|
},
|
||||||
],
|
"CalibrateCJC": {
|
||||||
"desc": "Soğutma ekranında uç hala sıcakken derece gösterilsin."
|
"displayText": "Calibrate CJC\nat next boot",
|
||||||
},
|
"description": "At next boot tip Cold Junction Compensation will be calibrated (not required if Delta T is < 5°C)"
|
||||||
"ScrollingSpeed": {
|
},
|
||||||
"text2": [
|
"VoltageCalibration": {
|
||||||
"YZKYHZ",
|
"displayText": "VOL KAL?\n",
|
||||||
""
|
"description": "Voltaj Girişi Kalibrasyonu. Düğmeler ayarlar, çıkmak için uzun bas."
|
||||||
],
|
},
|
||||||
"desc": "Bu yazının kayma hızı (Y=Yavaş | H=Hızlı)"
|
"PowerPulsePower": {
|
||||||
},
|
"displayText": "Power\npulse",
|
||||||
"ReverseButtonTempChange": {
|
"description": "Güç girişi voltajı ölçüm yoğunluğunu sık tut."
|
||||||
"text2": [
|
},
|
||||||
"Swap",
|
"PowerPulseWait": {
|
||||||
"+ - keys"
|
"displayText": "Power pulse\ndelay",
|
||||||
],
|
"description": "Delay before keep-awake-pulse is triggered (x 2.5s)"
|
||||||
"desc": "\"Düğme Yerleri Rotasyonu\" Sıcaklık ayar düğmelerinin yerini değiştirin"
|
},
|
||||||
},
|
"PowerPulseDuration": {
|
||||||
"AnimSpeed": {
|
"displayText": "Power pulse\nduration",
|
||||||
"text2": [
|
"description": "Keep-awake-pulse duration (x 250ms)"
|
||||||
"Anim.",
|
},
|
||||||
"speed"
|
"SettingsReset": {
|
||||||
],
|
"displayText": "SIFIRLA?\n",
|
||||||
"desc": "Pace of icon animations in menu (K=Kapalı | Y=Yavaş | O=Orta | H=Hızlı)"
|
"description": "Bütün ayarları sıfırlar"
|
||||||
},
|
},
|
||||||
"AnimLoop": {
|
"LanguageSwitch": {
|
||||||
"text2": [
|
"displayText": "Dil:\n TR Türkçe",
|
||||||
"Anim.",
|
"description": ""
|
||||||
"loop"
|
}
|
||||||
],
|
}
|
||||||
"desc": "Loop icon animations in main menu"
|
|
||||||
},
|
|
||||||
"Brightness": {
|
|
||||||
"text2": [
|
|
||||||
"Screen",
|
|
||||||
"brightness"
|
|
||||||
],
|
|
||||||
"desc": "Adjust the OLED screen brightness"
|
|
||||||
},
|
|
||||||
"ColourInversion": {
|
|
||||||
"text2": [
|
|
||||||
"Invert",
|
|
||||||
"screen"
|
|
||||||
],
|
|
||||||
"desc": "Invert the OLED screen colors"
|
|
||||||
},
|
|
||||||
"LOGOTime": {
|
|
||||||
"text2": [
|
|
||||||
"Boot logo",
|
|
||||||
"duration"
|
|
||||||
],
|
|
||||||
"desc": "Set boot logo duration (s=seconds)"
|
|
||||||
},
|
|
||||||
"AdvancedIdle": {
|
|
||||||
"text2": [
|
|
||||||
"AYRBİL",
|
|
||||||
""
|
|
||||||
],
|
|
||||||
"desc": "Boş ekranda ayrıntılı bilgileri daha küçük bir yazı tipi ile göster."
|
|
||||||
},
|
|
||||||
"AdvancedSoldering": {
|
|
||||||
"text2": [
|
|
||||||
"GELLHM",
|
|
||||||
""
|
|
||||||
],
|
|
||||||
"desc": "\"Gelişmiş Lehimleme\" Lehimleme yaparken detaylı bilgi göster"
|
|
||||||
},
|
|
||||||
"PowerLimit": {
|
|
||||||
"text2": [
|
|
||||||
"Power",
|
|
||||||
"limit"
|
|
||||||
],
|
|
||||||
"desc": "Havyanın kullanacağı en yüksek güç (W=Watts)"
|
|
||||||
},
|
|
||||||
"CalibrateCJC": {
|
|
||||||
"text2": [
|
|
||||||
"Calibrate CJC",
|
|
||||||
"at next boot"
|
|
||||||
],
|
|
||||||
"desc": "At next boot tip Cold Junction Compensation will be calibrated (not required if Delta T is < 5°C)"
|
|
||||||
},
|
|
||||||
"VoltageCalibration": {
|
|
||||||
"text2": [
|
|
||||||
"VOL KAL?",
|
|
||||||
""
|
|
||||||
],
|
|
||||||
"desc": "Voltaj Girişi Kalibrasyonu. Düğmeler ayarlar, çıkmak için uzun bas."
|
|
||||||
},
|
|
||||||
"PowerPulsePower": {
|
|
||||||
"text2": [
|
|
||||||
"Power",
|
|
||||||
"pulse"
|
|
||||||
],
|
|
||||||
"desc": "Güç girişi voltajı ölçüm yoğunluğunu sık tut."
|
|
||||||
},
|
|
||||||
"PowerPulseWait": {
|
|
||||||
"text2": [
|
|
||||||
"Power pulse",
|
|
||||||
"delay"
|
|
||||||
],
|
|
||||||
"desc": "Delay before keep-awake-pulse is triggered (x 2.5s)"
|
|
||||||
},
|
|
||||||
"PowerPulseDuration": {
|
|
||||||
"text2": [
|
|
||||||
"Power pulse",
|
|
||||||
"duration"
|
|
||||||
],
|
|
||||||
"desc": "Keep-awake-pulse duration (x 250ms)"
|
|
||||||
},
|
|
||||||
"SettingsReset": {
|
|
||||||
"text2": [
|
|
||||||
"SIFIRLA?",
|
|
||||||
""
|
|
||||||
],
|
|
||||||
"desc": "Bütün ayarları sıfırlar"
|
|
||||||
},
|
|
||||||
"LanguageSwitch": {
|
|
||||||
"text2": [
|
|
||||||
"Dil:",
|
|
||||||
" TR Türkçe"
|
|
||||||
],
|
|
||||||
"desc": ""
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@@ -1,337 +1,243 @@
|
|||||||
{
|
{
|
||||||
"languageCode": "UK",
|
"languageCode": "UK",
|
||||||
"languageLocalName": "Українська",
|
"languageLocalName": "Українська",
|
||||||
"tempUnitFahrenheit": false,
|
"tempUnitFahrenheit": false,
|
||||||
"messages": {
|
"messagesWarn": {
|
||||||
"SettingsCalibrationWarning": "Під час наступного завантаження переконайтеся, що жало і ручка мають кімнатну температуру!",
|
"CJCCalibrationDone": {
|
||||||
"CJCCalibrating": "калібрування",
|
"message": "КХС\nвідкалібровано!"
|
||||||
"SettingsResetWarning": "Ви дійсно хочете скинути налаштування до значень за замовчуванням? (A=Так, В=Ні)",
|
},
|
||||||
"UVLOWarningString": "АККУМ--",
|
"ResetOKMessage": {
|
||||||
"UndervoltageString": "Низька напруга",
|
"message": "Скид. OK"
|
||||||
"InputVoltageString": "Жив.(B): ",
|
},
|
||||||
"SleepingSimpleString": "ZzZzz",
|
"SettingsResetMessage": {
|
||||||
"SleepingAdvancedString": "Очікування...",
|
"message": "Налаштування\nскинуті!"
|
||||||
"SleepingTipAdvancedString": "Жало:",
|
},
|
||||||
"OffString": "Вимк",
|
"NoAccelerometerMessage": {
|
||||||
"DeviceFailedValidationWarning": "Вірогідно ваш пристрій підробний!"
|
"message": "Акселерометр\nне виявлено!"
|
||||||
},
|
},
|
||||||
"messagesWarn": {
|
"NoPowerDeliveryMessage": {
|
||||||
"CJCCalibrationDone": [
|
"message": "USB-PD IC\nне виявлено!"
|
||||||
"КХС",
|
},
|
||||||
"відкалібровано!"
|
"LockingKeysString": {
|
||||||
],
|
"message": "ЗАБЛОК."
|
||||||
"ResetOKMessage": "Скид. OK",
|
},
|
||||||
"SettingsResetMessage": [
|
"UnlockingKeysString": {
|
||||||
"Налаштування",
|
"message": "РОЗБЛОК."
|
||||||
"скинуті!"
|
},
|
||||||
],
|
"WarningKeysLockedString": {
|
||||||
"NoAccelerometerMessage": [
|
"message": "!ЗАБЛОК!"
|
||||||
"Акселерометр",
|
},
|
||||||
"не виявлено!"
|
"WarningThermalRunaway": {
|
||||||
],
|
"message": "Некерований\nрозігрів"
|
||||||
"NoPowerDeliveryMessage": [
|
},
|
||||||
"USB-PD IC",
|
"SettingsCalibrationWarning": {
|
||||||
"не виявлено!"
|
"message": "Під час наступного завантаження переконайтеся, що жало і ручка мають кімнатну температуру!"
|
||||||
],
|
},
|
||||||
"LockingKeysString": "ЗАБЛОК.",
|
"CJCCalibrating": {
|
||||||
"UnlockingKeysString": "РОЗБЛОК.",
|
"message": "калібрування"
|
||||||
"WarningKeysLockedString": "!ЗАБЛОК!",
|
},
|
||||||
"WarningThermalRunaway": [
|
"SettingsResetWarning": {
|
||||||
"Некерований",
|
"message": "Ви дійсно хочете скинути налаштування до значень за замовчуванням? (A=Так, В=Ні)"
|
||||||
"розігрів"
|
},
|
||||||
]
|
"UVLOWarningString": {
|
||||||
},
|
"message": "АККУМ--"
|
||||||
"characters": {
|
},
|
||||||
"SettingRightChar": "П",
|
"UndervoltageString": {
|
||||||
"SettingLeftChar": "Л",
|
"message": "Низька напруга"
|
||||||
"SettingAutoChar": "A",
|
},
|
||||||
"SettingOffChar": "B",
|
"InputVoltageString": {
|
||||||
"SettingSlowChar": "Н",
|
"message": "Жив.(B): "
|
||||||
"SettingMediumChar": "M",
|
},
|
||||||
"SettingFastChar": "М",
|
"SleepingSimpleString": {
|
||||||
"SettingStartNoneChar": "В",
|
"message": "ZzZzz"
|
||||||
"SettingStartSolderingChar": "П",
|
},
|
||||||
"SettingStartSleepChar": "О",
|
"SleepingAdvancedString": {
|
||||||
"SettingStartSleepOffChar": "К",
|
"message": "Очікування..."
|
||||||
"SettingLockDisableChar": "В",
|
},
|
||||||
"SettingLockBoostChar": "Т",
|
"SleepingTipAdvancedString": {
|
||||||
"SettingLockFullChar": "П"
|
"message": "Жало:"
|
||||||
},
|
},
|
||||||
"menuGroups": {
|
"OffString": {
|
||||||
"PowerMenu": {
|
"message": "Вимк"
|
||||||
"text2": [
|
},
|
||||||
"Параметри",
|
"DeviceFailedValidationWarning": {
|
||||||
"живлення"
|
"message": "Вірогідно ваш пристрій підробний!"
|
||||||
],
|
}
|
||||||
"desc": ""
|
},
|
||||||
},
|
"characters": {
|
||||||
"SolderingMenu": {
|
"SettingRightChar": "П",
|
||||||
"text2": [
|
"SettingLeftChar": "Л",
|
||||||
"Параметри",
|
"SettingAutoChar": "A",
|
||||||
"пайки"
|
"SettingOffChar": "B",
|
||||||
],
|
"SettingSlowChar": "Н",
|
||||||
"desc": ""
|
"SettingMediumChar": "M",
|
||||||
},
|
"SettingFastChar": "М",
|
||||||
"PowerSavingMenu": {
|
"SettingStartNoneChar": "В",
|
||||||
"text2": [
|
"SettingStartSolderingChar": "П",
|
||||||
"Режим",
|
"SettingStartSleepChar": "О",
|
||||||
"сну"
|
"SettingStartSleepOffChar": "К",
|
||||||
],
|
"SettingLockDisableChar": "В",
|
||||||
"desc": ""
|
"SettingLockBoostChar": "Т",
|
||||||
},
|
"SettingLockFullChar": "П"
|
||||||
"UIMenu": {
|
},
|
||||||
"text2": [
|
"menuGroups": {
|
||||||
"Параметри",
|
"PowerMenu": {
|
||||||
"інтерфейсу"
|
"displayText": "Параметри\nживлення",
|
||||||
],
|
"description": ""
|
||||||
"desc": ""
|
},
|
||||||
},
|
"SolderingMenu": {
|
||||||
"AdvancedMenu": {
|
"displayText": "Параметри\nпайки",
|
||||||
"text2": [
|
"description": ""
|
||||||
"Додаткові",
|
},
|
||||||
"параметри"
|
"PowerSavingMenu": {
|
||||||
],
|
"displayText": "Режим\nсну",
|
||||||
"desc": ""
|
"description": ""
|
||||||
}
|
},
|
||||||
},
|
"UIMenu": {
|
||||||
"menuOptions": {
|
"displayText": "Параметри\nінтерфейсу",
|
||||||
"DCInCutoff": {
|
"description": ""
|
||||||
"text2": [
|
},
|
||||||
"Джерело",
|
"AdvancedMenu": {
|
||||||
"живлення"
|
"displayText": "Додаткові\nпараметри",
|
||||||
],
|
"description": ""
|
||||||
"desc": "Встановлює напругу відсічки. (DC - 10V) (3S - 9.9V | 4S - 13.2V | 5S - 16.5V | 6S - 19.8V)"
|
}
|
||||||
},
|
},
|
||||||
"MinVolCell": {
|
"menuOptions": {
|
||||||
"text2": [
|
"DCInCutoff": {
|
||||||
"Мін.",
|
"displayText": "Джерело\nживлення",
|
||||||
"напруга"
|
"description": "Встановлює напругу відсічки. (DC - 10V) (3S - 9.9V | 4S - 13.2V | 5S - 16.5V | 6S - 19.8V)"
|
||||||
],
|
},
|
||||||
"desc": "Мінімальна дозволена напруга на комірку (3S: 3 - 3.7V | 4-6S: 2.4 - 3.7V)"
|
"MinVolCell": {
|
||||||
},
|
"displayText": "Мін.\nнапруга",
|
||||||
"QCMaxVoltage": {
|
"description": "Мінімальна дозволена напруга на комірку (3S: 3 - 3.7V | 4-6S: 2.4 - 3.7V)"
|
||||||
"text2": [
|
},
|
||||||
"Потужність",
|
"QCMaxVoltage": {
|
||||||
"дж. живлення"
|
"displayText": "Потужність\nдж. живлення",
|
||||||
],
|
"description": "Потужність джерела живлення в Ватах"
|
||||||
"desc": "Потужність джерела живлення в Ватах"
|
},
|
||||||
},
|
"PDNegTimeout": {
|
||||||
"PDNegTimeout": {
|
"displayText": "PD\nзатримка",
|
||||||
"text2": [
|
"description": "Затримка у 100мс інкрементах для PD для сумісності з деякими QC зарядними пристроями (0: вимкнено)"
|
||||||
"PD",
|
},
|
||||||
"затримка"
|
"BoostTemperature": {
|
||||||
],
|
"displayText": "Темпер.\nТурбо",
|
||||||
"desc": "Затримка у 100мс інкрементах для PD для сумісності з деякими QC зарядними пристроями (0: вимкнено)"
|
"description": "Температура в \"Турбо\" режимі"
|
||||||
},
|
},
|
||||||
"BoostTemperature": {
|
"AutoStart": {
|
||||||
"text2": [
|
"displayText": "Гарячий\nстарт",
|
||||||
"Темпер.",
|
"description": "Режим в якому запускається паяльник при ввімкненні (В=Вимк. | П=Пайка | О=Очікування | К=Очікування при кімн. темп.)"
|
||||||
"Турбо"
|
},
|
||||||
],
|
"TempChangeShortStep": {
|
||||||
"desc": "Температура в \"Турбо\" режимі"
|
"displayText": "Зміна темп.\nкоротко?",
|
||||||
},
|
"description": "Змінювати температуру при короткому натисканні!"
|
||||||
"AutoStart": {
|
},
|
||||||
"text2": [
|
"TempChangeLongStep": {
|
||||||
"Гарячий",
|
"displayText": "Зміна темп.\nдовго?",
|
||||||
"старт"
|
"description": "Змінювати температуру при довгому натисканні!"
|
||||||
],
|
},
|
||||||
"desc": "Режим в якому запускається паяльник при ввімкненні (В=Вимк. | П=Пайка | О=Очікування | К=Очікування при кімн. темп.)"
|
"LockingMode": {
|
||||||
},
|
"displayText": "Дозволити\nблок. кнопок",
|
||||||
"TempChangeShortStep": {
|
"description": "Під час пайки тривале натискання обох кнопок заблокує їх (В=Вимк | Т=Тільки турбо | П=Повне)"
|
||||||
"text2": [
|
},
|
||||||
"Зміна темп.",
|
"MotionSensitivity": {
|
||||||
"коротко?"
|
"displayText": "Чутливість\nсенсору руху",
|
||||||
],
|
"description": "Акселерометр (0=Вимк. | 1=мін. чутливості | ... | 9=макс. чутливості)"
|
||||||
"desc": "Змінювати температуру при короткому натисканні!"
|
},
|
||||||
},
|
"SleepTemperature": {
|
||||||
"TempChangeLongStep": {
|
"displayText": "Темпер.\nсну",
|
||||||
"text2": [
|
"description": "Температура режиму очікування (C° | F°)"
|
||||||
"Зміна темп.",
|
},
|
||||||
"довго?"
|
"SleepTimeout": {
|
||||||
],
|
"displayText": "Тайм-аут\nсну",
|
||||||
"desc": "Змінювати температуру при довгому натисканні!"
|
"description": "Час до переходу в режим очікування (Хвилини | Секунди)"
|
||||||
},
|
},
|
||||||
"LockingMode": {
|
"ShutdownTimeout": {
|
||||||
"text2": [
|
"displayText": "Часу до\nвимкнення",
|
||||||
"Дозволити",
|
"description": "Час до вимкнення (Хвилини)"
|
||||||
"блок. кнопок"
|
},
|
||||||
],
|
"HallEffSensitivity": {
|
||||||
"desc": "Під час пайки тривале натискання обох кнопок заблокує їх (В=Вимк | Т=Тільки турбо | П=Повне)"
|
"displayText": "Чутливість\nЕфекту Холла",
|
||||||
},
|
"description": "Чутливість датчика ефекту Холла при виявленні сну (0=Вимк. | 1=мін. чутливості | ... | 9=макс. чутливості)"
|
||||||
"MotionSensitivity": {
|
},
|
||||||
"text2": [
|
"TemperatureUnit": {
|
||||||
"Чутливість",
|
"displayText": "Формат темпе-\nратури(C°/F°)",
|
||||||
"сенсору руху"
|
"description": "Одиниця виміру температури (C=Цельсій | F=Фаренгейт)"
|
||||||
],
|
},
|
||||||
"desc": "Акселерометр (0=Вимк. | 1=мін. чутливості | ... | 9=макс. чутливості)"
|
"DisplayRotation": {
|
||||||
},
|
"displayText": "Автоповорот\nекрану",
|
||||||
"SleepTemperature": {
|
"description": "Орієнтація дисплея (П=Правша | Л=Лівша | A=Автоповорот)"
|
||||||
"text2": [
|
},
|
||||||
"Темпер.",
|
"CooldownBlink": {
|
||||||
"сну"
|
"displayText": "Показ t° при\nохолодженні",
|
||||||
],
|
"description": "Показувати температуру на екрані охолодження, поки жало залишається гарячим, при цьому екран моргає"
|
||||||
"desc": "Температура режиму очікування (C° | F°)"
|
},
|
||||||
},
|
"ScrollingSpeed": {
|
||||||
"SleepTimeout": {
|
"displayText": "Швидкість\nтексту",
|
||||||
"text2": [
|
"description": "Швидкість прокрутки тексту (П=повільно | Ш=швидко)"
|
||||||
"Тайм-аут",
|
},
|
||||||
"сну"
|
"ReverseButtonTempChange": {
|
||||||
],
|
"displayText": "Інвертувати\nкнопки +-?",
|
||||||
"desc": "Час до переходу в режим очікування (Хвилини | Секунди)"
|
"description": "Інвертувати кнопки зміни температури."
|
||||||
},
|
},
|
||||||
"ShutdownTimeout": {
|
"AnimSpeed": {
|
||||||
"text2": [
|
"displayText": "Швидкість\nанімації",
|
||||||
"Часу до",
|
"description": "Швидкість анімації іконок у головному меню (Мілісекунди) (В=Вимк | Н=Низькa | С=Середня | М=Макс)"
|
||||||
"вимкнення"
|
},
|
||||||
],
|
"AnimLoop": {
|
||||||
"desc": "Час до вимкнення (Хвилини)"
|
"displayText": "Циклічна\nанімація",
|
||||||
},
|
"description": "Циклічна анімація іконок в головному меню"
|
||||||
"HallEffSensitivity": {
|
},
|
||||||
"text2": [
|
"Brightness": {
|
||||||
"Чутливість",
|
"displayText": "Яскравість\nекрану",
|
||||||
"Ефекту Холла"
|
"description": "Налаштування контрасту/яскравості OLED екрану"
|
||||||
],
|
},
|
||||||
"desc": "Чутливість датчика ефекту Холла при виявленні сну (0=Вимк. | 1=мін. чутливості | ... | 9=макс. чутливості)"
|
"ColourInversion": {
|
||||||
},
|
"displayText": "Інверт\nекрану",
|
||||||
"TemperatureUnit": {
|
"description": "Інвертувати кольори на OLED екрані"
|
||||||
"text2": [
|
},
|
||||||
"Формат темпе-",
|
"LOGOTime": {
|
||||||
"ратури(C°/F°)"
|
"displayText": "Тривалість\nлоготипу завантаження",
|
||||||
],
|
"description": "Встановити тривалість показу лого при завантаженні (с=секунд)"
|
||||||
"desc": "Одиниця виміру температури (C=Цельсій | F=Фаренгейт)"
|
},
|
||||||
},
|
"AdvancedIdle": {
|
||||||
"DisplayRotation": {
|
"displayText": "Детальний ре-\nжим очікуван.",
|
||||||
"text2": [
|
"description": "Показувати детальну інформацію маленьким шрифтом на домашньому екрані"
|
||||||
"Автоповорот",
|
},
|
||||||
"екрану"
|
"AdvancedSoldering": {
|
||||||
],
|
"displayText": "Детальний\nрежим пайки",
|
||||||
"desc": "Орієнтація дисплея (П=Правша | Л=Лівша | A=Автоповорот)"
|
"description": "Показувати детальну інформацію при пайці."
|
||||||
},
|
},
|
||||||
"CooldownBlink": {
|
"PowerLimit": {
|
||||||
"text2": [
|
"displayText": "Макс.\nпотуж.",
|
||||||
"Показ t° при",
|
"description": "Макс. потужність, яку може використовувати паяльник (Ват)"
|
||||||
"охолодженні"
|
},
|
||||||
],
|
"CalibrateCJC": {
|
||||||
"desc": "Показувати температуру на екрані охолодження, поки жало залишається гарячим, при цьому екран моргає"
|
"displayText": "Калібрувати КХС\nпри наступному завантаженні",
|
||||||
},
|
"description": "При наступному завантаження буде відкалібровано Компенсацію Холодного Спаю жала (непотрібне при різниці температур < 5°C)"
|
||||||
"ScrollingSpeed": {
|
},
|
||||||
"text2": [
|
"VoltageCalibration": {
|
||||||
"Швидкість",
|
"displayText": "Калібрування\nнапруги",
|
||||||
"тексту"
|
"description": "Калібрування напруги входу. Налаштувати кнопками, натиснути і утримати щоб завершити."
|
||||||
],
|
},
|
||||||
"desc": "Швидкість прокрутки тексту (П=повільно | Ш=швидко)"
|
"PowerPulsePower": {
|
||||||
},
|
"displayText": "Пульс.\nНавантаж.",
|
||||||
"ReverseButtonTempChange": {
|
"description": "Деякі PowerBank-и з часом вимк. живлення, якщо пристрій споживає дуже мало енергії)"
|
||||||
"text2": [
|
},
|
||||||
"Інвертувати",
|
"PowerPulseWait": {
|
||||||
"кнопки +-?"
|
"displayText": "Час між імп.\nнапруги",
|
||||||
],
|
"description": "Час між імпульсами напруги яка не дає PowerBank-у заснути (x 2.5с)"
|
||||||
"desc": "Інвертувати кнопки зміни температури."
|
},
|
||||||
},
|
"PowerPulseDuration": {
|
||||||
"AnimSpeed": {
|
"displayText": "Тривалість\nімп. напруги",
|
||||||
"text2": [
|
"description": "Тривалість імпульсу напруги яка не дає PowerBank-у заснути (x 250мс)"
|
||||||
"Швидкість",
|
},
|
||||||
"анімації"
|
"SettingsReset": {
|
||||||
],
|
"displayText": "Скинути всі\nналаштування?",
|
||||||
"desc": "Швидкість анімації іконок у головному меню (Мілісекунди) (В=Вимк | Н=Низькa | С=Середня | М=Макс)"
|
"description": "Скидання всіх параметрів до стандартних значень."
|
||||||
},
|
},
|
||||||
"AnimLoop": {
|
"LanguageSwitch": {
|
||||||
"text2": [
|
"displayText": "Мова:\n UK Українська",
|
||||||
"Циклічна",
|
"description": ""
|
||||||
"анімація"
|
}
|
||||||
],
|
}
|
||||||
"desc": "Циклічна анімація іконок в головному меню"
|
|
||||||
},
|
|
||||||
"Brightness": {
|
|
||||||
"text2": [
|
|
||||||
"Яскравість",
|
|
||||||
"екрану"
|
|
||||||
],
|
|
||||||
"desc": "Налаштування контрасту/яскравості OLED екрану"
|
|
||||||
},
|
|
||||||
"ColourInversion": {
|
|
||||||
"text2": [
|
|
||||||
"Інверт",
|
|
||||||
"екрану"
|
|
||||||
],
|
|
||||||
"desc": "Інвертувати кольори на OLED екрані"
|
|
||||||
},
|
|
||||||
"LOGOTime": {
|
|
||||||
"text2": [
|
|
||||||
"Тривалість",
|
|
||||||
"логотипу завантаження"
|
|
||||||
],
|
|
||||||
"desc": "Встановити тривалість показу лого при завантаженні (с=секунд)"
|
|
||||||
},
|
|
||||||
"AdvancedIdle": {
|
|
||||||
"text2": [
|
|
||||||
"Детальний ре-",
|
|
||||||
"жим очікуван."
|
|
||||||
],
|
|
||||||
"desc": "Показувати детальну інформацію маленьким шрифтом на домашньому екрані"
|
|
||||||
},
|
|
||||||
"AdvancedSoldering": {
|
|
||||||
"text2": [
|
|
||||||
"Детальний",
|
|
||||||
"режим пайки"
|
|
||||||
],
|
|
||||||
"desc": "Показувати детальну інформацію при пайці."
|
|
||||||
},
|
|
||||||
"PowerLimit": {
|
|
||||||
"text2": [
|
|
||||||
"Макс.",
|
|
||||||
"потуж."
|
|
||||||
],
|
|
||||||
"desc": "Макс. потужність, яку може використовувати паяльник (Ват)"
|
|
||||||
},
|
|
||||||
"CalibrateCJC": {
|
|
||||||
"text2": [
|
|
||||||
"Калібрувати КХС",
|
|
||||||
"при наступному завантаженні"
|
|
||||||
],
|
|
||||||
"desc": "При наступному завантаження буде відкалібровано Компенсацію Холодного Спаю жала (непотрібне при різниці температур < 5°C)"
|
|
||||||
},
|
|
||||||
"VoltageCalibration": {
|
|
||||||
"text2": [
|
|
||||||
"Калібрування",
|
|
||||||
"напруги"
|
|
||||||
],
|
|
||||||
"desc": "Калібрування напруги входу. Налаштувати кнопками, натиснути і утримати щоб завершити."
|
|
||||||
},
|
|
||||||
"PowerPulsePower": {
|
|
||||||
"text2": [
|
|
||||||
"Пульс.",
|
|
||||||
"Навантаж."
|
|
||||||
],
|
|
||||||
"desc": "Деякі PowerBank-и з часом вимк. живлення, якщо пристрій споживає дуже мало енергії)"
|
|
||||||
},
|
|
||||||
"PowerPulseWait": {
|
|
||||||
"text2": [
|
|
||||||
"Час між імп.",
|
|
||||||
"напруги"
|
|
||||||
],
|
|
||||||
"desc": "Час між імпульсами напруги яка не дає PowerBank-у заснути (x 2.5с)"
|
|
||||||
},
|
|
||||||
"PowerPulseDuration": {
|
|
||||||
"text2": [
|
|
||||||
"Тривалість",
|
|
||||||
"імп. напруги"
|
|
||||||
],
|
|
||||||
"desc": "Тривалість імпульсу напруги яка не дає PowerBank-у заснути (x 250мс)"
|
|
||||||
},
|
|
||||||
"SettingsReset": {
|
|
||||||
"text2": [
|
|
||||||
"Скинути всі",
|
|
||||||
"налаштування?"
|
|
||||||
],
|
|
||||||
"desc": "Скидання всіх параметрів до стандартних значень."
|
|
||||||
},
|
|
||||||
"LanguageSwitch": {
|
|
||||||
"text2": [
|
|
||||||
"Мова:",
|
|
||||||
" UK Українська"
|
|
||||||
],
|
|
||||||
"desc": ""
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@@ -1,337 +1,243 @@
|
|||||||
{
|
{
|
||||||
"languageCode": "VI",
|
"languageCode": "VI",
|
||||||
"languageLocalName": "Tieng Viet",
|
"languageLocalName": "Tieng Viet",
|
||||||
"tempUnitFahrenheit": false,
|
"tempUnitFahrenheit": false,
|
||||||
"messages": {
|
"messagesWarn": {
|
||||||
"SettingsCalibrationWarning": "Before rebooting, make sure tip & handle are at room temperature!",
|
"CJCCalibrationDone": {
|
||||||
"CJCCalibrating": "calibrating",
|
"message": "Calibration\ndone!"
|
||||||
"SettingsResetWarning": "Ban chac chan muon khôi phuc tat ca cài đat ve mac đinh?",
|
},
|
||||||
"UVLOWarningString": "DC thap",
|
"ResetOKMessage": {
|
||||||
"UndervoltageString": "Đien áp thap",
|
"message": "Reset OK"
|
||||||
"InputVoltageString": "Đau vào V: ",
|
},
|
||||||
"SleepingSimpleString": "Zzzz",
|
"SettingsResetMessage": {
|
||||||
"SleepingAdvancedString": "Đang ngu...",
|
"message": "Mot so cài đat\nđã thay đoi"
|
||||||
"SleepingTipAdvancedString": "Meo:",
|
},
|
||||||
"OffString": "Tat",
|
"NoAccelerometerMessage": {
|
||||||
"DeviceFailedValidationWarning": "Your device is most likely a counterfeit!"
|
"message": "Không phát hien\ngia toc ke!"
|
||||||
},
|
},
|
||||||
"messagesWarn": {
|
"NoPowerDeliveryMessage": {
|
||||||
"CJCCalibrationDone": [
|
"message": "Không phát hien\nUSB-PD IC!"
|
||||||
"Calibration",
|
},
|
||||||
"done!"
|
"LockingKeysString": {
|
||||||
],
|
"message": "Đã khóa"
|
||||||
"ResetOKMessage": "Reset OK",
|
},
|
||||||
"SettingsResetMessage": [
|
"UnlockingKeysString": {
|
||||||
"Mot so cài đat",
|
"message": "Mo khóa"
|
||||||
"đã thay đoi"
|
},
|
||||||
],
|
"WarningKeysLockedString": {
|
||||||
"NoAccelerometerMessage": [
|
"message": "Đã khóa!"
|
||||||
"Không phát hien",
|
},
|
||||||
"gia toc ke!"
|
"WarningThermalRunaway": {
|
||||||
],
|
"message": "Nhiet\nTat gia nhiet"
|
||||||
"NoPowerDeliveryMessage": [
|
},
|
||||||
"Không phát hien",
|
"SettingsCalibrationWarning": {
|
||||||
"USB-PD IC!"
|
"message": "Before rebooting, make sure tip & handle are at room temperature!"
|
||||||
],
|
},
|
||||||
"LockingKeysString": "Đã khóa",
|
"CJCCalibrating": {
|
||||||
"UnlockingKeysString": "Mo khóa",
|
"message": "calibrating"
|
||||||
"WarningKeysLockedString": "Đã khóa!",
|
},
|
||||||
"WarningThermalRunaway": [
|
"SettingsResetWarning": {
|
||||||
"Nhiet",
|
"message": "Ban chac chan muon khôi phuc tat ca cài đat ve mac đinh?"
|
||||||
"Tat gia nhiet"
|
},
|
||||||
]
|
"UVLOWarningString": {
|
||||||
},
|
"message": "DC thap"
|
||||||
"characters": {
|
},
|
||||||
"SettingRightChar": "R",
|
"UndervoltageString": {
|
||||||
"SettingLeftChar": "L",
|
"message": "Đien áp thap"
|
||||||
"SettingAutoChar": "A",
|
},
|
||||||
"SettingOffChar": "O",
|
"InputVoltageString": {
|
||||||
"SettingSlowChar": "S",
|
"message": "Đau vào V: "
|
||||||
"SettingMediumChar": "M",
|
},
|
||||||
"SettingFastChar": "F",
|
"SleepingSimpleString": {
|
||||||
"SettingStartNoneChar": "O",
|
"message": "Zzzz"
|
||||||
"SettingStartSolderingChar": "S",
|
},
|
||||||
"SettingStartSleepChar": "Z",
|
"SleepingAdvancedString": {
|
||||||
"SettingStartSleepOffChar": "R",
|
"message": "Đang ngu..."
|
||||||
"SettingLockDisableChar": "D",
|
},
|
||||||
"SettingLockBoostChar": "B",
|
"SleepingTipAdvancedString": {
|
||||||
"SettingLockFullChar": "F"
|
"message": "Meo:"
|
||||||
},
|
},
|
||||||
"menuGroups": {
|
"OffString": {
|
||||||
"PowerMenu": {
|
"message": "Tat"
|
||||||
"text2": [
|
},
|
||||||
"Cài đat",
|
"DeviceFailedValidationWarning": {
|
||||||
"nguon đien"
|
"message": "Your device is most likely a counterfeit!"
|
||||||
],
|
}
|
||||||
"desc": ""
|
},
|
||||||
},
|
"characters": {
|
||||||
"SolderingMenu": {
|
"SettingRightChar": "R",
|
||||||
"text2": [
|
"SettingLeftChar": "L",
|
||||||
"Cài đat",
|
"SettingAutoChar": "A",
|
||||||
"tay hàn"
|
"SettingOffChar": "O",
|
||||||
],
|
"SettingSlowChar": "S",
|
||||||
"desc": ""
|
"SettingMediumChar": "M",
|
||||||
},
|
"SettingFastChar": "F",
|
||||||
"PowerSavingMenu": {
|
"SettingStartNoneChar": "O",
|
||||||
"text2": [
|
"SettingStartSolderingChar": "S",
|
||||||
"Che đo",
|
"SettingStartSleepChar": "Z",
|
||||||
"ngu"
|
"SettingStartSleepOffChar": "R",
|
||||||
],
|
"SettingLockDisableChar": "D",
|
||||||
"desc": ""
|
"SettingLockBoostChar": "B",
|
||||||
},
|
"SettingLockFullChar": "F"
|
||||||
"UIMenu": {
|
},
|
||||||
"text2": [
|
"menuGroups": {
|
||||||
"Giao dien",
|
"PowerMenu": {
|
||||||
"nguoi dùng"
|
"displayText": "Cài đat\nnguon đien",
|
||||||
],
|
"description": ""
|
||||||
"desc": ""
|
},
|
||||||
},
|
"SolderingMenu": {
|
||||||
"AdvancedMenu": {
|
"displayText": "Cài đat\ntay hàn",
|
||||||
"text2": [
|
"description": ""
|
||||||
"Cài đat",
|
},
|
||||||
"nâng cao"
|
"PowerSavingMenu": {
|
||||||
],
|
"displayText": "Che đo\nngu",
|
||||||
"desc": ""
|
"description": ""
|
||||||
}
|
},
|
||||||
},
|
"UIMenu": {
|
||||||
"menuOptions": {
|
"displayText": "Giao dien\nnguoi dùng",
|
||||||
"DCInCutoff": {
|
"description": ""
|
||||||
"text2": [
|
},
|
||||||
"Nguon",
|
"AdvancedMenu": {
|
||||||
"đien"
|
"displayText": "Cài đat\nnâng cao",
|
||||||
],
|
"description": ""
|
||||||
"desc": "Nguon đien, đat đien áp giam. (DC 10V) (S 3.3V moi cell, tat gioi han công suat)"
|
}
|
||||||
},
|
},
|
||||||
"MinVolCell": {
|
"menuOptions": {
|
||||||
"text2": [
|
"DCInCutoff": {
|
||||||
"Voltage",
|
"displayText": "Nguon\nđien",
|
||||||
"toi thieu"
|
"description": "Nguon đien, đat đien áp giam. (DC 10V) (S 3.3V moi cell, tat gioi han công suat)"
|
||||||
],
|
},
|
||||||
"desc": "Đien áp toi thieu cho phép trên moi cell (3S: 3 - 3,7V | 4-6S: 2,4 - 3,7V)"
|
"MinVolCell": {
|
||||||
},
|
"displayText": "Voltage\ntoi thieu",
|
||||||
"QCMaxVoltage": {
|
"description": "Đien áp toi thieu cho phép trên moi cell (3S: 3 - 3,7V | 4-6S: 2,4 - 3,7V)"
|
||||||
"text2": [
|
},
|
||||||
"QC",
|
"QCMaxVoltage": {
|
||||||
"voltage"
|
"displayText": "QC\nvoltage",
|
||||||
],
|
"description": "Đien áp QC toi đa mà tay hàn yêu cau"
|
||||||
"desc": "Đien áp QC toi đa mà tay hàn yêu cau"
|
},
|
||||||
},
|
"PDNegTimeout": {
|
||||||
"PDNegTimeout": {
|
"displayText": "PD\nsau",
|
||||||
"text2": [
|
"description": "Thoi gian cho đàm phán PD trong các buoc 100ms đe tuong thích voi mot so bo sac QC"
|
||||||
"PD",
|
},
|
||||||
"sau"
|
"BoostTemperature": {
|
||||||
],
|
"displayText": "Tăng\nnhiet đo",
|
||||||
"desc": "Thoi gian cho đàm phán PD trong các buoc 100ms đe tuong thích voi mot so bo sac QC"
|
"description": "Nhiet đo dùng trong che đo \"tăng cuong\""
|
||||||
},
|
},
|
||||||
"BoostTemperature": {
|
"AutoStart": {
|
||||||
"text2": [
|
"displayText": "Nhiet đo\nđang tăng",
|
||||||
"Tăng",
|
"description": "- 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"
|
},
|
||||||
],
|
"TempChangeShortStep": {
|
||||||
"desc": "Nhiet đo dùng trong che đo \"tăng cuong\""
|
"displayText": "Thay đoi n.đo\nan nút nhanh",
|
||||||
},
|
"description": "Biên đo tăng/giam nhiet đo khi an nút nhanh"
|
||||||
"AutoStart": {
|
},
|
||||||
"text2": [
|
"TempChangeLongStep": {
|
||||||
"Nhiet đo",
|
"displayText": "Thay đoi n.đo\nan nút lâu",
|
||||||
"đang tăng"
|
"description": "Biên đo tăng/giam nhiet đo khi an nút lâu"
|
||||||
],
|
},
|
||||||
"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"
|
"LockingMode": {
|
||||||
},
|
"displayText": "Cho phép khóa\ncác nút",
|
||||||
"TempChangeShortStep": {
|
"description": "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)"
|
||||||
"text2": [
|
},
|
||||||
"Thay đoi n.đo",
|
"MotionSensitivity": {
|
||||||
"an nút nhanh"
|
"displayText": "Cam bien\ncu đong",
|
||||||
],
|
"description": "- 0=tat | 1=đo nhay thap nhat| ... | 9=đo nhay cao nhat"
|
||||||
"desc": "Biên đo tăng/giam nhiet đo khi an nút nhanh"
|
},
|
||||||
},
|
"SleepTemperature": {
|
||||||
"TempChangeLongStep": {
|
"displayText": "Nhiet đo\nkhi ngu",
|
||||||
"text2": [
|
"description": "Giam nhiet đo khi o \"Che đo ngu\""
|
||||||
"Thay đoi n.đo",
|
},
|
||||||
"an nút lâu"
|
"SleepTimeout": {
|
||||||
],
|
"displayText": "Ngu\nsau",
|
||||||
"desc": "Biên đo tăng/giam nhiet đo khi an nút lâu"
|
"description": "- thoi gian truoc khi \"Che đo ngu\" bat đau (s=giây | m=phút)"
|
||||||
},
|
},
|
||||||
"LockingMode": {
|
"ShutdownTimeout": {
|
||||||
"text2": [
|
"displayText": "Tat\nsau",
|
||||||
"Cho phép khóa",
|
"description": "- khoang thoi gian truoc khi tay hàn tat (m=phút)"
|
||||||
"các nút"
|
},
|
||||||
],
|
"HallEffSensitivity": {
|
||||||
"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)"
|
"displayText": "Hall\nđo nhay",
|
||||||
},
|
"description": "Đo nhay cam bien Hall đe phát hien che đo ngu (0=tat | 1=ít nhay nhat |...| 9=nhay nhat)"
|
||||||
"MotionSensitivity": {
|
},
|
||||||
"text2": [
|
"TemperatureUnit": {
|
||||||
"Cam bien",
|
"displayText": "Đon vi\nnhiet đo",
|
||||||
"cu đong"
|
"description": "C= Đo C | F= Đo F"
|
||||||
],
|
},
|
||||||
"desc": "- 0=tat | 1=đo nhay thap nhat| ... | 9=đo nhay cao nhat"
|
"DisplayRotation": {
|
||||||
},
|
"displayText": "Huong\nhien thi",
|
||||||
"SleepTemperature": {
|
"description": "- R=huong tay phai | L=huong tay trái | A=tu đong"
|
||||||
"text2": [
|
},
|
||||||
"Nhiet đo",
|
"CooldownBlink": {
|
||||||
"khi ngu"
|
"displayText": "Nguoi đi\nchop mat",
|
||||||
],
|
"description": "-Nhap nháy nhiet đo sau khi viec gia nhiet tam dung trong khi mui hàn van nóng"
|
||||||
"desc": "Giam nhiet đo khi o \"Che đo ngu\""
|
},
|
||||||
},
|
"ScrollingSpeed": {
|
||||||
"SleepTimeout": {
|
"displayText": "Toc đo\ncuon",
|
||||||
"text2": [
|
"description": "Toc đo cuon văn ban(S=cham | F=nhanh)"
|
||||||
"Ngu",
|
},
|
||||||
"sau"
|
"ReverseButtonTempChange": {
|
||||||
],
|
"displayText": "Đao nguoc\nnút + -",
|
||||||
"desc": "- thoi gian truoc khi \"Che đo ngu\" bat đau (s=giây | m=phút)"
|
"description": "Đao nguoc chuc năng các nút đieu chinh nhiet đo"
|
||||||
},
|
},
|
||||||
"ShutdownTimeout": {
|
"AnimSpeed": {
|
||||||
"text2": [
|
"displayText": "Toc đo\nhoat anh",
|
||||||
"Tat",
|
"description": "-Toc đo cua hoat anh menu (O=tat | S=cham | M=trung bình | F=nhanh)"
|
||||||
"sau"
|
},
|
||||||
],
|
"AnimLoop": {
|
||||||
"desc": "- khoang thoi gian truoc khi tay hàn tat (m=phút)"
|
"displayText": "Hoat anh\nlap lai",
|
||||||
},
|
"description": "Lap lai các hoat anh trong màn hình chính"
|
||||||
"HallEffSensitivity": {
|
},
|
||||||
"text2": [
|
"Brightness": {
|
||||||
"Hall",
|
"displayText": "Đo tuong phan\nmàn hình",
|
||||||
"đo nhay"
|
"description": "-Đieu chinh đo sáng màn hình OLED"
|
||||||
],
|
},
|
||||||
"desc": "Đo nhay cam bien Hall đe phát hien che đo ngu (0=tat | 1=ít nhay nhat |...| 9=nhay nhat)"
|
"ColourInversion": {
|
||||||
},
|
"displayText": "Đao nguoc màu\nmàn hình",
|
||||||
"TemperatureUnit": {
|
"description": "-Đao nguoc màu màn hình OLED"
|
||||||
"text2": [
|
},
|
||||||
"Đon vi",
|
"LOGOTime": {
|
||||||
"nhiet đo"
|
"displayText": "Boot logo\nduration",
|
||||||
],
|
"description": "Set boot logo duration (s=seconds)"
|
||||||
"desc": "C= Đo C | F= Đo F"
|
},
|
||||||
},
|
"AdvancedIdle": {
|
||||||
"DisplayRotation": {
|
"displayText": "Chi tiet\nmàn hình cho",
|
||||||
"text2": [
|
"description": "- hien thi thông tin chi tiet bang phông chu nho hon trên màn hình cho"
|
||||||
"Huong",
|
},
|
||||||
"hien thi"
|
"AdvancedSoldering": {
|
||||||
],
|
"displayText": "Chi tiet\nmàn hình hàn",
|
||||||
"desc": "- R=huong tay phai | L=huong tay trái | A=tu đong"
|
"description": "-Hien thi thông tin bang phông chu nho hon trên màn hình hàn"
|
||||||
},
|
},
|
||||||
"CooldownBlink": {
|
"PowerLimit": {
|
||||||
"text2": [
|
"displayText": "Công suat\ngioi han",
|
||||||
"Nguoi đi",
|
"description": "-Công suat toi đa mà tay hàn có the su dung (W=watt)"
|
||||||
"chop mat"
|
},
|
||||||
],
|
"CalibrateCJC": {
|
||||||
"desc": "-Nhap nháy nhiet đo sau khi viec gia nhiet tam dung trong khi mui hàn van nóng"
|
"displayText": "Calibrate CJC\nat next boot",
|
||||||
},
|
"description": "At next boot tip Cold Junction Compensation will be calibrated (not required if Delta T is < 5°C)"
|
||||||
"ScrollingSpeed": {
|
},
|
||||||
"text2": [
|
"VoltageCalibration": {
|
||||||
"Toc đo",
|
"displayText": "Hieu chinh\nđien áp đau vào?",
|
||||||
"cuon"
|
"description": "-bat đau hieu chuan VIN (nhan và giu đe thoát)"
|
||||||
],
|
},
|
||||||
"desc": "Toc đo cuon văn ban(S=cham | F=nhanh)"
|
"PowerPulsePower": {
|
||||||
},
|
"displayText": "Công suat\nkích nguon",
|
||||||
"ReverseButtonTempChange": {
|
"description": "-Cuong đo công suat kích nguon (watt)"
|
||||||
"text2": [
|
},
|
||||||
"Đao nguoc",
|
"PowerPulseWait": {
|
||||||
"nút + -"
|
"displayText": "Trì hoãn\nđien áp kích",
|
||||||
],
|
"description": "Trì hoãn truoc khi kích hoat kích nguon(x 2,5 giây)"
|
||||||
"desc": "Đao nguoc chuc năng các nút đieu chinh nhiet đo"
|
},
|
||||||
},
|
"PowerPulseDuration": {
|
||||||
"AnimSpeed": {
|
"displayText": "Thoi luong\nkích nguon",
|
||||||
"text2": [
|
"description": "-thoi luong kích nguon (x 250ms)"
|
||||||
"Toc đo",
|
},
|
||||||
"hoat anh"
|
"SettingsReset": {
|
||||||
],
|
"displayText": "Khôi phuc\ncài đat goc?",
|
||||||
"desc": "-Toc đo cua hoat anh menu (O=tat | S=cham | M=trung bình | F=nhanh)"
|
"description": "-đat lai tat ca cài đat ve mac đinh"
|
||||||
},
|
},
|
||||||
"AnimLoop": {
|
"LanguageSwitch": {
|
||||||
"text2": [
|
"displayText": "Ngôn ngu:\n VI Tieng Viet",
|
||||||
"Hoat anh",
|
"description": ""
|
||||||
"lap lai"
|
}
|
||||||
],
|
}
|
||||||
"desc": "Lap lai các hoat anh trong màn hình chính"
|
|
||||||
},
|
|
||||||
"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"
|
|
||||||
},
|
|
||||||
"LOGOTime": {
|
|
||||||
"text2": [
|
|
||||||
"Boot logo",
|
|
||||||
"duration"
|
|
||||||
],
|
|
||||||
"desc": "Set boot logo duration (s=seconds)"
|
|
||||||
},
|
|
||||||
"AdvancedIdle": {
|
|
||||||
"text2": [
|
|
||||||
"Chi tiet",
|
|
||||||
"màn hình cho"
|
|
||||||
],
|
|
||||||
"desc": "- hien thi thông tin chi tiet bang phông chu nho hon trên màn hình cho"
|
|
||||||
},
|
|
||||||
"AdvancedSoldering": {
|
|
||||||
"text2": [
|
|
||||||
"Chi tiet",
|
|
||||||
"màn hình hàn"
|
|
||||||
],
|
|
||||||
"desc": "-Hien thi thông tin bang phông chu nho hon trên màn hình hàn"
|
|
||||||
},
|
|
||||||
"PowerLimit": {
|
|
||||||
"text2": [
|
|
||||||
"Công suat",
|
|
||||||
"gioi han"
|
|
||||||
],
|
|
||||||
"desc": "-Công suat toi đa mà tay hàn có the su dung (W=watt)"
|
|
||||||
},
|
|
||||||
"CalibrateCJC": {
|
|
||||||
"text2": [
|
|
||||||
"Calibrate CJC",
|
|
||||||
"at next boot"
|
|
||||||
],
|
|
||||||
"desc": "At next boot tip Cold Junction Compensation will be calibrated (not required if Delta T is < 5°C)"
|
|
||||||
},
|
|
||||||
"VoltageCalibration": {
|
|
||||||
"text2": [
|
|
||||||
"Hieu chinh",
|
|
||||||
"đien áp đau vào?"
|
|
||||||
],
|
|
||||||
"desc": "-bat đau hieu chuan VIN (nhan và giu đe thoát)"
|
|
||||||
},
|
|
||||||
"PowerPulsePower": {
|
|
||||||
"text2": [
|
|
||||||
"Công suat",
|
|
||||||
"kích nguon"
|
|
||||||
],
|
|
||||||
"desc": "-Cuong đo công suat kích nguon (watt)"
|
|
||||||
},
|
|
||||||
"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)"
|
|
||||||
},
|
|
||||||
"SettingsReset": {
|
|
||||||
"text2": [
|
|
||||||
"Khôi phuc",
|
|
||||||
"cài đat goc?"
|
|
||||||
],
|
|
||||||
"desc": "-đat lai tat ca cài đat ve mac đinh"
|
|
||||||
},
|
|
||||||
"LanguageSwitch": {
|
|
||||||
"text2": [
|
|
||||||
"Ngôn ngu:",
|
|
||||||
" VI Tieng Viet"
|
|
||||||
],
|
|
||||||
"desc": ""
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@@ -1,205 +1,243 @@
|
|||||||
{
|
{
|
||||||
"languageCode": "YUE_HK",
|
"languageCode": "YUE_HK",
|
||||||
"languageLocalName": "廣東話 (香港)",
|
"languageLocalName": "廣東話 (香港)",
|
||||||
"tempUnitFahrenheit": true,
|
"tempUnitFahrenheit": true,
|
||||||
"messages": {
|
"messagesWarn": {
|
||||||
"SettingsCalibrationWarning": "Before rebooting, make sure tip & handle are at room temperature!",
|
"CJCCalibrationDone": {
|
||||||
"CJCCalibrating": "calibrating",
|
"message": "Calibration done!"
|
||||||
"SettingsResetWarning": "你係咪確定要將全部設定重設到預設值?",
|
},
|
||||||
"UVLOWarningString": "電壓過低",
|
"ResetOKMessage": {
|
||||||
"UndervoltageString": "Undervoltage",
|
"message": "已重設!"
|
||||||
"InputVoltageString": "Input V: ",
|
},
|
||||||
"SleepingSimpleString": "Zzzz",
|
"SettingsResetMessage": {
|
||||||
"SleepingAdvancedString": "Sleeping...",
|
"message": "設定已被重設!"
|
||||||
"SleepingTipAdvancedString": "Tip:",
|
},
|
||||||
"OffString": "關",
|
"NoAccelerometerMessage": {
|
||||||
"DeviceFailedValidationWarning": "依支焫雞好有可能係冒牌貨!"
|
"message": "未能偵測加速度計"
|
||||||
},
|
},
|
||||||
"messagesWarn": {
|
"NoPowerDeliveryMessage": {
|
||||||
"CJCCalibrationDone": "Calibration done!",
|
"message": "未能偵測PD晶片"
|
||||||
"ResetOKMessage": "已重設!",
|
},
|
||||||
"SettingsResetMessage": "設定已被重設!",
|
"LockingKeysString": {
|
||||||
"NoAccelerometerMessage": "未能偵測加速度計",
|
"message": "已鎖定"
|
||||||
"NoPowerDeliveryMessage": "未能偵測PD晶片",
|
},
|
||||||
"LockingKeysString": "已鎖定",
|
"UnlockingKeysString": {
|
||||||
"UnlockingKeysString": "已解除鎖定",
|
"message": "已解除鎖定"
|
||||||
"WarningKeysLockedString": "!撳掣鎖定!",
|
},
|
||||||
"WarningThermalRunaway": "加熱失控"
|
"WarningKeysLockedString": {
|
||||||
},
|
"message": "!撳掣鎖定!"
|
||||||
"characters": {
|
},
|
||||||
"SettingRightChar": "右",
|
"WarningThermalRunaway": {
|
||||||
"SettingLeftChar": "左",
|
"message": "加熱失控"
|
||||||
"SettingAutoChar": "自",
|
},
|
||||||
"SettingOffChar": "關",
|
"SettingsCalibrationWarning": {
|
||||||
"SettingSlowChar": "慢",
|
"message": "Before rebooting, make sure tip & handle are at room temperature!"
|
||||||
"SettingMediumChar": "中",
|
},
|
||||||
"SettingFastChar": "快",
|
"CJCCalibrating": {
|
||||||
"SettingStartNoneChar": "無",
|
"message": "calibrating"
|
||||||
"SettingStartSolderingChar": "焊",
|
},
|
||||||
"SettingStartSleepChar": "待",
|
"SettingsResetWarning": {
|
||||||
"SettingStartSleepOffChar": "室",
|
"message": "你係咪確定要將全部設定重設到預設值?"
|
||||||
"SettingLockDisableChar": "無",
|
},
|
||||||
"SettingLockBoostChar": "增",
|
"UVLOWarningString": {
|
||||||
"SettingLockFullChar": "全"
|
"message": "電壓過低"
|
||||||
},
|
},
|
||||||
"menuGroups": {
|
"UndervoltageString": {
|
||||||
"PowerMenu": {
|
"message": "Undervoltage"
|
||||||
"text2": "電源設定",
|
},
|
||||||
"desc": ""
|
"InputVoltageString": {
|
||||||
},
|
"message": "Input V: "
|
||||||
"SolderingMenu": {
|
},
|
||||||
"text2": "焊接設定",
|
"SleepingSimpleString": {
|
||||||
"desc": ""
|
"message": "Zzzz"
|
||||||
},
|
},
|
||||||
"PowerSavingMenu": {
|
"SleepingAdvancedString": {
|
||||||
"text2": "待機設定",
|
"message": "Sleeping..."
|
||||||
"desc": ""
|
},
|
||||||
},
|
"SleepingTipAdvancedString": {
|
||||||
"UIMenu": {
|
"message": "Tip:"
|
||||||
"text2": "使用者介面",
|
},
|
||||||
"desc": ""
|
"OffString": {
|
||||||
},
|
"message": "關"
|
||||||
"AdvancedMenu": {
|
},
|
||||||
"text2": "進階設定",
|
"DeviceFailedValidationWarning": {
|
||||||
"desc": ""
|
"message": "依支焫雞好有可能係冒牌貨!"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"menuOptions": {
|
"characters": {
|
||||||
"DCInCutoff": {
|
"SettingRightChar": "右",
|
||||||
"text2": "電源",
|
"SettingLeftChar": "左",
|
||||||
"desc": "輸入電源;設定自動停機電壓 <DC 10V> <S 鋰電池,以每粒3.3V計算;依個設定會停用功率限制>"
|
"SettingAutoChar": "自",
|
||||||
},
|
"SettingOffChar": "關",
|
||||||
"MinVolCell": {
|
"SettingSlowChar": "慢",
|
||||||
"text2": "最低電壓",
|
"SettingMediumChar": "中",
|
||||||
"desc": "每粒電池嘅最低可用電壓 <伏特> <3S: 3.0V - 3.7V, 4/5/6S: 2.4V - 3.7V>"
|
"SettingFastChar": "快",
|
||||||
},
|
"SettingStartNoneChar": "無",
|
||||||
"QCMaxVoltage": {
|
"SettingStartSolderingChar": "焊",
|
||||||
"text2": "QC電壓",
|
"SettingStartSleepChar": "待",
|
||||||
"desc": "使用QC電源時請求嘅最高目標電壓"
|
"SettingStartSleepOffChar": "室",
|
||||||
},
|
"SettingLockDisableChar": "無",
|
||||||
"PDNegTimeout": {
|
"SettingLockBoostChar": "增",
|
||||||
"text2": "PD逾時",
|
"SettingLockFullChar": "全"
|
||||||
"desc": "設定USB PD協定交涉嘅逾時時限;為兼容某啲QC電源而設 <x100ms(亳秒)>"
|
},
|
||||||
},
|
"menuGroups": {
|
||||||
"BoostTemperature": {
|
"PowerMenu": {
|
||||||
"text2": "增熱温度",
|
"displayText": "電源設定",
|
||||||
"desc": "喺增熱模式時使用嘅温度"
|
"description": ""
|
||||||
},
|
},
|
||||||
"AutoStart": {
|
"SolderingMenu": {
|
||||||
"text2": "自動啓用",
|
"displayText": "焊接設定",
|
||||||
"desc": "開機時自動啓用 <無=停用 | 焊=焊接模式 | 待=待機模式 | 室=室温待機>"
|
"description": ""
|
||||||
},
|
},
|
||||||
"TempChangeShortStep": {
|
"PowerSavingMenu": {
|
||||||
"text2": "温度調整 短",
|
"displayText": "待機設定",
|
||||||
"desc": "調校温度時短撳一下嘅温度變幅"
|
"description": ""
|
||||||
},
|
},
|
||||||
"TempChangeLongStep": {
|
"UIMenu": {
|
||||||
"text2": "温度調整 長",
|
"displayText": "使用者介面",
|
||||||
"desc": "調校温度時長撳嘅温度變幅"
|
"description": ""
|
||||||
},
|
},
|
||||||
"LockingMode": {
|
"AdvancedMenu": {
|
||||||
"text2": "撳掣鎖定",
|
"displayText": "進階設定",
|
||||||
"desc": "喺焊接模式時,同時長撳兩粒掣啓用撳掣鎖定 <無=停用 | 增=淨係容許增熱模式 | 全=鎖定全部>"
|
"description": ""
|
||||||
},
|
}
|
||||||
"MotionSensitivity": {
|
},
|
||||||
"text2": "動作敏感度",
|
"menuOptions": {
|
||||||
"desc": "0=停用 | 1=最低敏感度 | ... | 9=最高敏感度"
|
"DCInCutoff": {
|
||||||
},
|
"displayText": "電源",
|
||||||
"SleepTemperature": {
|
"description": "輸入電源;設定自動停機電壓 <DC 10V> <S 鋰電池,以每粒3.3V計算;依個設定會停用功率限制>"
|
||||||
"text2": "待機温度",
|
},
|
||||||
"desc": "喺待機模式時嘅焫雞咀温度"
|
"MinVolCell": {
|
||||||
},
|
"displayText": "最低電壓",
|
||||||
"SleepTimeout": {
|
"description": "每粒電池嘅最低可用電壓 <伏特> <3S: 3.0V - 3.7V, 4/5/6S: 2.4V - 3.7V>"
|
||||||
"text2": "待機延時",
|
},
|
||||||
"desc": "自動進入待機模式前嘅閒置等候時間 <s=秒 | m=分鐘>"
|
"QCMaxVoltage": {
|
||||||
},
|
"displayText": "QC電壓",
|
||||||
"ShutdownTimeout": {
|
"description": "使用QC電源時請求嘅最高目標電壓"
|
||||||
"text2": "自動熄機",
|
},
|
||||||
"desc": "自動熄機前嘅閒置等候時間 <m=分鐘>"
|
"PDNegTimeout": {
|
||||||
},
|
"displayText": "PD逾時",
|
||||||
"HallEffSensitivity": {
|
"description": "設定USB PD協定交涉嘅逾時時限;為兼容某啲QC電源而設 <x100ms(亳秒)>"
|
||||||
"text2": "磁場敏感度",
|
},
|
||||||
"desc": "磁場感應器用嚟啓動待機模式嘅敏感度 <0=停用 | 1=最低敏感度 | ... | 9=最高敏感度>"
|
"BoostTemperature": {
|
||||||
},
|
"displayText": "增熱温度",
|
||||||
"TemperatureUnit": {
|
"description": "喺增熱模式時使用嘅温度"
|
||||||
"text2": "温度單位",
|
},
|
||||||
"desc": "C=攝氏 | F=華氏"
|
"AutoStart": {
|
||||||
},
|
"displayText": "自動啓用",
|
||||||
"DisplayRotation": {
|
"description": "開機時自動啓用 <無=停用 | 焊=焊接模式 | 待=待機模式 | 室=室温待機>"
|
||||||
"text2": "畫面方向",
|
},
|
||||||
"desc": "右=使用右手 | 左=使用左手 | 自=自動"
|
"TempChangeShortStep": {
|
||||||
},
|
"displayText": "温度調整 短",
|
||||||
"CooldownBlink": {
|
"description": "調校温度時短撳一下嘅温度變幅"
|
||||||
"text2": "降温時閃爍",
|
},
|
||||||
"desc": "停止加熱之後,當焫雞咀仲係熱嗰陣閃爍畫面"
|
"TempChangeLongStep": {
|
||||||
},
|
"displayText": "温度調整 長",
|
||||||
"ScrollingSpeed": {
|
"description": "調校温度時長撳嘅温度變幅"
|
||||||
"text2": "捲動速度",
|
},
|
||||||
"desc": "解說文字嘅捲動速度"
|
"LockingMode": {
|
||||||
},
|
"displayText": "撳掣鎖定",
|
||||||
"ReverseButtonTempChange": {
|
"description": "喺焊接模式時,同時長撳兩粒掣啓用撳掣鎖定 <無=停用 | 增=淨係容許增熱模式 | 全=鎖定全部>"
|
||||||
"text2": "反轉加減掣",
|
},
|
||||||
"desc": "反轉調校温度時加減掣嘅方向"
|
"MotionSensitivity": {
|
||||||
},
|
"displayText": "動作敏感度",
|
||||||
"AnimSpeed": {
|
"description": "0=停用 | 1=最低敏感度 | ... | 9=最高敏感度"
|
||||||
"text2": "動畫速度",
|
},
|
||||||
"desc": "功能表圖示動畫嘅速度 <關=不顯示動畫 | 慢=慢速 | 中=中速 | 快=快速>"
|
"SleepTemperature": {
|
||||||
},
|
"displayText": "待機温度",
|
||||||
"AnimLoop": {
|
"description": "喺待機模式時嘅焫雞咀温度"
|
||||||
"text2": "動畫循環",
|
},
|
||||||
"desc": "循環顯示功能表圖示動畫"
|
"SleepTimeout": {
|
||||||
},
|
"displayText": "待機延時",
|
||||||
"Brightness": {
|
"description": "自動進入待機模式前嘅閒置等候時間 <s=秒 | m=分鐘>"
|
||||||
"text2": "熒幕亮度",
|
},
|
||||||
"desc": "設定OLED熒幕嘅亮度"
|
"ShutdownTimeout": {
|
||||||
},
|
"displayText": "自動熄機",
|
||||||
"ColourInversion": {
|
"description": "自動熄機前嘅閒置等候時間 <m=分鐘>"
|
||||||
"text2": "熒幕反轉色",
|
},
|
||||||
"desc": "反轉OLED熒幕嘅黑白色"
|
"HallEffSensitivity": {
|
||||||
},
|
"displayText": "磁場敏感度",
|
||||||
"LOGOTime": {
|
"description": "磁場感應器用嚟啓動待機模式嘅敏感度 <0=停用 | 1=最低敏感度 | ... | 9=最高敏感度>"
|
||||||
"text2": "開機畫面",
|
},
|
||||||
"desc": "設定開機畫面顯示時長 <s=秒>"
|
"TemperatureUnit": {
|
||||||
},
|
"displayText": "温度單位",
|
||||||
"AdvancedIdle": {
|
"description": "C=攝氏 | F=華氏"
|
||||||
"text2": "詳細閒置畫面",
|
},
|
||||||
"desc": "喺閒置畫面以英文細字顯示詳細嘅資料"
|
"DisplayRotation": {
|
||||||
},
|
"displayText": "畫面方向",
|
||||||
"AdvancedSoldering": {
|
"description": "右=使用右手 | 左=使用左手 | 自=自動"
|
||||||
"text2": "詳細焊接畫面",
|
},
|
||||||
"desc": "喺焊接模式畫面以英文細字顯示詳細嘅資料"
|
"CooldownBlink": {
|
||||||
},
|
"displayText": "降温時閃爍",
|
||||||
"PowerLimit": {
|
"description": "停止加熱之後,當焫雞咀仲係熱嗰陣閃爍畫面"
|
||||||
"text2": "功率限制",
|
},
|
||||||
"desc": "限制焫雞可用嘅最大功率 <W=watt(火)>"
|
"ScrollingSpeed": {
|
||||||
},
|
"displayText": "捲動速度",
|
||||||
"CalibrateCJC": {
|
"description": "解說文字嘅捲動速度"
|
||||||
"text2": "校正CJC",
|
},
|
||||||
"desc": "At next boot tip Cold Junction Compensation will be calibrated (not required if Delta T is < 5 C)"
|
"ReverseButtonTempChange": {
|
||||||
},
|
"displayText": "反轉加減掣",
|
||||||
"VoltageCalibration": {
|
"description": "反轉調校温度時加減掣嘅方向"
|
||||||
"text2": "輸入電壓校正?",
|
},
|
||||||
"desc": "開始校正VIN輸入電壓 <長撳以退出>"
|
"AnimSpeed": {
|
||||||
},
|
"displayText": "動畫速度",
|
||||||
"PowerPulsePower": {
|
"description": "功能表圖示動畫嘅速度 <關=不顯示動畫 | 慢=慢速 | 中=中速 | 快=快速>"
|
||||||
"text2": "電源脈衝",
|
},
|
||||||
"desc": "為保持電源喚醒而通電所用嘅功率 <watt(火)>"
|
"AnimLoop": {
|
||||||
},
|
"displayText": "動畫循環",
|
||||||
"PowerPulseWait": {
|
"description": "循環顯示功能表圖示動畫"
|
||||||
"text2": "電源脈衝間隔",
|
},
|
||||||
"desc": "為保持電源喚醒,每次通電之間嘅間隔時間 <x2.5s(秒)>"
|
"Brightness": {
|
||||||
},
|
"displayText": "熒幕亮度",
|
||||||
"PowerPulseDuration": {
|
"description": "設定OLED熒幕嘅亮度"
|
||||||
"text2": "電源脈衝時長",
|
},
|
||||||
"desc": "為保持電源喚醒,每次通電脈衝嘅時間長度 <x250ms(亳秒)>"
|
"ColourInversion": {
|
||||||
},
|
"displayText": "熒幕反轉色",
|
||||||
"SettingsReset": {
|
"description": "反轉OLED熒幕嘅黑白色"
|
||||||
"text2": "全部重設?",
|
},
|
||||||
"desc": "將所有設定重設到預設值"
|
"LOGOTime": {
|
||||||
},
|
"displayText": "開機畫面",
|
||||||
"LanguageSwitch": {
|
"description": "設定開機畫面顯示時長 <s=秒>"
|
||||||
"text2": "語言: 廣東話",
|
},
|
||||||
"desc": ""
|
"AdvancedIdle": {
|
||||||
}
|
"displayText": "詳細閒置畫面",
|
||||||
}
|
"description": "喺閒置畫面以英文細字顯示詳細嘅資料"
|
||||||
|
},
|
||||||
|
"AdvancedSoldering": {
|
||||||
|
"displayText": "詳細焊接畫面",
|
||||||
|
"description": "喺焊接模式畫面以英文細字顯示詳細嘅資料"
|
||||||
|
},
|
||||||
|
"PowerLimit": {
|
||||||
|
"displayText": "功率限制",
|
||||||
|
"description": "限制焫雞可用嘅最大功率 <W=watt(火)>"
|
||||||
|
},
|
||||||
|
"CalibrateCJC": {
|
||||||
|
"displayText": "校正CJC",
|
||||||
|
"description": "At next boot tip Cold Junction Compensation will be calibrated (not required if Delta T is < 5 C)"
|
||||||
|
},
|
||||||
|
"VoltageCalibration": {
|
||||||
|
"displayText": "輸入電壓校正?",
|
||||||
|
"description": "開始校正VIN輸入電壓 <長撳以退出>"
|
||||||
|
},
|
||||||
|
"PowerPulsePower": {
|
||||||
|
"displayText": "電源脈衝",
|
||||||
|
"description": "為保持電源喚醒而通電所用嘅功率 <watt(火)>"
|
||||||
|
},
|
||||||
|
"PowerPulseWait": {
|
||||||
|
"displayText": "電源脈衝間隔",
|
||||||
|
"description": "為保持電源喚醒,每次通電之間嘅間隔時間 <x2.5s(秒)>"
|
||||||
|
},
|
||||||
|
"PowerPulseDuration": {
|
||||||
|
"displayText": "電源脈衝時長",
|
||||||
|
"description": "為保持電源喚醒,每次通電脈衝嘅時間長度 <x250ms(亳秒)>"
|
||||||
|
},
|
||||||
|
"SettingsReset": {
|
||||||
|
"displayText": "全部重設?",
|
||||||
|
"description": "將所有設定重設到預設值"
|
||||||
|
},
|
||||||
|
"LanguageSwitch": {
|
||||||
|
"displayText": "語言: 廣東話",
|
||||||
|
"description": ""
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@@ -1,205 +1,243 @@
|
|||||||
{
|
{
|
||||||
"languageCode": "ZH_CN",
|
"languageCode": "ZH_CN",
|
||||||
"languageLocalName": "简体中文",
|
"languageLocalName": "简体中文",
|
||||||
"tempUnitFahrenheit": true,
|
"tempUnitFahrenheit": true,
|
||||||
"messages": {
|
"messagesWarn": {
|
||||||
"SettingsCalibrationWarning": "Before rebooting, make sure tip & handle are at room temperature!",
|
"CJCCalibrationDone": {
|
||||||
"CJCCalibrating": "calibrating",
|
"message": "Calibration done!"
|
||||||
"SettingsResetWarning": "你是否确定要将全部设定重置为默认值?",
|
},
|
||||||
"UVLOWarningString": "电压过低",
|
"ResetOKMessage": {
|
||||||
"UndervoltageString": "Undervoltage",
|
"message": "已重置!"
|
||||||
"InputVoltageString": "VIN: ",
|
},
|
||||||
"SleepingSimpleString": "Zzzz",
|
"SettingsResetMessage": {
|
||||||
"SleepingAdvancedString": "Zzzz...",
|
"message": "设定已被重置!"
|
||||||
"SleepingTipAdvancedString": "--->",
|
},
|
||||||
"OffString": "关",
|
"NoAccelerometerMessage": {
|
||||||
"DeviceFailedValidationWarning": "这支电烙铁很有可能是冒牌货!"
|
"message": "未检测到加速度计"
|
||||||
},
|
},
|
||||||
"messagesWarn": {
|
"NoPowerDeliveryMessage": {
|
||||||
"CJCCalibrationDone": "Calibration done!",
|
"message": "未检测到PD电路"
|
||||||
"ResetOKMessage": "已重置!",
|
},
|
||||||
"SettingsResetMessage": "设定已被重置!",
|
"LockingKeysString": {
|
||||||
"NoAccelerometerMessage": "未检测到加速度计",
|
"message": "已锁定"
|
||||||
"NoPowerDeliveryMessage": "未检测到PD电路",
|
},
|
||||||
"LockingKeysString": "已锁定",
|
"UnlockingKeysString": {
|
||||||
"UnlockingKeysString": "已解锁",
|
"message": "已解锁"
|
||||||
"WarningKeysLockedString": "!按键锁定!",
|
},
|
||||||
"WarningThermalRunaway": "加热失控"
|
"WarningKeysLockedString": {
|
||||||
},
|
"message": "!按键锁定!"
|
||||||
"characters": {
|
},
|
||||||
"SettingRightChar": "右",
|
"WarningThermalRunaway": {
|
||||||
"SettingLeftChar": "左",
|
"message": "加热失控"
|
||||||
"SettingAutoChar": "自",
|
},
|
||||||
"SettingOffChar": "关",
|
"SettingsCalibrationWarning": {
|
||||||
"SettingSlowChar": "慢",
|
"message": "Before rebooting, make sure tip & handle are at room temperature!"
|
||||||
"SettingMediumChar": "中",
|
},
|
||||||
"SettingFastChar": "快",
|
"CJCCalibrating": {
|
||||||
"SettingStartNoneChar": "无",
|
"message": "calibrating"
|
||||||
"SettingStartSolderingChar": "焊",
|
},
|
||||||
"SettingStartSleepChar": "待",
|
"SettingsResetWarning": {
|
||||||
"SettingStartSleepOffChar": "室",
|
"message": "你是否确定要将全部设定重置为默认值?"
|
||||||
"SettingLockDisableChar": "无",
|
},
|
||||||
"SettingLockBoostChar": "增",
|
"UVLOWarningString": {
|
||||||
"SettingLockFullChar": "全"
|
"message": "电压过低"
|
||||||
},
|
},
|
||||||
"menuGroups": {
|
"UndervoltageString": {
|
||||||
"PowerMenu": {
|
"message": "Undervoltage"
|
||||||
"text2": "电源设置",
|
},
|
||||||
"desc": ""
|
"InputVoltageString": {
|
||||||
},
|
"message": "VIN: "
|
||||||
"SolderingMenu": {
|
},
|
||||||
"text2": "焊接设置",
|
"SleepingSimpleString": {
|
||||||
"desc": ""
|
"message": "Zzzz"
|
||||||
},
|
},
|
||||||
"PowerSavingMenu": {
|
"SleepingAdvancedString": {
|
||||||
"text2": "待机设置",
|
"message": "Zzzz..."
|
||||||
"desc": ""
|
},
|
||||||
},
|
"SleepingTipAdvancedString": {
|
||||||
"UIMenu": {
|
"message": "--->"
|
||||||
"text2": "用户界面",
|
},
|
||||||
"desc": ""
|
"OffString": {
|
||||||
},
|
"message": "关"
|
||||||
"AdvancedMenu": {
|
},
|
||||||
"text2": "高级设置",
|
"DeviceFailedValidationWarning": {
|
||||||
"desc": ""
|
"message": "这支电烙铁很有可能是冒牌货!"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"menuOptions": {
|
"characters": {
|
||||||
"DCInCutoff": {
|
"SettingRightChar": "右",
|
||||||
"text2": "下限电压",
|
"SettingLeftChar": "左",
|
||||||
"desc": "设置自动停机电压 <DC=10V | S=(串)每节锂电池3.3V;此设置会禁用功率限制>"
|
"SettingAutoChar": "自",
|
||||||
},
|
"SettingOffChar": "关",
|
||||||
"MinVolCell": {
|
"SettingSlowChar": "慢",
|
||||||
"text2": "最低电压",
|
"SettingMediumChar": "中",
|
||||||
"desc": "每节电池的最低允许电压 <V(伏特)> <3S: 3.0V - 3.7V, 4/5/6S: 2.4V - 3.7V>"
|
"SettingFastChar": "快",
|
||||||
},
|
"SettingStartNoneChar": "无",
|
||||||
"QCMaxVoltage": {
|
"SettingStartSolderingChar": "焊",
|
||||||
"text2": "QC电压",
|
"SettingStartSleepChar": "待",
|
||||||
"desc": "使用QC电源时请求的最高目标电压"
|
"SettingStartSleepOffChar": "室",
|
||||||
},
|
"SettingLockDisableChar": "无",
|
||||||
"PDNegTimeout": {
|
"SettingLockBoostChar": "增",
|
||||||
"text2": "PD超时",
|
"SettingLockFullChar": "全"
|
||||||
"desc": "设定USB-PD协议交涉的超时时限;为兼容某些QC电源而设 <x100ms(亳秒)>"
|
},
|
||||||
},
|
"menuGroups": {
|
||||||
"BoostTemperature": {
|
"PowerMenu": {
|
||||||
"text2": "增热温度",
|
"displayText": "电源设置",
|
||||||
"desc": "增热模式时使用的温度"
|
"description": ""
|
||||||
},
|
},
|
||||||
"AutoStart": {
|
"SolderingMenu": {
|
||||||
"text2": "自动启动",
|
"displayText": "焊接设置",
|
||||||
"desc": "开机时自动启动 <无=禁用 | 焊=焊接模式 | 待=待机模式 | 室=室温待机>"
|
"description": ""
|
||||||
},
|
},
|
||||||
"TempChangeShortStep": {
|
"PowerSavingMenu": {
|
||||||
"text2": "短按温度调整",
|
"displayText": "待机设置",
|
||||||
"desc": "调校温度时短按按键的温度变幅"
|
"description": ""
|
||||||
},
|
},
|
||||||
"TempChangeLongStep": {
|
"UIMenu": {
|
||||||
"text2": "长按温度调整",
|
"displayText": "用户界面",
|
||||||
"desc": "调校温度时长按按键的温度变幅"
|
"description": ""
|
||||||
},
|
},
|
||||||
"LockingMode": {
|
"AdvancedMenu": {
|
||||||
"text2": "按键锁定",
|
"displayText": "高级设置",
|
||||||
"desc": "焊接模式时,同时长按两个按键启用按键锁定 <无=禁用 | 增=只容许增热模式 | 全=完全锁定>"
|
"description": ""
|
||||||
},
|
}
|
||||||
"MotionSensitivity": {
|
},
|
||||||
"text2": "动作灵敏度",
|
"menuOptions": {
|
||||||
"desc": "0=禁用 | 1=最低灵敏度 | ... | 9=最高灵敏度"
|
"DCInCutoff": {
|
||||||
},
|
"displayText": "下限电压",
|
||||||
"SleepTemperature": {
|
"description": "设置自动停机电压 <DC=10V | S=(串)每节锂电池3.3V;此设置会禁用功率限制>"
|
||||||
"text2": "待机温度",
|
},
|
||||||
"desc": "待机模式时的烙铁头温度"
|
"MinVolCell": {
|
||||||
},
|
"displayText": "最低电压",
|
||||||
"SleepTimeout": {
|
"description": "每节电池的最低允许电压 <V(伏特)> <3S: 3.0V - 3.7V, 4/5/6S: 2.4V - 3.7V>"
|
||||||
"text2": "待机超时",
|
},
|
||||||
"desc": "自动进入待机模式前的等候时间 <s=秒 | m=分钟>"
|
"QCMaxVoltage": {
|
||||||
},
|
"displayText": "QC电压",
|
||||||
"ShutdownTimeout": {
|
"description": "使用QC电源时请求的最高目标电压"
|
||||||
"text2": "自动关机",
|
},
|
||||||
"desc": "自动关机前的等候时间 <m=分钟>"
|
"PDNegTimeout": {
|
||||||
},
|
"displayText": "PD超时",
|
||||||
"HallEffSensitivity": {
|
"description": "设定USB-PD协议交涉的超时时限;为兼容某些QC电源而设 <x100ms(亳秒)>"
|
||||||
"text2": "磁场灵敏度",
|
},
|
||||||
"desc": "霍尔效应传感器用作启动待机模式的灵敏度 <0=禁用 | 1=最低灵敏度 | ... | 9=最高灵敏度>"
|
"BoostTemperature": {
|
||||||
},
|
"displayText": "增热温度",
|
||||||
"TemperatureUnit": {
|
"description": "增热模式时使用的温度"
|
||||||
"text2": "温度单位",
|
},
|
||||||
"desc": "C=摄氏 | F=华氏"
|
"AutoStart": {
|
||||||
},
|
"displayText": "自动启动",
|
||||||
"DisplayRotation": {
|
"description": "开机时自动启动 <无=禁用 | 焊=焊接模式 | 待=待机模式 | 室=室温待机>"
|
||||||
"text2": "显示方向",
|
},
|
||||||
"desc": "右=右手 | 左=左手 | 自=自动"
|
"TempChangeShortStep": {
|
||||||
},
|
"displayText": "短按温度调整",
|
||||||
"CooldownBlink": {
|
"description": "调校温度时短按按键的温度变幅"
|
||||||
"text2": "降温时闪显",
|
},
|
||||||
"desc": "停止加热之后,闪动温度显示提醒烙铁头仍处于高温状态"
|
"TempChangeLongStep": {
|
||||||
},
|
"displayText": "长按温度调整",
|
||||||
"ScrollingSpeed": {
|
"description": "调校温度时长按按键的温度变幅"
|
||||||
"text2": "滚动速度",
|
},
|
||||||
"desc": "解说文字的滚动速度"
|
"LockingMode": {
|
||||||
},
|
"displayText": "按键锁定",
|
||||||
"ReverseButtonTempChange": {
|
"description": "焊接模式时,同时长按两个按键启用按键锁定 <无=禁用 | 增=只容许增热模式 | 全=完全锁定>"
|
||||||
"text2": "调换加减键",
|
},
|
||||||
"desc": "调校温度时更换加减键的方向"
|
"MotionSensitivity": {
|
||||||
},
|
"displayText": "动作灵敏度",
|
||||||
"AnimSpeed": {
|
"description": "0=禁用 | 1=最低灵敏度 | ... | 9=最高灵敏度"
|
||||||
"text2": "动画速度",
|
},
|
||||||
"desc": "主菜单中功能图标动画的播放速度 <关=不显示动画 | 慢=慢速 | 中=中速 | 快=快速>"
|
"SleepTemperature": {
|
||||||
},
|
"displayText": "待机温度",
|
||||||
"AnimLoop": {
|
"description": "待机模式时的烙铁头温度"
|
||||||
"text2": "动画循环",
|
},
|
||||||
"desc": "主菜单中循环播放功能图标动画"
|
"SleepTimeout": {
|
||||||
},
|
"displayText": "待机超时",
|
||||||
"Brightness": {
|
"description": "自动进入待机模式前的等候时间 <s=秒 | m=分钟>"
|
||||||
"text2": "屏幕亮度",
|
},
|
||||||
"desc": "调整OLED屏幕的亮度"
|
"ShutdownTimeout": {
|
||||||
},
|
"displayText": "自动关机",
|
||||||
"ColourInversion": {
|
"description": "自动关机前的等候时间 <m=分钟>"
|
||||||
"text2": "反转屏幕颜色",
|
},
|
||||||
"desc": "反转OLED黑/白屏幕"
|
"HallEffSensitivity": {
|
||||||
},
|
"displayText": "磁场灵敏度",
|
||||||
"LOGOTime": {
|
"description": "霍尔效应传感器用作启动待机模式的灵敏度 <0=禁用 | 1=最低灵敏度 | ... | 9=最高灵敏度>"
|
||||||
"text2": "开机画面",
|
},
|
||||||
"desc": "设定开机画面显示时长 <s=秒>"
|
"TemperatureUnit": {
|
||||||
},
|
"displayText": "温度单位",
|
||||||
"AdvancedIdle": {
|
"description": "C=摄氏 | F=华氏"
|
||||||
"text2": "闲置画面详情",
|
},
|
||||||
"desc": "闲置画面以英语小字体显示详情"
|
"DisplayRotation": {
|
||||||
},
|
"displayText": "显示方向",
|
||||||
"AdvancedSoldering": {
|
"description": "右=右手 | 左=左手 | 自=自动"
|
||||||
"text2": "焊接画面详情",
|
},
|
||||||
"desc": "焊接模式画面以英语小字体显示详请"
|
"CooldownBlink": {
|
||||||
},
|
"displayText": "降温时闪显",
|
||||||
"PowerLimit": {
|
"description": "停止加热之后,闪动温度显示提醒烙铁头仍处于高温状态"
|
||||||
"text2": "功率限制",
|
},
|
||||||
"desc": "限制烙铁可用的最大功率 <W=瓦特>"
|
"ScrollingSpeed": {
|
||||||
},
|
"displayText": "滚动速度",
|
||||||
"CalibrateCJC": {
|
"description": "解说文字的滚动速度"
|
||||||
"text2": "校正CJC",
|
},
|
||||||
"desc": "At next boot tip Cold Junction Compensation will be calibrated (not required if Delta T is < 5 C)"
|
"ReverseButtonTempChange": {
|
||||||
},
|
"displayText": "调换加减键",
|
||||||
"VoltageCalibration": {
|
"description": "调校温度时更换加减键的方向"
|
||||||
"text2": "输入电压校正?",
|
},
|
||||||
"desc": "开始校正输入电压(VIN)<长按以退出>"
|
"AnimSpeed": {
|
||||||
},
|
"displayText": "动画速度",
|
||||||
"PowerPulsePower": {
|
"description": "主菜单中功能图标动画的播放速度 <关=不显示动画 | 慢=慢速 | 中=中速 | 快=快速>"
|
||||||
"text2": "电源脉冲",
|
},
|
||||||
"desc": "为保持电源处于唤醒状态所用的功率 <Watt(瓦特)>"
|
"AnimLoop": {
|
||||||
},
|
"displayText": "动画循环",
|
||||||
"PowerPulseWait": {
|
"description": "主菜单中循环播放功能图标动画"
|
||||||
"text2": "电源脉冲间隔",
|
},
|
||||||
"desc": "为保持电源处于唤醒状态,每次通电之间的间隔时间 <x2.5s(秒)>"
|
"Brightness": {
|
||||||
},
|
"displayText": "屏幕亮度",
|
||||||
"PowerPulseDuration": {
|
"description": "调整OLED屏幕的亮度"
|
||||||
"text2": "电源脉冲时长",
|
},
|
||||||
"desc": "为保持电源处于唤醒状态,每次通电脉冲的时间长度 <x250ms(亳秒)>"
|
"ColourInversion": {
|
||||||
},
|
"displayText": "反转屏幕颜色",
|
||||||
"SettingsReset": {
|
"description": "反转OLED黑/白屏幕"
|
||||||
"text2": "全部重置?",
|
},
|
||||||
"desc": "将所有设定重置为默认值"
|
"LOGOTime": {
|
||||||
},
|
"displayText": "开机画面",
|
||||||
"LanguageSwitch": {
|
"description": "设定开机画面显示时长 <s=秒>"
|
||||||
"text2": "语言:简体中文",
|
},
|
||||||
"desc": ""
|
"AdvancedIdle": {
|
||||||
}
|
"displayText": "闲置画面详情",
|
||||||
}
|
"description": "闲置画面以英语小字体显示详情"
|
||||||
|
},
|
||||||
|
"AdvancedSoldering": {
|
||||||
|
"displayText": "焊接画面详情",
|
||||||
|
"description": "焊接模式画面以英语小字体显示详请"
|
||||||
|
},
|
||||||
|
"PowerLimit": {
|
||||||
|
"displayText": "功率限制",
|
||||||
|
"description": "限制烙铁可用的最大功率 <W=瓦特>"
|
||||||
|
},
|
||||||
|
"CalibrateCJC": {
|
||||||
|
"displayText": "校正CJC",
|
||||||
|
"description": "At next boot tip Cold Junction Compensation will be calibrated (not required if Delta T is < 5 C)"
|
||||||
|
},
|
||||||
|
"VoltageCalibration": {
|
||||||
|
"displayText": "输入电压校正?",
|
||||||
|
"description": "开始校正输入电压(VIN)<长按以退出>"
|
||||||
|
},
|
||||||
|
"PowerPulsePower": {
|
||||||
|
"displayText": "电源脉冲",
|
||||||
|
"description": "为保持电源处于唤醒状态所用的功率 <Watt(瓦特)>"
|
||||||
|
},
|
||||||
|
"PowerPulseWait": {
|
||||||
|
"displayText": "电源脉冲间隔",
|
||||||
|
"description": "为保持电源处于唤醒状态,每次通电之间的间隔时间 <x2.5s(秒)>"
|
||||||
|
},
|
||||||
|
"PowerPulseDuration": {
|
||||||
|
"displayText": "电源脉冲时长",
|
||||||
|
"description": "为保持电源处于唤醒状态,每次通电脉冲的时间长度 <x250ms(亳秒)>"
|
||||||
|
},
|
||||||
|
"SettingsReset": {
|
||||||
|
"displayText": "全部重置?",
|
||||||
|
"description": "将所有设定重置为默认值"
|
||||||
|
},
|
||||||
|
"LanguageSwitch": {
|
||||||
|
"displayText": "语言:简体中文",
|
||||||
|
"description": ""
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@@ -1,205 +1,243 @@
|
|||||||
{
|
{
|
||||||
"languageCode": "ZH_TW",
|
"languageCode": "ZH_TW",
|
||||||
"languageLocalName": "正體中文",
|
"languageLocalName": "正體中文",
|
||||||
"tempUnitFahrenheit": true,
|
"tempUnitFahrenheit": true,
|
||||||
"messages": {
|
"messagesWarn": {
|
||||||
"SettingsCalibrationWarning": "Before rebooting, make sure tip & handle are at room temperature!",
|
"CJCCalibrationDone": {
|
||||||
"CJCCalibrating": "calibrating",
|
"message": "Calibration done!"
|
||||||
"SettingsResetWarning": "你是否確定要將全部設定重設到預設值?",
|
},
|
||||||
"UVLOWarningString": "電壓過低",
|
"ResetOKMessage": {
|
||||||
"UndervoltageString": "Undervoltage",
|
"message": "已重設!"
|
||||||
"InputVoltageString": "Input V: ",
|
},
|
||||||
"SleepingSimpleString": "Zzzz",
|
"SettingsResetMessage": {
|
||||||
"SleepingAdvancedString": "Sleeping...",
|
"message": "設定已被重設!"
|
||||||
"SleepingTipAdvancedString": "Tip:",
|
},
|
||||||
"OffString": "關",
|
"NoAccelerometerMessage": {
|
||||||
"DeviceFailedValidationWarning": "這支電烙鐵很有可能是冒牌貨!"
|
"message": "未能偵測加速度計"
|
||||||
},
|
},
|
||||||
"messagesWarn": {
|
"NoPowerDeliveryMessage": {
|
||||||
"CJCCalibrationDone": "Calibration done!",
|
"message": "未能偵測PD晶片"
|
||||||
"ResetOKMessage": "已重設!",
|
},
|
||||||
"SettingsResetMessage": "設定已被重設!",
|
"LockingKeysString": {
|
||||||
"NoAccelerometerMessage": "未能偵測加速度計",
|
"message": "已鎖定"
|
||||||
"NoPowerDeliveryMessage": "未能偵測PD晶片",
|
},
|
||||||
"LockingKeysString": "已鎖定",
|
"UnlockingKeysString": {
|
||||||
"UnlockingKeysString": "已解除鎖定",
|
"message": "已解除鎖定"
|
||||||
"WarningKeysLockedString": "!按鍵鎖定!",
|
},
|
||||||
"WarningThermalRunaway": "加熱失控"
|
"WarningKeysLockedString": {
|
||||||
},
|
"message": "!按鍵鎖定!"
|
||||||
"characters": {
|
},
|
||||||
"SettingRightChar": "右",
|
"WarningThermalRunaway": {
|
||||||
"SettingLeftChar": "左",
|
"message": "加熱失控"
|
||||||
"SettingAutoChar": "自",
|
},
|
||||||
"SettingOffChar": "關",
|
"SettingsCalibrationWarning": {
|
||||||
"SettingSlowChar": "慢",
|
"message": "Before rebooting, make sure tip & handle are at room temperature!"
|
||||||
"SettingMediumChar": "中",
|
},
|
||||||
"SettingFastChar": "快",
|
"CJCCalibrating": {
|
||||||
"SettingStartNoneChar": "無",
|
"message": "calibrating"
|
||||||
"SettingStartSolderingChar": "焊",
|
},
|
||||||
"SettingStartSleepChar": "待",
|
"SettingsResetWarning": {
|
||||||
"SettingStartSleepOffChar": "室",
|
"message": "你是否確定要將全部設定重設到預設值?"
|
||||||
"SettingLockDisableChar": "無",
|
},
|
||||||
"SettingLockBoostChar": "增",
|
"UVLOWarningString": {
|
||||||
"SettingLockFullChar": "全"
|
"message": "電壓過低"
|
||||||
},
|
},
|
||||||
"menuGroups": {
|
"UndervoltageString": {
|
||||||
"PowerMenu": {
|
"message": "Undervoltage"
|
||||||
"text2": "電源設定",
|
},
|
||||||
"desc": ""
|
"InputVoltageString": {
|
||||||
},
|
"message": "Input V: "
|
||||||
"SolderingMenu": {
|
},
|
||||||
"text2": "焊接設定",
|
"SleepingSimpleString": {
|
||||||
"desc": ""
|
"message": "Zzzz"
|
||||||
},
|
},
|
||||||
"PowerSavingMenu": {
|
"SleepingAdvancedString": {
|
||||||
"text2": "待機設定",
|
"message": "Sleeping..."
|
||||||
"desc": ""
|
},
|
||||||
},
|
"SleepingTipAdvancedString": {
|
||||||
"UIMenu": {
|
"message": "Tip:"
|
||||||
"text2": "使用者介面",
|
},
|
||||||
"desc": ""
|
"OffString": {
|
||||||
},
|
"message": "關"
|
||||||
"AdvancedMenu": {
|
},
|
||||||
"text2": "進階設定",
|
"DeviceFailedValidationWarning": {
|
||||||
"desc": ""
|
"message": "這支電烙鐵很有可能是冒牌貨!"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"menuOptions": {
|
"characters": {
|
||||||
"DCInCutoff": {
|
"SettingRightChar": "右",
|
||||||
"text2": "電源",
|
"SettingLeftChar": "左",
|
||||||
"desc": "輸入電源;設定自動停機電壓 <DC 10V> <S 鋰電池,以每顆3.3V計算;此設定會停用功率限制>"
|
"SettingAutoChar": "自",
|
||||||
},
|
"SettingOffChar": "關",
|
||||||
"MinVolCell": {
|
"SettingSlowChar": "慢",
|
||||||
"text2": "最低電壓",
|
"SettingMediumChar": "中",
|
||||||
"desc": "每顆電池的最低可用電壓 <伏特> <3S: 3.0V - 3.7V, 4/5/6S: 2.4V - 3.7V>"
|
"SettingFastChar": "快",
|
||||||
},
|
"SettingStartNoneChar": "無",
|
||||||
"QCMaxVoltage": {
|
"SettingStartSolderingChar": "焊",
|
||||||
"text2": "QC電壓",
|
"SettingStartSleepChar": "待",
|
||||||
"desc": "使用QC電源時請求的最高目標電壓"
|
"SettingStartSleepOffChar": "室",
|
||||||
},
|
"SettingLockDisableChar": "無",
|
||||||
"PDNegTimeout": {
|
"SettingLockBoostChar": "增",
|
||||||
"text2": "PD逾時",
|
"SettingLockFullChar": "全"
|
||||||
"desc": "設定USB PD協定交涉的逾時時限;為兼容某些QC電源而設 <x100ms(亳秒)>"
|
},
|
||||||
},
|
"menuGroups": {
|
||||||
"BoostTemperature": {
|
"PowerMenu": {
|
||||||
"text2": "增熱溫度",
|
"displayText": "電源設定",
|
||||||
"desc": "於增熱模式時使用的溫度"
|
"description": ""
|
||||||
},
|
},
|
||||||
"AutoStart": {
|
"SolderingMenu": {
|
||||||
"text2": "自動啟用",
|
"displayText": "焊接設定",
|
||||||
"desc": "開機時自動啟用 <無=停用 | 焊=焊接模式 | 待=待機模式 | 室=室溫待機>"
|
"description": ""
|
||||||
},
|
},
|
||||||
"TempChangeShortStep": {
|
"PowerSavingMenu": {
|
||||||
"text2": "溫度調整 短",
|
"displayText": "待機設定",
|
||||||
"desc": "調校溫度時短按一下的溫度變幅"
|
"description": ""
|
||||||
},
|
},
|
||||||
"TempChangeLongStep": {
|
"UIMenu": {
|
||||||
"text2": "溫度調整 長",
|
"displayText": "使用者介面",
|
||||||
"desc": "調校溫度時長按按鍵的溫度變幅"
|
"description": ""
|
||||||
},
|
},
|
||||||
"LockingMode": {
|
"AdvancedMenu": {
|
||||||
"text2": "按鍵鎖定",
|
"displayText": "進階設定",
|
||||||
"desc": "於焊接模式時,同時長按兩個按鍵啟用按鍵鎖定 <無=停用 | 增=只容許增熱模式 | 全=鎖定全部>"
|
"description": ""
|
||||||
},
|
}
|
||||||
"MotionSensitivity": {
|
},
|
||||||
"text2": "動作敏感度",
|
"menuOptions": {
|
||||||
"desc": "0=停用 | 1=最低敏感度 | ... | 9=最高敏感度"
|
"DCInCutoff": {
|
||||||
},
|
"displayText": "電源",
|
||||||
"SleepTemperature": {
|
"description": "輸入電源;設定自動停機電壓 <DC 10V> <S 鋰電池,以每顆3.3V計算;此設定會停用功率限制>"
|
||||||
"text2": "待機溫度",
|
},
|
||||||
"desc": "於待機模式時的烙鐵頭溫度"
|
"MinVolCell": {
|
||||||
},
|
"displayText": "最低電壓",
|
||||||
"SleepTimeout": {
|
"description": "每顆電池的最低可用電壓 <伏特> <3S: 3.0V - 3.7V, 4/5/6S: 2.4V - 3.7V>"
|
||||||
"text2": "待機延時",
|
},
|
||||||
"desc": "自動進入待機模式前的閒置等候時間 <s=秒 | m=分鐘>"
|
"QCMaxVoltage": {
|
||||||
},
|
"displayText": "QC電壓",
|
||||||
"ShutdownTimeout": {
|
"description": "使用QC電源時請求的最高目標電壓"
|
||||||
"text2": "自動關機",
|
},
|
||||||
"desc": "自動關機前的閒置等候時間 <m=分鐘>"
|
"PDNegTimeout": {
|
||||||
},
|
"displayText": "PD逾時",
|
||||||
"HallEffSensitivity": {
|
"description": "設定USB PD協定交涉的逾時時限;為兼容某些QC電源而設 <x100ms(亳秒)>"
|
||||||
"text2": "磁場敏感度",
|
},
|
||||||
"desc": "磁場感應器用作啟動待機模式的敏感度 <0=停用 | 1=最低敏感度 | ... | 9=最高敏感度>"
|
"BoostTemperature": {
|
||||||
},
|
"displayText": "增熱溫度",
|
||||||
"TemperatureUnit": {
|
"description": "於增熱模式時使用的溫度"
|
||||||
"text2": "溫標",
|
},
|
||||||
"desc": "C=攝氏 | F=華氏"
|
"AutoStart": {
|
||||||
},
|
"displayText": "自動啟用",
|
||||||
"DisplayRotation": {
|
"description": "開機時自動啟用 <無=停用 | 焊=焊接模式 | 待=待機模式 | 室=室溫待機>"
|
||||||
"text2": "畫面方向",
|
},
|
||||||
"desc": "右=使用右手 | 左=使用左手 | 自=自動"
|
"TempChangeShortStep": {
|
||||||
},
|
"displayText": "溫度調整 短",
|
||||||
"CooldownBlink": {
|
"description": "調校溫度時短按一下的溫度變幅"
|
||||||
"text2": "降溫時閃爍",
|
},
|
||||||
"desc": "停止加熱之後,當烙鐵頭仍處於高溫時閃爍畫面"
|
"TempChangeLongStep": {
|
||||||
},
|
"displayText": "溫度調整 長",
|
||||||
"ScrollingSpeed": {
|
"description": "調校溫度時長按按鍵的溫度變幅"
|
||||||
"text2": "捲動速度",
|
},
|
||||||
"desc": "解說文字的捲動速度"
|
"LockingMode": {
|
||||||
},
|
"displayText": "按鍵鎖定",
|
||||||
"ReverseButtonTempChange": {
|
"description": "於焊接模式時,同時長按兩個按鍵啟用按鍵鎖定 <無=停用 | 增=只容許增熱模式 | 全=鎖定全部>"
|
||||||
"text2": "調換加減鍵",
|
},
|
||||||
"desc": "調校溫度時調換加減鍵的方向"
|
"MotionSensitivity": {
|
||||||
},
|
"displayText": "動作敏感度",
|
||||||
"AnimSpeed": {
|
"description": "0=停用 | 1=最低敏感度 | ... | 9=最高敏感度"
|
||||||
"text2": "動畫速度",
|
},
|
||||||
"desc": "功能表圖示動畫的速度 <關=不顯示動畫 | 慢=慢速 | 中=中速 | 快=快速>"
|
"SleepTemperature": {
|
||||||
},
|
"displayText": "待機溫度",
|
||||||
"AnimLoop": {
|
"description": "於待機模式時的烙鐵頭溫度"
|
||||||
"text2": "動畫循環",
|
},
|
||||||
"desc": "循環顯示功能表圖示動畫"
|
"SleepTimeout": {
|
||||||
},
|
"displayText": "待機延時",
|
||||||
"Brightness": {
|
"description": "自動進入待機模式前的閒置等候時間 <s=秒 | m=分鐘>"
|
||||||
"text2": "螢幕亮度",
|
},
|
||||||
"desc": "設定OLED螢幕的亮度"
|
"ShutdownTimeout": {
|
||||||
},
|
"displayText": "自動關機",
|
||||||
"ColourInversion": {
|
"description": "自動關機前的閒置等候時間 <m=分鐘>"
|
||||||
"text2": "螢幕反轉色",
|
},
|
||||||
"desc": "反轉OLED螢幕的黑白色彩"
|
"HallEffSensitivity": {
|
||||||
},
|
"displayText": "磁場敏感度",
|
||||||
"LOGOTime": {
|
"description": "磁場感應器用作啟動待機模式的敏感度 <0=停用 | 1=最低敏感度 | ... | 9=最高敏感度>"
|
||||||
"text2": "開機畫面",
|
},
|
||||||
"desc": "設定開機畫面顯示時長 <s=秒>"
|
"TemperatureUnit": {
|
||||||
},
|
"displayText": "溫標",
|
||||||
"AdvancedIdle": {
|
"description": "C=攝氏 | F=華氏"
|
||||||
"text2": "詳細閒置畫面",
|
},
|
||||||
"desc": "於閒置畫面以英文小字型顯示詳細資料"
|
"DisplayRotation": {
|
||||||
},
|
"displayText": "畫面方向",
|
||||||
"AdvancedSoldering": {
|
"description": "右=使用右手 | 左=使用左手 | 自=自動"
|
||||||
"text2": "詳細焊接畫面",
|
},
|
||||||
"desc": "於焊接模式畫面以英文小字型顯示詳細資料"
|
"CooldownBlink": {
|
||||||
},
|
"displayText": "降溫時閃爍",
|
||||||
"PowerLimit": {
|
"description": "停止加熱之後,當烙鐵頭仍處於高溫時閃爍畫面"
|
||||||
"text2": "功率限制",
|
},
|
||||||
"desc": "限制烙鐵可用的最大功率 <W=watt(瓦特)>"
|
"ScrollingSpeed": {
|
||||||
},
|
"displayText": "捲動速度",
|
||||||
"CalibrateCJC": {
|
"description": "解說文字的捲動速度"
|
||||||
"text2": "校正CJC",
|
},
|
||||||
"desc": "At next boot tip Cold Junction Compensation will be calibrated (not required if Delta T is < 5 C)"
|
"ReverseButtonTempChange": {
|
||||||
},
|
"displayText": "調換加減鍵",
|
||||||
"VoltageCalibration": {
|
"description": "調校溫度時調換加減鍵的方向"
|
||||||
"text2": "輸入電壓校正?",
|
},
|
||||||
"desc": "開始校正VIN輸入電壓 <長按以退出>"
|
"AnimSpeed": {
|
||||||
},
|
"displayText": "動畫速度",
|
||||||
"PowerPulsePower": {
|
"description": "功能表圖示動畫的速度 <關=不顯示動畫 | 慢=慢速 | 中=中速 | 快=快速>"
|
||||||
"text2": "電源脈衝",
|
},
|
||||||
"desc": "為保持電源喚醒而通電所用的功率 <watt(瓦特)>"
|
"AnimLoop": {
|
||||||
},
|
"displayText": "動畫循環",
|
||||||
"PowerPulseWait": {
|
"description": "循環顯示功能表圖示動畫"
|
||||||
"text2": "電源脈衝間隔",
|
},
|
||||||
"desc": "為保持電源喚醒,每次通電之間的間隔時間 <x2.5s(秒)>"
|
"Brightness": {
|
||||||
},
|
"displayText": "螢幕亮度",
|
||||||
"PowerPulseDuration": {
|
"description": "設定OLED螢幕的亮度"
|
||||||
"text2": "電源脈衝時長",
|
},
|
||||||
"desc": "為保持電源喚醒,每次通電脈衝的時間長度 <x250ms(亳秒)>"
|
"ColourInversion": {
|
||||||
},
|
"displayText": "螢幕反轉色",
|
||||||
"SettingsReset": {
|
"description": "反轉OLED螢幕的黑白色彩"
|
||||||
"text2": "全部重設?",
|
},
|
||||||
"desc": "將所有設定重設到預設值"
|
"LOGOTime": {
|
||||||
},
|
"displayText": "開機畫面",
|
||||||
"LanguageSwitch": {
|
"description": "設定開機畫面顯示時長 <s=秒>"
|
||||||
"text2": "語言:正體中文",
|
},
|
||||||
"desc": ""
|
"AdvancedIdle": {
|
||||||
}
|
"displayText": "詳細閒置畫面",
|
||||||
}
|
"description": "於閒置畫面以英文小字型顯示詳細資料"
|
||||||
|
},
|
||||||
|
"AdvancedSoldering": {
|
||||||
|
"displayText": "詳細焊接畫面",
|
||||||
|
"description": "於焊接模式畫面以英文小字型顯示詳細資料"
|
||||||
|
},
|
||||||
|
"PowerLimit": {
|
||||||
|
"displayText": "功率限制",
|
||||||
|
"description": "限制烙鐵可用的最大功率 <W=watt(瓦特)>"
|
||||||
|
},
|
||||||
|
"CalibrateCJC": {
|
||||||
|
"displayText": "校正CJC",
|
||||||
|
"description": "At next boot tip Cold Junction Compensation will be calibrated (not required if Delta T is < 5 C)"
|
||||||
|
},
|
||||||
|
"VoltageCalibration": {
|
||||||
|
"displayText": "輸入電壓校正?",
|
||||||
|
"description": "開始校正VIN輸入電壓 <長按以退出>"
|
||||||
|
},
|
||||||
|
"PowerPulsePower": {
|
||||||
|
"displayText": "電源脈衝",
|
||||||
|
"description": "為保持電源喚醒而通電所用的功率 <watt(瓦特)>"
|
||||||
|
},
|
||||||
|
"PowerPulseWait": {
|
||||||
|
"displayText": "電源脈衝間隔",
|
||||||
|
"description": "為保持電源喚醒,每次通電之間的間隔時間 <x2.5s(秒)>"
|
||||||
|
},
|
||||||
|
"PowerPulseDuration": {
|
||||||
|
"displayText": "電源脈衝時長",
|
||||||
|
"description": "為保持電源喚醒,每次通電脈衝的時間長度 <x250ms(亳秒)>"
|
||||||
|
},
|
||||||
|
"SettingsReset": {
|
||||||
|
"displayText": "全部重設?",
|
||||||
|
"description": "將所有設定重設到預設值"
|
||||||
|
},
|
||||||
|
"LanguageSwitch": {
|
||||||
|
"displayText": "語言:正體中文",
|
||||||
|
"description": ""
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@@ -1,110 +0,0 @@
|
|||||||
* {
|
|
||||||
font-family: sans-serif;
|
|
||||||
}
|
|
||||||
|
|
||||||
h1 {
|
|
||||||
color: #66A;
|
|
||||||
}
|
|
||||||
|
|
||||||
h1 span {
|
|
||||||
color: #000;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.data, div.data {
|
|
||||||
border: 1px solid #888;
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.value {
|
|
||||||
margin: 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.header input {
|
|
||||||
width: 50% !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
input.short {
|
|
||||||
width: 150px !important;
|
|
||||||
font-family: monospace;
|
|
||||||
}
|
|
||||||
|
|
||||||
.header .selected {
|
|
||||||
display: block;
|
|
||||||
font-family: monospace;
|
|
||||||
}
|
|
||||||
|
|
||||||
.stringId {
|
|
||||||
font-family: monospace;
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
|
|
||||||
.label {
|
|
||||||
background-color: #ddf;
|
|
||||||
padding: 0.5em;
|
|
||||||
width: 20%;
|
|
||||||
color: #66A;
|
|
||||||
}
|
|
||||||
|
|
||||||
.value {
|
|
||||||
background-color: #eef;
|
|
||||||
}
|
|
||||||
|
|
||||||
.value .label {
|
|
||||||
width: 99%;
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
|
|
||||||
td input {
|
|
||||||
width: 99%;
|
|
||||||
}
|
|
||||||
|
|
||||||
input.unchanged, input.empty, .unchanged input, .empty input {
|
|
||||||
background-color: #ffc;
|
|
||||||
}
|
|
||||||
|
|
||||||
input.invalid, .invalid input {
|
|
||||||
background-color: #f99;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ref, .tran input {
|
|
||||||
font-family: monospace;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ref::before, .ref::after {
|
|
||||||
color: #99F;
|
|
||||||
font-family: sans-serif;
|
|
||||||
content: "\"";
|
|
||||||
}
|
|
||||||
|
|
||||||
.note {
|
|
||||||
color : #66A;
|
|
||||||
font-style: italic;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.constraint {
|
|
||||||
float: right;
|
|
||||||
display: inline-block;
|
|
||||||
font-family: monospace;
|
|
||||||
color: #66A;
|
|
||||||
}
|
|
||||||
|
|
||||||
.invalid .constraint {
|
|
||||||
color: #f00;
|
|
||||||
}
|
|
||||||
|
|
||||||
.value {
|
|
||||||
font-size: smaller;
|
|
||||||
}
|
|
||||||
|
|
||||||
.hidden {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footer {
|
|
||||||
margin-top: 0.5em;
|
|
||||||
margin-bottom: 0.5em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.saved {
|
|
||||||
background-color: #ddd;
|
|
||||||
}
|
|
||||||
@@ -1,68 +0,0 @@
|
|||||||
function saveToFile(txt, filename){
|
|
||||||
var a = document.createElement('a');
|
|
||||||
a.setAttribute("style", "display: none");
|
|
||||||
document.body.appendChild(a);
|
|
||||||
a.setAttribute('href', 'data:application/json;charset=utf-8,'+encodeURIComponent(txt));
|
|
||||||
a.setAttribute('download', filename);
|
|
||||||
a.click();
|
|
||||||
document.body.removeChild(a);
|
|
||||||
}
|
|
||||||
|
|
||||||
function saveJSON(obj, filename){
|
|
||||||
var txt = JSON.stringify(obj,"", "\t");
|
|
||||||
saveToFile(txt, filename);
|
|
||||||
}
|
|
||||||
|
|
||||||
function showJSON(obj, filename) {
|
|
||||||
var txt = JSON.stringify(obj,"", "\t");
|
|
||||||
var a = window.open("", "_blank").document;
|
|
||||||
a.write("<PLAINTEXT>");
|
|
||||||
a.write(txt);
|
|
||||||
a.title = filename;
|
|
||||||
}
|
|
||||||
|
|
||||||
function startsWith(str, prefix) {
|
|
||||||
return str.substring(0, prefix.length) == prefix;
|
|
||||||
}
|
|
||||||
|
|
||||||
function endsWith(str, suffix) {
|
|
||||||
return str.substring(str.length-suffix.length) == suffix;
|
|
||||||
}
|
|
||||||
|
|
||||||
function isDefined(obj) {
|
|
||||||
return typeof obj !== 'undefined';
|
|
||||||
}
|
|
||||||
|
|
||||||
function isNumber(obj) {
|
|
||||||
return isDefined(obj) && obj != null;
|
|
||||||
}
|
|
||||||
|
|
||||||
function isDefinedNN(obj) {
|
|
||||||
return isDefined(obj) && obj != null;
|
|
||||||
}
|
|
||||||
|
|
||||||
function padLeft(str, chr, maxLen) {
|
|
||||||
str = str.toString();
|
|
||||||
return str.length < maxLen ? padLeft(chr + str, chr, maxLen) : str;
|
|
||||||
}
|
|
||||||
|
|
||||||
// sourceArray contains a list of objects that have a property "id". This methods makes a map using the "id" as a key, and the owning object as a value.
|
|
||||||
function copyArrayToMap(sourceArray, map) {
|
|
||||||
if (!isDefined(map)) {
|
|
||||||
map = {};
|
|
||||||
}
|
|
||||||
var len = sourceArray.length;
|
|
||||||
for (var i = 0; i<len; i++) {
|
|
||||||
var v = sourceArray[i];
|
|
||||||
map[v.id] = v;
|
|
||||||
}
|
|
||||||
return map;
|
|
||||||
}
|
|
||||||
|
|
||||||
function checkTranslationFile(fileName) {
|
|
||||||
return startsWith(fileName, "translation_") && endsWith(fileName, ".json") || confirm("Are you sure that you want to use "+fileName+" instead of a translation_*.json file?");
|
|
||||||
}
|
|
||||||
|
|
||||||
function xunescape(str) {
|
|
||||||
return str.replace(/\\/g, "");
|
|
||||||
}
|
|
||||||
@@ -1,404 +0,0 @@
|
|||||||
var def = ///
|
|
||||||
{
|
|
||||||
"messages": [{
|
|
||||||
"id": "SettingsCalibrationWarning",
|
|
||||||
"description": "Confirmation message shown before performing an offset calibration. Should warn the user to make sure tip and handle are at the same temperature."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "CJCCalibrating",
|
|
||||||
"description": "Message indicating CJC is being calibrated."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "SettingsResetWarning",
|
|
||||||
"description": "Warning shown before confirming a settings reset."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "UVLOWarningString",
|
|
||||||
"maxLen": 8,
|
|
||||||
"description": "Warning text shown when the unit turns off due to undervoltage in simple mode."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "UndervoltageString",
|
|
||||||
"maxLen": 15,
|
|
||||||
"description": "Warning text shown when the unit turns off due to undervoltage in advanced mode."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "InputVoltageString",
|
|
||||||
"maxLen": 11,
|
|
||||||
"note": "Preferably end with a space",
|
|
||||||
"description": "Prefix text for 'Input Voltage' shown before showing the input voltage reading."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "SleepingSimpleString",
|
|
||||||
"maxLen": 4,
|
|
||||||
"description": "The text shown to indicate the unit is in sleep mode when the advanced view is NOT on."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "SleepingAdvancedString",
|
|
||||||
"maxLen": 15,
|
|
||||||
"description": "The text shown to indicate the unit is in sleep mode when the advanced view is turned on."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "SleepingTipAdvancedString",
|
|
||||||
"maxLen": 6,
|
|
||||||
"description": "The prefix text shown before tip temperature when the unit is sleeping with advanced view on."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "OffString",
|
|
||||||
"maxLen": 3,
|
|
||||||
"description": "Shown when a setting is turned off."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "DeviceFailedValidationWarning",
|
|
||||||
"default": "Device may be\ncounterfeit",
|
|
||||||
"description": "Warning shown if the device may be a clone or counterfeit unit."
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"messagesWarn": [{
|
|
||||||
"id": "CJCCalibrationDone",
|
|
||||||
"description": "Confirmation message indicating CJC calibration is complete."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "ResetOKMessage",
|
|
||||||
"description": "Confirmation message shown after a successful settings-reset."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "SettingsResetMessage",
|
|
||||||
"description": "Shown after a firmware update when certain settings have been reset to factory defaults due to incompatible firmware changes."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "NoAccelerometerMessage",
|
|
||||||
"description": "No accelerometer could be communicated with. This means that either the device's accelerometer is broken or unknown to IronOS. All motion-based settings are disabled and motion-based features will not work."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "NoPowerDeliveryMessage",
|
|
||||||
"description": "The IC required for USB-PD could not be communicated with. This is an error warning that USB-PD WILL NOT FUNCTION. Generally indicative of either a hardware or software issues."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "LockingKeysString",
|
|
||||||
"description": "Shown when keys are locked"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "UnlockingKeysString",
|
|
||||||
"description": "Shown when keys are unlocked"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "WarningKeysLockedString",
|
|
||||||
"description": "Warning that is shown when input is ignored due to the key lock being on"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "WarningThermalRunaway",
|
|
||||||
"description": "Warning text shown when the software has disabled the heater as a safety precaution as the temperature reading didn't react as expected."
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"characters": [{
|
|
||||||
"id": "SettingRightChar",
|
|
||||||
"len": 1,
|
|
||||||
"description": "Shown for fixed Right-handed display rotation."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "SettingLeftChar",
|
|
||||||
"len": 1,
|
|
||||||
"description": "Shown for fixed Left-handed display rotation."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "SettingAutoChar",
|
|
||||||
"len": 1,
|
|
||||||
"description": "Shown for automatic display rotation."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "SettingOffChar",
|
|
||||||
"len": 1,
|
|
||||||
"description": "Shown when a setting is turned off"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "SettingSlowChar",
|
|
||||||
"len": 1,
|
|
||||||
"description": "Shown when a setting is set to a slow value i.e. animation speed"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "SettingMediumChar",
|
|
||||||
"len": 1,
|
|
||||||
"description": "Shown when a setting is set to a medium value i.e. animation speed"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "SettingFastChar",
|
|
||||||
"len": 1,
|
|
||||||
"description": "Shown when a setting is set to a fast value i.e. animation speed"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "SettingStartNoneChar",
|
|
||||||
"len": 1,
|
|
||||||
"description": "Shown when autostart state is to do nothing and go to a normal boot"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "SettingStartSolderingChar",
|
|
||||||
"len": 1,
|
|
||||||
"description": "Shown when the auto start mode is set to go straight to soldering."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "SettingStartSleepChar",
|
|
||||||
"len": 1,
|
|
||||||
"description": "Shown when the auto start mode is set to start in sleep mode."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "SettingStartSleepOffChar",
|
|
||||||
"len": 1,
|
|
||||||
"description": "Shown when the auto start state is set to go to an off state, but on movement wake into soldering mode."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "SettingLockDisableChar",
|
|
||||||
"len": 1,
|
|
||||||
"default": "D",
|
|
||||||
"description": "Shown when locking mode is turned off."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "SettingLockBoostChar",
|
|
||||||
"len": 1,
|
|
||||||
"default": "B",
|
|
||||||
"description": "Shown when the locking mode is set to lock all buttons except for boost mode."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "SettingLockFullChar",
|
|
||||||
"len": 1,
|
|
||||||
"default": "F",
|
|
||||||
"description": "Shown when the locking mode is set to lock all buttons."
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"menuGroups": [{
|
|
||||||
"id": "PowerMenu",
|
|
||||||
"maxLen": 5,
|
|
||||||
"maxLen2": 11,
|
|
||||||
"description": "Menu for settings related to power. Main settings to do with the input voltage."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "SolderingMenu",
|
|
||||||
"maxLen": 5,
|
|
||||||
"maxLen2": 11,
|
|
||||||
"description": "Settings for soldering mode, such as boost temps, the increment used when pressing buttons and if button locking is enabled."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "PowerSavingMenu",
|
|
||||||
"maxLen": 5,
|
|
||||||
"maxLen2": 11,
|
|
||||||
"description": "Settings to do with power saving, such as sleep mode, sleep temps, and shutdown modes."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "UIMenu",
|
|
||||||
"maxLen": 5,
|
|
||||||
"maxLen2": 11,
|
|
||||||
"description": "User interface related settings, such as units."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "AdvancedMenu",
|
|
||||||
"maxLen": 5,
|
|
||||||
"maxLen2": 11,
|
|
||||||
"description": "Advanced settings. Misc catchall for settings that don't fit anywhere else or settings that require some thought before use."
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"menuOptions": [{
|
|
||||||
"id": "DCInCutoff",
|
|
||||||
"maxLen": 5,
|
|
||||||
"maxLen2": 11,
|
|
||||||
"description": "When the device is powered by a battery, this adjusts the low voltage threshold for when the unit should turn off the heater to protect the battery."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "MinVolCell",
|
|
||||||
"maxLen": 4,
|
|
||||||
"maxLen2": 9,
|
|
||||||
"description": "When powered by a battery, this adjusts the minimum voltage per cell before shutdown. (This is multiplied by the cell count.)"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "QCMaxVoltage",
|
|
||||||
"maxLen": 8,
|
|
||||||
"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."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "PDNegTimeout",
|
|
||||||
"maxLen": 8,
|
|
||||||
"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."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "BoostTemperature",
|
|
||||||
"maxLen": 4,
|
|
||||||
"maxLen2": 9,
|
|
||||||
"description": "When the unit is in soldering mode. You can hold down the button at the front of the device to temporarily override the soldering temperature to this value. This SETS the temperature, it does not ADD to it."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "AutoStart",
|
|
||||||
"maxLen": 6,
|
|
||||||
"maxLen2": 13,
|
|
||||||
"description": "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)."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "TempChangeShortStep",
|
|
||||||
"maxLen": 8,
|
|
||||||
"maxLen2": 15,
|
|
||||||
"description": "Factor by which the temperature is changed with a quick press of the buttons."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "TempChangeLongStep",
|
|
||||||
"maxLen": 6,
|
|
||||||
"maxLen2": 15,
|
|
||||||
"description": "Factor by which the temperature is changed with a hold of the buttons."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "LockingMode",
|
|
||||||
"maxLen": 6,
|
|
||||||
"maxLen2": 13,
|
|
||||||
"description": "If locking the buttons against accidental presses is enabled."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "MotionSensitivity",
|
|
||||||
"maxLen": 6,
|
|
||||||
"maxLen2": 13,
|
|
||||||
"description": "Scale of how sensitive the device is to movement. Higher numbers == more sensitive. 0 == motion detection turned off."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "SleepTemperature",
|
|
||||||
"maxLen": 4,
|
|
||||||
"maxLen2": 9,
|
|
||||||
"description": "Temperature the device will drop down to while asleep. Typically around halfway between off and soldering temperature."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "SleepTimeout",
|
|
||||||
"maxLen": 4,
|
|
||||||
"maxLen2": 9,
|
|
||||||
"description": "How long of a period without movement / button-pressing is required before the device drops down to the sleep temperature."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "ShutdownTimeout",
|
|
||||||
"maxLen": 5,
|
|
||||||
"maxLen2": 11,
|
|
||||||
"description": "How long of a period without movement / button-pressing is required before the device turns off the tip heater completely and returns to the main idle screen."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "HallEffSensitivity",
|
|
||||||
"maxLen": 6,
|
|
||||||
"maxLen2": 13,
|
|
||||||
"description": "If the unit has a hall effect sensor (Pinecil), this adjusts how sensitive it is at detecting a magnet to put the device into sleep mode."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "TemperatureUnit",
|
|
||||||
"maxLen": 6,
|
|
||||||
"maxLen2": 13,
|
|
||||||
"description": "If the device shows temperatures in °C or °F."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "DisplayRotation",
|
|
||||||
"maxLen": 6,
|
|
||||||
"maxLen2": 13,
|
|
||||||
"description": "If the display should rotate automatically or if it should be fixed for left- or right-handed mode."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "CooldownBlink",
|
|
||||||
"maxLen": 6,
|
|
||||||
"maxLen2": 13,
|
|
||||||
"description": "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."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "ScrollingSpeed",
|
|
||||||
"maxLen": 6,
|
|
||||||
"maxLen2": 11,
|
|
||||||
"description": "How fast the description text scrolls when hovering on a menu. Faster speeds may induce tearing, but allow reading the whole description faster."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "ReverseButtonTempChange",
|
|
||||||
"maxLen": 6,
|
|
||||||
"maxLen2": 15,
|
|
||||||
"description": "Swaps which button increments and decrements on temperature change screens."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "AnimSpeed",
|
|
||||||
"maxLen": 6,
|
|
||||||
"maxLen2": 13,
|
|
||||||
"description": "How fast should the menu animations loop, or if they should not loop at all."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "AnimLoop",
|
|
||||||
"maxLen": 6,
|
|
||||||
"maxLen2": 13,
|
|
||||||
"description": "Should the menu animations loop. Only visible if the animation speed is not set to \"Off\""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "Brightness",
|
|
||||||
"maxLen": 7,
|
|
||||||
"maxLen2": 15,
|
|
||||||
"description": "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.)"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "ColourInversion",
|
|
||||||
"maxLen": 7,
|
|
||||||
"maxLen2": 15,
|
|
||||||
"description": "Inverts the entire OLED."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "LOGOTime",
|
|
||||||
"maxLen": 7,
|
|
||||||
"maxLen2": 15,
|
|
||||||
"description": "Sets the duration for the boot logo (s=seconds)."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "AdvancedIdle",
|
|
||||||
"maxLen": 6,
|
|
||||||
"maxLen2": 13,
|
|
||||||
"description": "Should the device show an 'advanced' view on the idle screen. The advanced view uses text to show more details than the typical icons."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "AdvancedSoldering",
|
|
||||||
"maxLen": 6,
|
|
||||||
"maxLen2": 13,
|
|
||||||
"description": "Should the device show an 'advanced' soldering view. This is a text-based view that shows more information at the cost of no nice graphics."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "PowerLimit",
|
|
||||||
"maxLen": 5,
|
|
||||||
"maxLen2": 11,
|
|
||||||
"description": "Allows setting a custom wattage for the device to aim to keep the AVERAGE power below. The unit can't control its peak power no matter how you set this. (Except for MHP30 which will regulate nicely to this). If USB-PD is in use, the limit will be set to the lower of this and the supplies advertised wattage."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "CalibrateCJC",
|
|
||||||
"maxLen": 8,
|
|
||||||
"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."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "VoltageCalibration",
|
|
||||||
"maxLen": 8,
|
|
||||||
"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."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "PowerPulsePower",
|
|
||||||
"maxLen": 6,
|
|
||||||
"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."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "PowerPulseWait",
|
|
||||||
"maxLen": 6,
|
|
||||||
"maxLen2": 13,
|
|
||||||
"description": "Adjusts the time interval between power pulses. Longer gaps reduce undesired heating of the tip, but needs to be fast enough to keep your power bank awake."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "PowerPulseDuration",
|
|
||||||
"maxLen": 6,
|
|
||||||
"maxLen2": 13,
|
|
||||||
"description": "How long should the power pulse go for. Some power banks require seeing the power draw be sustained for a certain duration to keep awake. Should be kept as short as possible to avoid wasting power / undesired heating of the tip."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "SettingsReset",
|
|
||||||
"maxLen": 8,
|
|
||||||
"maxLen2": 15,
|
|
||||||
"description": "Resets all settings and calibrations to factory defaults. Does NOT erase custom user boot up logo's."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "LanguageSwitch",
|
|
||||||
"maxLen": 7,
|
|
||||||
"maxLen2": 15,
|
|
||||||
"description": "Changes the device language on multi-lingual builds."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
401
Translations/translations_definitions.json
Normal file
401
Translations/translations_definitions.json
Normal file
@@ -0,0 +1,401 @@
|
|||||||
|
{
|
||||||
|
"messagesWarn": [{
|
||||||
|
"id": "CJCCalibrationDone",
|
||||||
|
"description": "Confirmation message indicating CJC calibration is complete."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "ResetOKMessage",
|
||||||
|
"description": "Shown when the settings are reset to factory defaults by the user."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "SettingsResetMessage",
|
||||||
|
"description": "Shown when some settings are reset to factory defaults either by by incompatible firmware changes."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "NoAccelerometerMessage",
|
||||||
|
"description": "No accelerometer could be communicated with. This means that either the device's accelerometer is broken or unknown to IronOS. All motion-based settings are disabled and motion-based features will not work."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "NoPowerDeliveryMessage",
|
||||||
|
"description": "The IC required for USB-PD could not be communicated with. This is an error warning that USB-PD WILL NOT FUNCTION. Generally indicative of either a hardware or software issues."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "LockingKeysString",
|
||||||
|
"description": "Shown when keys are locked"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "UnlockingKeysString",
|
||||||
|
"description": "Shown when keys are unlocked"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "WarningKeysLockedString",
|
||||||
|
"description": "Warning that is shown when input is ignored due to the key lock being on"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "WarningThermalRunaway",
|
||||||
|
"description": "Warning text shown when the software has disabled the heater as a safety precaution as the temperature reading didn't react as expected."
|
||||||
|
}, {
|
||||||
|
"id": "SettingsCalibrationWarning",
|
||||||
|
"description": "Confirmation message shown before performing an offset calibration. Should warn the user to make sure tip and handle are at the same temperature."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "CJCCalibrating",
|
||||||
|
"description": "Message indicating CJC is being calibrated."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "SettingsResetWarning",
|
||||||
|
"description": "Confirmation message shown before confirming a settings reset."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "UVLOWarningString",
|
||||||
|
"maxLen": 8,
|
||||||
|
"description": "Warning text shown when the unit turns off due to undervoltage in simple mode."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "UndervoltageString",
|
||||||
|
"maxLen": 15,
|
||||||
|
"description": "Warning text shown when the unit turns off due to undervoltage in advanced mode."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "InputVoltageString",
|
||||||
|
"maxLen": 11,
|
||||||
|
"note": "Preferably end with a space",
|
||||||
|
"description": "Prefix text for 'Input Voltage' shown before showing the input voltage reading."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "SleepingSimpleString",
|
||||||
|
"maxLen": 4,
|
||||||
|
"description": "The text shown to indicate the unit is in sleep mode when the advanced view is NOT on."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "SleepingAdvancedString",
|
||||||
|
"maxLen": 15,
|
||||||
|
"description": "The text shown to indicate the unit is in sleep mode when the advanced view is turned on."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "SleepingTipAdvancedString",
|
||||||
|
"maxLen": 6,
|
||||||
|
"description": "The prefix text shown before tip temperature when the unit is sleeping with advanced view on."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "OffString",
|
||||||
|
"maxLen": 3,
|
||||||
|
"description": "Shown when a setting is turned off."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "DeviceFailedValidationWarning",
|
||||||
|
"default": "Device may be\ncounterfeit",
|
||||||
|
"description": "Warning shown if the device may be a clone or counterfeit unit."
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"characters": [{
|
||||||
|
"id": "SettingRightChar",
|
||||||
|
"len": 1,
|
||||||
|
"description": "Shown for fixed Right-handed display rotation."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "SettingLeftChar",
|
||||||
|
"len": 1,
|
||||||
|
"description": "Shown for fixed Left-handed display rotation."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "SettingAutoChar",
|
||||||
|
"len": 1,
|
||||||
|
"description": "Shown for automatic display rotation."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "SettingOffChar",
|
||||||
|
"len": 1,
|
||||||
|
"description": "Shown when a setting is turned off"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "SettingSlowChar",
|
||||||
|
"len": 1,
|
||||||
|
"description": "Shown when a setting is set to a slow value i.e. animation speed"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "SettingMediumChar",
|
||||||
|
"len": 1,
|
||||||
|
"description": "Shown when a setting is set to a medium value i.e. animation speed"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "SettingFastChar",
|
||||||
|
"len": 1,
|
||||||
|
"description": "Shown when a setting is set to a fast value i.e. animation speed"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "SettingStartNoneChar",
|
||||||
|
"len": 1,
|
||||||
|
"description": "Shown when autostart state is to do nothing and go to a normal boot"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "SettingStartSolderingChar",
|
||||||
|
"len": 1,
|
||||||
|
"description": "Shown when the auto start mode is set to go straight to soldering."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "SettingStartSleepChar",
|
||||||
|
"len": 1,
|
||||||
|
"description": "Shown when the auto start mode is set to start in sleep mode."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "SettingStartSleepOffChar",
|
||||||
|
"len": 1,
|
||||||
|
"description": "Shown when the auto start state is set to go to an off state, but on movement wake into soldering mode."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "SettingLockDisableChar",
|
||||||
|
"len": 1,
|
||||||
|
"default": "D",
|
||||||
|
"description": "Shown when locking mode is turned off."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "SettingLockBoostChar",
|
||||||
|
"len": 1,
|
||||||
|
"default": "B",
|
||||||
|
"description": "Shown when the locking mode is set to lock all buttons except for boost mode."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "SettingLockFullChar",
|
||||||
|
"len": 1,
|
||||||
|
"default": "F",
|
||||||
|
"description": "Shown when the locking mode is set to lock all buttons."
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"menuGroups": [{
|
||||||
|
"id": "PowerMenu",
|
||||||
|
"maxLen": 5,
|
||||||
|
"maxLen2": 11,
|
||||||
|
"description": "Menu for settings related to power. Main settings to do with the input voltage."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "SolderingMenu",
|
||||||
|
"maxLen": 5,
|
||||||
|
"maxLen2": 11,
|
||||||
|
"description": "Settings for soldering mode, such as boost temps, the increment used when pressing buttons and if button locking is enabled."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "PowerSavingMenu",
|
||||||
|
"maxLen": 5,
|
||||||
|
"maxLen2": 11,
|
||||||
|
"description": "Settings to do with power saving, such as sleep mode, sleep temps, and shutdown modes."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "UIMenu",
|
||||||
|
"maxLen": 5,
|
||||||
|
"maxLen2": 11,
|
||||||
|
"description": "User interface related settings, such as units."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "AdvancedMenu",
|
||||||
|
"maxLen": 5,
|
||||||
|
"maxLen2": 11,
|
||||||
|
"description": "Advanced settings. Misc catchall for settings that don't fit anywhere else or settings that require some thought before use."
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"menuOptions": [{
|
||||||
|
"id": "DCInCutoff",
|
||||||
|
"maxLen": 5,
|
||||||
|
"maxLen2": 11,
|
||||||
|
"description": "When the device is powered by a battery, this adjusts the low voltage threshold for when the unit should turn off the heater to protect the battery."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "MinVolCell",
|
||||||
|
"maxLen": 4,
|
||||||
|
"maxLen2": 9,
|
||||||
|
"description": "When powered by a battery, this adjusts the minimum voltage per cell before shutdown. (This is multiplied by the cell count.)"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "QCMaxVoltage",
|
||||||
|
"maxLen": 8,
|
||||||
|
"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."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "PDNegTimeout",
|
||||||
|
"maxLen": 8,
|
||||||
|
"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."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "BoostTemperature",
|
||||||
|
"maxLen": 4,
|
||||||
|
"maxLen2": 9,
|
||||||
|
"description": "When the unit is in soldering mode. You can hold down the button at the front of the device to temporarily override the soldering temperature to this value. This SETS the temperature, it does not ADD to it."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "AutoStart",
|
||||||
|
"maxLen": 6,
|
||||||
|
"maxLen2": 13,
|
||||||
|
"description": "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)."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "TempChangeShortStep",
|
||||||
|
"maxLen": 8,
|
||||||
|
"maxLen2": 15,
|
||||||
|
"description": "Factor by which the temperature is changed with a quick press of the buttons."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "TempChangeLongStep",
|
||||||
|
"maxLen": 6,
|
||||||
|
"maxLen2": 15,
|
||||||
|
"description": "Factor by which the temperature is changed with a hold of the buttons."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "LockingMode",
|
||||||
|
"maxLen": 6,
|
||||||
|
"maxLen2": 13,
|
||||||
|
"description": "If locking the buttons against accidental presses is enabled."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "MotionSensitivity",
|
||||||
|
"maxLen": 6,
|
||||||
|
"maxLen2": 13,
|
||||||
|
"description": "Scale of how sensitive the device is to movement. Higher numbers == more sensitive. 0 == motion detection turned off."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "SleepTemperature",
|
||||||
|
"maxLen": 4,
|
||||||
|
"maxLen2": 9,
|
||||||
|
"description": "Temperature the device will drop down to while asleep. Typically around halfway between off and soldering temperature."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "SleepTimeout",
|
||||||
|
"maxLen": 4,
|
||||||
|
"maxLen2": 9,
|
||||||
|
"description": "How long of a period without movement / button-pressing is required before the device drops down to the sleep temperature."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "ShutdownTimeout",
|
||||||
|
"maxLen": 5,
|
||||||
|
"maxLen2": 11,
|
||||||
|
"description": "How long of a period without movement / button-pressing is required before the device turns off the tip heater completely and returns to the main idle screen."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "HallEffSensitivity",
|
||||||
|
"maxLen": 6,
|
||||||
|
"maxLen2": 13,
|
||||||
|
"description": "If the unit has a hall effect sensor (Pinecil), this adjusts how sensitive it is at detecting a magnet to put the device into sleep mode."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "TemperatureUnit",
|
||||||
|
"maxLen": 6,
|
||||||
|
"maxLen2": 13,
|
||||||
|
"description": "If the device shows temperatures in °C or °F."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "DisplayRotation",
|
||||||
|
"maxLen": 6,
|
||||||
|
"maxLen2": 13,
|
||||||
|
"description": "If the display should rotate automatically or if it should be fixed for left- or right-handed mode."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "CooldownBlink",
|
||||||
|
"maxLen": 6,
|
||||||
|
"maxLen2": 13,
|
||||||
|
"description": "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."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "ScrollingSpeed",
|
||||||
|
"maxLen": 6,
|
||||||
|
"maxLen2": 11,
|
||||||
|
"description": "How fast the description text scrolls when hovering on a menu. Faster speeds may induce tearing, but allow reading the whole description faster."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "ReverseButtonTempChange",
|
||||||
|
"maxLen": 6,
|
||||||
|
"maxLen2": 15,
|
||||||
|
"description": "Swaps which button increments and decrements on temperature change screens."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "AnimSpeed",
|
||||||
|
"maxLen": 6,
|
||||||
|
"maxLen2": 13,
|
||||||
|
"description": "How fast should the menu animations loop, or if they should not loop at all."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "AnimLoop",
|
||||||
|
"maxLen": 6,
|
||||||
|
"maxLen2": 13,
|
||||||
|
"description": "Should the menu animations loop. Only visible if the animation speed is not set to \"Off\""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "Brightness",
|
||||||
|
"maxLen": 7,
|
||||||
|
"maxLen2": 15,
|
||||||
|
"description": "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.)"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "ColourInversion",
|
||||||
|
"maxLen": 7,
|
||||||
|
"maxLen2": 15,
|
||||||
|
"description": "Inverts the entire OLED."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "LOGOTime",
|
||||||
|
"maxLen": 7,
|
||||||
|
"maxLen2": 15,
|
||||||
|
"description": "Sets the duration for the boot logo (s=seconds)."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "AdvancedIdle",
|
||||||
|
"maxLen": 6,
|
||||||
|
"maxLen2": 13,
|
||||||
|
"description": "Should the device show an 'advanced' view on the idle screen. The advanced view uses text to show more details than the typical icons."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "AdvancedSoldering",
|
||||||
|
"maxLen": 6,
|
||||||
|
"maxLen2": 13,
|
||||||
|
"description": "Should the device show an 'advanced' soldering view. This is a text-based view that shows more information at the cost of no nice graphics."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "PowerLimit",
|
||||||
|
"maxLen": 5,
|
||||||
|
"maxLen2": 11,
|
||||||
|
"description": "Allows setting a custom wattage for the device to aim to keep the AVERAGE power below. The unit can't control its peak power no matter how you set this. (Except for MHP30 which will regulate nicely to this). If USB-PD is in use, the limit will be set to the lower of this and the supplies advertised wattage."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "CalibrateCJC",
|
||||||
|
"maxLen": 8,
|
||||||
|
"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."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "VoltageCalibration",
|
||||||
|
"maxLen": 8,
|
||||||
|
"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."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "PowerPulsePower",
|
||||||
|
"maxLen": 6,
|
||||||
|
"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."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "PowerPulseWait",
|
||||||
|
"maxLen": 6,
|
||||||
|
"maxLen2": 13,
|
||||||
|
"description": "Adjusts the time interval between power pulses. Longer gaps reduce undesired heating of the tip, but needs to be fast enough to keep your power bank awake."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "PowerPulseDuration",
|
||||||
|
"maxLen": 6,
|
||||||
|
"maxLen2": 13,
|
||||||
|
"description": "How long should the power pulse go for. Some power banks require seeing the power draw be sustained for a certain duration to keep awake. Should be kept as short as possible to avoid wasting power / undesired heating of the tip."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "SettingsReset",
|
||||||
|
"maxLen": 8,
|
||||||
|
"maxLen2": 15,
|
||||||
|
"description": "Resets all settings and calibrations to factory defaults. Does NOT erase custom user boot up logo's."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "LanguageSwitch",
|
||||||
|
"maxLen": 7,
|
||||||
|
"maxLen2": 15,
|
||||||
|
"description": "Changes the device language on multi-lingual builds."
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -178,14 +178,9 @@ void OLED::drawChar(const uint16_t charCode, const FontStyle fontStyle) {
|
|||||||
fontWidth = 12;
|
fontWidth = 12;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
for (uint32_t i = 0; i < FontSectionsCount; i++) {
|
|
||||||
const auto §ion = FontSections[i];
|
currentFont = fontStyle == FontStyle::SMALL ? FontSectionInfo.font06_start_ptr : FontSectionInfo.font12_start_ptr;
|
||||||
if (charCode >= section.symbol_start && charCode < section.symbol_end) {
|
index = charCode - 2;
|
||||||
currentFont = fontStyle == FontStyle::SMALL ? section.font06_start_ptr : section.font12_start_ptr;
|
|
||||||
index = charCode - section.symbol_start;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
const uint8_t *charPointer = currentFont + ((fontWidth * (fontHeight / 8)) * index);
|
const uint8_t *charPointer = currentFont + ((fontWidth * (fontHeight / 8)) * index);
|
||||||
@@ -368,8 +363,8 @@ void OLED::setRotation(bool leftHanded) {
|
|||||||
// mode as driver ram is 128 wide
|
// mode as driver ram is 128 wide
|
||||||
screenBuffer[7] = inLeftHandedMode ? 95 : 0x7F; // End address of the ram segment we are writing to (96 wide)
|
screenBuffer[7] = inLeftHandedMode ? 95 : 0x7F; // End address of the ram segment we are writing to (96 wide)
|
||||||
screenBuffer[9] = inLeftHandedMode ? 0xC8 : 0xC0;
|
screenBuffer[9] = inLeftHandedMode ? 0xC8 : 0xC0;
|
||||||
//Force a screen refresh
|
// Force a screen refresh
|
||||||
const int len = FRAMEBUFFER_START + (OLED_WIDTH * 2);
|
const int len = FRAMEBUFFER_START + (OLED_WIDTH * 2);
|
||||||
I2C_CLASS::Transmit(DEVICEADDR_OLED, screenBuffer, len);
|
I2C_CLASS::Transmit(DEVICEADDR_OLED, screenBuffer, len);
|
||||||
osDelay(TICKS_10MS);
|
osDelay(TICKS_10MS);
|
||||||
}
|
}
|
||||||
@@ -388,6 +383,10 @@ void OLED::setInverseDisplay(bool inverse) {
|
|||||||
// print a string to the current cursor location
|
// print a string to the current cursor location
|
||||||
void OLED::print(const char *const str, FontStyle fontStyle) {
|
void OLED::print(const char *const str, FontStyle fontStyle) {
|
||||||
const uint8_t *next = reinterpret_cast<const uint8_t *>(str);
|
const uint8_t *next = reinterpret_cast<const uint8_t *>(str);
|
||||||
|
if (next[0] == 0x01) {
|
||||||
|
fontStyle = FontStyle::LARGE;
|
||||||
|
next++;
|
||||||
|
}
|
||||||
while (next[0]) {
|
while (next[0]) {
|
||||||
uint16_t index;
|
uint16_t index;
|
||||||
if (next[0] <= 0xF0) {
|
if (next[0] <= 0xF0) {
|
||||||
@@ -429,7 +428,7 @@ inline void stripLeaderZeros(char *buffer, uint8_t places) {
|
|||||||
// Stop 1 short so that we dont blank entire number if its zero
|
// Stop 1 short so that we dont blank entire number if its zero
|
||||||
for (int i = 0; i < (places - 1); i++) {
|
for (int i = 0; i < (places - 1); i++) {
|
||||||
if (buffer[i] == 2) {
|
if (buffer[i] == 2) {
|
||||||
buffer[i] = SymbolSpace[0];
|
buffer[i] = LargeSymbolSpace[0];
|
||||||
} else {
|
} else {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -478,14 +477,14 @@ void OLED::printNumber(uint16_t number, uint8_t places, FontStyle fontStyle, boo
|
|||||||
|
|
||||||
void OLED::debugNumber(int32_t val, FontStyle fontStyle) {
|
void OLED::debugNumber(int32_t val, FontStyle fontStyle) {
|
||||||
if (abs(val) > 99999) {
|
if (abs(val) > 99999) {
|
||||||
OLED::print(SymbolSpace, fontStyle); // out of bounds
|
OLED::print(LargeSymbolSpace, fontStyle); // out of bounds
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (val >= 0) {
|
if (val >= 0) {
|
||||||
OLED::print(SymbolSpace, fontStyle);
|
OLED::print(LargeSymbolSpace, fontStyle);
|
||||||
OLED::printNumber(val, 5, fontStyle);
|
OLED::printNumber(val, 5, fontStyle);
|
||||||
} else {
|
} else {
|
||||||
OLED::print(SymbolMinus, fontStyle);
|
OLED::print(LargeSymbolMinus, fontStyle);
|
||||||
OLED::printNumber(-val, 5, fontStyle);
|
OLED::printNumber(-val, 5, fontStyle);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -7,28 +7,44 @@
|
|||||||
|
|
||||||
#ifndef TRANSLATION_H_
|
#ifndef TRANSLATION_H_
|
||||||
#define TRANSLATION_H_
|
#define TRANSLATION_H_
|
||||||
#include "stdint.h"
|
|
||||||
|
#include <stdbool.h>
|
||||||
|
#include <stdint.h>
|
||||||
|
|
||||||
extern const bool HasFahrenheit;
|
extern const bool HasFahrenheit;
|
||||||
|
|
||||||
extern const char *SymbolPlus;
|
extern const char *SmallSymbolPlus;
|
||||||
extern const char *SymbolMinus;
|
extern const char *LargeSymbolPlus;
|
||||||
extern const char *SymbolSpace;
|
extern const char *SmallSymbolMinus;
|
||||||
extern const char *SymbolAmps;
|
extern const char *LargeSymbolMinus;
|
||||||
extern const char *SymbolDot;
|
extern const char *SmallSymbolSpace;
|
||||||
extern const char *SymbolDegC;
|
extern const char *LargeSymbolSpace;
|
||||||
extern const char *SymbolDegF;
|
extern const char *SmallSymbolAmps;
|
||||||
extern const char *SymbolMinutes;
|
extern const char *LargeSymbolAmps;
|
||||||
extern const char *SymbolSeconds;
|
extern const char *SmallSymbolDot;
|
||||||
extern const char *SymbolWatts;
|
extern const char *LargeSymbolDot;
|
||||||
extern const char *SymbolVolts;
|
extern const char *SmallSymbolDegC;
|
||||||
extern const char *SymbolDC;
|
extern const char *LargeSymbolDegC;
|
||||||
extern const char *SymbolCellCount;
|
extern const char *SmallSymbolDegF;
|
||||||
extern const char *SymbolVersionNumber;
|
extern const char *LargeSymbolDegF;
|
||||||
extern const char *SymbolPDDebug;
|
extern const char *LargeSymbolMinutes;
|
||||||
extern const char *SymbolState;
|
extern const char *SmallSymbolMinutes;
|
||||||
extern const char *SymbolNoVBus;
|
extern const char *LargeSymbolSeconds;
|
||||||
extern const char *SymbolVBus;
|
extern const char *SmallSymbolSeconds;
|
||||||
|
extern const char *LargeSymbolWatts;
|
||||||
|
extern const char *SmallSymbolWatts;
|
||||||
|
extern const char *LargeSymbolVolts;
|
||||||
|
extern const char *SmallSymbolVolts;
|
||||||
|
extern const char *LargeSymbolDC;
|
||||||
|
extern const char *SmallSymbolDC;
|
||||||
|
extern const char *LargeSymbolCellCount;
|
||||||
|
extern const char *SmallSymbolCellCount;
|
||||||
|
//
|
||||||
|
extern const char *SmallSymbolVersionNumber;
|
||||||
|
extern const char *SmallSymbolPDDebug;
|
||||||
|
extern const char *SmallSymbolState;
|
||||||
|
extern const char *SmallSymbolNoVBus;
|
||||||
|
extern const char *SmallSymbolVBus;
|
||||||
|
|
||||||
extern const char *DebugMenu[];
|
extern const char *DebugMenu[];
|
||||||
extern const char *AccelTypeNames[];
|
extern const char *AccelTypeNames[];
|
||||||
@@ -73,6 +89,16 @@ enum class SettingsItemIndex : uint8_t {
|
|||||||
};
|
};
|
||||||
|
|
||||||
struct TranslationIndexTable {
|
struct TranslationIndexTable {
|
||||||
|
uint16_t CJCCalibrationDone;
|
||||||
|
uint16_t ResetOKMessage;
|
||||||
|
uint16_t SettingsResetMessage;
|
||||||
|
uint16_t NoAccelerometerMessage;
|
||||||
|
uint16_t NoPowerDeliveryMessage;
|
||||||
|
uint16_t LockingKeysString;
|
||||||
|
uint16_t UnlockingKeysString;
|
||||||
|
uint16_t WarningKeysLockedString;
|
||||||
|
uint16_t WarningThermalRunaway;
|
||||||
|
|
||||||
uint16_t SettingsCalibrationWarning;
|
uint16_t SettingsCalibrationWarning;
|
||||||
uint16_t CJCCalibrating;
|
uint16_t CJCCalibrating;
|
||||||
uint16_t SettingsResetWarning;
|
uint16_t SettingsResetWarning;
|
||||||
@@ -86,16 +112,6 @@ struct TranslationIndexTable {
|
|||||||
uint16_t OffString;
|
uint16_t OffString;
|
||||||
uint16_t DeviceFailedValidationWarning;
|
uint16_t DeviceFailedValidationWarning;
|
||||||
|
|
||||||
uint16_t CJCCalibrationDone;
|
|
||||||
uint16_t ResetOKMessage;
|
|
||||||
uint16_t SettingsResetMessage;
|
|
||||||
uint16_t NoAccelerometerMessage;
|
|
||||||
uint16_t NoPowerDeliveryMessage;
|
|
||||||
uint16_t LockingKeysString;
|
|
||||||
uint16_t UnlockingKeysString;
|
|
||||||
uint16_t WarningKeysLockedString;
|
|
||||||
uint16_t WarningThermalRunaway;
|
|
||||||
|
|
||||||
uint16_t SettingRightChar;
|
uint16_t SettingRightChar;
|
||||||
uint16_t SettingLeftChar;
|
uint16_t SettingLeftChar;
|
||||||
uint16_t SettingAutoChar;
|
uint16_t SettingAutoChar;
|
||||||
@@ -113,8 +129,8 @@ struct TranslationIndexTable {
|
|||||||
|
|
||||||
uint16_t SettingsDescriptions[static_cast<uint32_t>(SettingsItemIndex::NUM_ITEMS)];
|
uint16_t SettingsDescriptions[static_cast<uint32_t>(SettingsItemIndex::NUM_ITEMS)];
|
||||||
uint16_t SettingsShortNames[static_cast<uint32_t>(SettingsItemIndex::NUM_ITEMS)];
|
uint16_t SettingsShortNames[static_cast<uint32_t>(SettingsItemIndex::NUM_ITEMS)];
|
||||||
uint16_t SettingsMenuEntries[5];
|
|
||||||
uint16_t SettingsMenuEntriesDescriptions[5]; // unused
|
uint16_t SettingsMenuEntriesDescriptions[5]; // unused
|
||||||
|
uint16_t SettingsMenuEntries[5];
|
||||||
};
|
};
|
||||||
|
|
||||||
extern const TranslationIndexTable *Tr;
|
extern const TranslationIndexTable *Tr;
|
||||||
@@ -130,16 +146,15 @@ struct TranslationData {
|
|||||||
};
|
};
|
||||||
|
|
||||||
struct FontSection {
|
struct FontSection {
|
||||||
/// Start index of font section, inclusive
|
|
||||||
uint16_t symbol_start;
|
|
||||||
/// End index of font section, exclusive
|
|
||||||
uint16_t symbol_end;
|
|
||||||
const uint8_t *font12_start_ptr;
|
const uint8_t *font12_start_ptr;
|
||||||
const uint8_t *font06_start_ptr;
|
const uint8_t *font06_start_ptr;
|
||||||
|
uint16_t font12_decompressed_size;
|
||||||
|
uint16_t font06_decompressed_size;
|
||||||
|
const uint8_t *font12_compressed_source; // Pointer to compressed data or null
|
||||||
|
const uint8_t *font06_compressed_source; // Pointer to compressed data or null
|
||||||
};
|
};
|
||||||
|
|
||||||
extern const FontSection *const FontSections;
|
extern const FontSection FontSectionInfo;
|
||||||
extern const uint8_t FontSectionsCount;
|
|
||||||
|
|
||||||
constexpr uint8_t settings_item_index(const SettingsItemIndex i) { return static_cast<uint8_t>(i); }
|
constexpr uint8_t settings_item_index(const SettingsItemIndex i) { return static_cast<uint8_t>(i); }
|
||||||
// Use a constexpr function for type-checking.
|
// Use a constexpr function for type-checking.
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
#define TRANSLATION_MULTI_H_
|
#define TRANSLATION_MULTI_H_
|
||||||
|
|
||||||
#include "Translation.h"
|
#include "Translation.h"
|
||||||
|
#include <stdbool.h>
|
||||||
// The compressed translation data will be decompressed to this buffer. These
|
// The compressed translation data will be decompressed to this buffer. These
|
||||||
// data may include:
|
// data may include:
|
||||||
// - TranslationData (translation index table and translation strings)
|
// - TranslationData (translation index table and translation strings)
|
||||||
@@ -14,21 +14,6 @@
|
|||||||
extern uint8_t translation_data_out_buffer[];
|
extern uint8_t translation_data_out_buffer[];
|
||||||
extern const uint16_t translation_data_out_buffer_size;
|
extern const uint16_t translation_data_out_buffer_size;
|
||||||
|
|
||||||
struct FontSectionDataInfo {
|
|
||||||
uint16_t symbol_start;
|
|
||||||
uint16_t symbol_count;
|
|
||||||
uint16_t data_size : 15;
|
|
||||||
bool data_is_compressed : 1;
|
|
||||||
|
|
||||||
// Font12x16 data followed by font6x8 data
|
|
||||||
const uint8_t *data_ptr;
|
|
||||||
};
|
|
||||||
|
|
||||||
extern const FontSectionDataInfo FontSectionDataInfos[];
|
|
||||||
extern const uint8_t FontSectionDataCount;
|
|
||||||
|
|
||||||
extern FontSection DynamicFontSections[];
|
|
||||||
|
|
||||||
struct LanguageMeta {
|
struct LanguageMeta {
|
||||||
uint16_t uniqueID;
|
uint16_t uniqueID;
|
||||||
const uint8_t *translation_data;
|
const uint8_t *translation_data;
|
||||||
|
|||||||
@@ -52,29 +52,14 @@ void prepareTranslations() {
|
|||||||
Tr = &translationData->indices;
|
Tr = &translationData->indices;
|
||||||
TranslationStrings = translationData->strings;
|
TranslationStrings = translationData->strings;
|
||||||
|
|
||||||
memset(DynamicFontSections, 0, FontSectionsCount * sizeof(DynamicFontSections[0]));
|
// Font 12 can be compressed; if it is then we want to decompress it to ram
|
||||||
for (int i = 0; i < FontSectionDataCount; i++) {
|
if (FontSectionInfo.font12_compressed_source != NULL) {
|
||||||
const auto &fontSectionDataInfo = FontSectionDataInfos[i];
|
blz_depack(FontSectionInfo.font12_compressed_source, (uint8_t *)FontSectionInfo.font12_start_ptr, FontSectionInfo.font12_decompressed_size);
|
||||||
auto &fontSection = DynamicFontSections[i];
|
}
|
||||||
fontSection.symbol_start = fontSectionDataInfo.symbol_start;
|
|
||||||
fontSection.symbol_end = fontSection.symbol_start + fontSectionDataInfo.symbol_count;
|
|
||||||
const uint16_t font12_size = fontSectionDataInfo.symbol_count * (12 * 16 / 8);
|
|
||||||
uint16_t dataSize;
|
|
||||||
if (fontSectionDataInfo.data_is_compressed) {
|
|
||||||
unsigned int outsize;
|
|
||||||
outsize = blz_depack_srcsize(fontSectionDataInfo.data_ptr, buffer_next_ptr, fontSectionDataInfo.data_size);
|
|
||||||
|
|
||||||
fontSection.font12_start_ptr = buffer_next_ptr;
|
// Font 06 can be compressed; if it is then we want to decompress it to ram
|
||||||
dataSize = outsize;
|
if (FontSectionInfo.font06_compressed_source != NULL) {
|
||||||
buffer_remaining_size -= outsize;
|
blz_depack(FontSectionInfo.font06_compressed_source, (uint8_t *)FontSectionInfo.font06_start_ptr, FontSectionInfo.font06_decompressed_size);
|
||||||
buffer_next_ptr += outsize;
|
|
||||||
} else {
|
|
||||||
fontSection.font12_start_ptr = fontSectionDataInfo.data_ptr;
|
|
||||||
dataSize = fontSectionDataInfo.data_size;
|
|
||||||
}
|
|
||||||
if (dataSize > font12_size) {
|
|
||||||
fontSection.font06_start_ptr = fontSection.font12_start_ptr + font12_size;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -161,12 +161,12 @@ const menuitem rootSettingsMenu[] {
|
|||||||
|
|
||||||
#if defined(POW_DC) || defined(POW_QC) || defined(POW_PD)
|
#if defined(POW_DC) || defined(POW_QC) || defined(POW_PD)
|
||||||
const menuitem powerMenu[] = {
|
const menuitem powerMenu[] = {
|
||||||
/*
|
/*
|
||||||
* Power Source
|
* Power Source
|
||||||
* -Minimum Voltage
|
* -Minimum Voltage
|
||||||
* QC Voltage
|
* QC Voltage
|
||||||
* PD Timeout
|
* PD Timeout
|
||||||
*/
|
*/
|
||||||
#ifdef POW_DC
|
#ifdef POW_DC
|
||||||
{SETTINGS_DESC(SettingsItemIndex::DCInCutoff), nullptr, displayInputVRange, nullptr, SettingsOptions::MinDCVoltageCells, SettingsItemIndex::DCInCutoff, 6}, /*Voltage input*/
|
{SETTINGS_DESC(SettingsItemIndex::DCInCutoff), nullptr, displayInputVRange, nullptr, SettingsOptions::MinDCVoltageCells, SettingsItemIndex::DCInCutoff, 6}, /*Voltage input*/
|
||||||
{SETTINGS_DESC(SettingsItemIndex::MinVolCell), nullptr, displayInputMinVRange, showInputVOptions, SettingsOptions::MinVoltageCells, SettingsItemIndex::MinVolCell, 5}, /*Minimum voltage input*/
|
{SETTINGS_DESC(SettingsItemIndex::MinVolCell), nullptr, displayInputMinVRange, showInputVOptions, SettingsOptions::MinVoltageCells, SettingsItemIndex::MinVolCell, 5}, /*Minimum voltage input*/
|
||||||
@@ -264,7 +264,7 @@ const menuitem advancedMenu[] = {
|
|||||||
* -Power Pulse Duration
|
* -Power Pulse Duration
|
||||||
* Factory Reset
|
* Factory Reset
|
||||||
*/
|
*/
|
||||||
{SETTINGS_DESC(SettingsItemIndex::PowerLimit), nullptr, displayPowerLimit, nullptr, SettingsOptions::PowerLimit, SettingsItemIndex::PowerLimit, 5}, /*Power limit*/
|
{SETTINGS_DESC(SettingsItemIndex::PowerLimit), nullptr, displayPowerLimit, nullptr, SettingsOptions::PowerLimit, SettingsItemIndex::PowerLimit, 5}, /*Power limit*/
|
||||||
{SETTINGS_DESC(SettingsItemIndex::CalibrateCJC), setCalibrate, displayCalibrate, nullptr, SettingsOptions::SettingsOptionsLength, SettingsItemIndex::CalibrateCJC,
|
{SETTINGS_DESC(SettingsItemIndex::CalibrateCJC), setCalibrate, displayCalibrate, nullptr, SettingsOptions::SettingsOptionsLength, SettingsItemIndex::CalibrateCJC,
|
||||||
7}, /*Calibrate Cold Junktion Compensation at next boot*/
|
7}, /*Calibrate Cold Junktion Compensation at next boot*/
|
||||||
{SETTINGS_DESC(SettingsItemIndex::VoltageCalibration), setCalibrateVIN, displayCalibrateVIN, nullptr, SettingsOptions::SettingsOptionsLength, SettingsItemIndex::VoltageCalibration,
|
{SETTINGS_DESC(SettingsItemIndex::VoltageCalibration), setCalibrateVIN, displayCalibrateVIN, nullptr, SettingsOptions::SettingsOptionsLength, SettingsItemIndex::VoltageCalibration,
|
||||||
@@ -273,7 +273,7 @@ const menuitem advancedMenu[] = {
|
|||||||
{SETTINGS_DESC(SettingsItemIndex::PowerPulseWait), nullptr, displayPowerPulseWait, showPowerPulseOptions, SettingsOptions::KeepAwakePulseWait, SettingsItemIndex::PowerPulseWait,
|
{SETTINGS_DESC(SettingsItemIndex::PowerPulseWait), nullptr, displayPowerPulseWait, showPowerPulseOptions, SettingsOptions::KeepAwakePulseWait, SettingsItemIndex::PowerPulseWait,
|
||||||
7}, /*Power Pulse Wait adjustment*/
|
7}, /*Power Pulse Wait adjustment*/
|
||||||
{SETTINGS_DESC(SettingsItemIndex::PowerPulseDuration), nullptr, displayPowerPulseDuration, showPowerPulseOptions, SettingsOptions::KeepAwakePulseDuration, SettingsItemIndex::PowerPulseDuration,
|
{SETTINGS_DESC(SettingsItemIndex::PowerPulseDuration), nullptr, displayPowerPulseDuration, showPowerPulseOptions, SettingsOptions::KeepAwakePulseDuration, SettingsItemIndex::PowerPulseDuration,
|
||||||
7}, /*Power Pulse Duration adjustment*/
|
7}, /*Power Pulse Duration adjustment*/
|
||||||
{SETTINGS_DESC(SettingsItemIndex::SettingsReset), setResetSettings, displayResetSettings, nullptr, SettingsOptions::SettingsOptionsLength, SettingsItemIndex::SettingsReset, 7}, /*Resets settings*/
|
{SETTINGS_DESC(SettingsItemIndex::SettingsReset), setResetSettings, displayResetSettings, nullptr, SettingsOptions::SettingsOptionsLength, SettingsItemIndex::SettingsReset, 7}, /*Resets settings*/
|
||||||
{0, nullptr, nullptr, nullptr, SettingsOptions::SettingsOptionsLength, SettingsItemIndex::NUM_ITEMS, 0} // end of menu marker. DO NOT REMOVE
|
{0, nullptr, nullptr, nullptr, SettingsOptions::SettingsOptionsLength, SettingsItemIndex::NUM_ITEMS, 0} // end of menu marker. DO NOT REMOVE
|
||||||
};
|
};
|
||||||
@@ -330,9 +330,9 @@ static void displayInputVRange(void) {
|
|||||||
|
|
||||||
if (getSettingValue(SettingsOptions::MinDCVoltageCells)) {
|
if (getSettingValue(SettingsOptions::MinDCVoltageCells)) {
|
||||||
OLED::printNumber(2 + getSettingValue(SettingsOptions::MinDCVoltageCells), 1, FontStyle::LARGE);
|
OLED::printNumber(2 + getSettingValue(SettingsOptions::MinDCVoltageCells), 1, FontStyle::LARGE);
|
||||||
OLED::print(SymbolCellCount, FontStyle::LARGE);
|
OLED::print(LargeSymbolCellCount, FontStyle::LARGE);
|
||||||
} else {
|
} else {
|
||||||
OLED::print(SymbolDC, FontStyle::LARGE);
|
OLED::print(LargeSymbolDC, FontStyle::LARGE);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -340,7 +340,7 @@ static bool showInputVOptions(void) { return getSettingValue(SettingsOptions::Mi
|
|||||||
static void displayInputMinVRange(void) {
|
static void displayInputMinVRange(void) {
|
||||||
|
|
||||||
OLED::printNumber(getSettingValue(SettingsOptions::MinVoltageCells) / 10, 1, FontStyle::LARGE);
|
OLED::printNumber(getSettingValue(SettingsOptions::MinVoltageCells) / 10, 1, FontStyle::LARGE);
|
||||||
OLED::print(SymbolDot, FontStyle::LARGE);
|
OLED::print(LargeSymbolDot, FontStyle::LARGE);
|
||||||
OLED::printNumber(getSettingValue(SettingsOptions::MinVoltageCells) % 10, 1, FontStyle::LARGE);
|
OLED::printNumber(getSettingValue(SettingsOptions::MinVoltageCells) % 10, 1, FontStyle::LARGE);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
@@ -352,7 +352,7 @@ static void displayQCInputV(void) {
|
|||||||
// Allows setting the voltage negotiated for QC
|
// Allows setting the voltage negotiated for QC
|
||||||
auto voltage = getSettingValue(SettingsOptions::QCIdealVoltage);
|
auto voltage = getSettingValue(SettingsOptions::QCIdealVoltage);
|
||||||
OLED::printNumber(voltage / 10, 2, FontStyle::LARGE);
|
OLED::printNumber(voltage / 10, 2, FontStyle::LARGE);
|
||||||
OLED::print(SymbolDot, FontStyle::LARGE);
|
OLED::print(LargeSymbolDot, FontStyle::LARGE);
|
||||||
OLED::printNumber(voltage % 10, 1, FontStyle::LARGE);
|
OLED::printNumber(voltage % 10, 1, FontStyle::LARGE);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -481,10 +481,10 @@ static void displaySleepTime(void) {
|
|||||||
OLED::print(translatedString(Tr->OffString), FontStyle::LARGE);
|
OLED::print(translatedString(Tr->OffString), FontStyle::LARGE);
|
||||||
} else if (getSettingValue(SettingsOptions::SleepTime) < 6) {
|
} else if (getSettingValue(SettingsOptions::SleepTime) < 6) {
|
||||||
OLED::printNumber(getSettingValue(SettingsOptions::SleepTime) * 10, 2, FontStyle::LARGE);
|
OLED::printNumber(getSettingValue(SettingsOptions::SleepTime) * 10, 2, FontStyle::LARGE);
|
||||||
OLED::print(SymbolSeconds, FontStyle::LARGE);
|
OLED::print(LargeSymbolSeconds, FontStyle::LARGE);
|
||||||
} else {
|
} else {
|
||||||
OLED::printNumber(getSettingValue(SettingsOptions::SleepTime) - 5, 2, FontStyle::LARGE);
|
OLED::printNumber(getSettingValue(SettingsOptions::SleepTime) - 5, 2, FontStyle::LARGE);
|
||||||
OLED::print(SymbolMinutes, FontStyle::LARGE);
|
OLED::print(LargeSymbolMinutes, FontStyle::LARGE);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
@@ -495,7 +495,7 @@ static void displayShutdownTime(void) {
|
|||||||
OLED::print(translatedString(Tr->OffString), FontStyle::LARGE);
|
OLED::print(translatedString(Tr->OffString), FontStyle::LARGE);
|
||||||
} else {
|
} else {
|
||||||
OLED::printNumber(getSettingValue(SettingsOptions::ShutdownTime), 2, FontStyle::LARGE);
|
OLED::printNumber(getSettingValue(SettingsOptions::ShutdownTime), 2, FontStyle::LARGE);
|
||||||
OLED::print(SymbolMinutes, FontStyle::LARGE);
|
OLED::print(LargeSymbolMinutes, FontStyle::LARGE);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -537,7 +537,7 @@ static bool setTempF(void) {
|
|||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void displayTempF(void) { OLED::print((getSettingValue(SettingsOptions::TemperatureInF)) ? SymbolDegF : SymbolDegC, FontStyle::LARGE); }
|
static void displayTempF(void) { OLED::print((getSettingValue(SettingsOptions::TemperatureInF)) ? LargeSymbolDegF : LargeSymbolDegC, FontStyle::LARGE); }
|
||||||
|
|
||||||
#ifndef NO_DISPLAY_ROTATE
|
#ifndef NO_DISPLAY_ROTATE
|
||||||
static bool setDisplayRotation(void) {
|
static bool setDisplayRotation(void) {
|
||||||
@@ -626,7 +626,7 @@ static void displayLogoTime(void) {
|
|||||||
OLED::drawArea(OLED_WIDTH - 24 - 2, 0, 24, 16, infinityIcon);
|
OLED::drawArea(OLED_WIDTH - 24 - 2, 0, 24, 16, infinityIcon);
|
||||||
} else {
|
} else {
|
||||||
OLED::printNumber(getSettingValue(SettingsOptions::LOGOTime), 2, FontStyle::LARGE);
|
OLED::printNumber(getSettingValue(SettingsOptions::LOGOTime), 2, FontStyle::LARGE);
|
||||||
OLED::print(SymbolSeconds, FontStyle::LARGE);
|
OLED::print(LargeSymbolSeconds, FontStyle::LARGE);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -640,7 +640,7 @@ static void displayPowerLimit(void) {
|
|||||||
OLED::print(translatedString(Tr->OffString), FontStyle::LARGE);
|
OLED::print(translatedString(Tr->OffString), FontStyle::LARGE);
|
||||||
} else {
|
} else {
|
||||||
OLED::printNumber(getSettingValue(SettingsOptions::PowerLimit), 2, FontStyle::LARGE);
|
OLED::printNumber(getSettingValue(SettingsOptions::PowerLimit), 2, FontStyle::LARGE);
|
||||||
OLED::print(SymbolWatts, FontStyle::LARGE);
|
OLED::print(LargeSymbolWatts, FontStyle::LARGE);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -649,7 +649,7 @@ static bool setCalibrate(void) {
|
|||||||
if (userConfirmation(translatedString(Tr->SettingsCalibrationWarning))) {
|
if (userConfirmation(translatedString(Tr->SettingsCalibrationWarning))) {
|
||||||
// User confirmed
|
// User confirmed
|
||||||
// So we now set the tick
|
// So we now set the tick
|
||||||
setSettingValue(SettingsOptions::CalibrateCJC, 1);
|
setSettingValue(SettingsOptions::CalibrateCJC, 1);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
setSettingValue(SettingsOptions::CalibrateCJC, 0);
|
setSettingValue(SettingsOptions::CalibrateCJC, 0);
|
||||||
@@ -667,9 +667,9 @@ static bool setCalibrateVIN(void) {
|
|||||||
OLED::setCursor(0, 0);
|
OLED::setCursor(0, 0);
|
||||||
uint16_t voltage = getInputVoltageX10(getSettingValue(SettingsOptions::VoltageDiv), 0);
|
uint16_t voltage = getInputVoltageX10(getSettingValue(SettingsOptions::VoltageDiv), 0);
|
||||||
OLED::printNumber(voltage / 10, 2, FontStyle::LARGE);
|
OLED::printNumber(voltage / 10, 2, FontStyle::LARGE);
|
||||||
OLED::print(SymbolDot, FontStyle::LARGE);
|
OLED::print(LargeSymbolDot, FontStyle::LARGE);
|
||||||
OLED::printNumber(voltage % 10, 1, FontStyle::LARGE, false);
|
OLED::printNumber(voltage % 10, 1, FontStyle::LARGE, false);
|
||||||
OLED::print(SymbolVolts, FontStyle::LARGE);
|
OLED::print(LargeSymbolVolts, FontStyle::LARGE);
|
||||||
|
|
||||||
switch (getButtonState()) {
|
switch (getButtonState()) {
|
||||||
case BUTTON_F_SHORT:
|
case BUTTON_F_SHORT:
|
||||||
@@ -705,7 +705,7 @@ static void displayPowerPulse(void) {
|
|||||||
|
|
||||||
if (getSettingValue(SettingsOptions::KeepAwakePulse)) {
|
if (getSettingValue(SettingsOptions::KeepAwakePulse)) {
|
||||||
OLED::printNumber(getSettingValue(SettingsOptions::KeepAwakePulse) / 10, 1, FontStyle::LARGE);
|
OLED::printNumber(getSettingValue(SettingsOptions::KeepAwakePulse) / 10, 1, FontStyle::LARGE);
|
||||||
OLED::print(SymbolDot, FontStyle::LARGE);
|
OLED::print(LargeSymbolDot, FontStyle::LARGE);
|
||||||
OLED::printNumber(getSettingValue(SettingsOptions::KeepAwakePulse) % 10, 1, FontStyle::LARGE);
|
OLED::printNumber(getSettingValue(SettingsOptions::KeepAwakePulse) % 10, 1, FontStyle::LARGE);
|
||||||
} else {
|
} else {
|
||||||
OLED::print(translatedString(Tr->OffString), FontStyle::LARGE);
|
OLED::print(translatedString(Tr->OffString), FontStyle::LARGE);
|
||||||
|
|||||||
@@ -19,9 +19,9 @@ void performCJCC(void) {
|
|||||||
OLED::setCursor(0, 0);
|
OLED::setCursor(0, 0);
|
||||||
OLED::print(translatedString(Tr->CJCCalibrating), FontStyle::SMALL);
|
OLED::print(translatedString(Tr->CJCCalibrating), FontStyle::SMALL);
|
||||||
OLED::setCursor(0, 8);
|
OLED::setCursor(0, 8);
|
||||||
OLED::print(SymbolDot, FontStyle::SMALL);
|
OLED::print(SmallSymbolDot, FontStyle::SMALL);
|
||||||
for (uint8_t x = 0; x < (i / 4); x++)
|
for (uint8_t x = 0; x < (i / 4); x++)
|
||||||
OLED::print(SymbolDot, FontStyle::SMALL);
|
OLED::print(SmallSymbolDot, FontStyle::SMALL);
|
||||||
OLED::refresh();
|
OLED::refresh();
|
||||||
osDelay(100);
|
osDelay(100);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -7,10 +7,10 @@ void showDebugMenu(void) {
|
|||||||
uint8_t screen = 0;
|
uint8_t screen = 0;
|
||||||
ButtonState b;
|
ButtonState b;
|
||||||
for (;;) {
|
for (;;) {
|
||||||
OLED::clearScreen(); // Ensure the buffer starts clean
|
OLED::clearScreen(); // Ensure the buffer starts clean
|
||||||
OLED::setCursor(0, 0); // Position the cursor at the 0,0 (top left)
|
OLED::setCursor(0, 0); // Position the cursor at the 0,0 (top left)
|
||||||
OLED::print(SymbolVersionNumber, FontStyle::SMALL); // Print version number
|
OLED::print(SmallSymbolVersionNumber, FontStyle::SMALL); // Print version number
|
||||||
OLED::setCursor(0, 8); // second line
|
OLED::setCursor(0, 8); // second line
|
||||||
OLED::print(DebugMenu[screen], FontStyle::SMALL);
|
OLED::print(DebugMenu[screen], FontStyle::SMALL);
|
||||||
switch (screen) {
|
switch (screen) {
|
||||||
case 0: // Build Date
|
case 0: // Build Date
|
||||||
@@ -74,7 +74,7 @@ void showDebugMenu(void) {
|
|||||||
break;
|
break;
|
||||||
case 6: // Handle Temp in °C
|
case 6: // Handle Temp in °C
|
||||||
OLED::printNumber(getHandleTemperature(0) / 10, 6, FontStyle::SMALL);
|
OLED::printNumber(getHandleTemperature(0) / 10, 6, FontStyle::SMALL);
|
||||||
OLED::print(SymbolDot, FontStyle::SMALL);
|
OLED::print(SmallSymbolDot, FontStyle::SMALL);
|
||||||
OLED::printNumber(getHandleTemperature(0) % 10, 1, FontStyle::SMALL);
|
OLED::printNumber(getHandleTemperature(0) % 10, 1, FontStyle::SMALL);
|
||||||
break;
|
break;
|
||||||
case 7: // Max Temp Limit in °C
|
case 7: // Max Temp Limit in °C
|
||||||
@@ -88,7 +88,7 @@ void showDebugMenu(void) {
|
|||||||
break;
|
break;
|
||||||
case 10: // Tip Resistance in Ω
|
case 10: // Tip Resistance in Ω
|
||||||
OLED::printNumber(getTipResistanceX10() / 10, 6, FontStyle::SMALL); // large to pad over so that we cover ID left overs
|
OLED::printNumber(getTipResistanceX10() / 10, 6, FontStyle::SMALL); // large to pad over so that we cover ID left overs
|
||||||
OLED::print(SymbolDot, FontStyle::SMALL);
|
OLED::print(SmallSymbolDot, FontStyle::SMALL);
|
||||||
OLED::printNumber(getTipResistanceX10() % 10, 1, FontStyle::SMALL);
|
OLED::printNumber(getTipResistanceX10() % 10, 1, FontStyle::SMALL);
|
||||||
break;
|
break;
|
||||||
case 11: // Raw Tip in µV
|
case 11: // Raw Tip in µV
|
||||||
|
|||||||
@@ -118,14 +118,14 @@ void drawHomeScreen(bool buttonLockout) {
|
|||||||
}
|
}
|
||||||
uint32_t Vlt = getInputVoltageX10(getSettingValue(SettingsOptions::VoltageDiv), 0);
|
uint32_t Vlt = getInputVoltageX10(getSettingValue(SettingsOptions::VoltageDiv), 0);
|
||||||
OLED::printNumber(Vlt / 10, 2, FontStyle::LARGE);
|
OLED::printNumber(Vlt / 10, 2, FontStyle::LARGE);
|
||||||
OLED::print(SymbolDot, FontStyle::LARGE);
|
OLED::print(LargeSymbolDot, FontStyle::LARGE);
|
||||||
OLED::printNumber(Vlt % 10, 1, FontStyle::LARGE);
|
OLED::printNumber(Vlt % 10, 1, FontStyle::LARGE);
|
||||||
if (OLED::getRotation()) {
|
if (OLED::getRotation()) {
|
||||||
OLED::setCursor(48, 8);
|
OLED::setCursor(48, 8);
|
||||||
} else {
|
} else {
|
||||||
OLED::setCursor(91, 8);
|
OLED::setCursor(91, 8);
|
||||||
}
|
}
|
||||||
OLED::print(SymbolVolts, FontStyle::SMALL);
|
OLED::print(SmallSymbolVolts, FontStyle::SMALL);
|
||||||
} else {
|
} else {
|
||||||
if (!(getSettingValue(SettingsOptions::CoolingTempBlink) && (tipTemp > 55) && (xTaskGetTickCount() % 1000 < 300)))
|
if (!(getSettingValue(SettingsOptions::CoolingTempBlink) && (tipTemp > 55) && (xTaskGetTickCount() % 1000 < 300)))
|
||||||
// Blink temp if setting enable and temp < 55°
|
// Blink temp if setting enable and temp < 55°
|
||||||
@@ -139,16 +139,16 @@ void drawHomeScreen(bool buttonLockout) {
|
|||||||
}
|
}
|
||||||
OLED::printNumber(getSettingValue(SettingsOptions::SolderingTemp), 3, FontStyle::SMALL); // draw set temp
|
OLED::printNumber(getSettingValue(SettingsOptions::SolderingTemp), 3, FontStyle::SMALL); // draw set temp
|
||||||
if (getSettingValue(SettingsOptions::TemperatureInF))
|
if (getSettingValue(SettingsOptions::TemperatureInF))
|
||||||
OLED::print(SymbolDegF, FontStyle::SMALL);
|
OLED::print(SmallSymbolDegF, FontStyle::SMALL);
|
||||||
else
|
else
|
||||||
OLED::print(SymbolDegC, FontStyle::SMALL);
|
OLED::print(SmallSymbolDegC, FontStyle::SMALL);
|
||||||
if (OLED::getRotation()) {
|
if (OLED::getRotation()) {
|
||||||
OLED::setCursor(0, 8);
|
OLED::setCursor(0, 8);
|
||||||
} else {
|
} else {
|
||||||
OLED::setCursor(67, 8); // bottom right
|
OLED::setCursor(67, 8); // bottom right
|
||||||
}
|
}
|
||||||
printVoltage(); // draw voltage then symbol (v)
|
printVoltage(); // draw voltage then symbol (v)
|
||||||
OLED::print(SymbolVolts, FontStyle::SMALL);
|
OLED::print(SmallSymbolVolts, FontStyle::SMALL);
|
||||||
}
|
}
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
@@ -32,14 +32,14 @@ int gui_SolderingSleepingMode(bool stayOff, bool autoStarted) {
|
|||||||
OLED::print(translatedString(Tr->SleepingTipAdvancedString), FontStyle::SMALL);
|
OLED::print(translatedString(Tr->SleepingTipAdvancedString), FontStyle::SMALL);
|
||||||
OLED::printNumber(tipTemp, 3, FontStyle::SMALL);
|
OLED::printNumber(tipTemp, 3, FontStyle::SMALL);
|
||||||
if (getSettingValue(SettingsOptions::TemperatureInF))
|
if (getSettingValue(SettingsOptions::TemperatureInF))
|
||||||
OLED::print(SymbolDegF, FontStyle::SMALL);
|
OLED::print(SmallSymbolDegF, FontStyle::SMALL);
|
||||||
else {
|
else {
|
||||||
OLED::print(SymbolDegC, FontStyle::SMALL);
|
OLED::print(SmallSymbolDegC, FontStyle::SMALL);
|
||||||
}
|
}
|
||||||
|
|
||||||
OLED::print(SymbolSpace, FontStyle::SMALL);
|
OLED::print(SmallSymbolSpace, FontStyle::SMALL);
|
||||||
printVoltage();
|
printVoltage();
|
||||||
OLED::print(SymbolVolts, FontStyle::SMALL);
|
OLED::print(SmallSymbolVolts, FontStyle::SMALL);
|
||||||
} else {
|
} else {
|
||||||
OLED::print(translatedString(Tr->SleepingSimpleString), FontStyle::LARGE);
|
OLED::print(translatedString(Tr->SleepingSimpleString), FontStyle::LARGE);
|
||||||
OLED::printNumber(tipTemp, 3, FontStyle::LARGE);
|
OLED::printNumber(tipTemp, 3, FontStyle::LARGE);
|
||||||
|
|||||||
@@ -119,7 +119,7 @@ void gui_solderingMode(uint8_t jumpToSleep) {
|
|||||||
} else {
|
} else {
|
||||||
OLED::setCursor(55, 8);
|
OLED::setCursor(55, 8);
|
||||||
}
|
}
|
||||||
OLED::print(SymbolPlus, FontStyle::SMALL);
|
OLED::print(SmallSymbolPlus, FontStyle::SMALL);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (OLED::getRotation()) {
|
if (OLED::getRotation()) {
|
||||||
@@ -128,9 +128,9 @@ void gui_solderingMode(uint8_t jumpToSleep) {
|
|||||||
OLED::setCursor(67, 0);
|
OLED::setCursor(67, 0);
|
||||||
}
|
}
|
||||||
OLED::printNumber(x10WattHistory.average() / 10, 2, FontStyle::SMALL);
|
OLED::printNumber(x10WattHistory.average() / 10, 2, FontStyle::SMALL);
|
||||||
OLED::print(SymbolDot, FontStyle::SMALL);
|
OLED::print(SmallSymbolDot, FontStyle::SMALL);
|
||||||
OLED::printNumber(x10WattHistory.average() % 10, 1, FontStyle::SMALL);
|
OLED::printNumber(x10WattHistory.average() % 10, 1, FontStyle::SMALL);
|
||||||
OLED::print(SymbolWatts, FontStyle::SMALL);
|
OLED::print(SmallSymbolWatts, FontStyle::SMALL);
|
||||||
|
|
||||||
if (OLED::getRotation()) {
|
if (OLED::getRotation()) {
|
||||||
OLED::setCursor(0, 8);
|
OLED::setCursor(0, 8);
|
||||||
@@ -138,22 +138,22 @@ void gui_solderingMode(uint8_t jumpToSleep) {
|
|||||||
OLED::setCursor(67, 8);
|
OLED::setCursor(67, 8);
|
||||||
}
|
}
|
||||||
printVoltage();
|
printVoltage();
|
||||||
OLED::print(SymbolVolts, FontStyle::SMALL);
|
OLED::print(SmallSymbolVolts, FontStyle::SMALL);
|
||||||
} else {
|
} else {
|
||||||
OLED::setCursor(0, 0);
|
OLED::setCursor(0, 0);
|
||||||
// We switch the layout direction depending on the orientation of the oled
|
// We switch the layout direction depending on the orientation of the oled
|
||||||
if (OLED::getRotation()) {
|
if (OLED::getRotation()) {
|
||||||
// battery
|
// battery
|
||||||
gui_drawBatteryIcon();
|
gui_drawBatteryIcon();
|
||||||
OLED::print(SymbolSpace, FontStyle::LARGE); // Space out gap between battery <-> temp
|
OLED::print(LargeSymbolSpace, FontStyle::LARGE); // Space out gap between battery <-> temp
|
||||||
gui_drawTipTemp(true, FontStyle::LARGE); // Draw current tip temp
|
gui_drawTipTemp(true, FontStyle::LARGE); // Draw current tip temp
|
||||||
|
|
||||||
// We draw boost arrow if boosting, or else gap temp <-> heat
|
// We draw boost arrow if boosting, or else gap temp <-> heat
|
||||||
// indicator
|
// indicator
|
||||||
if (boostModeOn)
|
if (boostModeOn)
|
||||||
OLED::drawSymbol(2);
|
OLED::drawSymbol(2);
|
||||||
else
|
else
|
||||||
OLED::print(SymbolSpace, FontStyle::LARGE);
|
OLED::print(LargeSymbolSpace, FontStyle::LARGE);
|
||||||
|
|
||||||
// Draw heating/cooling symbols
|
// Draw heating/cooling symbols
|
||||||
OLED::drawHeatSymbol(X10WattsToPWM(x10WattHistory.average()));
|
OLED::drawHeatSymbol(X10WattsToPWM(x10WattHistory.average()));
|
||||||
@@ -165,10 +165,10 @@ void gui_solderingMode(uint8_t jumpToSleep) {
|
|||||||
if (boostModeOn)
|
if (boostModeOn)
|
||||||
OLED::drawSymbol(2);
|
OLED::drawSymbol(2);
|
||||||
else
|
else
|
||||||
OLED::print(SymbolSpace, FontStyle::LARGE);
|
OLED::print(LargeSymbolSpace, FontStyle::LARGE);
|
||||||
gui_drawTipTemp(true, FontStyle::LARGE); // Draw current tip temp
|
gui_drawTipTemp(true, FontStyle::LARGE); // Draw current tip temp
|
||||||
|
|
||||||
OLED::print(SymbolSpace, FontStyle::LARGE); // Space out gap between battery <-> temp
|
OLED::print(LargeSymbolSpace, FontStyle::LARGE); // Space out gap between battery <-> temp
|
||||||
|
|
||||||
gui_drawBatteryIcon();
|
gui_drawBatteryIcon();
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -87,23 +87,23 @@ void gui_solderingTempAdjust(void) {
|
|||||||
return; // exit if user just doesn't press anything for a bit
|
return; // exit if user just doesn't press anything for a bit
|
||||||
|
|
||||||
if (OLED::getRotation()) {
|
if (OLED::getRotation()) {
|
||||||
OLED::print(getSettingValue(SettingsOptions::ReverseButtonTempChangeEnabled) ? SymbolPlus : SymbolMinus, FontStyle::LARGE);
|
OLED::print(getSettingValue(SettingsOptions::ReverseButtonTempChangeEnabled) ? LargeSymbolPlus : LargeSymbolMinus, FontStyle::LARGE);
|
||||||
} else {
|
} else {
|
||||||
OLED::print(getSettingValue(SettingsOptions::ReverseButtonTempChangeEnabled) ? SymbolMinus : SymbolPlus, FontStyle::LARGE);
|
OLED::print(getSettingValue(SettingsOptions::ReverseButtonTempChangeEnabled) ? LargeSymbolMinus : LargeSymbolPlus, FontStyle::LARGE);
|
||||||
}
|
}
|
||||||
|
|
||||||
OLED::print(SymbolSpace, FontStyle::LARGE);
|
OLED::print(LargeSymbolSpace, FontStyle::LARGE);
|
||||||
OLED::printNumber(getSettingValue(SettingsOptions::SolderingTemp), 3, FontStyle::LARGE);
|
OLED::printNumber(getSettingValue(SettingsOptions::SolderingTemp), 3, FontStyle::LARGE);
|
||||||
if (getSettingValue(SettingsOptions::TemperatureInF))
|
if (getSettingValue(SettingsOptions::TemperatureInF))
|
||||||
OLED::drawSymbol(0);
|
OLED::drawSymbol(0);
|
||||||
else {
|
else {
|
||||||
OLED::drawSymbol(1);
|
OLED::drawSymbol(1);
|
||||||
}
|
}
|
||||||
OLED::print(SymbolSpace, FontStyle::LARGE);
|
OLED::print(LargeSymbolSpace, FontStyle::LARGE);
|
||||||
if (OLED::getRotation()) {
|
if (OLED::getRotation()) {
|
||||||
OLED::print(getSettingValue(SettingsOptions::ReverseButtonTempChangeEnabled) ? SymbolMinus : SymbolPlus, FontStyle::LARGE);
|
OLED::print(getSettingValue(SettingsOptions::ReverseButtonTempChangeEnabled) ? LargeSymbolMinus : LargeSymbolPlus, FontStyle::LARGE);
|
||||||
} else {
|
} else {
|
||||||
OLED::print(getSettingValue(SettingsOptions::ReverseButtonTempChangeEnabled) ? SymbolPlus : SymbolMinus, FontStyle::LARGE);
|
OLED::print(getSettingValue(SettingsOptions::ReverseButtonTempChangeEnabled) ? LargeSymbolPlus : LargeSymbolMinus, FontStyle::LARGE);
|
||||||
}
|
}
|
||||||
OLED::refresh();
|
OLED::refresh();
|
||||||
GUIDelay();
|
GUIDelay();
|
||||||
|
|||||||
@@ -8,23 +8,23 @@ void showPDDebug(void) {
|
|||||||
uint8_t screen = 0;
|
uint8_t screen = 0;
|
||||||
ButtonState b;
|
ButtonState b;
|
||||||
for (;;) {
|
for (;;) {
|
||||||
OLED::clearScreen(); // Ensure the buffer starts clean
|
OLED::clearScreen(); // Ensure the buffer starts clean
|
||||||
OLED::setCursor(0, 0); // Position the cursor at the 0,0 (top left)
|
OLED::setCursor(0, 0); // Position the cursor at the 0,0 (top left)
|
||||||
OLED::print(SymbolPDDebug, FontStyle::SMALL); // Print Title
|
OLED::print(SmallSymbolPDDebug, FontStyle::SMALL); // Print Title
|
||||||
OLED::setCursor(0, 8); // second line
|
OLED::setCursor(0, 8); // second line
|
||||||
if (screen == 0) {
|
if (screen == 0) {
|
||||||
// Print the PD state machine
|
// Print the PD state machine
|
||||||
OLED::print(SymbolState, FontStyle::SMALL);
|
OLED::print(SmallSymbolState, FontStyle::SMALL);
|
||||||
OLED::print(SymbolSpace, FontStyle::SMALL);
|
OLED::print(SmallSymbolSpace, FontStyle::SMALL);
|
||||||
OLED::printNumber(USBPowerDelivery::getStateNumber(), 2, FontStyle::SMALL, true);
|
OLED::printNumber(USBPowerDelivery::getStateNumber(), 2, FontStyle::SMALL, true);
|
||||||
OLED::print(SymbolSpace, FontStyle::SMALL);
|
OLED::print(SmallSymbolSpace, FontStyle::SMALL);
|
||||||
// Also print vbus mod status
|
// Also print vbus mod status
|
||||||
if (USBPowerDelivery::fusbPresent()) {
|
if (USBPowerDelivery::fusbPresent()) {
|
||||||
if (USBPowerDelivery::negotiationComplete() || (xTaskGetTickCount() > (TICKS_SECOND * 10))) {
|
if (USBPowerDelivery::negotiationComplete() || (xTaskGetTickCount() > (TICKS_SECOND * 10))) {
|
||||||
if (!USBPowerDelivery::isVBUSConnected()) {
|
if (!USBPowerDelivery::isVBUSConnected()) {
|
||||||
OLED::print(SymbolNoVBus, FontStyle::SMALL);
|
OLED::print(SmallSymbolNoVBus, FontStyle::SMALL);
|
||||||
} else {
|
} else {
|
||||||
OLED::print(SymbolVBus, FontStyle::SMALL);
|
OLED::print(SmallSymbolVBus, FontStyle::SMALL);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -56,22 +56,22 @@ void showPDDebug(void) {
|
|||||||
} else {
|
} else {
|
||||||
// print out this entry of the proposal
|
// print out this entry of the proposal
|
||||||
OLED::printNumber(screen, 2, FontStyle::SMALL, true); // print the entry number
|
OLED::printNumber(screen, 2, FontStyle::SMALL, true); // print the entry number
|
||||||
OLED::print(SymbolSpace, FontStyle::SMALL);
|
OLED::print(SmallSymbolSpace, FontStyle::SMALL);
|
||||||
if (min_voltage > 0) {
|
if (min_voltage > 0) {
|
||||||
OLED::printNumber(min_voltage / 1000, 2, FontStyle::SMALL, true); // print the voltage
|
OLED::printNumber(min_voltage / 1000, 2, FontStyle::SMALL, true); // print the voltage
|
||||||
OLED::print(SymbolMinus, FontStyle::SMALL);
|
OLED::print(SmallSymbolMinus, FontStyle::SMALL);
|
||||||
}
|
}
|
||||||
OLED::printNumber(voltage_mv / 1000, 2, FontStyle::SMALL, true); // print the voltage
|
OLED::printNumber(voltage_mv / 1000, 2, FontStyle::SMALL, true); // print the voltage
|
||||||
OLED::print(SymbolVolts, FontStyle::SMALL);
|
OLED::print(SmallSymbolVolts, FontStyle::SMALL);
|
||||||
OLED::print(SymbolSpace, FontStyle::SMALL);
|
OLED::print(SmallSymbolSpace, FontStyle::SMALL);
|
||||||
if (wattage) {
|
if (wattage) {
|
||||||
OLED::printNumber(wattage, 3, FontStyle::SMALL, true); // print the current in 0.1A res
|
OLED::printNumber(wattage, 3, FontStyle::SMALL, true); // print the current in 0.1A res
|
||||||
OLED::print(SymbolWatts, FontStyle::SMALL);
|
OLED::print(SmallSymbolWatts, FontStyle::SMALL);
|
||||||
} else {
|
} else {
|
||||||
OLED::printNumber(current_a_x100 / 100, 2, FontStyle::SMALL, true); // print the current in 0.1A res
|
OLED::printNumber(current_a_x100 / 100, 2, FontStyle::SMALL, true); // print the current in 0.1A res
|
||||||
OLED::print(SymbolDot, FontStyle::SMALL);
|
OLED::print(SmallSymbolDot, FontStyle::SMALL);
|
||||||
OLED::printNumber(current_a_x100 % 100, 2, FontStyle::SMALL, true); // print the current in 0.1A res
|
OLED::printNumber(current_a_x100 % 100, 2, FontStyle::SMALL, true); // print the current in 0.1A res
|
||||||
OLED::print(SymbolAmps, FontStyle::SMALL);
|
OLED::print(SmallSymbolAmps, FontStyle::SMALL);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
@@ -21,9 +21,9 @@ void gui_drawTipTemp(bool symbol, const FontStyle font) {
|
|||||||
} else {
|
} else {
|
||||||
// Otherwise fall back to chars
|
// Otherwise fall back to chars
|
||||||
if (getSettingValue(SettingsOptions::TemperatureInF))
|
if (getSettingValue(SettingsOptions::TemperatureInF))
|
||||||
OLED::print(SymbolDegF, FontStyle::SMALL);
|
OLED::print(SmallSymbolDegF, FontStyle::SMALL);
|
||||||
else
|
else
|
||||||
OLED::print(SymbolDegC, FontStyle::SMALL);
|
OLED::print(SmallSymbolDegC, FontStyle::SMALL);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -3,6 +3,6 @@
|
|||||||
void printVoltage(void) {
|
void printVoltage(void) {
|
||||||
uint32_t volt = getInputVoltageX10(getSettingValue(SettingsOptions::VoltageDiv), 0);
|
uint32_t volt = getInputVoltageX10(getSettingValue(SettingsOptions::VoltageDiv), 0);
|
||||||
OLED::printNumber(volt / 10, 2, FontStyle::SMALL);
|
OLED::printNumber(volt / 10, 2, FontStyle::SMALL);
|
||||||
OLED::print(SymbolDot, FontStyle::SMALL);
|
OLED::print(SmallSymbolDot, FontStyle::SMALL);
|
||||||
OLED::printNumber(volt % 10, 1, FontStyle::SMALL);
|
OLED::printNumber(volt % 10, 1, FontStyle::SMALL);
|
||||||
}
|
}
|
||||||
@@ -22,7 +22,7 @@ bool checkForUnderVoltage(void) {
|
|||||||
OLED::setCursor(0, 8);
|
OLED::setCursor(0, 8);
|
||||||
OLED::print(translatedString(Tr->InputVoltageString), FontStyle::SMALL);
|
OLED::print(translatedString(Tr->InputVoltageString), FontStyle::SMALL);
|
||||||
printVoltage();
|
printVoltage();
|
||||||
OLED::print(SymbolVolts, FontStyle::SMALL);
|
OLED::print(SmallSymbolVolts, FontStyle::SMALL);
|
||||||
} else {
|
} else {
|
||||||
OLED::print(translatedString(Tr->UVLOWarningString), FontStyle::LARGE);
|
OLED::print(translatedString(Tr->UVLOWarningString), FontStyle::LARGE);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -11,10 +11,10 @@ void printCountdownUntilSleep(int sleepThres) {
|
|||||||
TickType_t downCount = sleepThres - xTaskGetTickCount() + lastEventTime;
|
TickType_t downCount = sleepThres - xTaskGetTickCount() + lastEventTime;
|
||||||
if (downCount > (99 * TICKS_SECOND)) {
|
if (downCount > (99 * TICKS_SECOND)) {
|
||||||
OLED::printNumber(downCount / 60000 + 1, 2, FontStyle::SMALL);
|
OLED::printNumber(downCount / 60000 + 1, 2, FontStyle::SMALL);
|
||||||
OLED::print(SymbolMinutes, FontStyle::SMALL);
|
OLED::print(SmallSymbolMinutes, FontStyle::SMALL);
|
||||||
} else {
|
} else {
|
||||||
OLED::printNumber(downCount / 1000 + 1, 2, FontStyle::SMALL);
|
OLED::printNumber(downCount / 1000 + 1, 2, FontStyle::SMALL);
|
||||||
OLED::print(SymbolSeconds, FontStyle::SMALL);
|
OLED::print(SmallSymbolSeconds, FontStyle::SMALL);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
@@ -528,7 +528,7 @@ $(OUT_OBJS_S): $(OUTPUT_DIR)/%.o: %.S Makefile
|
|||||||
|
|
||||||
Core/Gen/Translation.%.cpp $(OUTPUT_DIR)/Core/Gen/translation.files/%.pickle: ../Translations/translation_%.json \
|
Core/Gen/Translation.%.cpp $(OUTPUT_DIR)/Core/Gen/translation.files/%.pickle: ../Translations/translation_%.json \
|
||||||
../Translations/make_translation.py \
|
../Translations/make_translation.py \
|
||||||
../Translations/translations_def.js \
|
../Translations/translations_definitions.json \
|
||||||
../Translations/font_tables.py \
|
../Translations/font_tables.py \
|
||||||
Makefile ../Translations/wqy-bitmapsong/wenquanyi_9pt.bdf
|
Makefile ../Translations/wqy-bitmapsong/wenquanyi_9pt.bdf
|
||||||
@test -d Core/Gen || mkdir -p Core/Gen
|
@test -d Core/Gen || mkdir -p Core/Gen
|
||||||
@@ -609,7 +609,7 @@ $(HEXFILE_DIR)/$(model)_multi_compressed_$(2).elf : \
|
|||||||
|
|
||||||
Core/Gen/Translation_multi.$(1).cpp: $(patsubst %,../Translations/translation_%.json,$(3)) \
|
Core/Gen/Translation_multi.$(1).cpp: $(patsubst %,../Translations/translation_%.json,$(3)) \
|
||||||
../Translations/make_translation.py \
|
../Translations/make_translation.py \
|
||||||
../Translations/translations_def.js \
|
../Translations/translations_definitions.json \
|
||||||
../Translations/font_tables.py \
|
../Translations/font_tables.py \
|
||||||
Makefile ../Translations/wqy-bitmapsong/wenquanyi_9pt.bdf
|
Makefile ../Translations/wqy-bitmapsong/wenquanyi_9pt.bdf
|
||||||
@test -d Core/Gen || mkdir -p Core/Gen
|
@test -d Core/Gen || mkdir -p Core/Gen
|
||||||
|
|||||||
@@ -22,10 +22,8 @@ OutputJSONPath = os.path.join(HexFileFolder, sys.argv[1])
|
|||||||
TranslationsFilesPath = os.path.join(HERE.parent, "Translations")
|
TranslationsFilesPath = os.path.join(HERE.parent, "Translations")
|
||||||
|
|
||||||
|
|
||||||
def load_json(filename: str, skip_first_line: bool):
|
def load_json(filename: str):
|
||||||
with open(filename) as f:
|
with open(filename) as f:
|
||||||
if skip_first_line:
|
|
||||||
f.readline()
|
|
||||||
return json.loads(f.read())
|
return json.loads(f.read())
|
||||||
|
|
||||||
|
|
||||||
@@ -49,7 +47,7 @@ output_files = [os.path.join(HexFileFolder, f) for f in os.listdir(HexFileFolder
|
|||||||
|
|
||||||
parsed_languages = {}
|
parsed_languages = {}
|
||||||
for path in translation_files:
|
for path in translation_files:
|
||||||
lang: dict = load_json(path, skip_first_line=False)
|
lang: dict = load_json(path)
|
||||||
code = lang.get("languageCode", None)
|
code = lang.get("languageCode", None)
|
||||||
if code is not None:
|
if code is not None:
|
||||||
parsed_languages[code] = lang
|
parsed_languages[code] = lang
|
||||||
|
|||||||
Reference in New Issue
Block a user