summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorskidau <skidau@gmail.com>2014-11-01 12:26:08 +1100
committerskidau <skidau@gmail.com>2014-11-01 12:26:08 +1100
commit86c100c44226c06032db4d8991e868b79bee3ecb (patch)
treefacb5acf3f9e28c7ce0f279976e9a0673ab81147 /Source/Core
parentdffbcf275bf4cd62f4443b84adee004c94906534 (diff)
parent0216a4c5fe6e13c60ee77b61991143dd0e50fb67 (diff)
Merge pull request #1442 from lioncash/wx
CheatSearchTab: Improve localization possibilities for a string
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/DolphinWX/Cheats/CheatSearchTab.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DolphinWX/Cheats/CheatSearchTab.cpp b/Source/Core/DolphinWX/Cheats/CheatSearchTab.cpp
index 78b8971865..b0999ad98b 100644
--- a/Source/Core/DolphinWX/Cheats/CheatSearchTab.cpp
+++ b/Source/Core/DolphinWX/Cheats/CheatSearchTab.cpp
@@ -264,7 +264,7 @@ void CheatSearchTab::UpdateCheatSearchResultsList()
{
m_lbox_search_results->Clear();
- wxString count_label = _("Count:") + wxString::Format(" %lu",
+ wxString count_label = wxString::Format(_("Count: %lu"),
(unsigned long)m_search_results.size());
if (m_search_results.size() > MAX_CHEAT_SEARCH_RESULTS_DISPLAY)
{