Skip to content

Commit a0d6c26

Browse files
committed
wording
1 parent a091df7 commit a0d6c26

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ qx.Class.define("osparc.study.BillingSettings", {
101101
});
102102
const studyAlias = osparc.product.Utils.getStudyAlias();
103103
let msg = this.tr(`This ${studyAlias} is currently Embargoed.<br>`);
104-
msg += this.tr("Last transaction:") + "<br>";
104+
msg += this.tr("Last charge:") + "<br>";
105105
msg += this.__studyData["debt"] + " " + this.tr("credits");
106106
const debtMessage = this.__debtMessage = new qx.ui.basic.Label(msg).set({
107107
decorator: border,
@@ -199,7 +199,7 @@ qx.Class.define("osparc.study.BillingSettings", {
199199
} else {
200200
// It's a shared wallet
201201
this._createChildControlImpl("debt-explanation").set({
202-
value: this.tr("Transfer credits from another Account:<br>Use this Credit Account to cover the last transaction that caused the negative balance.")
202+
value: this.tr("Transfer credits from another Account:<br>Use this Credit Account to cover the negative balance.")
203203
});
204204
const transferDebtButton = this._createChildControlImpl("transfer-debt-button");
205205
transferDebtButton.addListener("execute", () => this.__transferCredits(), this);
@@ -225,7 +225,7 @@ qx.Class.define("osparc.study.BillingSettings", {
225225
__transferCredits: function() {
226226
const originWallet = this.__getSelectedWallet();
227227
const destWallet = this.__getStudyWallet();
228-
let msg = this.tr("A credits transfer will be initiated to cover the last transaction:");
228+
let msg = this.tr("A credits transfer will be initiated to cover the negative balance:");
229229
msg += "<br>- " + this.tr("Credits to transfer: ") + -1*this.__studyData["debt"];
230230
msg += "<br>- " + this.tr("From: ") + originWallet.getName();
231231
msg += "<br>- " + this.tr("To: ") + destWallet.getName();

0 commit comments

Comments
 (0)