diff --git a/_locales/en/messages.json b/_locales/en/messages.json index 8d8a9f9fa7..8d9fbac714 100644 --- a/_locales/en/messages.json +++ b/_locales/en/messages.json @@ -304,5 +304,24 @@ }, "receiverEepromSaved": { "message": "EEPROM saved" + }, + + "auxiliaryName": { + "message": "Name" + }, + "auxiliaryLow": { + "message": "LOW" + }, + "auxiliaryMed": { + "message": "MED" + }, + "auxiliaryHigh": { + "message": "HIGH" + }, + "auxiliaryButtonSave": { + "message": "Save" + }, + "auxiliaryEepromSaved": { + "message": "EEPROM saved" } } \ No newline at end of file diff --git a/tabs/auxiliary_configuration.html b/tabs/auxiliary_configuration.html index abb916f65b..9a0eb8653b 100644 --- a/tabs/auxiliary_configuration.html +++ b/tabs/auxiliary_configuration.html @@ -8,20 +8,20 @@ AUX 4 - Name - LOW - MED - HIGH - LOW - MED - HIGH - LOW - MED - HIGH - LOW - MED - HIGH + + + + + + + + + + + + + - Save + \ No newline at end of file diff --git a/tabs/auxiliary_configuration.js b/tabs/auxiliary_configuration.js index 8d8908e873..8ea4b88a06 100644 --- a/tabs/auxiliary_configuration.js +++ b/tabs/auxiliary_configuration.js @@ -98,7 +98,7 @@ function tab_initialize_auxiliary_configuration() { function save_to_eeprom() { send_message(MSP_codes.MSP_EEPROM_WRITE, false, false, function() { - GUI.log('EEPROM saved'); + GUI.log(chrome.i18n.getMessage('auxiliaryEepromSaved')); var element = $('a.update'); element.addClass('success');