mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 22:29:39 -06:00
Qt: Minor text tweaks
This commit is contained in:
@ -91,7 +91,7 @@ void AdvancedPane::CreateLayout()
|
||||
|
||||
auto* custom_rtc_description =
|
||||
new QLabel(tr("This setting allows you to set a custom real time clock (RTC) separate from "
|
||||
"your current system time.\n\nIf you're unsure, leave this disabled."));
|
||||
"your current system time.\n\nIf unsure, leave this unchecked."));
|
||||
custom_rtc_description->setWordWrap(true);
|
||||
rtc_options->layout()->addWidget(custom_rtc_description);
|
||||
|
||||
|
@ -188,7 +188,7 @@ void GameCubePane::OnConfigPressed(int slot)
|
||||
{
|
||||
bool ok;
|
||||
const auto new_mac = QInputDialog::getText(
|
||||
this, tr("Broadband adapter MAC address"), tr("Enter new broadband adapter MAC address:"),
|
||||
this, tr("Broadband Adapter MAC address"), tr("Enter new Broadband Adapter MAC address:"),
|
||||
QLineEdit::Normal, QString::fromStdString(SConfig::GetInstance().m_bba_mac), &ok);
|
||||
if (ok)
|
||||
SConfig::GetInstance().m_bba_mac = new_mac.toStdString();
|
||||
|
@ -162,7 +162,7 @@ void InterfacePane::CreateUI()
|
||||
|
||||
void InterfacePane::CreateInGame()
|
||||
{
|
||||
auto* groupbox = new QGroupBox(tr("In Game"));
|
||||
auto* groupbox = new QGroupBox(tr("In-Game"));
|
||||
auto* groupbox_layout = new QVBoxLayout;
|
||||
groupbox->setLayout(groupbox_layout);
|
||||
m_main_layout->addWidget(groupbox);
|
||||
|
Reference in New Issue
Block a user