diff --git a/UI/ControlMappingScreen.cpp b/UI/ControlMappingScreen.cpp index b291851e46..a826416b11 100644 --- a/UI/ControlMappingScreen.cpp +++ b/UI/ControlMappingScreen.cpp @@ -246,7 +246,8 @@ UI::EventReturn ControlMappingScreen::OnAutoConfigure(UI::EventParams ¶ms) { for (auto s : KeyMap::GetSeenPads()) { items.push_back(s); } - ListPopupScreen *autoConfList = new ListPopupScreen("Autoconfigure for device", items, -1); + I18NCategory *keyI18N = GetI18NCategory("KeyMapping"); + ListPopupScreen *autoConfList = new ListPopupScreen(keyI18N->T("Autoconfigure for device"), items, -1); screenManager()->push(autoConfList); return UI::EVENT_DONE; }