Qt: Fix some strings not being translatable

This commit is contained in:
Connor McLaughlin
2021-01-05 19:34:20 +10:00
parent b83a9cfe9a
commit 98a4e59f52
2 changed files with 38 additions and 22 deletions

View File

@ -212,8 +212,8 @@ u32 PlayStationMouse::StaticGetVibrationMotorCount()
Controller::SettingList PlayStationMouse::StaticGetSettings()
{
static constexpr std::array<SettingInfo, 1> settings = {{
{SettingInfo::Type::Boolean, "RelativeMouseMode", TRANSLATABLE("PlaystationMouse", "Relative Mouse Mode"),
TRANSLATABLE("PlaystationMouse", "Locks the mouse cursor to the window, use for FPS games.")},
{SettingInfo::Type::Boolean, "RelativeMouseMode", TRANSLATABLE("PlayStationMouse", "Relative Mouse Mode"),
TRANSLATABLE("PlayStationMouse", "Locks the mouse cursor to the window, use for FPS games.")},
}};
return SettingList(settings.begin(), settings.end());