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 f029d0d commit d1cfa46Copy full SHA for d1cfa46
services/static-webserver/client/source/class/osparc/product/Utils.js
@@ -60,13 +60,7 @@ qx.Class.define("osparc.product.Utils", {
60
61
getTemplateAlias: function(options = {}) {
62
let alias = null;
63
- if (this.getProductName().includes("s4l")) {
64
- if (options.plural) {
65
- alias = qx.locale.Manager.tr("tutorials");
66
- } else {
67
- alias = qx.locale.Manager.tr("tutorial");
68
- }
69
- } else if (options.plural) {
+ if (options.plural) {
70
alias = qx.locale.Manager.tr("templates");
71
} else {
72
alias = qx.locale.Manager.tr("template");
0 commit comments