diff --git a/invesalius/reader/dicom.py b/invesalius/reader/dicom.py index b48bff1..252ac80 100644 --- a/invesalius/reader/dicom.py +++ b/invesalius/reader/dicom.py @@ -1415,10 +1415,10 @@ class Parser(): if ds.FindDataElement(tag): data = str(ds.GetDataElement(tag).GetValue()) if data == "None": - return "unnamed" + return _("unnamed") if (data): return data - return "unnamed" + return _("unnamed") def GetImageTime(self): """ -- libgit2 0.21.2