mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 19:45:20 +00: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;
|
||||
}
|
||||
|
|
|
@ -203,7 +203,7 @@ public:
|
|||
struct Microphone_Creator
|
||||
{
|
||||
QStringList microphones_list;
|
||||
QString mic_none = tr("None");
|
||||
QString mic_none;
|
||||
std::array<std::string, 4> sel_list;
|
||||
std::string SetDevice(u32 num, QString& text);
|
||||
void ParseDevices(std::string list);
|
||||
|
|
Loading…
Add table
Reference in a new issue