Skip to content
Permalink
Browse files
Merge pull request #6724 from JosJuice/qt-normal-speed
DolphinQt2: Translate the "(Normal Speed)" text
  • Loading branch information
leoetlino committed Apr 30, 2018
2 parents 36a1b42 + e74f5c4 commit c2ddddc
Showing 1 changed file with 1 addition and 1 deletion.
@@ -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);
}

0 comments on commit c2ddddc

Please sign in to comment.