mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
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:
parent
6f568fbecd
commit
125ddd955c
1 changed files with 1 additions and 1 deletions
2
dive.c
2
dive.c
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue