diff options
author | frosch <frosch@openttd.org> | 2010-06-08 20:14:58 +0000 |
---|---|---|
committer | frosch <frosch@openttd.org> | 2010-06-08 20:14:58 +0000 |
commit | 06ba1c5f5e51932652c2f48c57e6b120c5bfd255 (patch) | |
tree | 43290d98ea7afcdbe20544739aeb87f964c6582f | |
parent | c75226f4798bef1c71226f31beb5f5456ba948a1 (diff) | |
download | openttd-06ba1c5f5e51932652c2f48c57e6b120c5bfd255.tar.xz |
(svn r19948) -Doc: Comments about display units missed height unit. (Krille)
-rw-r--r-- | src/strings.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/strings.cpp b/src/strings.cpp index e3c00b7d6..b25014e5a 100644 --- a/src/strings.cpp +++ b/src/strings.cpp @@ -516,7 +516,7 @@ struct Units { /* Unit conversions */ static const Units units[] = { - { // Imperial (Original, mph, hp, metric ton, litre, kN) + { // Imperial (Original, mph, hp, metric ton, litre, kN, ft) 1, 0, STR_UNITS_VELOCITY_IMPERIAL, 1, 0, STR_UNITS_POWER_IMPERIAL, 1, 0, STR_UNITS_WEIGHT_SHORT_METRIC, STR_UNITS_WEIGHT_LONG_METRIC, @@ -524,7 +524,7 @@ static const Units units[] = { 1, 0, STR_UNITS_FORCE_SI, 3, 0, STR_UNITS_HEIGHT_IMPERIAL, }, - { // Metric (km/h, hp, metric ton, litre, kN) + { // Metric (km/h, hp, metric ton, litre, kN, metre) 103, 6, STR_UNITS_VELOCITY_METRIC, 1, 0, STR_UNITS_POWER_METRIC, 1, 0, STR_UNITS_WEIGHT_SHORT_METRIC, STR_UNITS_WEIGHT_LONG_METRIC, @@ -532,7 +532,7 @@ static const Units units[] = { 1, 0, STR_UNITS_FORCE_SI, 1, 0, STR_UNITS_HEIGHT_SI, }, - { // SI (m/s, kilowatt, kilogram, cubic metres, kilonewton) + { // SI (m/s, kilowatt, kilogram, cubic metre, kilonewton, metre) 1831, 12, STR_UNITS_VELOCITY_SI, 764, 10, STR_UNITS_POWER_SI, 1000, 0, STR_UNITS_WEIGHT_SHORT_SI, STR_UNITS_WEIGHT_LONG_SI, |