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

i18n the connect config

This commit is contained in:
Miguel Angel Mulero Martinez 2018-01-14 18:15:05 +01:00
parent 815517e48d
commit 43ed9b95e4
3 changed files with 8 additions and 2 deletions

View file

@ -171,7 +171,7 @@ PortHandler.update_port_select = function (ports) {
$('div#port-picker #port').append($("<option/>", {value: ports[i], text: ports[i], data: {isManual: false}}));
}
$('div#port-picker #port').append($("<option/>", {value: 'manual', text: 'Manual Selection', data: {isManual: true}}));
$('div#port-picker #port').append($("<option/>", {value: 'manual', text: chrome.i18n.getMessage('portsSelectManual'), data: {isManual: true}}));
};
PortHandler.port_detected = function(name, code, timeout, ignore_timeout) {