From fc1e1d17288ac763c63fef90ac3ddaa6fc4087ea Mon Sep 17 00:00:00 2001 From: Leena Miettinen Date: Fri, 7 Mar 2014 16:23:25 +0100 Subject: BlackBerry: fix UI text and messages Fix punctuation and capitalization in UI text and messages. Change-Id: Ie3beaeda820090ecec94832b773c2f29a7bd0d95 Reviewed-by: Mehdi Fekari Reviewed-by: Fabian Bumberger --- src/plugins/qnx/qnxplugin.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/plugins/qnx/qnxplugin.cpp') 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() << barDescriptorGlobPattern); barDescriptorMimeType.addMagicMatcher(QSharedPointer(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); -- cgit v1.2.1