diff options
author | Lioncash <mathew1800@gmail.com> | 2019-05-19 01:17:53 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-05-19 01:18:37 -0400 |
commit | 22324e3ef13b17ef64a1be46c59dd419dc2f3633 (patch) | |
tree | b1f6f05cc63de1d1edf0466e63946918bf75e7da /src/yuzu/applets/profile_select.cpp | |
parent | fb85d5670d54e526035d83f66f7689eebda73be2 (diff) |
yuzu/applets/profile_select: Mark header string as translatable
This is a user-facing string, so it should be marked as translatable.
Diffstat (limited to 'src/yuzu/applets/profile_select.cpp')
-rw-r--r-- | src/yuzu/applets/profile_select.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/yuzu/applets/profile_select.cpp b/src/yuzu/applets/profile_select.cpp index 743b24d767..7fbc9deebf 100644 --- a/src/yuzu/applets/profile_select.cpp +++ b/src/yuzu/applets/profile_select.cpp @@ -84,10 +84,10 @@ QtProfileSelectionDialog::QtProfileSelectionDialog(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. + // with signals/slots. In this case, QList falls under the umbrella of custom types. qRegisterMetaType<QList<QStandardItem*>>("QList<QStandardItem*>"); layout->setContentsMargins(0, 0, 0, 0); |