From 5345d2e9574e9e1e9a6e9c402e0594b00b4a591e Mon Sep 17 00:00:00 2001
From: wwylele <wwylele@gmail.com>
Date: Fri, 22 Dec 2017 12:34:49 +0200
Subject: [PATCH] fixup!citra_qt: load translation from resource

---
 src/citra_qt/configuration/configure_general.cpp | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/citra_qt/configuration/configure_general.cpp b/src/citra_qt/configuration/configure_general.cpp
index ce8da9467..ad008a011 100644
--- a/src/citra_qt/configuration/configure_general.cpp
+++ b/src/citra_qt/configuration/configure_general.cpp
@@ -24,9 +24,9 @@ ConfigureGeneral::ConfigureGeneral(QWidget* parent)
         ui->language_combobox->addItem(lang, locale);
     }
 
-    // Unlike other configuration, interface language change need to be reflect on the interface
-    // immediately. This is done by passing a signal to the main window, and then retranslating when
-    // passing back.
+    // Unlike other configuration changes, interface language changes need to be reflected on the
+    // interface immediately. This is done by passing a signal to the main window, and then
+    // retranslating when passing back.
     connect(ui->language_combobox,
             static_cast<void (QComboBox::*)(int)>(&QComboBox::currentIndexChanged), this,
             &ConfigureGeneral::onLanguageChanged);