diff options
| author | Jordan Woyak <jordan.woyak@gmail.com> | 2025-07-12 16:54:44 -0500 |
|---|---|---|
| committer | Jordan Woyak <jordan.woyak@gmail.com> | 2025-07-12 16:54:44 -0500 |
| commit | 2bbd1fcf6b53e75207e45ffb6e293122aab1ee58 (patch) | |
| tree | ff3d35e3c7bc5cdd443186faef005c364bd7651a /Source | |
| parent | 633fd5df70788c50e8cec403e330f3f2aca2d97e (diff) | |
USBDeviceAddToWhitelistDialog: Remove examples from VID/PID entry placeholder text.
Diffstat (limited to 'Source')
| -rw-r--r-- | Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp b/Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp index 94f94c4c28..4beb0b6b8c 100644 --- a/Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp +++ b/Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp @@ -96,9 +96,9 @@ void USBDeviceAddToWhitelistDialog::InitControls() main_layout->addWidget(m_whitelist_buttonbox); // i18n: VID means Vendor ID (in the context of a USB device) - device_vid_textbox->setPlaceholderText(tr("Device VID (e.g., 057e)")); + device_vid_textbox->setPlaceholderText(tr("Device VID")); // i18n: PID means Product ID (in the context of a USB device), not Process ID - device_pid_textbox->setPlaceholderText(tr("Device PID (e.g., 0305)")); + device_pid_textbox->setPlaceholderText(tr("Device PID")); } void USBDeviceAddToWhitelistDialog::RefreshDeviceList() |
