CheatSearchTab: Improve localization possibilities for a string

Numbers might not always be right-aligned for every language.
This commit is contained in:
Lioncash 2014-10-29 23:19:21 -04:00
parent 67452c53f1
commit 0216a4c5fe
1 changed files with 1 additions and 1 deletions

View File

@ -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)
{