Skip to content
Permalink
Browse files
Merge pull request #11478 from JosJuice/i18n-comments
DolphinQt: Add i18n comments for strings containing the word "watches"
  • Loading branch information
AdmiralCurtiss committed Jan 24, 2023
2 parents 8d477c6 + d0da689 commit cf2f8a7
Showing 1 changed file with 6 additions and 0 deletions.
@@ -310,8 +310,14 @@ void WatchWidget::ShowContextMenu()
const std::size_t count = m_table->selectionModel()->selectedRows().count();
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(); });
// 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(); });
// 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(); });
}
else if (count == 1)

0 comments on commit cf2f8a7

Please sign in to comment.