Merge pull request #6724 from JosJuice/qt-normal-speed

DolphinQt2: Translate the "(Normal Speed)" text
This commit is contained in:
Léo Lam 2018-04-30 21:30:45 +02:00 committed by GitHub
commit c2ddddc723
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -129,7 +129,7 @@ void GeneralPane::CreateBasic()
if (i != 100)
str.sprintf("%i%%", i);
else
str.sprintf("%i%% (Normal Speed)", i);
str.sprintf(tr("%i%% (Normal Speed)").toStdString().c_str(), i);
m_combobox_speedlimit->addItem(str);
}