Skip to content

Commit c1905f9

Browse files
committed
minor
1 parent 8c7ee30 commit c1905f9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -200,13 +200,13 @@ qx.Class.define("osparc.dashboard.ResourceBrowserBase", {
200200

201201
getOpenText: function(resourceData) {
202202
const studyAlias = osparc.product.Utils.getStudyAlias({firstUpperCase: true});
203-
let openText = this.tr("New") + " " + studyAlias;
203+
let openText = qx.locale.Manager.tr("New") + " " + studyAlias;
204204
if (resourceData["resourceType"] === "study") {
205205
// if it's in use call it join
206206
if (osparc.study.Utils.state.getCurrentGroupIds(resourceData["state"])) {
207-
openText = this.tr("Join");
207+
openText = qx.locale.Manager.tr("Join");
208208
} else {
209-
openText = this.tr("Open");
209+
openText = qx.locale.Manager.tr("Open");
210210
}
211211
}
212212
return openText;

0 commit comments

Comments
 (0)