Skip to content

Commit

Permalink
[dreamexplorer] fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
koivo committed Mar 6, 2024
1 parent 9b4c86b commit 8560b50
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dreamexplorer/src/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -531,11 +531,11 @@ def ExecDelete(self):
return
if not (self["filelist"].canDescent()):
DELfilename = self["filelist"].getCurrentDirectory() + self["filelist"].getFilename()
dei = self.session.openWithCallback(self.callbackExecDelete, MessageBox, _("Do you realy want to DELETE:\n" + DELfilename), MessageBox.TYPE_YESNO)
dei = self.session.openWithCallback(self.callbackExecDelete, MessageBox, _("Do you really want to DELETE:\n" + DELfilename), MessageBox.TYPE_YESNO)
dei.setTitle(_("Dream-Explorer - DELETE file..."))
elif (self["filelist"].getSelectionIndex() != 0) and (self["filelist"].canDescent()):
DELDIR = self["filelist"].getSelection()[0]
dei = self.session.openWithCallback(self.callbackDelDir, MessageBox, _("Do you realy want to DELETE:\n" + DELDIR + '\n\nYou do it at your own risk!'), MessageBox.TYPE_YESNO)
dei = self.session.openWithCallback(self.callbackDelDir, MessageBox, _("Do you really want to DELETE:\n" + DELDIR + '\n\nYou do it at your own risk!'), MessageBox.TYPE_YESNO)
dei.setTitle(_("Dream-Explorer - DELETE DIRECTORY..."))

def callbackExecDelete(self, answer):
Expand Down

0 comments on commit 8560b50

Please sign in to comment.