Skip to content
Snippets Groups Projects
Commit 428d8098 authored by Lioncash's avatar Lioncash
Browse files

yuzu/configuration/configure_profile_manager: Mark UI string as translatable

This is a user-facing string, so it should be marked as translatable.
parent 17255cd8
No related branches found
No related tags found
No related merge requests found
...@@ -98,7 +98,7 @@ ConfigureProfileManager ::ConfigureProfileManager(QWidget* parent) ...@@ -98,7 +98,7 @@ ConfigureProfileManager ::ConfigureProfileManager(QWidget* parent)
tree_view->setContextMenuPolicy(Qt::NoContextMenu); tree_view->setContextMenuPolicy(Qt::NoContextMenu);
item_model->insertColumns(0, 1); 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 // 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 umbrells of custom types.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment