From 22ca4bb42be430c987f461288d8f1e499e4af9a7 Mon Sep 17 00:00:00 2001 From: odeimaiz Date: Thu, 26 Jun 2025 15:42:27 +0200 Subject: [PATCH 1/3] fix --- .../client/source/class/osparc/study/SaveAsTemplate.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/services/static-webserver/client/source/class/osparc/study/SaveAsTemplate.js b/services/static-webserver/client/source/class/osparc/study/SaveAsTemplate.js index 77ae4db00f0..fd127399900 100644 --- a/services/static-webserver/client/source/class/osparc/study/SaveAsTemplate.js +++ b/services/static-webserver/client/source/class/osparc/study/SaveAsTemplate.js @@ -56,8 +56,6 @@ qx.Class.define("osparc.study.SaveAsTemplate", { introText += this.tr("All users will see it and can copy it."); } else { introText += this.tr("This project will be saved as a template."); - introText += "
"; - introText += this.tr("The users you select will be able to see it and copy it."); } this._add(new qx.ui.basic.Label(introText).set({ font: "text-14", From 934af51e575e612eef71400653d3ce6232662938 Mon Sep 17 00:00:00 2001 From: odeimaiz Date: Thu, 26 Jun 2025 16:15:57 +0200 Subject: [PATCH 2/3] update texts --- .../source/class/osparc/study/SaveAsTemplate.js | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/services/static-webserver/client/source/class/osparc/study/SaveAsTemplate.js b/services/static-webserver/client/source/class/osparc/study/SaveAsTemplate.js index fd127399900..8bb368f783c 100644 --- a/services/static-webserver/client/source/class/osparc/study/SaveAsTemplate.js +++ b/services/static-webserver/client/source/class/osparc/study/SaveAsTemplate.js @@ -49,14 +49,10 @@ qx.Class.define("osparc.study.SaveAsTemplate", { __createTemplateBtn: null, __buildLayout: function() { - let introText = ""; - if (this.__makeItPublic) { - introText += this.tr("This project will be published and accessible to everyone."); - introText += "
"; - introText += this.tr("All users will see it and can copy it."); - } else { - introText += this.tr("This project will be saved as a template."); - } + const introText = this.__makeItPublic ? + this.tr("Share your project with the entire community as a Public Project. This makes it discoverable and reusable by others, encouraging collaboration and inspiration.") + : + this.tr("Save the current state of your project as a reusable Template. Templates let you branch off easily and start new workflows."); this._add(new qx.ui.basic.Label(introText).set({ font: "text-14", rich: true, From e21074ffa5a967ff8b2f26766f2c82878a4f8588 Mon Sep 17 00:00:00 2001 From: odeimaiz Date: Thu, 26 Jun 2025 16:20:28 +0200 Subject: [PATCH 3/3] minor --- .../client/source/class/osparc/study/SaveAsTemplate.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/static-webserver/client/source/class/osparc/study/SaveAsTemplate.js b/services/static-webserver/client/source/class/osparc/study/SaveAsTemplate.js index 8bb368f783c..7199a055654 100644 --- a/services/static-webserver/client/source/class/osparc/study/SaveAsTemplate.js +++ b/services/static-webserver/client/source/class/osparc/study/SaveAsTemplate.js @@ -52,7 +52,7 @@ qx.Class.define("osparc.study.SaveAsTemplate", { const introText = this.__makeItPublic ? this.tr("Share your project with the entire community as a Public Project. This makes it discoverable and reusable by others, encouraging collaboration and inspiration.") : - this.tr("Save the current state of your project as a reusable Template. Templates let you branch off easily and start new workflows."); + this.tr("Save the current state of your project as a reusable Template. Templates let you branch off easily and start new workflows. You can later decide with whom to share it."); this._add(new qx.ui.basic.Label(introText).set({ font: "text-14", rich: true,