diff --git a/Source/Core/DolphinQt2/MenuBar.cpp b/Source/Core/DolphinQt2/MenuBar.cpp index e8d5d59788..b78e2857da 100644 --- a/Source/Core/DolphinQt2/MenuBar.cpp +++ b/Source/Core/DolphinQt2/MenuBar.cpp @@ -228,9 +228,11 @@ void MenuBar::AddHelpMenu() void MenuBar::AddGameListTypeSection(QMenu* view_menu) { + // i18n: When this option is enabled, the game list is displayed as a table QAction* table_view = view_menu->addAction(tr("Table")); table_view->setCheckable(true); + // i18n: When this option is enabled, the game list is displayed as a list QAction* list_view = view_menu->addAction(tr("List")); list_view->setCheckable(true);