Qt: mic_none and enter_button_assign translations

This commit is contained in:
Megamouse 2020-04-06 22:55:34 +02:00
parent 3c3ccdbf1e
commit cc6a03cbd7
2 changed files with 9 additions and 1 deletions

View file

@ -200,6 +200,7 @@ emu_settings::Render_Creator::Render_Creator(const QString& name_null, const QSt
}
emu_settings::Microphone_Creator::Microphone_Creator()
: mic_none(tr("None", "Microphone device"))
{
RefreshList();
}
@ -857,6 +858,13 @@ QString emu_settings::GetLocalizedSetting(const QString& original, SettingsType
case spu_decoder_type::llvm: return tr("Recompiler (LLVM)");
}
break;
case emu_settings::EnterButtonAssignment:
switch (static_cast<enter_button_assign>(index))
{
case enter_button_assign::circle: return tr("Enter with circle", "Enter button assignment");
case enter_button_assign::cross: return tr("Enter with cross", "Enter button assignment");
}
break;
default:
break;
}