aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/qmldesigner/components/componentcore
diff options
context:
space:
mode:
authorLeena Miettinen <riitta-leena.miettinen@qt.io>2020-11-06 16:55:13 +0100
committerLeena Miettinen <riitta-leena.miettinen@qt.io>2020-11-09 09:56:49 +0000
commit1e2939916e88fc81d262f279f4a5c09ef298d39e (patch)
tree744e41d4f03a75cd488f9839553412cde9812ca6 /src/plugins/qmldesigner/components/componentcore
parentf2254419af6a9530e33e4e1806958f550ba1a764 (diff)
Qt Quick Designer: Fix UI text
Fix capitalization, punctuation, style, and typos. Task-number: QTCREATORBUG-24873 Change-Id: Iecf7781d604b799563457cf000ab5f48e06b251c Reviewed-by: Marco Bubke <marco.bubke@qt.io> Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
Diffstat (limited to 'src/plugins/qmldesigner/components/componentcore')
-rw-r--r--src/plugins/qmldesigner/components/componentcore/designeractionmanager.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/qmldesigner/components/componentcore/designeractionmanager.cpp b/src/plugins/qmldesigner/components/componentcore/designeractionmanager.cpp
index c3d3b1ceaa..a9a8f8c64b 100644
--- a/src/plugins/qmldesigner/components/componentcore/designeractionmanager.cpp
+++ b/src/plugins/qmldesigner/components/componentcore/designeractionmanager.cpp
@@ -462,14 +462,14 @@ public:
} catch (const DocumentError &) {
QMessageBox::warning(
Core::ICore::mainWindow(),
- QCoreApplication::translate("DesignerActionManager", "Document has errors"),
+ QCoreApplication::translate("DesignerActionManager", "Document Has Errors"),
QCoreApplication::translate("DesignerActionManager",
"The document which contains the list model "
"contains errors. So we cannot edit it."));
} catch (const RewritingException &) {
QMessageBox::warning(
Core::ICore::mainWindow(),
- QCoreApplication::translate("DesignerActionManager", "Document cannot be written"),
+ QCoreApplication::translate("DesignerActionManager", "Document Cannot Be Written"),
QCoreApplication::translate("DesignerActionManager",
"An error occurred during a write attemp."));
}