We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea19a5a commit dfe65a9Copy full SHA for dfe65a9
services/static-webserver/client/source/class/osparc/product/Utils.js
@@ -43,16 +43,10 @@ qx.Class.define("osparc.product.Utils", {
43
44
getStudyAlias: function(options = {}) {
45
let alias = null;
46
- if (this.getProductName().includes("s4l")) {
47
- if (options.plural) {
48
- alias = qx.locale.Manager.tr("projects");
49
- } else {
50
- alias = qx.locale.Manager.tr("project");
51
- }
52
- } else if (options.plural) {
53
- alias = qx.locale.Manager.tr("studies");
+ if (options.plural) {
+ alias = qx.locale.Manager.tr("projects");
54
} else {
55
- alias = qx.locale.Manager.tr("study");
+ alias = qx.locale.Manager.tr("project");
56
}
57
58
if (options.firstUpperCase) {
0 commit comments