Terminal: Fix string typo

send -> sent

Change-Id: I7a4658f316023206f716b856027f93414013d6b8
Reviewed-by: Marcus Tillmanns <marcus.tillmanns@qt.io>
This commit is contained in:
Alessandro Portale
2023-06-08 18:00:58 +02:00
parent 1647968b92
commit c1b7d23e56

View File

@@ -252,10 +252,10 @@ void TerminalPane::initActions()
TerminalSettings::instance().lockKeyboard.setValue(locked); TerminalSettings::instance().lockKeyboard.setValue(locked);
if (locked) { if (locked) {
lockKeyboard.setIcon(LOCK_KEYBOARD_ICON.icon()); lockKeyboard.setIcon(LOCK_KEYBOARD_ICON.icon());
lockKeyboard.setToolTip(Tr::tr("Keyboard shortcuts will be send to the Terminal")); lockKeyboard.setToolTip(Tr::tr("Keyboard shortcuts will be sent to the Terminal"));
} else { } else {
lockKeyboard.setIcon(UNLOCK_KEYBOARD_ICON.icon()); lockKeyboard.setIcon(UNLOCK_KEYBOARD_ICON.icon());
lockKeyboard.setToolTip(Tr::tr("Keyboard shortcuts will be send to Qt Creator")); lockKeyboard.setToolTip(Tr::tr("Keyboard shortcuts will be sent to Qt Creator"));
} }
}; };