Tweak read-only save error message
This commit is contained in:
parent
8831ba51cd
commit
f272fc6861
3 changed files with 5 additions and 5 deletions
|
@ -154,7 +154,7 @@ var Zotero_Browser = new function() {
|
|||
try {
|
||||
if (!ZoteroPane.collectionsView.editable) {
|
||||
Zotero_Browser.progress.changeHeadline(Zotero.getString("ingester.scrapeError"));
|
||||
var desc = Zotero.getString('save.error.cannotMakeChangesToLibrary');
|
||||
var desc = Zotero.getString('save.error.cannotMakeChangesToCollection');
|
||||
Zotero_Browser.progress.addDescription(desc);
|
||||
Zotero_Browser.progress.show();
|
||||
Zotero_Browser.progress.startCloseTimer(8000);
|
||||
|
|
|
@ -3592,14 +3592,14 @@ var ZoteroPane = new function()
|
|||
this.displayCannotEditLibraryMessage = function () {
|
||||
var ps = Components.classes["@mozilla.org/embedcomp/prompt-service;1"]
|
||||
.getService(Components.interfaces.nsIPromptService);
|
||||
ps.alert(null, "", Zotero.getString('save.error.cannotMakeChangesToLibrary'));
|
||||
ps.alert(null, "", Zotero.getString('save.error.cannotMakeChangesToCollection'));
|
||||
}
|
||||
|
||||
|
||||
this.displayCannotEditLibraryFilesMessage = function () {
|
||||
var ps = Components.classes["@mozilla.org/embedcomp/prompt-service;1"]
|
||||
.getService(Components.interfaces.nsIPromptService);
|
||||
ps.alert(null, "", Zotero.getString('save.error.cannotAddFilesToLibrary'));
|
||||
ps.alert(null, "", Zotero.getString('save.error.cannotAddFilesToCollection'));
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -397,8 +397,8 @@ fileTypes.document = Document
|
|||
save.attachment = Saving Snapshot…
|
||||
save.link = Saving Link…
|
||||
save.link.error = An error occurred while saving this link.
|
||||
save.error.cannotMakeChangesToLibrary = You cannot make changes to the currently selected library.
|
||||
save.error.cannotAddFilesToLibrary = You cannot add files to the currently selected library.
|
||||
save.error.cannotMakeChangesToCollection = You cannot make changes to the currently selected collection.
|
||||
save.error.cannotAddFilesToCollection = You cannot add files to the currently selected collection.
|
||||
|
||||
ingester.saveToZotero = Save to Zotero
|
||||
ingester.saveToZoteroUsing = Save to Zotero using "%S"
|
||||
|
|
Loading…
Add table
Reference in a new issue