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.
This commit is contained in:
JosJuice 2017-07-23 15:01:28 +02:00
parent b32fe5e41d
commit de6bd80f9c

View File

@ -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);