From aa5b017beab4c4d072a84cd54ccdcc5641697ece Mon Sep 17 00:00:00 2001 From: Stefan Fuchs Date: Sun, 5 Nov 2017 15:51:22 +0100 Subject: [PATCH] Fix typo which prevented correct translation of word "Density" Signed-off-by: Stefan Fuchs --- core/profile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/profile.c b/core/profile.c index ce053a67c..9150f20dd 100644 --- a/core/profile.c +++ b/core/profile.c @@ -1374,7 +1374,7 @@ static void plot_string(struct plot_info *pi, struct plot_data *entry, struct me put_format(b, translate("gettextFromC", "END: %d%s\nEADD: %d%s / %.1fg/ℓ\n"), end, depth_unit, eadd, depth_unit, entry->density); break; case AIR: - put_format(b, translate("gettectFromC", "Density: %.1fg/ℓ\n"), entry->density); + put_format(b, translate("gettextFromC", "Density: %.1fg/ℓ\n"), entry->density); case FREEDIVING: /* nothing */ break;