diff Discovery/Src/text_multilanguage.c @ 770:8deb28b2d4da

CCR overview in surface mode. Makes it easy to quickly check that all settings (mode, setpoints, diluent, scrubber timer) are correct when preparing to dive (also makes the OC gas list available in surface mode for the same reason).
author heinrichsweikamp
date Fri, 21 Apr 2023 09:47:44 +0200
parents 9825dcf50675
children 2c243233c999
line wrap: on
line diff
--- a/Discovery/Src/text_multilanguage.c	Fri Apr 21 09:47:06 2023 +0200
+++ b/Discovery/Src/text_multilanguage.c	Fri Apr 21 09:47:44 2023 +0200
@@ -1784,6 +1784,24 @@
 static uint8_t text_IT_NotCalibrated[] = "non calibrata";
 static uint8_t text_ES_NotCalibrated[] = "no calibrada";
 
+static uint8_t text_EN_CcrSummary[] = "CCR Overview";
+static uint8_t text_DE_CcrSummary[] = "CCR Uebersicht"; // T42 hat keine großen Umlaute hw 170103
+static uint8_t text_FR_CcrSummary[] = "Aperçu du CCR";
+static uint8_t text_IT_CcrSummary[] = "Panoramica CCR";
+static uint8_t text_ES_CcrSummary[] = "Desc. gen. CCR";
+
+static uint8_t text_EN_Setpoint[] = "Setpoint";
+static uint8_t text_DE_Setpoint[] = "Setpoint";
+static uint8_t text_FR_Setpoint[] = "Setpoint";
+static uint8_t text_IT_Setpoint[] = "Setpoint";
+static uint8_t text_ES_Setpoint[] = "Setpoint";
+
+static uint8_t text_EN_Scrubber[] = "Scrubber";
+static uint8_t text_DE_Scrubber[] = "Atemkalk";
+static uint8_t text_FR_Scrubber[] = "Scrubber";
+static uint8_t text_IT_Scrubber[] = "Scrubber";
+static uint8_t text_ES_Scrubber[] = "Scrubber";
+
 /* Lookup Table -------------------------------------------------------------*/
 
 const tText text_array[] =
@@ -2048,4 +2066,8 @@
 
 	{(uint8_t)TXT2BYTE_CheckSettings, 	{text_EN_CheckSettings, text_DE_CheckSettings, text_FR_CheckSettings, text_IT_CheckSettings, text_ES_CheckSettings}},
 	{(uint8_t)TXT2BYTE_NotCalibrated, 	{text_EN_NotCalibrated, text_DE_NotCalibrated, text_FR_NotCalibrated, text_IT_NotCalibrated, text_ES_NotCalibrated}},
+
+	{(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}},
 };