diff --git a/share/qtcreator/qmldesigner/itemLibraryQmlSources/Assets.qml b/share/qtcreator/qmldesigner/itemLibraryQmlSources/Assets.qml
index 872afff1ac8..de2ded3c9d7 100644
--- a/share/qtcreator/qmldesigner/itemLibraryQmlSources/Assets.qml
+++ b/share/qtcreator/qmldesigner/itemLibraryQmlSources/Assets.qml
@@ -167,7 +167,7 @@ Item {
Dialog {
id: renameFolderDialog
- title: qsTr("Rename folder")
+ title: qsTr("Rename Folder")
anchors.centerIn: parent
closePolicy: Popup.CloseOnEscape
implicitWidth: 280
@@ -192,13 +192,13 @@ Item {
}
Text {
- text: qsTr("Folder Name cannot be empty.")
+ text: qsTr("Folder name cannot be empty.")
color: "#ff0000"
visible: folderRename.text === "" && !renameFolderDialog.renameError
}
Text {
- text: qsTr("Could not rename directory. Make sure no folder with the same name exists.")
+ text: qsTr("Could not rename folder. Make sure no folder with the same name exists.")
wrapMode: Text.WordWrap
width: renameFolderDialog.width
color: "#ff0000"
@@ -259,7 +259,7 @@ Item {
Dialog {
id: newFolderDialog
- title: qsTr("Create new folder")
+ title: qsTr("Create New Folder")
anchors.centerIn: parent
closePolicy: Popup.CloseOnEscape
modal: true
@@ -269,7 +269,7 @@ Item {
Row {
Text {
- text: qsTr("Folder Name: ")
+ text: qsTr("Folder name: ")
anchors.verticalCenter: parent.verticalCenter
color: StudioTheme.Values.themeTextColor
}
@@ -287,7 +287,7 @@ Item {
}
Text {
- text: qsTr("Folder Name cannot be empty.")
+ text: qsTr("Folder name cannot be empty.")
color: "#ff0000"
anchors.right: parent.right
visible: folderName.text === ""
@@ -329,7 +329,7 @@ Item {
Dialog {
id: confirmDeleteFolderDialog
- title: qsTr("Folder not empty")
+ title: qsTr("Folder Not Empty")
anchors.centerIn: parent
closePolicy: Popup.CloseOnEscape
implicitWidth: 300
@@ -342,7 +342,7 @@ Item {
Text {
id: folderNotEmpty
- text: qsTr("Folder '%1' is not empty. Are you sure you want to delete it?")
+ text: qsTr("Folder \"%1\" is not empty. Delete it anyway?")
.arg(contextDir ? contextDir.dirName : "")
color: StudioTheme.Values.themeTextColor
wrapMode: Text.WordWrap
diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtMultimedia/MediaPlayerSection.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtMultimedia/MediaPlayerSection.qml
index 2e58189a4dd..e71d67f6295 100644
--- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtMultimedia/MediaPlayerSection.qml
+++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtMultimedia/MediaPlayerSection.qml
@@ -59,8 +59,8 @@ Section {
PropertyLabel {
visible: root.showAudioOutput
- text: qsTr("Audio Output")
- tooltip: qsTr("Holds the target audio output.")
+ text: qsTr("Audio output")
+ tooltip: qsTr("Target audio output.")
}
SecondColumnLayout {
@@ -80,8 +80,8 @@ Section {
PropertyLabel {
visible: root.showVideoOutput
- text: qsTr("Video Output")
- tooltip: qsTr("Holds the target video output.")
+ text: qsTr("Video output")
+ tooltip: qsTr("Target video output.")
}
SecondColumnLayout {
diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/AbstractButtonSection.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/AbstractButtonSection.qml
index f5fd2282f01..54cf89cf255 100644
--- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/AbstractButtonSection.qml
+++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/AbstractButtonSection.qml
@@ -41,7 +41,7 @@ import QtQuickDesignerTheme 1.0
import StudioTheme 1.0 as StudioTheme
Section {
- caption: qsTr("Button content")
+ caption: qsTr("Button Content")
anchors.left: parent.left
anchors.right: parent.right
@@ -49,7 +49,7 @@ Section {
SectionLayout {
PropertyLabel {
text: qsTr("Text")
- tooltip: qsTr("The text displayed on the button.")
+ tooltip: qsTr("Text displayed on the button.")
}
SecondColumnLayout {
diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/LoaderSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/LoaderSpecifics.qml
index 2417c545876..b4447d2adab 100644
--- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/LoaderSpecifics.qml
+++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/LoaderSpecifics.qml
@@ -41,7 +41,7 @@ Column {
SectionLayout {
PropertyLabel {
text: qsTr("Active")
- tooltip: qsTr("This property is true if the Loader is currently active.")
+ tooltip: qsTr("Whether the loader is currently active.")
}
SecondColumnLayout {
@@ -57,7 +57,7 @@ Column {
PropertyLabel {
text: qsTr("Source")
- tooltip: qsTr("This property holds the URL of the QML component to instantiate.")
+ tooltip: qsTr("URL of the component to instantiate.")
}
SecondColumnLayout {
@@ -70,8 +70,8 @@ Column {
}
PropertyLabel {
- text: qsTr("Source Component")
- tooltip: qsTr("This property holds the component to instantiate.")
+ text: qsTr("Source component")
+ tooltip: qsTr("Component to instantiate.")
}
SecondColumnLayout {
@@ -88,7 +88,7 @@ Column {
PropertyLabel {
text: qsTr("Asynchronous")
- tooltip: qsTr("This property holds whether the component will be instantiated asynchronously.")
+ tooltip: qsTr("Whether the component will be instantiated asynchronously.")
}
SecondColumnLayout {
diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ComponentSection.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ComponentSection.qml
index 7a2225bee7d..5d9a121a913 100644
--- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ComponentSection.qml
+++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ComponentSection.qml
@@ -218,7 +218,7 @@ Section {
AbstractButton {
id: editAnnotationButton
buttonIcon: StudioTheme.Constants.edit
- tooltip: qsTr("Edit annotation")
+ tooltip: qsTr("Edit Annotation")
onClicked: annotationEditor.showWidget()
onHoveredChanged: annotationEditor.checkAux()
}
@@ -226,7 +226,7 @@ Section {
AbstractButton {
id: removeAnnotationButton
buttonIcon: StudioTheme.Constants.closeCross
- tooltip: qsTr("Remove annotation")
+ tooltip: qsTr("Remove Annotation")
onClicked: annotationEditor.removeFullAnnotation()
onHoveredChanged: annotationEditor.checkAux()
}
diff --git a/src/plugins/qmldesigner/assetexporterplugin/assetexporter.cpp b/src/plugins/qmldesigner/assetexporterplugin/assetexporter.cpp
index 5ac9a4ae8a8..d56c593a83c 100644
--- a/src/plugins/qmldesigner/assetexporterplugin/assetexporter.cpp
+++ b/src/plugins/qmldesigner/assetexporterplugin/assetexporter.cpp
@@ -129,7 +129,7 @@ void AssetExporter::exportQml(const Utils::FilePaths &qmlFiles, const Utils::Fil
.arg(exportAssets? tr("Yes") : tr("No")));
if (m_perComponentExport)
- ExportNotification::addInfo(tr("Each component is exported separately"));
+ ExportNotification::addInfo(tr("Each component is exported separately."));
notifyProgress(0.0);
m_exportFiles = qmlFiles;
@@ -394,7 +394,7 @@ void AssetExporter::writeMetadata() const
{
if (m_cancelled) {
notifyProgress(1.0);
- ExportNotification::addInfo(tr("Export cancelled."));
+ ExportNotification::addInfo(tr("Export canceled."));
m_currentState.change(ParsingState::ExportingDone);
return;
}
diff --git a/src/plugins/qmldesigner/components/edit3d/edit3dwidget.cpp b/src/plugins/qmldesigner/components/edit3d/edit3dwidget.cpp
index d88cf612c15..945820d9134 100644
--- a/src/plugins/qmldesigner/components/edit3d/edit3dwidget.cpp
+++ b/src/plugins/qmldesigner/components/edit3d/edit3dwidget.cpp
@@ -150,7 +150,7 @@ Edit3DWidget::Edit3DWidget(Edit3DView *view) :
tr("Your file does not import Qt Quick 3D.
"
"To create a 3D view, add the QtQuick3D module in the Library view. Or click"
" here "
- "here to add it immediately.
"
+ "to add it immediately.
"
"To import 3D assets from another tool, click the \"Add New Assets...\" button in the Assets tab of the Library view.");
m_onboardingLabel->setText(labelText.arg(Utils::creatorTheme()->color(Utils::Theme::TextColorLink).name()));
m_onboardingLabel->setAlignment(Qt::AlignHCenter | Qt::AlignVCenter);
diff --git a/src/plugins/qmldesigner/components/navigator/navigatortreemodel.cpp b/src/plugins/qmldesigner/components/navigator/navigatortreemodel.cpp
index 79e66976a97..654a18dfc9e 100644
--- a/src/plugins/qmldesigner/components/navigator/navigatortreemodel.cpp
+++ b/src/plugins/qmldesigner/components/navigator/navigatortreemodel.cpp
@@ -768,7 +768,7 @@ void NavigatorTreeModel::handleItemLibraryItemDrop(const QMimeData *mimeData, in
"NavigatorTreeModel",
"Inserting materials under imported 3D component nodes is not supported. "
"Materials used in imported 3D components have to be modified inside the component itself.\n\n"
- "Would you like to go into component '%1'?")
+ "Would you like to go into component \"%1\"?")
.arg(targetProperty.parentModelNode().id()),
QMessageBox::Yes | QMessageBox::No,
QMessageBox::No);
diff --git a/src/plugins/qmldesigner/components/transitioneditor/transitioneditorview.cpp b/src/plugins/qmldesigner/components/transitioneditor/transitioneditorview.cpp
index ccf84152b57..ec715624f34 100644
--- a/src/plugins/qmldesigner/components/transitioneditor/transitioneditorview.cpp
+++ b/src/plugins/qmldesigner/components/transitioneditor/transitioneditorview.cpp
@@ -301,7 +301,7 @@ ModelNode TransitionEditorView::addNewTransition()
if (!properties.isEmpty())
properties.chop(2);
Core::AsynchronousMessageBox::warning(
- tr("No properties to animate found."),
+ tr("No Property Changes to Animate"),
tr("To add transitions, first change the properties that you want to animate in states (%1).")
.arg(properties));
}
diff --git a/src/plugins/qmldesigner/qmldesignerplugin.cpp b/src/plugins/qmldesigner/qmldesignerplugin.cpp
index 2114a56d3d7..979a0321f26 100644
--- a/src/plugins/qmldesigner/qmldesignerplugin.cpp
+++ b/src/plugins/qmldesigner/qmldesignerplugin.cpp
@@ -257,9 +257,9 @@ bool QmlDesignerPlugin::initialize(const QStringList & /*arguments*/, QString *e
designerActionManager().addDesignerAction(startNanotraceAction);
auto shutDownNanotraceAction = new ModelNodeAction("ShutDown Nanotrace",
- QObject::tr("ShutDown Nanotrace"),
+ QObject::tr("Shut Down Nanotrace"),
shutdownNanotraceIcon(),
- QObject::tr("ShutDown Nanotrace"),
+ QObject::tr("Shut Down Nanotrace"),
ComponentCoreConstants::eventListCategory,
QKeySequence(),
220,
diff --git a/src/plugins/qmlprojectmanager/qmlmultilanguageaspect.cpp b/src/plugins/qmlprojectmanager/qmlmultilanguageaspect.cpp
index cfb2bfaf474..dc57689cad9 100644
--- a/src/plugins/qmlprojectmanager/qmlmultilanguageaspect.cpp
+++ b/src/plugins/qmlprojectmanager/qmlmultilanguageaspect.cpp
@@ -76,8 +76,7 @@ QmlMultiLanguageAspect::QmlMultiLanguageAspect(ProjectExplorer::Target *target)
setVisible(isMultilanguagePresent());
setSettingsKey(Constants::USE_MULTILANGUAGE_KEY);
setLabel(tr("Use MultiLanguage in Form Editor."), BoolAspect::LabelPlacement::AtCheckBox);
- setToolTip(tr("By enabling this Form Editor can read translations\n"
- "from MultiLanguage plugin."));
+ setToolTip(tr("Reads translations from MultiLanguage plugin."));
setDefaultValue(!databaseFilePath().isEmpty());
QVariantMap getDefaultValues;