瀏覽代碼

yuzu/configuration/configure_profile_manager: Mark UI string as translatable

This is a user-facing string, so it should be marked as translatable.
Lioncash 7 年之前
父節點
當前提交
428d8098a7
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/yuzu/configuration/configure_profile_manager.cpp

+ 1 - 1
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.