1
0
Fork 0
mirror of https://github.com/betaflight/betaflight-configurator.git synced 2025-07-23 16:25:22 +03:00

Add unknown i18n

This commit is contained in:
IvoFPV 2019-08-12 09:04:12 +02:00
parent c2bae18846
commit 2c42243bfb
2 changed files with 4 additions and 1 deletions

View file

@ -328,7 +328,7 @@ TABS.onboard_logging.initialize = function (callback) {
if (i < debugModes.length) {
debugModeSelect.append(new Option(debugModes[i].text, i));
} else {
debugModeSelect.append(new Option("UNKNOWN", i));
debugModeSelect.append(new Option(i18n.getMessage('onboardLoggingDebugModeUnknown'), i));
}
}