Skip to content

Commit 7fb89cb

Browse files
committed
Study -> Project
1 parent 5a84586 commit 7fb89cb

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

services/static-webserver/client/source/class/osparc/dashboard/ResourceBrowserBase.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -526,7 +526,7 @@ qx.Class.define("osparc.dashboard.ResourceBrowserBase", {
526526
});
527527
task.addListener("taskAborted", () => {
528528
finished();
529-
const msg = this.tr("Study to Template cancelled");
529+
const msg = this.tr("Project to Template cancelled");
530530
osparc.FlashMessenger.logAs(msg, "WARNING");
531531
});
532532
task.addListener("pollingError", e => {

services/static-webserver/client/source/class/osparc/desktop/MainPage.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ qx.Class.define("osparc.desktop.MainPage", {
341341
osparc.data.Resources.fetch("studies", "getOne", params2)
342342
.then(studyData => {
343343
if (!studyData) {
344-
const msg = this.tr("Study not found");
344+
const msg = this.tr("Project not found");
345345
throw new Error(msg);
346346
}
347347
osparc.desktop.MainPageHandler.getInstance().loadStudy(studyData);

services/static-webserver/client/source/class/osparc/desktop/MainPageHandler.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ qx.Class.define("osparc.desktop.MainPageHandler", {
7272
osparc.data.Resources.fetch("studies", "getOne", params)
7373
.then(studyData => {
7474
if (!studyData) {
75-
const msg = qx.locale.Manager.tr("Study not found");
75+
const msg = qx.locale.Manager.tr("Project not found");
7676
throw new Error(msg);
7777
}
7878
this.loadStudy(studyData);

services/static-webserver/client/source/class/osparc/desktop/WorkbenchView.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,7 @@ qx.Class.define("osparc.desktop.WorkbenchView", {
387387
});
388388
this.__addTopBarSpacer(topBar);
389389

390-
const studyOptionsPage = this.__studyOptionsPage = this.__createTabPage("@FontAwesome5Solid/book", this.tr("Study options"));
390+
const studyOptionsPage = this.__studyOptionsPage = this.__createTabPage("@FontAwesome5Solid/book", this.tr("Project options"));
391391
studyOptionsPage.getLayout().set({
392392
separator: "separator-vertical",
393393
spacing: 10

0 commit comments

Comments
 (0)