diff options
author | Robert C. Helling <helling@atdotde.de> | 2014-06-06 21:13:54 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-06-08 20:25:33 -0700 |
commit | 125ddd955c04944398bbbf50a2a40bd1cceda4a3 (patch) | |
tree | 4d0ab6701018378119460305ddcb937735ec1eab /dive.c | |
parent | 6f568fbecd018736cb7ea41d83e3d78b647185b3 (diff) | |
download | subsurface-125ddd955c04944398bbbf50a2a40bd1cceda4a3.tar.gz |
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>
Diffstat (limited to 'dive.c')
-rw-r--r-- | dive.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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: |