comparison Discovery/Src/text_multilanguage.c @ 873:e373e90a48db Evo_2_23

merge new screen stuff
author heinrichsweikamp
date Wed, 14 Aug 2024 16:44:46 +0200
parents 17d9d6eddd8d cb386cccc7c5
children 608d3e918146
comparison
equal deleted inserted replaced
872:5e027b0f7475 873:e373e90a48db
1929 static uint8_t text_EN_Finished[] = "Finished"; 1929 static uint8_t text_EN_Finished[] = "Finished";
1930 static uint8_t text_DE_Finished[] = "Beendet"; 1930 static uint8_t text_DE_Finished[] = "Beendet";
1931 static uint8_t text_FR_Finished[] = "Fini"; 1931 static uint8_t text_FR_Finished[] = "Fini";
1932 static uint8_t text_IT_Finished[] = "Finito"; 1932 static uint8_t text_IT_Finished[] = "Finito";
1933 static uint8_t text_ES_Finished[] = "Terminado"; 1933 static uint8_t text_ES_Finished[] = "Terminado";
1934
1935 static uint8_t text_EN_Page[] = "Page";
1936 static uint8_t text_DE_Page[] = "Blättern";
1937 static uint8_t text_FR_Page[] = "Défiler";
1938 static uint8_t text_IT_Page[] = "Scorrere";
1939 static uint8_t text_ES_Page[] = "Desplazarse";
1934 1940
1935 /* Lookup Table -------------------------------------------------------------*/ 1941 /* Lookup Table -------------------------------------------------------------*/
1936 1942
1937 const tText text_array[] = 1943 const tText text_array[] =
1938 { 1944 {
2224 {(uint8_t)TXT2BYTE_Pressure, {text_EN_Pressure, text_DE_Pressure, text_FR_Pressure, text_IT_Pressure, text_ES_Pressure}}, 2230 {(uint8_t)TXT2BYTE_Pressure, {text_EN_Pressure, text_DE_Pressure, text_FR_Pressure, text_IT_Pressure, text_ES_Pressure}},
2225 2231
2226 {(uint8_t)TXT2BYTE_Timer, {text_EN_Timer, text_DE_Timer, text_FR_Timer, text_IT_Timer, text_ES_Timer}}, 2232 {(uint8_t)TXT2BYTE_Timer, {text_EN_Timer, text_DE_Timer, text_FR_Timer, text_IT_Timer, text_ES_Timer}},
2227 {(uint8_t)TXT2BYTE_Starting, {text_EN_Starting, text_DE_Starting, text_FR_Starting, text_IT_Starting, text_ES_Starting}}, 2233 {(uint8_t)TXT2BYTE_Starting, {text_EN_Starting, text_DE_Starting, text_FR_Starting, text_IT_Starting, text_ES_Starting}},
2228 {(uint8_t)TXT2BYTE_Finished, {text_EN_Finished, text_DE_Finished, text_FR_Finished, text_IT_Finished, text_ES_Finished}}, 2234 {(uint8_t)TXT2BYTE_Finished, {text_EN_Finished, text_DE_Finished, text_FR_Finished, text_IT_Finished, text_ES_Finished}},
2235
2236 {(uint8_t)TXT2BYTE_Page, {text_EN_Page, text_DE_Page, text_FR_Page, text_IT_Page, text_ES_Page}},
2229 }; 2237 };