Mercurial > public > ostc4
comparison Discovery/Src/text_multilanguage.c @ 774:6169309d6eb9
more menu items for the compass menu: Delete bearing, and reset to land based bearing. I have also re-enabled the real time bearing display in the menu - makes it easier to set the correct bearing. (mikeller)
author | heinrichsweikamp |
---|---|
date | Wed, 10 May 2023 16:25:39 +0200 |
parents | 2c243233c999 |
children | 46c6d2380d4e |
comparison
equal
deleted
inserted
replaced
773:2c243233c999 | 774:6169309d6eb9 |
---|---|
773 static uint8_t text_EN_EndDiveMode[] = "End dive"; | 773 static uint8_t text_EN_EndDiveMode[] = "End dive"; |
774 static uint8_t text_DE_EndDiveMode[] = "Tauchgang beenden"; | 774 static uint8_t text_DE_EndDiveMode[] = "Tauchgang beenden"; |
775 static uint8_t text_FR_EndDiveMode[] = "End dive"; | 775 static uint8_t text_FR_EndDiveMode[] = "End dive"; |
776 static uint8_t text_IT_EndDiveMode[] = "End dive"; | 776 static uint8_t text_IT_EndDiveMode[] = "End dive"; |
777 static uint8_t text_ES_EndDiveMode[] = "End dive"; | 777 static uint8_t text_ES_EndDiveMode[] = "End dive"; |
778 | |
779 // Dive Menu | |
780 static uint8_t text_EN_Set[] = "Set"; | |
781 static uint8_t text_DE_Set[] = "Setzen"; | |
782 static uint8_t text_FR_Set[] = "Réinitialiser"; | |
783 static uint8_t text_IT_Set[] = "Impostare"; | |
784 static uint8_t text_ES_Set[] = "Establecer"; | |
785 | |
786 // Dive Menu | |
787 static uint8_t text_EN_Clear[] = "Clear"; | |
788 static uint8_t text_DE_Clear[] = "Löschen"; | |
789 static uint8_t text_FR_Clear[] = "Annuler"; | |
790 static uint8_t text_IT_Clear[] = "Cancellare"; | |
791 static uint8_t text_ES_Clear[] = "Borrar"; | |
792 | |
793 // Dive Menu | |
794 static uint8_t text_EN_Reset[] = "Reset"; | |
795 static uint8_t text_DE_Reset[] = "Zurücksetzen"; | |
796 static uint8_t text_FR_Reset[] = "Réinitialiser"; | |
797 static uint8_t text_IT_Reset[] = "Ripristina"; | |
798 static uint8_t text_ES_Reset[] = "Restaurar"; | |
778 | 799 |
779 // Menu SIM | 800 // Menu SIM |
780 static uint8_t text_EN_Simulator[] = "Simulator"; | 801 static uint8_t text_EN_Simulator[] = "Simulator"; |
781 static uint8_t text_DE_Simulator[] = ""; | 802 static uint8_t text_DE_Simulator[] = ""; |
782 static uint8_t text_FR_Simulator[] = "Simulateur"; | 803 static uint8_t text_FR_Simulator[] = "Simulateur"; |
2080 {(uint8_t)TXT2BYTE_NotCalibrated, {text_EN_NotCalibrated, text_DE_NotCalibrated, text_FR_NotCalibrated, text_IT_NotCalibrated, text_ES_NotCalibrated}}, | 2101 {(uint8_t)TXT2BYTE_NotCalibrated, {text_EN_NotCalibrated, text_DE_NotCalibrated, text_FR_NotCalibrated, text_IT_NotCalibrated, text_ES_NotCalibrated}}, |
2081 | 2102 |
2082 {(uint8_t)TXT2BYTE_CcrSummary, {text_EN_CcrSummary, text_DE_CcrSummary, text_FR_CcrSummary, text_IT_CcrSummary, text_ES_CcrSummary}}, | 2103 {(uint8_t)TXT2BYTE_CcrSummary, {text_EN_CcrSummary, text_DE_CcrSummary, text_FR_CcrSummary, text_IT_CcrSummary, text_ES_CcrSummary}}, |
2083 {(uint8_t)TXT2BYTE_Setpoint, {text_EN_Setpoint, text_DE_Setpoint, text_FR_Setpoint, text_IT_Setpoint, text_ES_Setpoint}}, | 2104 {(uint8_t)TXT2BYTE_Setpoint, {text_EN_Setpoint, text_DE_Setpoint, text_FR_Setpoint, text_IT_Setpoint, text_ES_Setpoint}}, |
2084 {(uint8_t)TXT2BYTE_Scrubber, {text_EN_Scrubber, text_DE_Scrubber, text_FR_Scrubber, text_IT_Scrubber, text_ES_Scrubber}}, | 2105 {(uint8_t)TXT2BYTE_Scrubber, {text_EN_Scrubber, text_DE_Scrubber, text_FR_Scrubber, text_IT_Scrubber, text_ES_Scrubber}}, |
2106 | |
2107 {(uint8_t)TXT2BYTE_Set, {text_EN_Set, text_DE_Set, text_FR_Set, text_IT_Set, text_ES_Set}}, | |
2108 {(uint8_t)TXT2BYTE_Clear, {text_EN_Clear, text_DE_Clear, text_FR_Clear, text_IT_Clear, text_ES_Clear}}, | |
2109 {(uint8_t)TXT2BYTE_Reset, {text_EN_Reset, text_DE_Reset, text_FR_Reset, text_IT_Reset, text_ES_Reset}}, | |
2085 {(uint8_t)TXT2BYTE_BailoutShort, {text_EN_BailoutShort, text_DE_BailoutShort, text_FR_BailoutShort, text_IT_BailoutShort, text_ES_BailoutShort}}, | 2110 {(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}}, | 2111 {(uint8_t)TXT2BYTE_LoopShort, {text_EN_LoopShort, text_DE_LoopShort, text_FR_LoopShort, text_IT_LoopShort, text_ES_LoopShort}}, |
2087 }; | 2112 }; |