mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-09-03 16:16:05 +00:00
Re-add i18n comments that were lost in the DolphinWX removal
This commit is contained in:
parent
e0cb56edb9
commit
fb6b31bba8
10 changed files with 38 additions and 3 deletions
|
@ -127,6 +127,7 @@ void USBDeviceAddToWhitelistDialog::AddUSBDeviceToWhitelist()
|
|||
QMessageBox vid_warning_box;
|
||||
vid_warning_box.setIcon(QMessageBox::Warning);
|
||||
vid_warning_box.setWindowTitle(tr("USB Whitelist Error"));
|
||||
// i18n: Here, VID means Vendor ID (for a USB device).
|
||||
vid_warning_box.setText(tr("The entered VID is invalid."));
|
||||
vid_warning_box.setStandardButtons(QMessageBox::Ok);
|
||||
vid_warning_box.exec();
|
||||
|
@ -138,6 +139,7 @@ void USBDeviceAddToWhitelistDialog::AddUSBDeviceToWhitelist()
|
|||
QMessageBox pid_warning_box;
|
||||
pid_warning_box.setIcon(QMessageBox::Warning);
|
||||
pid_warning_box.setWindowTitle(tr("USB Whitelist Error"));
|
||||
// i18n: Here, PID means Product ID (for a USB device).
|
||||
pid_warning_box.setText(tr("The entered PID is invalid."));
|
||||
pid_warning_box.setStandardButtons(QMessageBox::Ok);
|
||||
pid_warning_box.exec();
|
||||
|
|
|
@ -168,6 +168,7 @@ void WiiPane::CreateWiiRemoteSettings()
|
|||
m_wiimote_ir_sensor_position->addItem(tr("Bottom"));
|
||||
|
||||
// IR Sensitivity Slider
|
||||
// i18n: IR stands for infrared and refers to the pointer functionality of Wii Remotes
|
||||
m_wiimote_ir_sensitivity_label = new QLabel(tr("IR Sensitivity:"));
|
||||
m_wiimote_ir_sensitivity = new QSlider(Qt::Horizontal);
|
||||
m_wiimote_ir_sensitivity->setMinimum(4);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue