changeset 14499:2c06434125fa draft

(svn r19070) -Fix [FS#3607]: the station coverage text was not RTL language aware (sbr)
author rubidium <rubidium@openttd.org>
date Tue, 09 Feb 2010 21:48:57 +0000
parents fd371dc2957b
children d098edf59d3e
files src/lang/english.txt src/station_gui.cpp
diffstat 2 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/src/lang/english.txt
+++ b/src/lang/english.txt
@@ -1865,8 +1865,8 @@
 STR_STATION_BUILD_COVERAGE_ON                                   :{BLACK}On
 STR_STATION_BUILD_COVERAGE_AREA_OFF_TOOLTIP                     :{BLACK}Don't highlight coverage area of proposed site
 STR_STATION_BUILD_COVERAGE_AREA_ON_TOOLTIP                      :{BLACK}Highlight coverage area of proposed site
-STR_STATION_BUILD_ACCEPTS_CARGO                                 :{BLACK}Accepts: {GOLD}
-STR_STATION_BUILD_SUPPLIES_CARGO                                :{BLACK}Supplies: {GOLD}
+STR_STATION_BUILD_ACCEPTS_CARGO                                 :{BLACK}Accepts: {GOLD}{RAW_STRING}
+STR_STATION_BUILD_SUPPLIES_CARGO                                :{BLACK}Supplies: {GOLD}{RAW_STRING}
 
 # Join station window
 STR_JOIN_STATION_CAPTION                                        :{WHITE}Join station
--- a/src/station_gui.cpp
+++ b/src/station_gui.cpp
@@ -43,7 +43,7 @@
 {
 	bool first = true;
 	char string[512];
-	char *b = InlineString(string, prefix);
+	char *b = string;
 
 	for (CargoID i = 0; i < NUM_CARGO; i++) {
 		if (b >= lastof(string) - (1 + 2 * 4)) break; // ',' or ' ' and two calls to Utf8Encode()
@@ -68,7 +68,7 @@
 	assert(b < endof(string));
 
 	SetDParamStr(0, string);
-	return DrawStringMultiLine(r.left, r.right, r.top, r.bottom, STR_JUST_RAW_STRING);
+	return DrawStringMultiLine(r.left, r.right, r.top, r.bottom, prefix);
 }
 
 /**