summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Hartmann <thomas.hartmann@qt.io>2022-04-13 10:54:17 +0200
committerThomas Hartmann <thomas.hartmann@qt.io>2022-04-14 08:42:31 +0000
commit41daf979c552232c380118e49d2dcaa934db13ea (patch)
tree8e8f0a08958de0ed8f3ec3c6a72c3cd865bb2263
parentac0697780e90c292c370f278b1c800d99540c148 (diff)
downloadqt-creator-41daf979c552232c380118e49d2dcaa934db13ea.tar.gz
QmlDesigner: Rename Generate QRC Resource File -> Generate Deployable Package
This is a simpler less technical name and we plan to introduce the design viewer officially in the near future. Change-Id: I1e9491000f6618f8f04fa307116cd865ec6b04be Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io>
-rw-r--r--doc/qtdesignstudio/src/qtdesignstudio-packaging.qdoc2
-rw-r--r--src/plugins/qmldesigner/generateresource.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/qtdesignstudio/src/qtdesignstudio-packaging.qdoc b/doc/qtdesignstudio/src/qtdesignstudio-packaging.qdoc
index d908bd0dba..cbb654a9ec 100644
--- a/doc/qtdesignstudio/src/qtdesignstudio-packaging.qdoc
+++ b/doc/qtdesignstudio/src/qtdesignstudio-packaging.qdoc
@@ -67,7 +67,7 @@
\section1 Embedding Resources into Applications
Alternatively, you can embedd the resources into your application by
- selecting \uicontrol Build > \uicontrol {Generate RCC Resource File}.
+ selecting \uicontrol Build > \uicontrol {Generate Deployable Package}.
Select the location for the .qmlrc file, and then select the files to
embedd in the \uicontrol {Add Resources} dialog.
diff --git a/src/plugins/qmldesigner/generateresource.cpp b/src/plugins/qmldesigner/generateresource.cpp
index 7876639c9b..7210a14471 100644
--- a/src/plugins/qmldesigner/generateresource.cpp
+++ b/src/plugins/qmldesigner/generateresource.cpp
@@ -353,7 +353,7 @@ void GenerateResource::generateMenuEntry()
// ToDo: move this to QtCreator and add tr to the string then
auto rccAction = new QAction(QCoreApplication::translate("QmlDesigner::GenerateResource",
- "Generate RCC Resource File"));
+ "Generate Deployable Package"));
rccAction->setEnabled(ProjectExplorer::SessionManager::startupProject() != nullptr);
QObject::connect(ProjectExplorer::SessionManager::instance(),
&ProjectExplorer::SessionManager::startupProjectChanged, [rccAction]() {