Skip to content

Commit 3e9c34c

Browse files
committed
Delete -> Delete permanently
1 parent 1ed0135 commit 3e9c34c

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

services/static-webserver/client/source/class/osparc/dashboard/FolderButtonItem.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ qx.Class.define("osparc.dashboard.FolderButtonItem", {
329329
const msg = this.tr("Are you sure you want to delete") + " <b>" + this.getTitle() + "</b>?";
330330
const confirmationWin = new osparc.ui.window.Confirmation(msg).set({
331331
caption: this.tr("Delete Folder"),
332-
confirmText: this.tr("Delete"),
332+
confirmText: this.tr("Delete permanently"),
333333
confirmAction: "delete"
334334
});
335335
osparc.utils.Utils.setIdToWidget(confirmationWin.getConfirmButton(), "confirmDeleteFolderButton");

services/static-webserver/client/source/class/osparc/dashboard/StudyBrowser.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -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;

services/static-webserver/client/source/class/osparc/dashboard/WorkspaceButtonItem.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ qx.Class.define("osparc.dashboard.WorkspaceButtonItem", {
220220

221221
menu.addSeparator();
222222

223-
const deleteButton = new qx.ui.menu.Button(this.tr("Delete"), "@FontAwesome5Solid/trash/12");
223+
const deleteButton = new qx.ui.menu.Button(this.tr("Delete permanently"), "@FontAwesome5Solid/trash/12");
224224
osparc.utils.Utils.setIdToWidget(deleteButton, "deleteWorkspaceMenuItem");
225225
deleteButton.addListener("execute", () => this.__deleteWorkspaceRequested(), this);
226226
menu.add(deleteButton);
@@ -291,7 +291,7 @@ qx.Class.define("osparc.dashboard.WorkspaceButtonItem", {
291291
msg += "<br>" + this.tr("All the content of the workspace will be deleted.");
292292
const confirmationWin = new osparc.ui.window.Confirmation(msg).set({
293293
caption: this.tr("Delete Workspace"),
294-
confirmText: this.tr("Delete"),
294+
confirmText: this.tr("Delete permanently"),
295295
confirmAction: "delete"
296296
});
297297
osparc.utils.Utils.setIdToWidget(confirmationWin.getConfirmButton(), "confirmDeleteWorkspaceButton");

0 commit comments

Comments
 (0)