From de6bd80f9c4deca136b2b6f560e17340605fed9e Mon Sep 17 00:00:00 2001 From: JosJuice Date: Sun, 23 Jul 2017 15:01:28 +0200 Subject: [PATCH] DolphinQt2: Add i18n comments for Table/List To avoid confusion with the verb "list" and the kind of table that's a type of furniture. --- Source/Core/DolphinQt2/MenuBar.cpp | 2 ++ 1 file changed, 2 insertions(+) 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);