@@ -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