qt: Add translation resources

This commit is contained in:
kd-11 2022-02-13 14:22:53 +03:00 committed by kd-11
parent b7a57ac4b0
commit 9581e4ff98
1 changed files with 7 additions and 0 deletions

View File

@ -1153,6 +1153,13 @@ QString emu_settings::GetLocalizedSetting(const QString& original, emu_settings_
case CellSysutilLicenseArea::CELL_SYSUTIL_LICENSE_AREA_OTHER: return tr("Other", "License Area");
}
break;
case emu_settings_type::VulkanAsyncSchedulerDriver:
switch (static_cast<vk_gpu_scheduler_mode>(index))
{
case vk_gpu_scheduler_mode::safe: return tr("Safe");
case vk_gpu_scheduler_mode::fast: return tr("Fast");
}
break;
default:
break;
}