@@ -1346,7 +1346,7 @@ qx.Class.define("osparc.dashboard.StudyBrowser", {
13461346 } ,
13471347
13481348 __createDeleteStudiesButton : function ( ) {
1349- const deleteButton = new qx . ui . form . Button ( this . tr ( "Delete" ) , "@FontAwesome5Solid/trash/14" ) . set ( {
1349+ const deleteButton = new qx . ui . form . Button ( this . tr ( "Delete permanently " ) , "@FontAwesome5Solid/trash/14" ) . set ( {
13501350 appearance : "danger-button" ,
13511351 visibility : "excluded"
13521352 } ) ;
@@ -1850,7 +1850,7 @@ qx.Class.define("osparc.dashboard.StudyBrowser", {
18501850 } ,
18511851
18521852 __getDeleteStudyMenuButton : function ( studyData ) {
1853- const deleteButton = new qx . ui . menu . Button ( this . tr ( "Delete" ) , "@FontAwesome5Solid/trash/12" ) ;
1853+ const deleteButton = new qx . ui . menu . Button ( this . tr ( "Delete permanently " ) , "@FontAwesome5Solid/trash/12" ) ;
18541854 deleteButton [ "deleteButton" ] = true ;
18551855 deleteButton . set ( {
18561856 appearance : "menu-button"
@@ -2119,7 +2119,7 @@ qx.Class.define("osparc.dashboard.StudyBrowser", {
21192119 msg += ( studyNames . length > 1 ? ` ${ studyNames . length } ${ studyAlias } ?` : ` <b>${ studyNames [ 0 ] } </b>?` ) ;
21202120 const confirmationWin = new osparc . ui . window . Confirmation ( msg ) . set ( {
21212121 caption : this . tr ( "Delete" ) + " " + studyAlias ,
2122- confirmText : this . tr ( "Delete" ) ,
2122+ confirmText : this . tr ( "Delete permanently " ) ,
21232123 confirmAction : "delete"
21242124 } ) ;
21252125 osparc . utils . Utils . setIdToWidget ( confirmationWin . getConfirmButton ( ) , "confirmDeleteStudyBtn" ) ;
@@ -2130,7 +2130,7 @@ qx.Class.define("osparc.dashboard.StudyBrowser", {
21302130 const msg = this . tr ( "Items in the bin will be permanently deleted" ) ;
21312131 const confirmationWin = new osparc . ui . window . Confirmation ( msg ) . set ( {
21322132 caption : this . tr ( "Delete" ) ,
2133- confirmText : this . tr ( "Delete forever " ) ,
2133+ confirmText : this . tr ( "Delete permanently " ) ,
21342134 confirmAction : "delete"
21352135 } ) ;
21362136 return confirmationWin ;
0 commit comments