mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-01 13:48:56 +00:00
CheatSearchTab: Improve localization possibilities for a string
Numbers might not always be right-aligned for every language.
This commit is contained in:
parent
67452c53f1
commit
0216a4c5fe
1 changed files with 1 additions and 1 deletions
|
@ -264,7 +264,7 @@ void CheatSearchTab::UpdateCheatSearchResultsList()
|
||||||
{
|
{
|
||||||
m_lbox_search_results->Clear();
|
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());
|
(unsigned long)m_search_results.size());
|
||||||
if (m_search_results.size() > MAX_CHEAT_SEARCH_RESULTS_DISPLAY)
|
if (m_search_results.size() > MAX_CHEAT_SEARCH_RESULTS_DISPLAY)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue