From e74f5c4f4278b7ecd7187131d8af19f2ff98d4d6 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Mon, 30 Apr 2018 13:42:48 +0200 Subject: [PATCH] DolphinQt2: Translate the "(Normal Speed)" text --- Source/Core/DolphinQt2/Settings/GeneralPane.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/DolphinQt2/Settings/GeneralPane.cpp b/Source/Core/DolphinQt2/Settings/GeneralPane.cpp index 3820bab34f..5a77c3bd77 100644 --- a/Source/Core/DolphinQt2/Settings/GeneralPane.cpp +++ b/Source/Core/DolphinQt2/Settings/GeneralPane.cpp @@ -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); }