diff options
author | Lioncash <mathew1800@gmail.com> | 2019-05-19 18:54:01 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-05-19 18:54:04 +0200 |
commit | 428d8098a76e3bf065c8e7666e1fdd175bd51d12 (patch) | |
tree | 34254caff2f9dfd715f6683895eab6dd99ea55ad /src | |
parent | yuzu/configuration/configure_per_general: Specify string conversions explicitly (diff) | |
download | yuzu-428d8098a76e3bf065c8e7666e1fdd175bd51d12.tar yuzu-428d8098a76e3bf065c8e7666e1fdd175bd51d12.tar.gz yuzu-428d8098a76e3bf065c8e7666e1fdd175bd51d12.tar.bz2 yuzu-428d8098a76e3bf065c8e7666e1fdd175bd51d12.tar.lz yuzu-428d8098a76e3bf065c8e7666e1fdd175bd51d12.tar.xz yuzu-428d8098a76e3bf065c8e7666e1fdd175bd51d12.tar.zst yuzu-428d8098a76e3bf065c8e7666e1fdd175bd51d12.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/yuzu/configuration/configure_profile_manager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/configuration/configure_profile_manager.cpp b/src/yuzu/configuration/configure_profile_manager.cpp index 41663e39a..002a51780 100644 --- a/src/yuzu/configuration/configure_profile_manager.cpp +++ b/src/yuzu/configuration/configure_profile_manager.cpp @@ -98,7 +98,7 @@ ConfigureProfileManager ::ConfigureProfileManager(QWidget* parent) tree_view->setContextMenuPolicy(Qt::NoContextMenu); item_model->insertColumns(0, 1); - item_model->setHeaderData(0, Qt::Horizontal, "Users"); + item_model->setHeaderData(0, Qt::Horizontal, tr("Users")); // We must register all custom types with the Qt Automoc system so that we are able to use it // with signals/slots. In this case, QList falls under the umbrells of custom types. |