Display liters with script el

Use script ell instead of 'l' for liters to avoid confusion with digit 1.
Let's hope that this glyph is available in the common fonts, otherwise
we'll have to revert it.

[Dirk Hohndel: split commit into two]

Signed-off-by: Robert C. Helling <helling@atdotde.de>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Robert C. Helling 2014-06-06 21:13:54 +02:00 committed by Dirk Hohndel
parent 6f568fbecd
commit 125ddd955c

2
dive.c
View file

@ -145,7 +145,7 @@ double get_volume_units(unsigned int ml, int *frac, const char **units)
case LITER:
default:
vol = ml / 1000.0;
unit = translate("gettextFromC", "l");
unit = translate("gettextFromC", "");
decimals = 1;
break;
case CUFT: