UI text: fix capitalization

Change-Id: I16419b21a7414c0e97238d33c433a88233076cf5
Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
This commit is contained in:
Leena Miettinen
2012-10-01 10:11:34 +02:00
parent e06582731e
commit a17d7d7528

View File

@@ -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()