Mercurial > public > ostc4
comparison Discovery/Src/text_multilanguage.c @ 773:2c243233c999
Menu shortcut for bailout / return to circuit when diving in CCR mode (mikeller)
| author | heinrichsweikamp |
|---|---|
| date | Wed, 10 May 2023 16:24:57 +0200 |
| parents | 8deb28b2d4da |
| children | 6169309d6eb9 |
comparison
equal
deleted
inserted
replaced
| 772:b7e43b28bee1 | 773:2c243233c999 |
|---|---|
| 1799 static uint8_t text_EN_Scrubber[] = "Scrubber"; | 1799 static uint8_t text_EN_Scrubber[] = "Scrubber"; |
| 1800 static uint8_t text_DE_Scrubber[] = "Atemkalk"; | 1800 static uint8_t text_DE_Scrubber[] = "Atemkalk"; |
| 1801 static uint8_t text_FR_Scrubber[] = "Scrubber"; | 1801 static uint8_t text_FR_Scrubber[] = "Scrubber"; |
| 1802 static uint8_t text_IT_Scrubber[] = "Scrubber"; | 1802 static uint8_t text_IT_Scrubber[] = "Scrubber"; |
| 1803 static uint8_t text_ES_Scrubber[] = "Scrubber"; | 1803 static uint8_t text_ES_Scrubber[] = "Scrubber"; |
| 1804 | |
| 1805 static uint8_t text_EN_BailoutShort[] = "BO"; | |
| 1806 static uint8_t text_DE_BailoutShort[] = "BO"; | |
| 1807 static uint8_t text_FR_BailoutShort[] = "BO"; | |
| 1808 static uint8_t text_IT_BailoutShort[] = "BO"; | |
| 1809 static uint8_t text_ES_BailoutShort[] = "BO"; | |
| 1810 | |
| 1811 static uint8_t text_EN_LoopShort[] = "CC"; | |
| 1812 static uint8_t text_DE_LoopShort[] = "KL"; | |
| 1813 static uint8_t text_FR_LoopShort[] = "CC"; | |
| 1814 static uint8_t text_IT_LoopShort[] = "CC"; | |
| 1815 static uint8_t text_ES_LoopShort[] = "CC"; | |
| 1804 | 1816 |
| 1805 /* Lookup Table -------------------------------------------------------------*/ | 1817 /* Lookup Table -------------------------------------------------------------*/ |
| 1806 | 1818 |
| 1807 const tText text_array[] = | 1819 const tText text_array[] = |
| 1808 { | 1820 { |
| 2068 {(uint8_t)TXT2BYTE_NotCalibrated, {text_EN_NotCalibrated, text_DE_NotCalibrated, text_FR_NotCalibrated, text_IT_NotCalibrated, text_ES_NotCalibrated}}, | 2080 {(uint8_t)TXT2BYTE_NotCalibrated, {text_EN_NotCalibrated, text_DE_NotCalibrated, text_FR_NotCalibrated, text_IT_NotCalibrated, text_ES_NotCalibrated}}, |
| 2069 | 2081 |
| 2070 {(uint8_t)TXT2BYTE_CcrSummary, {text_EN_CcrSummary, text_DE_CcrSummary, text_FR_CcrSummary, text_IT_CcrSummary, text_ES_CcrSummary}}, | 2082 {(uint8_t)TXT2BYTE_CcrSummary, {text_EN_CcrSummary, text_DE_CcrSummary, text_FR_CcrSummary, text_IT_CcrSummary, text_ES_CcrSummary}}, |
| 2071 {(uint8_t)TXT2BYTE_Setpoint, {text_EN_Setpoint, text_DE_Setpoint, text_FR_Setpoint, text_IT_Setpoint, text_ES_Setpoint}}, | 2083 {(uint8_t)TXT2BYTE_Setpoint, {text_EN_Setpoint, text_DE_Setpoint, text_FR_Setpoint, text_IT_Setpoint, text_ES_Setpoint}}, |
| 2072 {(uint8_t)TXT2BYTE_Scrubber, {text_EN_Scrubber, text_DE_Scrubber, text_FR_Scrubber, text_IT_Scrubber, text_ES_Scrubber}}, | 2084 {(uint8_t)TXT2BYTE_Scrubber, {text_EN_Scrubber, text_DE_Scrubber, text_FR_Scrubber, text_IT_Scrubber, text_ES_Scrubber}}, |
| 2085 {(uint8_t)TXT2BYTE_BailoutShort, {text_EN_BailoutShort, text_DE_BailoutShort, text_FR_BailoutShort, text_IT_BailoutShort, text_ES_BailoutShort}}, | |
| 2086 {(uint8_t)TXT2BYTE_LoopShort, {text_EN_LoopShort, text_DE_LoopShort, text_FR_LoopShort, text_IT_LoopShort, text_ES_LoopShort}}, | |
| 2073 }; | 2087 }; |
