diff options
author | Lubomir I. Ivanov <neolit123@gmail.com> | 2012-10-17 20:42:31 +0300 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2012-10-17 14:13:18 -0700 |
commit | 90c9b0e311f86655e19c54aa7c7c5e463168d2bb (patch) | |
tree | 9ca2bc2baa8a7437f827ed2062f83e542fe8795a /dive.c | |
parent | 777c27d67592991150532728e79070f2c2fe5a41 (diff) | |
download | subsurface-90c9b0e311f86655e19c54aa7c7c5e463168d2bb.tar.gz |
dive.c: set some of units for localization
get_pressure_units() and get_volume_units() should
return localized strings.
[Dirk Hohndel: updated to use the correct macro]
Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'dive.c')
-rw-r--r-- | dive.c | 18 |
1 files changed, 9 insertions, 9 deletions
@@ -38,15 +38,15 @@ int get_pressure_units(unsigned int mb, const char **units) switch (output_units.pressure) { case PASCAL: pressure = mb * 100; - unit = "pascal"; + unit = _("pascal"); break; case BAR: pressure = (mb + 500) / 1000; - unit = "bar"; + unit = _("bar"); break; case PSI: pressure = mbar_to_PSI(mb); - unit = "psi"; + unit = _("psi"); break; } if (units) @@ -80,12 +80,12 @@ double get_volume_units(unsigned int ml, int *frac, const char **units) switch (output_units.volume) { case LITER: vol = ml / 1000.0; - unit = "l"; + unit = _("l"); decimals = 1; break; case CUFT: vol = ml_to_cuft(ml); - unit = "cuft"; + unit = _("cuft"); decimals = 2; break; } @@ -105,12 +105,12 @@ double get_depth_units(unsigned int mm, int *frac, const char **units) switch (output_units.length) { case METERS: d = mm / 1000.0; - unit = "m"; + unit = _("m"); decimals = d < 20; break; case FEET: d = mm_to_feet(mm); - unit = "ft"; + unit = _("ft"); decimals = 0; break; } @@ -129,11 +129,11 @@ double get_weight_units(unsigned int grams, int *frac, const char **units) if (output_units.weight == LBS) { value = grams_to_lbs(grams); - unit = "lbs"; + unit = _("lbs"); decimals = 0; } else { value = grams / 1000.0; - unit = "kg"; + unit = _("kg"); decimals = 1; } if (frac) |