diff --git a/chrome/content/zotero/xpcom/integration.js b/chrome/content/zotero/xpcom/integration.js index 9a96984b8a..c75fcc0ae1 100644 --- a/chrome/content/zotero/xpcom/integration.js +++ b/chrome/content/zotero/xpcom/integration.js @@ -1260,7 +1260,10 @@ Zotero.Integration.Session.prototype.unserializeCitation = function(arg, index) // for upgrade from Zotero 2.0 or earlier for each(var citationItem in citation.citationItems) { if(citationItem.locatorType) { - citationItem.label = citationItem.locatorType; + const locatorTypeTerms = ["page", "book", "chapter", "column", "figure", "folio", + "issue", "line", "note", "opus", "paragraph", "part", "section", "sub verbo", + "volume", "verse"]; + citationItem.label = locatorTypeTerms[citationItem.locatorType]; delete citationItem.locatorType; } else if(citationItem.suppressAuthor) { citationItem["suppress-author"] = citationItem["suppressAuthor"];