From 60aaa308bf964a9888b065420837c61a086c18ff Mon Sep 17 00:00:00 2001 From: OatmealDome Date: Sat, 16 Jul 2022 04:00:26 -0400 Subject: [PATCH 1/2] WiiPane: Trim automatic SD sync checkbox string --- Source/Core/DolphinQt/Settings/WiiPane.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Source/Core/DolphinQt/Settings/WiiPane.cpp b/Source/Core/DolphinQt/Settings/WiiPane.cpp index 9549a4e540..29ff42a0b9 100644 --- a/Source/Core/DolphinQt/Settings/WiiPane.cpp +++ b/Source/Core/DolphinQt/Settings/WiiPane.cpp @@ -193,8 +193,9 @@ void WiiPane::CreateSDCard() ++row; } - m_sync_sd_folder_checkbox = - new QCheckBox(tr("Automatically sync with Folder on emulation start and end")); + m_sync_sd_folder_checkbox = new QCheckBox(tr("Automatically Sync with Folder")); + m_sync_sd_folder_checkbox->setToolTip( + tr("Synchronizes the SD Card with the SD Sync Folder when starting and ending emulation.")); sd_settings_group_layout->addWidget(m_sync_sd_folder_checkbox, row, 0, 1, 2); ++row; From 2eecfc8595d870106420e473074a98bcc0e2dddc Mon Sep 17 00:00:00 2001 From: OatmealDome Date: Sat, 16 Jul 2022 04:08:55 -0400 Subject: [PATCH 2/2] WiiPane: Adjust capitalization of conversion buttons and alert titles --- Source/Core/DolphinQt/Settings/WiiPane.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Source/Core/DolphinQt/Settings/WiiPane.cpp b/Source/Core/DolphinQt/Settings/WiiPane.cpp index 29ff42a0b9..2c40a29ca6 100644 --- a/Source/Core/DolphinQt/Settings/WiiPane.cpp +++ b/Source/Core/DolphinQt/Settings/WiiPane.cpp @@ -195,7 +195,7 @@ void WiiPane::CreateSDCard() m_sync_sd_folder_checkbox = new QCheckBox(tr("Automatically Sync with Folder")); m_sync_sd_folder_checkbox->setToolTip( - tr("Synchronizes the SD Card with the SD Sync Folder when starting and ending emulation.")); + tr("Synchronizes the SD Card with the SD Sync Folder when starting and ending emulation.")); sd_settings_group_layout->addWidget(m_sync_sd_folder_checkbox, row, 0, 1, 2); ++row; @@ -215,11 +215,11 @@ void WiiPane::CreateSDCard() ++row; } - QPushButton* pack_now = new NonDefaultQPushButton(tr("Convert Folder to File now")); - QPushButton* unpack_now = new NonDefaultQPushButton(tr("Convert File to Folder now")); + QPushButton* pack_now = new NonDefaultQPushButton(tr("Convert Folder to File Now")); + QPushButton* unpack_now = new NonDefaultQPushButton(tr("Convert File to Folder Now")); connect(pack_now, &QPushButton::clicked, [this] { auto result = ModalMessageBox::warning( - this, tr("Convert Folder to File now"), + this, tr("Convert Folder to File Now"), tr("You are about to convert the content of the folder at %1 into the file at %2. All " "current content of the file will be deleted. Are you sure you want to continue?") .arg(QString::fromStdString(File::GetUserPath(D_WIISDCARDSYNCFOLDER_IDX))) @@ -228,12 +228,12 @@ void WiiPane::CreateSDCard() if (result == QMessageBox::Yes) { if (!Common::SyncSDFolderToSDImage(false)) - ModalMessageBox::warning(this, tr("Convert Folder to File now"), tr("Conversion failed.")); + ModalMessageBox::warning(this, tr("Convert Folder to File Now"), tr("Conversion failed.")); } }); connect(unpack_now, &QPushButton::clicked, [this] { auto result = ModalMessageBox::warning( - this, tr("Convert File to Folder now"), + this, tr("Convert File to Folder Now"), tr("You are about to convert the content of the file at %2 into the folder at %1. All " "current content of the folder will be deleted. Are you sure you want to continue?") .arg(QString::fromStdString(File::GetUserPath(D_WIISDCARDSYNCFOLDER_IDX))) @@ -242,7 +242,7 @@ void WiiPane::CreateSDCard() if (result == QMessageBox::Yes) { if (!Common::SyncSDImageToSDFolder()) - ModalMessageBox::warning(this, tr("Convert File to Folder now"), tr("Conversion failed.")); + ModalMessageBox::warning(this, tr("Convert File to Folder Now"), tr("Conversion failed.")); } }); sd_settings_group_layout->addWidget(pack_now, row, 0, 1, 1);