comparison Discovery/Src/text_multilanguage.c @ 865:cb386cccc7c5

When opening the logbook, or scrolling inside a logbook page, show 'Page' instead of 'Back' to make it clear that this is the way to page through the logbook pages. from mikeller
author heinrichsweikamp
date Mon, 22 Jul 2024 16:39:48 +0200
parents dd7ce655db26
children e373e90a48db
comparison
equal deleted inserted replaced
864:fa431d42b5fb 865:cb386cccc7c5
1898 static uint8_t text_EN_Finished[] = "Finished"; 1898 static uint8_t text_EN_Finished[] = "Finished";
1899 static uint8_t text_DE_Finished[] = "Beendet"; 1899 static uint8_t text_DE_Finished[] = "Beendet";
1900 static uint8_t text_FR_Finished[] = "Fini"; 1900 static uint8_t text_FR_Finished[] = "Fini";
1901 static uint8_t text_IT_Finished[] = "Finito"; 1901 static uint8_t text_IT_Finished[] = "Finito";
1902 static uint8_t text_ES_Finished[] = "Terminado"; 1902 static uint8_t text_ES_Finished[] = "Terminado";
1903
1904 static uint8_t text_EN_Page[] = "Page";
1905 static uint8_t text_DE_Page[] = "Blättern";
1906 static uint8_t text_FR_Page[] = "Défiler";
1907 static uint8_t text_IT_Page[] = "Scorrere";
1908 static uint8_t text_ES_Page[] = "Desplazarse";
1903 1909
1904 /* Lookup Table -------------------------------------------------------------*/ 1910 /* Lookup Table -------------------------------------------------------------*/
1905 1911
1906 const tText text_array[] = 1912 const tText text_array[] =
1907 { 1913 {
2187 {(uint8_t)TXT2BYTE_Reset, {text_EN_Reset, text_DE_Reset, text_FR_Reset, text_IT_Reset, text_ES_Reset}}, 2193 {(uint8_t)TXT2BYTE_Reset, {text_EN_Reset, text_DE_Reset, text_FR_Reset, text_IT_Reset, text_ES_Reset}},
2188 2194
2189 {(uint8_t)TXT2BYTE_Timer, {text_EN_Timer, text_DE_Timer, text_FR_Timer, text_IT_Timer, text_ES_Timer}}, 2195 {(uint8_t)TXT2BYTE_Timer, {text_EN_Timer, text_DE_Timer, text_FR_Timer, text_IT_Timer, text_ES_Timer}},
2190 {(uint8_t)TXT2BYTE_Starting, {text_EN_Starting, text_DE_Starting, text_FR_Starting, text_IT_Starting, text_ES_Starting}}, 2196 {(uint8_t)TXT2BYTE_Starting, {text_EN_Starting, text_DE_Starting, text_FR_Starting, text_IT_Starting, text_ES_Starting}},
2191 {(uint8_t)TXT2BYTE_Finished, {text_EN_Finished, text_DE_Finished, text_FR_Finished, text_IT_Finished, text_ES_Finished}}, 2197 {(uint8_t)TXT2BYTE_Finished, {text_EN_Finished, text_DE_Finished, text_FR_Finished, text_IT_Finished, text_ES_Finished}},
2198
2199 {(uint8_t)TXT2BYTE_Page, {text_EN_Page, text_DE_Page, text_FR_Page, text_IT_Page, text_ES_Page}},
2192 }; 2200 };