Commit 919c76d7014a5e35e21fac4a3c68938173337f6e
1 parent
a2be4d98
Exists in
master
and in
6 other branches
ENH: New translation key
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
invesalius/reader/dicom.py
... | ... | @@ -1415,10 +1415,10 @@ class Parser(): |
1415 | 1415 | if ds.FindDataElement(tag): |
1416 | 1416 | data = str(ds.GetDataElement(tag).GetValue()) |
1417 | 1417 | if data == "None": |
1418 | - return "unnamed" | |
1418 | + return _("unnamed") | |
1419 | 1419 | if (data): |
1420 | 1420 | return data |
1421 | - return "unnamed" | |
1421 | + return _("unnamed") | |
1422 | 1422 | |
1423 | 1423 | def GetImageTime(self): |
1424 | 1424 | """ | ... | ... |