Fix spelling and remove extra newline

This commit is contained in:
Nick Hall 2021-05-31 18:25:29 +01:00
parent 32afc4cff1
commit d4d9e302f8

View File

@ -304,7 +304,7 @@ class ImportInfo:
"their typifying attribute was set to 'Unknown'.\n"
"The breakdown per category is depicted by the\n"
"number in parentheses. Where possible these\n"
"'Unkown' objects are referenced by note %(unknown)s.\n"
"'Unknown' objects are referenced by note %(unknown)s.\n"
) % {'new': sum(self.data_unknownobject), 'unknown': self.expl_note}
if self.data_relpath:
txt += _("\nMedia objects with relative paths have been\n"
@ -318,7 +318,7 @@ class ImportInfo:
merge = True
break
if merge:
txt += _("\n\nObjects that are candidates to be merged:\n")
txt += _("\nObjects that are candidates to be merged:\n")
for key in self.keyorder:
datakey = self.key2data[key]
for handle in list(self.data_mergecandidate[datakey].keys()):