diff options
| author | skidau <skidau@gmail.com> | 2014-11-01 12:26:08 +1100 |
|---|---|---|
| committer | skidau <skidau@gmail.com> | 2014-11-01 12:26:08 +1100 |
| commit | 86c100c44226c06032db4d8991e868b79bee3ecb (patch) | |
| tree | facb5acf3f9e28c7ce0f279976e9a0673ab81147 /Source/Core | |
| parent | dffbcf275bf4cd62f4443b84adee004c94906534 (diff) | |
| parent | 0216a4c5fe6e13c60ee77b61991143dd0e50fb67 (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.cpp | 2 |
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) { |
