aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Anton Lundin <glance@acc.umu.se>2013-10-17 23:39:49 +0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2013-10-17 14:51:19 -0700
commit0bdf11b09406672853473132929fed1de1bcd492 (patch)
treed27e9294ae61ae6249696c7d37e7cc367855edd7
parent70a3e769e19395dbc07b0be1ce601065a27f607f (diff)
downloadsubsurface-0bdf11b09406672853473132929fed1de1bcd492.tar.gz
Rename T: to Temp: in Information box
D as in depth, T as in time and not another T as in temp. Signed-off-by: Anton Lundin <glance@acc.umu.se> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r--profile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/profile.c b/profile.c
index 5fa0cb959..7f03db518 100644
--- a/profile.c
+++ b/profile.c
@@ -1166,7 +1166,7 @@ static void plot_string(struct plot_data *entry, char *buf, int bufsize,
if (entry->temperature) {
tempvalue = get_temp_units(entry->temperature, &temp_unit);
memcpy(buf2, buf, bufsize);
- snprintf(buf, bufsize, translate("gettextFromC","%s\nT:%.1f %s"), buf2, tempvalue, temp_unit);
+ snprintf(buf, bufsize, translate("gettextFromC","%s\nTemp:%.1f %s"), buf2, tempvalue, temp_unit);
}
speedvalue = get_vertical_speed_units(abs(entry->speed), NULL, &vertical_speed_unit);