diff --git a/chrome/content/zotero/bindings/itembox.xml b/chrome/content/zotero/bindings/itembox.xml index d04ea9826..d4a50a839 100644 --- a/chrome/content/zotero/bindings/itembox.xml +++ b/chrome/content/zotero/bindings/itembox.xml @@ -497,9 +497,8 @@ moveDown.id = "zotero-creator-move-down"; moveUp.className = "zotero-creator-move"; moveDown.className = "zotero-creator-move"; - // TODO: localize - moveUp.setAttribute("label", "Move Up"); - moveDown.setAttribute("label", "Move Down"); + moveUp.setAttribute("label", Zotero.getString('pane.item.creator.moveUp')); + moveDown.setAttribute("label", Zotero.getString('pane.item.creator.moveDown')); this._creatorTypeMenu.appendChild(moveSep); this._creatorTypeMenu.appendChild(moveUp); this._creatorTypeMenu.appendChild(moveDown); @@ -817,8 +816,7 @@ var label = document.createElement('label'); label.id = 'more-creators-label'; - // TODO: localize - label.setAttribute('value', num + " more…"); + label.setAttribute('value', num + Zotero.getString('pane.item.creators.displayMore')); label.setAttribute('onclick', "var binding = document.getBindingParent(this); " + "binding._displayAllCreators = true; " diff --git a/chrome/content/zotero/itemPane.xul b/chrome/content/zotero/itemPane.xul index 38af4e645..9ccef4206 100644 --- a/chrome/content/zotero/itemPane.xul +++ b/chrome/content/zotero/itemPane.xul @@ -100,23 +100,20 @@ -