mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 22:00:39 -06:00
DolphinQt: Add i18n comments for strings containing the word "watches"
These new strings could use the same clarification as we have for the existing string "&Delete Watch".
This commit is contained in:
@ -310,8 +310,14 @@ void WatchWidget::ShowContextMenu()
|
|||||||
const std::size_t count = m_table->selectionModel()->selectedRows().count();
|
const std::size_t count = m_table->selectionModel()->selectedRows().count();
|
||||||
if (count > 1)
|
if (count > 1)
|
||||||
{
|
{
|
||||||
|
// i18n: This kind of "watch" is used for watching emulated memory.
|
||||||
|
// It's not related to timekeeping devices.
|
||||||
menu->addAction(tr("&Delete Watches"), this, [this] { DeleteSelectedWatches(); });
|
menu->addAction(tr("&Delete Watches"), this, [this] { DeleteSelectedWatches(); });
|
||||||
|
// i18n: This kind of "watch" is used for watching emulated memory.
|
||||||
|
// It's not related to timekeeping devices.
|
||||||
menu->addAction(tr("&Lock Watches"), this, [this] { LockSelectedWatches(); });
|
menu->addAction(tr("&Lock Watches"), this, [this] { LockSelectedWatches(); });
|
||||||
|
// i18n: This kind of "watch" is used for watching emulated memory.
|
||||||
|
// It's not related to timekeeping devices.
|
||||||
menu->addAction(tr("&Unlock Watches"), this, [this] { UnlockSelectedWatches(); });
|
menu->addAction(tr("&Unlock Watches"), this, [this] { UnlockSelectedWatches(); });
|
||||||
}
|
}
|
||||||
else if (count == 1)
|
else if (count == 1)
|
||||||
|
Reference in New Issue
Block a user