diff 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
line wrap: on
line diff
--- a/Discovery/Src/text_multilanguage.c	Wed May 10 16:24:57 2023 +0200
+++ b/Discovery/Src/text_multilanguage.c	Wed May 10 16:25:39 2023 +0200
@@ -776,6 +776,27 @@
 static uint8_t text_IT_EndDiveMode[] = "End dive";
 static uint8_t text_ES_EndDiveMode[] = "End dive";
 
+// Dive Menu
+static uint8_t text_EN_Set[] = "Set";
+static uint8_t text_DE_Set[] = "Setzen";
+static uint8_t text_FR_Set[] = "Réinitialiser";
+static uint8_t text_IT_Set[] = "Impostare";
+static uint8_t text_ES_Set[] = "Establecer";
+
+// Dive Menu
+static uint8_t text_EN_Clear[] = "Clear";
+static uint8_t text_DE_Clear[] = "Löschen";
+static uint8_t text_FR_Clear[] = "Annuler";
+static uint8_t text_IT_Clear[] = "Cancellare";
+static uint8_t text_ES_Clear[] = "Borrar";
+
+// Dive Menu
+static uint8_t text_EN_Reset[] = "Reset";
+static uint8_t text_DE_Reset[] = "Zurücksetzen";
+static uint8_t text_FR_Reset[] = "Réinitialiser";
+static uint8_t text_IT_Reset[] = "Ripristina";
+static uint8_t text_ES_Reset[] = "Restaurar";
+
 // Menu SIM
 static uint8_t text_EN_Simulator[] = "Simulator";
 static uint8_t text_DE_Simulator[] = "";
@@ -2082,6 +2103,10 @@
 	{(uint8_t)TXT2BYTE_CcrSummary, 	{text_EN_CcrSummary, text_DE_CcrSummary, text_FR_CcrSummary, text_IT_CcrSummary, text_ES_CcrSummary}},
 	{(uint8_t)TXT2BYTE_Setpoint, 	{text_EN_Setpoint, text_DE_Setpoint, text_FR_Setpoint, text_IT_Setpoint, text_ES_Setpoint}},
 	{(uint8_t)TXT2BYTE_Scrubber, 	{text_EN_Scrubber, text_DE_Scrubber, text_FR_Scrubber, text_IT_Scrubber, text_ES_Scrubber}},
+
+	{(uint8_t)TXT2BYTE_Set, 	{text_EN_Set, text_DE_Set, text_FR_Set, text_IT_Set, text_ES_Set}},
+	{(uint8_t)TXT2BYTE_Clear, 	{text_EN_Clear, text_DE_Clear, text_FR_Clear, text_IT_Clear, text_ES_Clear}},
+	{(uint8_t)TXT2BYTE_Reset, 	{text_EN_Reset, text_DE_Reset, text_FR_Reset, text_IT_Reset, text_ES_Reset}},
 	{(uint8_t)TXT2BYTE_BailoutShort, 	{text_EN_BailoutShort, text_DE_BailoutShort, text_FR_BailoutShort, text_IT_BailoutShort, text_ES_BailoutShort}},
 	{(uint8_t)TXT2BYTE_LoopShort, 	{text_EN_LoopShort, text_DE_LoopShort, text_FR_LoopShort, text_IT_LoopShort, text_ES_LoopShort}},
 };