1
0
mirror of https://github.com/arsenetar/dupeguru.git synced 2026-01-22 14:41:39 +00:00

Fixed typo in messages.

Sucessfully --> Successfully. [#216 state:fixed]
This commit is contained in:
Virgil Dupras
2013-04-28 10:20:59 -04:00
parent 0ced3e39c8
commit d4e6632e7e
11 changed files with 33 additions and 33 deletions

View File

@@ -242,9 +242,9 @@ class DupeGuru(RegistrableApplication, Broadcaster):
self.view.show_problem_dialog()
else:
msg = {
JobType.Copy: tr("All marked files were copied sucessfully."),
JobType.Move: tr("All marked files were moved sucessfully."),
JobType.Delete: tr("All marked files were sucessfully sent to Trash."),
JobType.Copy: tr("All marked files were copied successfully."),
JobType.Move: tr("All marked files were moved successfully."),
JobType.Delete: tr("All marked files were successfully sent to Trash."),
}[jobid]
self.view.show_message(msg)