diff options
| author | 2019-05-19 12:54:01 -0400 | |
|---|---|---|
| committer | 2019-05-19 12:54:04 -0400 | |
| commit | 428d8098a76e3bf065c8e7666e1fdd175bd51d12 (patch) | |
| tree | 34254caff2f9dfd715f6683895eab6dd99ea55ad /src | |
| parent | yuzu/configuration/configure_per_general: Specify string conversions explicitly (diff) | |
| download | yuzu-428d8098a76e3bf065c8e7666e1fdd175bd51d12.tar.gz yuzu-428d8098a76e3bf065c8e7666e1fdd175bd51d12.tar.xz yuzu-428d8098a76e3bf065c8e7666e1fdd175bd51d12.zip | |
yuzu/configuration/configure_profile_manager: Mark UI string as translatable
This is a user-facing string, so it should be marked as translatable.
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) | |||
| 98 | tree_view->setContextMenuPolicy(Qt::NoContextMenu); | 98 | tree_view->setContextMenuPolicy(Qt::NoContextMenu); |
| 99 | 99 | ||
| 100 | item_model->insertColumns(0, 1); | 100 | item_model->insertColumns(0, 1); |
| 101 | item_model->setHeaderData(0, Qt::Horizontal, "Users"); | 101 | item_model->setHeaderData(0, Qt::Horizontal, tr("Users")); |
| 102 | 102 | ||
| 103 | // We must register all custom types with the Qt Automoc system so that we are able to use it | 103 | // We must register all custom types with the Qt Automoc system so that we are able to use it |
| 104 | // with signals/slots. In this case, QList falls under the umbrells of custom types. | 104 | // with signals/slots. In this case, QList falls under the umbrells of custom types. |