mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-03 22:58:50 +00:00
Merge pull request #6724 from JosJuice/qt-normal-speed
DolphinQt2: Translate the "(Normal Speed)" text
This commit is contained in:
commit
c2ddddc723
1 changed files with 1 additions and 1 deletions
|
@ -129,7 +129,7 @@ void GeneralPane::CreateBasic()
|
||||||
if (i != 100)
|
if (i != 100)
|
||||||
str.sprintf("%i%%", i);
|
str.sprintf("%i%%", i);
|
||||||
else
|
else
|
||||||
str.sprintf("%i%% (Normal Speed)", i);
|
str.sprintf(tr("%i%% (Normal Speed)").toStdString().c_str(), i);
|
||||||
|
|
||||||
m_combobox_speedlimit->addItem(str);
|
m_combobox_speedlimit->addItem(str);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue