summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpeter1138 <peter1138@openttd.org>2006-05-07 13:10:48 +0000
committerpeter1138 <peter1138@openttd.org>2006-05-07 13:10:48 +0000
commitadd861333d505ed93748b8daabfb6e3bf2e1e5e0 (patch)
tree2b6da052340c2c39761b10ed5da2bb99eba7ff79
parent5c3887cdb4bf14a1033f843da06b3ddd5579569d (diff)
downloadopenttd-add861333d505ed93748b8daabfb6e3bf2e1e5e0.tar.xz
(svn r4773) - Newstations: add proper tooltips to the station builder window
-rw-r--r--lang/english.txt2
-rw-r--r--rail_gui.c6
2 files changed, 5 insertions, 3 deletions
diff --git a/lang/english.txt b/lang/english.txt
index a7907a505..9f8f3fab4 100644
--- a/lang/english.txt
+++ b/lang/english.txt
@@ -1166,6 +1166,8 @@ STR_DRAG_WHOLE_TRAIN_TO_SELL_TIP :{BLACK}Drag tra
STR_DRAG_DROP :{BLACK}Drag & Drop
STR_STATION_DRAG_DROP :{BLACK}Build a station using drag & drop
+STR_SELECT_STATION_CLASS_TIP :{BLACK}Select a station class to display
+STR_SELECT_STATION_TYPE_TIP :{BLACK}Select the station type to build
STR_FAST_FORWARD :{BLACK}Fast forward the game
STR_MESSAGE_HISTORY :{WHITE}Message History
diff --git a/rail_gui.c b/rail_gui.c
index 5a7806a2e..9496900e8 100644
--- a/rail_gui.c
+++ b/rail_gui.c
@@ -866,9 +866,9 @@ static const Widget _newstation_builder_widgets[] = {
{ WWT_TEXTBTN, RESIZE_NONE, 14, 74, 133, 242, 253, STR_02DA_ON, STR_3064_HIGHLIGHT_COVERAGE_AREA},
/* newstations gui additions */
-{ WWT_6, RESIZE_NONE, 14, 7, 140, 17, 28, STR_02BD, STR_WAYPOINT_GRAPHICS_TIP},
-{ WWT_TEXTBTN, RESIZE_NONE, 14, 129, 139, 18, 27, STR_0225, STR_WAYPOINT_GRAPHICS_TIP},
-{ WWT_MATRIX, RESIZE_NONE, 14, 7, 128, 32, 102, 0x501, STR_WAYPOINT_GRAPHICS_TIP},
+{ WWT_6, RESIZE_NONE, 14, 7, 140, 17, 28, STR_02BD, STR_SELECT_STATION_CLASS_TIP},
+{ WWT_TEXTBTN, RESIZE_NONE, 14, 129, 139, 18, 27, STR_0225, STR_SELECT_STATION_CLASS_TIP},
+{ WWT_MATRIX, RESIZE_NONE, 14, 7, 128, 32, 102, 0x501, STR_SELECT_STATION_TYPE_TIP},
{ WWT_SCROLLBAR, RESIZE_NONE, 14, 129, 140, 32, 102, 0x0, STR_0190_SCROLL_BAR_SCROLLS_LIST},
{ WIDGETS_END},
};