Skip to content

Commit 666016d

Browse files
authored
🐛 [Frontend] Fix template creation texts (#7993)
1 parent ca8acae commit 666016d

File tree

1 file changed

+4
-10
lines changed

1 file changed

+4
-10
lines changed

services/static-webserver/client/source/class/osparc/study/SaveAsTemplate.js

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -49,16 +49,10 @@ qx.Class.define("osparc.study.SaveAsTemplate", {
4949
__createTemplateBtn: null,
5050

5151
__buildLayout: function() {
52-
let introText = "";
53-
if (this.__makeItPublic) {
54-
introText += this.tr("This project will be published and accessible to everyone.");
55-
introText += "<br>";
56-
introText += this.tr("All users will see it and can copy it.");
57-
} else {
58-
introText += this.tr("This project will be saved as a template.");
59-
introText += "<br>";
60-
introText += this.tr("The users you select will be able to see it and copy it.");
61-
}
52+
const introText = this.__makeItPublic ?
53+
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.")
54+
:
55+
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.");
6256
this._add(new qx.ui.basic.Label(introText).set({
6357
font: "text-14",
6458
rich: true,

0 commit comments

Comments
 (0)