Commit e6403287a3b58ca62f1993564a0873d0271c2d4b
1 parent
831a142c
Exists in
master
and in
67 other branches
ENH: Enhancing messages and translations.
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
invesalius/control.py
... | ... | @@ -297,7 +297,7 @@ class Controller(): |
297 | 297 | def Progress(self, evt): |
298 | 298 | data = evt.data |
299 | 299 | if (data): |
300 | - message = _("Loading file %d of %d")%(data[0],data[1]) | |
300 | + message = _("Loading file %d of %d ...")%(data[0],data[1]) | |
301 | 301 | if not(self.progress_dialog): |
302 | 302 | self.progress_dialog = dialog.ProgressDialog( |
303 | 303 | maximum = data[1], abort=1) | ... | ... |