1
0
Fork 0
mirror of https://github.com/EdgeTX/edgetx.git synced 2025-07-23 00:05:13 +03:00

TOOLS internationalisation

This commit is contained in:
3djc 2019-04-19 16:41:21 +02:00
parent 5be4890cce
commit 962cdc7b67
16 changed files with 143 additions and 12 deletions

View file

@ -30,10 +30,10 @@ enum SpectrumFields {
void menuRadioSpectrumAnalyser(event_t event)
{
SUBMENU("SPECTRUM ANALYSER", 1, {1});
SUBMENU(STR_MENU_SPECTRUM_ANALYSER, 1, {1});
if (TELEMETRY_STREAMING()) {
lcdDrawCenteredText(LCD_H/2, "Turn off receiver");
lcdDrawCenteredText(LCD_H/2, STR_TURN_OFF_RECEIVER );
if (event == EVT_KEY_FIRST(KEY_EXIT)) {
killEvents(event);
popMenu();
@ -42,7 +42,7 @@ void menuRadioSpectrumAnalyser(event_t event)
}
if (menuEvent) {
lcdDrawCenteredText(LCD_H/2, "Stopping...");
lcdDrawCenteredText(LCD_H/2, STR_STOPPING );
lcdRefresh();
moduleSettings[g_moduleIdx].mode = MODULE_MODE_NORMAL;
/* wait 1s to resume normal operation before leaving */