comparison Discovery/Src/text_multilanguage.c @ 542:6960df7ddb09

Added new t3 view showing first deco stop and tts in parallel: TTS and deco stop may already be shown individually. Now also available in one view where TTS is limited to 99minutes (switch to hours) to avoid string overlap.
author Ideenmodellierer
date Sat, 10 Oct 2020 21:02:05 +0200
parents d784f281833a
children bce852cc3b91
comparison
equal deleted inserted replaced
541:6fbf7cd391cb 542:6960df7ddb09
1605 static uint8_t text_EN_DepthData[] = "Average and max depth"; 1605 static uint8_t text_EN_DepthData[] = "Average and max depth";
1606 static uint8_t text_DE_DepthData[] = "Mittlere und maximale Tiefe"; 1606 static uint8_t text_DE_DepthData[] = "Mittlere und maximale Tiefe";
1607 static uint8_t text_FR_DepthData[] = ""; 1607 static uint8_t text_FR_DepthData[] = "";
1608 static uint8_t text_IT_DepthData[] = ""; 1608 static uint8_t text_IT_DepthData[] = "";
1609 static uint8_t text_ES_DepthData[] = ""; 1609 static uint8_t text_ES_DepthData[] = "";
1610
1611 static uint8_t text_EN_DecoTTS[] = "Deco and TTS";
1612 static uint8_t text_DE_DecoTTS[] = "Deco und TTS";
1613 static uint8_t text_FR_DecoTTS[] = "";
1614 static uint8_t text_IT_DecoTTS[] = "";
1615 static uint8_t text_ES_DecoTTS[] = "";
1610 1616
1611 /* Lookup Table -------------------------------------------------------------*/ 1617 /* Lookup Table -------------------------------------------------------------*/
1612 1618
1613 const tText text_array[] = 1619 const tText text_array[] =
1614 { 1620 {
1836 {(uint8_t)TXT2BYTE_Stopwatch, {text_EN_Stopwatch, text_DE_Stopwatch, text_FR_Stopwatch, text_IT_Stopwatch, text_ES_Stopwatch}}, 1842 {(uint8_t)TXT2BYTE_Stopwatch, {text_EN_Stopwatch, text_DE_Stopwatch, text_FR_Stopwatch, text_IT_Stopwatch, text_ES_Stopwatch}},
1837 {(uint8_t)TXT2BYTE_TTS, {text_EN_TTS, text_DE_TTS, text_FR_TTS, text_IT_TTS, text_ES_TTS}}, 1843 {(uint8_t)TXT2BYTE_TTS, {text_EN_TTS, text_DE_TTS, text_FR_TTS, text_IT_TTS, text_ES_TTS}},
1838 {(uint8_t)TXT2BYTE_ppoNair, {text_EN_ppo2Air, text_DE_ppo2Air, text_FR_ppo2Air, text_IT_ppo2Air, text_ES_ppo2Air}}, 1844 {(uint8_t)TXT2BYTE_ppoNair, {text_EN_ppo2Air, text_DE_ppo2Air, text_FR_ppo2Air, text_IT_ppo2Air, text_ES_ppo2Air}},
1839 {(uint8_t)TXT2BYTE_Navigation, {text_EN_Navigation, text_DE_Navigation, text_FR_Navigation, text_IT_Navigation, text_ES_Navigation}}, 1845 {(uint8_t)TXT2BYTE_Navigation, {text_EN_Navigation, text_DE_Navigation, text_FR_Navigation, text_IT_Navigation, text_ES_Navigation}},
1840 {(uint8_t)TXT2BYTE_DepthData, {text_EN_DepthData, text_DE_DepthData, text_FR_DepthData, text_IT_DepthData, text_ES_DepthData}}, 1846 {(uint8_t)TXT2BYTE_DepthData, {text_EN_DepthData, text_DE_DepthData, text_FR_DepthData, text_IT_DepthData, text_ES_DepthData}},
1841 1847 {(uint8_t)TXT2BYTE_DecoTTS, {text_EN_DecoTTS, text_DE_DecoTTS, text_FR_DecoTTS, text_IT_DecoTTS, text_ES_DecoTTS}},
1842
1843 }; 1848 };