diff --git a/chrome/chromeFiles/content/scholar/fileInterface.js b/chrome/chromeFiles/content/scholar/fileInterface.js
index d48e5963f..60f544079 100644
--- a/chrome/chromeFiles/content/scholar/fileInterface.js
+++ b/chrome/chromeFiles/content/scholar/fileInterface.js
@@ -2,10 +2,10 @@ var Scholar_File_Interface = new function() {
var _unresponsiveScriptPreference, _importCollection, _notifyItem, _notifyCollection;
this.exportFile = exportFile;
- this.exportProject = exportProject;
+ this.exportCollection = exportCollection;
this.exportItems = exportItems;
this.importFile = importFile;
- this.bibliographyFromProject = bibliographyFromProject;
+ this.bibliographyFromCollection = bibliographyFromCollection;
this.bibliographyFromItems = bibliographyFromItems;
/*
@@ -43,7 +43,7 @@ var Scholar_File_Interface = new function() {
/*
* exports a collection
*/
- function exportProject() {
+ function exportCollection() {
var collection = ScholarPane.getSelectedCollection();
if(!collection) throw("no collection currently selected");
@@ -181,9 +181,9 @@ var Scholar_File_Interface = new function() {
}
/*
- * Creates a bibliography from a project
+ * Creates a bibliography from a collection
*/
- function bibliographyFromProject() {
+ function bibliographyFromCollection() {
var collection = ScholarPane.getSelectedCollection();
if(!collection) throw("no collection currently selected");
diff --git a/chrome/chromeFiles/content/scholar/ingester/browser.js b/chrome/chromeFiles/content/scholar/ingester/browser.js
index d1d359a2a..354a66bf1 100644
--- a/chrome/chromeFiles/content/scholar/ingester/browser.js
+++ b/chrome/chromeFiles/content/scholar/ingester/browser.js
@@ -71,7 +71,7 @@ Scholar_Ingester_Interface.scrapeThisPage = function(saveLocation) {
if(saveLocation) {
saveLocation = Scholar.Collections.get(saveLocation);
- } else { // save to currently selected project, if a project is selected
+ } else { // save to currently selected collection, if a collection is selected
try {
saveLocation = ScholarPane.getSelectedCollection();
} catch(e) {}
diff --git a/chrome/chromeFiles/content/scholar/overlay.xul b/chrome/chromeFiles/content/scholar/overlay.xul
index 75b68223c..250965438 100644
--- a/chrome/chromeFiles/content/scholar/overlay.xul
+++ b/chrome/chromeFiles/content/scholar/overlay.xul
@@ -54,8 +54,8 @@
-
-
+
+