From 80da767576850d845c81215f73e244f19dd4c65a Mon Sep 17 00:00:00 2001 From: comex Date: Sun, 24 Aug 2014 16:00:37 -0400 Subject: [PATCH] Improve wording of a particularly atrocious message. (Now without gettextize.) --- Source/Core/DolphinWX/GameListCtrl.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Source/Core/DolphinWX/GameListCtrl.cpp b/Source/Core/DolphinWX/GameListCtrl.cpp index e88054229a..53cdc272e2 100644 --- a/Source/Core/DolphinWX/GameListCtrl.cpp +++ b/Source/Core/DolphinWX/GameListCtrl.cpp @@ -367,13 +367,13 @@ void CGameListCtrl::Update() SConfig::GetInstance().m_ListUsa && SConfig::GetInstance().m_ListPal)) { - errorString = _("Dolphin could not find any GC/Wii ISOs. Doubleclick here to browse for files..."); + errorString = _("Dolphin could not find any GameCube/Wii ISOs or WADs. Double-click here to browse for files..."); } else { - errorString = _("Dolphin is currently set to hide all games. Doubleclick here to show all games..."); + errorString = _("Dolphin is currently set to hide all games. Double-click here to show all games..."); } - InsertColumn(0, _("No ISOs or WADS found")); + InsertColumn(0, ""); long index = InsertItem(0, errorString); SetItemFont(index, *wxITALIC_FONT); SetColumnWidth(0, wxLIST_AUTOSIZE);