parent
3194f4629f
commit
7fb8f162c5
|
@ -115,7 +115,7 @@ var Zotero_Citation_Dialog = new function () {
|
||||||
var i = 0;
|
var i = 0;
|
||||||
for(var value in locators) {
|
for(var value in locators) {
|
||||||
var locator = locators[value];
|
var locator = locators[value];
|
||||||
var locatorLabel = locator[0].toUpperCase()+locator.substr(1);
|
var locatorLabel = Zotero.getString('citation.locator.'+locator.replace(/\s/g,''));
|
||||||
// add to list of labels
|
// add to list of labels
|
||||||
var child = document.createElement("menuitem");
|
var child = document.createElement("menuitem");
|
||||||
child.setAttribute("value", value);
|
child.setAttribute("value", value);
|
||||||
|
|
|
@ -79,8 +79,7 @@ var Zotero_QuickFormat = new function () {
|
||||||
var menu = document.getElementById("locator-label");
|
var menu = document.getElementById("locator-label");
|
||||||
var labelList = document.getElementById("locator-label-popup");
|
var labelList = document.getElementById("locator-label-popup");
|
||||||
for each(var locator in locators) {
|
for each(var locator in locators) {
|
||||||
// TODO localize
|
var locatorLabel = Zotero.getString('citation.locator.'+locator.replace(/\s/g,''));
|
||||||
var locatorLabel = locator[0].toUpperCase()+locator.substr(1);
|
|
||||||
|
|
||||||
// add to list of labels
|
// add to list of labels
|
||||||
var child = document.createElement("menuitem");
|
var child = document.createElement("menuitem");
|
||||||
|
|
|
@ -64,7 +64,7 @@ var Zotero_CSL_Editor = new function() {
|
||||||
var locators = Zotero.Cite.labels;
|
var locators = Zotero.Cite.labels;
|
||||||
for each(var type in locators) {
|
for each(var type in locators) {
|
||||||
var locator = type;
|
var locator = type;
|
||||||
locator = locator[0].toUpperCase()+locator.substr(1);
|
locator = Zotero.getString('citation.locator.'+locator.replace(/\s/g,''));
|
||||||
pageList.appendItem(locator, type);
|
pageList.appendItem(locator, type);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -187,9 +187,6 @@
|
||||||
|
|
||||||
<!ENTITY zotero.citation.keepSorted.label "Keep Sources Sorted">
|
<!ENTITY zotero.citation.keepSorted.label "Keep Sources Sorted">
|
||||||
|
|
||||||
<!ENTITY zotero.citation.page "Page">
|
|
||||||
<!ENTITY zotero.citation.paragraph "Paragraph">
|
|
||||||
<!ENTITY zotero.citation.line "Line">
|
|
||||||
<!ENTITY zotero.citation.suppressAuthor.label "Suppress Author">
|
<!ENTITY zotero.citation.suppressAuthor.label "Suppress Author">
|
||||||
<!ENTITY zotero.citation.prefix.label "Prefix:">
|
<!ENTITY zotero.citation.prefix.label "Prefix:">
|
||||||
<!ENTITY zotero.citation.suffix.label "Suffix:">
|
<!ENTITY zotero.citation.suffix.label "Suffix:">
|
||||||
|
|
|
@ -663,6 +663,22 @@ citation.showEditor = Show Editor…
|
||||||
citation.hideEditor = Hide Editor…
|
citation.hideEditor = Hide Editor…
|
||||||
citation.citations = Citations
|
citation.citations = Citations
|
||||||
citation.notes = Notes
|
citation.notes = Notes
|
||||||
|
citation.locator.page = Page
|
||||||
|
citation.locator.book = Book
|
||||||
|
citation.locator.chapter = Chapter
|
||||||
|
citation.locator.column = Column
|
||||||
|
citation.locator.figure = Figure
|
||||||
|
citation.locator.folio = Folio
|
||||||
|
citation.locator.issue = Issue
|
||||||
|
citation.locator.line = Line
|
||||||
|
citation.locator.note = Note
|
||||||
|
citation.locator.opus = Opus
|
||||||
|
citation.locator.paragraph = Paragraph
|
||||||
|
citation.locator.part = Part
|
||||||
|
citation.locator.section = Section
|
||||||
|
citation.locator.subverbo = Sub verbo
|
||||||
|
citation.locator.volume = Volume
|
||||||
|
citation.locator.verse = Verse
|
||||||
|
|
||||||
report.title.default = Zotero Report
|
report.title.default = Zotero Report
|
||||||
report.parentItem = Parent Item:
|
report.parentItem = Parent Item:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user