aboutsummaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
authorEike Ziller <eike.ziller@qt.io>2018-09-17 10:22:46 +0200
committerEike Ziller <eike.ziller@qt.io>2018-09-17 10:52:31 +0000
commiteba547cccf4d29b8622fd1ef7b14ed91956b3ca4 (patch)
treeb3859c33940354e3389b386d6eb500158f640bdc /python
parent0f35a83f35f9f785a67a5989dccc11c4828795b6 (diff)
The product name is "Qt Creator" with a space
Change-Id: I6716ab0b26f8881e07580df19bc29dd3c3146ae7 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
Diffstat (limited to 'python')
-rw-r--r--python/extensionmanager/__init__.py2
-rw-r--r--python/extensionmanager/actions.py2
-rw-r--r--python/extensionmanager/list.py8
3 files changed, 6 insertions, 6 deletions
diff --git a/python/extensionmanager/__init__.py b/python/extensionmanager/__init__.py
index 048423b..7932118 100644
--- a/python/extensionmanager/__init__.py
+++ b/python/extensionmanager/__init__.py
@@ -3,7 +3,7 @@
## Copyright (C) 2018 The Qt Company Ltd.
## Contact: http://www.qt.io/licensing/
##
-## This file is part of the Python Extensions Plugin for QtCreator.
+## This file is part of the Python Extensions Plugin for Qt Creator.
##
## $QT_BEGIN_LICENSE:BSD$
## You may use this file under the terms of the BSD license as follows:
diff --git a/python/extensionmanager/actions.py b/python/extensionmanager/actions.py
index 0efaae4..29d64cc 100644
--- a/python/extensionmanager/actions.py
+++ b/python/extensionmanager/actions.py
@@ -3,7 +3,7 @@
## Copyright (C) 2018 The Qt Company Ltd.
## Contact: http://www.qt.io/licensing/
##
-## This file is part of the Python Extensions Plugin for QtCreator.
+## This file is part of the Python Extensions Plugin for Qt Creator.
##
## $QT_BEGIN_LICENSE:BSD$
## You may use this file under the terms of the BSD license as follows:
diff --git a/python/extensionmanager/list.py b/python/extensionmanager/list.py
index 9850964..2996be3 100644
--- a/python/extensionmanager/list.py
+++ b/python/extensionmanager/list.py
@@ -3,7 +3,7 @@
## Copyright (C) 2018 The Qt Company Ltd.
## Contact: http://www.qt.io/licensing/
##
-## This file is part of the Python Extensions Plugin for QtCreator.
+## This file is part of the Python Extensions Plugin for Qt Creator.
##
## $QT_BEGIN_LICENSE:BSD$
## You may use this file under the terms of the BSD license as follows:
@@ -132,7 +132,7 @@ class ListView(QtWidgets.QDialog):
QtWidgets.QMessageBox.information(
self,
"Removed \"" + ext + "\"",
- "The extension was uninstalled. Please restart QtCreator to apply this change."
+ "The extension was uninstalled. Please restart Qt Creator to apply this change."
)
else:
QtWidgets.QMessageBox.warning(self, "Select an Extension", "Please select an extension to uninstall.")
@@ -142,7 +142,7 @@ class ListView(QtWidgets.QDialog):
self,
"Select Extension",
"/",
- "QtCreator Python Extensions (*.zip)"
+ "Qt Creator Python Extensions (*.zip)"
)
oldExtensions = list(instance.extensionList())
result = actions.install(fileName[0])
@@ -150,7 +150,7 @@ class ListView(QtWidgets.QDialog):
QtWidgets.QMessageBox.information(
self,
"Extension Installed",
- "The extension from \"" + fileName[0] + "\" was installed successfully. Please restart QtCreator to apply this change."
+ "The extension from \"" + fileName[0] + "\" was installed successfully. Please restart Qt Creator to apply this change."
)
self.reloadExtensionList()
else: