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);
|
Q_UNUSED(type);
|
||||||
menu->addSeparator();
|
menu->addSeparator();
|
||||||
menu->addAction(createOpenUrlAction(tr("Open URL in browser...")));
|
menu->addAction(createOpenUrlAction(tr("Open URL in Browser...")));
|
||||||
menu->addAction(createCopyUrlAction(tr("Copy URL location")));
|
menu->addAction(createCopyUrlAction(tr("Copy URL Location")));
|
||||||
}
|
}
|
||||||
|
|
||||||
QString UrlTextCursorHandler::currentContents() const
|
QString UrlTextCursorHandler::currentContents() const
|
||||||
@@ -575,8 +575,8 @@ void EmailTextCursorHandler::fillContextMenu(QMenu *menu, EditorContentType type
|
|||||||
{
|
{
|
||||||
Q_UNUSED(type);
|
Q_UNUSED(type);
|
||||||
menu->addSeparator();
|
menu->addSeparator();
|
||||||
menu->addAction(createOpenUrlAction(tr("Send email to...")));
|
menu->addAction(createOpenUrlAction(tr("Send Email To...")));
|
||||||
menu->addAction(createCopyUrlAction(tr("Copy email address")));
|
menu->addAction(createCopyUrlAction(tr("Copy Email Address")));
|
||||||
}
|
}
|
||||||
|
|
||||||
void EmailTextCursorHandler::slotOpenUrl()
|
void EmailTextCursorHandler::slotOpenUrl()
|
||||||
|
Reference in New Issue
Block a user