Mercurial > public > ostc4
diff Discovery/Src/text_multilanguage.c @ 613:beeb23d18443
Added "Set Marker" to T3 quick menu:
It is now possible to set a marker while in T?_Profile view using the quick menu access. Because the the string, which is used in the dive menu, is to long, a shorter string had to be added.
author | Ideenmodellierer |
---|---|
date | Fri, 15 Jan 2021 21:33:07 +0100 |
parents | 830de438e0b0 |
children | 8fa2de4414a8 |
line wrap: on
line diff
--- a/Discovery/Src/text_multilanguage.c Fri Jan 15 21:20:29 2021 +0100 +++ b/Discovery/Src/text_multilanguage.c Fri Jan 15 21:33:07 2021 +0100 @@ -737,6 +737,12 @@ static uint8_t text_IT_SetMarker[] = "Marcatura"; static uint8_t text_ES_SetMarker[] = "Poner Marcador"; +static uint8_t text_EN_SetMarkerShort[] = "Set Mark"; +static uint8_t text_DE_SetMarkerShort[] = "Markierung"; +static uint8_t text_FR_SetMarkerShort[] = "Repère"; +static uint8_t text_IT_SetMarkerShort[] = "Marcatura"; +static uint8_t text_ES_SetMarkerShort[] = "Marcador"; + // Dive Menu static uint8_t text_EN_CompassHeading[] = "Compass heading"; static uint8_t text_DE_CompassHeading[] = "Kompasskurs"; @@ -1755,6 +1761,7 @@ {(uint8_t)TXT2BYTE_Fonts, {text_EN_Fonts, text_DE_Fonts, text_FR_Fonts, text_IT_Fonts, text_ES_Fonts}}, {(uint8_t)TXT2BYTE_ResetStopwatch, {text_EN_ResetStopwatch, text_DE_ResetStopwatch, text_FR_ResetStopwatch, text_IT_ResetStopwatch, text_ES_ResetStopwatch}}, {(uint8_t)TXT2BYTE_SetMarker, {text_EN_SetMarker, text_DE_SetMarker, text_FR_SetMarker, text_IT_SetMarker, text_ES_SetMarker}}, + {(uint8_t)TXT2BYTE_SetMarkerShort, {text_EN_SetMarkerShort, text_DE_SetMarkerShort, text_FR_SetMarkerShort, text_IT_SetMarkerShort, text_ES_SetMarkerShort}}, {(uint8_t)TXT2BYTE_CompassHeading, {text_EN_CompassHeading, text_DE_CompassHeading, text_FR_CompassHeading, text_IT_CompassHeading, text_ES_CompassHeading}}, {(uint8_t)TXT2BYTE_CalibView, {text_EN_CalibView, text_DE_CalibView, text_FR_CalibView, text_IT_CalibView, text_ES_CalibView}}, {(uint8_t)TXT2BYTE_IndicateFrame, {text_EN_IndicateFrame, text_DE_IndicateFrame, text_FR_IndicateFrame, text_IT_IndicateFrame, text_ES_IndicateFrame}},