forked from qt-creator/qt-creator
UI text: fix capitalization
Change-Id: I16419b21a7414c0e97238d33c433a88233076cf5 Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
This commit is contained in:
@@ -510,8 +510,8 @@ void UrlTextCursorHandler::fillContextMenu(QMenu *menu, EditorContentType type)
|
||||
{
|
||||
Q_UNUSED(type);
|
||||
menu->addSeparator();
|
||||
menu->addAction(createOpenUrlAction(tr("Open URL in browser...")));
|
||||
menu->addAction(createCopyUrlAction(tr("Copy URL location")));
|
||||
menu->addAction(createOpenUrlAction(tr("Open URL in Browser...")));
|
||||
menu->addAction(createCopyUrlAction(tr("Copy URL Location")));
|
||||
}
|
||||
|
||||
QString UrlTextCursorHandler::currentContents() const
|
||||
@@ -575,8 +575,8 @@ void EmailTextCursorHandler::fillContextMenu(QMenu *menu, EditorContentType type
|
||||
{
|
||||
Q_UNUSED(type);
|
||||
menu->addSeparator();
|
||||
menu->addAction(createOpenUrlAction(tr("Send email to...")));
|
||||
menu->addAction(createCopyUrlAction(tr("Copy email address")));
|
||||
menu->addAction(createOpenUrlAction(tr("Send Email To...")));
|
||||
menu->addAction(createCopyUrlAction(tr("Copy Email Address")));
|
||||
}
|
||||
|
||||
void EmailTextCursorHandler::slotOpenUrl()
|
||||
|
Reference in New Issue
Block a user