mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-08 16:01:42 +12:00
Qt: mic_none and enter_button_assign translations
This commit is contained in:
parent
3c3ccdbf1e
commit
cc6a03cbd7
2 changed files with 9 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue