diff options
author | Leena Miettinen <riitta-leena.miettinen@digia.com> | 2014-03-07 16:23:25 +0100 |
---|---|---|
committer | Leena Miettinen <riitta-leena.miettinen@digia.com> | 2014-03-07 17:10:29 +0100 |
commit | fc1e1d17288ac763c63fef90ac3ddaa6fc4087ea (patch) | |
tree | 978a1dccb4eaa39e8386500b8a450cd301aaa74c /src/plugins/qnx/qnxplugin.cpp | |
parent | 944d0bfa8e54fc7e05635d569a7a8c1a822a700e (diff) | |
download | qt-creator-fc1e1d17288ac763c63fef90ac3ddaa6fc4087ea.tar.gz |
BlackBerry: fix UI text and messages
Fix punctuation and capitalization in UI text and
messages.
Change-Id: Ie3beaeda820090ecec94832b773c2f29a7bd0d95
Reviewed-by: Mehdi Fekari <mfekari@blackberry.com>
Reviewed-by: Fabian Bumberger <fbumberger@rim.com>
Diffstat (limited to 'src/plugins/qnx/qnxplugin.cpp')
-rw-r--r-- | src/plugins/qnx/qnxplugin.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/qnx/qnxplugin.cpp b/src/plugins/qnx/qnxplugin.cpp index c20ab2ba54..5d315b2e86 100644 --- a/src/plugins/qnx/qnxplugin.cpp +++ b/src/plugins/qnx/qnxplugin.cpp @@ -123,13 +123,13 @@ bool QNXPlugin::initialize(const QStringList &arguments, QString *errorString) Core::MimeGlobPattern barDescriptorGlobPattern(QLatin1String("*.xml"), Core::MimeGlobPattern::MinWeight + 1); Core::MimeType barDescriptorMimeType; barDescriptorMimeType.setType(QLatin1String(Constants::QNX_BAR_DESCRIPTOR_MIME_TYPE)); - barDescriptorMimeType.setComment(tr("Bar descriptor file (BlackBerry)")); + barDescriptorMimeType.setComment(tr("BAR descriptor file (BlackBerry)")); barDescriptorMimeType.setGlobPatterns(QList<Core::MimeGlobPattern>() << barDescriptorGlobPattern); barDescriptorMimeType.addMagicMatcher(QSharedPointer<Core::IMagicMatcher>(new BarDescriptorMagicMatcher)); barDescriptorMimeType.setSubClassesOf(QStringList() << QLatin1String("application/xml")); if (!Core::MimeDatabase::addMimeType(barDescriptorMimeType)) { - *errorString = tr("Could not add mime-type for bar-descriptor.xml editor."); + *errorString = tr("Could not add MIME type for bar-descriptor.xml editor."); return false; } addAutoReleasedObject(new BarDescriptorEditorFactory); @@ -142,13 +142,13 @@ bool QNXPlugin::initialize(const QStringList &arguments, QString *errorString) void QNXPlugin::extensionsInitialized() { ProjectExplorer::TaskHub::addCategory(Constants::QNX_TASK_CATEGORY_BARDESCRIPTOR, - tr("Bar Descriptor")); + tr("BAR Descriptor")); // Debug support QnxAttachDebugSupport *debugSupport = new QnxAttachDebugSupport(this); m_attachToQnxApplication = new QAction(this); - m_attachToQnxApplication->setText(tr("Attach to Remote QNX Application...")); + m_attachToQnxApplication->setText(tr("Attach to remote QNX application...")); connect(m_attachToQnxApplication, SIGNAL(triggered()), debugSupport, SLOT(showProcessesDialog())); const Core::Context globalcontext(Core::Constants::C_GLOBAL); |