Update messaging used when api version is incompatible.

10.3.x-maintenance
Dominic Clifton 2015-01-08 01:50:35 +00:00
parent 6031907163
commit 3a4ea7e1c1
2 changed files with 12 additions and 4 deletions

View File

@ -117,7 +117,15 @@
"message": "No configuration received within <span style=\"color: red\">10 seconds</span>, communication <span style=\"color: red\">failed</span>"
},
"firmwareVersionNotSupported": {
"message": "This firmware version is <span style=\"color: red\">not supported</span>. Please upgrade to firmware that supports api version <strong>$1</strong> or higher. Only CLI is usable for backup purposes."
"message": "This firmware version is <span style=\"color: red\">not supported</span>. Please upgrade to firmware that supports api version <strong>$1</strong> or higher. Use CLI for backup before flashing. CLI backup/restore procedure is in the documention."
},
"tabSwitchConnectionRequired": {
"message": "You need to <strong>connect</strong> before you can view any of the tabs."
},
"tabSwitchUpgradeRequired": {
"message": "You need to <strong>upgrade</strong> your firmware before you can view any of the tabs."
},
"firmwareVersion": {
"message": "Firmware Version: <strong>$1</strong>"

View File

@ -63,12 +63,12 @@ $(document).ready(function () {
tab = $(self).parent().prop('class');
if (!CONFIGURATOR.connectionValid) {
GUI.log('You need to <strong>connect</strong> before you can view any of the tabs');
GUI.log('tabSwitchConnectionRequired');
return;
}
if (CONFIGURATOR.connectionValidCliOnly) {
GUI.log('You need to <strong>upgrade</strong> your firmware before you can view any of the tabs. Use CLI for backup before flashing!');
GUI.log(chrome.i18n.getMessage('tabSwitchUpgradeRequired'));
return;
}