mirror of
https://github.com/betaflight/betaflight-configurator.git
synced 2025-07-25 17:25:16 +03:00
commit
68a311230b
6 changed files with 21 additions and 9 deletions
|
@ -63,7 +63,7 @@ TABS.firmware_flasher.initialize = function (callback) {
|
|||
FirmwareCache.put(summary, intel_hex);
|
||||
}
|
||||
|
||||
$('span.progressLabel').html('<a class="save_firmware" href="#" title="Save Firmware">Loaded Online Firmware: (' + parsed_hex.bytes_total + ' bytes)</a>');
|
||||
$('span.progressLabel').html('<a class="save_firmware" href="#" title="Save Firmware">' + i18n.getMessage('firmwareFlasherFirmwareOnlineLoaded', parsed_hex.bytes_total) + '</a>');
|
||||
|
||||
self.enableFlashing(true);
|
||||
|
||||
|
|
|
@ -2448,7 +2448,7 @@ TABS.osd.initialize = function (callback) {
|
|||
$('a.flash_font').click(function () {
|
||||
if (!GUI.connect_lock) { // button disabled while flashing is in progress
|
||||
$('a.flash_font').addClass('disabled');
|
||||
$('.progressLabel').text('Uploading...');
|
||||
$('.progressLabel').text(i18n.getMessage('osdSetupUploadingFont'));
|
||||
FONT.upload($('.progress').val(0)).then(function () {
|
||||
var msg = 'Uploaded all ' + FONT.data.characters.length + ' characters';
|
||||
console.log(msg);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue