mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 14:49:42 -06:00
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:
@ -228,9 +228,11 @@ void MenuBar::AddHelpMenu()
|
|||||||
|
|
||||||
void MenuBar::AddGameListTypeSection(QMenu* view_menu)
|
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"));
|
QAction* table_view = view_menu->addAction(tr("Table"));
|
||||||
table_view->setCheckable(true);
|
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"));
|
QAction* list_view = view_menu->addAction(tr("List"));
|
||||||
list_view->setCheckable(true);
|
list_view->setCheckable(true);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user