From f8f117e59972aeb0f6ee0926132e9f68ed1b4bad Mon Sep 17 00:00:00 2001 From: OatmealDome Date: Mon, 24 Jun 2024 15:06:37 -0400 Subject: [PATCH] GeneralPane: Update "Beta" auto update track to "Releases" --- Source/Core/DolphinQt/Settings/GeneralPane.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/DolphinQt/Settings/GeneralPane.cpp b/Source/Core/DolphinQt/Settings/GeneralPane.cpp index a2eda20e9d..00f7c5ea17 100644 --- a/Source/Core/DolphinQt/Settings/GeneralPane.cpp +++ b/Source/Core/DolphinQt/Settings/GeneralPane.cpp @@ -194,7 +194,7 @@ void GeneralPane::CreateAutoUpdate() auto_update_group_layout->addRow(tr("&Auto Update:"), m_combobox_update_track); for (const QString& option : - {tr("Don't Update"), tr("Beta (once a month)"), tr("Dev (multiple times a day)")}) + {tr("Don't Update"), tr("Releases (every few months)"), tr("Dev (multiple times a day)")}) m_combobox_update_track->addItem(option); }