mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Convert ternary "?:" into if for translation tools to work
It seems the translation tools don't like the ?: in the argument - can't blame them. So use an explicit if clause instead. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
138da489c8
commit
598102c351
1 changed files with 8 additions and 2 deletions
10
dive.c
10
dive.c
|
@ -227,11 +227,17 @@ double get_vertical_speed_units(unsigned int mms, int *frac, const char **units)
|
|||
case METERS:
|
||||
default:
|
||||
d = mms / 1000.0 * time_factor;
|
||||
unit = translate("gettextFromC", (units_p->vertical_speed_time == MINUTES) ? "m/min" : "m/s");
|
||||
if (units_p->vertical_speed_time == MINUTES)
|
||||
unit = translate("gettextFromC", "m/min");
|
||||
else
|
||||
unit = translate("gettextFromC", "m/s");
|
||||
break;
|
||||
case FEET:
|
||||
d = mm_to_feet(mms) * time_factor;
|
||||
unit = translate("gettextFromC", (units_p->vertical_speed_time == MINUTES) ? "ft/min" : "ft/s");
|
||||
if (units_p->vertical_speed_time == MINUTES)
|
||||
unit = translate("gettextFromC", "ft/min");
|
||||
else
|
||||
unit = translate("gettextFromC", "ft/s");
|
||||
break;
|
||||
}
|
||||
if (frac)
|
||||
|
|
Loading…
Add table
Reference in a new issue