';
+ return;
+ }
+ var progressWin = new Zotero.ProgressWindow();
+ // XXX needs its own string really!
+ progressWin.changeHeadline(Zotero.getString("pane.items.menu.createBib.multiple"));
+ var icon = 'chrome://zotero/skin/treeitem-attachment-file.png';
+ progressWin.addLines(document.title, icon);
+ progressWin.show();
+ progressWin.startCloseTimer();
+ var f = function() {
+ var styles = Zotero.Styles.getAll();
+ // XXX needs its own string really for the title!
+ var str = '';
+ for each(var style in styles) {
+ if (style.source) {
+ continue;
+ }
+ Zotero.debug("Generate Bib for " + style.title);
+ var cite = generateBibliography(style);
+ if (cite) {
+ str += '
' + style.title + '
';
+ str += cite;
+ str += '';
+ }
+ }
+
+ str += '';
+ iframe.contentDocument.documentElement.innerHTML = str;
+ };
+ // Give progress window time to appear
+ setTimeout(f, 100);
+ }
+
+ function generateBibliography(style) {
+ var iframe = document.getElementById('zotero-csl-preview-box');
+
+ var items = Zotero.getActiveZoteroPane().getSelectedItems();
+ if (items.length === 0) {
+ return '';
+ }
+
+ var citationFormat = document.getElementById("citation-format").selectedItem.value;
+ if (citationFormat != "all" && citationFormat != style.categories) {
+ Zotero.debug("CSL IGNORE: citation format is " + style.categories);
+ return '';
+ }
+ var styleEngine = style.getCiteProc();
+
+ // Generate multiple citations
+ var citations = styleEngine.previewCitationCluster(
+ {"citationItems":[{"id":item.id} for each(item in items)], "properties":{}},
+ [], [], "html");
+
+ // Generate bibliography
+ var bibliography = '';
+ if(style.hasBibliography) {
+ styleEngine.updateItems([item.id for each(item in items)]);
+ bibliography = Zotero.Cite.makeFormattedBibliography(styleEngine, "html");
+ }
+
+ return '
' + citations + '
' + bibliography;
+ }
+
+
+}();
diff --git a/chrome/content/zotero/tools/cslpreview.xul b/chrome/content/zotero/tools/cslpreview.xul
index 49f29c7ce..0b984577a 100644
--- a/chrome/content/zotero/tools/cslpreview.xul
+++ b/chrome/content/zotero/tools/cslpreview.xul
@@ -27,120 +27,37 @@
+ %cslpreviewDTD;
+ %zoteroDTD;
+]>
+
+ title="&styles.preview;">
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
diff --git a/chrome/content/zotero/tools/testTranslators/translatorTester.js b/chrome/content/zotero/tools/testTranslators/translatorTester.js
index 001aa67f1..b20e48871 100644
--- a/chrome/content/zotero/tools/testTranslators/translatorTester.js
+++ b/chrome/content/zotero/tools/testTranslators/translatorTester.js
@@ -196,6 +196,8 @@ Zotero_TranslatorTester = function(translator, type, debugCallback) {
}
};
+Zotero_TranslatorTester.DEFER_DELAY = 30000; // Delay for deferred tests
+
/**
* Removes document objects, which contain cyclic references, and other fields to be ignored from items
* @param {Object} Item, in the format returned by Zotero.Item.serialize()
@@ -258,7 +260,9 @@ Zotero_TranslatorTester._sanitizeItem = function(item, testItem, keepValidFields
if(!keepValidFields && "accessDate" in item) delete item.accessDate;
//sort tags, if they're still there
- if(item.tags && typeof item.tags === "object" && "sort" in item.tags) item.tags.sort();
+ if(item.tags && typeof item.tags === "object" && "sort" in item.tags) {
+ item.tags = Zotero.Utilities.arrayUnique(item.tags).sort();
+ }
return item;
};
@@ -318,7 +322,7 @@ Zotero_TranslatorTester.prototype._runTestsRecursively = function(testDoneCallba
var testNumber = this.tests.length-this.pending.length;
var me = this;
- this._debug(this, "\nTranslatorTester: Running "+this.translator.label+" Test "+testNumber);
+ this._debug(this, "TranslatorTester: Running "+this.translator.label+" Test "+testNumber);
var executedCallback = false;
var callback = function(obj, test, status, message) {
@@ -375,7 +379,14 @@ Zotero_TranslatorTester.prototype.fetchPageAndRunTest = function(test, testDoneC
var hiddenBrowser = Zotero.HTTP.processDocuments(test.url,
function(doc) {
if(test.defer) {
- Zotero.setTimeout(function() { runTest(doc) }, 30000, true);
+ me._debug(this, "TranslatorTesting: Waiting "
+ + (Zotero_TranslatorTester.DEFER_DELAY/1000)
+ + " second(s) for page content to settle"
+ );
+ Zotero.setTimeout(
+ function() {runTest(hiddenBrowser.contentDocument) },
+ Zotero_TranslatorTester.DEFER_DELAY, true
+ );
} else {
runTest(doc);
}
@@ -386,6 +397,8 @@ Zotero_TranslatorTester.prototype.fetchPageAndRunTest = function(test, testDoneC
},
true
);
+
+ hiddenBrowser.docShell.allowMetaRedirects = true;
};
/**
diff --git a/chrome/content/zotero/webpagedump/common.js b/chrome/content/zotero/webpagedump/common.js
index 2e290d06b..87810a624 100644
--- a/chrome/content/zotero/webpagedump/common.js
+++ b/chrome/content/zotero/webpagedump/common.js
@@ -310,8 +310,10 @@ var wpdCommon = {
},
// add a line to the error list (displays a maximum of 15 errors)
- addError: function (aError) {
- Zotero.debug('ERROR: ' + aError);
+ addError: function (errorMsg, errorObj) {
+ if (errorMsg) Zotero.debug(errorMsg);
+ if (errorObj) Zotero.debug(errorObj);
+ /*
if (this.errCount < WPD_MAXUIERRORCOUNT) {
if (this.errList.indexOf(aError) > -1) return; // is the same
this.errList = this.errList + aError + "\n";
@@ -319,6 +321,7 @@ var wpdCommon = {
this.errList = this.errList + '...';
}
this.errCount++;
+ */
},
saveWebPage: function (aDestFile) {
@@ -505,7 +508,7 @@ var wpdCommon = {
var aBaseURLObj = this.convertURLToObject(aBaseURL);
return aBaseURLObj.resolve(aRelURL);
} catch (ex) {
- this.addError("[wpdCommon.resolveURL]:\n -> aBaseURL: " + aBaseURL + "\n -> aRelURL: " + aRelURL + "\n -> " + ex);
+ this.addError("[wpdCommon.resolveURL]:\n -> aBaseURL: " + aBaseURL + "\n -> aRelURL: " + aRelURL, ex);
}
return "";
},
@@ -516,7 +519,7 @@ var wpdCommon = {
aURLObj.spec = aURL
return aURLObj.asciiHost;
} catch (ex) {
- this.addError("[wpdCommon.getHostName]:\n -> aURL: " + aURL + "\n -> " + ex);
+ this.addError("[wpdCommon.getHostName]:\n -> aURL: " + aURL, ex);
}
return "";
},
@@ -527,7 +530,7 @@ var wpdCommon = {
aURLObj.spec = aURL
return aURLObj.asciiSpec;
} catch (ex) {
- this.addError("[wpdCommon.getHostName]:\n -> aURL: " + aURL + "\n -> " + ex);
+ this.addError("[wpdCommon.getHostName]:\n -> aURL: " + aURL, ex);
}
return "";
},
@@ -577,7 +580,7 @@ var wpdCommon = {
if (text) output = output.split(/\n/g);
return output;
} catch (ex) {
- this.addError("[wpdCommon.readFile]:\n -> str_Filename: " + str_Filename + "\n -> " + ex);
+ this.addError("[wpdCommon.readFile]:\n -> str_Filename: " + str_Filename, ex);
}
return "";
},
@@ -621,7 +624,7 @@ var wpdCommon = {
obj_Transport.close();
return true;
} catch (ex) {
- this.addError("[wpdCommon.writeFile]:\n -> str_Filename: " + str_Filename + "\n -> " + ex);
+ this.addError("[wpdCommon.writeFile]:\n -> str_Filename: " + str_Filename, ex);
}
return false;
},
@@ -651,10 +654,13 @@ var wpdCommon = {
if (MODE_SIMULATE) return true;
try {
//new obj_URI object
- var obj_URI = Components.classes["@mozilla.org/network/io-service;1"].getService(Components.interfaces.nsIIOService).newURI(aSourceURL, null, null);
+ var obj_URI = Components.classes["@mozilla.org/network/io-service;1"]
+ .getService(Components.interfaces.nsIIOService)
+ .newURI(aSourceURL, null, null);
//new file object
- var obj_TargetFile = Components.classes["@mozilla.org/file/local;1"].createInstance(Components.interfaces.nsILocalFile);
+ var obj_TargetFile = Components.classes["@mozilla.org/file/local;1"]
+ .createInstance(Components.interfaces.nsILocalFile);
//set file with path
// NOTE: This function has a known bug on the macintosh and other OSes
// which do not represent file locations as paths. If you do use this
@@ -662,29 +668,25 @@ var wpdCommon = {
obj_TargetFile.initWithPath(aTargetFilename);
//new persistence object
- var obj_Persist = Components.classes["@mozilla.org/embedding/browser/nsWebBrowserPersist;1"].createInstance(Components.interfaces.nsIWebBrowserPersist);
+ var obj_Persist = Components.classes["@mozilla.org/embedding/browser/nsWebBrowserPersist;1"]
+ .createInstance(Components.interfaces.nsIWebBrowserPersist);
// set flags
const nsIWBP = Components.interfaces.nsIWebBrowserPersist;
- var flags = nsIWBP.PERSIST_FLAGS_REPLACE_EXISTING_FILES | nsIWBP.PERSIST_FLAGS_FROM_CACHE;
+ var flags = nsIWBP.PERSIST_FLAGS_REPLACE_EXISTING_FILES
+ | nsIWBP.PERSIST_FLAGS_FROM_CACHE;
//nsIWBP.PERSIST_FLAGS_BYPASS_CACHE;
obj_Persist.persistFlags = flags;
// has the url the same filetype like the file extension?
//save file to target
- try {
- obj_Persist.saveURI(obj_URI, null, null, null, null, obj_TargetFile);
- } catch(e if e.name === "NS_ERROR_XPC_NOT_ENOUGH_ARGS") {
- // https://bugzilla.mozilla.org/show_bug.cgi?id=794602
- // XXX Always use when we no longer support Firefox < 18
- obj_Persist.saveURI(obj_URI, null, null, null, null, obj_TargetFile, null);
- }
+ Zotero.Utilities.Internal.saveURI(obj_Persist, obj_URI, obj_TargetFile);
return true;
} catch (ex) {
aSourceURL = this.removeGETFromURL(aSourceURL);
- this.addError("[wpdCommon.downloadFile]:\n -> aSourceURL: " + aSourceURL.substring(aSourceURL.length - 60) + "\n -> aTargetFilename: " + aTargetFilename + "\n -> " + ex);
+ this.addError("[wpdCommon.downloadFile]:\n -> aSourceURL: " + aSourceURL.substring(aSourceURL.length - 60) + "\n -> aTargetFilename: " + aTargetFilename, ex);
}
return false;
},
diff --git a/chrome/content/zotero/webpagedump/domsaver.js b/chrome/content/zotero/webpagedump/domsaver.js
index 011bd64c6..5802557d1 100644
--- a/chrome/content/zotero/webpagedump/domsaver.js
+++ b/chrome/content/zotero/webpagedump/domsaver.js
@@ -503,7 +503,7 @@ var wpdDOMSaver = {
aNode.setAttribute("src", this.relativeLinkFix(newFileName));
}
} catch (ex) {
- wpdCommon.addError("[wpdCommon.processDOMNode]:\n -> aNode.nodeName: " + aNode.nodeName + "\n -> " + ex);
+ wpdCommon.addError("[wpdCommon.processDOMNode]:\n -> aNode.nodeName: " + aNode.nodeName, ex);
}
break;
case "xmp":
@@ -525,7 +525,7 @@ var wpdDOMSaver = {
aNode.removeAttribute("onload");
}
} catch (ex) {
- wpdCommon.addError("[wpdDOMSaver.processDOMNode]:\n -> aNode.nodeName: " + aNode.nodeName + "\n -> " + ex);
+ wpdCommon.addError("[wpdDOMSaver.processDOMNode]:\n -> aNode.nodeName: " + aNode.nodeName, ex);
}
return aNode;
},
@@ -750,7 +750,7 @@ var wpdDOMSaver = {
}
return newFileName;
} catch (ex) {
- wpdCommon.addError("[wpdDOMSaver.download]\n -> aURLSpec: " + aURLSpec + "\n -> " + ex);
+ wpdCommon.addError("[wpdDOMSaver.download]\n -> aURLSpec: " + aURLSpec, ex);
return "";
}
},
@@ -784,7 +784,7 @@ var wpdDOMSaver = {
rootNode.insertBefore(aDocument.createTextNode("\n"), rootNode.firstChild);
} catch (ex) {
- wpdCommon.addError("[wpdDOMSaver.createDocTypeNode]\n -> " + ex);
+ wpdCommon.addError("[wpdDOMSaver.createDocTypeNode]", ex);
}
},
@@ -795,7 +795,7 @@ var wpdDOMSaver = {
try {
return aHTMLText.replace("", this.getDocType(aDocument));
} catch (ex) {
- wpdCommon.addError("[wpdDOMSaver.replaceDocType]\n -> " + ex);
+ wpdCommon.addError("[wpdDOMSaver.replaceDocType]", ex);
}
return aHTMLText;
},
@@ -857,7 +857,7 @@ var wpdDOMSaver = {
rootNode.firstChild.insertBefore(aDocument.createTextNode("\n"), rootNode.firstChild.firstChild);
} catch (ex) {
- wpdCommon.addError("[wpdDOMSaver.createMetaCharsetNode]\n -> " + ex);
+ wpdCommon.addError("[wpdDOMSaver.createMetaCharsetNode]", ex);
}
},
@@ -872,7 +872,7 @@ var wpdDOMSaver = {
rootNode.firstChild.insertBefore(aDocument.createTextNode("\n"), rootNode.firstChild.firstChild);
rootNode.firstChild.insertBefore(metaNode, rootNode.firstChild.firstChild);
} catch (ex) {
- wpdCommon.addError("[wpdDOMSaver.createMetaNameNode]\n -> " + ex);
+ wpdCommon.addError("[wpdDOMSaver.createMetaNameNode]", ex);
}
},
@@ -981,7 +981,7 @@ var wpdDOMSaver = {
Zotero.debug("[wpdDOMSaver.saveDocumentCSS]: " + this.currentDir + aFileName);
// write css file
var CSSFile = this.currentDir + aFileName;
- if (!wpdCommon.writeFile(CSSText, CSSFile)) wpdCommon.addError("[wpdDOMSaver.saveDocumentCSS]: could not write CSS File\n");
+ if (!wpdCommon.writeFile(CSSText, CSSFile)) wpdCommon.addError("[wpdDOMSaver.saveDocumentCSS]: could not write CSS File");
return aFileName;
}
}
@@ -1051,7 +1051,7 @@ var wpdDOMSaver = {
// and write the file...
var HTMLFile = this.currentDir + aFileName;
- if (!wpdCommon.writeFile(HTMLText, HTMLFile)) wpdCommon.addError("[wpdDOMSaver.saveDocumentHTML]: could not write HTML File\n");
+ if (!wpdCommon.writeFile(HTMLText, HTMLFile)) wpdCommon.addError("[wpdDOMSaver.saveDocumentHTML]: could not write HTML File");
return aFileName;
},
@@ -1083,7 +1083,7 @@ var wpdDOMSaver = {
try {
return this.saveDocumentEx(this.document, this.name);
} catch (ex) {
- wpdCommon.addError("[wpdDOMSaver.saveHTMLDocument]\n -> " + ex);
+ wpdCommon.addError("[wpdDOMSaver.saveHTMLDocument]", ex);
}
}
diff --git a/chrome/content/zotero/xpcom/attachments.js b/chrome/content/zotero/xpcom/attachments.js
index d49f4f74e..fe77a6cda 100644
--- a/chrome/content/zotero/xpcom/attachments.js
+++ b/chrome/content/zotero/xpcom/attachments.js
@@ -305,7 +305,7 @@ Zotero.Attachments = new function(){
var nsIURL = Components.classes["@mozilla.org/network/standard-url;1"]
.createInstance(Components.interfaces.nsIURL);
nsIURL.spec = url;
- wbp.saveURI(nsIURL, null, null, null, null, tmpFile, null);
+ Zotero.Utilities.Internal.saveURI(wbp, nsIURL, tmpFile);
yield deferred.promise;
// Create DB item
@@ -452,7 +452,8 @@ Zotero.Attachments = new function(){
title = dir[dir.length - 2];
}
}
- else {
+
+ if (!title) {
title = url;
}
}
@@ -613,7 +614,7 @@ Zotero.Attachments = new function(){
wbp.progressListener = new Zotero.WebProgressFinishListener(function () {
deferred.resolve();
});
- wbp.saveURI(nsIURL, null, null, null, null, file, null);
+ Zotero.Utilities.Internal.saveURI(wbp, nsIURL, file);
yield deferred.promise;
}
diff --git a/chrome/content/zotero/xpcom/cite.js b/chrome/content/zotero/xpcom/cite.js
index 3bb4c39ba..6d3fb6663 100644
--- a/chrome/content/zotero/xpcom/cite.js
+++ b/chrome/content/zotero/xpcom/cite.js
@@ -522,100 +522,20 @@ Zotero.Cite.System.prototype = {
throw "Zotero.Cite.System.retrieveItem called on non-item "+item;
}
- // don't return URL or accessed information for journal articles if a
- // pages field exists
- var itemType = Zotero.ItemTypes.getName(zoteroItem.itemTypeID);
- var cslType = CSL_TYPE_MAPPINGS[itemType];
- if(!cslType) cslType = "article";
- var ignoreURL = ((zoteroItem.getField("accessDate", true, true) || zoteroItem.getField("url", true, true)) &&
- ["journalArticle", "newspaperArticle", "magazineArticle"].indexOf(itemType) !== -1
+ var cslItem = Zotero.Utilities.itemToCSLJSON(zoteroItem);
+
+ if (!Zotero.Prefs.get("export.citePaperJournalArticleURL")) {
+ var itemType = Zotero.ItemTypes.getName(zoteroItem.itemTypeID);
+ // don't return URL or accessed information for journal articles if a
+ // pages field exists
+ if (["journalArticle", "newspaperArticle", "magazineArticle"].indexOf(itemType) !== -1
&& zoteroItem.getField("pages")
- && !Zotero.Prefs.get("export.citePaperJournalArticleURL"));
-
- var cslItem = {
- 'id':zoteroItem.id,
- 'type':cslType
- };
-
- // get all text variables (there must be a better way)
- // TODO: does citeproc-js permit short forms?
- for(var variable in CSL_TEXT_MAPPINGS) {
- var fields = CSL_TEXT_MAPPINGS[variable];
- if(variable == "URL" && ignoreURL) continue;
- for each(var field in fields) {
- var value = zoteroItem.getField(field, false, true).toString();
- if(value != "") {
- // Strip enclosing quotes
- if(value.match(/^".+"$/)) {
- value = value.substr(1, value.length-2);
- }
- cslItem[variable] = value;
- break;
- }
+ ) {
+ delete cslItem.URL;
+ delete cslItem.accessed;
}
}
- // separate name variables
- var authorID = Zotero.CreatorTypes.getPrimaryIDForType(zoteroItem.itemTypeID);
- var creators = zoteroItem.getCreators();
- for each(var creator in creators) {
- if(creator.creatorTypeID == authorID) {
- var creatorType = "author";
- } else {
- var creatorType = Zotero.CreatorTypes.getName(creator.creatorTypeID);
- }
-
- var creatorType = CSL_NAMES_MAPPINGS[creatorType];
- if(!creatorType) continue;
-
- var nameObj = {'family':creator.ref.lastName, 'given':creator.ref.firstName};
-
- if(cslItem[creatorType]) {
- cslItem[creatorType].push(nameObj);
- } else {
- cslItem[creatorType] = [nameObj];
- }
- }
-
- // get date variables
- for(var variable in CSL_DATE_MAPPINGS) {
- var date = zoteroItem.getField(CSL_DATE_MAPPINGS[variable], false, true);
- if(date) {
- var dateObj = Zotero.Date.strToDate(date);
- // otherwise, use date-parts
- var dateParts = [];
- if(dateObj.year) {
- // add year, month, and day, if they exist
- dateParts.push(dateObj.year);
- if(dateObj.month !== undefined) {
- dateParts.push(dateObj.month+1);
- if(dateObj.day) {
- dateParts.push(dateObj.day);
- }
- }
- cslItem[variable] = {"date-parts":[dateParts]};
-
- // if no month, use season as month
- if(dateObj.part && !dateObj.month) {
- cslItem[variable].season = dateObj.part;
- }
- } else {
- // if no year, pass date literally
- cslItem[variable] = {"literal":date};
- }
- }
- }
-
- // extract PMID
- var extra = zoteroItem.getField("extra", false, true);
- if(typeof extra === "string") {
- var m = /(?:^|\n)PMID:\s*([0-9]+)/.exec(extra);
- if(m) cslItem.PMID = m[1];
- m = /(?:^|\n)PMCID:\s*((?:PMC)?[0-9]+)/.exec(extra);
- if(m) cslItem.PMCID = m[1];
- }
-
- //this._cache[zoteroItem.id] = cslItem;
return cslItem;
},
diff --git a/chrome/content/zotero/xpcom/collectionTreeView.js b/chrome/content/zotero/xpcom/collectionTreeView.js
index 68ddd339e..fa6bc2ba3 100644
--- a/chrome/content/zotero/xpcom/collectionTreeView.js
+++ b/chrome/content/zotero/xpcom/collectionTreeView.js
@@ -87,6 +87,8 @@ Zotero.CollectionTreeView.prototype.setTree = Zotero.Promise.coroutine(function*
// Add a keypress listener for expand/collapse
var tree = this._treebox.treeBody.parentNode;
tree.addEventListener('keypress', function(event) {
+ if (tree.editingRow != -1) return; // In-line editing active
+
var key = String.fromCharCode(event.which);
if (key == '+' && !(event.ctrlKey || event.altKey || event.metaKey)) {
@@ -774,6 +776,54 @@ Zotero.CollectionTreeView.prototype.selectLibrary = Zotero.Promise.coroutine(fun
});
+Zotero.CollectionTreeView.prototype.selectTrash = function (libraryID) {
+ if (Zotero.suppressUIUpdates) {
+ Zotero.debug("UI updates suppressed -- not changing library selection");
+ return false;
+ }
+
+ // Check if trash is already selected
+ if (this.selection.currentIndex != -1) {
+ let itemGroup = this._getItemAtRow(this.selection.currentIndex);
+ if (itemGroup.isTrash() && itemGroup.ref.libraryID == libraryID) {
+ this._treebox.ensureRowIsVisible(this.selection.currentIndex);
+ return true;
+ }
+ }
+
+ // If in My Library and it's collapsed, open it
+ if (!libraryID && !this.isContainerOpen(0)) {
+ this.toggleOpenState(0);
+ }
+
+ // Find library trash
+ for (let i = 0; i < this.rowCount; i++) {
+ let itemGroup = this._getItemAtRow(i);
+
+ // If group header is closed, open it
+ if (itemGroup.isHeader() && itemGroup.ref.id == 'group-libraries-header'
+ && !this.isContainerOpen(i)) {
+ this.toggleOpenState(i);
+ continue;
+ }
+
+ if (itemGroup.isLibrary(true) && itemGroup.ref.libraryID == libraryID
+ && !this.isContainerOpen(i)) {
+ this.toggleOpenState(i);
+ continue;
+ }
+
+ if (itemGroup.isTrash() && itemGroup.ref.libraryID == libraryID) {
+ this._treebox.ensureRowIsVisible(i);
+ this.selection.select(i);
+ return true;
+ }
+ }
+
+ return false;
+}
+
+
/**
* Select the last-viewed source
*/
@@ -1826,8 +1876,12 @@ Zotero.CollectionTreeView.prototype.drop = Zotero.Promise.coroutine(function* (r
// Add items to target collection
if (targetCollectionID) {
+ let ids = newIDs.filter(function (itemID) {
+ var item = Zotero.Items.get(itemID);
+ return !item.getSource();
+ });
var collection = yield Zotero.Collections.getAsync(targetCollectionID);
- yield collection.addItems(newIDs);
+ yield collection.addItems(ids);
}
// If moving, remove items from source collection
diff --git a/chrome/content/zotero/xpcom/connector/cachedTypes.js b/chrome/content/zotero/xpcom/connector/cachedTypes.js
index bdc075187..c432f3823 100644
--- a/chrome/content/zotero/xpcom/connector/cachedTypes.js
+++ b/chrome/content/zotero/xpcom/connector/cachedTypes.js
@@ -87,7 +87,7 @@ Zotero.Connector_Types = new function() {
} else if(Zotero.isChrome) {
return chrome.extension.getURL("images/"+icon);
} else if(Zotero.isSafari) {
- return safari.extension.baseURI+"images/itemTypes/"+icon;
+ return safari.extension.baseURI+"images/"+icon;
}
};
}
diff --git a/chrome/content/zotero/xpcom/connector/connector.js b/chrome/content/zotero/xpcom/connector/connector.js
index 2c56ff403..0ea7301e6 100644
--- a/chrome/content/zotero/xpcom/connector/connector.js
+++ b/chrome/content/zotero/xpcom/connector/connector.js
@@ -143,7 +143,7 @@ Zotero.Connector = new function() {
* @param {Object} data RPC data. See documentation above.
* @param {Function} callback Function to be called when requests complete.
*/
- this.callMethod = function(method, data, callback) {
+ this.callMethod = function(method, data, callback, tab) {
// Don't bother trying if not online in bookmarklet
if(Zotero.isBookmarklet && this.isOnline === false) {
callback(false, 0);
@@ -211,6 +211,57 @@ Zotero.Connector = new function() {
"X-Zotero-Connector-API-Version":CONNECTOR_API_VERSION
});
}
+ },
+
+ /**
+ * Adds detailed cookies to the data before sending "saveItems" request to
+ * the server/Standalone
+ *
+ * @param {Object} data RPC data. See documentation above.
+ * @param {Function} callback Function to be called when requests complete.
+ */
+ this.setCookiesThenSaveItems = function(data, callback, tab) {
+ if(Zotero.isFx && !Zotero.isBookmarklet && data.uri) {
+ var host = Services.ios.newURI(data.uri, null, null).host;
+ var cookieEnum = Services.cookies.getCookiesFromHost(host);
+ var cookieHeader = '';
+ while(cookieEnum.hasMoreElements()) {
+ var cookie = cookieEnum.getNext().QueryInterface(Components.interfaces.nsICookie2);
+ cookieHeader += '\n' + cookie.name + '=' + cookie.value
+ + ';Domain=' + cookie.host
+ + (cookie.path ? ';Path=' + cookie.path : '')
+ + (!cookie.isDomain ? ';hostOnly' : '') //not a legit flag, but we have to use it internally
+ + (cookie.isSecure ? ';secure' : '');
+ }
+
+ if(cookieHeader) {
+ data.detailedCookies = cookieHeader.substr(1);
+ }
+
+ this.callMethod("saveItems", data, callback, tab);
+ return;
+ } else if(Zotero.isChrome && !Zotero.isBookmarklet) {
+ var self = this;
+ chrome.cookies.getAll({url: tab.url}, function(cookies) {
+ var cookieHeader = '';
+ for(var i=0, n=cookies.length; i=0; i--) {
+ cookieHost = '.' + hostParts[i] + cookieHost;
+ if(this._cookies[cookieHost]) {
+ found = this._getCookiesForPath(cookies, this._cookies[cookieHost], pathParts, secure, i==0) || found;
+ }
+ }
+
+ //Zotero.debug("CookieSandbox: returning cookies:");
+ //Zotero.debug(cookies);
+
+ return found ? cookies : null;
+ },
+
+ "_getCookiesForPath": function(cookies, cookiePaths, pathParts, secure, isHost) {
+ var found = false;
+ var path = '';
+ for(var i=0, n=pathParts.length; i 0) {
var version = "1.0";
- } else if(resolver.getElementsByTagName("OpenUrl 0.1").length > 0) {
+ } else if(resolver.getElementsByTagName("OpenURL_0.1").length > 0) {
var version = "0.1";
} else {
continue;
diff --git a/chrome/content/zotero/xpcom/quickCopy.js b/chrome/content/zotero/xpcom/quickCopy.js
index f740ce21a..c33e7193f 100644
--- a/chrome/content/zotero/xpcom/quickCopy.js
+++ b/chrome/content/zotero/xpcom/quickCopy.js
@@ -279,11 +279,10 @@ Zotero.QuickCopy = new function() {
for(var i=0; i= 35) {
return [this._sandboxManager.wrap(Zotero.Translate.DOMWrapper.unwrap(this.document), null,
this.document.__wrapperOverrides), this.location];
} else {
diff --git a/chrome/content/zotero/xpcom/translation/translate_firefox.js b/chrome/content/zotero/xpcom/translation/translate_firefox.js
index ea46d2f3b..7147b9d59 100644
--- a/chrome/content/zotero/xpcom/translation/translate_firefox.js
+++ b/chrome/content/zotero/xpcom/translation/translate_firefox.js
@@ -401,14 +401,17 @@ Zotero.Translate.SandboxManager = function(sandboxLocation) {
this.sandbox.DOMParser = sandboxLocation.DOMParser;
} else {
this.sandbox.DOMParser = function() {
- this.__exposedProps__ = {"parseFromString":"r"};
- this.parseFromString = function(str, contentType) {
+ var obj = new sandbox.Object();
+ var wrappedObj = obj.wrappedJSObject || obj;
+ wrappedObj.__exposedProps__ = {"parseFromString":"r"};
+ wrappedObj.parseFromString = function(str, contentType) {
var xhr = sandbox.XMLHttpRequest();
xhr.open("GET", "data:"+contentType+";charset=utf-8,"+encodeURIComponent(str), false);
xhr.send();
if (!xhr.responseXML) throw new Error("error parsing XML");
return xhr.responseXML;
}
+ return obj;
};
}
this.sandbox.DOMParser.__exposedProps__ = {"prototype":"r"};
@@ -416,9 +419,12 @@ Zotero.Translate.SandboxManager = function(sandboxLocation) {
this.sandbox.XMLSerializer = function() {
var s = Components.classes["@mozilla.org/xmlextras/xmlserializer;1"]
.createInstance(Components.interfaces.nsIDOMSerializer);
- this.serializeToString = function(doc) {
+ var obj = new sandbox.Object();
+ var wrappedObj = obj.wrappedJSObject || obj;
+ wrappedObj.serializeToString = function(doc) {
return s.serializeToString(Zotero.Translate.DOMWrapper.unwrap(doc));
};
+ return obj;
};
this.sandbox.XMLSerializer.__exposedProps__ = {"prototype":"r"};
this.sandbox.XMLSerializer.prototype = {"__exposedProps__":{"serializeToString":"r"}};
@@ -443,10 +449,11 @@ Zotero.Translate.SandboxManager = function(sandboxLocation) {
target = new XPCNativeWrapper(target);
}
var ret = new sandbox.Object();
- ret.wrappedJSObject.has = function(x, prop) {
+ var wrappedRet = ret.wrappedJSObject || ret;
+ wrappedRet.has = function(x, prop) {
return overrides.hasOwnProperty(prop) || prop in target;
};
- ret.wrappedJSObject.get = function(x, prop, receiver) {
+ wrappedRet.get = function(x, prop, receiver) {
if (prop === "__wrappedObject") return target;
if (prop === "__wrappingManager") return me;
var y = overrides.hasOwnProperty(prop) ? overrides[prop] : target[prop];
@@ -461,10 +468,10 @@ Zotero.Translate.SandboxManager = function(sandboxLocation) {
return wrap(y.apply(target, args));
} : new sandbox.Object());
};
- ret.wrappedJSObject.ownKeys = function(x) {
+ wrappedRet.ownKeys = function(x) {
return Components.utils.cloneInto(target.getOwnPropertyNames(), sandbox);
};
- ret.wrappedJSObject.enumerate = function(x) {
+ wrappedRet.enumerate = function(x) {
var y = new sandbox.Array();
for (var i in target) y.wrappedJSObject.push(i);
return y;
diff --git a/chrome/content/zotero/xpcom/translation/translate_item.js b/chrome/content/zotero/xpcom/translation/translate_item.js
index 214303ba7..e0e4c6f3e 100644
--- a/chrome/content/zotero/xpcom/translation/translate_item.js
+++ b/chrome/content/zotero/xpcom/translation/translate_item.js
@@ -226,14 +226,65 @@ Zotero.Translate.ItemSaver.prototype = {
return false;
}
- if(!attachment.path) {
+ if (attachment.path) {
+ var url = Zotero.Attachments.cleanAttachmentURI(attachment.path, false);
+ if (url && /^(?:https?|ftp):/.test(url)) {
+ // A web URL. Don't bother parsing it as path below
+ // Some paths may look like URIs though, so don't just test for 'file'
+ // E.g. C:\something
+ if (!attachment.url) attachment.url = attachment.path;
+ delete attachment.path;
+ }
+ }
+
+ let done = false;
+ if (attachment.path) {
+ var file = this._parsePath(attachment.path);
+ if(!file) {
+ let asUrl = Zotero.Attachments.cleanAttachmentURI(attachment.path);
+ if (!attachment.url && !asUrl) {
+ let e = "Translate: Could not parse attachment path <" + attachment.path + ">";
+ Zotero.debug(e, 2);
+ attachmentCallback(attachment, false, e);
+ return false;
+ } else if (!attachment.url && asUrl) {
+ Zotero.debug("Translate: attachment path looks like a URI: " + attachment.path);
+ attachment.url = asUrl;
+ delete attachment.path;
+ }
+ } else {
+ if (attachment.url) {
+ attachment.linkMode = "imported_url";
+ var myID = yield Zotero.Attachments.importSnapshotFromFile({
+ file: file,
+ url: attachment.url,
+ title: attachment.title,
+ contentType: attachment.mimeType,
+ charset: attachment.charset,
+ parentItemID: parentID
+ });
+ }
+ else {
+ attachment.linkMode = "imported_file";
+ var myID = yield Zotero.Attachments.importFromFile({
+ file: file,
+ parentItemID: parentID
+ });
+ }
+ attachmentCallback(attachment, 100);
+ done = true;
+ }
+ }
+
+ if(!done) {
let url = Zotero.Attachments.cleanAttachmentURI(attachment.url);
if (!url) {
- let e = "Translate: Invalid attachment URL specified <" + attachment.url + ">";
+ let e = "Translate: Invalid attachment.url specified <" + attachment.url + ">";
Zotero.debug(e, 2);
attachmentCallback(attachment, false, e);
return false;
}
+
attachment.url = url;
url = Components.classes["@mozilla.org/network/io-service;1"]
.getService(Components.interfaces.nsIIOService)
@@ -241,17 +292,17 @@ Zotero.Translate.ItemSaver.prototype = {
// see if this is actually a file URL
if(url.scheme == "file") {
- attachment.path = attachment.url;
- attachment.url = false;
+ let e = "Translate: Local file attachments cannot be specified in attachment.url";
+ Zotero.debug(e, 2);
+ attachmentCallback(attachment, false, e);
+ return false;
} else if(url.scheme != "http" && url.scheme != "https") {
let e = "Translate: " + url.scheme + " protocol is not allowed for attachments from translators.";
Zotero.debug(e, 2);
attachmentCallback(attachment, false, e);
return false;
}
- }
-
- if(!attachment.path) {
+
// At this point, must be a valid HTTP/HTTPS url
attachment.linkMode = "linked_file";
var newItem = yield Zotero.Attachments.linkFromURL({
@@ -269,29 +320,6 @@ Zotero.Translate.ItemSaver.prototype = {
}
Zotero.debug("Translate: Created attachment; id is " + newItem.id, 4);
attachmentCallback(attachment, 100);
- } else {
- var file = this._parsePath(attachment.path);
- if(!file) return;
-
- if (attachment.url) {
- attachment.linkMode = "imported_url";
- var newItem = yield Zotero.Attachments.importSnapshotFromFile({
- file: file,
- url: attachment.url,
- title: attachment.title,
- contentType: attachment.mimeType,
- charset: attachment.charset,
- parentItemID: parentID
- });
- }
- else {
- attachment.linkMode = "imported_file";
- var newItem = yield Zotero.Attachments.importFromFile({
- file: file,
- parentItemID: parentID
- });
- }
- attachmentCallback(attachment, 100);
}
// save fields
@@ -311,43 +339,73 @@ Zotero.Translate.ItemSaver.prototype = {
"_parsePathURI":function(path) {
try {
var uri = Services.io.newURI(path, "", this._baseURI);
+ } catch(e) {
+ Zotero.debug("Translate: " + path + " is not a valid URI");
+ return false;
+ }
+
+ try {
var file = uri.QueryInterface(Components.interfaces.nsIFileURL).file;
- if(file.path != '/' && file.exists()) return file;
}
catch (e) {
- Zotero.logError(e);
+ Zotero.debug("Translate: " + uri.spec + " is not a file URI");
+ return false;
}
- return false;
+
+ if(file.path == '/') {
+ Zotero.debug("Translate: " + path + " points to root directory");
+ return false;
+ }
+
+ if(!file.exists()) {
+ Zotero.debug("Translate: File at " + file.path + " does not exist");
+ return false;
+ }
+
+ return file;
},
"_parseAbsolutePath":function(path) {
+ var file = Components.classes["@mozilla.org/file/local;1"].
+ createInstance(Components.interfaces.nsILocalFile);
try {
- // First, try to parse absolute paths using initWithPath
- var file = Components.classes["@mozilla.org/file/local;1"].
- createInstance(Components.interfaces.nsILocalFile);
file.initWithPath(path);
- if(file.exists()) return file;
} catch(e) {
- Zotero.logError(e);
+ Zotero.debug("Translate: Invalid absolute path: " + path);
+ return false;
}
- return false;
+
+ if(!file.exists()) {
+ Zotero.debug("Translate: File at absolute path " + file.path + " does not exist");
+ return false;
+ }
+
+ return file;
},
"_parseRelativePath":function(path) {
- try {
- var file = this._baseURI.QueryInterface(Components.interfaces.nsIFileURL).file.parent;
- var splitPath = path.split(/\//g);
- for(var i=0; i= regRanges[j].length; j+=2) {
+ if(registrant.length == regRanges[j].length
+ && registrant >= regRanges[j] && registrant <= regRanges[j+1] // Falls within the range
+ ) {
+ parts.push(registrant);
+ found = true;
+ break;
+ }
+ }
+
+ i++;
+ }
+
+ if (!found) return ''; // Outside of valid range, but maybe we need to update our data
+
+ parts.push(isbn.substring(i,isbn.length-1)); // Publication is the remainder up to last digit
+ parts.push(isbn.charAt(isbn.length-1)); // Check digit
+
+ return parts.join('-');
}
}
diff --git a/chrome/content/zotero/xpcom/zotero.js b/chrome/content/zotero/xpcom/zotero.js
index fb8b99f50..155fc2387 100644
--- a/chrome/content/zotero/xpcom/zotero.js
+++ b/chrome/content/zotero/xpcom/zotero.js
@@ -52,6 +52,7 @@ Components.utils.import("resource://gre/modules/osfile.jsm");
this.getAncestorByTagName = getAncestorByTagName;
this.randomString = randomString;
this.moveToUnique = moveToUnique;
+ this.reinit = reinit; // defined in zotero-service.js
// Public properties
this.initialized = false;
@@ -174,6 +175,8 @@ Components.utils.import("resource://gre/modules/osfile.jsm");
this.mainThread = Services.tm.mainThread;
+ this.clientName = ZOTERO_CONFIG.CLIENT_NAME;
+
var appInfo = Components.classes["@mozilla.org/xre/app-info;1"]
.getService(Components.interfaces.nsIXULAppInfo);
this.platformVersion = appInfo.platformVersion;
@@ -252,7 +255,8 @@ Components.utils.import("resource://gre/modules/osfile.jsm");
else {
Zotero.dir = 'ltr';
}
-
+ Zotero.rtl = Zotero.dir == 'rtl';
+
// Make sure that Zotero Standalone is not running as root
if(Zotero.isStandalone && !Zotero.isWin) _checkRoot();
@@ -2240,7 +2244,7 @@ Zotero.Prefs = new function(){
case branch.PREF_BOOL:
return branch.getBoolPref(pref);
case branch.PREF_STRING:
- return branch.getCharPref(pref);
+ return '' + branch.getComplexValue(pref, Components.interfaces.nsISupportsString);
case branch.PREF_INT:
return branch.getIntPref(pref);
}
@@ -2327,6 +2331,63 @@ Zotero.Prefs = new function(){
// TODO: parse settings XML
}
+ // Handlers for some Zotero preferences
+ var _handlers = [
+ [ "automaticScraperUpdates", function(val) {
+ if (val){
+ Zotero.Schema.updateFromRepository();
+ }
+ else {
+ Zotero.Schema.stopRepositoryTimer();
+ }
+ }],
+ [ "note.fontSize", function(val) {
+ if (val < 6) {
+ Zotero.Prefs.set('note.fontSize', 11);
+ }
+ }],
+ [ "zoteroDotOrgVersionHeader", function(val) {
+ if (val) {
+ Zotero.VersionHeader.register();
+ }
+ else {
+ Zotero.VersionHeader.unregister();
+ }
+ }],
+ [ "zoteroDotOrgVersionHeader", function(val) {
+ if (val) {
+ Zotero.VersionHeader.register();
+ }
+ else {
+ Zotero.VersionHeader.unregister();
+ }
+ }],
+ [ "sync.autoSync", function(val) {
+ if (val) {
+ Zotero.Sync.Runner.IdleListener.register();
+ }
+ else {
+ Zotero.Sync.Runner.IdleListener.unregister();
+ }
+ }],
+ [ "search.quicksearch-mode", function(val) {
+ var wm = Components.classes["@mozilla.org/appshell/window-mediator;1"]
+ .getService(Components.interfaces.nsIWindowMediator);
+ var enumerator = wm.getEnumerator("navigator:browser");
+ while (enumerator.hasMoreElements()) {
+ var win = enumerator.getNext();
+ if (!win.ZoteroPane) continue;
+ Zotero.updateQuickSearchBox(win.ZoteroPane.document);
+ }
+
+ var enumerator = wm.getEnumerator("zotero:item-selector");
+ while (enumerator.hasMoreElements()) {
+ var win = enumerator.getNext();
+ if (!win.Zotero) continue;
+ Zotero.updateQuickSearchBox(win.document);
+ }
+ }]
+ ];
//
// Methods to register a preferences observer
@@ -2334,6 +2395,11 @@ Zotero.Prefs = new function(){
function register(){
this.prefBranch.QueryInterface(Components.interfaces.nsIPrefBranch2);
this.prefBranch.addObserver("", this, false);
+
+ // Register pre-set handlers
+ for (var i=0; i<_handlers.length; i++) {
+ this.registerObserver(_handlers[i][0], _handlers[i][1]);
+ }
}
function unregister(){
@@ -2343,143 +2409,48 @@ Zotero.Prefs = new function(){
this.prefBranch.removeObserver("", this);
}
+ /**
+ * @param {nsIPrefBranch} subject The nsIPrefBranch we're observing (after appropriate QI)
+ * @param {String} topic The string defined by NS_PREFBRANCH_PREFCHANGE_TOPIC_ID
+ * @param {String} data The name of the pref that's been changed (relative to subject)
+ */
function observe(subject, topic, data){
- if(topic!="nsPref:changed"){
+ if (topic != "nsPref:changed" || !_observers[data] || !_observers[data].length) {
return;
}
- try {
-
- // subject is the nsIPrefBranch we're observing (after appropriate QI)
- // data is the name of the pref that's been changed (relative to subject)
- switch (data) {
- case "statusBarIcon":
- var doc = Services.wm.getMostRecentWindow("navigator:browser").document;
-
- var addonBar = doc.getElementById("addon-bar");
- var icon = doc.getElementById("zotero-toolbar-button");
- // When the customize window is open, toolbar buttons seem to
- // become wrapped in toolbarpaletteitems, which we need to remove
- // manually if we change the pref to hidden or else the customize
- // window doesn't close.
- var wrapper = doc.getElementById("wrapper-zotero-toolbar-button");
- var palette = doc.getElementById("navigator-toolbox").palette;
- var inAddonBar = false;
- if (icon) {
- // Because of the potential wrapper, don't just use .parentNode
- var toolbar = Zotero.getAncestorByTagName(icon, "toolbar");
- inAddonBar = toolbar == addonBar;
- }
- var val = this.get("statusBarIcon");
- if (val == 0) {
- // If showing in add-on bar, hide
- if (!icon || !inAddonBar) {
- return;
- }
- palette.appendChild(icon);
- if (wrapper) {
- addonBar.removeChild(wrapper);
- }
- addonBar.setAttribute("currentset", addonBar.currentSet);
- doc.persist(addonBar.id, "currentset");
- }
- else {
- // If showing somewhere else, remove it from there
- if (icon && !inAddonBar) {
- palette.appendChild(icon);
- if (wrapper) {
- toolbar.removeChild(wrapper);
- }
- toolbar.setAttribute("currentset", toolbar.currentSet);
- doc.persist(toolbar.id, "currentset");
- }
-
- // If not showing in add-on bar, add
- if (!inAddonBar) {
- var icon = addonBar.insertItem("zotero-toolbar-button");
- addonBar.setAttribute("currentset", addonBar.currentSet);
- doc.persist(addonBar.id, "currentset");
- addonBar.setAttribute("collapsed", false);
- doc.persist(addonBar.id, "collapsed");
- }
- // And make small
- if (val == 1) {
- icon.setAttribute("compact", true);
- }
- // Or large
- else if (val == 2) {
- icon.removeAttribute("compact");
- }
- }
- break;
-
- case "automaticScraperUpdates":
- if (this.get('automaticScraperUpdates')){
- Zotero.Schema.updateFromRepository();
- }
- else {
- Zotero.Schema.stopRepositoryTimer();
- }
- break;
-
- case "note.fontSize":
- var val = this.get('note.fontSize');
- if (val < 6) {
- this.set('note.fontSize', 11);
- }
- break;
-
- case "zoteroDotOrgVersionHeader":
- if (this.get("zoteroDotOrgVersionHeader")) {
- Zotero.VersionHeader.register();
- }
- else {
- Zotero.VersionHeader.unregister();
- }
- break;
-
- case "sync.autoSync":
- if (this.get("sync.autoSync")) {
- Zotero.Sync.Runner.IdleListener.register();
- }
- else {
- Zotero.Sync.Runner.IdleListener.unregister();
- }
- break;
-
- // TEMP
- case "sync.fulltext.enabled":
- if (this.get("sync.fulltext.enabled")) {
- // Disable downgrades if full-text sync is enabled, since otherwise
- // we could miss full-text content updates
- if (Zotero.DB.valueQuery("SELECT version FROM version WHERE schema='userdata'") < 77) {
- Zotero.DB.query("UPDATE version SET version=77 WHERE schema='userdata'");
- }
- }
- break;
-
- case "search.quicksearch-mode":
- var enumerator = Services.wm.getEnumerator("navigator:browser");
- while (enumerator.hasMoreElements()) {
- var win = enumerator.getNext();
- if (!win.ZoteroPane) continue;
- Zotero.updateQuickSearchBox(win.ZoteroPane.document);
- }
-
- var enumerator = Services.wm.getEnumerator("zotero:item-selector");
- while (enumerator.hasMoreElements()) {
- var win = enumerator.getNext();
- if (!win.Zotero) continue;
- Zotero.updateQuickSearchBox(win.document);
- }
- break;
+ var obs = _observers[data];
+ for (var i=0; i 1 ? '.multiple' : '')
)
};
+ var toRemove = {
+ title: Zotero.getString('pane.items.remove.title'),
+ text: Zotero.getString(
+ 'pane.items.remove' + (this.itemsView.selection.count > 1 ? '.multiple' : '')
+ )
+ };
if (collectionTreeRow.isPublications()) {
var prompt = toDelete;
@@ -1610,7 +1625,7 @@ var ZoteroPane = new function()
}
else if (collectionTreeRow.isCollection()) {
// In collection, only prompt if trashing
- var prompt = force ? toTrash : false;
+ var prompt = force ? toTrash : toRemove;
}
else if (collectionTreeRow.isSearch() || collectionTreeRow.isUnfiled() || collectionTreeRow.isDuplicates()) {
if (!force) {
@@ -2003,8 +2018,14 @@ var ZoteroPane = new function()
Zotero.spawn(function* () {
var selected = yield self.itemsView.selectItem(itemID, expand);
if (!selected) {
- Zotero.debug("Item was not selected; switching to library");
- yield self.collectionsView.selectLibrary(item.libraryID);
+ if (item.deleted) {
+ Zotero.debug("Item is deleted; switching to trash");
+ this.collectionsView.selectTrash(item.libraryID);
+ }
+ else {
+ Zotero.debug("Item was not selected; switching to library");
+ yield this.collectionsView.selectLibrary(item.libraryID);
+ }
yield self.itemsView.selectItem(itemID, expand);
}
deferred.resolve(true);
diff --git a/chrome/content/zotero/zoteroPane.xul b/chrome/content/zotero/zoteroPane.xul
index ae37151b4..4f6b73121 100644
--- a/chrome/content/zotero/zoteroPane.xul
+++ b/chrome/content/zotero/zoteroPane.xul
@@ -61,6 +61,7 @@
+
@@ -140,7 +141,6 @@
-
diff --git a/chrome/locale/af-ZA/zotero/csledit.dtd b/chrome/locale/af-ZA/zotero/csledit.dtd
new file mode 100644
index 000000000..289272aba
--- /dev/null
+++ b/chrome/locale/af-ZA/zotero/csledit.dtd
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/chrome/locale/af-ZA/zotero/cslpreview.dtd b/chrome/locale/af-ZA/zotero/cslpreview.dtd
new file mode 100644
index 000000000..04396166e
--- /dev/null
+++ b/chrome/locale/af-ZA/zotero/cslpreview.dtd
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/chrome/locale/af-ZA/zotero/preferences.dtd b/chrome/locale/af-ZA/zotero/preferences.dtd
index 02263e525..94682126a 100644
--- a/chrome/locale/af-ZA/zotero/preferences.dtd
+++ b/chrome/locale/af-ZA/zotero/preferences.dtd
@@ -12,8 +12,6 @@
-
-
@@ -125,8 +123,6 @@
-
-
@@ -164,6 +160,7 @@
+
@@ -204,6 +201,6 @@
-
-
+
+
diff --git a/chrome/locale/af-ZA/zotero/zotero.dtd b/chrome/locale/af-ZA/zotero/zotero.dtd
index 279e9ee11..81d96bd20 100644
--- a/chrome/locale/af-ZA/zotero/zotero.dtd
+++ b/chrome/locale/af-ZA/zotero/zotero.dtd
@@ -6,6 +6,8 @@
+
+
@@ -123,7 +125,7 @@
-
+
@@ -288,5 +290,3 @@
-
-
diff --git a/chrome/locale/af-ZA/zotero/zotero.properties b/chrome/locale/af-ZA/zotero/zotero.properties
index e90a1f4ad..6c16b04ac 100644
--- a/chrome/locale/af-ZA/zotero/zotero.properties
+++ b/chrome/locale/af-ZA/zotero/zotero.properties
@@ -42,6 +42,7 @@ general.create=Create
general.delete=Delete
general.moreInformation=More Information
general.seeForMoreInformation=See %S for more information.
+general.open=Open %S
general.enable=Enable
general.disable=Disable
general.remove=Remove
@@ -203,6 +204,9 @@ pane.items.trash.multiple=Are you sure you want to move the selected items to th
pane.items.delete.title=Delete
pane.items.delete=Are you sure you want to delete the selected item?
pane.items.delete.multiple=Are you sure you want to delete the selected items?
+pane.items.remove.title=Remove from Collection
+pane.items.remove=Are you sure you want to remove the selected item from this collection?
+pane.items.remove.multiple=Are you sure you want to remove the selected items from this collection?
pane.items.menu.remove=Remove Item from Collection
pane.items.menu.remove.multiple=Remove Items from Collection
pane.items.menu.moveToTrash=Move Item to Trash…
@@ -221,6 +225,7 @@ pane.items.menu.createParent=Create Parent Item
pane.items.menu.createParent.multiple=Create Parent Items
pane.items.menu.renameAttachments=Rename File from Parent Metadata
pane.items.menu.renameAttachments.multiple=Rename Files from Parent Metadata
+pane.items.showItemInLibrary=Show Item in Library
pane.items.letter.oneParticipant=Letter to %S
pane.items.letter.twoParticipants=Letter to %S and %S
@@ -968,3 +973,12 @@ firstRunGuidance.quickFormat=Type a title or author to search for a reference.\n
firstRunGuidance.quickFormatMac=Type a title or author to search for a reference.\n\nAfter you've made your selection, click the bubble or press Cmd-↓ to add page numbers, prefixes, or suffixes. You can also include a page number along with your search terms to add it directly.\n\nYou can edit citations directly in the word processor document.
firstRunGuidance.toolbarButton.new=Click here to open Zotero, or use the %S keyboard shortcut.
firstRunGuidance.toolbarButton.upgrade=The Zotero icon can now be found in the Firefox toolbar. Click the icon to open Zotero, or use the %S keyboard shortcut.
+
+styles.bibliography=Bibliography
+styles.editor.save=Save Citation Style
+styles.editor.warning.noItems=No items selected in Zotero.
+styles.editor.warning.parseError=Error parsing style:
+styles.editor.warning.renderError=Error generating citations and bibliography:
+styles.editor.output.individualCitations=Individual Citations
+styles.editor.output.singleCitation=Single Citation (with position "first")
+styles.preview.instructions=Select one or more items in Zotero and click the "Refresh" button to see how these items are rendered by the installed CSL citation styles.
diff --git a/chrome/locale/ar/zotero/csledit.dtd b/chrome/locale/ar/zotero/csledit.dtd
new file mode 100644
index 000000000..289272aba
--- /dev/null
+++ b/chrome/locale/ar/zotero/csledit.dtd
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/chrome/locale/ar/zotero/cslpreview.dtd b/chrome/locale/ar/zotero/cslpreview.dtd
new file mode 100644
index 000000000..04396166e
--- /dev/null
+++ b/chrome/locale/ar/zotero/cslpreview.dtd
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/chrome/locale/ar/zotero/preferences.dtd b/chrome/locale/ar/zotero/preferences.dtd
index 67c5ea802..78b6d91b9 100644
--- a/chrome/locale/ar/zotero/preferences.dtd
+++ b/chrome/locale/ar/zotero/preferences.dtd
@@ -12,8 +12,6 @@
-
-
@@ -125,8 +123,6 @@
-
-
@@ -164,6 +160,7 @@
+
@@ -204,6 +201,6 @@
-
-
+
+
diff --git a/chrome/locale/ar/zotero/zotero.dtd b/chrome/locale/ar/zotero/zotero.dtd
index c18edfbb3..02a362237 100644
--- a/chrome/locale/ar/zotero/zotero.dtd
+++ b/chrome/locale/ar/zotero/zotero.dtd
@@ -6,6 +6,8 @@
+
+
@@ -123,7 +125,7 @@
-
+
@@ -288,5 +290,3 @@
-
-
diff --git a/chrome/locale/ar/zotero/zotero.properties b/chrome/locale/ar/zotero/zotero.properties
index 73f633001..359759b47 100644
--- a/chrome/locale/ar/zotero/zotero.properties
+++ b/chrome/locale/ar/zotero/zotero.properties
@@ -42,6 +42,7 @@ general.create=إنشاء
general.delete=Delete
general.moreInformation=More Information
general.seeForMoreInformation=شاهد %S لمزيد من المعلومات.
+general.open=Open %S
general.enable=تمكين
general.disable=تعطيل
general.remove=حذف
@@ -203,6 +204,9 @@ pane.items.trash.multiple=هل ترغب في نقل العناصر المحدد
pane.items.delete.title=حذف
pane.items.delete=هل ترغب في حذف العنصر المحدد؟
pane.items.delete.multiple=هل ترغب في حذف العناصر المحددة؟
+pane.items.remove.title=Remove from Collection
+pane.items.remove=Are you sure you want to remove the selected item from this collection?
+pane.items.remove.multiple=Are you sure you want to remove the selected items from this collection?
pane.items.menu.remove=حذف العنصر المحدد
pane.items.menu.remove.multiple=حذف العناصر المحددة
pane.items.menu.moveToTrash=Move Item to Trash…
@@ -221,6 +225,7 @@ pane.items.menu.createParent=إنشاء عنصر رئيسي من العنصر ا
pane.items.menu.createParent.multiple=إنشاء عناصر رئيسية من العناصر المحددة
pane.items.menu.renameAttachments=إعادة تسمية الملف وفقا للبيانات الوصفية للعنصر الرئيسي
pane.items.menu.renameAttachments.multiple=إعادة تسمية الملفات وفقا للبيانات الوصفية للعنصر الرئيسي
+pane.items.showItemInLibrary=Show Item in Library
pane.items.letter.oneParticipant=خطاب إلى %S
pane.items.letter.twoParticipants=خطاب إلى %S و %S
@@ -968,3 +973,12 @@ firstRunGuidance.quickFormat=Type a title or author to search for a reference.\n
firstRunGuidance.quickFormatMac=Type a title or author to search for a reference.\n\nAfter you've made your selection, click the bubble or press Cmd-↓ to add page numbers, prefixes, or suffixes. You can also include a page number along with your search terms to add it directly.\n\nYou can edit citations directly in the word processor document.
firstRunGuidance.toolbarButton.new=Click here to open Zotero, or use the %S keyboard shortcut.
firstRunGuidance.toolbarButton.upgrade=The Zotero icon can now be found in the Firefox toolbar. Click the icon to open Zotero, or use the %S keyboard shortcut.
+
+styles.bibliography=Bibliography
+styles.editor.save=Save Citation Style
+styles.editor.warning.noItems=No items selected in Zotero.
+styles.editor.warning.parseError=Error parsing style:
+styles.editor.warning.renderError=Error generating citations and bibliography:
+styles.editor.output.individualCitations=Individual Citations
+styles.editor.output.singleCitation=Single Citation (with position "first")
+styles.preview.instructions=Select one or more items in Zotero and click the "Refresh" button to see how these items are rendered by the installed CSL citation styles.
diff --git a/chrome/locale/bg-BG/zotero/csledit.dtd b/chrome/locale/bg-BG/zotero/csledit.dtd
new file mode 100644
index 000000000..289272aba
--- /dev/null
+++ b/chrome/locale/bg-BG/zotero/csledit.dtd
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/chrome/locale/bg-BG/zotero/cslpreview.dtd b/chrome/locale/bg-BG/zotero/cslpreview.dtd
new file mode 100644
index 000000000..04396166e
--- /dev/null
+++ b/chrome/locale/bg-BG/zotero/cslpreview.dtd
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/chrome/locale/bg-BG/zotero/preferences.dtd b/chrome/locale/bg-BG/zotero/preferences.dtd
index b29e0e378..37abf320f 100644
--- a/chrome/locale/bg-BG/zotero/preferences.dtd
+++ b/chrome/locale/bg-BG/zotero/preferences.dtd
@@ -12,8 +12,6 @@
-
-
@@ -125,8 +123,6 @@
-
-
@@ -164,6 +160,7 @@
+
@@ -204,6 +201,6 @@
-
-
+
+
diff --git a/chrome/locale/bg-BG/zotero/zotero.dtd b/chrome/locale/bg-BG/zotero/zotero.dtd
index b195c8e27..c9bc933ca 100644
--- a/chrome/locale/bg-BG/zotero/zotero.dtd
+++ b/chrome/locale/bg-BG/zotero/zotero.dtd
@@ -6,6 +6,8 @@
+
+
@@ -123,7 +125,7 @@
-
+
@@ -288,5 +290,3 @@
-
-
diff --git a/chrome/locale/bg-BG/zotero/zotero.properties b/chrome/locale/bg-BG/zotero/zotero.properties
index aea399d8e..2d914c7d9 100644
--- a/chrome/locale/bg-BG/zotero/zotero.properties
+++ b/chrome/locale/bg-BG/zotero/zotero.properties
@@ -42,6 +42,7 @@ general.create=Създава
general.delete=Delete
general.moreInformation=More Information
general.seeForMoreInformation=Виж %S за повече информация.
+general.open=Open %S
general.enable=Включва
general.disable=Изключва
general.remove=Remove
@@ -203,6 +204,9 @@ pane.items.trash.multiple=Сигурни ли сте, че искате да п
pane.items.delete.title=Изтрива
pane.items.delete=Сигурни ли сте, че искате да изтриете избрания запис?
pane.items.delete.multiple=Сигурни ли сте, че искате да изтриете избраните записи?
+pane.items.remove.title=Remove from Collection
+pane.items.remove=Are you sure you want to remove the selected item from this collection?
+pane.items.remove.multiple=Are you sure you want to remove the selected items from this collection?
pane.items.menu.remove=Изтрива избрания запис
pane.items.menu.remove.multiple=Изтрива избраните записи
pane.items.menu.moveToTrash=Move Item to Trash…
@@ -221,6 +225,7 @@ pane.items.menu.createParent=Създава родителски запис от
pane.items.menu.createParent.multiple=Създава родителски записи от избраният записи
pane.items.menu.renameAttachments=Преименува файла въз основа на родителските метадани
pane.items.menu.renameAttachments.multiple=Преименува файловете въз основа на родителските метадани
+pane.items.showItemInLibrary=Show Item in Library
pane.items.letter.oneParticipant=Писмо до %S
pane.items.letter.twoParticipants=Писмо до %S и %S
@@ -968,3 +973,12 @@ firstRunGuidance.quickFormat=Type a title or author to search for a reference.\n
firstRunGuidance.quickFormatMac=Type a title or author to search for a reference.\n\nAfter you've made your selection, click the bubble or press Cmd-↓ to add page numbers, prefixes, or suffixes. You can also include a page number along with your search terms to add it directly.\n\nYou can edit citations directly in the word processor document.
firstRunGuidance.toolbarButton.new=Click here to open Zotero, or use the %S keyboard shortcut.
firstRunGuidance.toolbarButton.upgrade=The Zotero icon can now be found in the Firefox toolbar. Click the icon to open Zotero, or use the %S keyboard shortcut.
+
+styles.bibliography=Bibliography
+styles.editor.save=Save Citation Style
+styles.editor.warning.noItems=No items selected in Zotero.
+styles.editor.warning.parseError=Error parsing style:
+styles.editor.warning.renderError=Error generating citations and bibliography:
+styles.editor.output.individualCitations=Individual Citations
+styles.editor.output.singleCitation=Single Citation (with position "first")
+styles.preview.instructions=Select one or more items in Zotero and click the "Refresh" button to see how these items are rendered by the installed CSL citation styles.
diff --git a/chrome/locale/ca-AD/zotero/csledit.dtd b/chrome/locale/ca-AD/zotero/csledit.dtd
new file mode 100644
index 000000000..289272aba
--- /dev/null
+++ b/chrome/locale/ca-AD/zotero/csledit.dtd
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/chrome/locale/ca-AD/zotero/cslpreview.dtd b/chrome/locale/ca-AD/zotero/cslpreview.dtd
new file mode 100644
index 000000000..04396166e
--- /dev/null
+++ b/chrome/locale/ca-AD/zotero/cslpreview.dtd
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/chrome/locale/ca-AD/zotero/preferences.dtd b/chrome/locale/ca-AD/zotero/preferences.dtd
index 4e79b169e..898f51268 100644
--- a/chrome/locale/ca-AD/zotero/preferences.dtd
+++ b/chrome/locale/ca-AD/zotero/preferences.dtd
@@ -12,8 +12,6 @@
-
-
@@ -125,8 +123,6 @@
-
-
@@ -164,6 +160,7 @@
+
@@ -204,6 +201,6 @@
-
-
+
+
diff --git a/chrome/locale/ca-AD/zotero/zotero.dtd b/chrome/locale/ca-AD/zotero/zotero.dtd
index ff0d48685..9cda030d8 100644
--- a/chrome/locale/ca-AD/zotero/zotero.dtd
+++ b/chrome/locale/ca-AD/zotero/zotero.dtd
@@ -1,14 +1,16 @@
-
-
+
+
+
+
-
+
@@ -45,7 +47,7 @@
-
+
@@ -123,7 +125,7 @@
-
+
@@ -285,8 +287,6 @@
-
-
-
-
-
+
+
+
diff --git a/chrome/locale/ca-AD/zotero/zotero.properties b/chrome/locale/ca-AD/zotero/zotero.properties
index 95c9817c3..e7855a4b1 100644
--- a/chrome/locale/ca-AD/zotero/zotero.properties
+++ b/chrome/locale/ca-AD/zotero/zotero.properties
@@ -42,6 +42,7 @@ general.create=Crea
general.delete=Suprimeix
general.moreInformation=Més informació
general.seeForMoreInformation=Mira %S per a més informació.
+general.open=Open %S
general.enable=Habilita
general.disable=Deshabilita
general.remove=Elimina
@@ -203,6 +204,9 @@ pane.items.trash.multiple=Segur que voleu moure els elements seleccionats a la p
pane.items.delete.title=Elimina
pane.items.delete=Segur que voleu eliminar l'element seleccionat?
pane.items.delete.multiple=Segur que voleu eliminar els elements seleccionats?
+pane.items.remove.title=Remove from Collection
+pane.items.remove=Are you sure you want to remove the selected item from this collection?
+pane.items.remove.multiple=Are you sure you want to remove the selected items from this collection?
pane.items.menu.remove=Elimina l'element seleccionat
pane.items.menu.remove.multiple=Elimina els elements seleccionats
pane.items.menu.moveToTrash=Desplaça l'element a la paperera.
@@ -221,6 +225,7 @@ pane.items.menu.createParent=Crea un element ascendent de l'element seleccionat
pane.items.menu.createParent.multiple=Crea elements ascendents dels elements seleccionats
pane.items.menu.renameAttachments=Canvia el nom del fitxer amb les metadades ascendents
pane.items.menu.renameAttachments.multiple=Canvia els noms del fitxers amb les metadades ascendents
+pane.items.showItemInLibrary=Show Item in Library
pane.items.letter.oneParticipant=Carta a %S
pane.items.letter.twoParticipants=Carta de %S a %S
@@ -968,3 +973,12 @@ firstRunGuidance.quickFormat=Escriu un títol o autor per cercar una referència
firstRunGuidance.quickFormatMac=Escriu un títol o autor per cercar una referència.\n\nDesprés que hagis fet la teva selecció, fes clic a la bombolla o prem Cmd-\u2193 per afegir números de pàgina, prefixos o sufixos. També pots incloure un número de pàgina juntament amb els teus termes de cerca per afegir-lo directament.\n\nLes cites es poden editar directament en el document del processador de textos.
firstRunGuidance.toolbarButton.new=Click here to open Zotero, or use the %S keyboard shortcut.
firstRunGuidance.toolbarButton.upgrade=The Zotero icon can now be found in the Firefox toolbar. Click the icon to open Zotero, or use the %S keyboard shortcut.
+
+styles.bibliography=Bibliography
+styles.editor.save=Save Citation Style
+styles.editor.warning.noItems=No items selected in Zotero.
+styles.editor.warning.parseError=Error parsing style:
+styles.editor.warning.renderError=Error generating citations and bibliography:
+styles.editor.output.individualCitations=Individual Citations
+styles.editor.output.singleCitation=Single Citation (with position "first")
+styles.preview.instructions=Select one or more items in Zotero and click the "Refresh" button to see how these items are rendered by the installed CSL citation styles.
diff --git a/chrome/locale/cs-CZ/zotero/csledit.dtd b/chrome/locale/cs-CZ/zotero/csledit.dtd
new file mode 100644
index 000000000..289272aba
--- /dev/null
+++ b/chrome/locale/cs-CZ/zotero/csledit.dtd
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/chrome/locale/cs-CZ/zotero/cslpreview.dtd b/chrome/locale/cs-CZ/zotero/cslpreview.dtd
new file mode 100644
index 000000000..04396166e
--- /dev/null
+++ b/chrome/locale/cs-CZ/zotero/cslpreview.dtd
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/chrome/locale/cs-CZ/zotero/preferences.dtd b/chrome/locale/cs-CZ/zotero/preferences.dtd
index 1233c29af..431604a0f 100644
--- a/chrome/locale/cs-CZ/zotero/preferences.dtd
+++ b/chrome/locale/cs-CZ/zotero/preferences.dtd
@@ -12,8 +12,6 @@
-
-
@@ -125,8 +123,6 @@
-
-
@@ -164,6 +160,7 @@
+
@@ -204,6 +201,6 @@
-
-
+
+
diff --git a/chrome/locale/cs-CZ/zotero/zotero.dtd b/chrome/locale/cs-CZ/zotero/zotero.dtd
index 17866e34a..99c0a63a1 100644
--- a/chrome/locale/cs-CZ/zotero/zotero.dtd
+++ b/chrome/locale/cs-CZ/zotero/zotero.dtd
@@ -6,6 +6,8 @@
+
+
@@ -123,7 +125,7 @@
-
+
@@ -288,5 +290,3 @@
-
-
diff --git a/chrome/locale/cs-CZ/zotero/zotero.properties b/chrome/locale/cs-CZ/zotero/zotero.properties
index 8ad99c985..ffb6b70e7 100644
--- a/chrome/locale/cs-CZ/zotero/zotero.properties
+++ b/chrome/locale/cs-CZ/zotero/zotero.properties
@@ -42,6 +42,7 @@ general.create=Vytvořit
general.delete=Smazat
general.moreInformation=Více informací
general.seeForMoreInformation=Pro více informací se podívejte na %S
+general.open=Open %S
general.enable=Povolit
general.disable=Zakázat
general.remove=Odstranit
@@ -203,6 +204,9 @@ pane.items.trash.multiple=Jste si jisti, že chcete přesunout vybranou položku
pane.items.delete.title=Smazat
pane.items.delete=Jste si jisti, že chcete smazat zvolenou položku?
pane.items.delete.multiple=Jste si jisti, že chcete smazat zvolené položky?
+pane.items.remove.title=Remove from Collection
+pane.items.remove=Are you sure you want to remove the selected item from this collection?
+pane.items.remove.multiple=Are you sure you want to remove the selected items from this collection?
pane.items.menu.remove=Smazat vybranou položku z kolekce
pane.items.menu.remove.multiple=Smazat vybrané položky z kolekce
pane.items.menu.moveToTrash=Přesunout položku do Koše...
@@ -221,6 +225,7 @@ pane.items.menu.createParent=Vytvořit rodičovskou položku z vybrané položky
pane.items.menu.createParent.multiple=Vytvořit rodičovské položky z vybraných položek
pane.items.menu.renameAttachments=Přejmenovat soubor z rodičovských metadat
pane.items.menu.renameAttachments.multiple=Přejmenovat soubory z rodičovských metadat
+pane.items.showItemInLibrary=Show Item in Library
pane.items.letter.oneParticipant=Dopis pro %S
pane.items.letter.twoParticipants=Dopis pro %S a %S
@@ -968,3 +973,12 @@ firstRunGuidance.quickFormat=Napište název, nebo autora k nimž hledáte citac
firstRunGuidance.quickFormatMac=Napište název, nebo autora k nimž hledáte citaci.\n\n Když si vyberete, kliknutím na bublinu, nebo stiskem Ctrl-\u2193 můžete přidat čísla stran, prefixy, či sufixy. Číslo stránky můžete vložit přímo k vašim vyhledávaným výrazům.\n\nCitace můžete editovat přímo ve vašem textovém procesoru.
firstRunGuidance.toolbarButton.new=Zotero otevřete kliknutím sem, nebo použitím klávesové zkratky %S
firstRunGuidance.toolbarButton.upgrade=Ikona Zotero se nyní nachází v Panelu nástrojů Firefoxu. Zotero otevřete kliknutím na ikonu, nebo stisknutím %S.
+
+styles.bibliography=Bibliography
+styles.editor.save=Save Citation Style
+styles.editor.warning.noItems=No items selected in Zotero.
+styles.editor.warning.parseError=Error parsing style:
+styles.editor.warning.renderError=Error generating citations and bibliography:
+styles.editor.output.individualCitations=Individual Citations
+styles.editor.output.singleCitation=Single Citation (with position "first")
+styles.preview.instructions=Select one or more items in Zotero and click the "Refresh" button to see how these items are rendered by the installed CSL citation styles.
diff --git a/chrome/locale/da-DK/zotero/csledit.dtd b/chrome/locale/da-DK/zotero/csledit.dtd
new file mode 100644
index 000000000..289272aba
--- /dev/null
+++ b/chrome/locale/da-DK/zotero/csledit.dtd
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/chrome/locale/da-DK/zotero/cslpreview.dtd b/chrome/locale/da-DK/zotero/cslpreview.dtd
new file mode 100644
index 000000000..04396166e
--- /dev/null
+++ b/chrome/locale/da-DK/zotero/cslpreview.dtd
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/chrome/locale/da-DK/zotero/preferences.dtd b/chrome/locale/da-DK/zotero/preferences.dtd
index 05ae7fd66..125cf97b9 100644
--- a/chrome/locale/da-DK/zotero/preferences.dtd
+++ b/chrome/locale/da-DK/zotero/preferences.dtd
@@ -12,8 +12,6 @@
-
-
@@ -125,8 +123,6 @@
-
-
@@ -164,6 +160,7 @@
+
@@ -193,7 +190,7 @@
-
+
@@ -204,6 +201,6 @@
-
-
+
+
diff --git a/chrome/locale/da-DK/zotero/searchbox.dtd b/chrome/locale/da-DK/zotero/searchbox.dtd
index d1310a94e..e6f543e6a 100644
--- a/chrome/locale/da-DK/zotero/searchbox.dtd
+++ b/chrome/locale/da-DK/zotero/searchbox.dtd
@@ -8,7 +8,7 @@
-
+
diff --git a/chrome/locale/da-DK/zotero/zotero.dtd b/chrome/locale/da-DK/zotero/zotero.dtd
index 376c80991..b63f5a2e3 100644
--- a/chrome/locale/da-DK/zotero/zotero.dtd
+++ b/chrome/locale/da-DK/zotero/zotero.dtd
@@ -6,6 +6,8 @@
+
+
@@ -30,7 +32,7 @@
-
+
@@ -95,8 +97,8 @@
-
-
+
+
@@ -105,10 +107,10 @@
-
+
-
-
+
+
@@ -123,7 +125,7 @@
-
+
@@ -176,7 +178,7 @@
-
+
@@ -264,7 +266,7 @@
-
+
@@ -278,15 +280,13 @@
-
+
-
+
-
-
-
-
-
+
+
+
diff --git a/chrome/locale/da-DK/zotero/zotero.properties b/chrome/locale/da-DK/zotero/zotero.properties
index 34615de6c..d81889666 100644
--- a/chrome/locale/da-DK/zotero/zotero.properties
+++ b/chrome/locale/da-DK/zotero/zotero.properties
@@ -42,6 +42,7 @@ general.create=Opret
general.delete=Slet
general.moreInformation=Mere information
general.seeForMoreInformation=Se %S for nærmere oplysninger.
+general.open=Open %S
general.enable=Slå til
general.disable=Slå fra
general.remove=Fjern
@@ -164,8 +165,8 @@ pane.collections.library=Mit Bibliotek
pane.collections.groupLibraries=Gruppebiblioteker
pane.collections.trash=Papirkurv
pane.collections.untitled=Unavngivet
-pane.collections.unfiled=Elementer som ikke er gemt.
-pane.collections.duplicate=Duplikér elementer
+pane.collections.unfiled=Ikke-arkiverede elementer
+pane.collections.duplicate=Dublet-elementer
pane.collections.menu.rename.collection=Omdøb samling...
pane.collections.menu.edit.savedSearch=Redigér en gemt søgning
@@ -195,14 +196,17 @@ tagColorChooser.maxTags=Op til %S mærker i hvert bibliotek kan have farver tilk
pane.items.loading=Henter listen med elementer...
pane.items.columnChooser.moreColumns=Flere kolonner
pane.items.columnChooser.secondarySort=Sekundær sortering (%S)
-pane.items.attach.link.uri.unrecognized=Zotero did not recognize the URI you entered. Please check the address and try again.
-pane.items.attach.link.uri.file=To attach a link to a file, please use “%S”.
+pane.items.attach.link.uri.unrecognized=Zotero genkendte ikke URI'en, du indtastede. Tjek venligst adressen og prøv igen.
+pane.items.attach.link.uri.file=Anvend venligst "%S" for at tilføje en henvisning til en fil.
pane.items.trash.title=Flyt til papirkurv
pane.items.trash=Er du sikker på, du vil lægge dette element i papirkurven?
pane.items.trash.multiple=Er du sikker på, du vil lægge disse elementer i papirkurven?
pane.items.delete.title=Slet
pane.items.delete=Er du sikker på, du vil slette dette element?
pane.items.delete.multiple=Er du sikker på, du vil slette disse elementer?
+pane.items.remove.title=Remove from Collection
+pane.items.remove=Are you sure you want to remove the selected item from this collection?
+pane.items.remove.multiple=Are you sure you want to remove the selected items from this collection?
pane.items.menu.remove=Fjern element fra samling
pane.items.menu.remove.multiple=Fjern elementer fra samling
pane.items.menu.moveToTrash=Flyt element til papirkurven...
@@ -211,16 +215,17 @@ pane.items.menu.export=Eksportér dette element...
pane.items.menu.export.multiple=Eksportér disse elementer...
pane.items.menu.createBib=Dan en referenceliste ud fra element...
pane.items.menu.createBib.multiple=Dan en referenceliste ud fra elementer...
-pane.items.menu.generateReport=Opret rapport ud fra det element...
+pane.items.menu.generateReport=Opret rapport ud fra element...
pane.items.menu.generateReport.multiple=Opret rapport ud fra elementer...
-pane.items.menu.reindexItem=Indeksér element igen.
-pane.items.menu.reindexItem.multiple=Indeksér elementer igen.
+pane.items.menu.reindexItem=Indeksér element igen
+pane.items.menu.reindexItem.multiple=Indeksér elementer igen
pane.items.menu.recognizePDF=Hent metadata for pdf-filen.
pane.items.menu.recognizePDF.multiple=Hent metadata for pdf-filerne
pane.items.menu.createParent=Opret moder-element
pane.items.menu.createParent.multiple=Opret moder-elementer
pane.items.menu.renameAttachments=Omdøb fil fra moder-metadata
pane.items.menu.renameAttachments.multiple=Omdøb filer fra moder-metadata
+pane.items.showItemInLibrary=Vis element i Bibliotek
pane.items.letter.oneParticipant=Brev til %S
pane.items.letter.twoParticipants=Brev til %S og %S
@@ -244,7 +249,7 @@ pane.item.duplicates.onlyTopLevel=Kun topniveau fulde elementer kan sammenføjes
pane.item.duplicates.onlySameItemType=Sammenføjede elementer skal alle være af samme type.
pane.item.changeType.title=Henfør elementet til en ny type
-pane.item.changeType.text=Er du sikker på at du vil ændre elementets Type?\n\nFølgende felter går tabt:
+pane.item.changeType.text=Er du sikker på at du vil ændre elementets type?\n\nFølgende felter går tabt:
pane.item.defaultFirstName=Fornavn
pane.item.defaultLastName=Efternavn
pane.item.defaultFullName=Fulde navn
@@ -400,7 +405,7 @@ itemFields.dictionaryTitle=Ordbogens titel
itemFields.language=Sprog
itemFields.programmingLanguage=Programmeringssprog
itemFields.university=Universitet
-itemFields.abstractNote=Abstract/Resumé
+itemFields.abstractNote=Resumé
itemFields.websiteTitle=Webstedets titel
itemFields.reportNumber=Rapportens nr.
itemFields.billNumber=Lovforslagets nr.
@@ -534,7 +539,7 @@ zotero.preferences.sync.reset.replaceServerData=Erstat serverdata
zotero.preferences.sync.reset.fileSyncHistory=Al filsynkroniseringshistorik vil blive slettet.\n\nLokale vedhæftninger, som ikke findes på serveren, vil blive overført ved næste synkronisering.
zotero.preferences.search.rebuildIndex=Genopbyg indeks
-zotero.preferences.search.rebuildWarning=Ønsker du at gendanne det samlede indeks? Dette kan tage nogen tid.\n\nBrug %S for kun at indeksere de elementer som ikke er indekseret.
+zotero.preferences.search.rebuildWarning=Ønsker du at gendanne det samlede indeks? Dette kan tage nogen tid.\n\nBrug %S for kun at indeksere de elementer, som ikke er indekseret.
zotero.preferences.search.clearIndex=Ryd indeks
zotero.preferences.search.clearWarning=Efter nulstilling af indekset vil indhold fra vedhæftede filer ikke længere være søgbare.\n\nWebhenvisningsvedhæftninger kan ikke genindekseres uden at besøge siden igen. For at lade webhenvisninger være indekserede skal du vælge %S.
zotero.preferences.search.clearNonLinkedURLs=Fjern alle undtagen webhenvisninger
@@ -968,3 +973,12 @@ firstRunGuidance.quickFormat=Indtast en titel eller forfatter for at søge efter
firstRunGuidance.quickFormatMac=Indtast en titel eller forfatter for at søge efter en reference.\n\nNår du har foretaget dit valg, så klik på boblen eller tryk Cmd-↓ for at tilføje sidenumre, præfikser eller suffikser. Du kan også inkludere et sidenummer sammen med dine søgetermer.\n\nDu kan redigere henvisninger direkte i dit tekstbehandlingsdokument.
firstRunGuidance.toolbarButton.new=Klik her for at åbne Zotero eller anvend %S-tastaturgenvejen.
firstRunGuidance.toolbarButton.upgrade=Zotero-ikonet kan nu findes i Firefox-værktøjslinjen. Klik ikonet for at åbne Zotero eller anvend %S-tastaturgenvejen.
+
+styles.bibliography=Referenceliste
+styles.editor.save=Gem henvisningsformat
+styles.editor.warning.noItems=Ingen elementer valgt i Zotero.
+styles.editor.warning.parseError=Fejl under fortolkning af format:
+styles.editor.warning.renderError=Fejl under oprettelse af henvisninger og referenceliste:
+styles.editor.output.individualCitations=Individuelle henvisninger
+styles.editor.output.singleCitation=Enkelt henvisning (med positionen "fornavn")
+styles.preview.instructions=Vælg et eller flere elementer i Zotero og klik på "Opdatér"-knappen for at se, hvordan disse elementer gengives af de installerede CSL-
diff --git a/chrome/locale/de/zotero/csledit.dtd b/chrome/locale/de/zotero/csledit.dtd
new file mode 100644
index 000000000..289272aba
--- /dev/null
+++ b/chrome/locale/de/zotero/csledit.dtd
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/chrome/locale/de/zotero/cslpreview.dtd b/chrome/locale/de/zotero/cslpreview.dtd
new file mode 100644
index 000000000..04396166e
--- /dev/null
+++ b/chrome/locale/de/zotero/cslpreview.dtd
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/chrome/locale/de/zotero/preferences.dtd b/chrome/locale/de/zotero/preferences.dtd
index 312e9ebfb..ac69986c1 100644
--- a/chrome/locale/de/zotero/preferences.dtd
+++ b/chrome/locale/de/zotero/preferences.dtd
@@ -12,8 +12,6 @@
-
-
@@ -125,8 +123,6 @@
-
-
@@ -164,6 +160,7 @@
+
@@ -204,6 +201,6 @@
-
-
+
+
diff --git a/chrome/locale/de/zotero/zotero.dtd b/chrome/locale/de/zotero/zotero.dtd
index 6bf54e308..e33f8e1b9 100644
--- a/chrome/locale/de/zotero/zotero.dtd
+++ b/chrome/locale/de/zotero/zotero.dtd
@@ -6,6 +6,8 @@
+
+
@@ -288,5 +290,3 @@
-
-
diff --git a/chrome/locale/de/zotero/zotero.properties b/chrome/locale/de/zotero/zotero.properties
index 6820fc9e0..980c39801 100644
--- a/chrome/locale/de/zotero/zotero.properties
+++ b/chrome/locale/de/zotero/zotero.properties
@@ -42,6 +42,7 @@ general.create=Erstelle
general.delete=Löschen
general.moreInformation=Weitere Informationen
general.seeForMoreInformation=Siehe %S für weitere Informationen.
+general.open=Open %S
general.enable=Aktivieren
general.disable=Deaktivieren
general.remove=Entfernen
@@ -203,6 +204,9 @@ pane.items.trash.multiple=Sind Sie sicher, dass Sie die ausgewählten Einträge
pane.items.delete.title=Löschen
pane.items.delete=Sind Sie sicher, dass Sie den ausgewählten Eintrag löschen möchten?
pane.items.delete.multiple=Sind Sie sicher, dass Sie die ausgewählten Einträge löschen möchten?
+pane.items.remove.title=Remove from Collection
+pane.items.remove=Are you sure you want to remove the selected item from this collection?
+pane.items.remove.multiple=Are you sure you want to remove the selected items from this collection?
pane.items.menu.remove=Ausgewählten Eintrag entfernen
pane.items.menu.remove.multiple=Ausgewählte Einträge entfernen
pane.items.menu.moveToTrash=Eintrag in den Papierkorb verschieben...
@@ -221,6 +225,7 @@ pane.items.menu.createParent=Erstelle übergeordneten Eintrag aus ausgewähltem
pane.items.menu.createParent.multiple=Erstelle übergeordnete Einträge aus ausgewählten Einträgen
pane.items.menu.renameAttachments=Datei nach Metadaten des übergeordneten Eintrags umbenennen
pane.items.menu.renameAttachments.multiple=Dateien nach Metadaten des übergeordneten Eintrags umbenennen
+pane.items.showItemInLibrary=Eintrag in Bibliothek anzeigen
pane.items.letter.oneParticipant=Brief an %S
pane.items.letter.twoParticipants=Brief an %S und %S
@@ -968,3 +973,12 @@ firstRunGuidance.quickFormat=Geben Sie einen Titel oder Autor ein, um nach einer
firstRunGuidance.quickFormatMac=Geben Sie einen Titel oder Autor ein, um nach einer Zitation zu suchen.\n\nNachdem Sie Ihre Auswahl getroffen haben, klicken Sie auf die Blase oder drücken Sie Cmd-\u2193, um Seitenzahlen, Präfixe oder Suffixe hinzuzufügen. Sie können die Seitenzahl auch zu Ihren Suchbegriffen hinzufügen, um diese direkt hinzuzufügen.\n\nSie können alle Zitationen direkt im Dokument bearbeiten.
firstRunGuidance.toolbarButton.new=Klicken Sie hier oder verwenden Sie die %S Tastenkombination um Zotero zu öffnen.
firstRunGuidance.toolbarButton.upgrade=Das Zotero Icon ist jetzt in der Firefox Symbolleiste. Klicken Sie das Icon oder verwenden Sie die %S Tastenkombination um Zotero zu öffnen.
+
+styles.bibliography=Bibliografie
+styles.editor.save=Zitationsstil speichern
+styles.editor.warning.noItems=Keine Einträge in Zotero ausgewählt.
+styles.editor.warning.parseError=Fehler beim Parsen des Stils:
+styles.editor.warning.renderError=Fehler beim Erstellen der Zitationen und Bibliografie:
+styles.editor.output.individualCitations=Individuelle Zitationen
+styles.editor.output.singleCitation=Einzelne Zitation (an erster Stelle)
+styles.preview.instructions=Wählen SIe einen oder mehrere Einträge in Zotero aus und klicken Sie den "Aktualisieren"-Button, um zu sehen, wie diese Einträge mit den installierten CSL-Zitationsstilen jeweils angezeigt werden.
diff --git a/chrome/locale/el-GR/zotero/csledit.dtd b/chrome/locale/el-GR/zotero/csledit.dtd
new file mode 100644
index 000000000..289272aba
--- /dev/null
+++ b/chrome/locale/el-GR/zotero/csledit.dtd
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/chrome/locale/el-GR/zotero/cslpreview.dtd b/chrome/locale/el-GR/zotero/cslpreview.dtd
new file mode 100644
index 000000000..04396166e
--- /dev/null
+++ b/chrome/locale/el-GR/zotero/cslpreview.dtd
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/chrome/locale/el-GR/zotero/preferences.dtd b/chrome/locale/el-GR/zotero/preferences.dtd
index 34ab0e0d1..7062da322 100644
--- a/chrome/locale/el-GR/zotero/preferences.dtd
+++ b/chrome/locale/el-GR/zotero/preferences.dtd
@@ -1,209 +1,206 @@
-
+
-
-
+
+
-
+
-
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
-
-
-
+
+
+
+
-
-
+
+
-
+
-
-
-
+
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
-
-
-
-
+
+
+
+
+
-
+
-
-
-
+
+
+
-
+
-
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
+
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
-
+
+
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
-
-
+
+
+
-
-
-
-
-
+
+
+
+
+
-
-
-
-
+
+
+
+
-
-
-
-
-
+
+
+
+
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
diff --git a/chrome/locale/el-GR/zotero/searchbox.dtd b/chrome/locale/el-GR/zotero/searchbox.dtd
index 83bf2579a..857fc0326 100644
--- a/chrome/locale/el-GR/zotero/searchbox.dtd
+++ b/chrome/locale/el-GR/zotero/searchbox.dtd
@@ -1,6 +1,6 @@
-
+
@@ -13,7 +13,7 @@
-
+
diff --git a/chrome/locale/el-GR/zotero/standalone.dtd b/chrome/locale/el-GR/zotero/standalone.dtd
index f65b337ff..cd7bfb26b 100644
--- a/chrome/locale/el-GR/zotero/standalone.dtd
+++ b/chrome/locale/el-GR/zotero/standalone.dtd
@@ -1,101 +1,101 @@
-
+
-
-
+
+
-
-
-
-
+
+
+
+
-
+
-
+
-
+
-
+
-
-
+
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
-
-
+
+
-
+
-
-
-
+
+
+
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
-
+
-
+
-
-
-
+
+
+
-
-
-
-
+
+
+
+
-
-
+
+
-
-
+
+
-
-
-
+
+
+
-
-
-
+
+
+
-
+
-
+
diff --git a/chrome/locale/el-GR/zotero/timeline.properties b/chrome/locale/el-GR/zotero/timeline.properties
index cec21f6b6..8fe27d21f 100644
--- a/chrome/locale/el-GR/zotero/timeline.properties
+++ b/chrome/locale/el-GR/zotero/timeline.properties
@@ -1,21 +1,21 @@
-general.title=Zotero Timeline
-general.filter=Filter:
-general.highlight=Highlight:
-general.clearAll=Clear All
-general.jumpToYear=Jump to Year:
-general.firstBand=First Band:
-general.secondBand=Second Band:
-general.thirdBand=Third Band:
-general.dateType=Date Type:
-general.timelineHeight=Timeline Height:
-general.fitToScreen=Fit to Screen
+general.title=Χρονοδιάγραμμα Zotero
+general.filter=Φίλτρο:
+general.highlight=Επισήμανση:
+general.clearAll=Καθαρισμός όλων
+general.jumpToYear=Μετάβαση στο έτος:
+general.firstBand=Πρώτη μπάντα:
+general.secondBand=Δεύτερη μπάντα:
+general.thirdBand=Τρίτη μπάντα:
+general.dateType=Τύπος ημερομηνίας:
+general.timelineHeight=Ύψος χρονοδιαγράμματος:
+general.fitToScreen=Ταίριασμα με την οθόνη
-interval.day=Day
-interval.month=Month
-interval.year=Year
-interval.decade=Decade
-interval.century=Century
-interval.millennium=Millennium
+interval.day=Ημέρα
+interval.month=Μήνας
+interval.year=Έτος
+interval.decade=Δεκαετία
+interval.century=Αιών
+interval.millennium=Χιλιετιρίδα
-dateType.published=Date Published
-dateType.modified=Date Modified
+dateType.published=Ημερομηνία δημοσίευσης
+dateType.modified=Ημερομηνία τροποποίησης
diff --git a/chrome/locale/el-GR/zotero/zotero.dtd b/chrome/locale/el-GR/zotero/zotero.dtd
index c9627ab11..1a7da7d30 100644
--- a/chrome/locale/el-GR/zotero/zotero.dtd
+++ b/chrome/locale/el-GR/zotero/zotero.dtd
@@ -1,275 +1,277 @@
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
-
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
-
-
+
+
+
-
-
+
+
-
-
-
-
+
+
+
+
-
-
-
+
+
+
-
+
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
-
-
+
+
+
-
-
+
+
-
-
+
+
-
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
-
-
-
+
+
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
-
-
+
+
-
-
+
+
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
-
-
-
-
+
+
+
+
+
-
-
-
-
+
+
+
+
-
-
-
+
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
+
-
-
-
-
-
+
+
+
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
-
-
+
+
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
-
-
-
-
+
+
+
+
+
@@ -288,5 +290,3 @@
-
-
diff --git a/chrome/locale/el-GR/zotero/zotero.properties b/chrome/locale/el-GR/zotero/zotero.properties
index e90a1f4ad..a36cf7ff5 100644
--- a/chrome/locale/el-GR/zotero/zotero.properties
+++ b/chrome/locale/el-GR/zotero/zotero.properties
@@ -1,50 +1,51 @@
-extensions.zotero@chnm.gmu.edu.description=The Next-Generation Research Tool
+extensions.zotero@chnm.gmu.edu.description=Εργαλείο έρευνας νέας γενεάς
-general.success=Success
-general.error=Error
-general.warning=Warning
-general.dontShowWarningAgain=Don't show this warning again.
-general.browserIsOffline=%S is currently in offline mode.
+general.success=Επιτυχία
+general.error=Σφάλμα
+general.warning=Προειδοποίηση
+general.dontShowWarningAgain=Να μην εμφανιστεί ξανά η προειδοποίηση αυτή.
+general.browserIsOffline=Ο %S αυτή τη στιγμή είναι εκτός σύνδεσης.
general.locate=Locate...
-general.restartRequired=Restart Required
-general.restartRequiredForChange=%S must be restarted for the change to take effect.
+general.restartRequired=Απαιτείται επανεκκίνηση
+general.restartRequiredForChange=%S πρέπει να επανεκκινήσει για να εφαρμοσθούν οι αλλαγές.
general.restartRequiredForChanges=%S must be restarted for the changes to take effect.
-general.restartNow=Restart now
-general.restartLater=Restart later
+general.restartNow=Επανεκκίνηση τώρα
+general.restartLater=Επανεκκίνηση αργότερα
general.restartApp=Restart %S
general.quitApp=Quit %S
-general.errorHasOccurred=An error has occurred.
-general.unknownErrorOccurred=An unknown error occurred.
+general.errorHasOccurred=Παρουσιάστηκε κάποιο σφάλμα.
+general.unknownErrorOccurred=Παρουσιάστηκε άγνωστο σφάλμα.
general.invalidResponseServer=Invalid response from server.
general.tryAgainLater=Please try again in a few minutes.
general.serverError=The server returned an error. Please try again.
general.restartFirefox=Please restart Firefox.
general.restartFirefoxAndTryAgain=Please restart Firefox and try again.
-general.checkForUpdate=Check for Update
-general.actionCannotBeUndone=This action cannot be undone.
-general.install=Install
-general.updateAvailable=Update Available
+general.checkForUpdate=Ελέγξτε για ενημερώσεις
+general.actionCannotBeUndone=Η ενέργεια αυτή δεν μπορεί να αναστραφεί.
+general.install=Εγκατάσταση
+general.updateAvailable=Διαθέσιμη ενημέρωση
general.noUpdatesFound=No Updates Found
general.isUpToDate=%S is up to date.
-general.upgrade=Upgrade
-general.yes=Yes
-general.no=No
+general.upgrade=Αναβάθμιση
+general.yes=Ναι
+general.no=Όχι
general.notNow=Not Now
-general.passed=Passed
-general.failed=Failed
-general.and=and
+general.passed=Εγκρίνεται
+general.failed=Απέτυχε
+general.and=και
general.etAl=et al.
-general.accessDenied=Access Denied
-general.permissionDenied=Permission Denied
-general.character.singular=character
-general.character.plural=characters
-general.create=Create
+general.accessDenied=Άρνηση πρόσβασης
+general.permissionDenied=Άρνηση άδειας
+general.character.singular=χαρακτήρας
+general.character.plural=χαρακτήρες
+general.create=Δημιουργία
general.delete=Delete
general.moreInformation=More Information
-general.seeForMoreInformation=See %S for more information.
-general.enable=Enable
-general.disable=Disable
-general.remove=Remove
+general.seeForMoreInformation=Για περισσότερες πληροφορίες δείτε %S.
+general.open=Open %S
+general.enable=Ενεργοποίηση
+general.disable=Απενεργοποίηση
+general.remove=Απομάκρυνση
general.reset=Reset
general.hide=Hide
general.quit=Quit
@@ -55,9 +56,9 @@ general.openPreferences=Open Preferences
general.keys.ctrlShift=Ctrl+Shift+
general.keys.cmdShift=Cmd+Shift+
-general.operationInProgress=A Zotero operation is currently in progress.
-general.operationInProgress.waitUntilFinished=Please wait until it has finished.
-general.operationInProgress.waitUntilFinishedAndTryAgain=Please wait until it has finished and try again.
+general.operationInProgress=Αυτή τη στιγμή εκτελείται κάποια λειτουργία Zotero.
+general.operationInProgress.waitUntilFinished=Παρακαλώ περιμένετε έως ότου ολοκληρωθεί.
+general.operationInProgress.waitUntilFinishedAndTryAgain=Παρακαλώ περιμένετε έως ότου ολοκληρωθεί και προσπαθήστε ξανά.
punctuation.openingQMark="
punctuation.closingQMark="
@@ -65,28 +66,28 @@ punctuation.colon=:
punctuation.ellipsis=…
install.quickStartGuide=Quick Start Guide
-install.quickStartGuide.message.welcome=Welcome to Zotero!
-install.quickStartGuide.message.view=View the Quick Start Guide to learn how to begin collecting, managing, citing, and sharing your research sources.
-install.quickStartGuide.message.thanks=Thanks for installing Zotero.
+install.quickStartGuide.message.welcome=Καλώς ήλθατε στο Zotero!
+install.quickStartGuide.message.view=Δείτε τον Οδηγό Γρήγορης Εκκίνησης για να μάθετε τρόπους συλλογής, διαχείρισης, παραπομπής και διαμοιρασμού των κοινόχρηστων πηγών σας.
+install.quickStartGuide.message.thanks=Ευχαριστούμε που εγκαταστήσατε το Zotero:
-upgrade.failed.title=Upgrade Failed
-upgrade.failed=Upgrading of the Zotero database failed:
-upgrade.advanceMessage=Press %S to upgrade now.
-upgrade.dbUpdateRequired=The Zotero database must be updated.
-upgrade.integrityCheckFailed=Your Zotero database must be repaired before the upgrade can continue.
-upgrade.loadDBRepairTool=Load Database Repair Tool
+upgrade.failed.title=Η αναβάθμιση απέτυχε
+upgrade.failed=Η αναβάθμιση της βάσης δεδομένων του Zotero απέτυχε
+upgrade.advanceMessage=Πατήστε %S για να αναβαθμίσετε τώρα.
+upgrade.dbUpdateRequired=Η βάση δεδομένων του Zotero πρέπει να αναβαθμιστεί.
+upgrade.integrityCheckFailed=Η βάση δεδομένων του Zotero πρέπει να επισκευασθεί πριν προχωρήσει η αναβάθμιση.
+upgrade.loadDBRepairTool=Φόρτωση Εργαλείου Επισκευής Βάσης Δεδομένων
upgrade.couldNotMigrate=Zotero could not migrate all necessary files.\nPlease close any open attachment files and restart Firefox to try the upgrade again.
-upgrade.couldNotMigrate.restart=If you continue to receive this message, restart your computer.
+upgrade.couldNotMigrate.restart=Αν συνεχίσετε να λαμβάνεται το μήνυμα αυτό, επανεκκινήστε τον υπολογιστή σας.
errorReport.reportError=Report Error...
errorReport.reportErrors=Report Errors...
-errorReport.reportInstructions=You can report this error by selecting "%S" from the Actions (gear) menu.
+errorReport.reportInstructions=Μπορείτε να αναφέρετε το σφάλμα αυτό επιλέγοντας "%S" από το μενού Ενέργειες (γρανάζι).
errorReport.followingReportWillBeSubmitted=The following report will be submitted:
errorReport.noErrorsLogged=No errors have been logged since %S started.
-errorReport.advanceMessage=Press %S to send the report to the Zotero developers.
-errorReport.stepsToReproduce=Steps to Reproduce:
-errorReport.expectedResult=Expected result:
-errorReport.actualResult=Actual result:
+errorReport.advanceMessage=Πατήστε %S για να στείλετε την αναφορά σφάλματος προς τους προγραμματιστές του Zotero.
+errorReport.stepsToReproduce=Βήματα για την Αναπαραγωγή:
+errorReport.expectedResult=Αναμενόμενα αποτελέσματα:
+errorReport.actualResult=Πραγματικά αποτελέσματα:
errorReport.noNetworkConnection=No network connection
errorReport.invalidResponseRepository=Invalid response from repository
errorReport.repoCannotBeContacted=Repository cannot be contacted
@@ -104,8 +105,8 @@ attachmentBasePath.clearBasePath.existingAttachments.singular=One existing attac
attachmentBasePath.clearBasePath.existingAttachments.plural=%S existing attachments within the old base directory will be converted to use absolute paths.
attachmentBasePath.clearBasePath.button=Clear Base Directory Setting
-dataDir.notFound=The Zotero data directory could not be found.
-dataDir.previousDir=Previous directory:
+dataDir.notFound=Δεν βρέθηκε ο κατάλογος δεδομένων Zotero.
+dataDir.previousDir=Προηγούμενος κατάλογος:
dataDir.useProfileDir=Use %S profile directory
dataDir.selectDir=Select a Zotero data directory
dataDir.selectedDirNonEmpty.title=Directory Not Empty
@@ -203,6 +204,9 @@ pane.items.trash.multiple=Are you sure you want to move the selected items to th
pane.items.delete.title=Delete
pane.items.delete=Are you sure you want to delete the selected item?
pane.items.delete.multiple=Are you sure you want to delete the selected items?
+pane.items.remove.title=Remove from Collection
+pane.items.remove=Are you sure you want to remove the selected item from this collection?
+pane.items.remove.multiple=Are you sure you want to remove the selected items from this collection?
pane.items.menu.remove=Remove Item from Collection
pane.items.menu.remove.multiple=Remove Items from Collection
pane.items.menu.moveToTrash=Move Item to Trash…
@@ -221,6 +225,7 @@ pane.items.menu.createParent=Create Parent Item
pane.items.menu.createParent.multiple=Create Parent Items
pane.items.menu.renameAttachments=Rename File from Parent Metadata
pane.items.menu.renameAttachments.multiple=Rename Files from Parent Metadata
+pane.items.showItemInLibrary=Show Item in Library
pane.items.letter.oneParticipant=Letter to %S
pane.items.letter.twoParticipants=Letter to %S and %S
@@ -968,3 +973,12 @@ firstRunGuidance.quickFormat=Type a title or author to search for a reference.\n
firstRunGuidance.quickFormatMac=Type a title or author to search for a reference.\n\nAfter you've made your selection, click the bubble or press Cmd-↓ to add page numbers, prefixes, or suffixes. You can also include a page number along with your search terms to add it directly.\n\nYou can edit citations directly in the word processor document.
firstRunGuidance.toolbarButton.new=Click here to open Zotero, or use the %S keyboard shortcut.
firstRunGuidance.toolbarButton.upgrade=The Zotero icon can now be found in the Firefox toolbar. Click the icon to open Zotero, or use the %S keyboard shortcut.
+
+styles.bibliography=Bibliography
+styles.editor.save=Save Citation Style
+styles.editor.warning.noItems=No items selected in Zotero.
+styles.editor.warning.parseError=Error parsing style:
+styles.editor.warning.renderError=Error generating citations and bibliography:
+styles.editor.output.individualCitations=Individual Citations
+styles.editor.output.singleCitation=Single Citation (with position "first")
+styles.preview.instructions=Select one or more items in Zotero and click the "Refresh" button to see how these items are rendered by the installed CSL citation styles.
diff --git a/chrome/locale/en-US/zotero/csledit.dtd b/chrome/locale/en-US/zotero/csledit.dtd
new file mode 100644
index 000000000..3d55e217f
--- /dev/null
+++ b/chrome/locale/en-US/zotero/csledit.dtd
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/chrome/locale/en-US/zotero/cslpreview.dtd b/chrome/locale/en-US/zotero/cslpreview.dtd
new file mode 100644
index 000000000..457b70e19
--- /dev/null
+++ b/chrome/locale/en-US/zotero/cslpreview.dtd
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/chrome/locale/en-US/zotero/preferences.dtd b/chrome/locale/en-US/zotero/preferences.dtd
index 5ae63cf0d..f59426049 100644
--- a/chrome/locale/en-US/zotero/preferences.dtd
+++ b/chrome/locale/en-US/zotero/preferences.dtd
@@ -12,8 +12,6 @@
-
-
@@ -125,8 +123,6 @@
-
-
@@ -164,6 +160,7 @@
+
@@ -204,6 +201,6 @@
-
-
-
\ No newline at end of file
+
+
+
diff --git a/chrome/locale/en-US/zotero/zotero.dtd b/chrome/locale/en-US/zotero/zotero.dtd
index d0207680b..1d494062b 100644
--- a/chrome/locale/en-US/zotero/zotero.dtd
+++ b/chrome/locale/en-US/zotero/zotero.dtd
@@ -6,6 +6,8 @@
+
+
@@ -123,7 +125,7 @@
-
+
@@ -289,5 +291,3 @@
-
-
diff --git a/chrome/locale/en-US/zotero/zotero.properties b/chrome/locale/en-US/zotero/zotero.properties
index 78d45e234..d6c2fa424 100644
--- a/chrome/locale/en-US/zotero/zotero.properties
+++ b/chrome/locale/en-US/zotero/zotero.properties
@@ -42,6 +42,7 @@ general.create = Create
general.delete = Delete
general.moreInformation = More Information
general.seeForMoreInformation = See %S for more information.
+general.open = Open %S
general.enable = Enable
general.disable = Disable
general.remove = Remove
@@ -206,8 +207,11 @@ pane.items.trash.multiple = Are you sure you want to move the selected items to
pane.items.delete.title = Delete
pane.items.delete = Are you sure you want to delete the selected item?
pane.items.delete.multiple = Are you sure you want to delete the selected items?
-pane.items.menu.remove = Remove Item from Collection
-pane.items.menu.remove.multiple = Remove Items from Collection
+pane.items.remove.title = Remove from Collection
+pane.items.remove = Are you sure you want to remove the selected item from this collection?
+pane.items.remove.multiple = Are you sure you want to remove the selected items from this collection?
+pane.items.menu.remove = Remove Item from Collection…
+pane.items.menu.remove.multiple = Remove Items from Collection…
pane.items.menu.moveToTrash = Move Item to Trash…
pane.items.menu.moveToTrash.multiple = Move Items to Trash…
pane.items.menu.export = Export Item…
@@ -224,6 +228,7 @@ pane.items.menu.createParent = Create Parent Item
pane.items.menu.createParent.multiple = Create Parent Items
pane.items.menu.renameAttachments = Rename File from Parent Metadata
pane.items.menu.renameAttachments.multiple = Rename Files from Parent Metadata
+pane.items.showItemInLibrary = Show Item in Library
pane.items.letter.oneParticipant = Letter to %S
pane.items.letter.twoParticipants = Letter to %S and %S
@@ -725,7 +730,7 @@ integration.missingItem.multiple = Item %1$S in the highlighted citation no lon
integration.missingItem.description = Clicking "No" will delete the field codes for citations containing this item, preserving the citation text but deleting it from your bibliography.
integration.removeCodesWarning = Removing field codes will prevent Zotero from updating citations and bibliographies in this document. Are you sure you want to continue?
integration.upgradeWarning = Your document must be permanently upgraded in order to work with Zotero 2.1 or later. It is recommended that you make a backup before proceeding. Are you sure you want to continue?
-integration.error.newerDocumentVersion = Your document was created with a newer version of Zotero (%1$S) than the currently installed version (%1$S). Please upgrade Zotero before editing this document.
+integration.error.newerDocumentVersion = Your document was created with a newer version of Zotero (%1$S) than the currently installed version (%2$S). Please upgrade Zotero before editing this document.
integration.corruptField = The Zotero field code corresponding to this citation, which tells Zotero which item in your library this citation represents, has been corrupted. Would you like to reselect the item?
integration.corruptField.description = Clicking "No" will delete the field codes for citations containing this item, preserving the citation text but potentially deleting it from your bibliography.
integration.corruptBibliography = The Zotero field code for your bibliography is corrupted. Should Zotero clear this field code and generate a new bibliography?
@@ -971,3 +976,12 @@ firstRunGuidance.quickFormat = Type a title or author to search for a reference.
firstRunGuidance.quickFormatMac = Type a title or author to search for a reference.\n\nAfter you've made your selection, click the bubble or press Cmd-\u2193 to add page numbers, prefixes, or suffixes. You can also include a page number along with your search terms to add it directly.\n\nYou can edit citations directly in the word processor document.
firstRunGuidance.toolbarButton.new = Click here to open Zotero, or use the %S keyboard shortcut.
firstRunGuidance.toolbarButton.upgrade = The Zotero icon can now be found in the Firefox toolbar. Click the icon to open Zotero, or use the %S keyboard shortcut.
+
+styles.bibliography = Bibliography
+styles.editor.save = Save Citation Style
+styles.editor.warning.noItems = No items selected in Zotero.
+styles.editor.warning.parseError = Error parsing style:
+styles.editor.warning.renderError = Error generating citations and bibliography:
+styles.editor.output.individualCitations = Individual Citations
+styles.editor.output.singleCitation = Single Citation (with position "first")
+styles.preview.instructions = Select one or more items in Zotero and click the "Refresh" button to see how these items are rendered by the installed CSL citation styles.
diff --git a/chrome/locale/es-ES/zotero/csledit.dtd b/chrome/locale/es-ES/zotero/csledit.dtd
new file mode 100644
index 000000000..289272aba
--- /dev/null
+++ b/chrome/locale/es-ES/zotero/csledit.dtd
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/chrome/locale/es-ES/zotero/cslpreview.dtd b/chrome/locale/es-ES/zotero/cslpreview.dtd
new file mode 100644
index 000000000..04396166e
--- /dev/null
+++ b/chrome/locale/es-ES/zotero/cslpreview.dtd
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/chrome/locale/es-ES/zotero/preferences.dtd b/chrome/locale/es-ES/zotero/preferences.dtd
index af4492cd6..bb0ca42f2 100644
--- a/chrome/locale/es-ES/zotero/preferences.dtd
+++ b/chrome/locale/es-ES/zotero/preferences.dtd
@@ -12,8 +12,6 @@
-
-
@@ -125,8 +123,6 @@
-
-
@@ -164,6 +160,7 @@
+
@@ -204,6 +201,6 @@
-
-
+
+
diff --git a/chrome/locale/es-ES/zotero/zotero.dtd b/chrome/locale/es-ES/zotero/zotero.dtd
index 0f921cb43..be02c4429 100644
--- a/chrome/locale/es-ES/zotero/zotero.dtd
+++ b/chrome/locale/es-ES/zotero/zotero.dtd
@@ -6,6 +6,8 @@
+
+
@@ -123,7 +125,7 @@
-
+
@@ -288,5 +290,3 @@
-
-
diff --git a/chrome/locale/es-ES/zotero/zotero.properties b/chrome/locale/es-ES/zotero/zotero.properties
index 5a08c17a6..9ab51f3e6 100644
--- a/chrome/locale/es-ES/zotero/zotero.properties
+++ b/chrome/locale/es-ES/zotero/zotero.properties
@@ -6,7 +6,7 @@ general.warning=Aviso
general.dontShowWarningAgain=No mostrar más este aviso.
general.browserIsOffline=%S está en modo desconectado.
general.locate=Encontrar...
-general.restartRequired=Hace falta reiniciar
+general.restartRequired=Se necesita reiniciar
general.restartRequiredForChange=%S debe reiniciarse para que se realice el cambio.
general.restartRequiredForChanges=%S debe reiniciarse para que se realicen los cambios.
general.restartNow=Reiniciar ahora
@@ -42,6 +42,7 @@ general.create=Crear
general.delete=Borrar
general.moreInformation=Más información
general.seeForMoreInformation=Mira en %S para más información
+general.open=Open %S
general.enable=Activar
general.disable=Desactivar
general.remove=Eliminar
@@ -86,7 +87,7 @@ errorReport.noErrorsLogged=Ningún error se ha registrado desde que %S se inici
errorReport.advanceMessage=Pulse %S para enviar el informe a los desarrolladores de Zotero.
errorReport.stepsToReproduce=Pasos para reproducirlo:
errorReport.expectedResult=Resultado esperado:
-errorReport.actualResult=Resultado real:
+errorReport.actualResult=Resultado actual:
errorReport.noNetworkConnection=Sin conexión a la red
errorReport.invalidResponseRepository=Respuesta inválida del repositorio
errorReport.repoCannotBeContacted=No se ha podido contactar con el repositorio
@@ -203,6 +204,9 @@ pane.items.trash.multiple=¿Seguro que quieres enviar los ítems a la papelera?
pane.items.delete.title=Borrar
pane.items.delete=¿Seguro que quieres borrar el ítem asociado?
pane.items.delete.multiple=¿Seguro que quieres borrar los ítems seleccionados?
+pane.items.remove.title=Remove from Collection
+pane.items.remove=Are you sure you want to remove the selected item from this collection?
+pane.items.remove.multiple=Are you sure you want to remove the selected items from this collection?
pane.items.menu.remove=Eliminar el ítem seleccionado
pane.items.menu.remove.multiple=Eliminar los ítems seleccionados
pane.items.menu.moveToTrash=Mover ítem a la papelera...
@@ -221,6 +225,7 @@ pane.items.menu.createParent=Crear ítem contenedor a partir del seleccionado
pane.items.menu.createParent.multiple=Crear ítems contenedores a partir de los seleccionados
pane.items.menu.renameAttachments=Poner nombre al fichero a partir de los metadatos del contenedor
pane.items.menu.renameAttachments.multiple=Poner nombre a los ficheros a partir de los metadatos del contenedor
+pane.items.showItemInLibrary=Mostrar elemento en la Biblioteca
pane.items.letter.oneParticipant=Carta a %S
pane.items.letter.twoParticipants=Carta a %S y %S
@@ -968,3 +973,12 @@ firstRunGuidance.quickFormat=Escribe el título o el autor para buscar una refer
firstRunGuidance.quickFormatMac=Escribe el título o el autor para buscar una referencia. \n\nDespués de que hayas hecho tu selección, haz clic en la burbuja o pulsa Cmd-\u2193 para agregar números de página, prefijos o sufijos. También puedes incluir un número de página junto con tus términos de búsqueda para añadirlo directamente.\n\nPuedes editar citas directamente en el documento del procesador de textos.
firstRunGuidance.toolbarButton.new=Clic aquí para abrir Zotero o utilice el atajo de teclado %S
firstRunGuidance.toolbarButton.upgrade=El ícono Zotero ahora se encuentra en la barra de Firefox. Clic en el ícono para abrir Zotero, o use el atajo de teclado %S.
+
+styles.bibliography=Bibliografía
+styles.editor.save=Guardar estilo de cita
+styles.editor.warning.noItems=Sin elementos seleccionados en Zotero.
+styles.editor.warning.parseError=Error analizado estilo:
+styles.editor.warning.renderError=Error generando citas y bibliografía:
+styles.editor.output.individualCitations=Citas individuales
+styles.editor.output.singleCitation=Unica cita (con posición "primera")
+styles.preview.instructions=Seleccionar uno o más elementos en Zotero y presione el botón "Actualizar" para ver como estos artículos son visualizados por los estilos de citas CSL.
diff --git a/chrome/locale/et-EE/zotero/csledit.dtd b/chrome/locale/et-EE/zotero/csledit.dtd
new file mode 100644
index 000000000..289272aba
--- /dev/null
+++ b/chrome/locale/et-EE/zotero/csledit.dtd
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/chrome/locale/et-EE/zotero/cslpreview.dtd b/chrome/locale/et-EE/zotero/cslpreview.dtd
new file mode 100644
index 000000000..04396166e
--- /dev/null
+++ b/chrome/locale/et-EE/zotero/cslpreview.dtd
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/chrome/locale/et-EE/zotero/preferences.dtd b/chrome/locale/et-EE/zotero/preferences.dtd
index f4ef1c368..c5a4bfb04 100644
--- a/chrome/locale/et-EE/zotero/preferences.dtd
+++ b/chrome/locale/et-EE/zotero/preferences.dtd
@@ -12,8 +12,6 @@
-
-
@@ -125,8 +123,6 @@
-
-
@@ -164,6 +160,7 @@
+
@@ -204,6 +201,6 @@
-
-
+
+
diff --git a/chrome/locale/et-EE/zotero/zotero.dtd b/chrome/locale/et-EE/zotero/zotero.dtd
index 68496c016..66af42ea2 100644
--- a/chrome/locale/et-EE/zotero/zotero.dtd
+++ b/chrome/locale/et-EE/zotero/zotero.dtd
@@ -6,6 +6,8 @@
+
+
@@ -123,7 +125,7 @@
-
+
@@ -288,5 +290,3 @@
-
-
diff --git a/chrome/locale/et-EE/zotero/zotero.properties b/chrome/locale/et-EE/zotero/zotero.properties
index 32c8aa442..48f8a4c2a 100644
--- a/chrome/locale/et-EE/zotero/zotero.properties
+++ b/chrome/locale/et-EE/zotero/zotero.properties
@@ -42,6 +42,7 @@ general.create=Luua
general.delete=Delete
general.moreInformation=More Information
general.seeForMoreInformation=Edasise info tarbeks vaadake %S.
+general.open=Open %S
general.enable=Lubada
general.disable=Keelata
general.remove=Eemaldada
@@ -203,6 +204,9 @@ pane.items.trash.multiple=Olete kindel, et soovite valitud kirjed Prahi hulka li
pane.items.delete.title=Kustutada
pane.items.delete=Olete kindel, et soovite valitud kirje kustutada?
pane.items.delete.multiple=Olete kindel, et soovite valitud kirjed kustutada?
+pane.items.remove.title=Remove from Collection
+pane.items.remove=Are you sure you want to remove the selected item from this collection?
+pane.items.remove.multiple=Are you sure you want to remove the selected items from this collection?
pane.items.menu.remove=Valitud kirje kustutamine
pane.items.menu.remove.multiple=Valitud kirjete kustutamine
pane.items.menu.moveToTrash=Move Item to Trash…
@@ -221,6 +225,7 @@ pane.items.menu.createParent=Luua ülemkirje valitud kirjest
pane.items.menu.createParent.multiple=Luua ülemkirjed valitud kirjetest
pane.items.menu.renameAttachments=Nimetada fail ülemkirje metadata alusel ümber
pane.items.menu.renameAttachments.multiple=Nimetada failid ülemkirjete metadata alusel ümber
+pane.items.showItemInLibrary=Show Item in Library
pane.items.letter.oneParticipant=Kiri %S-le
pane.items.letter.twoParticipants=Kiri %S ja %S-le
@@ -968,3 +973,12 @@ firstRunGuidance.quickFormat=Viite otsimiseks kirjutage pealkiri või autor.\n\n
firstRunGuidance.quickFormatMac=Viite otsimiseks kirjutage pealkiri või autor.\n\nKui olete valiku teinud, siis leheküljenumbrite, prefiksite või sufiksite lisamiseks klikkige viite kastikesele või vajutage Cmd-\u2193. Leheküljenumbri võite sisestada ka kohe kastikese sisse.\n\nSamas võite viiteid toimetada ka tekstiredaktoris.
firstRunGuidance.toolbarButton.new=Click here to open Zotero, or use the %S keyboard shortcut.
firstRunGuidance.toolbarButton.upgrade=The Zotero icon can now be found in the Firefox toolbar. Click the icon to open Zotero, or use the %S keyboard shortcut.
+
+styles.bibliography=Bibliography
+styles.editor.save=Save Citation Style
+styles.editor.warning.noItems=No items selected in Zotero.
+styles.editor.warning.parseError=Error parsing style:
+styles.editor.warning.renderError=Error generating citations and bibliography:
+styles.editor.output.individualCitations=Individual Citations
+styles.editor.output.singleCitation=Single Citation (with position "first")
+styles.preview.instructions=Select one or more items in Zotero and click the "Refresh" button to see how these items are rendered by the installed CSL citation styles.
diff --git a/chrome/locale/eu-ES/zotero/csledit.dtd b/chrome/locale/eu-ES/zotero/csledit.dtd
new file mode 100644
index 000000000..289272aba
--- /dev/null
+++ b/chrome/locale/eu-ES/zotero/csledit.dtd
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/chrome/locale/eu-ES/zotero/cslpreview.dtd b/chrome/locale/eu-ES/zotero/cslpreview.dtd
new file mode 100644
index 000000000..04396166e
--- /dev/null
+++ b/chrome/locale/eu-ES/zotero/cslpreview.dtd
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/chrome/locale/eu-ES/zotero/preferences.dtd b/chrome/locale/eu-ES/zotero/preferences.dtd
index eb440a157..96b0b6fd7 100644
--- a/chrome/locale/eu-ES/zotero/preferences.dtd
+++ b/chrome/locale/eu-ES/zotero/preferences.dtd
@@ -12,8 +12,6 @@
-
-
@@ -125,8 +123,6 @@
-
-
@@ -164,6 +160,7 @@
+
@@ -204,6 +201,6 @@
-
-
+
+
diff --git a/chrome/locale/eu-ES/zotero/zotero.dtd b/chrome/locale/eu-ES/zotero/zotero.dtd
index 328b2342b..6599093ac 100644
--- a/chrome/locale/eu-ES/zotero/zotero.dtd
+++ b/chrome/locale/eu-ES/zotero/zotero.dtd
@@ -6,6 +6,8 @@
+
+
@@ -123,7 +125,7 @@
-
+
@@ -288,5 +290,3 @@
-
-
diff --git a/chrome/locale/eu-ES/zotero/zotero.properties b/chrome/locale/eu-ES/zotero/zotero.properties
index 71121e30a..c2fdb547a 100644
--- a/chrome/locale/eu-ES/zotero/zotero.properties
+++ b/chrome/locale/eu-ES/zotero/zotero.properties
@@ -42,6 +42,7 @@ general.create=Sortu
general.delete=Delete
general.moreInformation=More Information
general.seeForMoreInformation=%S-en informazio gehiago duzu.
+general.open=Open %S
general.enable=Gaitu
general.disable=Ezgaitu
general.remove=Remove
@@ -203,6 +204,9 @@ pane.items.trash.multiple=Hautatutako itemak zaborrera bota?
pane.items.delete.title=Ezabatu
pane.items.delete=Hautatutako itema ezabatu?
pane.items.delete.multiple=Hautatutako itemak ezabatu?
+pane.items.remove.title=Remove from Collection
+pane.items.remove=Are you sure you want to remove the selected item from this collection?
+pane.items.remove.multiple=Are you sure you want to remove the selected items from this collection?
pane.items.menu.remove=Hautatutako itema bildumatik kendu
pane.items.menu.remove.multiple=Hautatutako itemak bildumatik kendu
pane.items.menu.moveToTrash=Move Item to Trash…
@@ -221,6 +225,7 @@ pane.items.menu.createParent=Hautatutako itemari item gurasoa sortu
pane.items.menu.createParent.multiple=Hautatutako itemeei item gurasoa sortu
pane.items.menu.renameAttachments=Aldatu izena gurasoren datuen arabera
pane.items.menu.renameAttachments.multiple=Aldatu izenak gurasoen datuen arabera
+pane.items.showItemInLibrary=Show Item in Library
pane.items.letter.oneParticipant=Gutuna %S-(r)i
pane.items.letter.twoParticipants=Gutuna %S eta %S-(r)i
@@ -968,3 +973,12 @@ firstRunGuidance.quickFormat=Type a title or author to search for a reference.\n
firstRunGuidance.quickFormatMac=Type a title or author to search for a reference.\n\nAfter you've made your selection, click the bubble or press Cmd-↓ to add page numbers, prefixes, or suffixes. You can also include a page number along with your search terms to add it directly.\n\nYou can edit citations directly in the word processor document.
firstRunGuidance.toolbarButton.new=Click here to open Zotero, or use the %S keyboard shortcut.
firstRunGuidance.toolbarButton.upgrade=The Zotero icon can now be found in the Firefox toolbar. Click the icon to open Zotero, or use the %S keyboard shortcut.
+
+styles.bibliography=Bibliography
+styles.editor.save=Save Citation Style
+styles.editor.warning.noItems=No items selected in Zotero.
+styles.editor.warning.parseError=Error parsing style:
+styles.editor.warning.renderError=Error generating citations and bibliography:
+styles.editor.output.individualCitations=Individual Citations
+styles.editor.output.singleCitation=Single Citation (with position "first")
+styles.preview.instructions=Select one or more items in Zotero and click the "Refresh" button to see how these items are rendered by the installed CSL citation styles.
diff --git a/chrome/locale/fa/zotero/about.dtd b/chrome/locale/fa/zotero/about.dtd
index a5c6a10f5..fcb954add 100644
--- a/chrome/locale/fa/zotero/about.dtd
+++ b/chrome/locale/fa/zotero/about.dtd
@@ -1,6 +1,6 @@
-
+
@@ -9,5 +9,5 @@
-
-
+
+
diff --git a/chrome/locale/fa/zotero/csledit.dtd b/chrome/locale/fa/zotero/csledit.dtd
new file mode 100644
index 000000000..289272aba
--- /dev/null
+++ b/chrome/locale/fa/zotero/csledit.dtd
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/chrome/locale/fa/zotero/cslpreview.dtd b/chrome/locale/fa/zotero/cslpreview.dtd
new file mode 100644
index 000000000..04396166e
--- /dev/null
+++ b/chrome/locale/fa/zotero/cslpreview.dtd
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/chrome/locale/fa/zotero/preferences.dtd b/chrome/locale/fa/zotero/preferences.dtd
index 821690dc5..a9d45ae52 100644
--- a/chrome/locale/fa/zotero/preferences.dtd
+++ b/chrome/locale/fa/zotero/preferences.dtd
@@ -3,7 +3,7 @@
-
+
@@ -12,22 +12,20 @@
-
-
-
+
-
+
-
+
@@ -39,9 +37,9 @@
-
+
-
+
@@ -55,21 +53,21 @@
-
-
+
+
-
-
-
+
+
+
-
+
@@ -78,7 +76,7 @@
-
+
@@ -117,7 +115,7 @@
-
+
@@ -125,15 +123,13 @@
-
-
-
+
-
+
-
-
+
+
@@ -163,7 +159,8 @@
-
+
+
@@ -183,11 +180,11 @@
-
+
-
-
-
+
+
+
@@ -203,7 +200,7 @@
-
-
-
-
+
+
+
+
diff --git a/chrome/locale/fa/zotero/searchbox.dtd b/chrome/locale/fa/zotero/searchbox.dtd
index 166bdb99e..482b9ccd5 100644
--- a/chrome/locale/fa/zotero/searchbox.dtd
+++ b/chrome/locale/fa/zotero/searchbox.dtd
@@ -1,6 +1,6 @@
-
+
@@ -13,7 +13,7 @@
-
+
diff --git a/chrome/locale/fa/zotero/standalone.dtd b/chrome/locale/fa/zotero/standalone.dtd
index f65b337ff..676d289ca 100644
--- a/chrome/locale/fa/zotero/standalone.dtd
+++ b/chrome/locale/fa/zotero/standalone.dtd
@@ -1,35 +1,35 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -40,7 +40,7 @@
-
+
@@ -48,17 +48,17 @@
-
+
-
+
-
+
-
+
-
+
@@ -68,34 +68,34 @@
-
+
-
+
-
+
-
-
+
+
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
diff --git a/chrome/locale/fa/zotero/zotero.dtd b/chrome/locale/fa/zotero/zotero.dtd
index 2af701790..52ecd7216 100644
--- a/chrome/locale/fa/zotero/zotero.dtd
+++ b/chrome/locale/fa/zotero/zotero.dtd
@@ -4,18 +4,20 @@
-
-
+
+
+
+
-
-
+
+
-
+
@@ -45,7 +47,7 @@
-
+
@@ -60,38 +62,38 @@
-
-
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
+
-
+
-
-
+
+
@@ -123,11 +125,11 @@
-
+
-
+
-
+
@@ -141,18 +143,18 @@
-
+
-
-
-
-
-
+
+
+
+
+
-
+
@@ -161,9 +163,9 @@
-
-
-
+
+
+
@@ -220,8 +222,8 @@
-
-
+
+
@@ -243,7 +245,7 @@
-
+
@@ -285,8 +287,6 @@
-
-
-
-
-
+
+
+
diff --git a/chrome/locale/fa/zotero/zotero.properties b/chrome/locale/fa/zotero/zotero.properties
index a934ba42a..b74e38860 100644
--- a/chrome/locale/fa/zotero/zotero.properties
+++ b/chrome/locale/fa/zotero/zotero.properties
@@ -20,16 +20,16 @@ general.tryAgainLater=Please try again in a few minutes.
general.serverError=The server returned an error. Please try again.
general.restartFirefox=لطفا فایرفاکس را دوباره راهاندازی کنید.
general.restartFirefoxAndTryAgain=لطفا فایرفاکس را مجددا راهاندازی و دوباره تلاش کنید.
-general.checkForUpdate=Check for Update
+general.checkForUpdate=بررسی به روزرسانی
general.actionCannotBeUndone=این عمل قابل بازگشت نیست.
general.install=نصب
general.updateAvailable=روزآمد موجود است
-general.noUpdatesFound=No Updates Found
-general.isUpToDate=%S is up to date.
+general.noUpdatesFound=بهروزرسانی یافته نشد
+general.isUpToDate=%S بهروز است.
general.upgrade=ارتقا
general.yes=بله
general.no=خیر
-general.notNow=Not Now
+general.notNow=الآن نه
general.passed=قبول شد
general.failed=رد شد
general.and=و
@@ -39,19 +39,20 @@ general.permissionDenied=اجازه داده نشد
general.character.singular=نویسه
general.character.plural=نویسهها
general.create=ساختن
-general.delete=Delete
-general.moreInformation=More Information
+general.delete=حذف
+general.moreInformation=اطلاعات بیشتر
general.seeForMoreInformation=برای اطلاعات بیشتر %S را ببینید
+general.open=Open %S
general.enable=فعال
general.disable=غیرفعال
general.remove=حذف
-general.reset=Reset
-general.hide=Hide
+general.reset=تنظیم مجدد
+general.hide=پنهانکردن
general.quit=Quit
general.useDefault=Use Default
general.openDocumentation=Open Documentation
general.numMore=%S more…
-general.openPreferences=Open Preferences
+general.openPreferences=بازکردن تنظیمات
general.keys.ctrlShift=Ctrl+Shift+
general.keys.cmdShift=Cmd+Shift+
@@ -62,7 +63,7 @@ general.operationInProgress.waitUntilFinishedAndTryAgain=لطفا تا اتما
punctuation.openingQMark="
punctuation.closingQMark="
punctuation.colon=:
-punctuation.ellipsis=…
+punctuation.ellipsis=...
install.quickStartGuide=راهنمای سریع زوترو
install.quickStartGuide.message.welcome=به زوترو خوش آمدید!
@@ -87,7 +88,7 @@ errorReport.advanceMessage=Press %S to send the report to the Zotero developers.
errorReport.stepsToReproduce=گامهای مورد نیاز برای تولید دوباره:
errorReport.expectedResult=نتیجه مورد انتظار:
errorReport.actualResult=نتیجه واقعی:
-errorReport.noNetworkConnection=No network connection
+errorReport.noNetworkConnection=اتصال به شبکه مقدور نیست
errorReport.invalidResponseRepository=Invalid response from repository
errorReport.repoCannotBeContacted=Repository cannot be contacted
@@ -146,13 +147,13 @@ date.relative.daysAgo.multiple=%S روز پیش
date.relative.yearsAgo.one=یک سال پیش
date.relative.yearsAgo.multiple=%S سال پیش
-pane.collections.delete.title=Delete Collection
+pane.collections.delete.title=حذف مجموعه
pane.collections.delete=آیا واقعا میخواهید مجموعه انتخاب شده پاک شود؟
pane.collections.delete.keepItems=Items within this collection will not be deleted.
-pane.collections.deleteWithItems.title=Delete Collection and Items
+pane.collections.deleteWithItems.title=حذف مجموعه و آیتمهای آن
pane.collections.deleteWithItems=Are you sure you want to delete the selected collection and move all items within it to the Trash?
-pane.collections.deleteSearch.title=Delete Search
+pane.collections.deleteSearch.title=حذف جستجو
pane.collections.deleteSearch=آیا واقعا میخواهید جستجوی انتخاب شده پاک شود؟
pane.collections.emptyTrash=آیا واقعا میخواهید آیتمهای موجود در سطل بازیافت به طور دائمی حذف شوند؟
pane.collections.newCollection=مجموعه جدید
@@ -169,9 +170,9 @@ pane.collections.duplicate=Duplicate Items
pane.collections.menu.rename.collection=تغییر نام مجموعه...
pane.collections.menu.edit.savedSearch=ویرایش جستجوی ذخیره شده
-pane.collections.menu.delete.collection=Delete Collection…
-pane.collections.menu.delete.collectionAndItems=Delete Collection and Items…
-pane.collections.menu.delete.savedSearch=Delete Saved Search…
+pane.collections.menu.delete.collection=حذف مجموعه
+pane.collections.menu.delete.collectionAndItems=حذف مجموعه و آیتمهای آن...
+pane.collections.menu.delete.savedSearch=حذف جستجوی ذخیرهشده...
pane.collections.menu.export.collection=صدور مجموعه...
pane.collections.menu.export.savedSearch=صدور جستجوی ذخیره شده...
pane.collections.menu.createBib.collection=ساخت کتابنامه از مجموعه...
@@ -193,7 +194,7 @@ tagColorChooser.numberKeyInstructions=You can add this tag to selected items by
tagColorChooser.maxTags=Up to %S tags in each library can have colors assigned.
pane.items.loading=بار کردن لیست آیتمها...
-pane.items.columnChooser.moreColumns=More Columns
+pane.items.columnChooser.moreColumns=ستونهای بیشتر
pane.items.columnChooser.secondarySort=Secondary Sort (%S)
pane.items.attach.link.uri.unrecognized=Zotero did not recognize the URI you entered. Please check the address and try again.
pane.items.attach.link.uri.file=To attach a link to a file, please use “%S”.
@@ -203,10 +204,13 @@ pane.items.trash.multiple=آیتمهای انتخاب شده به سطل
pane.items.delete.title=حذف
pane.items.delete=آیتم انتخاب شده حذف شود؟
pane.items.delete.multiple=آیتمهای انتخاب شده حذف شوند؟
+pane.items.remove.title=Remove from Collection
+pane.items.remove=Are you sure you want to remove the selected item from this collection?
+pane.items.remove.multiple=Are you sure you want to remove the selected items from this collection?
pane.items.menu.remove=حذف این آیتم از مجموعه
pane.items.menu.remove.multiple=حذف آیتمهای انتخاب شده
-pane.items.menu.moveToTrash=Move Item to Trash…
-pane.items.menu.moveToTrash.multiple=Move Items to Trash…
+pane.items.menu.moveToTrash=انتقال به سطل بازیافت...
+pane.items.menu.moveToTrash.multiple=انتقال به سطل بازیافت...
pane.items.menu.export=صدور این آیتم...
pane.items.menu.export.multiple=صدور آیتمهای انتخاب شده...
pane.items.menu.createBib=ساخت کتابنامه از این آیتم...
@@ -221,6 +225,7 @@ pane.items.menu.createParent=ساخت آیتم مادر از این آیتم
pane.items.menu.createParent.multiple=ساخت آیتمهای مادر از آیتمهای انتخاب شده
pane.items.menu.renameAttachments=تغییر نام پرونده با توجه به فرادادههای مادر
pane.items.menu.renameAttachments.multiple=تغییر نام پروندهها با توجه به فرادادههای مادر
+pane.items.showItemInLibrary=Show Item in Library
pane.items.letter.oneParticipant=نامه به %S
pane.items.letter.twoParticipants=نامه به %S و %S
@@ -237,7 +242,7 @@ pane.item.unselected.zero=No items in this view
pane.item.unselected.singular=%S item in this view
pane.item.unselected.plural=%S items in this view
-pane.item.duplicates.selectToMerge=Select items to merge
+pane.item.duplicates.selectToMerge=انتخاب آیتمها جهت ادغام
pane.item.duplicates.mergeItems=Merge %S items
pane.item.duplicates.writeAccessRequired=Library write access is required to merge items.
pane.item.duplicates.onlyTopLevel=Only top-level full items can be merged.
@@ -348,7 +353,7 @@ itemFields.archiveLocation=محل در آرشیو
itemFields.distributor=توزیعکننده
itemFields.extra=اطلاعات اضافه
itemFields.journalAbbreviation=نام مختصر مجله
-itemFields.DOI=DOI
+itemFields.DOI=شناسه DOI
itemFields.accessDate=تاریخ دسترسی
itemFields.seriesTitle=عنوان مجموعه
itemFields.seriesText=متن مجموعه
@@ -660,7 +665,7 @@ citation.singleSource=یک مرجع ...
citation.showEditor=نمایش ویرایشگر...
citation.hideEditor=نهفتن ویرایشگر ...
citation.citations=Citations
-citation.notes=Notes
+citation.notes=یادداشتها
report.title.default=گزارش زوترو
report.parentItem=آیتم مادر:
@@ -761,7 +766,7 @@ sync.error.passwordNotSet=گذرواژه تنظیم نشده است
sync.error.invalidLogin=گذرواژه یا نام کاربری درست نیست.
sync.error.invalidLogin.text=The Zotero sync server did not accept your username and password.\n\nPlease check that you have entered your zotero.org login information correctly in the Zotero sync preferences.
sync.error.enterPassword=لطفا یک گذرواژه وارد کنید.
-sync.error.loginManagerInaccessible=Zotero cannot access your login information.
+sync.error.loginManagerInaccessible=زوترو نمیتواند به اطلاعات لازم برای ورود به وبگاه دسترسی پیدا کند.
sync.error.checkMasterPassword=If you are using a master password in %S, make sure you have entered it successfully.
sync.error.corruptedLoginManager=This could also be due to a corrupted %1$S login manager database. To check, close %1$S, remove signons.sqlite from your %1$S profile directory, and re-enter your Zotero login information in the Sync pane of the Zotero preferences.
sync.error.loginManagerCorrupted1=Zotero cannot access your login information, possibly due to a corrupted %S login manager database.
@@ -902,7 +907,7 @@ recognizePDF.noMatches=No matching references found
recognizePDF.fileNotFound=File not found
recognizePDF.limit=Google Scholar query limit reached. Try again later.
recognizePDF.error=An unexpected error occurred.
-recognizePDF.stopped=Cancelled
+recognizePDF.stopped=لغو شده
recognizePDF.complete.label=Metadata Retrieval Complete
recognizePDF.cancelled.label=Metadata Retrieval Cancelled
recognizePDF.close.label=بستن
@@ -920,9 +925,9 @@ rtfScan.scannedFileSuffix=(پیمایش شد)
file.accessError.theFile=The file '%S'
file.accessError.aFile=A file
file.accessError.cannotBe=cannot be
-file.accessError.created=created
-file.accessError.updated=updated
-file.accessError.deleted=deleted
+file.accessError.created=ایجاد شده
+file.accessError.updated=به روز شده
+file.accessError.deleted=حذفشده
file.accessError.message.windows=Check that the file is not currently in use, that its permissions allow write access, and that it has a valid filename.
file.accessError.message.other=Check that the file is not currently in use and that its permissions allow write access.
file.accessError.restart=Restarting your computer or disabling security software may also help.
@@ -951,11 +956,11 @@ locate.libraryLookup.tooltip=جستجوی این آیتم با استفاده ا
locate.manageLocateEngines=ساماندهی موتورهای جستجو...
standalone.corruptInstallation=Your Zotero Standalone installation appears to be corrupted due to a failed auto-update. While Zotero may continue to function, to avoid potential bugs, please download the latest version of Zotero Standalone from http://zotero.org/support/standalone as soon as possible.
-standalone.addonInstallationFailed.title=Add-on Installation Failed
+standalone.addonInstallationFailed.title=افزونه نصب نشد
standalone.addonInstallationFailed.body=The add-on "%S" could not be installed. It may be incompatible with this version of Zotero Standalone.
standalone.rootWarning=You appear to be running Zotero Standalone as root. This is insecure and may prevent Zotero from functioning when launched from your user account.\n\nIf you wish to install an automatic update, modify the Zotero program directory to be writeable by your user account.
-standalone.rootWarning.exit=Exit
-standalone.rootWarning.continue=Continue
+standalone.rootWarning.exit=خروج
+standalone.rootWarning.continue=ادامه
standalone.updateMessage=A recommended update is available, but you do not have permission to install it. To update automatically, modify the Zotero program directory to be writeable by your user account.
connector.error.title=Zotero Connector Error
@@ -968,3 +973,12 @@ firstRunGuidance.quickFormat=Type a title or author to search for a reference.\n
firstRunGuidance.quickFormatMac=Type a title or author to search for a reference.\n\nAfter you've made your selection, click the bubble or press Cmd-↓ to add page numbers, prefixes, or suffixes. You can also include a page number along with your search terms to add it directly.\n\nYou can edit citations directly in the word processor document.
firstRunGuidance.toolbarButton.new=Click here to open Zotero, or use the %S keyboard shortcut.
firstRunGuidance.toolbarButton.upgrade=The Zotero icon can now be found in the Firefox toolbar. Click the icon to open Zotero, or use the %S keyboard shortcut.
+
+styles.bibliography=Bibliography
+styles.editor.save=Save Citation Style
+styles.editor.warning.noItems=No items selected in Zotero.
+styles.editor.warning.parseError=Error parsing style:
+styles.editor.warning.renderError=Error generating citations and bibliography:
+styles.editor.output.individualCitations=Individual Citations
+styles.editor.output.singleCitation=Single Citation (with position "first")
+styles.preview.instructions=Select one or more items in Zotero and click the "Refresh" button to see how these items are rendered by the installed CSL citation styles.
diff --git a/chrome/locale/fi-FI/zotero/csledit.dtd b/chrome/locale/fi-FI/zotero/csledit.dtd
new file mode 100644
index 000000000..289272aba
--- /dev/null
+++ b/chrome/locale/fi-FI/zotero/csledit.dtd
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/chrome/locale/fi-FI/zotero/cslpreview.dtd b/chrome/locale/fi-FI/zotero/cslpreview.dtd
new file mode 100644
index 000000000..04396166e
--- /dev/null
+++ b/chrome/locale/fi-FI/zotero/cslpreview.dtd
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/chrome/locale/fi-FI/zotero/preferences.dtd b/chrome/locale/fi-FI/zotero/preferences.dtd
index ac2416528..164bf7517 100644
--- a/chrome/locale/fi-FI/zotero/preferences.dtd
+++ b/chrome/locale/fi-FI/zotero/preferences.dtd
@@ -12,8 +12,6 @@
-
-
@@ -125,8 +123,6 @@
-
-
@@ -164,6 +160,7 @@
+
@@ -204,6 +201,6 @@
-
-
+
+
diff --git a/chrome/locale/fi-FI/zotero/zotero.dtd b/chrome/locale/fi-FI/zotero/zotero.dtd
index 85f5697f9..a387521c4 100644
--- a/chrome/locale/fi-FI/zotero/zotero.dtd
+++ b/chrome/locale/fi-FI/zotero/zotero.dtd
@@ -6,6 +6,8 @@
+
+
@@ -123,7 +125,7 @@
-
+
@@ -288,5 +290,3 @@
-
-
diff --git a/chrome/locale/fi-FI/zotero/zotero.properties b/chrome/locale/fi-FI/zotero/zotero.properties
index 183585e96..50b625ac5 100644
--- a/chrome/locale/fi-FI/zotero/zotero.properties
+++ b/chrome/locale/fi-FI/zotero/zotero.properties
@@ -42,6 +42,7 @@ general.create=Luo
general.delete=Poista
general.moreInformation=Lisätietoja
general.seeForMoreInformation=Katso %S, jos haluat tietää lisää.
+general.open=Open %S
general.enable=Laita päälle
general.disable=Ota pois päältä
general.remove=Poista
@@ -203,6 +204,9 @@ pane.items.trash.multiple=Haluatko varmasti siirtää valitut nimikkeet roskakor
pane.items.delete.title=Poista
pane.items.delete=Haluatko varmasti poistaa valitun kohteen?
pane.items.delete.multiple=Haluatko varmasti poistaa valitut kohteet?
+pane.items.remove.title=Remove from Collection
+pane.items.remove=Are you sure you want to remove the selected item from this collection?
+pane.items.remove.multiple=Are you sure you want to remove the selected items from this collection?
pane.items.menu.remove=Poista valittu kohde
pane.items.menu.remove.multiple=Poista valitut kohteet
pane.items.menu.moveToTrash=Siirrä nimike roskakoriin...
@@ -221,6 +225,7 @@ pane.items.menu.createParent=Luo valitulle nimikkeelle ylänimike
pane.items.menu.createParent.multiple=Luo valituille nimikkeille ylänimike
pane.items.menu.renameAttachments=Muuta tiedoston nimi ylänimikkeen metatiedoista
pane.items.menu.renameAttachments.multiple=Muuta tiedostojen nimet ylänimikkeen metatiedoista
+pane.items.showItemInLibrary=Show Item in Library
pane.items.letter.oneParticipant=Kirje henkilölle %S
pane.items.letter.twoParticipants=Kirje henkilöille %S ja %S
@@ -968,3 +973,12 @@ firstRunGuidance.quickFormat=Kirjoita otsikko tai tekijä etsiäksesi viitettä.
firstRunGuidance.quickFormatMac=Kirjoita otsikko tai tekijä etsiäksesi viitettä.\n\nKun olet tehnyt valinnan, klikkaa kuplaa tai paina Ctrl-\u2193 lisätäksesi sivunumerot sekä etu- ja jälkiliitteet. Voit myös sisällyttää sivunumeron hakutermien mukana lisätäksesi sen suoraan.\n\nVoit muokata sitaatteja suoraan tekstinkäsittelyohjelman asiakirjassa.
firstRunGuidance.toolbarButton.new=Paina tästä avataksesi Zoteron, tai käyttää %S-näppäinoikotietä.
firstRunGuidance.toolbarButton.upgrade=Zoteron kuvake on nyt Firefoxin työkalurivillä. Paina kuvaketta avataksesi Zoteron, tai käytä %S-näppäinoikotietä.
+
+styles.bibliography=Bibliography
+styles.editor.save=Save Citation Style
+styles.editor.warning.noItems=No items selected in Zotero.
+styles.editor.warning.parseError=Error parsing style:
+styles.editor.warning.renderError=Error generating citations and bibliography:
+styles.editor.output.individualCitations=Individual Citations
+styles.editor.output.singleCitation=Single Citation (with position "first")
+styles.preview.instructions=Select one or more items in Zotero and click the "Refresh" button to see how these items are rendered by the installed CSL citation styles.
diff --git a/chrome/locale/fr-FR/zotero/csledit.dtd b/chrome/locale/fr-FR/zotero/csledit.dtd
new file mode 100644
index 000000000..289272aba
--- /dev/null
+++ b/chrome/locale/fr-FR/zotero/csledit.dtd
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/chrome/locale/fr-FR/zotero/cslpreview.dtd b/chrome/locale/fr-FR/zotero/cslpreview.dtd
new file mode 100644
index 000000000..04396166e
--- /dev/null
+++ b/chrome/locale/fr-FR/zotero/cslpreview.dtd
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/chrome/locale/fr-FR/zotero/preferences.dtd b/chrome/locale/fr-FR/zotero/preferences.dtd
index 983bafdb2..67ef7f25a 100644
--- a/chrome/locale/fr-FR/zotero/preferences.dtd
+++ b/chrome/locale/fr-FR/zotero/preferences.dtd
@@ -12,8 +12,6 @@
-
-
@@ -125,18 +123,16 @@
-
-
-
+
-
-
+
+
-
-
-
+
+
+
@@ -164,6 +160,7 @@
+
@@ -204,6 +201,6 @@
-
-
+
+
diff --git a/chrome/locale/fr-FR/zotero/standalone.dtd b/chrome/locale/fr-FR/zotero/standalone.dtd
index 0289b2720..66873e0bc 100644
--- a/chrome/locale/fr-FR/zotero/standalone.dtd
+++ b/chrome/locale/fr-FR/zotero/standalone.dtd
@@ -87,7 +87,7 @@
-
+
diff --git a/chrome/locale/fr-FR/zotero/zotero.dtd b/chrome/locale/fr-FR/zotero/zotero.dtd
index 0ebf384bd..65455bae6 100644
--- a/chrome/locale/fr-FR/zotero/zotero.dtd
+++ b/chrome/locale/fr-FR/zotero/zotero.dtd
@@ -6,6 +6,8 @@
+
+
@@ -103,7 +105,7 @@
-
+
@@ -114,7 +116,7 @@
-
+
@@ -123,7 +125,7 @@
-
+
@@ -288,5 +290,3 @@
-
-
diff --git a/chrome/locale/fr-FR/zotero/zotero.properties b/chrome/locale/fr-FR/zotero/zotero.properties
index b1b9f62ac..4fd563ce3 100644
--- a/chrome/locale/fr-FR/zotero/zotero.properties
+++ b/chrome/locale/fr-FR/zotero/zotero.properties
@@ -42,6 +42,7 @@ general.create=Créer
general.delete=Supprimer
general.moreInformation=Plus d'informations
general.seeForMoreInformation=Consultez %S pour plus d'information.
+general.open=Open %S
general.enable=Activer
general.disable=Désactiver
general.remove=Supprimer
@@ -203,6 +204,9 @@ pane.items.trash.multiple=Voulez-vous vraiment mettre les documents sélectionn
pane.items.delete.title=Supprimer
pane.items.delete=Voulez-vous vraiment supprimer le document sélectionné ?
pane.items.delete.multiple=Voulez-vous vraiment supprimer les documents sélectionnés ?
+pane.items.remove.title=Remove from Collection
+pane.items.remove=Are you sure you want to remove the selected item from this collection?
+pane.items.remove.multiple=Are you sure you want to remove the selected items from this collection?
pane.items.menu.remove=Retirer le document de la collection
pane.items.menu.remove.multiple=Retirer les documents de la collection
pane.items.menu.moveToTrash=Mettre le document à la corbeille…
@@ -221,6 +225,7 @@ pane.items.menu.createParent=Créer un document parent
pane.items.menu.createParent.multiple=Créer des documents parents
pane.items.menu.renameAttachments=Renommer le fichier à partir des métadonnées du parent
pane.items.menu.renameAttachments.multiple=Renommer les fichiers à partir des métadonnées du parent
+pane.items.showItemInLibrary=Afficher le document dans la bibliothèque
pane.items.letter.oneParticipant=Lettre à %S
pane.items.letter.twoParticipants=Lettre à %S et %S
@@ -558,8 +563,8 @@ zotero.preferences.search.pdf.toolsDownloadError=Une erreur est survenue en essa
zotero.preferences.search.pdf.tryAgainOrViewManualInstructions=Veuillez réessayer plus tard, ou consultez la documentation pour les instructions d'installation manuelle.
zotero.preferences.export.quickCopy.bibStyles=Styles bibliographiques
zotero.preferences.export.quickCopy.exportFormats=Formats d'exportation
-zotero.preferences.export.quickCopy.instructions=La copie rapide vous permet de copier les références sélectionnées vers le presse-papiers en appuyant sur %S ou en glissant-déposant les références dans une zone de texte (d'une page Web ou d'un traitement de texte).
-zotero.preferences.export.quickCopy.citationInstructions=En choisissant, ci-dessous, un style bibliographique comme format de sortie par défaut, les références copiées pourront aussi être mises en forme comme une citation dans le texte : grâce au raccourci clavier %S ou en maintenant la touche Majuscule enfoncée pendant que vous glissez-déposez les références.
+zotero.preferences.export.quickCopy.instructions=La copie rapide permet de copier vers le presse-papiers les documents sélectionnés, soit comme une *bibliographie* conforme à un Style bibliographique retenu ci-dessous, soit au Format d'exportation retenu ci-dessous. Il suffit d'appuyer sur %S ou de glisser-déposer les documents dans une zone de texte.
+zotero.preferences.export.quickCopy.citationInstructions=Pour copier les documents sélectionnés comme des *citations* (ou des notes de bas de page) d'un texte, appuyez sur %S ou appuyez sur la touche Majuscule tout en glissant-déposant les documents. (Vérifiez que le Format de sortie par défaut est un Style bibliographique).
zotero.preferences.styles.addStyle=Ajouter un style
zotero.preferences.advanced.resetTranslatorsAndStyles=Réinitialiser les convertisseurs et les styles
@@ -968,3 +973,12 @@ firstRunGuidance.quickFormat=Tapez son titre ou son auteur pour rechercher une r
firstRunGuidance.quickFormatMac=Tapez son titre ou son auteur pour rechercher une référence.\n\nAprès l'avoir sélectionnée, cliquez sur la bulle ou appuyer sur Cmd-\u2193 pour ajouter les numéros des pages, un préfixe ou un suffixe. Vous pouvez aussi inclure un numéro de page en même temps que vos termes de recherche afin de l'ajouter directement.\n\nVous pouvez modifier les citations directement dans le document du traitement de texte.
firstRunGuidance.toolbarButton.new=Cliquez ici pour ouvrir Zotero, ou utilisez le raccourci clavier %S.
firstRunGuidance.toolbarButton.upgrade=L'icône Zotero est désormais dans la barre d'outils Firefox. Cliquez sur l'icône pour ouvrir Zotero, ou utilisez le raccourci clavier %S.
+
+styles.bibliography=Bibliographie
+styles.editor.save=Enregistrer le style de citation
+styles.editor.warning.noItems=Aucun document sélectionné dans Zotero.
+styles.editor.warning.parseError=Erreur dans la syntaxe du style :
+styles.editor.warning.renderError=Erreur lors de la création des citations et de la bibliographie :
+styles.editor.output.individualCitations=Citation(s) individuelle(s)
+styles.editor.output.singleCitation=Citation unique (en position "first")
+styles.preview.instructions=Sélectionnez un ou plusieurs documents dans Zotero et cliquez sur le bouton "Actualiser" pour voir comment ces documents sont mis en forme avec les styles de citation CSL installés.
diff --git a/chrome/locale/gl-ES/zotero/csledit.dtd b/chrome/locale/gl-ES/zotero/csledit.dtd
new file mode 100644
index 000000000..289272aba
--- /dev/null
+++ b/chrome/locale/gl-ES/zotero/csledit.dtd
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/chrome/locale/gl-ES/zotero/cslpreview.dtd b/chrome/locale/gl-ES/zotero/cslpreview.dtd
new file mode 100644
index 000000000..04396166e
--- /dev/null
+++ b/chrome/locale/gl-ES/zotero/cslpreview.dtd
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/chrome/locale/gl-ES/zotero/preferences.dtd b/chrome/locale/gl-ES/zotero/preferences.dtd
index ce62f2491..72014ad99 100644
--- a/chrome/locale/gl-ES/zotero/preferences.dtd
+++ b/chrome/locale/gl-ES/zotero/preferences.dtd
@@ -12,8 +12,6 @@
-
-
@@ -125,8 +123,6 @@
-
-
@@ -164,6 +160,7 @@
+
@@ -204,6 +201,6 @@
-
-
+
+
diff --git a/chrome/locale/gl-ES/zotero/zotero.dtd b/chrome/locale/gl-ES/zotero/zotero.dtd
index 1cc2d2c22..6e22ad714 100644
--- a/chrome/locale/gl-ES/zotero/zotero.dtd
+++ b/chrome/locale/gl-ES/zotero/zotero.dtd
@@ -6,6 +6,8 @@
+
+
@@ -123,7 +125,7 @@
-
+
@@ -285,8 +287,6 @@
-
-
-
-
-
+
+
+
diff --git a/chrome/locale/gl-ES/zotero/zotero.properties b/chrome/locale/gl-ES/zotero/zotero.properties
index 0f8dd2438..d4a9220eb 100644
--- a/chrome/locale/gl-ES/zotero/zotero.properties
+++ b/chrome/locale/gl-ES/zotero/zotero.properties
@@ -42,6 +42,7 @@ general.create=Crear
general.delete=Eliminar
general.moreInformation=Máis información
general.seeForMoreInformation=Vexa %S para máis información.
+general.open=Open %S
general.enable=Activar
general.disable=Desactivar
general.remove=Remove
@@ -195,14 +196,17 @@ tagColorChooser.maxTags=Só ata %S etiquetas de cada biblioteca poden ter cores
pane.items.loading=Cargando a lista de elementos ...
pane.items.columnChooser.moreColumns=Máis columnas
pane.items.columnChooser.secondarySort=Modo de aliñamento (%S)
-pane.items.attach.link.uri.unrecognized=Zotero did not recognize the URI you entered. Please check the address and try again.
-pane.items.attach.link.uri.file=To attach a link to a file, please use “%S”.
+pane.items.attach.link.uri.unrecognized=Zotero non recoñeceu a URI que se introduciou. Comprobe que o enderezo estea ben e probe de novo.
+pane.items.attach.link.uri.file=Para engadirlle unha ligazón a un ficheiro, empregue «%S»
pane.items.trash.title=Mover ao lixo
pane.items.trash=Seguro que quere mover o elemento seleccionado ao lixo?
pane.items.trash.multiple=Seguro que quere mover os elementos seleccionados ao lixo?
pane.items.delete.title=Eliminar
pane.items.delete=Seguro que quere eliminar o elemento seleccionado?
pane.items.delete.multiple=Seguro que quere eliminar os elementos seleccionados?
+pane.items.remove.title=Remove from Collection
+pane.items.remove=Are you sure you want to remove the selected item from this collection?
+pane.items.remove.multiple=Are you sure you want to remove the selected items from this collection?
pane.items.menu.remove=Eliminar o elemento seleccionado
pane.items.menu.remove.multiple=Eliminar os elementos seleccionados
pane.items.menu.moveToTrash=Mover os elementos ao lixo...
@@ -221,6 +225,7 @@ pane.items.menu.createParent=Crear un elemento pai do elemento seleccionado
pane.items.menu.createParent.multiple=Crear un elementos pai dos elementos seleccionados
pane.items.menu.renameAttachments=Renomear o ficheiro dos metadatos parentais
pane.items.menu.renameAttachments.multiple=Cambiar os nomes dos ficheiros dos metadatos parentais
+pane.items.showItemInLibrary=Show Item in Library
pane.items.letter.oneParticipant=Carta a %S
pane.items.letter.twoParticipants=Carta a %S e %S
@@ -968,3 +973,12 @@ firstRunGuidance.quickFormat=Teclee un título ou autor para buscar unha referen
firstRunGuidance.quickFormatMac=Teclee un título de autor para facer unha busca dunha referencia.\n\nDespois de ter feito a selección prema na burbulla ou prema Cmd-\↓ para engadir os números de páxina, prefixos ou sufixos. Igualmente, pode incluír un número de páxina co seus termos de busca empregados e engadilo directamente.\n\nPode ademais editar citas directamente desde o procesador de documentos de textos.
firstRunGuidance.toolbarButton.new=Para abrir Zotero preme aquí ou usa o atallo de teclado %S
firstRunGuidance.toolbarButton.upgrade=A icona de Zotero pódese atopar na barra de ferramentas do Firefox. Preme na icona de Zotero para abrilo ou usa o atallo de teclado %S.
+
+styles.bibliography=Bibliography
+styles.editor.save=Save Citation Style
+styles.editor.warning.noItems=No items selected in Zotero.
+styles.editor.warning.parseError=Error parsing style:
+styles.editor.warning.renderError=Error generating citations and bibliography:
+styles.editor.output.individualCitations=Individual Citations
+styles.editor.output.singleCitation=Single Citation (with position "first")
+styles.preview.instructions=Select one or more items in Zotero and click the "Refresh" button to see how these items are rendered by the installed CSL citation styles.
diff --git a/chrome/locale/he-IL/zotero/csledit.dtd b/chrome/locale/he-IL/zotero/csledit.dtd
new file mode 100644
index 000000000..289272aba
--- /dev/null
+++ b/chrome/locale/he-IL/zotero/csledit.dtd
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/chrome/locale/he-IL/zotero/cslpreview.dtd b/chrome/locale/he-IL/zotero/cslpreview.dtd
new file mode 100644
index 000000000..04396166e
--- /dev/null
+++ b/chrome/locale/he-IL/zotero/cslpreview.dtd
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/chrome/locale/he-IL/zotero/preferences.dtd b/chrome/locale/he-IL/zotero/preferences.dtd
index ebcba9550..3684d2a3b 100644
--- a/chrome/locale/he-IL/zotero/preferences.dtd
+++ b/chrome/locale/he-IL/zotero/preferences.dtd
@@ -12,8 +12,6 @@
-
-
@@ -125,8 +123,6 @@
-
-
@@ -164,6 +160,7 @@
+
@@ -204,6 +201,6 @@
-
-
+
+
diff --git a/chrome/locale/he-IL/zotero/zotero.dtd b/chrome/locale/he-IL/zotero/zotero.dtd
index 94376332d..4fd30269b 100644
--- a/chrome/locale/he-IL/zotero/zotero.dtd
+++ b/chrome/locale/he-IL/zotero/zotero.dtd
@@ -6,6 +6,8 @@
+
+
@@ -123,7 +125,7 @@
-
+
@@ -288,5 +290,3 @@
-
-
diff --git a/chrome/locale/he-IL/zotero/zotero.properties b/chrome/locale/he-IL/zotero/zotero.properties
index b329b4a50..03bf33132 100644
--- a/chrome/locale/he-IL/zotero/zotero.properties
+++ b/chrome/locale/he-IL/zotero/zotero.properties
@@ -42,6 +42,7 @@ general.create=צור
general.delete=Delete
general.moreInformation=More Information
general.seeForMoreInformation=See %S for more information.
+general.open=Open %S
general.enable=Enable
general.disable=Disable
general.remove=הסר
@@ -203,6 +204,9 @@ pane.items.trash.multiple=Are you sure you want to move the selected items to th
pane.items.delete.title=מחק
pane.items.delete=Are you sure you want to delete the selected item?
pane.items.delete.multiple=האם אתה רוצה למחוק את הפריטים הנבחרים?
+pane.items.remove.title=Remove from Collection
+pane.items.remove=Are you sure you want to remove the selected item from this collection?
+pane.items.remove.multiple=Are you sure you want to remove the selected items from this collection?
pane.items.menu.remove=הסר פריטים נבחרים
pane.items.menu.remove.multiple=הסר פריטים נבחרים
pane.items.menu.moveToTrash=Move Item to Trash…
@@ -221,6 +225,7 @@ pane.items.menu.createParent=Create Parent Item
pane.items.menu.createParent.multiple=Create Parent Items
pane.items.menu.renameAttachments=Rename File from Parent Metadata
pane.items.menu.renameAttachments.multiple=Rename Files from Parent Metadata
+pane.items.showItemInLibrary=Show Item in Library
pane.items.letter.oneParticipant=Letter to %S
pane.items.letter.twoParticipants=Letter to %S and %S
@@ -968,3 +973,12 @@ firstRunGuidance.quickFormat=Type a title or author to search for a reference.\n
firstRunGuidance.quickFormatMac=Type a title or author to search for a reference.\n\nAfter you've made your selection, click the bubble or press Cmd-↓ to add page numbers, prefixes, or suffixes. You can also include a page number along with your search terms to add it directly.\n\nYou can edit citations directly in the word processor document.
firstRunGuidance.toolbarButton.new=Click here to open Zotero, or use the %S keyboard shortcut.
firstRunGuidance.toolbarButton.upgrade=The Zotero icon can now be found in the Firefox toolbar. Click the icon to open Zotero, or use the %S keyboard shortcut.
+
+styles.bibliography=Bibliography
+styles.editor.save=Save Citation Style
+styles.editor.warning.noItems=No items selected in Zotero.
+styles.editor.warning.parseError=Error parsing style:
+styles.editor.warning.renderError=Error generating citations and bibliography:
+styles.editor.output.individualCitations=Individual Citations
+styles.editor.output.singleCitation=Single Citation (with position "first")
+styles.preview.instructions=Select one or more items in Zotero and click the "Refresh" button to see how these items are rendered by the installed CSL citation styles.
diff --git a/chrome/locale/hr-HR/zotero/csledit.dtd b/chrome/locale/hr-HR/zotero/csledit.dtd
new file mode 100644
index 000000000..289272aba
--- /dev/null
+++ b/chrome/locale/hr-HR/zotero/csledit.dtd
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/chrome/locale/hr-HR/zotero/cslpreview.dtd b/chrome/locale/hr-HR/zotero/cslpreview.dtd
new file mode 100644
index 000000000..04396166e
--- /dev/null
+++ b/chrome/locale/hr-HR/zotero/cslpreview.dtd
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/chrome/locale/hr-HR/zotero/preferences.dtd b/chrome/locale/hr-HR/zotero/preferences.dtd
index 34ab0e0d1..48a7ae4f5 100644
--- a/chrome/locale/hr-HR/zotero/preferences.dtd
+++ b/chrome/locale/hr-HR/zotero/preferences.dtd
@@ -12,8 +12,6 @@
-
-
@@ -125,8 +123,6 @@
-
-
@@ -164,6 +160,7 @@
+
@@ -204,6 +201,6 @@
-
-
+
+
diff --git a/chrome/locale/hr-HR/zotero/zotero.dtd b/chrome/locale/hr-HR/zotero/zotero.dtd
index c9627ab11..a153f114c 100644
--- a/chrome/locale/hr-HR/zotero/zotero.dtd
+++ b/chrome/locale/hr-HR/zotero/zotero.dtd
@@ -6,6 +6,8 @@
+
+
@@ -123,7 +125,7 @@
-
+
@@ -288,5 +290,3 @@
-
-
diff --git a/chrome/locale/hr-HR/zotero/zotero.properties b/chrome/locale/hr-HR/zotero/zotero.properties
index e90a1f4ad..6c16b04ac 100644
--- a/chrome/locale/hr-HR/zotero/zotero.properties
+++ b/chrome/locale/hr-HR/zotero/zotero.properties
@@ -42,6 +42,7 @@ general.create=Create
general.delete=Delete
general.moreInformation=More Information
general.seeForMoreInformation=See %S for more information.
+general.open=Open %S
general.enable=Enable
general.disable=Disable
general.remove=Remove
@@ -203,6 +204,9 @@ pane.items.trash.multiple=Are you sure you want to move the selected items to th
pane.items.delete.title=Delete
pane.items.delete=Are you sure you want to delete the selected item?
pane.items.delete.multiple=Are you sure you want to delete the selected items?
+pane.items.remove.title=Remove from Collection
+pane.items.remove=Are you sure you want to remove the selected item from this collection?
+pane.items.remove.multiple=Are you sure you want to remove the selected items from this collection?
pane.items.menu.remove=Remove Item from Collection
pane.items.menu.remove.multiple=Remove Items from Collection
pane.items.menu.moveToTrash=Move Item to Trash…
@@ -221,6 +225,7 @@ pane.items.menu.createParent=Create Parent Item
pane.items.menu.createParent.multiple=Create Parent Items
pane.items.menu.renameAttachments=Rename File from Parent Metadata
pane.items.menu.renameAttachments.multiple=Rename Files from Parent Metadata
+pane.items.showItemInLibrary=Show Item in Library
pane.items.letter.oneParticipant=Letter to %S
pane.items.letter.twoParticipants=Letter to %S and %S
@@ -968,3 +973,12 @@ firstRunGuidance.quickFormat=Type a title or author to search for a reference.\n
firstRunGuidance.quickFormatMac=Type a title or author to search for a reference.\n\nAfter you've made your selection, click the bubble or press Cmd-↓ to add page numbers, prefixes, or suffixes. You can also include a page number along with your search terms to add it directly.\n\nYou can edit citations directly in the word processor document.
firstRunGuidance.toolbarButton.new=Click here to open Zotero, or use the %S keyboard shortcut.
firstRunGuidance.toolbarButton.upgrade=The Zotero icon can now be found in the Firefox toolbar. Click the icon to open Zotero, or use the %S keyboard shortcut.
+
+styles.bibliography=Bibliography
+styles.editor.save=Save Citation Style
+styles.editor.warning.noItems=No items selected in Zotero.
+styles.editor.warning.parseError=Error parsing style:
+styles.editor.warning.renderError=Error generating citations and bibliography:
+styles.editor.output.individualCitations=Individual Citations
+styles.editor.output.singleCitation=Single Citation (with position "first")
+styles.preview.instructions=Select one or more items in Zotero and click the "Refresh" button to see how these items are rendered by the installed CSL citation styles.
diff --git a/chrome/locale/hu-HU/zotero/csledit.dtd b/chrome/locale/hu-HU/zotero/csledit.dtd
new file mode 100644
index 000000000..289272aba
--- /dev/null
+++ b/chrome/locale/hu-HU/zotero/csledit.dtd
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/chrome/locale/hu-HU/zotero/cslpreview.dtd b/chrome/locale/hu-HU/zotero/cslpreview.dtd
new file mode 100644
index 000000000..04396166e
--- /dev/null
+++ b/chrome/locale/hu-HU/zotero/cslpreview.dtd
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/chrome/locale/hu-HU/zotero/preferences.dtd b/chrome/locale/hu-HU/zotero/preferences.dtd
index 1cf1d0aa8..711d6715a 100644
--- a/chrome/locale/hu-HU/zotero/preferences.dtd
+++ b/chrome/locale/hu-HU/zotero/preferences.dtd
@@ -12,8 +12,6 @@
-
-
@@ -125,8 +123,6 @@
-
-
@@ -164,6 +160,7 @@
+
@@ -204,6 +201,6 @@
-
-
+
+
diff --git a/chrome/locale/hu-HU/zotero/zotero.dtd b/chrome/locale/hu-HU/zotero/zotero.dtd
index 4d436ec8b..2c4cce102 100644
--- a/chrome/locale/hu-HU/zotero/zotero.dtd
+++ b/chrome/locale/hu-HU/zotero/zotero.dtd
@@ -6,6 +6,8 @@
+
+
@@ -70,7 +72,7 @@
-
+
@@ -123,7 +125,7 @@
-
+
@@ -191,7 +193,7 @@
-
+
@@ -218,7 +220,7 @@
-
+
@@ -269,7 +271,7 @@
-
+
@@ -285,8 +287,6 @@
-
+
-
-
diff --git a/chrome/locale/hu-HU/zotero/zotero.properties b/chrome/locale/hu-HU/zotero/zotero.properties
index 666b41c8c..d617ec421 100644
--- a/chrome/locale/hu-HU/zotero/zotero.properties
+++ b/chrome/locale/hu-HU/zotero/zotero.properties
@@ -42,6 +42,7 @@ general.create=Új
general.delete=Törlés
general.moreInformation=További információ
general.seeForMoreInformation=A %S bővebb információkat tartalmaz.
+general.open=Open %S
general.enable=Bekapcsolás
general.disable=Kikapcsolás
general.remove=Eltávolítás
@@ -66,7 +67,7 @@ punctuation.ellipsis=…
install.quickStartGuide=Használati útmutató
install.quickStartGuide.message.welcome=Üdvözli a Zotero!
-install.quickStartGuide.message.view=View the Quick Start Guide to learn how to begin collecting, managing, citing, and sharing your research sources.
+install.quickStartGuide.message.view=Tekintse át a Quick Start Guide-ot, hogy megismerje hogyan kell gyűjteni, menedzselni, hivatkozni és megosztani a kutatási forrásokat.
install.quickStartGuide.message.thanks=Köszönjük, hogy telepítette a Zoterot.
upgrade.failed.title=A frissítés sikertelen
@@ -92,17 +93,17 @@ errorReport.invalidResponseRepository=Érvénytelen válasz a tárolótól
errorReport.repoCannotBeContacted=Nem lehet kapcsolatba lépni a tárolóval
-attachmentBasePath.selectDir=Choose Base Directory
-attachmentBasePath.chooseNewPath.title=Confirm New Base Directory
-attachmentBasePath.chooseNewPath.message=Linked file attachments below this directory will be saved using relative paths.
+attachmentBasePath.selectDir=Base Directory kiválasztása
+attachmentBasePath.chooseNewPath.title=Az új Base Directory megerősítése
+attachmentBasePath.chooseNewPath.message=Ezen könyvtár alatti fájlcsatolmányok mentésre kerülnek a relatív útvonalak használatával.
attachmentBasePath.chooseNewPath.existingAttachments.singular=One existing attachment was found within the new base directory.
attachmentBasePath.chooseNewPath.existingAttachments.plural=%S existing attachments were found within the new base directory.
-attachmentBasePath.chooseNewPath.button=Change Base Directory Setting
+attachmentBasePath.chooseNewPath.button=A Base Directory beállításának megváltoztatása
attachmentBasePath.clearBasePath.title=Visszavonás
attachmentBasePath.clearBasePath.message=New linked file attachments will be saved using absolute paths.
attachmentBasePath.clearBasePath.existingAttachments.singular=One existing attachment within the old base directory will be converted to use an absolute path.
attachmentBasePath.clearBasePath.existingAttachments.plural=%S existing attachments within the old base directory will be converted to use absolute paths.
-attachmentBasePath.clearBasePath.button=Clear Base Directory Setting
+attachmentBasePath.clearBasePath.button=Base Directory beállításának törlése
dataDir.notFound=A Zotero adatokat tartalmazó mappa nem található.
dataDir.previousDir=Előző mappa:
@@ -112,7 +113,7 @@ dataDir.selectedDirNonEmpty.title=A mappa nem üres
dataDir.selectedDirNonEmpty.text=A kiválasztott mappa nem üres és nem tartalmaz Zotero adatokat.\n\nEnnek ellenére hozza létre a Zotero fájlokat?
dataDir.selectedDirEmpty.title=A könyvtár üres
dataDir.selectedDirEmpty.text=The directory you selected is empty. To move an existing Zotero data directory, you will need to manually move files from the existing data directory to the new location after %1$S has closed.
-dataDir.selectedDirEmpty.useNewDir=Use the new directory?
+dataDir.selectedDirEmpty.useNewDir=Az új könyvtárat használja?
dataDir.moveFilesToNewLocation=Be sure to move files from your existing Zotero data directory to the new location before reopening %1$S.
dataDir.incompatibleDbVersion.title=Inkompatibilis adatbázis
dataDir.incompatibleDbVersion.text=The currently selected data directory is not compatible with Zotero Standalone, which can share a database only with Zotero for Firefox 2.1b3 or later.\n\nUpgrade to the latest version of Zotero for Firefox first or select a different data directory for use with Zotero Standalone.
@@ -125,7 +126,7 @@ app.standalone=Zotero Standalone
app.firefox=Zotero Firefoxhoz
startupError=Hiba a Zotero indítása közben.
-startupError.databaseInUse=Your Zotero database is currently in use. Only one instance of Zotero using the same database may be opened simultaneously at this time.
+startupError.databaseInUse=A Zotero adatbázisa használatban van. Csakis egy Zotero lehet egyszerre megnyitva ugyanabban az időpontban.
startupError.closeStandalone=Ha a Zotero Standalone fut, kérem zárja be és indítsa újra a Firefoxot.
startupError.closeFirefox=Ha a Firefox a Zotero bővítménnyel fut, kérem zárja be és indítsa újra a Zotero Standalone-t.
startupError.databaseCannotBeOpened=A Zotero adatbázist nem lehet megnyitni.
@@ -148,7 +149,7 @@ date.relative.yearsAgo.multiple=%S évvel ezelőtt
pane.collections.delete.title=Gyűjtemény törlése
pane.collections.delete=A kijelölt gyűjtemény törlésének megerősítése?
-pane.collections.delete.keepItems=Items within this collection will not be deleted.
+pane.collections.delete.keepItems=Az alábbi gyűjtemény elemi nem törlődnek.
pane.collections.deleteWithItems.title=Gyűjtemény és elemek törlése
pane.collections.deleteWithItems=Biztos benne, hogy minden kijelölt gyűjtemény és elem áthelyezhető a Kukába?
@@ -194,15 +195,18 @@ tagColorChooser.maxTags=Up to %S tags in each library can have colors assigned.
pane.items.loading=Elemek listájának betöltése...
pane.items.columnChooser.moreColumns=More Columns
-pane.items.columnChooser.secondarySort=Secondary Sort (%S)
-pane.items.attach.link.uri.unrecognized=Zotero did not recognize the URI you entered. Please check the address and try again.
-pane.items.attach.link.uri.file=To attach a link to a file, please use “%S”.
+pane.items.columnChooser.secondarySort=Másodlagos adatrendezés (%S)
+pane.items.attach.link.uri.unrecognized=A Zotero nem ismerte fel a beírt URI-t. Kérem ellenőrizze a címet és próbálja újra.
+pane.items.attach.link.uri.file=Ha linket szeretne csatolni egy fájlhoz, kérem használja a “%S”-t.
pane.items.trash.title=Áthelyezés a Kukába
pane.items.trash=A Kukába helyezés megerősítése?
pane.items.trash.multiple=A Kukába helyezés megerősítése?
pane.items.delete.title=Törlés
pane.items.delete=A kijelölt elem törlésének megerősítése?
pane.items.delete.multiple=A kijelölt elemek törlésének megerősítése?
+pane.items.remove.title=Remove from Collection
+pane.items.remove=Are you sure you want to remove the selected item from this collection?
+pane.items.remove.multiple=Are you sure you want to remove the selected items from this collection?
pane.items.menu.remove=Kijelölt elem törlése
pane.items.menu.remove.multiple=Kijelölt elemek törlése
pane.items.menu.moveToTrash=Elem mozgatása a Kukába…
@@ -221,6 +225,7 @@ pane.items.menu.createParent=Szülőelem létrehozása a kijelölt elem alapján
pane.items.menu.createParent.multiple=Szülőelemek létrehozása a kijelölt elemek alapján
pane.items.menu.renameAttachments=A fájl átnevezése a szülő metaadata alapján
pane.items.menu.renameAttachments.multiple=A fájlok átnevezése a szülők metaadata alapján
+pane.items.showItemInLibrary=Show Item in Library
pane.items.letter.oneParticipant=Levél (címzett: %S)
pane.items.letter.twoParticipants=Levél (címzett: %S és %S)
@@ -516,7 +521,7 @@ db.integrityCheck.reportInForums=Bejelentheti a problémát a Zotero Fórumain.
zotero.preferences.update.updated=Frissítve
zotero.preferences.update.upToDate=Nincs frissítés
zotero.preferences.update.error=Hiba
-zotero.preferences.launchNonNativeFiles=Open PDFs and other files within %S when possible
+zotero.preferences.launchNonNativeFiles=A PDF-ek és egyéb fájlok megnyitása %S belül, amikor lehetséges
zotero.preferences.openurl.resolversFound.zero=%S linkfeloldó található
zotero.preferences.openurl.resolversFound.singular=%S linkfeloldó található
zotero.preferences.openurl.resolversFound.plural=%S linkfeloldó található
@@ -527,10 +532,10 @@ zotero.preferences.sync.purgeStorage.confirmButton=Fájlok tisztítása most
zotero.preferences.sync.purgeStorage.cancelButton=Nincs tisztítás
zotero.preferences.sync.reset.userInfoMissing=You must enter a username and password in the %S tab before using the reset options.
zotero.preferences.sync.reset.restoreFromServer=All data in this copy of Zotero will be erased and replaced with data belonging to user '%S' on the Zotero server.
-zotero.preferences.sync.reset.replaceLocalData=Replace Local Data
-zotero.preferences.sync.reset.restartToComplete=Firefox must be restarted to complete the restore process.
+zotero.preferences.sync.reset.replaceLocalData=A Local Data cseréje
+zotero.preferences.sync.reset.restartToComplete=A helyreállítási művelet befejezéséhez újra kell indítani a Firefoxot.
zotero.preferences.sync.reset.restoreToServer=All data belonging to user '%S' on the Zotero server will be erased and replaced with data from this copy of Zotero.\n\nDepending on the size of your library, there may be a delay before your data is available on the server.
-zotero.preferences.sync.reset.replaceServerData=Replace Server Data
+zotero.preferences.sync.reset.replaceServerData=A Server Data cseréje
zotero.preferences.sync.reset.fileSyncHistory=All file sync history will be cleared.\n\nAny local attachment files that do not exist on the storage server will be uploaded on the next sync.
zotero.preferences.search.rebuildIndex=Index újraépítése
@@ -559,7 +564,7 @@ zotero.preferences.search.pdf.tryAgainOrViewManualInstructions=Próbálja meg k
zotero.preferences.export.quickCopy.bibStyles=Bibliográfiai stíélusok
zotero.preferences.export.quickCopy.exportFormats=Exportálási formátumok
zotero.preferences.export.quickCopy.instructions=A Gyorsmásolás segítségével a kiválasztott hivatkozásokat a vágólapra lehet másolni a %S gyorsbillentyű lenyomásával. A hivatkozást egy tetszőleges weboldal szövegmezőjébe is be lehet másolni, ha a kijelölt hivatkozást a szövegmezőbe húzzuk.
-zotero.preferences.export.quickCopy.citationInstructions=For bibliography styles, you can copy citations or footnotes by pressing %S or holding down Shift before dragging items.
+zotero.preferences.export.quickCopy.citationInstructions=Bibliográfia-stílusokhoz, %S megnyomásával másolhat hivatkozásokat vagy lábjegyzeteket, vagy tartsa lenyomva a Shift-et az elemek áthúzáshoz.
zotero.preferences.styles.addStyle=Stílus hozzáadása
zotero.preferences.advanced.resetTranslatorsAndStyles=Fordítók és stílusok visszaállítása
@@ -571,7 +576,7 @@ zotero.preferences.advanced.resetStyles.changesLost=Az új vagy módosított st
zotero.preferences.advanced.debug.title=A hibakeresés eredménye elküldve
zotero.preferences.advanced.debug.sent=A hibakeresés eredménye elküldve a Zotero szervernek\n\nA hibaazonosító D%S.
-zotero.preferences.advanced.debug.error=An error occurred sending debug output.
+zotero.preferences.advanced.debug.error=A hibajegy küldésekor hiba történt.
dragAndDrop.existingFiles=Az alábbi fájlok már léteznek a célmappában, ezért nem kerültek bemásolásra.
dragAndDrop.filesNotFound=Az alábbi fájlok nem találhatóak, ezért nem lehet őket másolni:
@@ -720,19 +725,19 @@ integration.replace=Eltávolítja ezt a Zotero mezőt?
integration.missingItem.single=A kiemelt hivatkozás már nem létezik a Zotero adatbázisában. Szeretné helyettesíteni egy másik elemmel?
integration.missingItem.multiple=Item %1$S in the highlighted citation no longer exists in your Zotero database. Do you want to select a substitute item?
integration.missingItem.description=Clicking "No" will delete the field codes for citations containing this item, preserving the citation text but deleting it from your bibliography.
-integration.removeCodesWarning=Removing field codes will prevent Zotero from updating citations and bibliographies in this document. Are you sure you want to continue?
+integration.removeCodesWarning=A mezőkódok eltávolítása megakadályozza, hogy a Zotero frissítse a hivatkozásokat és bibliográfiákat ebben a dokumentumban. Biztos benne, hogy folytatni akarja?
integration.upgradeWarning=Your document must be permanently upgraded in order to work with Zotero 2.0b7 or later. It is recommended that you make a backup before proceeding. Are you sure you want to continue?
integration.error.newerDocumentVersion=Your document was created with a newer version of Zotero (%1$S) than the currently installed version (%1$S). Please upgrade Zotero before editing this document.
integration.corruptField=The Zotero field code corresponding to this citation, which tells Zotero which item in your library this citation represents, has been corrupted. Would you like to reselect the item?
-integration.corruptField.description=Clicking "No" will delete the field codes for citations containing this item, preserving the citation text but potentially deleting it from your bibliography.
+integration.corruptField.description=Ha a "Nem"-re kattint, törli azoknak a hivatkozásoknak a mezőkódjait, amelyek ezeket az elemeket tartalmazzák, a hivatkozott szöveg megmarad, de törlődhet a bibliográfiából.
integration.corruptBibliography=A bibliográfiájának Zotero mezőkódja hibás. Szeretné ha a Zotero javítaná a mezőkódot és generálna egy új bibliográfiát?
-integration.corruptBibliography.description=All items cited in the text will appear in the new bibliography, but modifications you made in the "Edit Bibliography" dialog will be lost.
+integration.corruptBibliography.description=Az összes hivatkozott elem megjelenik az új bibliográfiában, de a "Bibliográfia szerkesztő" módosításai elvesznek.
integration.citationChanged=Módosította ezt a hivatkozást, amióta a Zotero generálta. Megtartja a módosításokat és megakadályozza a jövőbeli frissítésüket?
integration.citationChanged.description=Kattintson az „Igen” gombra, ha nem akarja, hogy a Zotero frissítse ezt a hivatkozást további hivatkozások hozzáadásakor, stílusváltáskor, vagy az elem módosításakor. Ha a „Nem”-re kattint elvesznek a módosításai.
integration.citationChanged.edit=Módosította ezt a hivatkozást, amióta a Zotero generálta. A szerkesztéssel elvesznek a módosítások. Folytatja?
styles.install.title=Stílus telepítése
-styles.install.unexpectedError=An unexpected error occurred while installing "%1$S"
+styles.install.unexpectedError=A "%1$S" telepítésekor váratlan hiba történt.
styles.installStyle=A "%1$S" stílus importálása a %2$S-ból?
styles.updateStyle=A "%1$S" stílus lecserélése %2$S-re a %3$S-ból?
styles.installed=A "%1$S" stílus importálása sikerült.
@@ -746,7 +751,7 @@ styles.abbreviations.title=Load Abbreviations
styles.abbreviations.parseError=The abbreviations file "%1$S" is not valid JSON.
styles.abbreviations.missingInfo=The abbreviations file "%1$S" does not specify a complete info block.
-sync.sync=Sync
+sync.sync=Szinkronizálás
sync.cancel=Szinkronizáció elvetése
sync.openSyncPreferences=Szinkronizációs beállítások megnyitása
sync.resetGroupAndSync=Csoport és szinkronizáció visszaállítása
@@ -762,9 +767,9 @@ sync.error.invalidLogin=Hibás felhasználónév vagy jelszó
sync.error.invalidLogin.text=The Zotero sync server did not accept your username and password.\n\nPlease check that you have entered your zotero.org login information correctly in the Zotero sync preferences.
sync.error.enterPassword=Adja meg a jelszót.
sync.error.loginManagerInaccessible=A Zotero nem fér hozzá a bejelentkezési adatokhoz.
-sync.error.checkMasterPassword=If you are using a master password in %S, make sure you have entered it successfully.
+sync.error.checkMasterPassword=Ha mesterjelszót használ a %S-ban, győződjön meg róla, hogy sikeresen belépett-e.
sync.error.corruptedLoginManager=This could also be due to a corrupted %1$S login manager database. To check, close %1$S, remove signons.sqlite from your %1$S profile directory, and re-enter your Zotero login information in the Sync pane of the Zotero preferences.
-sync.error.loginManagerCorrupted1=Zotero cannot access your login information, possibly due to a corrupted %S login manager database.
+sync.error.loginManagerCorrupted1=A Zotero nem tud csatlakozni a fiókadataival, valószínűleg a hibás %S belépő menedzser adatbázis miatt.
sync.error.loginManagerCorrupted2=Close %1$S, remove signons.sqlite from your %2$S profile directory, and re-enter your Zotero login information in the Sync pane of the Zotero preferences.
sync.error.syncInProgress=A szinkronizáció már folyamatban.
sync.error.syncInProgress.wait=Várja meg, amíg a szinkronizáció befejeződik vagy indítsa újra a Firefoxot.
@@ -775,25 +780,25 @@ sync.error.manualInterventionRequired=Az automatikus szinkronizáció hibát tal
sync.error.clickSyncIcon=Kattintson a szinkronizációs ikonra a szinkronizáció kézi indításához.
sync.error.invalidClock=The system clock is set to an invalid time. You will need to correct this to sync with the Zotero server.
sync.error.sslConnectionError=SSL csatlakozási hiba
-sync.error.checkConnection=Error connecting to server. Check your Internet connection.
-sync.error.emptyResponseServer=Empty response from server.
+sync.error.checkConnection=Hiba a szerverhez való csatlakozáskor. Ellenőrizze az internetkapcsolatot.
+sync.error.emptyResponseServer=Üres válasz a szervertől.
sync.error.invalidCharsFilename=The filename '%S' contains invalid characters.\n\nRename the file and try again. If you rename the file via the OS, you will need to relink it in Zotero.
sync.lastSyncWithDifferentAccount=This Zotero database was last synced with a different zotero.org account ('%1$S') from the current one ('%2$S').
-sync.localDataWillBeCombined=If you continue, local Zotero data will be combined with data from the '%S' account stored on the server.
+sync.localDataWillBeCombined=Amennyiben folytatja, a helyi Zotero adatok keverednek a szerveren tárolt '%S' fiókból származó adatokkal.
sync.localGroupsWillBeRemoved1=Local groups, including any with changed items, will also be removed.
sync.avoidCombiningData=To avoid combining or losing data, revert to the '%S' account or use the Reset options in the Sync pane of the Zotero preferences.
sync.localGroupsWillBeRemoved2=If you continue, local groups, including any with changed items, will be removed and replaced with groups linked to the '%1$S' account.\n\nTo avoid losing local changes to groups, be sure you have synced with the '%2$S' account before syncing with the '%1$S' account.
-sync.conflict.autoChange.alert=One or more locally deleted Zotero %S have been modified remotely since the last sync.
-sync.conflict.autoChange.log=A Zotero %S has changed both locally and remotely since the last sync:
-sync.conflict.remoteVersionsKept=The remote versions have been kept.
-sync.conflict.remoteVersionKept=The remote version has been kept.
-sync.conflict.localVersionsKept=The local versions have been kept.
-sync.conflict.localVersionKept=The local version has been kept.
-sync.conflict.recentVersionsKept=The most recent versions have been kept.
-sync.conflict.recentVersionKept=The most recent version, '%S', has been kept.
-sync.conflict.viewErrorConsole=View the %S Error Console for the full list of such changes.
+sync.conflict.autoChange.alert=Egy vagy több helyileg törölt Zotero %S távolról módosítottak a legutóbbi szinkronizálás óta.
+sync.conflict.autoChange.log=A Zotero %S helyileg és távolról is módosították a legutóbbi szinkronizálás óta.
+sync.conflict.remoteVersionsKept=A távoli verziók megtartásra kerültek.
+sync.conflict.remoteVersionKept=A távoli verzió megtartásra került.
+sync.conflict.localVersionsKept=A helyi verziók megtartásra kerültek.
+sync.conflict.localVersionKept=A helyi verzió megtartásra került.
+sync.conflict.recentVersionsKept=A legújabb verziók megtartásra kerültek.
+sync.conflict.recentVersionKept=A legújabb verziója a '%S' megtartásra került.
+sync.conflict.viewErrorConsole=Nézze meg a %S Error Console a hasonló változások teljes listájáért.
sync.conflict.localVersion=Helyi verzió: %S
sync.conflict.remoteVersion=Távoli verzió: %S
sync.conflict.deleted=[törölve]
@@ -806,8 +811,8 @@ sync.conflict.tag.addedToLocal=Hozzá lett adva a következő helyi elemekhez:
sync.conflict.fileChanged=Az alábbi fájl megváltozott több helyen.
sync.conflict.itemChanged=Az alábbi elem megváltozott több helyen.
-sync.conflict.chooseVersionToKeep=Choose the version you would like to keep, and then click %S.
-sync.conflict.chooseThisVersion=Choose this version
+sync.conflict.chooseVersionToKeep=Válassza ki a megtartani kívánt verziót, majd kattintson a %S gombra.
+sync.conflict.chooseThisVersion=Válassza ezt a verziót
sync.status.notYetSynced=Nincs szinkronizálva
sync.status.lastSync=Utoljára szinkronizálva:
@@ -820,7 +825,7 @@ sync.status.syncingFiles=Fájlok szinkronizálása
sync.fulltext.upgradePrompt.title=Új: Teljes szöveg szinkronizálása
sync.fulltext.upgradePrompt.text=Zotero can now sync the full-text content of files in your Zotero libraries with zotero.org and other linked devices, allowing you to easily search for your files wherever you are. The full-text content of your files will not be shared publicly.
-sync.fulltext.upgradePrompt.changeLater=You can change this setting later from the Sync pane of the Zotero preferences.
+sync.fulltext.upgradePrompt.changeLater=Később megváltoztathatja ezt a beállítást a Zotero beállítások Szinkronizáló paneljén.
sync.fulltext.upgradePrompt.enable=Szinkronizálja a teljes szöveget
sync.storage.mbRemaining=%SMB remaining
@@ -883,7 +888,7 @@ sync.longTagFixer.deleteTag=Címke törlése
proxies.multiSite=Multi-Site
proxies.error=Érvénytelen Proxy beállítások
proxies.error.scheme.noHTTP=Az érvényes proxy sémának "http://" vagy "https//" formával kell kezdődnie.
-proxies.error.host.invalid=You must enter a full hostname for the site served by this proxy (e.g., jstor.org).
+proxies.error.host.invalid=A kiszolgáló teljes nevét be kell írnia a proxy által kiszolgált oldalhoz (pl. jstor.org).
proxies.error.scheme.noHost=A multi-site proxy scheme must contain the host variable (%h).
proxies.error.scheme.noPath=A valid proxy scheme must contain either the path variable (%p) or the directory and filename variables (%d and %f).
proxies.error.host.proxyExists=You have already defined another proxy for the host %1$S.
@@ -901,7 +906,7 @@ recognizePDF.couldNotRead=Nem lehet szöveget olvasni a PDF-ből.
recognizePDF.noMatches=Nincs egyező hivatkozás
recognizePDF.fileNotFound=A fájl nem található
recognizePDF.limit=A Google Scholar túlterhelt. Próbálkozzon később.
-recognizePDF.error=An unexpected error occurred.
+recognizePDF.error=Váratlan hiba történt.
recognizePDF.stopped=Törölve
recognizePDF.complete.label=A metaadat visszaállítás befejeződött
recognizePDF.cancelled.label=A metaadat visszaállítás sikertelen
@@ -917,8 +922,8 @@ rtfScan.saveTitle=Válasszon egy helyet, ahová menteni szeretné a formázott f
rtfScan.scannedFileSuffix=(Vizsgálat)
-file.accessError.theFile=The file '%S'
-file.accessError.aFile=A file
+file.accessError.theFile=A '%S' fájl
+file.accessError.aFile=Egy fájl
file.accessError.cannotBe=nem lehet
file.accessError.created=létrehozni
file.accessError.updated=frissítve
@@ -930,7 +935,7 @@ file.accessError.showParentDir=Szülőkönyvtár mutatása
lookup.failure.title=A keresés nem sikerült.
lookup.failure.description=Zotero could not find a record for the specified identifier. Please verify the identifier and try again.
-lookup.failureToID.description=Zotero could not find any identifiers in your input. Please verify your input and try again.
+lookup.failureToID.description=A Zotero nem talált azonosítót az Ön bevitelénél. Kérem ellenőrizze a bevitelt és próbálja újra.
locate.online.label=Online megtekintés
locate.online.tooltip=Az elem elérése online
@@ -956,15 +961,24 @@ standalone.addonInstallationFailed.body=The add-on "%S" could not be installed.
standalone.rootWarning=You appear to be running Zotero Standalone as root. This is insecure and may prevent Zotero from functioning when launched from your user account.\n\nIf you wish to install an automatic update, modify the Zotero program directory to be writeable by your user account.
standalone.rootWarning.exit=Kilépés
standalone.rootWarning.continue=Folytatás
-standalone.updateMessage=A recommended update is available, but you do not have permission to install it. To update automatically, modify the Zotero program directory to be writeable by your user account.
+standalone.updateMessage=Elérhető egy ajánlott frissítés, de nincs jogosultsága a telepítéséhez. Az automatikus frissítéshez módosítsa a Zotero programkönyvtárát, hogy írható legyen az Ön felhasználói fiókjából is.
connector.error.title=Zotero Connector hiba
connector.standaloneOpen=Your database cannot be accessed because Zotero Standalone is currently open. Please view your items in Zotero Standalone.
-connector.loadInProgress=Zotero Standalone was launched but is not accessible. If you experienced an error opening Zotero Standalone, restart Firefox.
+connector.loadInProgress=A Zotero Standalone-t elindult, de nem elérhető. Ha hibát tapasztalt a Zotero Standalone indításakor, indítsa újra a Firefoxot.
firstRunGuidance.saveIcon=Zotero has found a reference on this page. Click this icon in the address bar to save the reference to your Zotero library.
firstRunGuidance.authorMenu=Zotero lets you specify editors and translators, too. You can turn an author into an editor or translator by selecting from this menu.
firstRunGuidance.quickFormat=Type a title or author to search for a reference.\n\nAfter you've made your selection, click the bubble or press Ctrl-↓ to add page numbers, prefixes, or suffixes. You can also include a page number along with your search terms to add it directly.\n\nYou can edit citations directly in the word processor document.
firstRunGuidance.quickFormatMac=Type a title or author to search for a reference.\n\nAfter you've made your selection, click the bubble or press Cmd-↓ to add page numbers, prefixes, or suffixes. You can also include a page number along with your search terms to add it directly.\n\nYou can edit citations directly in the word processor document.
firstRunGuidance.toolbarButton.new=A Zotero megnyitásához kattintásához kattintson ide, vagy használja a %S billentyűparancsot.
-firstRunGuidance.toolbarButton.upgrade=The Zotero icon can now be found in the Firefox toolbar. Click the icon to open Zotero, or use the %S keyboard shortcut.
+firstRunGuidance.toolbarButton.upgrade=A Zotero ikon mostantól a Firefox eszköztárán található. A Zotero megnyitásához kattintson az ikonra, vagy használja a %S gyorsbillentyűt.
+
+styles.bibliography=Bibliography
+styles.editor.save=Save Citation Style
+styles.editor.warning.noItems=No items selected in Zotero.
+styles.editor.warning.parseError=Error parsing style:
+styles.editor.warning.renderError=Error generating citations and bibliography:
+styles.editor.output.individualCitations=Individual Citations
+styles.editor.output.singleCitation=Single Citation (with position "first")
+styles.preview.instructions=Select one or more items in Zotero and click the "Refresh" button to see how these items are rendered by the installed CSL citation styles.
diff --git a/chrome/locale/id-ID/zotero/csledit.dtd b/chrome/locale/id-ID/zotero/csledit.dtd
new file mode 100644
index 000000000..289272aba
--- /dev/null
+++ b/chrome/locale/id-ID/zotero/csledit.dtd
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/chrome/locale/id-ID/zotero/cslpreview.dtd b/chrome/locale/id-ID/zotero/cslpreview.dtd
new file mode 100644
index 000000000..04396166e
--- /dev/null
+++ b/chrome/locale/id-ID/zotero/cslpreview.dtd
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/chrome/locale/id-ID/zotero/preferences.dtd b/chrome/locale/id-ID/zotero/preferences.dtd
index 751d926f7..9838949e3 100644
--- a/chrome/locale/id-ID/zotero/preferences.dtd
+++ b/chrome/locale/id-ID/zotero/preferences.dtd
@@ -12,8 +12,6 @@
-
-
@@ -125,8 +123,6 @@
-
-
@@ -164,6 +160,7 @@
+
@@ -204,6 +201,6 @@
-
-
+
+
diff --git a/chrome/locale/id-ID/zotero/zotero.dtd b/chrome/locale/id-ID/zotero/zotero.dtd
index 4ef68e60b..470f3e9b0 100644
--- a/chrome/locale/id-ID/zotero/zotero.dtd
+++ b/chrome/locale/id-ID/zotero/zotero.dtd
@@ -6,6 +6,8 @@
+
+
@@ -123,7 +125,7 @@
-
+
@@ -288,5 +290,3 @@
-
-
diff --git a/chrome/locale/id-ID/zotero/zotero.properties b/chrome/locale/id-ID/zotero/zotero.properties
index d813f147d..e0be5f7e9 100644
--- a/chrome/locale/id-ID/zotero/zotero.properties
+++ b/chrome/locale/id-ID/zotero/zotero.properties
@@ -42,6 +42,7 @@ general.create=Buat
general.delete=Delete
general.moreInformation=More Information
general.seeForMoreInformation=Lihat %S untuk informasi lebih lanjut.
+general.open=Open %S
general.enable=Bolehkan
general.disable=Tidakbolehkan
general.remove=Buang
@@ -203,6 +204,9 @@ pane.items.trash.multiple=Apakah Anda yakin ingin memindahkan item-item terpilih
pane.items.delete.title=Hapus
pane.items.delete=Apakah Anda yakin ingin menghapus item terpilih?
pane.items.delete.multiple=Apakah Anda yakin ingin menghapus item-item terpilih?
+pane.items.remove.title=Remove from Collection
+pane.items.remove=Are you sure you want to remove the selected item from this collection?
+pane.items.remove.multiple=Are you sure you want to remove the selected items from this collection?
pane.items.menu.remove=Buang Item Terpilih
pane.items.menu.remove.multiple=Buang Item-item Terpilih
pane.items.menu.moveToTrash=Move Item to Trash…
@@ -221,6 +225,7 @@ pane.items.menu.createParent=Buat Item Induk dari Item Terpilih
pane.items.menu.createParent.multiple=Buat Item-item Induk dari Item-item Terpilih
pane.items.menu.renameAttachments=Namai Ulang Berkas dari Metadata Induk
pane.items.menu.renameAttachments.multiple=Namai Ulang Berkas-berkas dari Metadata Induk
+pane.items.showItemInLibrary=Show Item in Library
pane.items.letter.oneParticipant=Surat kepada %S
pane.items.letter.twoParticipants=Surat kepada %S dan %S
@@ -968,3 +973,12 @@ firstRunGuidance.quickFormat=Ketikkan judul atau nama penulis untuk mencari sebu
firstRunGuidance.quickFormatMac=Ketikkan judul atau nama penulis untuk mencari sebuah referensi.\n\nSetelah Anda melakukannya, klik pada gelembung atau tekan Cmd-\u2193 untuk menambahkan nomor halaman, prefiks, atau sufiks. Anda juga dapat memasukkan nomor halaman bersamaan dengan istilah pencarian untuk menambahkannya secara langsung.\n\nAnda dapat mengedit sitasi secara langsung di dalam dokumn pengolah kata.
firstRunGuidance.toolbarButton.new=Click here to open Zotero, or use the %S keyboard shortcut.
firstRunGuidance.toolbarButton.upgrade=The Zotero icon can now be found in the Firefox toolbar. Click the icon to open Zotero, or use the %S keyboard shortcut.
+
+styles.bibliography=Bibliography
+styles.editor.save=Save Citation Style
+styles.editor.warning.noItems=No items selected in Zotero.
+styles.editor.warning.parseError=Error parsing style:
+styles.editor.warning.renderError=Error generating citations and bibliography:
+styles.editor.output.individualCitations=Individual Citations
+styles.editor.output.singleCitation=Single Citation (with position "first")
+styles.preview.instructions=Select one or more items in Zotero and click the "Refresh" button to see how these items are rendered by the installed CSL citation styles.
diff --git a/chrome/locale/is-IS/zotero/csledit.dtd b/chrome/locale/is-IS/zotero/csledit.dtd
new file mode 100644
index 000000000..289272aba
--- /dev/null
+++ b/chrome/locale/is-IS/zotero/csledit.dtd
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/chrome/locale/is-IS/zotero/cslpreview.dtd b/chrome/locale/is-IS/zotero/cslpreview.dtd
new file mode 100644
index 000000000..04396166e
--- /dev/null
+++ b/chrome/locale/is-IS/zotero/cslpreview.dtd
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/chrome/locale/is-IS/zotero/preferences.dtd b/chrome/locale/is-IS/zotero/preferences.dtd
index 824298024..f1b72c0ed 100644
--- a/chrome/locale/is-IS/zotero/preferences.dtd
+++ b/chrome/locale/is-IS/zotero/preferences.dtd
@@ -12,8 +12,6 @@
-
-
@@ -125,8 +123,6 @@
-
-
@@ -164,6 +160,7 @@
+
@@ -204,6 +201,6 @@
-
-
+
+
diff --git a/chrome/locale/is-IS/zotero/zotero.dtd b/chrome/locale/is-IS/zotero/zotero.dtd
index 15226a87a..36d3f5eed 100644
--- a/chrome/locale/is-IS/zotero/zotero.dtd
+++ b/chrome/locale/is-IS/zotero/zotero.dtd
@@ -6,6 +6,8 @@
+
+
@@ -123,7 +125,7 @@
-
+
@@ -288,5 +290,3 @@
-
-
diff --git a/chrome/locale/is-IS/zotero/zotero.properties b/chrome/locale/is-IS/zotero/zotero.properties
index a1c74506b..139218fd4 100644
--- a/chrome/locale/is-IS/zotero/zotero.properties
+++ b/chrome/locale/is-IS/zotero/zotero.properties
@@ -42,6 +42,7 @@ general.create=Skapa
general.delete=Eyða
general.moreInformation=Frekari upplýsingar
general.seeForMoreInformation=Sjá %S til frekari upplýsinga
+general.open=Open %S
general.enable=Virkja
general.disable=Lama
general.remove=Fjarlægja
@@ -203,6 +204,9 @@ pane.items.trash.multiple=Ertu viss um að þú viljir færa valdar færslur í
pane.items.delete.title=Eyða
pane.items.delete=Viltu örugglega eyða valdri færslu?
pane.items.delete.multiple=Viltu örugglega eyða völdum færslum?
+pane.items.remove.title=Remove from Collection
+pane.items.remove=Are you sure you want to remove the selected item from this collection?
+pane.items.remove.multiple=Are you sure you want to remove the selected items from this collection?
pane.items.menu.remove=Eyða valdri færslu
pane.items.menu.remove.multiple=Eyða völdum færslum
pane.items.menu.moveToTrash=Henda færslu í ruslatunnu...
@@ -221,6 +225,7 @@ pane.items.menu.createParent=Búa til móðurfærslu
pane.items.menu.createParent.multiple=Búa til móðurfærslur
pane.items.menu.renameAttachments=Endurnefna skrá í samræmi við lýsigögn sem fylgja skránni
pane.items.menu.renameAttachments.multiple=Endurnefna skrár í samræmi við lýsigögn sem fylgja skránum
+pane.items.showItemInLibrary=Show Item in Library
pane.items.letter.oneParticipant=Bréf til %S
pane.items.letter.twoParticipants=Bréf til %S og %S
@@ -968,3 +973,12 @@ firstRunGuidance.quickFormat=Sláðu inn titil eða höfund til að leita að he
firstRunGuidance.quickFormatMac=Sláðu inn titil eða höfund til að leita að heimild.\n\nEftir val þitt, ýttu þá á belginn eða á Ctrl-↓ til að bæta við blaðsíðunúmerum, forskeytum eða viðskeytum. Þú getur einnig tilgreint síðunúmer í leitinni til að bæta því strax við.\n\nÞú getur breytt tilvitnunum þar sem þær standa í ritvinnsluskjalinu.
firstRunGuidance.toolbarButton.new=Ýttu hér til að opna Zotero, eða notaðu %S flýtitakka.
firstRunGuidance.toolbarButton.upgrade=Zotero táknið mun nú sjást á Firefox tólaslánni. Ýttu á táknið til að opna Zotero eða notaðu %S flýtitakka.
+
+styles.bibliography=Bibliography
+styles.editor.save=Save Citation Style
+styles.editor.warning.noItems=No items selected in Zotero.
+styles.editor.warning.parseError=Error parsing style:
+styles.editor.warning.renderError=Error generating citations and bibliography:
+styles.editor.output.individualCitations=Individual Citations
+styles.editor.output.singleCitation=Single Citation (with position "first")
+styles.preview.instructions=Select one or more items in Zotero and click the "Refresh" button to see how these items are rendered by the installed CSL citation styles.
diff --git a/chrome/locale/it-IT/zotero/csledit.dtd b/chrome/locale/it-IT/zotero/csledit.dtd
new file mode 100644
index 000000000..289272aba
--- /dev/null
+++ b/chrome/locale/it-IT/zotero/csledit.dtd
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/chrome/locale/it-IT/zotero/cslpreview.dtd b/chrome/locale/it-IT/zotero/cslpreview.dtd
new file mode 100644
index 000000000..04396166e
--- /dev/null
+++ b/chrome/locale/it-IT/zotero/cslpreview.dtd
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/chrome/locale/it-IT/zotero/preferences.dtd b/chrome/locale/it-IT/zotero/preferences.dtd
index a42bf268a..1aa21eb8f 100644
--- a/chrome/locale/it-IT/zotero/preferences.dtd
+++ b/chrome/locale/it-IT/zotero/preferences.dtd
@@ -12,8 +12,6 @@
-
-
@@ -125,8 +123,6 @@
-
-
@@ -164,6 +160,7 @@
+
@@ -204,6 +201,6 @@
-
-
+
+
diff --git a/chrome/locale/it-IT/zotero/zotero.dtd b/chrome/locale/it-IT/zotero/zotero.dtd
index bbc479d8e..8afd8ec74 100644
--- a/chrome/locale/it-IT/zotero/zotero.dtd
+++ b/chrome/locale/it-IT/zotero/zotero.dtd
@@ -6,6 +6,8 @@
+
+
@@ -123,7 +125,7 @@
-
+
@@ -288,5 +290,3 @@
-
-
diff --git a/chrome/locale/it-IT/zotero/zotero.properties b/chrome/locale/it-IT/zotero/zotero.properties
index 51fbc817c..1100527a0 100644
--- a/chrome/locale/it-IT/zotero/zotero.properties
+++ b/chrome/locale/it-IT/zotero/zotero.properties
@@ -42,6 +42,7 @@ general.create=Crea
general.delete=Delete
general.moreInformation=More Information
general.seeForMoreInformation=Vedi %S per maggiori informazioni
+general.open=Open %S
general.enable=Attiva
general.disable=Disattiva
general.remove=Rimuovi
@@ -203,6 +204,9 @@ pane.items.trash.multiple=Spostare gli elementi selezionati nel Cestino?
pane.items.delete.title=Eliminazione elemento
pane.items.delete=Eliminare l'elemento selezionato?
pane.items.delete.multiple=Eliminare gli elementi selezionati?
+pane.items.remove.title=Remove from Collection
+pane.items.remove=Are you sure you want to remove the selected item from this collection?
+pane.items.remove.multiple=Are you sure you want to remove the selected items from this collection?
pane.items.menu.remove=Rimuovi l'elemento selezionato
pane.items.menu.remove.multiple=Rimuovi gli elementi selezionati
pane.items.menu.moveToTrash=Move Item to Trash…
@@ -221,6 +225,7 @@ pane.items.menu.createParent=Crea elemento genitore dall'elemento selezionato
pane.items.menu.createParent.multiple=Crea elementi genitore dagli elementi selezionati
pane.items.menu.renameAttachments=Rinominare il file in base ai metadati del genitore
pane.items.menu.renameAttachments.multiple=Rinominare i file in base ai metadati del genitore
+pane.items.showItemInLibrary=Show Item in Library
pane.items.letter.oneParticipant=Lettera a %S
pane.items.letter.twoParticipants=Lettera a %S e %S
@@ -968,3 +973,12 @@ firstRunGuidance.quickFormat=Digitare un titolo o un autore per cercare un rifer
firstRunGuidance.quickFormatMac=Digitare un titolo o un autore per cercare un riferimento bibliografico.\n\nDopo aver effettuato una selezione cliccare la bolla o premere Cmd-\u2193 per aggiungere i numeri di pagina, prefissi o suffissi. È possibile includere un numero di pagina nei termini di ricerca per aggiungerlo direttamente.\n\nÈ possibile modificare le citazioni direttamente nel documento dell'elaboratore di testi.
firstRunGuidance.toolbarButton.new=Click here to open Zotero, or use the %S keyboard shortcut.
firstRunGuidance.toolbarButton.upgrade=The Zotero icon can now be found in the Firefox toolbar. Click the icon to open Zotero, or use the %S keyboard shortcut.
+
+styles.bibliography=Bibliography
+styles.editor.save=Save Citation Style
+styles.editor.warning.noItems=No items selected in Zotero.
+styles.editor.warning.parseError=Error parsing style:
+styles.editor.warning.renderError=Error generating citations and bibliography:
+styles.editor.output.individualCitations=Individual Citations
+styles.editor.output.singleCitation=Single Citation (with position "first")
+styles.preview.instructions=Select one or more items in Zotero and click the "Refresh" button to see how these items are rendered by the installed CSL citation styles.
diff --git a/chrome/locale/ja-JP/zotero/csledit.dtd b/chrome/locale/ja-JP/zotero/csledit.dtd
new file mode 100644
index 000000000..289272aba
--- /dev/null
+++ b/chrome/locale/ja-JP/zotero/csledit.dtd
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/chrome/locale/ja-JP/zotero/cslpreview.dtd b/chrome/locale/ja-JP/zotero/cslpreview.dtd
new file mode 100644
index 000000000..04396166e
--- /dev/null
+++ b/chrome/locale/ja-JP/zotero/cslpreview.dtd
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/chrome/locale/ja-JP/zotero/preferences.dtd b/chrome/locale/ja-JP/zotero/preferences.dtd
index 603b43b58..1299f102e 100644
--- a/chrome/locale/ja-JP/zotero/preferences.dtd
+++ b/chrome/locale/ja-JP/zotero/preferences.dtd
@@ -12,8 +12,6 @@
-
-
@@ -125,8 +123,6 @@
-
-
@@ -164,6 +160,7 @@
+
@@ -204,6 +201,6 @@
-
-
+
+
diff --git a/chrome/locale/ja-JP/zotero/zotero.dtd b/chrome/locale/ja-JP/zotero/zotero.dtd
index 39e855d67..57ac796b1 100644
--- a/chrome/locale/ja-JP/zotero/zotero.dtd
+++ b/chrome/locale/ja-JP/zotero/zotero.dtd
@@ -6,6 +6,8 @@
+
+
@@ -123,7 +125,7 @@
-
+
@@ -285,8 +287,6 @@
-
-
-
-
-
+
+
+
diff --git a/chrome/locale/ja-JP/zotero/zotero.properties b/chrome/locale/ja-JP/zotero/zotero.properties
index 63b7a5882..03028949f 100644
--- a/chrome/locale/ja-JP/zotero/zotero.properties
+++ b/chrome/locale/ja-JP/zotero/zotero.properties
@@ -42,6 +42,7 @@ general.create=作成
general.delete=削除する
general.moreInformation=さらに詳しく
general.seeForMoreInformation=さらに詳しくは、%S を調べてみてください。
+general.open=Open %S
general.enable=有効化
general.disable=無効化
general.remove=取り除く
@@ -195,14 +196,17 @@ tagColorChooser.maxTags=各ライブラリ内につき、 最大 %S 個のタグ
pane.items.loading=アイテムリストを読み込んでいます...
pane.items.columnChooser.moreColumns=列を増やす
pane.items.columnChooser.secondarySort=二番目の並び順 (%S)
-pane.items.attach.link.uri.unrecognized=Zotero did not recognize the URI you entered. Please check the address and try again.
-pane.items.attach.link.uri.file=To attach a link to a file, please use “%S”.
+pane.items.attach.link.uri.unrecognized=Zoteroはあなたが入力したURIを認識できませんでした。アドレスを確認してもう一度お試しください。
+pane.items.attach.link.uri.file=ファイルへのリンクを添付するには “%S” をご使用ください。
pane.items.trash.title=ゴミ箱に移動する
pane.items.trash=選択されたアイテムをゴミ箱に移動してよろしいですか?
pane.items.trash.multiple=選択されたアイテムをゴミ箱に移動してよろしいですか?
pane.items.delete.title=削除
pane.items.delete=選択されたアイテムを削除してよろしいですか?
pane.items.delete.multiple=選択されたアイテムを削除してよろしいですか?
+pane.items.remove.title=Remove from Collection
+pane.items.remove=Are you sure you want to remove the selected item from this collection?
+pane.items.remove.multiple=Are you sure you want to remove the selected items from this collection?
pane.items.menu.remove=選択されたアイテムをコレクションから除外する
pane.items.menu.remove.multiple=選択されたアイテムをコレクションから除外する
pane.items.menu.moveToTrash=アイテムをゴミ箱に入れる...
@@ -221,6 +225,7 @@ pane.items.menu.createParent=選択されたアイテムから親アイテムを
pane.items.menu.createParent.multiple=選択されたアイテムから親アイテムを作成する
pane.items.menu.renameAttachments=親メータデータからファイル名を変更する
pane.items.menu.renameAttachments.multiple=親メータデータからファイル名を変更する
+pane.items.showItemInLibrary=ライブラリの中のアイテムを表示する
pane.items.letter.oneParticipant=%S への手紙
pane.items.letter.twoParticipants=%S and %S への手紙
@@ -968,3 +973,12 @@ firstRunGuidance.quickFormat=題名か著者名を入力して文献を探して
firstRunGuidance.quickFormatMac=題名か著者名を入力して文献を探してください。\n\n選択が完了したら、必要に応じて、泡をクリックするか Cmd-\u2193を押して、ページ番号、接頭辞、接尾辞を追加してください。検索語句にページ番号を含めれば、ページ番号を直接追加することもできます。\n\n出典表記はワードプロセッサ文書中で直接編集することが可能です。
firstRunGuidance.toolbarButton.new=ここをクリックしてZoteroを開くか、%S のキーボードショートカットを使用してください
firstRunGuidance.toolbarButton.upgrade=Zotero アイコンは Firefox ツールバーに表示されます。アイコンをクリックしてZoteroを起動するか、%S のキーボードショートカットを使用してください
+
+styles.bibliography=参考文献目録
+styles.editor.save=引用スタイルを保存する
+styles.editor.warning.noItems=Zoteroのアイテムが選択されていません。
+styles.editor.warning.parseError=スタイルの文法エラー:
+styles.editor.warning.renderError=出典表記と参考文献目録の生成時にエラー
+styles.editor.output.individualCitations=個別の出典表記
+styles.editor.output.singleCitation=単一の出典表記 (with position "first")
+styles.preview.instructions=一つ以上のアイテムをZotero内で選択し、"再読み込み"ボタンをクリックして、それらのアイテムがインストール済みのCSL引用スタイルによってどのように表示されるかを御覧ください。
diff --git a/chrome/locale/km/zotero/csledit.dtd b/chrome/locale/km/zotero/csledit.dtd
new file mode 100644
index 000000000..289272aba
--- /dev/null
+++ b/chrome/locale/km/zotero/csledit.dtd
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/chrome/locale/km/zotero/cslpreview.dtd b/chrome/locale/km/zotero/cslpreview.dtd
new file mode 100644
index 000000000..04396166e
--- /dev/null
+++ b/chrome/locale/km/zotero/cslpreview.dtd
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/chrome/locale/km/zotero/preferences.dtd b/chrome/locale/km/zotero/preferences.dtd
index 471bf4aeb..4737a1a2d 100644
--- a/chrome/locale/km/zotero/preferences.dtd
+++ b/chrome/locale/km/zotero/preferences.dtd
@@ -12,8 +12,6 @@
-
-
@@ -125,8 +123,6 @@
-
-
@@ -164,6 +160,7 @@
+
@@ -204,6 +201,6 @@
-
-
+
+
diff --git a/chrome/locale/km/zotero/zotero.dtd b/chrome/locale/km/zotero/zotero.dtd
index c1f092f9a..209d80854 100644
--- a/chrome/locale/km/zotero/zotero.dtd
+++ b/chrome/locale/km/zotero/zotero.dtd
@@ -6,6 +6,8 @@
+
+
@@ -123,7 +125,7 @@
-
+
@@ -288,5 +290,3 @@
-
-
diff --git a/chrome/locale/km/zotero/zotero.properties b/chrome/locale/km/zotero/zotero.properties
index f346c36c4..f606f159f 100644
--- a/chrome/locale/km/zotero/zotero.properties
+++ b/chrome/locale/km/zotero/zotero.properties
@@ -42,6 +42,7 @@ general.create=បង្កើត
general.delete=Delete
general.moreInformation=ព័ត៌មានបន្ថែម
general.seeForMoreInformation=សូមមើល %S សម្រាប់ព័ត៌មានបន្ថែម។
+general.open=Open %S
general.enable=អាចដំណើរការ
general.disable=មិនអាចដំណើរការ
general.remove=លុបចោល
@@ -203,6 +204,9 @@ pane.items.trash.multiple=តើអ្នកចង់លុបឯកសារដ
pane.items.delete.title=លុបចោល
pane.items.delete=តើអ្នកចង់លុបឯកសារដែលបានជ្រើសរើសចោល?
pane.items.delete.multiple=តើអ្នកចង់លុបឯកសារដែលបានជ្រើសរើសចោល?
+pane.items.remove.title=Remove from Collection
+pane.items.remove=Are you sure you want to remove the selected item from this collection?
+pane.items.remove.multiple=Are you sure you want to remove the selected items from this collection?
pane.items.menu.remove=លុបចោលឯកសារដែលបានជ្រើសរើស
pane.items.menu.remove.multiple=លុបចោលឯកសារដែលបានជ្រើសរើស
pane.items.menu.moveToTrash=Move Item to Trash…
@@ -221,6 +225,7 @@ pane.items.menu.createParent=បង្កើតបញ្ជីមេពីឯក
pane.items.menu.createParent.multiple=បង្កើតបញ្ជីមេពីឯកសារដែលបានជ្រើសរើស
pane.items.menu.renameAttachments=ប្តូរឈ្មោះឯកសារពីទិន្នន័យមេតាមេ
pane.items.menu.renameAttachments.multiple=ប្តូរឈ្មោះឯកសារពីទិន្នន័យមេតាមេ
+pane.items.showItemInLibrary=Show Item in Library
pane.items.letter.oneParticipant=សំបុត្រទៅកាន់ %S
pane.items.letter.twoParticipants=សំបុត្រទៅកាន់ %S និង %S
@@ -968,3 +973,12 @@ firstRunGuidance.quickFormat=សូមវាយចំណងជើង ឬ អ្
firstRunGuidance.quickFormatMac=សូមវាយចំណងជើង ឬ អ្នកនិពន្ធសម្រាប់ស្រាវជ្រាវរកឯកសារយោង។ បន្ទាប់ពីអ្នកបានជ្រើសរើស សូមចុចរូបសញ្ញា ឬ ចុច Cmd-\u2193 ដើម្បីបន្ថែមលេខទំព័រ បុព្វបទ ឬ បច្ច័យ។ អ្នកក៏អាចបន្ថែមលេខទំព័រដោយផ្ទាល់ទៅនឹងកិច្ចការស្រាវជ្រាវ។ អ្នកអាចកែតម្រូវអគតដ្ឋានបានដោយផ្ទាល់នៅក្នុងឯកសារវើដ។
firstRunGuidance.toolbarButton.new=Click here to open Zotero, or use the %S keyboard shortcut.
firstRunGuidance.toolbarButton.upgrade=The Zotero icon can now be found in the Firefox toolbar. Click the icon to open Zotero, or use the %S keyboard shortcut.
+
+styles.bibliography=Bibliography
+styles.editor.save=Save Citation Style
+styles.editor.warning.noItems=No items selected in Zotero.
+styles.editor.warning.parseError=Error parsing style:
+styles.editor.warning.renderError=Error generating citations and bibliography:
+styles.editor.output.individualCitations=Individual Citations
+styles.editor.output.singleCitation=Single Citation (with position "first")
+styles.preview.instructions=Select one or more items in Zotero and click the "Refresh" button to see how these items are rendered by the installed CSL citation styles.
diff --git a/chrome/locale/ko-KR/zotero/csledit.dtd b/chrome/locale/ko-KR/zotero/csledit.dtd
new file mode 100644
index 000000000..289272aba
--- /dev/null
+++ b/chrome/locale/ko-KR/zotero/csledit.dtd
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/chrome/locale/ko-KR/zotero/cslpreview.dtd b/chrome/locale/ko-KR/zotero/cslpreview.dtd
new file mode 100644
index 000000000..04396166e
--- /dev/null
+++ b/chrome/locale/ko-KR/zotero/cslpreview.dtd
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/chrome/locale/ko-KR/zotero/preferences.dtd b/chrome/locale/ko-KR/zotero/preferences.dtd
index db6d74d99..a2db5fc0b 100644
--- a/chrome/locale/ko-KR/zotero/preferences.dtd
+++ b/chrome/locale/ko-KR/zotero/preferences.dtd
@@ -12,8 +12,6 @@
-
-
@@ -125,8 +123,6 @@
-
-
@@ -164,6 +160,7 @@
+
@@ -204,6 +201,6 @@
-
-
+
+
diff --git a/chrome/locale/ko-KR/zotero/zotero.dtd b/chrome/locale/ko-KR/zotero/zotero.dtd
index c902eebbd..55a2177d5 100644
--- a/chrome/locale/ko-KR/zotero/zotero.dtd
+++ b/chrome/locale/ko-KR/zotero/zotero.dtd
@@ -6,6 +6,8 @@
+
+
@@ -123,7 +125,7 @@
-
+
@@ -288,5 +290,3 @@
-
-
diff --git a/chrome/locale/ko-KR/zotero/zotero.properties b/chrome/locale/ko-KR/zotero/zotero.properties
index a557b2ebc..9fb85c92d 100644
--- a/chrome/locale/ko-KR/zotero/zotero.properties
+++ b/chrome/locale/ko-KR/zotero/zotero.properties
@@ -42,6 +42,7 @@ general.create=생성
general.delete=Delete
general.moreInformation=More Information
general.seeForMoreInformation=자세한 것은 $S(을)를 참조하세요.
+general.open=Open %S
general.enable=사용
general.disable=사용안함
general.remove=제거
@@ -203,6 +204,9 @@ pane.items.trash.multiple=선택한 항목들을 휴지통으로 보내길 원
pane.items.delete.title=삭제
pane.items.delete=선택된 항목을 삭제하길 원하는게 맞습니까?
pane.items.delete.multiple=선택된 수집품들을 삭제하길 원하는게 맞습니까?
+pane.items.remove.title=Remove from Collection
+pane.items.remove=Are you sure you want to remove the selected item from this collection?
+pane.items.remove.multiple=Are you sure you want to remove the selected items from this collection?
pane.items.menu.remove=선택된 항목 삭제
pane.items.menu.remove.multiple=선택된 항목 삭제
pane.items.menu.moveToTrash=Move Item to Trash…
@@ -221,6 +225,7 @@ pane.items.menu.createParent=선택된 항목으로부터 부모 항목 생성
pane.items.menu.createParent.multiple=선택된 항목들로부터 부모 항목들 생성
pane.items.menu.renameAttachments=부모 메타데이터로부터 파일명 변경
pane.items.menu.renameAttachments.multiple=부모 메타데이터로부터 파일명들 변경
+pane.items.showItemInLibrary=Show Item in Library
pane.items.letter.oneParticipant=수신: %S
pane.items.letter.twoParticipants=수신: %S, %S
@@ -968,3 +973,12 @@ firstRunGuidance.quickFormat=Type a title or author to search for a reference.\n
firstRunGuidance.quickFormatMac=Type a title or author to search for a reference.\n\nAfter you've made your selection, click the bubble or press Cmd-\u2193 to add page numbers, prefixes, or suffixes. You can also include a page number along with your search terms to add it directly.\n\nYou can edit citations directly in the word processor document.
firstRunGuidance.toolbarButton.new=Click here to open Zotero, or use the %S keyboard shortcut.
firstRunGuidance.toolbarButton.upgrade=The Zotero icon can now be found in the Firefox toolbar. Click the icon to open Zotero, or use the %S keyboard shortcut.
+
+styles.bibliography=Bibliography
+styles.editor.save=Save Citation Style
+styles.editor.warning.noItems=No items selected in Zotero.
+styles.editor.warning.parseError=Error parsing style:
+styles.editor.warning.renderError=Error generating citations and bibliography:
+styles.editor.output.individualCitations=Individual Citations
+styles.editor.output.singleCitation=Single Citation (with position "first")
+styles.preview.instructions=Select one or more items in Zotero and click the "Refresh" button to see how these items are rendered by the installed CSL citation styles.
diff --git a/chrome/locale/lt-LT/zotero/csledit.dtd b/chrome/locale/lt-LT/zotero/csledit.dtd
new file mode 100644
index 000000000..289272aba
--- /dev/null
+++ b/chrome/locale/lt-LT/zotero/csledit.dtd
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/chrome/locale/lt-LT/zotero/cslpreview.dtd b/chrome/locale/lt-LT/zotero/cslpreview.dtd
new file mode 100644
index 000000000..04396166e
--- /dev/null
+++ b/chrome/locale/lt-LT/zotero/cslpreview.dtd
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/chrome/locale/lt-LT/zotero/preferences.dtd b/chrome/locale/lt-LT/zotero/preferences.dtd
index 53a0ae7c9..a1f42cfed 100644
--- a/chrome/locale/lt-LT/zotero/preferences.dtd
+++ b/chrome/locale/lt-LT/zotero/preferences.dtd
@@ -12,8 +12,6 @@
-
-
@@ -125,8 +123,6 @@
-
-
@@ -164,6 +160,7 @@
+
@@ -204,6 +201,6 @@
-
-
+
+
diff --git a/chrome/locale/lt-LT/zotero/zotero.dtd b/chrome/locale/lt-LT/zotero/zotero.dtd
index 23c776ef1..92126e715 100644
--- a/chrome/locale/lt-LT/zotero/zotero.dtd
+++ b/chrome/locale/lt-LT/zotero/zotero.dtd
@@ -6,6 +6,8 @@
+
+
@@ -123,7 +125,7 @@
-
+
@@ -288,5 +290,3 @@
-
-
diff --git a/chrome/locale/lt-LT/zotero/zotero.properties b/chrome/locale/lt-LT/zotero/zotero.properties
index c423a0461..50fe7c386 100644
--- a/chrome/locale/lt-LT/zotero/zotero.properties
+++ b/chrome/locale/lt-LT/zotero/zotero.properties
@@ -42,6 +42,7 @@ general.create=Sukurti
general.delete=Šalinti
general.moreInformation=Daugiau informacijos
general.seeForMoreInformation=Daugiau informacijos %S
+general.open=Open %S
general.enable=Įgalinti
general.disable=Uždrausti
general.remove=Pašalinti
@@ -203,6 +204,9 @@ pane.items.trash.multiple=Tikrai norite pasirinktus įrašus perkelti į šiukš
pane.items.delete.title=Šalinti
pane.items.delete=Tikrai norite pašalinti pasirinktą įrašą?
pane.items.delete.multiple=Tikrai norite pašalinti pasirinktus įrašus?
+pane.items.remove.title=Remove from Collection
+pane.items.remove=Are you sure you want to remove the selected item from this collection?
+pane.items.remove.multiple=Are you sure you want to remove the selected items from this collection?
pane.items.menu.remove=Pašalinti įrašą iš rinkinio
pane.items.menu.remove.multiple=Pašalinti įrašus iš rinkinio
pane.items.menu.moveToTrash=Įrašą perkelti į šiukšlinę...
@@ -221,6 +225,7 @@ pane.items.menu.createParent=Sukurti aukštesnio lygio įrašą
pane.items.menu.createParent.multiple=Sukurti aukštesnio lygio įrašus
pane.items.menu.renameAttachments=Failą pervadinti pagal meta duomenis
pane.items.menu.renameAttachments.multiple=Failus pervadinti pagal meta duomenis
+pane.items.showItemInLibrary=Show Item in Library
pane.items.letter.oneParticipant=Laiškas, kurį gavo %S
pane.items.letter.twoParticipants=Laiškas, kurį gavo %S ir %S
@@ -968,3 +973,12 @@ firstRunGuidance.quickFormat=Įveskite ieškomą pavadinimą arba autorių.\n\nP
firstRunGuidance.quickFormatMac=Įveskite ieškomą pavadinimą arba autorių.\n\nPasirinkę norimą, paspauskite ties skrituliuku arba nuspauskite Cmd+↓ – tada galėsite nurodyti puslapius, priešdėlius, priesagas. Paieškoje prie ieškomų raktažodžių galite nurodyti puslapius.\n\nCitavimą galite redaguoti tekstų rengyklėje tiesiogiai.
firstRunGuidance.toolbarButton.new=Čia spragtelėję arba nuspaudę %S klavišus, atversite Zotero.
firstRunGuidance.toolbarButton.upgrade=Nuo šiol „Zotero“ ženkliuką rasite Firefox įrankinėje. „Zotero“ atversite spustelėję ženkliuką arba nuspaudę %S klavišus.
+
+styles.bibliography=Bibliography
+styles.editor.save=Save Citation Style
+styles.editor.warning.noItems=No items selected in Zotero.
+styles.editor.warning.parseError=Error parsing style:
+styles.editor.warning.renderError=Error generating citations and bibliography:
+styles.editor.output.individualCitations=Individual Citations
+styles.editor.output.singleCitation=Single Citation (with position "first")
+styles.preview.instructions=Select one or more items in Zotero and click the "Refresh" button to see how these items are rendered by the installed CSL citation styles.
diff --git a/chrome/locale/mn-MN/zotero/csledit.dtd b/chrome/locale/mn-MN/zotero/csledit.dtd
new file mode 100644
index 000000000..289272aba
--- /dev/null
+++ b/chrome/locale/mn-MN/zotero/csledit.dtd
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/chrome/locale/mn-MN/zotero/cslpreview.dtd b/chrome/locale/mn-MN/zotero/cslpreview.dtd
new file mode 100644
index 000000000..04396166e
--- /dev/null
+++ b/chrome/locale/mn-MN/zotero/cslpreview.dtd
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/chrome/locale/mn-MN/zotero/preferences.dtd b/chrome/locale/mn-MN/zotero/preferences.dtd
index fc6e47b29..31c24f21a 100644
--- a/chrome/locale/mn-MN/zotero/preferences.dtd
+++ b/chrome/locale/mn-MN/zotero/preferences.dtd
@@ -12,8 +12,6 @@
-
-
@@ -125,8 +123,6 @@
-
-
@@ -164,6 +160,7 @@
+
@@ -204,6 +201,6 @@
-
-
+
+
diff --git a/chrome/locale/mn-MN/zotero/zotero.dtd b/chrome/locale/mn-MN/zotero/zotero.dtd
index 2bfe81665..73e3842e2 100644
--- a/chrome/locale/mn-MN/zotero/zotero.dtd
+++ b/chrome/locale/mn-MN/zotero/zotero.dtd
@@ -6,6 +6,8 @@
+
+
@@ -123,7 +125,7 @@
-
+
@@ -288,5 +290,3 @@
-
-
diff --git a/chrome/locale/mn-MN/zotero/zotero.properties b/chrome/locale/mn-MN/zotero/zotero.properties
index 2833f4626..c5d6d2527 100644
--- a/chrome/locale/mn-MN/zotero/zotero.properties
+++ b/chrome/locale/mn-MN/zotero/zotero.properties
@@ -42,6 +42,7 @@ general.create=Create
general.delete=Delete
general.moreInformation=More Information
general.seeForMoreInformation=See %S for more information.
+general.open=Open %S
general.enable=Enable
general.disable=Disable
general.remove=Remove
@@ -203,6 +204,9 @@ pane.items.trash.multiple=Are you sure you want to move the selected items to th
pane.items.delete.title=Устгах
pane.items.delete=Are you sure you want to delete the selected item?
pane.items.delete.multiple=Are you sure you want to delete the selected items?
+pane.items.remove.title=Remove from Collection
+pane.items.remove=Are you sure you want to remove the selected item from this collection?
+pane.items.remove.multiple=Are you sure you want to remove the selected items from this collection?
pane.items.menu.remove=Remove Item from Collection
pane.items.menu.remove.multiple=Remove Items from Collection
pane.items.menu.moveToTrash=Move Item to Trash…
@@ -221,6 +225,7 @@ pane.items.menu.createParent=Create Parent Item
pane.items.menu.createParent.multiple=Create Parent Items
pane.items.menu.renameAttachments=Rename File from Parent Metadata
pane.items.menu.renameAttachments.multiple=Rename Files from Parent Metadata
+pane.items.showItemInLibrary=Show Item in Library
pane.items.letter.oneParticipant=Letter to %S
pane.items.letter.twoParticipants=Letter to %S and %S
@@ -968,3 +973,12 @@ firstRunGuidance.quickFormat=Type a title or author to search for a reference.\n
firstRunGuidance.quickFormatMac=Type a title or author to search for a reference.\n\nAfter you've made your selection, click the bubble or press Cmd-↓ to add page numbers, prefixes, or suffixes. You can also include a page number along with your search terms to add it directly.\n\nYou can edit citations directly in the word processor document.
firstRunGuidance.toolbarButton.new=Click here to open Zotero, or use the %S keyboard shortcut.
firstRunGuidance.toolbarButton.upgrade=The Zotero icon can now be found in the Firefox toolbar. Click the icon to open Zotero, or use the %S keyboard shortcut.
+
+styles.bibliography=Bibliography
+styles.editor.save=Save Citation Style
+styles.editor.warning.noItems=No items selected in Zotero.
+styles.editor.warning.parseError=Error parsing style:
+styles.editor.warning.renderError=Error generating citations and bibliography:
+styles.editor.output.individualCitations=Individual Citations
+styles.editor.output.singleCitation=Single Citation (with position "first")
+styles.preview.instructions=Select one or more items in Zotero and click the "Refresh" button to see how these items are rendered by the installed CSL citation styles.
diff --git a/chrome/locale/nb-NO/zotero/csledit.dtd b/chrome/locale/nb-NO/zotero/csledit.dtd
new file mode 100644
index 000000000..289272aba
--- /dev/null
+++ b/chrome/locale/nb-NO/zotero/csledit.dtd
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/chrome/locale/nb-NO/zotero/cslpreview.dtd b/chrome/locale/nb-NO/zotero/cslpreview.dtd
new file mode 100644
index 000000000..04396166e
--- /dev/null
+++ b/chrome/locale/nb-NO/zotero/cslpreview.dtd
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/chrome/locale/nb-NO/zotero/preferences.dtd b/chrome/locale/nb-NO/zotero/preferences.dtd
index 867b617f0..50edc9b89 100644
--- a/chrome/locale/nb-NO/zotero/preferences.dtd
+++ b/chrome/locale/nb-NO/zotero/preferences.dtd
@@ -12,8 +12,6 @@
-
-
@@ -125,8 +123,6 @@
-
-
@@ -164,6 +160,7 @@
+
@@ -204,6 +201,6 @@
-
-
+
+
diff --git a/chrome/locale/nb-NO/zotero/zotero.dtd b/chrome/locale/nb-NO/zotero/zotero.dtd
index fc2198576..aeb17db5b 100644
--- a/chrome/locale/nb-NO/zotero/zotero.dtd
+++ b/chrome/locale/nb-NO/zotero/zotero.dtd
@@ -6,6 +6,8 @@
+
+
@@ -123,7 +125,7 @@
-
+
@@ -288,5 +290,3 @@
-
-
diff --git a/chrome/locale/nb-NO/zotero/zotero.properties b/chrome/locale/nb-NO/zotero/zotero.properties
index 267d06d8e..12f8ab05e 100644
--- a/chrome/locale/nb-NO/zotero/zotero.properties
+++ b/chrome/locale/nb-NO/zotero/zotero.properties
@@ -42,6 +42,7 @@ general.create=Create
general.delete=Delete
general.moreInformation=More Information
general.seeForMoreInformation=See %S for more information.
+general.open=Open %S
general.enable=Enable
general.disable=Disable
general.remove=Remove
@@ -203,6 +204,9 @@ pane.items.trash.multiple=Are you sure you want to move the selected items to th
pane.items.delete.title=Slett
pane.items.delete=Er du sikker på at du vil slette det valgte elementet?
pane.items.delete.multiple=Er du sikker på at du vil slette de valgte elementene?
+pane.items.remove.title=Remove from Collection
+pane.items.remove=Are you sure you want to remove the selected item from this collection?
+pane.items.remove.multiple=Are you sure you want to remove the selected items from this collection?
pane.items.menu.remove=Fjern valgt element
pane.items.menu.remove.multiple=Fjern valgte elementer
pane.items.menu.moveToTrash=Move Item to Trash…
@@ -221,6 +225,7 @@ pane.items.menu.createParent=Create Parent Item
pane.items.menu.createParent.multiple=Create Parent Items
pane.items.menu.renameAttachments=Rename File from Parent Metadata
pane.items.menu.renameAttachments.multiple=Rename Files from Parent Metadata
+pane.items.showItemInLibrary=Show Item in Library
pane.items.letter.oneParticipant=Brev til %S
pane.items.letter.twoParticipants=Brev til %S og %S
@@ -968,3 +973,12 @@ firstRunGuidance.quickFormat=Type a title or author to search for a reference.\n
firstRunGuidance.quickFormatMac=Type a title or author to search for a reference.\n\nAfter you've made your selection, click the bubble or press Cmd-↓ to add page numbers, prefixes, or suffixes. You can also include a page number along with your search terms to add it directly.\n\nYou can edit citations directly in the word processor document.
firstRunGuidance.toolbarButton.new=Click here to open Zotero, or use the %S keyboard shortcut.
firstRunGuidance.toolbarButton.upgrade=The Zotero icon can now be found in the Firefox toolbar. Click the icon to open Zotero, or use the %S keyboard shortcut.
+
+styles.bibliography=Bibliography
+styles.editor.save=Save Citation Style
+styles.editor.warning.noItems=No items selected in Zotero.
+styles.editor.warning.parseError=Error parsing style:
+styles.editor.warning.renderError=Error generating citations and bibliography:
+styles.editor.output.individualCitations=Individual Citations
+styles.editor.output.singleCitation=Single Citation (with position "first")
+styles.preview.instructions=Select one or more items in Zotero and click the "Refresh" button to see how these items are rendered by the installed CSL citation styles.
diff --git a/chrome/locale/nl-NL/zotero/csledit.dtd b/chrome/locale/nl-NL/zotero/csledit.dtd
new file mode 100644
index 000000000..289272aba
--- /dev/null
+++ b/chrome/locale/nl-NL/zotero/csledit.dtd
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/chrome/locale/nl-NL/zotero/cslpreview.dtd b/chrome/locale/nl-NL/zotero/cslpreview.dtd
new file mode 100644
index 000000000..04396166e
--- /dev/null
+++ b/chrome/locale/nl-NL/zotero/cslpreview.dtd
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/chrome/locale/nl-NL/zotero/preferences.dtd b/chrome/locale/nl-NL/zotero/preferences.dtd
index bb1c583cf..eef0f9f7e 100644
--- a/chrome/locale/nl-NL/zotero/preferences.dtd
+++ b/chrome/locale/nl-NL/zotero/preferences.dtd
@@ -12,8 +12,6 @@
-
-
@@ -125,8 +123,6 @@
-
-
@@ -164,6 +160,7 @@
+
@@ -204,6 +201,6 @@
-
-
+
+
diff --git a/chrome/locale/nl-NL/zotero/searchbox.dtd b/chrome/locale/nl-NL/zotero/searchbox.dtd
index 6522124a0..24285c66b 100644
--- a/chrome/locale/nl-NL/zotero/searchbox.dtd
+++ b/chrome/locale/nl-NL/zotero/searchbox.dtd
@@ -1,6 +1,6 @@
-
+
diff --git a/chrome/locale/nl-NL/zotero/zotero.dtd b/chrome/locale/nl-NL/zotero/zotero.dtd
index 6ce8d863c..a298ae347 100644
--- a/chrome/locale/nl-NL/zotero/zotero.dtd
+++ b/chrome/locale/nl-NL/zotero/zotero.dtd
@@ -6,9 +6,11 @@
+
+
-
+
@@ -123,7 +125,7 @@
-
+
@@ -285,8 +287,6 @@
-
-
-
-
-
+
+
+
diff --git a/chrome/locale/nl-NL/zotero/zotero.properties b/chrome/locale/nl-NL/zotero/zotero.properties
index 52a5c3160..402c253c7 100644
--- a/chrome/locale/nl-NL/zotero/zotero.properties
+++ b/chrome/locale/nl-NL/zotero/zotero.properties
@@ -42,6 +42,7 @@ general.create=Aanmaken
general.delete=Verwijder
general.moreInformation=Meer informatie
general.seeForMoreInformation=Bekijk %S voor meer informatie.
+general.open=Open %S
general.enable=Aanzetten
general.disable=Uitzetten
general.remove=Verwijderen
@@ -81,9 +82,9 @@ upgrade.couldNotMigrate.restart=Herstart uw computer als u deze boodschap blijft
errorReport.reportError=Fout rapporteren…
errorReport.reportErrors=Fouten rapporteren…
errorReport.reportInstructions=U kunt deze fout rapporteren door "%S" te selecteren in het Acties-menu (tandwiel-pictogram).
-errorReport.followingReportWillBeSubmitted=The following report will be submitted:
-errorReport.noErrorsLogged=No errors have been logged since %S started.
-errorReport.advanceMessage=Press %S to send the report to the Zotero developers.
+errorReport.followingReportWillBeSubmitted=Het volgende foutrapport zal verstuurd gaan worden:
+errorReport.noErrorsLogged=Er zijn geen fouten vastgelegd sinds %S is gestart.
+errorReport.advanceMessage=Druk op %S om het foutrapport naar de Zotero-ontwikkelaars te versturen.
errorReport.stepsToReproduce=Stappen om te reproduceren:
errorReport.expectedResult=Verwacht resultaat:
errorReport.actualResult=Werkelijk resultaat:
@@ -193,16 +194,19 @@ tagColorChooser.numberKeyInstructions=U kan dit label toevoegen aan de geselecte
tagColorChooser.maxTags=%S labels in elke bibliotheek kunnen kleuren toegewezen krijgen.
pane.items.loading=Lijst met items wordt geladen…
-pane.items.columnChooser.moreColumns=More Columns
-pane.items.columnChooser.secondarySort=Secondary Sort (%S)
-pane.items.attach.link.uri.unrecognized=Zotero did not recognize the URI you entered. Please check the address and try again.
-pane.items.attach.link.uri.file=To attach a link to a file, please use “%S”.
+pane.items.columnChooser.moreColumns=Meer kolommen
+pane.items.columnChooser.secondarySort=Tweede sorteersleutel (%S)
+pane.items.attach.link.uri.unrecognized=Zotero herkende niet de ingegeven URI. Controleer het adres en probeer opnieuw.
+pane.items.attach.link.uri.file=Om een verwijzing naar een bestand te maken, gebruik "%S".
pane.items.trash.title=Naar Prullenbak verplaatsen
pane.items.trash=Weet u zeker dat u het geselecteerde item naar de Prullenbak wil verplaatsen?
pane.items.trash.multiple=Weet u zeker dat u de geselecteerde items naar de Prullenbak wil verplaatsen?
pane.items.delete.title=Verwijderen
pane.items.delete=Weet u zeker dat u het geselecteerde item wil verwijderen?
pane.items.delete.multiple=Weet u zeker dat u de geselecteerde items wil verwijderen?
+pane.items.remove.title=Remove from Collection
+pane.items.remove=Are you sure you want to remove the selected item from this collection?
+pane.items.remove.multiple=Are you sure you want to remove the selected items from this collection?
pane.items.menu.remove=Geselecteerd item uit Verzameling verwijderen
pane.items.menu.remove.multiple=Geselecteerde items uit Verzameling verwijderen
pane.items.menu.moveToTrash=Verplaats item naar Prullenbak...
@@ -221,6 +225,7 @@ pane.items.menu.createParent=Maak hoofditem
pane.items.menu.createParent.multiple=Maak hoofditems
pane.items.menu.renameAttachments=Bestand hernoemen op basis van beschikbare metadata
pane.items.menu.renameAttachments.multiple=Bestanden hernoemen op basis van beschikbare metadata
+pane.items.showItemInLibrary=Geef item weer in de bibliotheek
pane.items.letter.oneParticipant=Brief naar %S
pane.items.letter.twoParticipants=Brief naar %S en %S
@@ -483,7 +488,7 @@ ingester.scrapingTo=Sla op naar
ingester.scrapeComplete=Item is opgeslagen
ingester.scrapeError=Item kon niet opgeslagen worden.
ingester.scrapeErrorDescription=Er is een fout opgetreden bij het opslaan van dit item. Zie %S voor meer informatie.
-ingester.scrapeErrorDescription.linkText=Troubleshooting Translator Issues
+ingester.scrapeErrorDescription.linkText=Probleemoplosser voor Vertaler
ingester.scrapeErrorDescription.previousError=Het opslaan is mislukt door een eerdere Zotero-fout.
ingester.importReferRISDialog.title=Zotero RIS/Refer-import
@@ -966,5 +971,14 @@ firstRunGuidance.saveIcon=Zotero heeft een verwijzing op deze pagina gevonden. K
firstRunGuidance.authorMenu=Zotero ondersteund ook redacteuren en vertalers. U kunt een auteur veranderen in een redacteur of vertaler via dit menu.
firstRunGuidance.quickFormat=Type een titel of auteur in om een verwijzing op te zoeken.\n\nNadat u uw selectie heeft gemaakt, klik op de ballon of druk op Ctrl-↓ om pagina-nummers, voorvoegsels en achtervoegsels toe te voegen. U kunt ook het pagina-nummer toevoegen aan uw zoektermen om het zo automatisch toe te voegen.\n\nU kunt verwijzingen direct aanpassen in het document van de tekstverwerker.
firstRunGuidance.quickFormatMac=Type een titel of auteur in om een verwijzing op te zoeken.\n\nNadat u uw selectie heeft gemaakt, klik op de ballon of druk op Cmd-↓ om pagina-nummers, voorvoegsels en achtervoegsels toe te voegen. U kunt ook het pagina-nummer toevoegen aan uw zoektermen om het zo automatisch toe te voegen.\n\nU kunt verwijzingen direct aanpassen in het document van de tekstverwerker.
-firstRunGuidance.toolbarButton.new=Click here to open Zotero, or use the %S keyboard shortcut.
-firstRunGuidance.toolbarButton.upgrade=The Zotero icon can now be found in the Firefox toolbar. Click the icon to open Zotero, or use the %S keyboard shortcut.
+firstRunGuidance.toolbarButton.new=Klik hier om Zotero te openen, of gebruik de sneltoets %S op het toetsenbord.
+firstRunGuidance.toolbarButton.upgrade=Het Zotero-icoon kan nu gevonden worden in de Firefox-toolbar. Klik op het icoon om Zotero te openen, of gebruik de sneltoets %S op het toetsenbord.
+
+styles.bibliography=Bibliografie
+styles.editor.save=Citeerstijl opslaan
+styles.editor.warning.noItems=Geen items geselecteerd in Zotero.
+styles.editor.warning.parseError=Fout bij het uitvoeren van de stijl:
+styles.editor.warning.renderError=Fout bij het genereren van citaten en bibliografie:
+styles.editor.output.individualCitations=Individuele citaten
+styles.editor.output.singleCitation=Eerste citaat (met positie "eerste")
+styles.preview.instructions=Selecteer een of meer items in Zotero en klik op de "Vernieuwen"-knop om te zien hoe deze items weergeven wordt door de geïnstalleerde CSL citeerstijl.
diff --git a/chrome/locale/nn-NO/zotero/csledit.dtd b/chrome/locale/nn-NO/zotero/csledit.dtd
new file mode 100644
index 000000000..289272aba
--- /dev/null
+++ b/chrome/locale/nn-NO/zotero/csledit.dtd
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/chrome/locale/nn-NO/zotero/cslpreview.dtd b/chrome/locale/nn-NO/zotero/cslpreview.dtd
new file mode 100644
index 000000000..04396166e
--- /dev/null
+++ b/chrome/locale/nn-NO/zotero/cslpreview.dtd
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/chrome/locale/nn-NO/zotero/preferences.dtd b/chrome/locale/nn-NO/zotero/preferences.dtd
index 9dbdc8ef0..a8278449e 100644
--- a/chrome/locale/nn-NO/zotero/preferences.dtd
+++ b/chrome/locale/nn-NO/zotero/preferences.dtd
@@ -12,8 +12,6 @@
-
-
@@ -125,8 +123,6 @@
-
-
@@ -164,6 +160,7 @@
+
@@ -204,6 +201,6 @@
-
-
+
+
diff --git a/chrome/locale/nn-NO/zotero/zotero.dtd b/chrome/locale/nn-NO/zotero/zotero.dtd
index 5221749b7..8c6dc3aad 100644
--- a/chrome/locale/nn-NO/zotero/zotero.dtd
+++ b/chrome/locale/nn-NO/zotero/zotero.dtd
@@ -6,6 +6,8 @@
+
+
@@ -123,7 +125,7 @@
-
+
@@ -288,5 +290,3 @@
-
-
diff --git a/chrome/locale/nn-NO/zotero/zotero.properties b/chrome/locale/nn-NO/zotero/zotero.properties
index 5e31c7ab3..ceae4eb02 100644
--- a/chrome/locale/nn-NO/zotero/zotero.properties
+++ b/chrome/locale/nn-NO/zotero/zotero.properties
@@ -42,6 +42,7 @@ general.create=Lag
general.delete=Delete
general.moreInformation=More Information
general.seeForMoreInformation=Sjå %S for meir informasjon
+general.open=Open %S
general.enable=Slå på
general.disable=Slå av
general.remove=Fjern
@@ -203,6 +204,9 @@ pane.items.trash.multiple=Er du sikker på at du vil flytta dei valde oppføring
pane.items.delete.title=Slett
pane.items.delete=Er du sikker på at du vil sletta det valde elementet?
pane.items.delete.multiple=Er du sikker på at du vil sletta dei valde elementa?
+pane.items.remove.title=Remove from Collection
+pane.items.remove=Are you sure you want to remove the selected item from this collection?
+pane.items.remove.multiple=Are you sure you want to remove the selected items from this collection?
pane.items.menu.remove=Fjern valt element
pane.items.menu.remove.multiple=Fjern valde element
pane.items.menu.moveToTrash=Flytt til søppelkorga
@@ -221,6 +225,7 @@ pane.items.menu.createParent=Lag forelderelement av valt element
pane.items.menu.createParent.multiple=Lag forelderelement av valte element
pane.items.menu.renameAttachments=Omdøyp fil etter foreldermetadata
pane.items.menu.renameAttachments.multiple=Omdøyp filer etter foreldermetadata
+pane.items.showItemInLibrary=Show Item in Library
pane.items.letter.oneParticipant=Brev til %S
pane.items.letter.twoParticipants=Brev til %S og %S
@@ -968,3 +973,12 @@ firstRunGuidance.quickFormat=Type a title or author to search for a reference.\n
firstRunGuidance.quickFormatMac=Type a title or author to search for a reference.\n\nAfter you've made your selection, click the bubble or press Cmd-↓ to add page numbers, prefixes, or suffixes. You can also include a page number along with your search terms to add it directly.\n\nYou can edit citations directly in the word processor document.
firstRunGuidance.toolbarButton.new=Click here to open Zotero, or use the %S keyboard shortcut.
firstRunGuidance.toolbarButton.upgrade=The Zotero icon can now be found in the Firefox toolbar. Click the icon to open Zotero, or use the %S keyboard shortcut.
+
+styles.bibliography=Bibliography
+styles.editor.save=Save Citation Style
+styles.editor.warning.noItems=No items selected in Zotero.
+styles.editor.warning.parseError=Error parsing style:
+styles.editor.warning.renderError=Error generating citations and bibliography:
+styles.editor.output.individualCitations=Individual Citations
+styles.editor.output.singleCitation=Single Citation (with position "first")
+styles.preview.instructions=Select one or more items in Zotero and click the "Refresh" button to see how these items are rendered by the installed CSL citation styles.
diff --git a/chrome/locale/pl-PL/zotero/csledit.dtd b/chrome/locale/pl-PL/zotero/csledit.dtd
new file mode 100644
index 000000000..289272aba
--- /dev/null
+++ b/chrome/locale/pl-PL/zotero/csledit.dtd
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/chrome/locale/pl-PL/zotero/cslpreview.dtd b/chrome/locale/pl-PL/zotero/cslpreview.dtd
new file mode 100644
index 000000000..04396166e
--- /dev/null
+++ b/chrome/locale/pl-PL/zotero/cslpreview.dtd
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/chrome/locale/pl-PL/zotero/preferences.dtd b/chrome/locale/pl-PL/zotero/preferences.dtd
index ecaa8a474..8a8c3eee4 100644
--- a/chrome/locale/pl-PL/zotero/preferences.dtd
+++ b/chrome/locale/pl-PL/zotero/preferences.dtd
@@ -12,8 +12,6 @@
-
-
@@ -125,8 +123,6 @@
-
-
@@ -164,6 +160,7 @@
+
@@ -204,6 +201,6 @@
-
-
+
+
diff --git a/chrome/locale/pl-PL/zotero/zotero.dtd b/chrome/locale/pl-PL/zotero/zotero.dtd
index 21d7d4b46..e8429892d 100644
--- a/chrome/locale/pl-PL/zotero/zotero.dtd
+++ b/chrome/locale/pl-PL/zotero/zotero.dtd
@@ -6,10 +6,12 @@
+
+
-
+
@@ -285,8 +287,6 @@
-
-
-
-
-
+
+
+
diff --git a/chrome/locale/pl-PL/zotero/zotero.properties b/chrome/locale/pl-PL/zotero/zotero.properties
index 3ec0de9c6..9ae4b012d 100644
--- a/chrome/locale/pl-PL/zotero/zotero.properties
+++ b/chrome/locale/pl-PL/zotero/zotero.properties
@@ -42,6 +42,7 @@ general.create=Utwórz
general.delete=Usuń
general.moreInformation=Więcej informacji
general.seeForMoreInformation=Zobacz %S aby uzyskać więcej informacji.
+general.open=Open %S
general.enable=Włącz
general.disable=Wyłącz
general.remove=Usuń
@@ -111,7 +112,7 @@ dataDir.selectDir=Wybierz katalog danych Zotero
dataDir.selectedDirNonEmpty.title=Katalog zawiera elementy
dataDir.selectedDirNonEmpty.text=Wybrany katalog nie jest pusty i nie jest katalogiem danych Zotero.\n\nCzy mimo wszystko chcesz utworzyć pliki Zotero w tym katalogu?
dataDir.selectedDirEmpty.title=Katalog jest pusty
-dataDir.selectedDirEmpty.text=The directory you selected is empty. To move an existing Zotero data directory, you will need to manually move files from the existing data directory to the new location after %1$S has closed.
+dataDir.selectedDirEmpty.text=Wybrany katalog jest pusty. Aby przenieść istniejący katalog danych Zotero, należy ręcznie przenieść pliki z istniejącego katalogu danych do nowej lokalizacji po zamknięciu %1$S.
dataDir.selectedDirEmpty.useNewDir=Użyć nowego katalogu?
dataDir.moveFilesToNewLocation=Upewnij się, że pliki z twojego istniejącego katalogu danych Zotero zostały przeniesione w nowe miejsce, zanim ponownie otworzysz %1$S.
dataDir.incompatibleDbVersion.title=Niepasująca wersja bazy danych
@@ -194,15 +195,18 @@ tagColorChooser.maxTags=Maksymalnie do %S znaczników w każdej bibliotece może
pane.items.loading=Wczytywanie listy elementów...
pane.items.columnChooser.moreColumns=Więcej kolumn
-pane.items.columnChooser.secondarySort=Secondary Sort (%S)
-pane.items.attach.link.uri.unrecognized=Zotero did not recognize the URI you entered. Please check the address and try again.
-pane.items.attach.link.uri.file=To attach a link to a file, please use “%S”.
+pane.items.columnChooser.secondarySort=Sortowanie drugorzędowe (%S)
+pane.items.attach.link.uri.unrecognized=Zotero nie rozpoznaje wprowadzonego URI. Proszę sprawdzić adres i spróbować ponownie.
+pane.items.attach.link.uri.file=Aby dołączyć odsyłacz do pliku, użyj proszę "%S".
pane.items.trash.title=Przenieś do Kosza
pane.items.trash=Czy na pewno przenieść zaznaczony element do Kosza?
pane.items.trash.multiple=Czy na pewno przenieść zaznaczone elementy do Kosza?
pane.items.delete.title=Usuń
pane.items.delete=Czy na pewno chcesz usunąć zaznaczony element?
pane.items.delete.multiple=Czy na pewno chcesz usunąć zaznaczone elementy?
+pane.items.remove.title=Remove from Collection
+pane.items.remove=Are you sure you want to remove the selected item from this collection?
+pane.items.remove.multiple=Are you sure you want to remove the selected items from this collection?
pane.items.menu.remove=Usuń element z kolekcji
pane.items.menu.remove.multiple=Usuń elementy z kolekcji
pane.items.menu.moveToTrash=Przenieś element do Kosza...
@@ -221,6 +225,7 @@ pane.items.menu.createParent=Utwórz element nadrzędny z wybranego elementu
pane.items.menu.createParent.multiple=Utwórz elementy nadrzędne z wybranych elementów
pane.items.menu.renameAttachments=Zmień nazwę pliku na podst. metadanych rodzica
pane.items.menu.renameAttachments.multiple=Zmień nazwy plików na podst. metadanych rodzica
+pane.items.showItemInLibrary=Pokaż elementy w Bibliotece
pane.items.letter.oneParticipant=List do %S
pane.items.letter.twoParticipants=List do %S i %S
@@ -743,8 +748,8 @@ styles.deleteStyle=Czy na pewno usunąć styl "%1$S"?
styles.deleteStyles=Czy na pewno usunąć wybrane style?
styles.abbreviations.title=Wczytaj skróty
-styles.abbreviations.parseError=The abbreviations file "%1$S" is not valid JSON.
-styles.abbreviations.missingInfo=The abbreviations file "%1$S" does not specify a complete info block.
+styles.abbreviations.parseError=Plik skrótów "%1$S" nie jest poprawnym plikiem w formacie JSON.
+styles.abbreviations.missingInfo=Plik skrótów "%1$S" nie zawiera pełnego bloku info.
sync.sync=Synchronizacja
sync.cancel=Anulowanie synchronizacji
@@ -768,7 +773,7 @@ sync.error.loginManagerCorrupted1=Zotero nie może uzyskać dostępu do twoich d
sync.error.loginManagerCorrupted2=Close %1$S, remove signons.sqlite from your %2$S profile directory, and re-enter your Zotero login information in the Sync pane of the Zotero preferences.
sync.error.syncInProgress=Synchronizacja jest aktualnie w trakcie.
sync.error.syncInProgress.wait=Poczekaj na zakończenie poprzedniej synchronizacji albo uruchom ponownie %S.
-sync.error.writeAccessLost=You no longer have write access to the Zotero group '%S', and items you've added or edited cannot be synced to the server.
+sync.error.writeAccessLost=Nie masz już uprawnień zapisu do grupy Zotero "%S", a więc dodane lub edytowane elementy nie mogą zostać zsynchronizowane z serwerem.
sync.error.groupWillBeReset=Jeżeli będziesz kontynuować, twoja kopia grupy zostanie przywrócona do stanu na serwerze, a lokalne zmiany pozycji oraz plików zostaną usunięte.
sync.error.copyChangedItems=Jeżeli chcesz mieć możliwość skopiowania zmienionych elementów w inne miejsce lub chcesz poprosić administratora grupy o prawo do zapisu, anuluj teraz synchronizację.
sync.error.manualInterventionRequired=Automatyczna synchronizacja spowodowała konflikt, który wymaga ręcznej interwencji.
@@ -930,7 +935,7 @@ file.accessError.showParentDir=Wyświetl katalog nadrzędny
lookup.failure.title=Wyszukiwanie nieudane
lookup.failure.description=Zotero nie potrafi odnaleźć wpisu dla podanego identyfikatora. Sprawdź proszę identyfikator i spróbuj ponownie.
-lookup.failureToID.description=Zotero could not find any identifiers in your input. Please verify your input and try again.
+lookup.failureToID.description=Zotero nie może znaleźć żadnych identyfikatorów we wprowadzonych danych. Sprawdź poprawność wprowadzonych danych i spróbuj ponownie.
locate.online.label=Pokaż online
locate.online.tooltip=Pokaż ten element online
@@ -968,3 +973,12 @@ firstRunGuidance.quickFormat=Wpisz tytuł lub autora aby szukać pozycji w bibli
firstRunGuidance.quickFormatMac=Wpisz tytuł lub autora aby szukać pozycji w bibliotece.\n\nGdy dokonasz wyboru, kliknij bąbelek lub wciśnij Cmd-\↓ aby dodać numery stron, przedrostki lub przyrostki. Możesz również wpisać numery stron wraz z wyszukiwanymi frazami, aby dodać je bezpośrednio.\n\nMożesz zmieniać odnośniki bezpośrednio w dokumencie edytora tekstu.
firstRunGuidance.toolbarButton.new=Kliknij tutaj, aby otworzyć Zotero lub użyj skrótu klawiaturowego %S.
firstRunGuidance.toolbarButton.upgrade=Ikonę Zotero znajdziesz teraz w pasku narzędzi Firefoksa. Kliknij ikonę, aby uruchomić Zotero lub użyj skrótu klawiaturowego %S.
+
+styles.bibliography=Bibliografia
+styles.editor.save=Zapisz styl cytowania
+styles.editor.warning.noItems=Nie wybrano żadnych elementów w Zotero.
+styles.editor.warning.parseError=Błąd przetwarzania stylu:
+styles.editor.warning.renderError=Błąd tworzenia cytowań i bibliografii:
+styles.editor.output.individualCitations=Pojedyncze cytowania
+styles.editor.output.singleCitation=Single Citation (with position "first")
+styles.preview.instructions=Wybierz jeden lub więcej elementów w Zotero i kliknij przycisk "Odśwież", aby zobaczyć w jaki sposób te elementy będą wyświetlone za pomocą zainstalowanych stylów cytowania CSL.
diff --git a/chrome/locale/pt-BR/zotero/csledit.dtd b/chrome/locale/pt-BR/zotero/csledit.dtd
new file mode 100644
index 000000000..289272aba
--- /dev/null
+++ b/chrome/locale/pt-BR/zotero/csledit.dtd
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/chrome/locale/pt-BR/zotero/cslpreview.dtd b/chrome/locale/pt-BR/zotero/cslpreview.dtd
new file mode 100644
index 000000000..04396166e
--- /dev/null
+++ b/chrome/locale/pt-BR/zotero/cslpreview.dtd
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/chrome/locale/pt-BR/zotero/preferences.dtd b/chrome/locale/pt-BR/zotero/preferences.dtd
index f8c2a7527..c71212773 100644
--- a/chrome/locale/pt-BR/zotero/preferences.dtd
+++ b/chrome/locale/pt-BR/zotero/preferences.dtd
@@ -12,8 +12,6 @@
-
-
@@ -125,8 +123,6 @@
-
-
@@ -164,6 +160,7 @@
+
@@ -204,6 +201,6 @@
-
-
+
+
diff --git a/chrome/locale/pt-BR/zotero/zotero.dtd b/chrome/locale/pt-BR/zotero/zotero.dtd
index cdfc26630..ed51d9793 100644
--- a/chrome/locale/pt-BR/zotero/zotero.dtd
+++ b/chrome/locale/pt-BR/zotero/zotero.dtd
@@ -6,6 +6,8 @@
+
+
@@ -123,7 +125,7 @@
-
+
@@ -288,5 +290,3 @@
-
-
diff --git a/chrome/locale/pt-BR/zotero/zotero.properties b/chrome/locale/pt-BR/zotero/zotero.properties
index 57fdf9afa..ce62f2e59 100644
--- a/chrome/locale/pt-BR/zotero/zotero.properties
+++ b/chrome/locale/pt-BR/zotero/zotero.properties
@@ -42,6 +42,7 @@ general.create=Criar
general.delete=Remover
general.moreInformation=Mais informação
general.seeForMoreInformation=Ver %S para mais informações.
+general.open=Open %S
general.enable=Habilitar
general.disable=Desabilitar
general.remove=Remover
@@ -203,6 +204,9 @@ pane.items.trash.multiple=Tem certeza de que deseja mover os itens selecionados
pane.items.delete.title=Excluir
pane.items.delete=Tem certeza de que deseja excluir o item selecionado?
pane.items.delete.multiple=Tem certeja de que deseja excluir os itens selecionados?
+pane.items.remove.title=Remove from Collection
+pane.items.remove=Are you sure you want to remove the selected item from this collection?
+pane.items.remove.multiple=Are you sure you want to remove the selected items from this collection?
pane.items.menu.remove=Remover item selecionado
pane.items.menu.remove.multiple=Remover itens selecionados
pane.items.menu.moveToTrash=Mover Item para a lixeira...
@@ -221,6 +225,7 @@ pane.items.menu.createParent=Criar item no nível acima do item selecionado
pane.items.menu.createParent.multiple=Criar itens no nível acima dos itens selecionados
pane.items.menu.renameAttachments=Renomear arquivo a partir dos metadados do item no nível acima
pane.items.menu.renameAttachments.multiple=Renomear arquivos a partir dos metadados do item no nível acima
+pane.items.showItemInLibrary=Show Item in Library
pane.items.letter.oneParticipant=Carta para %S
pane.items.letter.twoParticipants=Carta para %S e %S
@@ -968,3 +973,12 @@ firstRunGuidance.quickFormat=Digite um título ou autor para procurar por uma re
firstRunGuidance.quickFormatMac=Digite um título ou autor para procurar por uma referência.\n\nDepois de feita a sua seleção, clique na bolha ou pressione Cmd-\u2193 para adicionar os números de página, prefixos ou sufixo. Você também pode incluir um número de página junto aos seus termos de pesquisa para adicioná-lo diretamente.\n\nVocê pode editar as citações diretamente do processador de texto.
firstRunGuidance.toolbarButton.new=Clique aqui para abrir o Zotero, ou utilize o atalho %S em seu teclado.
firstRunGuidance.toolbarButton.upgrade=O ícone do Zotero pode agora ser encontrado na barra de ferramentas do Firefox. Clique no ícone para abrir o Zotero, ou utilize o atalho %S em seu teclado.
+
+styles.bibliography=Bibliography
+styles.editor.save=Save Citation Style
+styles.editor.warning.noItems=No items selected in Zotero.
+styles.editor.warning.parseError=Error parsing style:
+styles.editor.warning.renderError=Error generating citations and bibliography:
+styles.editor.output.individualCitations=Individual Citations
+styles.editor.output.singleCitation=Single Citation (with position "first")
+styles.preview.instructions=Select one or more items in Zotero and click the "Refresh" button to see how these items are rendered by the installed CSL citation styles.
diff --git a/chrome/locale/pt-PT/zotero/csledit.dtd b/chrome/locale/pt-PT/zotero/csledit.dtd
new file mode 100644
index 000000000..289272aba
--- /dev/null
+++ b/chrome/locale/pt-PT/zotero/csledit.dtd
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/chrome/locale/pt-PT/zotero/cslpreview.dtd b/chrome/locale/pt-PT/zotero/cslpreview.dtd
new file mode 100644
index 000000000..04396166e
--- /dev/null
+++ b/chrome/locale/pt-PT/zotero/cslpreview.dtd
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/chrome/locale/pt-PT/zotero/preferences.dtd b/chrome/locale/pt-PT/zotero/preferences.dtd
index b2a736301..cd724d971 100644
--- a/chrome/locale/pt-PT/zotero/preferences.dtd
+++ b/chrome/locale/pt-PT/zotero/preferences.dtd
@@ -12,8 +12,6 @@
-
-
@@ -125,8 +123,6 @@
-
-
@@ -164,6 +160,7 @@
+
@@ -204,6 +201,6 @@
-
-
+
+
diff --git a/chrome/locale/pt-PT/zotero/zotero.dtd b/chrome/locale/pt-PT/zotero/zotero.dtd
index 85426d98d..8b27a1956 100644
--- a/chrome/locale/pt-PT/zotero/zotero.dtd
+++ b/chrome/locale/pt-PT/zotero/zotero.dtd
@@ -6,6 +6,8 @@
+
+
@@ -123,7 +125,7 @@
-
+
@@ -288,5 +290,3 @@
-
-
diff --git a/chrome/locale/pt-PT/zotero/zotero.properties b/chrome/locale/pt-PT/zotero/zotero.properties
index 1fdc814ec..c5188a33a 100644
--- a/chrome/locale/pt-PT/zotero/zotero.properties
+++ b/chrome/locale/pt-PT/zotero/zotero.properties
@@ -42,6 +42,7 @@ general.create=Criar
general.delete=Remover
general.moreInformation=Mais Informação
general.seeForMoreInformation=Ver %S para mais informações.
+general.open=Open %S
general.enable=Activar
general.disable=Desactivar
general.remove=Remover
@@ -203,6 +204,9 @@ pane.items.trash.multiple=Quer mesmo mover os itens seleccionados para o Lixo?
pane.items.delete.title=Remover
pane.items.delete=Quer mesmo remover o item seleccionado?
pane.items.delete.multiple=Quer mesmo remover os itens seleccionados?
+pane.items.remove.title=Remove from Collection
+pane.items.remove=Are you sure you want to remove the selected item from this collection?
+pane.items.remove.multiple=Are you sure you want to remove the selected items from this collection?
pane.items.menu.remove=Remover Item Seleccionado
pane.items.menu.remove.multiple=Remover Itens Seleccionados
pane.items.menu.moveToTrash=Mover Item para o Lixo...
@@ -221,6 +225,7 @@ pane.items.menu.createParent=Criar Item Ascendente a partir do Item Seleccionado
pane.items.menu.createParent.multiple=Criar Itens Ascendentes a partir dos Itens Seleccionados
pane.items.menu.renameAttachments=Dar Novo Nome ao Arquivo a partir dos Metadados Ascendentes
pane.items.menu.renameAttachments.multiple=Dar Novos Nomes aos Arquivos a partir dos Metadados Ascendentes
+pane.items.showItemInLibrary=Show Item in Library
pane.items.letter.oneParticipant=Carta para %S
pane.items.letter.twoParticipants=Carta para %S e %S
@@ -968,3 +973,12 @@ firstRunGuidance.quickFormat=Introduza um título ou um autor para procurar uma
firstRunGuidance.quickFormatMac=Introduza um título ou um autor para procurar uma referência.\n\nDepois de fazer a sua selecção, carregue na bolha ou carregue em Cmd-\u2193 para adicionar números de páginas, prefixos ou sufixos. Pode também incluir um número de página junto com os termos da sua pesquisa para o adicionar directamente.\n\nPode editar as citações directamente no documento do processador de texto.
firstRunGuidance.toolbarButton.new=Clique aqui para abrir o Zotero ou use o atalho do teclado %S.
firstRunGuidance.toolbarButton.upgrade=O ícone do Zotero pode agora ser encontrado na barra de ferramentas do Firefox. Clique no ícone para abrir o Zotero ou use o atalho do teclado %S.
+
+styles.bibliography=Bibliography
+styles.editor.save=Save Citation Style
+styles.editor.warning.noItems=No items selected in Zotero.
+styles.editor.warning.parseError=Error parsing style:
+styles.editor.warning.renderError=Error generating citations and bibliography:
+styles.editor.output.individualCitations=Individual Citations
+styles.editor.output.singleCitation=Single Citation (with position "first")
+styles.preview.instructions=Select one or more items in Zotero and click the "Refresh" button to see how these items are rendered by the installed CSL citation styles.
diff --git a/chrome/locale/ro-RO/zotero/csledit.dtd b/chrome/locale/ro-RO/zotero/csledit.dtd
new file mode 100644
index 000000000..289272aba
--- /dev/null
+++ b/chrome/locale/ro-RO/zotero/csledit.dtd
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/chrome/locale/ro-RO/zotero/cslpreview.dtd b/chrome/locale/ro-RO/zotero/cslpreview.dtd
new file mode 100644
index 000000000..04396166e
--- /dev/null
+++ b/chrome/locale/ro-RO/zotero/cslpreview.dtd
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/chrome/locale/ro-RO/zotero/preferences.dtd b/chrome/locale/ro-RO/zotero/preferences.dtd
index 1837a98fd..a6a199c56 100644
--- a/chrome/locale/ro-RO/zotero/preferences.dtd
+++ b/chrome/locale/ro-RO/zotero/preferences.dtd
@@ -12,8 +12,6 @@
-
-
@@ -125,8 +123,6 @@
-
-
@@ -164,6 +160,7 @@
+
@@ -204,6 +201,6 @@
-
-
+
+
diff --git a/chrome/locale/ro-RO/zotero/zotero.dtd b/chrome/locale/ro-RO/zotero/zotero.dtd
index 1446f4179..62fdd5044 100644
--- a/chrome/locale/ro-RO/zotero/zotero.dtd
+++ b/chrome/locale/ro-RO/zotero/zotero.dtd
@@ -6,6 +6,8 @@
+
+
@@ -123,7 +125,7 @@
-
+
@@ -288,5 +290,3 @@
-
-
diff --git a/chrome/locale/ro-RO/zotero/zotero.properties b/chrome/locale/ro-RO/zotero/zotero.properties
index 501fa952c..f33dcf8f1 100644
--- a/chrome/locale/ro-RO/zotero/zotero.properties
+++ b/chrome/locale/ro-RO/zotero/zotero.properties
@@ -42,6 +42,7 @@ general.create=Creează
general.delete=Ștergere
general.moreInformation=Mai multe informații
general.seeForMoreInformation=Vezi %S pentru mai multe informații.
+general.open=Open %S
general.enable=Activare
general.disable=Dezactivare
general.remove=Șterge
@@ -203,6 +204,9 @@ pane.items.trash.multiple=Sigur vrei să muți înregistrările selectate în co
pane.items.delete.title=Șterge
pane.items.delete=Ești sigur că vrei să ștergi înregistrarea selectată?
pane.items.delete.multiple=Ești sigur că vrei să ștergi înregistrările selectate?
+pane.items.remove.title=Remove from Collection
+pane.items.remove=Are you sure you want to remove the selected item from this collection?
+pane.items.remove.multiple=Are you sure you want to remove the selected items from this collection?
pane.items.menu.remove=Șterge înregistrarea din colecție
pane.items.menu.remove.multiple=Șterge înregistrările din colecție
pane.items.menu.moveToTrash=Mută înregistrările în coșul de gunoi...
@@ -221,6 +225,7 @@ pane.items.menu.createParent=Creează înregistrare părinte
pane.items.menu.createParent.multiple=Creează înregistrări părinte
pane.items.menu.renameAttachments=Redenumește fișier din metadatele părinte
pane.items.menu.renameAttachments.multiple=Redenumește fișiere din metadatele părinte
+pane.items.showItemInLibrary=Show Item in Library
pane.items.letter.oneParticipant=Scrisoare către %S
pane.items.letter.twoParticipants=Scrisoare către %S și %S
@@ -968,3 +973,12 @@ firstRunGuidance.quickFormat=Tastează un titlu sau un autor pentru a căuta o r
firstRunGuidance.quickFormatMac=Tastează un titlu sau un autor pentru a căuta o referință.\n\nDupă ce ai făcut selecția pe care o dorești, apasă bulina sau Cmd-↓ pentru a adăuga numere de pagină, prefixe sau sufixe. Poți, de asemenea, să incluzi numărul de pagină odată cu căutarea termenilor, pentru a-l adăuga direct.\n\nPoți modifica citările direct în documentul din procesorul de texte.
firstRunGuidance.toolbarButton.new=Clic aici pentru a deschide Zotero sau folosește scurtătura de la tastatură %S.
firstRunGuidance.toolbarButton.upgrade=Iconița Zotero poate fi găsită acum în bara de instrumente Firefox. Clic pe iconiță pentru a deschide Zotero sau folosește scurtătura de la tastatură %S.
+
+styles.bibliography=Bibliography
+styles.editor.save=Save Citation Style
+styles.editor.warning.noItems=No items selected in Zotero.
+styles.editor.warning.parseError=Error parsing style:
+styles.editor.warning.renderError=Error generating citations and bibliography:
+styles.editor.output.individualCitations=Individual Citations
+styles.editor.output.singleCitation=Single Citation (with position "first")
+styles.preview.instructions=Select one or more items in Zotero and click the "Refresh" button to see how these items are rendered by the installed CSL citation styles.
diff --git a/chrome/locale/ru-RU/zotero/csledit.dtd b/chrome/locale/ru-RU/zotero/csledit.dtd
new file mode 100644
index 000000000..289272aba
--- /dev/null
+++ b/chrome/locale/ru-RU/zotero/csledit.dtd
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/chrome/locale/ru-RU/zotero/cslpreview.dtd b/chrome/locale/ru-RU/zotero/cslpreview.dtd
new file mode 100644
index 000000000..04396166e
--- /dev/null
+++ b/chrome/locale/ru-RU/zotero/cslpreview.dtd
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/chrome/locale/ru-RU/zotero/preferences.dtd b/chrome/locale/ru-RU/zotero/preferences.dtd
index 67d6e3dd7..137e342f2 100644
--- a/chrome/locale/ru-RU/zotero/preferences.dtd
+++ b/chrome/locale/ru-RU/zotero/preferences.dtd
@@ -12,8 +12,6 @@
-
-
@@ -125,8 +123,6 @@
-
-
@@ -164,6 +160,7 @@
+
@@ -204,6 +201,6 @@
-
-
+
+
diff --git a/chrome/locale/ru-RU/zotero/zotero.dtd b/chrome/locale/ru-RU/zotero/zotero.dtd
index f6ffb4389..522121c54 100644
--- a/chrome/locale/ru-RU/zotero/zotero.dtd
+++ b/chrome/locale/ru-RU/zotero/zotero.dtd
@@ -6,6 +6,8 @@
+
+
@@ -123,7 +125,7 @@
-
+
@@ -288,5 +290,3 @@
-
-
diff --git a/chrome/locale/ru-RU/zotero/zotero.properties b/chrome/locale/ru-RU/zotero/zotero.properties
index 7c11a1ce9..d4007a75a 100644
--- a/chrome/locale/ru-RU/zotero/zotero.properties
+++ b/chrome/locale/ru-RU/zotero/zotero.properties
@@ -42,6 +42,7 @@ general.create=Создать
general.delete=Удалить
general.moreInformation=Дополнительные сведения
general.seeForMoreInformation=Смотрите %S для дополнительной информации.
+general.open=Open %S
general.enable=Включить
general.disable=Выключить
general.remove=Убрать
@@ -203,6 +204,9 @@ pane.items.trash.multiple=Вы уверены, что хотите помест
pane.items.delete.title=Удалить
pane.items.delete=Вы уверены, что хотите удалить выбранный документ?
pane.items.delete.multiple=Вы уверены, что хотите удалить выбранные документы?
+pane.items.remove.title=Remove from Collection
+pane.items.remove=Are you sure you want to remove the selected item from this collection?
+pane.items.remove.multiple=Are you sure you want to remove the selected items from this collection?
pane.items.menu.remove=Удалить выбранный документ
pane.items.menu.remove.multiple=Удалить выбранные документы
pane.items.menu.moveToTrash=Переместить документ в Корзину…
@@ -221,6 +225,7 @@ pane.items.menu.createParent=Создать родительский докум
pane.items.menu.createParent.multiple=Создать родительские документы из выбранных
pane.items.menu.renameAttachments=Переименовать файл по родительским метаданным
pane.items.menu.renameAttachments.multiple=Переименовать файлы по родительским метаданным
+pane.items.showItemInLibrary=Show Item in Library
pane.items.letter.oneParticipant=Письмо %S
pane.items.letter.twoParticipants=Письмо %S и %S
@@ -968,3 +973,12 @@ firstRunGuidance.quickFormat=Введите наименование или ав
firstRunGuidance.quickFormatMac=Введите наименование или автора для поиска по ссылке.\n\nПосле выбора, нажмите на сноску или Cmd-↓ для добавления номеров страниц, префиксов или суффиксов. Также можно включить номер страницы в условия поиска, чтобы сразу его добавить.\n\n\Цитаты можно редактировать в самом документе, открытом в редакторе.
firstRunGuidance.toolbarButton.new=Click here to open Zotero, or use the %S keyboard shortcut.
firstRunGuidance.toolbarButton.upgrade=The Zotero icon can now be found in the Firefox toolbar. Click the icon to open Zotero, or use the %S keyboard shortcut.
+
+styles.bibliography=Bibliography
+styles.editor.save=Save Citation Style
+styles.editor.warning.noItems=No items selected in Zotero.
+styles.editor.warning.parseError=Error parsing style:
+styles.editor.warning.renderError=Error generating citations and bibliography:
+styles.editor.output.individualCitations=Individual Citations
+styles.editor.output.singleCitation=Single Citation (with position "first")
+styles.preview.instructions=Select one or more items in Zotero and click the "Refresh" button to see how these items are rendered by the installed CSL citation styles.
diff --git a/chrome/locale/sk-SK/zotero/csledit.dtd b/chrome/locale/sk-SK/zotero/csledit.dtd
new file mode 100644
index 000000000..289272aba
--- /dev/null
+++ b/chrome/locale/sk-SK/zotero/csledit.dtd
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/chrome/locale/sk-SK/zotero/cslpreview.dtd b/chrome/locale/sk-SK/zotero/cslpreview.dtd
new file mode 100644
index 000000000..04396166e
--- /dev/null
+++ b/chrome/locale/sk-SK/zotero/cslpreview.dtd
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/chrome/locale/sk-SK/zotero/preferences.dtd b/chrome/locale/sk-SK/zotero/preferences.dtd
index 684f6e06e..902d8c22a 100644
--- a/chrome/locale/sk-SK/zotero/preferences.dtd
+++ b/chrome/locale/sk-SK/zotero/preferences.dtd
@@ -12,8 +12,6 @@
-
-
@@ -73,7 +71,7 @@
-
+
@@ -125,8 +123,6 @@
-
-
@@ -138,7 +134,7 @@
-
+
@@ -164,6 +160,7 @@
+
@@ -204,6 +201,6 @@
-
-
+
+
diff --git a/chrome/locale/sk-SK/zotero/zotero.dtd b/chrome/locale/sk-SK/zotero/zotero.dtd
index 0069db547..e3019f214 100644
--- a/chrome/locale/sk-SK/zotero/zotero.dtd
+++ b/chrome/locale/sk-SK/zotero/zotero.dtd
@@ -6,6 +6,8 @@
+
+
@@ -288,5 +290,3 @@
-
-
diff --git a/chrome/locale/sk-SK/zotero/zotero.properties b/chrome/locale/sk-SK/zotero/zotero.properties
index 06fb7e983..9249e78a2 100644
--- a/chrome/locale/sk-SK/zotero/zotero.properties
+++ b/chrome/locale/sk-SK/zotero/zotero.properties
@@ -42,6 +42,7 @@ general.create=Vytvoriť
general.delete=Vymazať
general.moreInformation=Viac informácií
general.seeForMoreInformation=Pre viac informácií pozri %S.
+general.open=Open %S
general.enable=Povoliť
general.disable=Zakázať
general.remove=Odstrániť
@@ -177,8 +178,8 @@ pane.collections.menu.export.savedSearch=Exportovať uložené vyhľadávanie...
pane.collections.menu.createBib.collection=Vytvoriť bibliografiu z kolekcie...
pane.collections.menu.createBib.savedSearch=Vytvoriť bibliografiu z uloženého vyhľadávania...
-pane.collections.menu.generateReport.collection=Vytvoriť správu z kolekcie...
-pane.collections.menu.generateReport.savedSearch=Vyvoriť správu z uloženého vyhľadávania...
+pane.collections.menu.generateReport.collection=Vytvoriť výkaz z kolekcie...
+pane.collections.menu.generateReport.savedSearch=Vyvoriť výkaz z uloženého vyhľadávania...
pane.tagSelector.rename.title=Premenovať značku
pane.tagSelector.rename.message=Prosím vložte nový názov pre túto značku.\n\nZnačka bude zmenená vo všetkých položkách, ktoré ju obsahujú.
@@ -203,6 +204,9 @@ pane.items.trash.multiple=Ste si istý, že chcete vybrané položky presunúť
pane.items.delete.title=Vymazať
pane.items.delete=Naozaj chcete vymazať zvolenú položku?
pane.items.delete.multiple=Naozaj chcete vymazať zvolené položky?
+pane.items.remove.title=Remove from Collection
+pane.items.remove=Are you sure you want to remove the selected item from this collection?
+pane.items.remove.multiple=Are you sure you want to remove the selected items from this collection?
pane.items.menu.remove=Odstrániť vybranú položku
pane.items.menu.remove.multiple=Odstrániť vybrané položky
pane.items.menu.moveToTrash=Presunúť exemplár do koša...
@@ -211,8 +215,8 @@ pane.items.menu.export=Exportovať vybranú položku...
pane.items.menu.export.multiple=Exportovať vybrané položky...
pane.items.menu.createBib=Vytvoriť bibliografiu z vybranej položky...
pane.items.menu.createBib.multiple=Vytvoriť bibliografiu z vybraných položiek...
-pane.items.menu.generateReport=Vytvoriť správu z vybranej položky...
-pane.items.menu.generateReport.multiple=Vytvoriť správu z vybraných položiek...
+pane.items.menu.generateReport=Vytvoriť výkaz z vybranej položky...
+pane.items.menu.generateReport.multiple=Vytvoriť výkaz z vybraných položiek...
pane.items.menu.reindexItem=Znovu indexovať položku
pane.items.menu.reindexItem.multiple=Znovu indexovať položky
pane.items.menu.recognizePDF=Získať metadáta k PDF dokumentu
@@ -221,6 +225,7 @@ pane.items.menu.createParent=Vytvoriť nadradenú položku z vybranej položky
pane.items.menu.createParent.multiple=Vytvoriť nadradené položky z vybraných položiek
pane.items.menu.renameAttachments=Premenovať súbor podľa prislúchajúcich metadát
pane.items.menu.renameAttachments.multiple=Premenovať súbory podľa prislúchajúcich metadát
+pane.items.showItemInLibrary=Zobraziť exemplár v knižnici
pane.items.letter.oneParticipant=List pre %S
pane.items.letter.twoParticipants=List pre %S a %S
@@ -238,7 +243,7 @@ pane.item.unselected.singular=%S položiek v tomto náhľade
pane.item.unselected.plural=%S položiek v tomto náhľade
pane.item.duplicates.selectToMerge=Vybrať exempláre na zlúčenie
-pane.item.duplicates.mergeItems=Zlúčiť %S exemplárov
+pane.item.duplicates.mergeItems=Zlúčiť %S exempláre
pane.item.duplicates.writeAccessRequired=Pre zlučovanie exemplárov sa vyžaduje oprávnenie zapisovať do knižnice.
pane.item.duplicates.onlyTopLevel=Je možné zlúčiť iba plné exempláre najvyššej úrovne.
pane.item.duplicates.onlySameItemType=Všetky zlučované exempláre musia mať rovnaký typ exemplára.
@@ -297,7 +302,7 @@ itemTypes.interview=Osobná komunikácia
itemTypes.film=Film
itemTypes.artwork=Umelecké dielo
itemTypes.webpage=Webová stránka
-itemTypes.report=Správa
+itemTypes.report=Výkaz
itemTypes.bill=Legislatívny dokument
itemTypes.case=Prípad (súdny)
itemTypes.hearing=Výsluch (konanie)
@@ -354,7 +359,7 @@ itemFields.seriesTitle=Názov edície
itemFields.seriesText=Text edície
itemFields.seriesNumber=Číslo edície
itemFields.institution=Inštitúcia
-itemFields.reportType=Druh správy
+itemFields.reportType=Druh výkazu
itemFields.code=Zákonník
itemFields.session=Zasadnutie
itemFields.legislativeBody=Legislatívny orgán
@@ -402,7 +407,7 @@ itemFields.programmingLanguage=Program. jazyk
itemFields.university=Univerzita
itemFields.abstractNote=Abstrakt
itemFields.websiteTitle=Názov stránky
-itemFields.reportNumber=Číslo správy
+itemFields.reportNumber=Číslo výkazu
itemFields.billNumber=Číslo
itemFields.codeVolume=Ročník
itemFields.codePages=Strany
@@ -620,7 +625,7 @@ searchConditions.childNote=Vnorená poznámka
searchConditions.creator=Autor
searchConditions.type=Typ
searchConditions.thesisType=Druh záverečnej práce
-searchConditions.reportType=Druh správy
+searchConditions.reportType=Druh výkazu
searchConditions.videoRecordingFormat=Formát videozáznamu
searchConditions.audioFileType=Typ audio súboru
searchConditions.audioRecordingFormat=Formát audiozáznamu
@@ -662,7 +667,7 @@ citation.hideEditor=Skryť editor...
citation.citations=Citácie
citation.notes=Poznámky
-report.title.default=Hlásenie Zotera
+report.title.default=Výkaz Zotera
report.parentItem=Nadradená položka:
report.notes=Poznámky:
report.tags=Značky:
@@ -968,3 +973,12 @@ firstRunGuidance.quickFormat=Zadaním názvu alebo autora spustíte hľadanie od
firstRunGuidance.quickFormatMac=Zadaním názvu alebo autora spustíte hľadanie odkazu.\n\nPo uskutočnení výberu, kliknite na bublinu alebo stlačte Ctrl-\u2193 na pridanie čísiel strán, predpôn alebo prípon. Môžete tiež pridať číslo strany spolu s hľadanými pojmamy, a tak ich môžete zadať priamo.\n\nCitácie môžete upravovať priamo v dokumente textového procesora.
firstRunGuidance.toolbarButton.new=Otvorte Zotero kliknutím sem alebo pomocou klávesovej skratky %S.
firstRunGuidance.toolbarButton.upgrade=Ikonu Zotera je teraz možné nájsť v nástrojovej lište Firefoxu. Otvorte Zotero kliknutím na ikonu alebo pomocou klávesovej skratky %S.
+
+styles.bibliography=Bibliografia
+styles.editor.save=Uložiť citačný štýl
+styles.editor.warning.noItems=Nie sú vybrané žiadne exemplár v Zotere.
+styles.editor.warning.parseError=Chyba pri analýze štýlu:
+styles.editor.warning.renderError=Chyba pri vytváraní citácií a bibliografie:
+styles.editor.output.individualCitations=Individuálne citácie
+styles.editor.output.singleCitation=Jediná citácia (uvedená "prvýkrát")
+styles.preview.instructions=Vyberte jeden alebo viac exemplárov v Zotere a kliknite na tlačidlo "Obnoviť", aby ste videli, ako sa tieto exempláre budú zobrazovať pri nainštalovaných citačných štýloch CSL.
diff --git a/chrome/locale/sl-SI/zotero/csledit.dtd b/chrome/locale/sl-SI/zotero/csledit.dtd
new file mode 100644
index 000000000..289272aba
--- /dev/null
+++ b/chrome/locale/sl-SI/zotero/csledit.dtd
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/chrome/locale/sl-SI/zotero/cslpreview.dtd b/chrome/locale/sl-SI/zotero/cslpreview.dtd
new file mode 100644
index 000000000..04396166e
--- /dev/null
+++ b/chrome/locale/sl-SI/zotero/cslpreview.dtd
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/chrome/locale/sl-SI/zotero/preferences.dtd b/chrome/locale/sl-SI/zotero/preferences.dtd
index 28c34f8a4..fc2610e01 100644
--- a/chrome/locale/sl-SI/zotero/preferences.dtd
+++ b/chrome/locale/sl-SI/zotero/preferences.dtd
@@ -12,8 +12,6 @@
-
-
@@ -125,8 +123,6 @@
-
-
@@ -164,6 +160,7 @@
+
@@ -204,6 +201,6 @@
-
-
+
+
diff --git a/chrome/locale/sl-SI/zotero/zotero.dtd b/chrome/locale/sl-SI/zotero/zotero.dtd
index 2da912feb..599565376 100644
--- a/chrome/locale/sl-SI/zotero/zotero.dtd
+++ b/chrome/locale/sl-SI/zotero/zotero.dtd
@@ -6,6 +6,8 @@
+
+
@@ -123,7 +125,7 @@
-
+
@@ -285,8 +287,6 @@
-
-
-
-
-
+
+
+
diff --git a/chrome/locale/sl-SI/zotero/zotero.properties b/chrome/locale/sl-SI/zotero/zotero.properties
index f86e6a7fe..3832b9208 100644
--- a/chrome/locale/sl-SI/zotero/zotero.properties
+++ b/chrome/locale/sl-SI/zotero/zotero.properties
@@ -42,6 +42,7 @@ general.create=Ustvari
general.delete=Izbriši
general.moreInformation=Podrobnosti
general.seeForMoreInformation=Oglejte si %S za več informacij.
+general.open=Open %S
general.enable=Omogoči
general.disable=Onemogoči
general.remove=Odstrani
@@ -195,14 +196,17 @@ tagColorChooser.maxTags=Največ %S značk v vsaki knjižnici ima lahko dodeljeno
pane.items.loading=Nalaganje seznama vnosov ...
pane.items.columnChooser.moreColumns=Več stolpcev
pane.items.columnChooser.secondarySort=Drugotno razvrščanje (%S)
-pane.items.attach.link.uri.unrecognized=Zotero did not recognize the URI you entered. Please check the address and try again.
-pane.items.attach.link.uri.file=To attach a link to a file, please use “%S”.
+pane.items.attach.link.uri.unrecognized=URI, ki ste ga vnesli, je nemogoče razpoznati. Preverite naslov in poskusite znova.
+pane.items.attach.link.uri.file=Če želite datoteki pripeti povezavo, uporabite “%S”.
pane.items.trash.title=Premakni v koš
pane.items.trash=Ste prepričani, da želite izbrani vnos vreči v koš?
pane.items.trash.multiple=Ste prepričani, da želite izbrane vnose vreči v koš?
pane.items.delete.title=Izbriši
pane.items.delete=Ste prepričani, da želite izbrisati izbrani vnos?
pane.items.delete.multiple=Ste prepričani, da želite izbrisati izbrane vnose?
+pane.items.remove.title=Remove from Collection
+pane.items.remove=Are you sure you want to remove the selected item from this collection?
+pane.items.remove.multiple=Are you sure you want to remove the selected items from this collection?
pane.items.menu.remove=Odstrani vnos iz zbirke
pane.items.menu.remove.multiple=Odstrani vnose iz zbirke
pane.items.menu.moveToTrash=Premakni vnos v koš ...
@@ -221,6 +225,7 @@ pane.items.menu.createParent=Ustvari starševski vnos
pane.items.menu.createParent.multiple=Ustvari starševske vnose
pane.items.menu.renameAttachments=Preimenuj datoteko iz starševskih metapodatkov
pane.items.menu.renameAttachments.multiple=Preimenuj datoteke iz starševskih metapodatkov
+pane.items.showItemInLibrary=Pokaži element v knjižnici
pane.items.letter.oneParticipant=Pismo za %S
pane.items.letter.twoParticipants=Pismo za %S in %S
@@ -968,3 +973,12 @@ firstRunGuidance.quickFormat=Za iskanje sklica vnesite naslov ali avtorja.\n\nKo
firstRunGuidance.quickFormatMac=Za iskanje sklica vnesite naslov ali avtorja.\n\nKo ste opravili izbor, kliknite oblaček ali pritisnite Cmd-↓ za dodajanje številk strani, predpon ali pripon. Z iskanimi nizi lahko neposredno vnesete tudi številko strani.\n\nNavedke lahko uredite neposredno v dokumentu urejevalnika besedil.
firstRunGuidance.toolbarButton.new=Kliknite sem, da odprete Zotero, ali uporabite kombinacijo tipk %S.
firstRunGuidance.toolbarButton.upgrade=Ikono Zotero zdaj najdete v orodni vrstici Firefox. Kliknite ikono, da odprete Zotero, ali uporabite kombinacijo tipk %S.
+
+styles.bibliography=Bibliografija
+styles.editor.save=Shrani slog citiranja
+styles.editor.warning.noItems=V Zoteru ni nič izbrano.
+styles.editor.warning.parseError=Napaka pri razčlenjevanju sloga:
+styles.editor.warning.renderError=Napaka pri izdelavi citatov in bibliografije:
+styles.editor.output.individualCitations=Posamični citati
+styles.editor.output.singleCitation=Posamezen citat (s položajem »prvi«)
+styles.preview.instructions=Izberite enega ali več elementov v Zoteru in kliknite gumb »Osveži«, da vidite, kako se izbrani upodobijo z nameščenimi slogi navajanja CSL.
diff --git a/chrome/locale/sr-RS/zotero/csledit.dtd b/chrome/locale/sr-RS/zotero/csledit.dtd
new file mode 100644
index 000000000..289272aba
--- /dev/null
+++ b/chrome/locale/sr-RS/zotero/csledit.dtd
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/chrome/locale/sr-RS/zotero/cslpreview.dtd b/chrome/locale/sr-RS/zotero/cslpreview.dtd
new file mode 100644
index 000000000..04396166e
--- /dev/null
+++ b/chrome/locale/sr-RS/zotero/cslpreview.dtd
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/chrome/locale/sr-RS/zotero/preferences.dtd b/chrome/locale/sr-RS/zotero/preferences.dtd
index ac1193896..4eb48f484 100644
--- a/chrome/locale/sr-RS/zotero/preferences.dtd
+++ b/chrome/locale/sr-RS/zotero/preferences.dtd
@@ -12,8 +12,6 @@
-
-
@@ -125,8 +123,6 @@
-
-
@@ -164,6 +160,7 @@
+
@@ -204,6 +201,6 @@
-
-
+
+
diff --git a/chrome/locale/sr-RS/zotero/zotero.dtd b/chrome/locale/sr-RS/zotero/zotero.dtd
index 75ec7e0c0..88a397167 100644
--- a/chrome/locale/sr-RS/zotero/zotero.dtd
+++ b/chrome/locale/sr-RS/zotero/zotero.dtd
@@ -6,6 +6,8 @@
+
+
@@ -123,7 +125,7 @@
-
+
@@ -288,5 +290,3 @@
-
-
diff --git a/chrome/locale/sr-RS/zotero/zotero.properties b/chrome/locale/sr-RS/zotero/zotero.properties
index 6b6e064ba..aa3ddfe97 100644
--- a/chrome/locale/sr-RS/zotero/zotero.properties
+++ b/chrome/locale/sr-RS/zotero/zotero.properties
@@ -42,6 +42,7 @@ general.create=Направи
general.delete=Delete
general.moreInformation=More Information
general.seeForMoreInformation=Погледајте %S за више информација.
+general.open=Open %S
general.enable=Укључи
general.disable=Искључи
general.remove=Remove
@@ -203,6 +204,9 @@ pane.items.trash.multiple=Are you sure you want to move the selected items to th
pane.items.delete.title=Избриши
pane.items.delete=Да ли сте сигурни да желите избрисати изабрану ставку?
pane.items.delete.multiple=Да ли сте сигурни да желите избрисати изабране ставке?
+pane.items.remove.title=Remove from Collection
+pane.items.remove=Are you sure you want to remove the selected item from this collection?
+pane.items.remove.multiple=Are you sure you want to remove the selected items from this collection?
pane.items.menu.remove=Избаци изабрану ставку
pane.items.menu.remove.multiple=Избаци изабране ставке
pane.items.menu.moveToTrash=Move Item to Trash…
@@ -221,6 +225,7 @@ pane.items.menu.createParent=Create Parent Item
pane.items.menu.createParent.multiple=Create Parent Items
pane.items.menu.renameAttachments=Rename File from Parent Metadata
pane.items.menu.renameAttachments.multiple=Rename Files from Parent Metadata
+pane.items.showItemInLibrary=Show Item in Library
pane.items.letter.oneParticipant=Писмо за %S
pane.items.letter.twoParticipants=Писмо за %S и %S
@@ -968,3 +973,12 @@ firstRunGuidance.quickFormat=Type a title or author to search for a reference.\n
firstRunGuidance.quickFormatMac=Type a title or author to search for a reference.\n\nAfter you've made your selection, click the bubble or press Cmd-↓ to add page numbers, prefixes, or suffixes. You can also include a page number along with your search terms to add it directly.\n\nYou can edit citations directly in the word processor document.
firstRunGuidance.toolbarButton.new=Click here to open Zotero, or use the %S keyboard shortcut.
firstRunGuidance.toolbarButton.upgrade=The Zotero icon can now be found in the Firefox toolbar. Click the icon to open Zotero, or use the %S keyboard shortcut.
+
+styles.bibliography=Bibliography
+styles.editor.save=Save Citation Style
+styles.editor.warning.noItems=No items selected in Zotero.
+styles.editor.warning.parseError=Error parsing style:
+styles.editor.warning.renderError=Error generating citations and bibliography:
+styles.editor.output.individualCitations=Individual Citations
+styles.editor.output.singleCitation=Single Citation (with position "first")
+styles.preview.instructions=Select one or more items in Zotero and click the "Refresh" button to see how these items are rendered by the installed CSL citation styles.
diff --git a/chrome/locale/sv-SE/zotero/csledit.dtd b/chrome/locale/sv-SE/zotero/csledit.dtd
new file mode 100644
index 000000000..289272aba
--- /dev/null
+++ b/chrome/locale/sv-SE/zotero/csledit.dtd
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/chrome/locale/sv-SE/zotero/cslpreview.dtd b/chrome/locale/sv-SE/zotero/cslpreview.dtd
new file mode 100644
index 000000000..04396166e
--- /dev/null
+++ b/chrome/locale/sv-SE/zotero/cslpreview.dtd
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/chrome/locale/sv-SE/zotero/preferences.dtd b/chrome/locale/sv-SE/zotero/preferences.dtd
index 9afa9afe5..0b6609192 100644
--- a/chrome/locale/sv-SE/zotero/preferences.dtd
+++ b/chrome/locale/sv-SE/zotero/preferences.dtd
@@ -12,8 +12,6 @@
-
-
@@ -125,8 +123,6 @@
-
-
@@ -164,6 +160,7 @@
+
@@ -204,6 +201,6 @@
-
-
+
+
diff --git a/chrome/locale/sv-SE/zotero/zotero.dtd b/chrome/locale/sv-SE/zotero/zotero.dtd
index f3b23300d..193b8751d 100644
--- a/chrome/locale/sv-SE/zotero/zotero.dtd
+++ b/chrome/locale/sv-SE/zotero/zotero.dtd
@@ -1,11 +1,13 @@
-
-
+
+
+
+
@@ -103,7 +105,7 @@
-
+
@@ -138,9 +140,9 @@
-
-
-
+
+
+
@@ -154,7 +156,7 @@
-
+
@@ -288,5 +290,3 @@
-
-
diff --git a/chrome/locale/sv-SE/zotero/zotero.properties b/chrome/locale/sv-SE/zotero/zotero.properties
index 9580f56d6..67655a420 100644
--- a/chrome/locale/sv-SE/zotero/zotero.properties
+++ b/chrome/locale/sv-SE/zotero/zotero.properties
@@ -42,6 +42,7 @@ general.create=Skapa
general.delete=Radera
general.moreInformation=Mer information
general.seeForMoreInformation=Se %S för mer information.
+general.open=Open %S
general.enable=Aktivera
general.disable=Avaktivera
general.remove=Ta bort
@@ -203,6 +204,9 @@ pane.items.trash.multiple=Är du säker på att du vill flytta de valda källorn
pane.items.delete.title=Ta bort
pane.items.delete=Är du säker på att du vill ta bort den valda källan?
pane.items.delete.multiple=Är du säker på att du vill ta bort de valda källorna?
+pane.items.remove.title=Remove from Collection
+pane.items.remove=Are you sure you want to remove the selected item from this collection?
+pane.items.remove.multiple=Are you sure you want to remove the selected items from this collection?
pane.items.menu.remove=Ta bort vald källa
pane.items.menu.remove.multiple=Ta bort valda källor
pane.items.menu.moveToTrash=Flytta källa till papperskorgen…
@@ -221,6 +225,7 @@ pane.items.menu.createParent=Skapa överordnad rubrik från vald rubrik
pane.items.menu.createParent.multiple=Skapa överordnad rubrik från valda rubriker
pane.items.menu.renameAttachments=Byt namn på filen beroende på överordnad rubriks metadata
pane.items.menu.renameAttachments.multiple=Byt namn på filerna beroende på överordnad rubriks metadata
+pane.items.showItemInLibrary=Visa källa i bibliotek
pane.items.letter.oneParticipant=Brev till %S
pane.items.letter.twoParticipants=Brev till %S och %S
@@ -968,3 +973,12 @@ firstRunGuidance.quickFormat=Skriv in en titel eller författare för att söka
firstRunGuidance.quickFormatMac=Skriv in en titel eller författare för att söka bland referenserna.\n\nEfter att du har gjort ditt val, klicka i rutan eller tryck Ctrl-\u2193 för att lägga till sidnummer, prefix eller suffix. Du kan också lägga in ett sidnummer tillsammans med din sökning för att lägga till det direkt.\n\nDu kan redigera citeringen direkt i ordbehandlaren.
firstRunGuidance.toolbarButton.new=Klicka här för att öppna Zotero, eller använd %S kortkommandot.
firstRunGuidance.toolbarButton.upgrade=Zotero-ikonen ligger nu i Firefoxs verktygsrad. Klicka på ikonen för att öppna Zotero, eller använd %S kortkommandot.
+
+styles.bibliography=Källförteckning
+styles.editor.save=Spara referensstil
+styles.editor.warning.noItems=Inga källor markerade i Zotero.
+styles.editor.warning.parseError=Fel vid tolkning av stil:
+styles.editor.warning.renderError=Fel vid generering av citering och källförteckning.
+styles.editor.output.individualCitations=Individuella citeringar
+styles.editor.output.singleCitation=Enskild citering (med positionen "först")
+styles.preview.instructions=Markera en eller flera källor i Zotero och klicka på Uppdatera-knappen för att se hur dessa källor framställs i de installerade CSL-stilarna.
diff --git a/chrome/locale/th-TH/zotero/csledit.dtd b/chrome/locale/th-TH/zotero/csledit.dtd
new file mode 100644
index 000000000..289272aba
--- /dev/null
+++ b/chrome/locale/th-TH/zotero/csledit.dtd
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/chrome/locale/th-TH/zotero/cslpreview.dtd b/chrome/locale/th-TH/zotero/cslpreview.dtd
new file mode 100644
index 000000000..04396166e
--- /dev/null
+++ b/chrome/locale/th-TH/zotero/cslpreview.dtd
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/chrome/locale/th-TH/zotero/preferences.dtd b/chrome/locale/th-TH/zotero/preferences.dtd
index 8d51d7981..5111f1c44 100644
--- a/chrome/locale/th-TH/zotero/preferences.dtd
+++ b/chrome/locale/th-TH/zotero/preferences.dtd
@@ -12,8 +12,6 @@
-
-
@@ -125,8 +123,6 @@
-
-
@@ -164,6 +160,7 @@
+
@@ -204,6 +201,6 @@
-
-
+
+
diff --git a/chrome/locale/th-TH/zotero/zotero.dtd b/chrome/locale/th-TH/zotero/zotero.dtd
index f80dcfe24..d3f8663c4 100644
--- a/chrome/locale/th-TH/zotero/zotero.dtd
+++ b/chrome/locale/th-TH/zotero/zotero.dtd
@@ -6,6 +6,8 @@
+
+
@@ -123,7 +125,7 @@
-
+
@@ -288,5 +290,3 @@
-
-
diff --git a/chrome/locale/th-TH/zotero/zotero.properties b/chrome/locale/th-TH/zotero/zotero.properties
index a97095374..ce5b5f3e3 100644
--- a/chrome/locale/th-TH/zotero/zotero.properties
+++ b/chrome/locale/th-TH/zotero/zotero.properties
@@ -42,6 +42,7 @@ general.create=สร้าง
general.delete=Delete
general.moreInformation=More Information
general.seeForMoreInformation=ดู %S สำหรับข้อมูลเพิ่มเติม
+general.open=Open %S
general.enable=ใช้งาน
general.disable=ไม่ใช้งาน
general.remove=ลบออก
@@ -203,6 +204,9 @@ pane.items.trash.multiple=คุณแน่ใจหรือว่าคุณ
pane.items.delete.title=ลบ
pane.items.delete=คุณแน่ใจหรือว่าต้องการลบรายการที่เลือก?
pane.items.delete.multiple=คุณแน่ใจหรือว่าต้องการลบรายการที่เลือก?
+pane.items.remove.title=Remove from Collection
+pane.items.remove=Are you sure you want to remove the selected item from this collection?
+pane.items.remove.multiple=Are you sure you want to remove the selected items from this collection?
pane.items.menu.remove=ลบรายการที่เลือกอยู่
pane.items.menu.remove.multiple=ลบรายการที่เลือกอยู่
pane.items.menu.moveToTrash=Move Item to Trash…
@@ -221,6 +225,7 @@ pane.items.menu.createParent=สร้างรายการแม่จาก
pane.items.menu.createParent.multiple=สร้างรายการแม่จากรายการที่เลือก
pane.items.menu.renameAttachments=เปลี่ยนชื่อแฟ้มจากข้อมูลเมทาของรายการแม่
pane.items.menu.renameAttachments.multiple=เปลี่ยนชื่อแฟ้มจากข้อมูลเมทาของรายการแม่
+pane.items.showItemInLibrary=Show Item in Library
pane.items.letter.oneParticipant=จดหมายถึง %S
pane.items.letter.twoParticipants=จดหมายถึง %S และ %S
@@ -968,3 +973,12 @@ firstRunGuidance.quickFormat=พิมพ์ชื่อเรื่องหร
firstRunGuidance.quickFormatMac=พิมพ์ชื่อเรื่องหรือผู้แต่งเพื่อค้นหาเอกสารอ้างอิง\n\nหลังจากเลือกแล้ว ให้คลิกฟองหรือกด Cmd-\u2193 เพื่อเพิ่มเลขหน้า คำนำหน้าหรือคำตามหลัง คุณสามารถใส่เลขหน้าไปพร้อมกับคำที่ต้องการค้นหาได้โดยตรง\n\nคุณสามารถแก้ไขการอ้างอิงในโปรแกรมประมวลผลคำได้โดยตรง
firstRunGuidance.toolbarButton.new=Click here to open Zotero, or use the %S keyboard shortcut.
firstRunGuidance.toolbarButton.upgrade=The Zotero icon can now be found in the Firefox toolbar. Click the icon to open Zotero, or use the %S keyboard shortcut.
+
+styles.bibliography=Bibliography
+styles.editor.save=Save Citation Style
+styles.editor.warning.noItems=No items selected in Zotero.
+styles.editor.warning.parseError=Error parsing style:
+styles.editor.warning.renderError=Error generating citations and bibliography:
+styles.editor.output.individualCitations=Individual Citations
+styles.editor.output.singleCitation=Single Citation (with position "first")
+styles.preview.instructions=Select one or more items in Zotero and click the "Refresh" button to see how these items are rendered by the installed CSL citation styles.
diff --git a/chrome/locale/tr-TR/zotero/csledit.dtd b/chrome/locale/tr-TR/zotero/csledit.dtd
new file mode 100644
index 000000000..289272aba
--- /dev/null
+++ b/chrome/locale/tr-TR/zotero/csledit.dtd
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/chrome/locale/tr-TR/zotero/cslpreview.dtd b/chrome/locale/tr-TR/zotero/cslpreview.dtd
new file mode 100644
index 000000000..04396166e
--- /dev/null
+++ b/chrome/locale/tr-TR/zotero/cslpreview.dtd
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/chrome/locale/tr-TR/zotero/preferences.dtd b/chrome/locale/tr-TR/zotero/preferences.dtd
index f12571d57..c16f9c7b6 100644
--- a/chrome/locale/tr-TR/zotero/preferences.dtd
+++ b/chrome/locale/tr-TR/zotero/preferences.dtd
@@ -12,8 +12,6 @@
-
-
@@ -125,8 +123,6 @@
-
-
@@ -164,6 +160,7 @@
+
@@ -204,6 +201,6 @@
-
-
+
+
diff --git a/chrome/locale/tr-TR/zotero/zotero.dtd b/chrome/locale/tr-TR/zotero/zotero.dtd
index 089ce0e9f..26a5b93f8 100644
--- a/chrome/locale/tr-TR/zotero/zotero.dtd
+++ b/chrome/locale/tr-TR/zotero/zotero.dtd
@@ -6,6 +6,8 @@
+
+
@@ -123,7 +125,7 @@
-
+
@@ -288,5 +290,3 @@
-
-
diff --git a/chrome/locale/tr-TR/zotero/zotero.properties b/chrome/locale/tr-TR/zotero/zotero.properties
index cda07d1b6..bb5159b98 100644
--- a/chrome/locale/tr-TR/zotero/zotero.properties
+++ b/chrome/locale/tr-TR/zotero/zotero.properties
@@ -42,6 +42,7 @@ general.create=Oluştur
general.delete=Sil
general.moreInformation=Daha Bilgi
general.seeForMoreInformation=Daha fazla bilgi için bakınız: %S
+general.open=Open %S
general.enable=Etkinleştir:
general.disable=Seçilemez Kıl
general.remove=Kaldır
@@ -203,6 +204,9 @@ pane.items.trash.multiple=Seçili eserleri çöpe göndermeyi istediğinize emin
pane.items.delete.title=Sil
pane.items.delete=Seçili olan bu eseri silmek istediğinize emin misiniz?
pane.items.delete.multiple=Seçili olan bu eserleri silmek istediğinize emin misiniz?
+pane.items.remove.title=Remove from Collection
+pane.items.remove=Are you sure you want to remove the selected item from this collection?
+pane.items.remove.multiple=Are you sure you want to remove the selected items from this collection?
pane.items.menu.remove=Eseri Dermeden Sil
pane.items.menu.remove.multiple=Eserleri Dermeden Sil
pane.items.menu.moveToTrash=Eseri sil...
@@ -221,6 +225,7 @@ pane.items.menu.createParent=Üst Eser Oluştur.
pane.items.menu.createParent.multiple=Üst Eserler Oluştur
pane.items.menu.renameAttachments=Üstveriden dosyayı tekrar adlandır.
pane.items.menu.renameAttachments.multiple=Üstveriden dosyaları tekrar adlandır.
+pane.items.showItemInLibrary=Eseri Kitaplıkta Göster
pane.items.letter.oneParticipant=%S'ye mektup
pane.items.letter.twoParticipants=%S ve %S'ye mektup
@@ -365,7 +370,7 @@ itemFields.numberOfVolumes=Cilt Sayısı
itemFields.committee=Kurul
itemFields.assignee=Devralan
itemFields.patentNumber=Patent Numarası
-itemFields.priorityNumbers=Öncelik Sayısı
+itemFields.priorityNumbers=Öncelik Numarası
itemFields.issueDate=Yayın Tarihi
itemFields.references=Kaynakça
itemFields.legalStatus=Hukuki Durum
@@ -968,3 +973,12 @@ firstRunGuidance.quickFormat=Bir kaynak aramak için bir başlık ya da yazar ad
firstRunGuidance.quickFormatMac=Bir kaynak aramak için bir başlık ya da yazar adı yazınız.\n\nSeçiminizi yaptıktan sonra, sayfa numaraları, önekler ve sonekler eklemek için kabarcığa tıklayınız veya Cmd-\u2193'ya basınız. Ayrıca arama terimlerinize sayfa numarasını katarak, onları doğrudan ekleyebilirsiniz.\n\nGöndermelerinizi sözcük işlemcisi belgesinde doğrudan değiştirebilirsiniz.
firstRunGuidance.toolbarButton.new=Zotero'yu başlatmak için buraya tıklayınız, ya da klavye kısayolu olan %S'i kullanınız.
firstRunGuidance.toolbarButton.upgrade=Zotero simgesi, artık Firefox araç çubuğunda buulunabilir. Zotero'yu başlatmak için bu simgeye tıklayınız, ya da klavye kısayolu olan %S'i kullanınız.
+
+styles.bibliography=Bibliyografya
+styles.editor.save=Kaynakça Biçimini Kaydet
+styles.editor.warning.noItems=Zotero'da hiçbir eser seçilmedi.
+styles.editor.warning.parseError=Hata ayrıştırıcı stili:
+styles.editor.warning.renderError=Hata üreten göndermeler ve bibliyografyalar:
+styles.editor.output.individualCitations=Tek Tek Göndermeler
+styles.editor.output.singleCitation=Tek Gönderme ("birinci" sırada olan)
+styles.preview.instructions=Zotero'da bir ya da birden çok eser seçip "Yenile" düğmesine basarak, bu eserlerin, kurulmuş CSL gönderme stilleri aracılığıyla nasıl sunulacağını görebilirsiniz.
diff --git a/chrome/locale/uk-UA/zotero/about.dtd b/chrome/locale/uk-UA/zotero/about.dtd
index e86aec0d6..448023d9e 100644
--- a/chrome/locale/uk-UA/zotero/about.dtd
+++ b/chrome/locale/uk-UA/zotero/about.dtd
@@ -10,4 +10,4 @@
-
+
diff --git a/chrome/locale/uk-UA/zotero/csledit.dtd b/chrome/locale/uk-UA/zotero/csledit.dtd
new file mode 100644
index 000000000..289272aba
--- /dev/null
+++ b/chrome/locale/uk-UA/zotero/csledit.dtd
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/chrome/locale/uk-UA/zotero/cslpreview.dtd b/chrome/locale/uk-UA/zotero/cslpreview.dtd
new file mode 100644
index 000000000..04396166e
--- /dev/null
+++ b/chrome/locale/uk-UA/zotero/cslpreview.dtd
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/chrome/locale/uk-UA/zotero/preferences.dtd b/chrome/locale/uk-UA/zotero/preferences.dtd
index 65a4bfae0..3336ba66b 100644
--- a/chrome/locale/uk-UA/zotero/preferences.dtd
+++ b/chrome/locale/uk-UA/zotero/preferences.dtd
@@ -12,8 +12,6 @@
-
-
@@ -125,8 +123,6 @@
-
-
@@ -164,6 +160,7 @@
+
@@ -204,6 +201,6 @@
-
-
+
+
diff --git a/chrome/locale/uk-UA/zotero/standalone.dtd b/chrome/locale/uk-UA/zotero/standalone.dtd
index 1d889847e..4004bea74 100644
--- a/chrome/locale/uk-UA/zotero/standalone.dtd
+++ b/chrome/locale/uk-UA/zotero/standalone.dtd
@@ -44,7 +44,7 @@
-
+
diff --git a/chrome/locale/uk-UA/zotero/zotero.dtd b/chrome/locale/uk-UA/zotero/zotero.dtd
index 4741c9ce2..520cca23d 100644
--- a/chrome/locale/uk-UA/zotero/zotero.dtd
+++ b/chrome/locale/uk-UA/zotero/zotero.dtd
@@ -6,6 +6,8 @@
+
+
@@ -123,7 +125,7 @@
-
+
@@ -159,10 +161,10 @@
-
+
-
+
@@ -171,7 +173,7 @@
-
+
@@ -223,7 +225,7 @@
-
+
@@ -264,7 +266,7 @@
-
+
@@ -288,5 +290,3 @@
-
-
diff --git a/chrome/locale/uk-UA/zotero/zotero.properties b/chrome/locale/uk-UA/zotero/zotero.properties
index e0f8e79e6..9fc7eea22 100644
--- a/chrome/locale/uk-UA/zotero/zotero.properties
+++ b/chrome/locale/uk-UA/zotero/zotero.properties
@@ -42,6 +42,7 @@ general.create=Створити
general.delete=Видалити
general.moreInformation=Додаткова інформація
general.seeForMoreInformation=Дивись %S для отримання додаткової інформації.
+general.open=Open %S
general.enable=Включити
general.disable=Вимкнути
general.remove=Видалити
@@ -203,6 +204,9 @@ pane.items.trash.multiple=Ви впевнені, що бажаєте перем
pane.items.delete.title=Видалити
pane.items.delete=Ви впевнені, що бажаєте видалити вибраний документ?
pane.items.delete.multiple=Ви впевнені, що бажаєте видалити вибрані документи?
+pane.items.remove.title=Remove from Collection
+pane.items.remove=Are you sure you want to remove the selected item from this collection?
+pane.items.remove.multiple=Are you sure you want to remove the selected items from this collection?
pane.items.menu.remove=Видалити вибраний документ з колекції
pane.items.menu.remove.multiple=Видалити вибрані документи з колекції
pane.items.menu.moveToTrash=Перемістити документ до Кошику...
@@ -221,6 +225,7 @@ pane.items.menu.createParent=Створити батьківський доку
pane.items.menu.createParent.multiple=Створити батьківські документи
pane.items.menu.renameAttachments=Перейменувати файл за батьківськими метаданими
pane.items.menu.renameAttachments.multiple=Перейменувати файли за батьківськими метаданими
+pane.items.showItemInLibrary=Показати документ в бібліотеці
pane.items.letter.oneParticipant=Лист до %S
pane.items.letter.twoParticipants=Лист до %S та %S
@@ -968,3 +973,12 @@ firstRunGuidance.quickFormat=Введіть назву або автора дл
firstRunGuidance.quickFormatMac=Введіть назву або автора для пошуку посилання. \n\nПісля того як ви зробили свій вибір, натисніть виноску або натисніть Cmd-↓ щоб додати номери сторінок, префікси або суфікси. Ви можете також включити номер сторінки разом з умовами пошуку, щоб додати його безпосередньо. \n\nВи можете редагувати цитати прямо в документі текстового реактора.
firstRunGuidance.toolbarButton.new=Натисніть тут, щоб відкрити Zotero або використайте комбінацію клавіш %S.
firstRunGuidance.toolbarButton.upgrade=Значок Zotero тепер можна знайти на панелі інструментів Firefox. Клацніть по значку, щоб відкрити Zotero або використовуйте комбінацію клавіш %S.
+
+styles.bibliography=Список літератури
+styles.editor.save=Зберегти стиль цитування
+styles.editor.warning.noItems=Жодного документу не вибрано в Zotero.
+styles.editor.warning.parseError=Помилка при обробці стилю:
+styles.editor.warning.renderError=Помилка при створенні цитувань та списку літератури:
+styles.editor.output.individualCitations=Індивідуальні цитування
+styles.editor.output.singleCitation=Окреме цитування (з позиціює "перше")
+styles.preview.instructions=Виберіть один чи більше документів Zotero та натисніть кнопку "Оновити", щоб побачити, як ці документи будуть представлені відповідно до встановлених стилів цитування CSL.
diff --git a/chrome/locale/vi-VN/zotero/csledit.dtd b/chrome/locale/vi-VN/zotero/csledit.dtd
new file mode 100644
index 000000000..289272aba
--- /dev/null
+++ b/chrome/locale/vi-VN/zotero/csledit.dtd
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/chrome/locale/vi-VN/zotero/cslpreview.dtd b/chrome/locale/vi-VN/zotero/cslpreview.dtd
new file mode 100644
index 000000000..04396166e
--- /dev/null
+++ b/chrome/locale/vi-VN/zotero/cslpreview.dtd
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/chrome/locale/vi-VN/zotero/preferences.dtd b/chrome/locale/vi-VN/zotero/preferences.dtd
index 76a818609..c13e94fbf 100644
--- a/chrome/locale/vi-VN/zotero/preferences.dtd
+++ b/chrome/locale/vi-VN/zotero/preferences.dtd
@@ -12,8 +12,6 @@
-
-
@@ -125,8 +123,6 @@
-
-
@@ -164,6 +160,7 @@
+
@@ -204,6 +201,6 @@
-
-
+
+
diff --git a/chrome/locale/vi-VN/zotero/zotero.dtd b/chrome/locale/vi-VN/zotero/zotero.dtd
index f6ce9e60e..802d33da1 100644
--- a/chrome/locale/vi-VN/zotero/zotero.dtd
+++ b/chrome/locale/vi-VN/zotero/zotero.dtd
@@ -6,6 +6,8 @@
+
+
@@ -123,7 +125,7 @@
-
+
@@ -288,5 +290,3 @@
-
-
diff --git a/chrome/locale/vi-VN/zotero/zotero.properties b/chrome/locale/vi-VN/zotero/zotero.properties
index 68c4ecb33..703290e0a 100644
--- a/chrome/locale/vi-VN/zotero/zotero.properties
+++ b/chrome/locale/vi-VN/zotero/zotero.properties
@@ -42,6 +42,7 @@ general.create=Create
general.delete=Delete
general.moreInformation=More Information
general.seeForMoreInformation=See %S for more information.
+general.open=Open %S
general.enable=Enable
general.disable=Disable
general.remove=Remove
@@ -203,6 +204,9 @@ pane.items.trash.multiple=Are you sure you want to move the selected items to th
pane.items.delete.title=Xóa
pane.items.delete=Bạn có chắc bạn muốn xóa biểu ghi vừa chọn?
pane.items.delete.multiple=Bạn có chắc bạn muốn xóa những biểu ghi vừa chọn?
+pane.items.remove.title=Remove from Collection
+pane.items.remove=Are you sure you want to remove the selected item from this collection?
+pane.items.remove.multiple=Are you sure you want to remove the selected items from this collection?
pane.items.menu.remove=Xóa Biểu ghi vừa chọn
pane.items.menu.remove.multiple=Xóa các Biểu ghi vừa chọn
pane.items.menu.moveToTrash=Move Item to Trash…
@@ -221,6 +225,7 @@ pane.items.menu.createParent=Create Parent Item
pane.items.menu.createParent.multiple=Create Parent Items
pane.items.menu.renameAttachments=Rename File from Parent Metadata
pane.items.menu.renameAttachments.multiple=Rename Files from Parent Metadata
+pane.items.showItemInLibrary=Show Item in Library
pane.items.letter.oneParticipant=Thư gửi đến %S
pane.items.letter.twoParticipants=Thư gửi đến %S và %S
@@ -968,3 +973,12 @@ firstRunGuidance.quickFormat=Type a title or author to search for a reference.\n
firstRunGuidance.quickFormatMac=Type a title or author to search for a reference.\n\nAfter you've made your selection, click the bubble or press Cmd-↓ to add page numbers, prefixes, or suffixes. You can also include a page number along with your search terms to add it directly.\n\nYou can edit citations directly in the word processor document.
firstRunGuidance.toolbarButton.new=Click here to open Zotero, or use the %S keyboard shortcut.
firstRunGuidance.toolbarButton.upgrade=The Zotero icon can now be found in the Firefox toolbar. Click the icon to open Zotero, or use the %S keyboard shortcut.
+
+styles.bibliography=Bibliography
+styles.editor.save=Save Citation Style
+styles.editor.warning.noItems=No items selected in Zotero.
+styles.editor.warning.parseError=Error parsing style:
+styles.editor.warning.renderError=Error generating citations and bibliography:
+styles.editor.output.individualCitations=Individual Citations
+styles.editor.output.singleCitation=Single Citation (with position "first")
+styles.preview.instructions=Select one or more items in Zotero and click the "Refresh" button to see how these items are rendered by the installed CSL citation styles.
diff --git a/chrome/locale/zh-CN/zotero/csledit.dtd b/chrome/locale/zh-CN/zotero/csledit.dtd
new file mode 100644
index 000000000..289272aba
--- /dev/null
+++ b/chrome/locale/zh-CN/zotero/csledit.dtd
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/chrome/locale/zh-CN/zotero/cslpreview.dtd b/chrome/locale/zh-CN/zotero/cslpreview.dtd
new file mode 100644
index 000000000..04396166e
--- /dev/null
+++ b/chrome/locale/zh-CN/zotero/cslpreview.dtd
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/chrome/locale/zh-CN/zotero/preferences.dtd b/chrome/locale/zh-CN/zotero/preferences.dtd
index 370fa24a6..eb14d8b3a 100644
--- a/chrome/locale/zh-CN/zotero/preferences.dtd
+++ b/chrome/locale/zh-CN/zotero/preferences.dtd
@@ -12,8 +12,6 @@
-
-
@@ -125,8 +123,6 @@
-
-
@@ -164,6 +160,7 @@
+
@@ -204,6 +201,6 @@
-
-
+
+
diff --git a/chrome/locale/zh-CN/zotero/zotero.dtd b/chrome/locale/zh-CN/zotero/zotero.dtd
index f47d44b01..4a1d13665 100644
--- a/chrome/locale/zh-CN/zotero/zotero.dtd
+++ b/chrome/locale/zh-CN/zotero/zotero.dtd
@@ -6,6 +6,8 @@
+
+
@@ -123,7 +125,7 @@
-
+
@@ -285,8 +287,6 @@
-
-
-
-
-
+
+
+
diff --git a/chrome/locale/zh-CN/zotero/zotero.properties b/chrome/locale/zh-CN/zotero/zotero.properties
index a2b34a62d..5468fa15b 100644
--- a/chrome/locale/zh-CN/zotero/zotero.properties
+++ b/chrome/locale/zh-CN/zotero/zotero.properties
@@ -42,6 +42,7 @@ general.create=创建
general.delete=删除
general.moreInformation=更多信息
general.seeForMoreInformation=查阅 %S 获取更多信息.
+general.open=Open %S
general.enable=启用
general.disable=禁用
general.remove=移除
@@ -195,14 +196,17 @@ tagColorChooser.maxTags=每个库只允许为%S个标签标记颜色
pane.items.loading=正在加载条目列表...
pane.items.columnChooser.moreColumns=更多列
pane.items.columnChooser.secondarySort=二次排序 (%S)
-pane.items.attach.link.uri.unrecognized=Zotero did not recognize the URI you entered. Please check the address and try again.
-pane.items.attach.link.uri.file=To attach a link to a file, please use “%S”.
+pane.items.attach.link.uri.unrecognized=Zotero 无法识别你输入的 URI。请检查地址并再试一次。
+pane.items.attach.link.uri.file=若要将链接附加到文件中,请使用 “%S”。
pane.items.trash.title=移动到回收站
pane.items.trash=您确定要将选中的条目移动到回收站吗?
pane.items.trash.multiple=您确定要将选中的条目移动到回收站吗?
pane.items.delete.title=删除
pane.items.delete=您确定要删除所选的条目吗?
pane.items.delete.multiple=您确定要删除所选的条目吗?
+pane.items.remove.title=Remove from Collection
+pane.items.remove=Are you sure you want to remove the selected item from this collection?
+pane.items.remove.multiple=Are you sure you want to remove the selected items from this collection?
pane.items.menu.remove=从分类中移除条目
pane.items.menu.remove.multiple=从分类中移除条目
pane.items.menu.moveToTrash=删除条目…
@@ -221,6 +225,7 @@ pane.items.menu.createParent=创建父条目
pane.items.menu.createParent.multiple=创建父条目
pane.items.menu.renameAttachments=根据父级元数据重命名文件
pane.items.menu.renameAttachments.multiple=根据父级元数据重命名文件
+pane.items.showItemInLibrary=显示库中项目
pane.items.letter.oneParticipant=函至 %S
pane.items.letter.twoParticipants=函至 %S 和 %S
@@ -968,3 +973,12 @@ firstRunGuidance.quickFormat=键入一个标题或作者搜索特定的参考文
firstRunGuidance.quickFormatMac=键入一个标题或作者搜索特定的参考文献.\n\n一旦选中, 点击气泡或按下 Cmd-↓ 添加页码, 前缀或后缀.您也可以将页码直接包含在你的搜索条目中, 然后直接添加.\n\n您可以在文字处理程序中直接编辑引文.
firstRunGuidance.toolbarButton.new=点击这里打开Zotero,或者使用快捷键 %S 。
firstRunGuidance.toolbarButton.upgrade=Zotero图标可以在Firefox工具栏找到。点击图标打开Zotero,或者使用快捷键 %S 。
+
+styles.bibliography=参考书目
+styles.editor.save=保存引文样式
+styles.editor.warning.noItems=没有在 Zotero 中选定项目。
+styles.editor.warning.parseError=解析样式时出错:
+styles.editor.warning.renderError=生成引文和参考书目出错:
+styles.editor.output.individualCitations=个别引文
+styles.editor.output.singleCitation=单引文 (位于 "第一")
+styles.preview.instructions=在 Zotero 中选择一个或多个项并单击 "刷新" 按钮,以查看这些项目用已安装的 CSL 引文样式呈现。
diff --git a/chrome/locale/zh-TW/zotero/csledit.dtd b/chrome/locale/zh-TW/zotero/csledit.dtd
new file mode 100644
index 000000000..289272aba
--- /dev/null
+++ b/chrome/locale/zh-TW/zotero/csledit.dtd
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/chrome/locale/zh-TW/zotero/cslpreview.dtd b/chrome/locale/zh-TW/zotero/cslpreview.dtd
new file mode 100644
index 000000000..04396166e
--- /dev/null
+++ b/chrome/locale/zh-TW/zotero/cslpreview.dtd
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/chrome/locale/zh-TW/zotero/preferences.dtd b/chrome/locale/zh-TW/zotero/preferences.dtd
index 4dd3d1268..77894a811 100644
--- a/chrome/locale/zh-TW/zotero/preferences.dtd
+++ b/chrome/locale/zh-TW/zotero/preferences.dtd
@@ -12,8 +12,6 @@
-
-
@@ -125,8 +123,6 @@
-
-
@@ -164,6 +160,7 @@
+
@@ -204,6 +201,6 @@
-
-
+
+
diff --git a/chrome/locale/zh-TW/zotero/zotero.dtd b/chrome/locale/zh-TW/zotero/zotero.dtd
index e12921f40..002feac3a 100644
--- a/chrome/locale/zh-TW/zotero/zotero.dtd
+++ b/chrome/locale/zh-TW/zotero/zotero.dtd
@@ -6,6 +6,8 @@
+
+
@@ -123,7 +125,7 @@
-
+
@@ -288,5 +290,3 @@
-
-
diff --git a/chrome/locale/zh-TW/zotero/zotero.properties b/chrome/locale/zh-TW/zotero/zotero.properties
index 956a95951..31f2adfb1 100644
--- a/chrome/locale/zh-TW/zotero/zotero.properties
+++ b/chrome/locale/zh-TW/zotero/zotero.properties
@@ -42,6 +42,7 @@ general.create=建立
general.delete=刪除
general.moreInformation=更多資訊
general.seeForMoreInformation=更多資訊請看 %S。
+general.open=Open %S
general.enable=啟用
general.disable=停用
general.remove=移除
@@ -203,6 +204,9 @@ pane.items.trash.multiple=確定要將所選眾項目移到垃圾筒?
pane.items.delete.title=刪除
pane.items.delete=確定要刪除所選項目嗎?
pane.items.delete.multiple=確定要刪除所選眾項目嗎?
+pane.items.remove.title=Remove from Collection
+pane.items.remove=Are you sure you want to remove the selected item from this collection?
+pane.items.remove.multiple=Are you sure you want to remove the selected items from this collection?
pane.items.menu.remove=從文獻庫移除項目
pane.items.menu.remove.multiple=從文獻庫移除眾項目
pane.items.menu.moveToTrash=將項目移到垃圾筒…
@@ -221,6 +225,7 @@ pane.items.menu.createParent=建立上層(parent)項目
pane.items.menu.createParent.multiple=建立眾上層(parent)項目
pane.items.menu.renameAttachments=以上層屬性資料重新命名
pane.items.menu.renameAttachments.multiple=以上層屬性資料重新命名
+pane.items.showItemInLibrary=Show Item in Library
pane.items.letter.oneParticipant=寄給 %S 的信件
pane.items.letter.twoParticipants=寄給 %S 及 %S 的信件
@@ -968,3 +973,12 @@ firstRunGuidance.quickFormat=輸入標題或作者以找出參考文獻條。\n\
firstRunGuidance.quickFormatMac=輸入標題或作者以找出參考文獻條。\n\n選擇後,按橢圓泡或按 Ctrl-↓ 以加入頁碼或前綴或後綴。可在待找字後加上頁碼,產生無前後綴的引用文獻條。\n\n也可在文書處理器直接編輯引用文獻條。
firstRunGuidance.toolbarButton.new=按此以開啟 Zotero,或用 %S 快鍵。
firstRunGuidance.toolbarButton.upgrade=Firefox 工具列上可看到 Zotero 圖示了。按圖示以開啟 Zotero,或用 %S 快鍵。
+
+styles.bibliography=Bibliography
+styles.editor.save=Save Citation Style
+styles.editor.warning.noItems=No items selected in Zotero.
+styles.editor.warning.parseError=Error parsing style:
+styles.editor.warning.renderError=Error generating citations and bibliography:
+styles.editor.output.individualCitations=Individual Citations
+styles.editor.output.singleCitation=Single Citation (with position "first")
+styles.preview.instructions=Select one or more items in Zotero and click the "Refresh" button to see how these items are rendered by the installed CSL citation styles.
diff --git a/chrome/skin/default/zotero/overlay.css b/chrome/skin/default/zotero/overlay.css
index 42841a75f..df0a6e098 100644
--- a/chrome/skin/default/zotero/overlay.css
+++ b/chrome/skin/default/zotero/overlay.css
@@ -1,7 +1,11 @@
-#zotero-status-image
-{
+#zotero-status-image {
width: 16px;
height: 16px;
+ margin-right: 3px;
+}
+
+#zotero-status-image:not(.translate):not(:hover) {
+ filter: grayscale(100%);
}
#zotero-pane
@@ -513,7 +517,6 @@
#zotero-tb-sync-error, #zotero-tb-sync-error[mode=warning]
{
list-style-image: url(chrome://zotero/skin/error.png);
- margin-right: -5px;
}
#zotero-tb-sync-error[mode=error]
diff --git a/chrome/skin/default/zotero/preferences.css b/chrome/skin/default/zotero/preferences.css
index 080b8d4d0..b04a4182c 100644
--- a/chrome/skin/default/zotero/preferences.css
+++ b/chrome/skin/default/zotero/preferences.css
@@ -73,7 +73,7 @@ grid row hbox:first-child
}
-#showIn radio, #statusBarIcon radio
+#showIn radio
{
width: 120px;
}
@@ -83,11 +83,6 @@ grid row hbox:first-child
margin-right: 20px;
}
-#statusBarIcon radio .radio-icon
-{
- margin-left: 6px;
-}
-
/*
* Sync pane
@@ -241,25 +236,20 @@ grid row hbox:first-child
height: 250px;
}
-/* Shortcut Keys pane */
-#zotero-prefpane-keys row
-{
- -moz-box-align: center;
-}
-
#styleManager-updated
{
width: 105px;
}
-#zotero-prefpane-keys textbox
+/* Shortcut Keys pane */
+#zotero-prefpane-advanced-keys-tab row
{
- margin-left: -1px;
+ -moz-box-align: center;
}
-#zotero-prefpane-keys checkbox
+#zotero-prefpane-advanced-keys-tab textbox
{
- margin: .75em 0;
+ margin-left: -1px;
}
treechildren::-moz-tree-checkbox {
diff --git a/chrome/skin/default/zotero/treeitem-webpage@2x.png b/chrome/skin/default/zotero/treeitem-webpage@2x.png
new file mode 100644
index 000000000..ba7bc2ef7
Binary files /dev/null and b/chrome/skin/default/zotero/treeitem-webpage@2x.png differ
diff --git a/chrome/skin/default/zotero/zotero-z-16px-australis.svg b/chrome/skin/default/zotero/zotero-z-16px-australis.svg
deleted file mode 100644
index d79f02392..000000000
--- a/chrome/skin/default/zotero/zotero-z-16px-australis.svg
+++ /dev/null
@@ -1,65 +0,0 @@
-
-
-
diff --git a/chrome/skin/default/zotero/zotero-z-32px-australis.svg b/chrome/skin/default/zotero/zotero-z-32px-australis.svg
index b0e1bdb19..bd61c3756 100644
--- a/chrome/skin/default/zotero/zotero-z-32px-australis.svg
+++ b/chrome/skin/default/zotero/zotero-z-32px-australis.svg
@@ -3,6 +3,10 @@