Merge branch '4.0'
This commit is contained in:
commit
3071b8093b
40 changed files with 278 additions and 234 deletions
|
@ -1745,7 +1745,7 @@
|
|||
this._addCreatorRow = false;
|
||||
|
||||
//Filter out bad names
|
||||
var nameArray = [tempName for each(tempName in rawNameArray) if(tempName)];
|
||||
var nameArray = rawNameArray.filter(name => name);
|
||||
|
||||
//If not adding names at the end of the creator list, make new creator
|
||||
//entries and then shift down existing creators.
|
||||
|
|
|
@ -346,7 +346,7 @@ var Zotero_File_Interface = new function() {
|
|||
// Add items to import collection
|
||||
if(importCollection) {
|
||||
yield Zotero.DB.executeTransaction(function* () {
|
||||
yield importCollection.addItems([item.id for (item of translation.newItems)]);
|
||||
yield importCollection.addItems(translation.newItems.map(item => item.id));
|
||||
for(let i=0; i<translation.newCollections.length; i++) {
|
||||
let collection = translation.newCollections[i];
|
||||
collection.parent = importCollection.id;
|
||||
|
@ -427,6 +427,7 @@ var Zotero_File_Interface = new function() {
|
|||
|
||||
// add text (or HTML source)
|
||||
if(!asHTML) {
|
||||
cslEngine = style.getCiteProc(locale);
|
||||
var bibliography = Zotero.Cite.makeFormattedBibliographyOrCitationList(cslEngine, items, "text", asCitations);
|
||||
}
|
||||
var str = Components.classes["@mozilla.org/supports-string;1"].
|
||||
|
@ -454,7 +455,10 @@ var Zotero_File_Interface = new function() {
|
|||
getService(Components.interfaces.nsIClipboard);
|
||||
|
||||
var style = Zotero.Styles.get(style).getCiteProc(locale);
|
||||
var citation = {"citationItems":[{id:item.id} for each(item in items)], properties:{}};
|
||||
var citation = {
|
||||
citationItems: items.map(item => ({ id: item.id })),
|
||||
properties: {}
|
||||
};
|
||||
|
||||
// add HTML
|
||||
var bibliography = style.previewCitationCluster(citation, [], [], "html");
|
||||
|
|
|
@ -99,7 +99,7 @@ var Zotero_Bibliography_Dialog = new function () {
|
|||
_addButton.disabled = true;
|
||||
_removeButton.disabled = false;
|
||||
_updateRevertButtonStatus();
|
||||
[_itemList.toggleItemSelection(item) for each(item in itemsToSelect)];
|
||||
itemsToSelect.forEach(item => _itemList.toggleItemSelection(item));
|
||||
_itemList.ensureIndexIsVisible(itemsToSelect[0]);
|
||||
}
|
||||
_suppressAllSelectEvents = false;
|
||||
|
|
|
@ -303,9 +303,13 @@ var Zotero_QuickFormat = new function () {
|
|||
citedItemsMatchingSearch = [];
|
||||
for(var i=0, iCount=citedItems.length; i<iCount; i++) {
|
||||
// Generate a string to search for each item
|
||||
var item = citedItems[i],
|
||||
itemStr = [creator.ref.firstName+" "+creator.ref.lastName for (creator of item.getCreators())];
|
||||
itemStr = itemStr.concat([item.getField("title"), item.getField("date", true, true).substr(0, 4)]).join(" ");
|
||||
let item = citedItems[i];
|
||||
let itemStr = item.getCreators()
|
||||
.map(creator => {
|
||||
creator.ref.firstName + " " + creator.ref.lastName
|
||||
})
|
||||
.concat([item.getField("title"), item.getField("date", true, true).substr(0, 4)])
|
||||
.join(" ");
|
||||
|
||||
// See if words match
|
||||
for(var j=0, jCount=splits.length; j<jCount; j++) {
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 8bb0efff37b7d4c8ddbdf47cfe46ecf9a7c891fa
|
||||
Subproject commit eb8b393e10b5990dcb73b24e8f3a305f74907a27
|
|
@ -231,7 +231,7 @@ To add a new preference:
|
|||
hidden = false;
|
||||
}
|
||||
|
||||
[engine.hidden = hidden for each(engine in Zotero.LocateManager.getEngines())];
|
||||
Zotero.LocateManager.getEngines().forEach(engine => engine.hidden = hidden);
|
||||
|
||||
refreshLocateEnginesList();
|
||||
}
|
||||
|
|
|
@ -528,7 +528,7 @@ var Zotero_RTFScan = new function() {
|
|||
}
|
||||
Zotero.debug(cslCitations);
|
||||
|
||||
itemIDs = [itemID for(itemID in itemIDs)];
|
||||
itemIDs = Object.keys(itemIDs);
|
||||
Zotero.debug(itemIDs);
|
||||
|
||||
// prepare the list of rendered citations
|
||||
|
|
|
@ -95,13 +95,17 @@ var Zotero_CSL_Preview = new function() {
|
|||
|
||||
// Generate multiple citations
|
||||
var citations = styleEngine.previewCitationCluster(
|
||||
{"citationItems":[{"id":item.id} for each(item in items)], "properties":{}},
|
||||
[], [], "html");
|
||||
{
|
||||
citationItems: items.map(item => ({ id: item.id })),
|
||||
properties: {}
|
||||
},
|
||||
[], [], "html"
|
||||
);
|
||||
|
||||
// Generate bibliography
|
||||
var bibliography = '';
|
||||
if(style.hasBibliography) {
|
||||
styleEngine.updateItems([item.id for each(item in items)]);
|
||||
styleEngine.updateItems(items.map(item => item.id));
|
||||
bibliography = Zotero.Cite.makeFormattedBibliography(styleEngine, "html");
|
||||
}
|
||||
|
||||
|
|
|
@ -73,7 +73,7 @@ Zotero.Cite = {
|
|||
*/
|
||||
"makeFormattedBibliographyOrCitationList":function(cslEngine, items, format, asCitationList) {
|
||||
cslEngine.setOutputFormat(format);
|
||||
cslEngine.updateItems([item.id for each(item in items)]);
|
||||
cslEngine.updateItems(items.map(item => item.id));
|
||||
|
||||
if(!asCitationList) {
|
||||
var bibliography = Zotero.Cite.makeFormattedBibliography(cslEngine, format);
|
||||
|
@ -297,7 +297,7 @@ Zotero.Cite = {
|
|||
var slashIndex;
|
||||
|
||||
if(id instanceof Array) {
|
||||
return [Zotero.Cite.getItem(anId) for each(anId in id)];
|
||||
return id.map(anId => Zotero.Cite.getItem(anId));
|
||||
} else if(typeof id === "string" && (slashIndex = id.indexOf("/")) !== -1) {
|
||||
var sessionID = id.substr(0, slashIndex),
|
||||
session = Zotero.Integration.sessions[sessionID],
|
||||
|
|
|
@ -100,9 +100,14 @@ Zotero.Connector_Types = new function() {
|
|||
var itemType = itemTypes[idOrName];
|
||||
if(!itemType) return false;
|
||||
|
||||
var itemCreatorTypes = itemType[3]/* creatorTypes */,
|
||||
n = itemCreatorTypes.length,
|
||||
outputTypes = new Array(n);
|
||||
var itemCreatorTypes = itemType[3]; // creatorTypes
|
||||
if (!itemCreatorTypes
|
||||
// TEMP: 'note' and 'attachment' have an array containing false
|
||||
|| (itemCreatorTypes.length == 1 && !itemCreatorTypes[0])) {
|
||||
return [];
|
||||
}
|
||||
var n = itemCreatorTypes.length;
|
||||
var outputTypes = new Array(n);
|
||||
|
||||
for(var i=0; i<n; i++) {
|
||||
var creatorType = creatorTypes[itemCreatorTypes[i]];
|
||||
|
@ -115,7 +120,7 @@ Zotero.Connector_Types = new function() {
|
|||
this.getPrimaryIDForType = function(idOrName) {
|
||||
var itemType = itemTypes[idOrName];
|
||||
if(!itemType) return false;
|
||||
return itemTypes[3]/* creatorTypes */[0];
|
||||
return itemType[3]/* creatorTypes */[0];
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
@ -363,7 +363,8 @@ Zotero.ItemFields = new function() {
|
|||
this.isLong = function (field) {
|
||||
field = this.getName(field);
|
||||
var fields = [
|
||||
'title'
|
||||
'title',
|
||||
'bookTitle'
|
||||
];
|
||||
return fields.indexOf(field) != -1;
|
||||
}
|
||||
|
|
|
@ -468,7 +468,7 @@ Zotero.Fulltext = Zotero.FullText = new function(){
|
|||
yield Zotero.DB.queryAsync("DELETE FROM indexing.fulltextWords");
|
||||
while (words.length > 0) {
|
||||
chunk = words.splice(0, 100);
|
||||
Zotero.DB.queryAsync('INSERT INTO indexing.fulltextWords (word) ' + ['SELECT ?' for (word of chunk)].join(' UNION '), chunk);
|
||||
yield Zotero.DB.queryAsync('INSERT INTO indexing.fulltextWords (word) ' + chunk.map(x => 'SELECT ?').join(' UNION '), chunk);
|
||||
}
|
||||
yield Zotero.DB.queryAsync('INSERT OR IGNORE INTO fulltextWords (word) SELECT word FROM indexing.fulltextWords');
|
||||
yield Zotero.DB.queryAsync('DELETE FROM fulltextItemWords WHERE itemID = ?', [itemID]);
|
||||
|
|
|
@ -1554,7 +1554,7 @@ Zotero.Integration.Fields.prototype.updateDocument = function(forceCitations, fo
|
|||
Zotero.Integration.Fields.prototype._updateDocument = function(forceCitations, forceBibliography,
|
||||
ignoreCitationChanges) {
|
||||
if(this.progressCallback) {
|
||||
var nFieldUpdates = [i for(i in this._session.updateIndices)].length;
|
||||
var nFieldUpdates = Object.keys(this._session.updateIndices).length;
|
||||
if(this._session.bibliographyHasChanged || forceBibliography) {
|
||||
nFieldUpdates += this._bibliographyFields.length*5;
|
||||
}
|
||||
|
@ -1989,11 +1989,13 @@ Zotero.Integration.CitationEditInterface.prototype = {
|
|||
*/
|
||||
"_getItems":function() {
|
||||
var citationsByItemID = this._session.citationsByItemID;
|
||||
var ids = [itemID for(itemID in citationsByItemID)
|
||||
if(citationsByItemID[itemID] && citationsByItemID[itemID].length
|
||||
var ids = Object.keys(citationsByItemID).filter(itemID => {
|
||||
return citationsByItemID[itemID]
|
||||
&& citationsByItemID[itemID].length
|
||||
// Exclude the present item
|
||||
&& (citationsByItemID[itemID].length > 1
|
||||
|| citationsByItemID[itemID][0].properties.zoteroIndex !== this._fieldIndex))];
|
||||
|| citationsByItemID[itemID][0].properties.zoteroIndex !== this._fieldIndex);
|
||||
});
|
||||
|
||||
// Sort all previously cited items at top, and all items cited later at bottom
|
||||
var fieldIndex = this._fieldIndex;
|
||||
|
@ -2566,7 +2568,7 @@ Zotero.Integration.Session.prototype.getBibliography = function() {
|
|||
Zotero.Integration.Session.prototype.updateUncitedItems = function() {
|
||||
// There appears to be a bug somewhere here.
|
||||
if(Zotero.Debug.enabled) Zotero.debug("Integration: style.updateUncitedItems("+this.uncitedItems.toSource()+")");
|
||||
this.style.updateUncitedItems([parseInt(i) for(i in this.uncitedItems)]);
|
||||
this.style.updateUncitedItems(Object.keys(this.uncitedItems).map(i => parseInt(i)));
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -2663,9 +2665,9 @@ Zotero.Integration.Session.prototype._updateCitations = function() {
|
|||
|
||||
if(Zotero.Debug.enabled) {
|
||||
Zotero.debug("Integration: Indices of new citations");
|
||||
Zotero.debug([key for(key in this.newIndices)]);
|
||||
Zotero.debug(Object.keys(this.newIndices));
|
||||
Zotero.debug("Integration: Indices of updated citations");
|
||||
Zotero.debug([key for(key in this.updateIndices)]);
|
||||
Zotero.debug(Object.keys(this.updateIndices));
|
||||
}
|
||||
|
||||
|
||||
|
@ -2821,8 +2823,9 @@ Zotero.Integration.Session.prototype.getBibliographyData = function() {
|
|||
}
|
||||
|
||||
// look for custom bibliography entries
|
||||
bibliographyData.custom = [[this.uriMap.getURIsForItemID(id), this.customBibliographyText[id]]
|
||||
for(id in this.customBibliographyText)];
|
||||
bibliographyData.custom = Object.keys(this.customBibliographyText)
|
||||
.map(id => [this.uriMap.getURIsForItemID(id), this.customBibliographyText[id]]);
|
||||
|
||||
|
||||
if(bibliographyData.uncited || bibliographyData.custom) {
|
||||
return JSON.stringify(bibliographyData);
|
||||
|
|
|
@ -2244,7 +2244,7 @@ Zotero.ItemTreeView.prototype.onColumnPickerShowing = function (event) {
|
|||
moreMenuPopup.setAttribute('anonid', id + '-popup');
|
||||
|
||||
let treecols = menupopup.parentNode.parentNode;
|
||||
let subs = [x.getAttribute('label') for (x of treecols.getElementsByAttribute('submenu', 'true'))];
|
||||
let subs = treecols.getElementsByAttribute('submenu', 'true').map(x => x.getAttribute('label'));
|
||||
|
||||
var moreItems = [];
|
||||
|
||||
|
|
|
@ -42,8 +42,8 @@ Zotero.LocateManager = new function() {
|
|||
_jsonFile = _getLocateFile();
|
||||
|
||||
if(_jsonFile.exists()) {
|
||||
_locateEngines = [new LocateEngine(engine)
|
||||
for each(engine in JSON.parse(Zotero.File.getContents(_jsonFile)))];
|
||||
_locateEngines = JSON.parse(Zotero.File.getContents(_jsonFile))
|
||||
.map(engine => new LocateEngine(engine));
|
||||
} else {
|
||||
this.restoreDefaultEngines();
|
||||
}
|
||||
|
@ -67,8 +67,10 @@ Zotero.LocateManager = new function() {
|
|||
/**
|
||||
* Gets all default search engines (not currently used)
|
||||
*/
|
||||
this.getDefaultEngines = function() [new LocateEngine(engine)
|
||||
for each(engine in JSON.parse(Zotero.File.getContentsFromURL(_getDefaultFile())))];
|
||||
this.getDefaultEngines = function () {
|
||||
return JSON.parse(Zotero.File.getContentsFromURL(_getDefaultFile()))
|
||||
.map(engine => new LocateEngine(engine));
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns an array of all search engines
|
||||
|
@ -78,7 +80,9 @@ Zotero.LocateManager = new function() {
|
|||
/**
|
||||
* Returns an array of all search engines visible that should be visible in the dropdown
|
||||
*/
|
||||
this.getVisibleEngines = function() [engine for each(engine in _locateEngines) if(!engine.hidden)];
|
||||
this.getVisibleEngines = function () {
|
||||
return _locateEngines.filter(engine => !engine.hidden);
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns an engine with a specific name
|
||||
|
@ -285,12 +289,12 @@ Zotero.LocateManager = new function() {
|
|||
return false;
|
||||
}
|
||||
|
||||
return [encodeURIComponent(val) for each(val in itemOpenURL["rft."+param])];
|
||||
return itemOpenURL["rft."+param].map(val => encodeURIComponent(val));
|
||||
} else if(ns === "info:ofi/fmt:kev:mtx:ctx") {
|
||||
if(!OPENURL_CONTEXT_MAPPINGS[param] || !itemOpenURL[OPENURL_CONTEXT_MAPPINGS[param]]) {
|
||||
return false;
|
||||
}
|
||||
return [encodeURIComponent(val) for each(val in itemOpenURL[OPENURL_CONTEXT_MAPPINGS[param]])];
|
||||
return itemOpenURL[OPENURL_CONTEXT_MAPPINGS[param]].map(val => encodeURIComponent(val));
|
||||
} else if(ns === "http://www.zotero.org/namespaces/openSearch#") {
|
||||
if(param === "openURL") {
|
||||
var ctx = Zotero.OpenURL.createContextObject(item, "1.0");
|
||||
|
@ -457,7 +461,10 @@ Zotero.LocateManager = new function() {
|
|||
} else {
|
||||
var result = _lookupParam(item, itemAsOpenURL, me, m[1], m[2]);
|
||||
if(result) {
|
||||
paramsToAdd = paramsToAdd.concat([encodeURIComponent(param)+"="+encodeURIComponent(val) for(val in result)]);
|
||||
paramsToAdd = paramsToAdd.concat(
|
||||
result.map(val =>
|
||||
encodeURIComponent(param) + "=" + encodeURIComponent(val))
|
||||
);
|
||||
} else if(m[3]) { // if no param and it wasn't optional, return
|
||||
return null;
|
||||
}
|
||||
|
|
|
@ -51,7 +51,9 @@ Zotero.Proxies = new function() {
|
|||
Zotero.MIMETypeHandler.addObserver(function(ch) { me.observe(ch) });
|
||||
|
||||
var rows = yield Zotero.DB.queryAsync("SELECT * FROM proxies");
|
||||
Zotero.Proxies.proxies = [(yield this.newProxyFromRow(row)) for each(row in rows)];
|
||||
Zotero.Proxies.proxies = yield Zotero.Promise.all(
|
||||
rows.map(row => this.newProxyFromRow(row))
|
||||
);
|
||||
|
||||
for each(var proxy in Zotero.Proxies.proxies) {
|
||||
for each(var host in proxy.hosts) {
|
||||
|
@ -741,7 +743,9 @@ Zotero.Proxy.prototype._loadFromRow = Zotero.Promise.coroutine(function* (row) {
|
|||
this.multiHost = !!row.multiHost;
|
||||
this.autoAssociate = !!row.autoAssociate;
|
||||
this.scheme = row.scheme;
|
||||
this.hosts = Zotero.DB.columnQueryAsync("SELECT hostname FROM proxyHosts WHERE proxyID = ? ORDER BY hostname", row.proxyID);
|
||||
this.hosts = yield Zotero.DB.columnQueryAsync(
|
||||
"SELECT hostname FROM proxyHosts WHERE proxyID = ? ORDER BY hostname", row.proxyID
|
||||
);
|
||||
this.compileRegexp();
|
||||
});
|
||||
|
||||
|
|
|
@ -383,14 +383,18 @@ Zotero.QuickCopy = new function() {
|
|||
// Copy citations if shift key pressed
|
||||
if (modified) {
|
||||
var csl = Zotero.Styles.get(format.id).getCiteProc(locale);
|
||||
csl.updateItems([item.id for each(item in items)]);
|
||||
var citation = {citationItems:[{id:item.id} for each(item in items)], properties:{}};
|
||||
csl.updateItems(items.map(item => item.id));
|
||||
var citation = {
|
||||
citationItems: items.map(item => item.id),
|
||||
properties: {}
|
||||
};
|
||||
var html = csl.previewCitationCluster(citation, [], [], "html");
|
||||
var text = csl.previewCitationCluster(citation, [], [], "text");
|
||||
} else {
|
||||
var style = Zotero.Styles.get(format.id);
|
||||
var cslEngine = style.getCiteProc(locale);
|
||||
var html = Zotero.Cite.makeFormattedBibliographyOrCitationList(cslEngine, items, "html");
|
||||
cslEngine = style.getCiteProc(locale);
|
||||
var text = Zotero.Cite.makeFormattedBibliographyOrCitationList(cslEngine, items, "text");
|
||||
}
|
||||
|
||||
|
|
|
@ -518,7 +518,7 @@ Zotero.Server.Connector.Progress.prototype = {
|
|||
*/
|
||||
"init":function(data, sendResponseCallback) {
|
||||
sendResponseCallback(200, "application/json",
|
||||
JSON.stringify([Zotero.Server.Connector.AttachmentProgressManager.getProgressForID(id) for each(id in data)]));
|
||||
JSON.stringify(data.map(id => Zotero.Server.Connector.AttachmentProgressManager.getProgressForID(id))));
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
@ -606,10 +606,10 @@ Zotero.Style = function (style, path) {
|
|||
|
||||
//In CSL 0.8.1, the "term" attribute on cs:category stored both
|
||||
//citation formats and fields.
|
||||
this.categories = [category.getAttribute("term")
|
||||
for each(category in Zotero.Utilities.xpath(doc,
|
||||
'/csl:style/csl:info[1]/csl:category', Zotero.Styles.ns))
|
||||
if(category.hasAttribute("term"))];
|
||||
this.categories = Zotero.Utilities.xpath(
|
||||
doc, '/csl:style/csl:info[1]/csl:category', Zotero.Styles.ns)
|
||||
.filter(category => category.hasAttribute("term"))
|
||||
.map(category => category.getAttribute("term"));
|
||||
} else {
|
||||
//CSL 1.0 introduced a dedicated "citation-format" attribute on cs:category
|
||||
this.categories = Zotero.Utilities.xpathText(doc,
|
||||
|
|
|
@ -125,7 +125,11 @@ Zotero.Utilities.Internal = {
|
|||
}
|
||||
|
||||
// convert the binary hash data to a hex string.
|
||||
return [toHexString(hash.charCodeAt(i)) for (i in hash)].join("");
|
||||
var hexStr = "";
|
||||
for (let i = 0; i < hash.length; i++) {
|
||||
hexStr += toHexString(hash.charCodeAt(i));
|
||||
}
|
||||
return hexStr;
|
||||
},
|
||||
|
||||
|
||||
|
@ -166,10 +170,11 @@ Zotero.Utilities.Internal = {
|
|||
}
|
||||
// Hex string
|
||||
else {
|
||||
deferred.resolve(
|
||||
[toHexString(hash.charCodeAt(i))
|
||||
for (i in hash)].join("")
|
||||
);
|
||||
let hexStr;
|
||||
for (let i = 0; i < hash.length; i++) {
|
||||
hexStr += toHexString(hash.charCodeAt(i));
|
||||
}
|
||||
deferred.resolve(hexStr);
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
|
@ -409,7 +409,8 @@ Components.utils.import("resource://gre/modules/osfile.jsm");
|
|||
try {
|
||||
var messages = {};
|
||||
Services.console.getMessageArray(messages, {});
|
||||
_startupErrors = [msg for each(msg in messages.value) if(_shouldKeepError(msg))];
|
||||
_startupErrors = Object.keys(messages.value).map(i => messages[i])
|
||||
.filter(msg => _shouldKeepError(msg));
|
||||
} catch(e) {
|
||||
Zotero.logError(e);
|
||||
}
|
||||
|
@ -2822,8 +2823,9 @@ Zotero.UnresponsiveScriptIndicator = new function() {
|
|||
Zotero.WebProgressFinishListener = function(onFinish) {
|
||||
this.onStateChange = function(wp, req, stateFlags, status) {
|
||||
//Zotero.debug('onStageChange: ' + stateFlags);
|
||||
if ((stateFlags & Components.interfaces.nsIWebProgressListener.STATE_STOP)
|
||||
&& (stateFlags & Components.interfaces.nsIWebProgressListener.STATE_IS_NETWORK)) {
|
||||
if (stateFlags & Components.interfaces.nsIWebProgressListener.STATE_STOP
|
||||
&& stateFlags & Components.interfaces.nsIWebProgressListener.STATE_IS_REQUEST
|
||||
&& stateFlags & Components.interfaces.nsIWebProgressListener.STATE_IS_NETWORK) {
|
||||
onFinish();
|
||||
}
|
||||
}
|
||||
|
|
|
@ -127,7 +127,7 @@ app.standalone=Zotero Standalone
|
|||
app.firefox=Zotero til Firefox
|
||||
|
||||
startupError=Der opstod en fejl under opstarten af Zotero.
|
||||
startupError.databaseInUse=Din Zotero-database er allerede i brug. Det er ikke muligt at lade flere kopier af Zotoro bruge databasen samtidig.
|
||||
startupError.databaseInUse=Din Zotero-database er allerede i brug. Det er ikke muligt at lade flere kopier af Zotero bruge databasen samtidig.
|
||||
startupError.closeStandalone=Hvis Zotero Standalone er aktiv, så luk den ned og genstart Firefox.
|
||||
startupError.closeFirefox=Hvis Zotero er aktiv i Firefox, så luk Zotero ned der og genstart Zotero Standalone.
|
||||
startupError.databaseCannotBeOpened=Zotero-databasen kan ikke åbnes.
|
||||
|
@ -482,7 +482,7 @@ save.link.error=Der opstod en fejl, mens henvisningen blev forsøgt gemt.
|
|||
save.error.cannotMakeChangesToCollection=Du kan ikke lave ændringer til den valgte samling.
|
||||
save.error.cannotAddFilesToCollection=Du kan ikke tilføje filer til den valgte samling.
|
||||
|
||||
ingester.saveToZotero=Gem i Zotoro
|
||||
ingester.saveToZotero=Gem i Zotero
|
||||
ingester.saveToZoteroUsing=Gem i Zotero med brug af "%S"
|
||||
ingester.saveToZoteroAsWebPageWithSnapshot=Gem i Zotero som webside (med øjebliksbillede)
|
||||
ingester.saveToZoteroAsWebPageWithoutSnapshot=Gem i Zotero som webside (uden øjebliksbillede)
|
||||
|
|
|
@ -107,7 +107,7 @@
|
|||
<!ENTITY zotero.preferences.quickCopy.siteEditor.domainPath "ドメイン/パス">
|
||||
<!ENTITY zotero.preferences.quickCopy.siteEditor.domainPath.example "(例:wikipedia.org)">
|
||||
<!ENTITY zotero.preferences.quickCopy.siteEditor.outputFormat "出力形式">
|
||||
<!ENTITY zotero.preferences.quickCopy.siteEditor.locale "Language">
|
||||
<!ENTITY zotero.preferences.quickCopy.siteEditor.locale "言語">
|
||||
<!ENTITY zotero.preferences.quickCopy.dragLimit "アイテム数が右の値より大きい時はドラッグ時のクイックコピーを無効化する:">
|
||||
|
||||
<!ENTITY zotero.preferences.prefpane.cite "引用">
|
||||
|
@ -145,7 +145,7 @@
|
|||
<!ENTITY zotero.preferences.proxies.desc_after_link "をご覧ください。">
|
||||
<!ENTITY zotero.preferences.proxies.transparent "プロキシ転送を有効化する">
|
||||
<!ENTITY zotero.preferences.proxies.autoRecognize "自動的にプロキシ・リソースを認識する">
|
||||
<!ENTITY zotero.preferences.proxies.showRedirectNotification "Show notification when redirecting through a proxy">
|
||||
<!ENTITY zotero.preferences.proxies.showRedirectNotification "プロキシを通じて転送するときに通知を表示する">
|
||||
<!ENTITY zotero.preferences.proxies.disableByDomain "私のドメイン名が次を含むときは、プロキシ転送を無効化する: ">
|
||||
<!ENTITY zotero.preferences.proxies.configured "設定済みのプロキシ">
|
||||
<!ENTITY zotero.preferences.proxies.hostname "ホスト名">
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<!ENTITY zotero.general.optional "(Opcjonalne)">
|
||||
<!ENTITY zotero.general.note "Notatka:">
|
||||
<!ENTITY zotero.general.note "Uwaga:">
|
||||
<!ENTITY zotero.general.selectAll "Zaznacz wszystkie">
|
||||
<!ENTITY zotero.general.deselectAll "Odznacz wszystkie">
|
||||
<!ENTITY zotero.general.edit "Edytuj">
|
||||
|
@ -131,10 +131,10 @@
|
|||
|
||||
<!ENTITY zotero.toolbar.newNote "Nowa notatka">
|
||||
<!ENTITY zotero.toolbar.note.standalone "Nowa osobna notatka">
|
||||
<!ENTITY zotero.toolbar.note.child "Nowa potomna notatka">
|
||||
<!ENTITY zotero.toolbar.lookup "Lookup by Identifier...">
|
||||
<!ENTITY zotero.toolbar.attachment.linked "Odnośnik do pliku">
|
||||
<!ENTITY zotero.toolbar.attachment.add "Zapisz kopię pliku">
|
||||
<!ENTITY zotero.toolbar.note.child "Dodaj notatkę potomną">
|
||||
<!ENTITY zotero.toolbar.lookup "Wyszukaj za pomocą identyfikatora...">
|
||||
<!ENTITY zotero.toolbar.attachment.linked "Odnośnik do pliku...">
|
||||
<!ENTITY zotero.toolbar.attachment.add "Zapisz kopię pliku...">
|
||||
<!ENTITY zotero.toolbar.attachment.weblink "Zapisz odnośnik do aktywnej strony">
|
||||
<!ENTITY zotero.toolbar.attachment.snapshot "Zrób zrzut ekranu aktywnej strony">
|
||||
|
||||
|
@ -146,8 +146,8 @@
|
|||
<!ENTITY zotero.tagSelector.clearVisible "Odznacz widoczne">
|
||||
<!ENTITY zotero.tagSelector.clearAll "Odznacz wszystkie">
|
||||
<!ENTITY zotero.tagSelector.assignColor "Przypisz kolor...">
|
||||
<!ENTITY zotero.tagSelector.renameTag "Zmień nazwę etykiety">
|
||||
<!ENTITY zotero.tagSelector.deleteTag "Usuń etykietę">
|
||||
<!ENTITY zotero.tagSelector.renameTag "Zmień nazwę etykiety...">
|
||||
<!ENTITY zotero.tagSelector.deleteTag "Usuń etykietę...">
|
||||
|
||||
<!ENTITY zotero.tagColorChooser.title "Wybierz kolor i pozycję etykiety">
|
||||
<!ENTITY zotero.tagColorChooser.color "Kolor:">
|
||||
|
@ -155,7 +155,7 @@
|
|||
<!ENTITY zotero.tagColorChooser.setColor "Ustaw kolor">
|
||||
<!ENTITY zotero.tagColorChooser.removeColor "Usuń kolor">
|
||||
|
||||
<!ENTITY zotero.lookup.description "Wprowadź ISBN, DOI lub PMID aby wyszukać w oknie poniżej.">
|
||||
<!ENTITY zotero.lookup.description "Aby wyszukać, wprowadź w oknie poniżej ISBN, DOI lub PMID.">
|
||||
<!ENTITY zotero.lookup.button.search "Wyszukiwanie">
|
||||
|
||||
<!ENTITY zotero.selectitems.title "Zaznacz elementy">
|
||||
|
@ -181,14 +181,14 @@
|
|||
|
||||
<!ENTITY zotero.progress.title "Postęp">
|
||||
|
||||
<!ENTITY zotero.exportOptions.title "Eksportuj">
|
||||
<!ENTITY zotero.exportOptions.title "Eksportuj...">
|
||||
<!ENTITY zotero.exportOptions.format.label "Format:">
|
||||
<!ENTITY zotero.exportOptions.translatorOptions.label "Opcje translacji">
|
||||
|
||||
<!ENTITY zotero.charset.label "Kodowanie znaków">
|
||||
<!ENTITY zotero.moreEncodings.label "Więcej kodowań">
|
||||
|
||||
<!ENTITY zotero.citation.keepSorted.label "Zachowuj źródło posortowane">
|
||||
<!ENTITY zotero.citation.keepSorted.label "Zachowuj źródła posortowane">
|
||||
|
||||
<!ENTITY zotero.citation.suppressAuthor.label "Ukryj autora">
|
||||
<!ENTITY zotero.citation.prefix.label "Prefiks:">
|
||||
|
@ -208,8 +208,8 @@
|
|||
<!ENTITY zotero.annotate.toolbar.unhighlight.label "Zdejmij wyróżnienie">
|
||||
|
||||
<!ENTITY zotero.integration.prefs.displayAs.label "Wyświetl cytowania jako:">
|
||||
<!ENTITY zotero.integration.prefs.footnotes.label "Przypis dolny">
|
||||
<!ENTITY zotero.integration.prefs.endnotes.label "Przypis końcowy">
|
||||
<!ENTITY zotero.integration.prefs.footnotes.label "Przypisy dolne">
|
||||
<!ENTITY zotero.integration.prefs.endnotes.label "Przypisy końcowe">
|
||||
|
||||
<!ENTITY zotero.integration.prefs.formatUsing.label "Używany format:">
|
||||
<!ENTITY zotero.integration.prefs.bookmarks.label "Zakładki">
|
||||
|
|
|
@ -78,12 +78,12 @@ upgrade.dbUpdateRequired=Baza danych Zotero musi zostać zaktualizowana.
|
|||
upgrade.integrityCheckFailed=Twoja baza danych Zotero musi zostać naprawiona zanim aktualizacja będzie mogła być dokończona.
|
||||
upgrade.loadDBRepairTool=Wczytaj narzędzie naprawy bazy danych
|
||||
upgrade.couldNotMigrate=Zotero nie mógł przenieść wszystkich wymaganych plików.\nZamknij wszystkie otwarte pliki załączników i uruchom ponownie %S aby spróbować powtórzyć aktualizację.
|
||||
upgrade.couldNotMigrate.restart=Jeśli ponownie zobaczysz ten komunikat, uruchom ponownie swój komputer.
|
||||
upgrade.couldNotMigrate.restart=Jeśli wciąż widzisz ten komunikat, uruchom ponownie swój komputer.
|
||||
|
||||
errorReport.reportError=Zgłoś błąd...
|
||||
errorReport.reportErrors=Zgłoś błędy...
|
||||
errorReport.reportInstructions=Można zgłosić ten błąd wybierając "%S" z menu "Funkcje".
|
||||
errorReport.followingReportWillBeSubmitted=Następujący raport będzie wysłany:
|
||||
errorReport.followingReportWillBeSubmitted=Zostanie wysłany następujący raport:
|
||||
errorReport.noErrorsLogged=Nie zalogowano żadnych błędów od czasu uruchomienia %S.
|
||||
errorReport.advanceMessage=Wciśnij %S aby wysłać raport do programistów Zotero.
|
||||
errorReport.stepsToReproduce=Kroki do odtworzenia:
|
||||
|
@ -934,7 +934,7 @@ proxies.notification.settings.button=Ustawienia Proxy...
|
|||
proxies.recognized.message=Dodanie tego serwera proxy umożliwi Zotero rozpoznawanie elementów z jego stron i automatycznie przekierowanie przyszłych żądań z %1$S przez %2$S.
|
||||
proxies.recognized.add=Dodaj proxy
|
||||
|
||||
recognizePDF.noOCR=Plik PDF nie zawiera tekstu OCR.
|
||||
recognizePDF.noOCR=Plik PDF nie zawiera rozpoznanego tekstu OCR.
|
||||
recognizePDF.couldNotRead=Nie można odczytać tekstu z pliku PDF.
|
||||
recognizePDF.noMatches=Nie znaleziono pasujących referencji
|
||||
recognizePDF.fileNotFound=Nie znaleziono pliku
|
||||
|
@ -994,7 +994,7 @@ standalone.addonInstallationFailed.title=Instalacja dodatku nie powiodła się
|
|||
standalone.addonInstallationFailed.body=Nie można zainstalować dodatku "%S". Może on być niezgodny z tą wersją samodzielnego programu Zotero.
|
||||
standalone.rootWarning=Wygląda na to, że Zotero został uruchomiony z konta administratora systemu. Jest to niebezpieczne i może spowodować nieprawidłowe funkcjonowanie Zotero w przyszłości, jeśli zostanie uruchomiony z twojego konta użytkownika.\n\nJeśli chcesz zainstalować automatyczne uaktualnienie, zmodyfikuj uprawnienia katalogu z programem Zotero tak, aby mieć prawo zapisu w tym katalogu ze swojego konta użytkownika.
|
||||
standalone.rootWarning.exit=Wyjście
|
||||
standalone.rootWarning.continue=Kontynuuj
|
||||
standalone.rootWarning.continue=Dalej
|
||||
standalone.updateMessage=Dostępna jest zalecana aktualizacja, ale nie masz uprawnień do jej zainstalowania. Aby dokonać automatycznej aktualizacji, zmodyfikuj uprawnienia katalogu, w którym znajduje się program Zotero, tak aby mieć w nim prawo zapisu.
|
||||
|
||||
connector.error.title=Błąd połączenia Zotero
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<!ENTITY zotero.director "Diretor:">
|
||||
<!ENTITY zotero.directors "Diretores:">
|
||||
<!ENTITY zotero.developers "Desenvolvedores:">
|
||||
<!ENTITY zotero.alumni "Colaboradores anteriores">
|
||||
<!ENTITY zotero.alumni "Alumni:">
|
||||
<!ENTITY zotero.about.localizations "Localizações:">
|
||||
<!ENTITY zotero.about.additionalSoftware "Software de terceiros e Padrões:">
|
||||
<!ENTITY zotero.executiveProducer "Produtor Executivo:">
|
||||
|
|
|
@ -15,11 +15,11 @@
|
|||
<!ENTITY saveCmd.label "Salvar...">
|
||||
<!ENTITY saveCmd.key "S">
|
||||
<!ENTITY saveCmd.accesskey "A">
|
||||
<!ENTITY pageSetupCmd.label "Configurar página...">
|
||||
<!ENTITY pageSetupCmd.label "Configuração da página...">
|
||||
<!ENTITY pageSetupCmd.accesskey "U">
|
||||
<!ENTITY printCmd.label "Imprimir...">
|
||||
<!ENTITY printCmd.key "P">
|
||||
<!ENTITY printCmd.accesskey "U">
|
||||
<!ENTITY printCmd.accesskey "P">
|
||||
<!ENTITY closeCmd.label "Fechar">
|
||||
<!ENTITY closeCmd.key "W">
|
||||
<!ENTITY closeCmd.accesskey "C">
|
||||
|
@ -31,7 +31,7 @@
|
|||
|
||||
<!ENTITY editMenu.label "Editar">
|
||||
<!ENTITY editMenu.accesskey "E">
|
||||
<!ENTITY undoCmd.label "Anular">
|
||||
<!ENTITY undoCmd.label "Desfazer">
|
||||
<!ENTITY undoCmd.key "Z">
|
||||
<!ENTITY undoCmd.accesskey "U">
|
||||
<!ENTITY redoCmd.label "Refazer">
|
||||
|
|
|
@ -801,9 +801,9 @@ sync.error.invalidLogin.text=Serverul de sincronizare Zotero nu a acceptat numel
|
|||
sync.error.enterPassword=Te rog să introduci o parolă.
|
||||
sync.error.loginManagerInaccessible=Zotero nu poate accesa informațiile tale de autentificare.
|
||||
sync.error.checkMasterPassword=Dacă folosiți o parolă master în %S, fiți sigur că ați introdus-o cu succes.
|
||||
sync.error.corruptedLoginManager=This could also be due to a corrupted %1$S logins database. To check, close %1$S, remove cert8.db, key3.db, and logins.json 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 logins database.
|
||||
sync.error.loginManagerCorrupted2=Close %1$S, remove cert8.db, key3.db, and logins.json from your %2$S profile directory, and re-enter your Zotero login information in the Sync pane of the Zotero preferences.
|
||||
sync.error.corruptedLoginManager=Aceasta s-ar putea de asemenea datora unei autentificări corupte %1$S la baza de date. Pentru a verifica, închide %1$S, șterge cert8.db, key3.db și logins.json din directorul de profil %1$S și reintrodu informațiile tale de autentificare Zotero în panoul Sincronizare din Preferințele Zotero.
|
||||
sync.error.loginManagerCorrupted1=Zotero nu poate accesa informațiile tale de autentificare, din cauza unei autentificări corupte %S la baza de date.
|
||||
sync.error.loginManagerCorrupted2=Închide %1$S, șterge cert8.db, key3.db și logins.json din directorul de profil %2$S și reintrodu informațiile tale de autentificare Zotero în panoul Sincronizare din Preferințele Zotero.
|
||||
sync.error.syncInProgress=O operație de sincronizare este deja în curs.
|
||||
sync.error.syncInProgress.wait=Așteaptă ca sincronizarea precedentă să se încheie sau repornește %S.
|
||||
sync.error.writeAccessLost=Nu mai ai acces pentru scriere în grupul Zotero '%S', iar înregistrările pe care le-ai adăugat sau editat nu pot fi sincronizate cu serverul.
|
||||
|
|
|
@ -801,9 +801,9 @@ sync.error.invalidLogin.text=Synchronizačný server Zotero neprijal vaše uží
|
|||
sync.error.enterPassword=Prosím zdajte heslo.
|
||||
sync.error.loginManagerInaccessible=Zotero nemá prístup k vašim prihlasovacím údajom.
|
||||
sync.error.checkMasterPassword=Ak používate hlavné heslo v %S, ubezpečte sa, že ste ho zadali úspešne.
|
||||
sync.error.corruptedLoginManager=This could also be due to a corrupted %1$S logins database. To check, close %1$S, remove cert8.db, key3.db, and logins.json 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 logins database.
|
||||
sync.error.loginManagerCorrupted2=Close %1$S, remove cert8.db, key3.db, and logins.json from your %2$S profile directory, and re-enter your Zotero login information in the Sync pane of the Zotero preferences.
|
||||
sync.error.corruptedLoginManager=Toto sa mohlo stať kvôli poškodeniu prihlasovacej databázy %1$Su. Pre kontrolu, zatvorte %1$S, vymažte súbory cert8.db, key3.db a logins.json z priečinka s vaším profilom vo %1$Se. Potom zadajte vaše prihlasovacie údaje v záložke Synchronizácia v predvoľbách Zotero.
|
||||
sync.error.loginManagerCorrupted1=Zotero nemá prístup k vašim prihlasovacím údajom, pravdepodobne kvôli poškodeniu prihlasovacej databázy %Su.
|
||||
sync.error.loginManagerCorrupted2=Zatvorte %1$S, vymažte súbory cert8.db, key3.db a logins.json z priečinka s vaším profilom vo %2$Se. Potom zadajte vaše prihlasovacie údaje v záložke Synchronizácia v predvoľbách Zotero.
|
||||
sync.error.syncInProgress=Sychronizácia už prebieha.
|
||||
sync.error.syncInProgress.wait=Počkajte, kým sa predchádzajúca synchronizácia ukončí a reštartujte Firefox.
|
||||
sync.error.writeAccessLost=Do skupiny "%S" už nemáte právo zapisovať. Súbory, ktoré ste pridali alebo upravili nie je možné synchronizovať so serverom.
|
||||
|
|
|
@ -251,8 +251,8 @@ pane.item.duplicates.onlySameItemType=Жокменти для об'єднанн
|
|||
|
||||
pane.item.changeType.title=Змінити тип документу
|
||||
pane.item.changeType.text=Ви впевнені, що бажаєте змінити тип документу?\n\nНаступні поля будуть втрачені.
|
||||
pane.item.defaultFirstName=перший
|
||||
pane.item.defaultLastName=останній
|
||||
pane.item.defaultFirstName=ім'я
|
||||
pane.item.defaultLastName=прізвище
|
||||
pane.item.defaultFullName=повне ім'я
|
||||
pane.item.switchFieldMode.one=Переключити на одне поле
|
||||
pane.item.switchFieldMode.two=Переключити на два поля
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<!ENTITY zotero.preferences.title "Các tùy chọn của Zotero">
|
||||
|
||||
<!ENTITY zotero.preferences.default "Mặc định:">
|
||||
<!ENTITY zotero.preferences.items "các mục">
|
||||
<!ENTITY zotero.preferences.items "các mục tài liệu">
|
||||
<!ENTITY zotero.preferences.period ".">
|
||||
<!ENTITY zotero.preferences.settings "Các thiết lập">
|
||||
|
||||
|
@ -20,22 +20,22 @@
|
|||
<!ENTITY zotero.preferences.fontSize.notes "Cỡ chữ ghi chú:">
|
||||
|
||||
<!ENTITY zotero.preferences.miscellaneous "Các tùy chọn khác">
|
||||
<!ENTITY zotero.preferences.autoUpdate "Tự động kiểm tra cập nhật Bộ chuyển và Kiểu trích dẫn">
|
||||
<!ENTITY zotero.preferences.autoUpdate "Tự động kiểm tra các bộ chuyển đổi và kiểu trích dẫn có được cập nhật">
|
||||
<!ENTITY zotero.preferences.updateNow "Cập nhật ngay bây giờ">
|
||||
<!ENTITY zotero.preferences.reportTranslationFailure "Báo cáo các bộ biến đổi bị hỏng">
|
||||
<!ENTITY zotero.preferences.reportTranslationFailure "Báo cáo các bộ chuyển đổi bị hỏng">
|
||||
<!ENTITY zotero.preferences.zoteroDotOrgVersionHeader "Cho phép zotero.org điều chỉnh nội dung dựa trên phiên bản Zotero hiện tại">
|
||||
<!ENTITY zotero.preferences.zoteroDotOrgVersionHeader.tooltip "Nếu cho phép, phiên bản Zotero hiện tại sẽ được gộp vào các yêu cầu HTTP gửi tới zotero.org">
|
||||
<!ENTITY zotero.preferences.parseRISRefer "Dùng Zotero để tải xuống các tập tin Bib TeX/RIS/Refer files">
|
||||
<!ENTITY zotero.preferences.automaticSnapshots "Tự động tạo bản lưu khi tạo biểu ghi từ các trang web">
|
||||
<!ENTITY zotero.preferences.downloadAssociatedFiles "Tự động đính kèm các tập tin PDF và các tập tin liên đới khác khi lưu dữ các biểu ghi">
|
||||
<!ENTITY zotero.preferences.automaticTags "Tự động dùng các từ khóa và các tiêu đề, mục đề để gắn thẻ cho các biểu ghi">
|
||||
<!ENTITY zotero.preferences.trashAutoEmptyDaysPre "Tự động loại bỏ các mục trong Thùng rác đã xóa hơn">
|
||||
<!ENTITY zotero.preferences.zoteroDotOrgVersionHeader.tooltip "Nếu cho phép, số hiệu phiên bản Zotero hiện tại sẽ được gộp vào các yêu cầu HTTP gửi tới zotero.org">
|
||||
<!ENTITY zotero.preferences.parseRISRefer "Dùng Zotero để tải các tập tin Bib TeX/RIS/Refer">
|
||||
<!ENTITY zotero.preferences.automaticSnapshots "Tự động tạo ảnh chụp khi lưu tài liệu từ web">
|
||||
<!ENTITY zotero.preferences.downloadAssociatedFiles "Tự động đính kèm các tập tin PDF và các tập tin liên quan khác khi lưu tài liệu mới">
|
||||
<!ENTITY zotero.preferences.automaticTags "Tự động tạo tag cho các tài liệu bằng các từ khóa và các đề mục">
|
||||
<!ENTITY zotero.preferences.trashAutoEmptyDaysPre "Tự động loại bỏ các tài liệu trong Thùng rác đã xóa hơn">
|
||||
<!ENTITY zotero.preferences.trashAutoEmptyDaysPost "ngày trước đây">
|
||||
|
||||
<!ENTITY zotero.preferences.groups "Các nhóm">
|
||||
<!ENTITY zotero.preferences.groups.whenCopyingInclude "Thông tin của mục được sao chép giữa các thư viện:">
|
||||
<!ENTITY zotero.preferences.groups.whenCopyingInclude "Thông tin của tài liệu được sao chép giữa các thư viện:">
|
||||
<!ENTITY zotero.preferences.groups.childNotes "các ghi chú con">
|
||||
<!ENTITY zotero.preferences.groups.childFiles "các snapshot và tập tin được nhập khẩu">
|
||||
<!ENTITY zotero.preferences.groups.childFiles "các ảnh chụp và tập tin được nhập khẩu">
|
||||
<!ENTITY zotero.preferences.groups.childLinks "các liên kết con">
|
||||
<!ENTITY zotero.preferences.groups.tags "các tag">
|
||||
|
||||
|
@ -53,7 +53,7 @@
|
|||
<!ENTITY zotero.preferences.sync.createAccount "Tạo tài khoản">
|
||||
<!ENTITY zotero.preferences.sync.lostPassword "Quên mật khẩu?">
|
||||
<!ENTITY zotero.preferences.sync.syncAutomatically "Tự động đồng bộ">
|
||||
<!ENTITY zotero.preferences.sync.syncFullTextContent "Đồng bộ nội dung full-text">
|
||||
<!ENTITY zotero.preferences.sync.syncFullTextContent "Đồng bộ nội dung toàn văn">
|
||||
<!ENTITY zotero.preferences.sync.syncFullTextContent.desc "Zotero có thể đồng bộ nội dung full-text của các tập tin trong các thư viện Zotero của bạn với zotero.org và các thiết bị có liên kết khác, cho phép bạn dễ dàng tìm kiếm các tập tin của bạn khi bạn cần. Chỉ riêng bạn thấy được nội dung full-text của các tập tin của bạn.">
|
||||
<!ENTITY zotero.preferences.sync.about "Về đồng bộ">
|
||||
<!ENTITY zotero.preferences.sync.fileSyncing "Đồng bộ tập tin">
|
||||
|
@ -74,14 +74,14 @@
|
|||
<!ENTITY zotero.preferences.sync.reset.restoreFromServer.desc "Xóa toàn bộ dữ liệu Zotero cục bộ và phục hồi từ máy chủ đồng bộ.">
|
||||
<!ENTITY zotero.preferences.sync.reset.restoreToServer "Lưu lên máy chủ Zotero">
|
||||
<!ENTITY zotero.preferences.sync.reset.restoreToServer.desc "Xóa toàn bộ dữ liệu trên máy chủ và ghi đè bằng dữ liệu cục bộ.">
|
||||
<!ENTITY zotero.preferences.sync.reset.resetFileSyncHistory "Reset File Sync History">
|
||||
<!ENTITY zotero.preferences.sync.reset.resetFileSyncHistory.desc "Force checking of the storage server for all local attachment files.">
|
||||
<!ENTITY zotero.preferences.sync.reset "Reset">
|
||||
<!ENTITY zotero.preferences.sync.reset.button "Reset...">
|
||||
<!ENTITY zotero.preferences.sync.reset.resetFileSyncHistory "Thiết lập lại lịch sử đồng bộ tập tin">
|
||||
<!ENTITY zotero.preferences.sync.reset.resetFileSyncHistory.desc "Bắt buộc kiểm tra các tập tin đính kèm trên máy chủ lưu trữ.">
|
||||
<!ENTITY zotero.preferences.sync.reset "Thiết lập lại">
|
||||
<!ENTITY zotero.preferences.sync.reset.button "Thiết lập lại...">
|
||||
|
||||
|
||||
<!ENTITY zotero.preferences.prefpane.search "Tìm kiếm">
|
||||
<!ENTITY zotero.preferences.search.fulltextCache "Bộ nhớ đệm của Toàn văn tất cả các biểu ghi">
|
||||
<!ENTITY zotero.preferences.search.fulltextCache "Bộ nhớ đệm cho văn bản toàn văn">
|
||||
<!ENTITY zotero.preferences.search.pdfIndexing "Tạo chỉ mục cho PDF">
|
||||
<!ENTITY zotero.preferences.search.indexStats "Các Số liệu thống kê về Chỉ mục">
|
||||
|
||||
|
@ -95,86 +95,86 @@
|
|||
|
||||
<!ENTITY zotero.preferences.prefpane.export "Xuất khẩu">
|
||||
|
||||
<!ENTITY zotero.preferences.citationOptions.caption "Citation Options">
|
||||
<!ENTITY zotero.preferences.export.citePaperJournalArticleURL "Include URLs of paper articles in references">
|
||||
<!ENTITY zotero.preferences.export.citePaperJournalArticleURL.description "When this option is disabled, Zotero includes URLs when citing journal, magazine, and newspaper articles only if the article does not have a page range specified.">
|
||||
<!ENTITY zotero.preferences.citationOptions.caption "Các tùy chọn trích dẫn">
|
||||
<!ENTITY zotero.preferences.export.citePaperJournalArticleURL "Gộp các URL của bài báo trong các tham chiếu">
|
||||
<!ENTITY zotero.preferences.export.citePaperJournalArticleURL.description "Khi không cho phép tùy chọn này, Zotero sẽ chỉ gộp các URL khi trích dẫn các bài journal, magazine và newspaper không có vùng trang xác định">
|
||||
|
||||
<!ENTITY zotero.preferences.quickCopy.caption "Sao chép nhanh">
|
||||
<!ENTITY zotero.preferences.quickCopy.defaultOutputFormat "Định dạng mặc định của dữ liệu đầu ra:">
|
||||
<!ENTITY zotero.preferences.quickCopy.copyAsHTML "Copy as HTML">
|
||||
<!ENTITY zotero.preferences.quickCopy.macWarning "Chú ý: Định dạng rich-text sẽ bị mất khi dùng Mac OS X.">
|
||||
<!ENTITY zotero.preferences.quickCopy.copyAsHTML "Copy theo dạng HTML">
|
||||
<!ENTITY zotero.preferences.quickCopy.macWarning "Chú ý: Định dạng rich-text sẽ bị mất khi dùng trên Mac OS X.">
|
||||
<!ENTITY zotero.preferences.quickCopy.siteEditor.setings "Những thiết lập đặc thù cho từng Website:">
|
||||
<!ENTITY zotero.preferences.quickCopy.siteEditor.domainPath "Tên miền/Đường dẫn">
|
||||
<!ENTITY zotero.preferences.quickCopy.siteEditor.domainPath.example "(vd: wikipedia.org)">
|
||||
<!ENTITY zotero.preferences.quickCopy.siteEditor.outputFormat "Định dạng dữ liệu đầu ra">
|
||||
<!ENTITY zotero.preferences.quickCopy.siteEditor.locale "Language">
|
||||
<!ENTITY zotero.preferences.quickCopy.dragLimit "Disable Quick Copy when dragging more than">
|
||||
<!ENTITY zotero.preferences.quickCopy.siteEditor.locale "Ngôn ngữ">
|
||||
<!ENTITY zotero.preferences.quickCopy.dragLimit "Tắt copy nhanh khi kéo nhiều hơn">
|
||||
|
||||
<!ENTITY zotero.preferences.prefpane.cite "Cite">
|
||||
<!ENTITY zotero.preferences.cite.styles "Styles">
|
||||
<!ENTITY zotero.preferences.cite.wordProcessors "Word Processors">
|
||||
<!ENTITY zotero.preferences.cite.wordProcessors.noWordProcessorPluginsInstalled "No word processor plug-ins are currently installed.">
|
||||
<!ENTITY zotero.preferences.cite.wordProcessors.getPlugins "Get word processor plug-ins...">
|
||||
<!ENTITY zotero.preferences.prefpane.cite "Trích dẫn">
|
||||
<!ENTITY zotero.preferences.cite.styles "Các kiểu trích dẫn">
|
||||
<!ENTITY zotero.preferences.cite.wordProcessors "Các phần mềm soạn thảo">
|
||||
<!ENTITY zotero.preferences.cite.wordProcessors.noWordProcessorPluginsInstalled "Không có plug-in cho phần mềm soạn thảo nào đã được cài đặt.">
|
||||
<!ENTITY zotero.preferences.cite.wordProcessors.getPlugins "Tìm thêm plug-in cho phần mềm soạn thảo...">
|
||||
<!ENTITY zotero.preferences.cite.wordProcessors.getPlugins.url "http://www.zotero.org/support/word_processor_plugin_installation_for_zotero_2.1">
|
||||
<!ENTITY zotero.preferences.cite.wordProcessors.useClassicAddCitationDialog "Use classic Add Citation dialog">
|
||||
<!ENTITY zotero.preferences.cite.wordProcessors.useClassicAddCitationDialog "Dùng màn hình Thêm trích dẫn kiểu cũ">
|
||||
|
||||
<!ENTITY zotero.preferences.cite.styles.styleManager "Style Manager">
|
||||
<!ENTITY zotero.preferences.cite.styles.styleManager.title "Title">
|
||||
<!ENTITY zotero.preferences.cite.styles.styleManager.updated "Updated">
|
||||
<!ENTITY zotero.preferences.cite.styles.styleManager "Bộ quản lý kiểu trích dẫn">
|
||||
<!ENTITY zotero.preferences.cite.styles.styleManager.title "Tiêu đề">
|
||||
<!ENTITY zotero.preferences.cite.styles.styleManager.updated "Đã cập nhật">
|
||||
<!ENTITY zotero.preferences.cite.styles.styleManager.csl "CSL">
|
||||
<!ENTITY zotero.preferences.export.getAdditionalStyles "Get additional styles...">
|
||||
<!ENTITY zotero.preferences.export.getAdditionalStyles "Tìm thêm kiểu trích dẫn...">
|
||||
|
||||
<!ENTITY zotero.preferences.keys.openZotero "Mở/Đóng cửa sổ Zotero">
|
||||
<!ENTITY zotero.preferences.keys.saveToZotero "Save to Zotero (address bar icon)">
|
||||
<!ENTITY zotero.preferences.keys.saveToZotero "Lưu vào Zotero (biểu tượng thanh địa chỉ)">
|
||||
<!ENTITY zotero.preferences.keys.toggleFullscreen "Bật/Tắt chế độ Toàn-màn-hình">
|
||||
<!ENTITY zotero.preferences.keys.focusLibrariesPane "Focus Libraries Pane">
|
||||
<!ENTITY zotero.preferences.keys.focusLibrariesPane "Khung thư viện quan tâm">
|
||||
<!ENTITY zotero.preferences.keys.quicksearch "Tìm kiếm nhanh">
|
||||
<!ENTITY zotero.preferences.keys.newItem "Create a New Item">
|
||||
<!ENTITY zotero.preferences.keys.newNote "Create a New Note">
|
||||
<!ENTITY zotero.preferences.keys.newItem "Tạo tài liệu mới">
|
||||
<!ENTITY zotero.preferences.keys.newNote "Tạo ghi chú mới">
|
||||
<!ENTITY zotero.preferences.keys.toggleTagSelector "Bật/Tắt Bộ-chọn-thẻ">
|
||||
<!ENTITY zotero.preferences.keys.copySelectedItemCitationsToClipboard "Sao chép các trích dẫn vừa chọn vào clipboard">
|
||||
<!ENTITY zotero.preferences.keys.copySelectedItemsToClipboard "Sao chép các biểu ghi vừa chọn vào clipboard">
|
||||
<!ENTITY zotero.preferences.keys.importFromClipboard "Import from Clipboard">
|
||||
<!ENTITY zotero.preferences.keys.copySelectedItemCitationsToClipboard "Sao chép các trích dẫn đã chọn vào clipboard">
|
||||
<!ENTITY zotero.preferences.keys.copySelectedItemsToClipboard "Sao chép các tài liệu đã chọn vào clipboard">
|
||||
<!ENTITY zotero.preferences.keys.importFromClipboard "Nhập từ Clipboard">
|
||||
<!ENTITY zotero.preferences.keys.changesTakeEffect "Các thay đổi chỉ có hiệu lực trong các cửa sổ mới">
|
||||
|
||||
<!ENTITY zotero.preferences.prefpane.proxies "Proxies">
|
||||
<!ENTITY zotero.preferences.prefpane.proxies "Các Proxy">
|
||||
|
||||
<!ENTITY zotero.preferences.proxies.proxyOptions "Proxy Options">
|
||||
<!ENTITY zotero.preferences.proxies.desc_before_link "Zotero will transparently redirect requests through saved proxies. See the">
|
||||
<!ENTITY zotero.preferences.proxies.desc_link "proxy documentation">
|
||||
<!ENTITY zotero.preferences.proxies.desc_after_link "for more information.">
|
||||
<!ENTITY zotero.preferences.proxies.transparent "Transparently redirect requests through previously used proxies">
|
||||
<!ENTITY zotero.preferences.proxies.autoRecognize "Automatically recognize proxied resources">
|
||||
<!ENTITY zotero.preferences.proxies.showRedirectNotification "Show notification when redirecting through a proxy">
|
||||
<!ENTITY zotero.preferences.proxies.disableByDomain "Disable proxy redirection when my domain name contains ">
|
||||
<!ENTITY zotero.preferences.proxies.configured "Configured Proxies">
|
||||
<!ENTITY zotero.preferences.proxies.proxyOptions "Tùy chọn cho Proxy">
|
||||
<!ENTITY zotero.preferences.proxies.desc_before_link "Zotero sẽ tự chuyển các yêu cầu qua các proxy đã lưu. Xem">
|
||||
<!ENTITY zotero.preferences.proxies.desc_link "tài liệu proxy">
|
||||
<!ENTITY zotero.preferences.proxies.desc_after_link "để có thêm thông tin.">
|
||||
<!ENTITY zotero.preferences.proxies.transparent "Cho phép chuyển hướng qua proxy">
|
||||
<!ENTITY zotero.preferences.proxies.autoRecognize "Tự động xác lập thông tin Proxy">
|
||||
<!ENTITY zotero.preferences.proxies.showRedirectNotification "Hiện nhắc nhở khi chuyển thông tin qua proxy">
|
||||
<!ENTITY zotero.preferences.proxies.disableByDomain "Tắt chuyển thông thông tin qua proxy khi trong tên domain của tôi có chứa">
|
||||
<!ENTITY zotero.preferences.proxies.configured "Các proxy đã cấu hình">
|
||||
<!ENTITY zotero.preferences.proxies.hostname "Hostname">
|
||||
<!ENTITY zotero.preferences.proxies.scheme "Scheme">
|
||||
|
||||
<!ENTITY zotero.preferences.proxies.multiSite "Multi-Site">
|
||||
<!ENTITY zotero.preferences.proxies.autoAssociate "Automatically associate new hosts">
|
||||
<!ENTITY zotero.preferences.proxies.variables "You may use the following variables in your proxy scheme:">
|
||||
<!ENTITY zotero.preferences.proxies.h_variable "%h - The hostname of the proxied site (e.g., www.zotero.org)">
|
||||
<!ENTITY zotero.preferences.proxies.p_variable "%p - The path of the proxied page excluding the leading slash (e.g., about/index.html)">
|
||||
<!ENTITY zotero.preferences.proxies.d_variable "%d - The directory path (e.g., about/)">
|
||||
<!ENTITY zotero.preferences.proxies.f_variable "%f - The filename (e.g., index.html)">
|
||||
<!ENTITY zotero.preferences.proxies.a_variable "%a - Any string">
|
||||
<!ENTITY zotero.preferences.proxies.autoAssociate "Tự động liên kết với các host mới">
|
||||
<!ENTITY zotero.preferences.proxies.variables "Bạn có thể dùng các biến sau trong proxy scheme">
|
||||
<!ENTITY zotero.preferences.proxies.h_variable "%h - hostname của trang đã qua proxy (như www.zotero.org)">
|
||||
<!ENTITY zotero.preferences.proxies.p_variable "%p - đường dẫn của trang đã qua proxy không gồm các dấu / ở đầu (như about/index.html)">
|
||||
<!ENTITY zotero.preferences.proxies.d_variable "%d - Đường dẫn (như about/)">
|
||||
<!ENTITY zotero.preferences.proxies.f_variable "%f - Tên tập tin (như index.html)">
|
||||
<!ENTITY zotero.preferences.proxies.a_variable "%a - Một chuỗi ký tự">
|
||||
|
||||
<!ENTITY zotero.preferences.prefpane.advanced "Nâng cao">
|
||||
<!ENTITY zotero.preferences.advanced.filesAndFolders "Files and Folders">
|
||||
<!ENTITY zotero.preferences.advanced.keys "Shortcuts">
|
||||
<!ENTITY zotero.preferences.advanced.filesAndFolders "Các tập tin và thư mục">
|
||||
<!ENTITY zotero.preferences.advanced.keys "Các lối tắt">
|
||||
|
||||
<!ENTITY zotero.preferences.prefpane.locate "Locate">
|
||||
<!ENTITY zotero.preferences.locate.locateEngineManager "Article Lookup Engine Manager">
|
||||
<!ENTITY zotero.preferences.locate.description "Description">
|
||||
<!ENTITY zotero.preferences.locate.name "Name">
|
||||
<!ENTITY zotero.preferences.locate.locateEnginedescription "A Lookup Engine extends the capability of the Locate drop down in the Info pane. By enabling Lookup Engines in the list below they will be added to the drop down and can be used to locate resources from your library on the web.">
|
||||
<!ENTITY zotero.preferences.locate.addDescription "To add a Lookup Engine that is not on the list, visit the desired search engine in your browser and select 'Add' from the Firefox Search Bar. When you reopen this preference pane you will have the option to enable the new Lookup Engine.">
|
||||
<!ENTITY zotero.preferences.locate.restoreDefaults "Restore Defaults">
|
||||
<!ENTITY zotero.preferences.prefpane.locate "Tìm kiếm">
|
||||
<!ENTITY zotero.preferences.locate.locateEngineManager "Bộ quản lý cơ chế tìm bài viết">
|
||||
<!ENTITY zotero.preferences.locate.description "Mô tả">
|
||||
<!ENTITY zotero.preferences.locate.name "Tên">
|
||||
<!ENTITY zotero.preferences.locate.locateEnginedescription "Cơ chế tìm kiếm mở rộng khả năng của mục Locate trên khung thông tin. Thêm cơ chế tìm kiếm trong danh mục dưới đây sẽ cho phép tìm kiếm tài nguyên trên mạng.">
|
||||
<!ENTITY zotero.preferences.locate.addDescription "Để thêm một cơ chế tìm kiếm không có trong d anh sách, vào trang web của cơ chế tìm kiếm trên trình duyệt của bạn và chọn 'Thêm' từ menu Tìm kiếm của Zotero.">
|
||||
<!ENTITY zotero.preferences.locate.restoreDefaults "Phục hồi mặc định">
|
||||
|
||||
<!ENTITY zotero.preferences.charset "Character Encoding">
|
||||
<!ENTITY zotero.preferences.charset.importCharset "Import Character Encoding">
|
||||
<!ENTITY zotero.preferences.charset.displayExportOption "Display character encoding option on export">
|
||||
<!ENTITY zotero.preferences.charset "Mã hóa ký tự">
|
||||
<!ENTITY zotero.preferences.charset.importCharset "Nhập mã hóa ký tự">
|
||||
<!ENTITY zotero.preferences.charset.displayExportOption "Hiển thị tùy chọn mã hóa ký tự khi xuất">
|
||||
|
||||
<!ENTITY zotero.preferences.dataDir "Nơi lưu trữ dữ liệu">
|
||||
<!ENTITY zotero.preferences.dataDir.useProfile "Dùng thư mục profile của Firefox">
|
||||
|
@ -182,27 +182,27 @@
|
|||
<!ENTITY zotero.preferences.dataDir.choose "Chọn...">
|
||||
<!ENTITY zotero.preferences.dataDir.reveal "Hiển thị Thư mục dữ liệu">
|
||||
|
||||
<!ENTITY zotero.preferences.attachmentBaseDir.caption "Linked Attachment Base Directory">
|
||||
<!ENTITY zotero.preferences.attachmentBaseDir.message "Zotero will use relative paths for linked file attachments within the base directory, allowing you to access files on different computers as long as the file structure within the base directory remains the same.">
|
||||
<!ENTITY zotero.preferences.attachmentBaseDir.basePath "Base directory:">
|
||||
<!ENTITY zotero.preferences.attachmentBaseDir.selectBasePath "Choose…">
|
||||
<!ENTITY zotero.preferences.attachmentBaseDir.resetBasePath "Revert to Absolute Paths…">
|
||||
<!ENTITY zotero.preferences.attachmentBaseDir.caption "Thư mục cơ sở cho các tập tin đính kèm theo dạng liên kết">
|
||||
<!ENTITY zotero.preferences.attachmentBaseDir.message "Zotero sẽ dùng các đường dẫn tương đối từ thư mục cơ sở cho các tập tin đính kèm theo dạng liên kết cho phép bạn truy cập các tập tin trên các máy tính khác miễn là cấu trúc bên trong thư mục cơ sở không đổi.">
|
||||
<!ENTITY zotero.preferences.attachmentBaseDir.basePath "Thư mục cơ sở:">
|
||||
<!ENTITY zotero.preferences.attachmentBaseDir.selectBasePath "Chọn...">
|
||||
<!ENTITY zotero.preferences.attachmentBaseDir.resetBasePath "Chuyển thành đường dẫn tuyệt đối...">
|
||||
|
||||
<!ENTITY zotero.preferences.dbMaintenance "Bảo dưỡng Cơ sở dữ liệu">
|
||||
<!ENTITY zotero.preferences.dbMaintenance.integrityCheck "Kiểm tra Tính toàn vẹn của Cơ sở dữ liệu">
|
||||
<!ENTITY zotero.preferences.dbMaintenance.resetTranslatorsAndStyles "Reset Translators and Styles...">
|
||||
<!ENTITY zotero.preferences.dbMaintenance.resetTranslators "Reset Translators...">
|
||||
<!ENTITY zotero.preferences.dbMaintenance.resetStyles "Reset Styles...">
|
||||
<!ENTITY zotero.preferences.dbMaintenance.resetTranslatorsAndStyles "Thiết lập lại các bộ chuyển đổi và kiểu trích dẫn...">
|
||||
<!ENTITY zotero.preferences.dbMaintenance.resetTranslators "Thiết lập lại các bộ chuyển đổi...">
|
||||
<!ENTITY zotero.preferences.dbMaintenance.resetStyles "Thiết lập lại các kiểu trích dẫn...">
|
||||
|
||||
<!ENTITY zotero.preferences.debugOutputLogging "Debug Output Logging">
|
||||
<!ENTITY zotero.preferences.debugOutputLogging.message "Debug output can help Zotero developers diagnose problems in Zotero. Debug logging will slow down Zotero, so you should generally leave it disabled unless a Zotero developer requests debug output.">
|
||||
<!ENTITY zotero.preferences.debugOutputLogging.linesLogged "lines logged">
|
||||
<!ENTITY zotero.preferences.debugOutputLogging.enableAfterRestart "Enable after restart">
|
||||
<!ENTITY zotero.preferences.debugOutputLogging.viewOutput "View Output">
|
||||
<!ENTITY zotero.preferences.debugOutputLogging.clearOutput "Clear Output">
|
||||
<!ENTITY zotero.preferences.debugOutputLogging.submitToServer "Submit to Zotero Server">
|
||||
<!ENTITY zotero.preferences.debugOutputLogging "Xem log cho gỡ rối">
|
||||
<!ENTITY zotero.preferences.debugOutputLogging.message "Thông tin gỡ rối có thể giúp các nhà phát triển Zotero chẩn đoán lỗi của Zotero. Ghi nhận thông tin gỡ rối làm chậm Zotero nên thông thường bạn nên tắt nó trừ khi một nhà phát triển Zotero yêu cầu Thông tin gỡ rối.">
|
||||
<!ENTITY zotero.preferences.debugOutputLogging.linesLogged "dòng được ghi nhận">
|
||||
<!ENTITY zotero.preferences.debugOutputLogging.enableAfterRestart "Cho phép sau khi khởi động lại">
|
||||
<!ENTITY zotero.preferences.debugOutputLogging.viewOutput "Xem thông tin gỡ rối">
|
||||
<!ENTITY zotero.preferences.debugOutputLogging.clearOutput "Xóa thông tin gỡ rối">
|
||||
<!ENTITY zotero.preferences.debugOutputLogging.submitToServer "Gửi tới máy chủ Zotero">
|
||||
|
||||
<!ENTITY zotero.preferences.openAboutConfig "Open about:config">
|
||||
<!ENTITY zotero.preferences.openCSLEdit "Open Style Editor">
|
||||
<!ENTITY zotero.preferences.openCSLPreview "Open Style Preview">
|
||||
<!ENTITY zotero.preferences.openAboutMemory "Open about:memory">
|
||||
<!ENTITY zotero.preferences.openAboutConfig "Mở about:config">
|
||||
<!ENTITY zotero.preferences.openCSLEdit "Mở Bộ soạn thảo kiểu trích dẫn">
|
||||
<!ENTITY zotero.preferences.openCSLPreview "Mở trình xem kiểu trích dẫn">
|
||||
<!ENTITY zotero.preferences.openAboutMemory "Mở about:memory">
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
<!ENTITY quitApplicationCmd.accesskey "Q">
|
||||
|
||||
|
||||
<!ENTITY editMenu.label "Edit">
|
||||
<!ENTITY editMenu.label "Chỉnh sửa">
|
||||
<!ENTITY editMenu.accesskey "E">
|
||||
<!ENTITY undoCmd.label "Undo">
|
||||
<!ENTITY undoCmd.key "Z">
|
||||
|
@ -48,10 +48,10 @@
|
|||
<!ENTITY pasteCmd.label "Paste">
|
||||
<!ENTITY pasteCmd.key "V">
|
||||
<!ENTITY pasteCmd.accesskey "P">
|
||||
<!ENTITY deleteCmd.label "Delete">
|
||||
<!ENTITY deleteCmd.label "Xóa">
|
||||
<!ENTITY deleteCmd.key "D">
|
||||
<!ENTITY deleteCmd.accesskey "D">
|
||||
<!ENTITY selectAllCmd.label "Select All">
|
||||
<!ENTITY selectAllCmd.label "Chạn tất cả">
|
||||
<!ENTITY selectAllCmd.key "A">
|
||||
<!ENTITY selectAllCmd.accesskey "A">
|
||||
<!ENTITY preferencesCmd.label "Preferences">
|
||||
|
|
|
@ -1,30 +1,30 @@
|
|||
<!ENTITY zotero.general.optional "(Không bắt buộc)">
|
||||
<!ENTITY zotero.general.note "Chú ý:">
|
||||
<!ENTITY zotero.general.selectAll "Select All">
|
||||
<!ENTITY zotero.general.deselectAll "Deselect All">
|
||||
<!ENTITY zotero.general.edit "Edit">
|
||||
<!ENTITY zotero.general.delete "Delete">
|
||||
<!ENTITY zotero.general.ok "OK">
|
||||
<!ENTITY zotero.general.cancel "Cancel">
|
||||
<!ENTITY zotero.general.refresh "Refresh">
|
||||
<!ENTITY zotero.general.saveAs "Save As…">
|
||||
<!ENTITY zotero.general.selectAll "Chạn tất cả">
|
||||
<!ENTITY zotero.general.deselectAll "Bỏ chọn tất cả">
|
||||
<!ENTITY zotero.general.edit "Chỉnh sửa">
|
||||
<!ENTITY zotero.general.delete "Xóa">
|
||||
<!ENTITY zotero.general.ok "Đồng ý">
|
||||
<!ENTITY zotero.general.cancel "Hủy">
|
||||
<!ENTITY zotero.general.refresh "Cập nhật">
|
||||
<!ENTITY zotero.general.saveAs "Lưu là...">
|
||||
|
||||
<!ENTITY zotero.errorReport.title "Zotero Error Report">
|
||||
<!ENTITY zotero.errorReport.unrelatedMessages "This may include messages unrelated to Zotero.">
|
||||
<!ENTITY zotero.errorReport.title "Báo cáo lỗi Zotero">
|
||||
<!ENTITY zotero.errorReport.unrelatedMessages "Có thể gồm các thông báo không liên quan tới Zotero">
|
||||
<!ENTITY zotero.errorReport.submissionInProgress "Xin vui lòng chờ trong khi báo cáo lỗi được gửi đi.">
|
||||
<!ENTITY zotero.errorReport.submitted "Báo cáo lỗi đã được gửi đi">
|
||||
<!ENTITY zotero.errorReport.reportID "ID của Báo cáo:">
|
||||
<!ENTITY zotero.errorReport.postToForums "Please post a message to the Zotero forums (forums.zotero.org) with this Report ID, a description of the problem, and any steps necessary to reproduce it.">
|
||||
<!ENTITY zotero.errorReport.notReviewed "Error reports are generally not reviewed unless referred to in the forums.">
|
||||
<!ENTITY zotero.errorReport.postToForums "Xin gửi một thông báo tới diễn đàn Zotero (forums.zotero.org) với mã báo cáo này cùng mô tả vấn đề và tình huống sinh ra lỗi.">
|
||||
<!ENTITY zotero.errorReport.notReviewed "Các báo cáo lỗi không được xem xét trừ khi được tham chiếu tới trên diễn đàn.">
|
||||
|
||||
<!ENTITY zotero.upgrade.title "Zotero Upgrade Wizard">
|
||||
<!ENTITY zotero.upgrade.title "Bộ hướng dẫn nâng cấp Zotero">
|
||||
<!ENTITY zotero.upgrade.newVersionInstalled "Bạn đã cài đặt một phiên bản mới của Zotero.">
|
||||
<!ENTITY zotero.upgrade.upgradeRequired "Cơ sở dữ liệu Zotero của bạn phải được nâng cấp để có thể làm việc với phiên bản mới.">
|
||||
<!ENTITY zotero.upgrade.autoBackup "Cơ sở dữ liệu hiện tại của bạn sẽ được sao lưu dự phòng một cách tự động trước khi có bất kỳ một thay dổi nào.">
|
||||
<!ENTITY zotero.upgrade.majorUpgrade "This is a major upgrade.">
|
||||
<!ENTITY zotero.upgrade.majorUpgradeBeforeLink "Be sure you have reviewed the">
|
||||
<!ENTITY zotero.upgrade.majorUpgradeLink "upgrade instructions">
|
||||
<!ENTITY zotero.upgrade.majorUpgradeAfterLink "before continuing.">
|
||||
<!ENTITY zotero.upgrade.majorUpgrade "Đây là một bản nâng cấp lớn">
|
||||
<!ENTITY zotero.upgrade.majorUpgradeBeforeLink "Hãy chắc chắn bạn đã xem kỹ">
|
||||
<!ENTITY zotero.upgrade.majorUpgradeLink "các hướng dẫn nâng cấp">
|
||||
<!ENTITY zotero.upgrade.majorUpgradeAfterLink "trước khi tiếp tục.">
|
||||
<!ENTITY zotero.upgrade.upgradeInProgress "Xin vui lòng chờ đến khi tiến trình cập nhật kết thúc. Tiến trình có thể sẽ kéo dài trong vài phút.">
|
||||
<!ENTITY zotero.upgrade.upgradeSucceeded "Cơ sở dữ liệu Zotero của bạn đã được cập nhật thành công.">
|
||||
<!ENTITY zotero.upgrade.changeLogBeforeLink "Xin vui lòng xem">
|
||||
|
@ -33,8 +33,8 @@
|
|||
|
||||
<!ENTITY zotero.contextMenu.addTextToCurrentNote "Thêm phần vừa chọn vào một ghi chép Zotero">
|
||||
<!ENTITY zotero.contextMenu.addTextToNewNote "Tạo một biểu ghi và một ghi chép Zotero cho phần vừa chọn">
|
||||
<!ENTITY zotero.contextMenu.saveLinkAsItem "Save Link As Zotero Item">
|
||||
<!ENTITY zotero.contextMenu.saveImageAsItem "Save Image As Zotero Item">
|
||||
<!ENTITY zotero.contextMenu.saveLinkAsItem "Lưu liên kết thành tài liệu tham khảo trong Zotero">
|
||||
<!ENTITY zotero.contextMenu.saveImageAsItem "Lưu hình ảnh thành tài liệu tham khảo trong Zotero">
|
||||
|
||||
<!ENTITY zotero.tabs.info.label "Thông tin">
|
||||
<!ENTITY zotero.tabs.notes.label "Ghi chép">
|
||||
|
@ -43,35 +43,35 @@
|
|||
<!ENTITY zotero.tabs.related.label "Liên quan">
|
||||
<!ENTITY zotero.notes.separate "Soạn thảo trong một cửa sổ tách rời">
|
||||
|
||||
<!ENTITY zotero.toolbar.duplicate.label "Show Duplicates">
|
||||
<!ENTITY zotero.collections.showUnfiledItems "Show Unfiled Items">
|
||||
<!ENTITY zotero.toolbar.duplicate.label "Liệt kê các mục trùng lặp">
|
||||
<!ENTITY zotero.collections.showUnfiledItems "Liệt kê các mục chưa phân loại">
|
||||
|
||||
<!ENTITY zotero.items.itemType "Item Type">
|
||||
<!ENTITY zotero.items.type_column "Item Type">
|
||||
<!ENTITY zotero.items.title_column "Nhan đề">
|
||||
<!ENTITY zotero.items.itemType "Loại tham khảo">
|
||||
<!ENTITY zotero.items.type_column "Loại tham khảo">
|
||||
<!ENTITY zotero.items.title_column "Tiêu đề">
|
||||
<!ENTITY zotero.items.creator_column "Người tạo lập">
|
||||
<!ENTITY zotero.items.date_column "Ngày">
|
||||
<!ENTITY zotero.items.year_column "Năm">
|
||||
<!ENTITY zotero.items.publisher_column "Nhà xuất bản">
|
||||
<!ENTITY zotero.items.publication_column "Publication">
|
||||
<!ENTITY zotero.items.journalAbbr_column "Journal Abbr">
|
||||
<!ENTITY zotero.items.publication_column "Ấn phẩm">
|
||||
<!ENTITY zotero.items.journalAbbr_column "Tên tạp chí viết tắt">
|
||||
<!ENTITY zotero.items.language_column "Ngôn ngữ">
|
||||
<!ENTITY zotero.items.accessDate_column "Accessed">
|
||||
<!ENTITY zotero.items.libraryCatalog_column "Library Catalog">
|
||||
<!ENTITY zotero.items.accessDate_column "Truy cập">
|
||||
<!ENTITY zotero.items.libraryCatalog_column "Loại thư viện">
|
||||
<!ENTITY zotero.items.callNumber_column "Ký hiệu xếp giá">
|
||||
<!ENTITY zotero.items.rights_column "Quyền hạn">
|
||||
<!ENTITY zotero.items.dateAdded_column "Ngày tạo lập">
|
||||
<!ENTITY zotero.items.dateModified_column "Ngày thay đổi">
|
||||
<!ENTITY zotero.items.extra_column "Extra">
|
||||
<!ENTITY zotero.items.archive_column "Archive">
|
||||
<!ENTITY zotero.items.archiveLocation_column "Loc. in Archive">
|
||||
<!ENTITY zotero.items.place_column "Place">
|
||||
<!ENTITY zotero.items.volume_column "Volume">
|
||||
<!ENTITY zotero.items.edition_column "Edition">
|
||||
<!ENTITY zotero.items.pages_column "Pages">
|
||||
<!ENTITY zotero.items.issue_column "Issue">
|
||||
<!ENTITY zotero.items.series_column "Series">
|
||||
<!ENTITY zotero.items.seriesTitle_column "Series Title">
|
||||
<!ENTITY zotero.items.extra_column "Mở rộng">
|
||||
<!ENTITY zotero.items.archive_column "Lưu">
|
||||
<!ENTITY zotero.items.archiveLocation_column "Vị trí lưu">
|
||||
<!ENTITY zotero.items.place_column "Nơi xuất bản">
|
||||
<!ENTITY zotero.items.volume_column "Tập">
|
||||
<!ENTITY zotero.items.edition_column "Ấn bản">
|
||||
<!ENTITY zotero.items.pages_column "Trang">
|
||||
<!ENTITY zotero.items.issue_column "Lần phát hành">
|
||||
<!ENTITY zotero.items.series_column "Tùng thư">
|
||||
<!ENTITY zotero.items.seriesTitle_column "Tiêu đề tùng thư">
|
||||
<!ENTITY zotero.items.court_column "Court">
|
||||
<!ENTITY zotero.items.medium_column "Medium/Format">
|
||||
<!ENTITY zotero.items.genre_column "Genre">
|
||||
|
@ -108,7 +108,7 @@
|
|||
<!ENTITY zotero.toolbar.tagSelector.label "Hiển thị/Dấu Bộ-lọc-thẻ">
|
||||
<!ENTITY zotero.toolbar.actions.label "Hành động">
|
||||
<!ENTITY zotero.toolbar.import.label "Nhập khẩu...">
|
||||
<!ENTITY zotero.toolbar.importFromClipboard "Import from Clipboard">
|
||||
<!ENTITY zotero.toolbar.importFromClipboard "Nhập từ Clipboard">
|
||||
<!ENTITY zotero.toolbar.export.label "Xuất khẩu Thư viện...">
|
||||
<!ENTITY zotero.toolbar.rtfScan.label "RTF Scan...">
|
||||
<!ENTITY zotero.toolbar.timeline.label "Tạo Tuyến thời gian">
|
||||
|
@ -161,7 +161,7 @@
|
|||
<!ENTITY zotero.selectitems.title "Chọn các Biểu ghi">
|
||||
<!ENTITY zotero.selectitems.intro.label "Chọn những biểu ghi bạn muốn thêm vào thư viện của bạn">
|
||||
<!ENTITY zotero.selectitems.cancel.label "Ngừng">
|
||||
<!ENTITY zotero.selectitems.select.label "OK">
|
||||
<!ENTITY zotero.selectitems.select.label "Đồng ý">
|
||||
|
||||
<!ENTITY zotero.bibliography.title "Tạo Thư tịch">
|
||||
<!ENTITY zotero.bibliography.style.label "Văn phong của Trích dẫn">
|
||||
|
@ -185,7 +185,7 @@
|
|||
<!ENTITY zotero.exportOptions.format.label "Định dạng:">
|
||||
<!ENTITY zotero.exportOptions.translatorOptions.label "Các tùy chọn cho Bộ-biến-đổi">
|
||||
|
||||
<!ENTITY zotero.charset.label "Character Encoding">
|
||||
<!ENTITY zotero.charset.label "Mã hóa ký tự">
|
||||
<!ENTITY zotero.moreEncodings.label "More Encodings">
|
||||
|
||||
<!ENTITY zotero.citation.keepSorted.label "Giữ thứ tự sắp xếp của các Tài liệu nguồn">
|
||||
|
@ -254,12 +254,12 @@
|
|||
<!ENTITY zotero.proxy.recognized.ignore.label "Ignore">
|
||||
|
||||
<!ENTITY zotero.recognizePDF.recognizing.label "Retrieving Metadata...">
|
||||
<!ENTITY zotero.recognizePDF.cancel.label "Cancel">
|
||||
<!ENTITY zotero.recognizePDF.cancel.label "Hủy">
|
||||
<!ENTITY zotero.recognizePDF.pdfName.label "PDF Name">
|
||||
<!ENTITY zotero.recognizePDF.itemName.label "Item Name">
|
||||
|
||||
<!ENTITY zotero.rtfScan.title "RTF Scan">
|
||||
<!ENTITY zotero.rtfScan.cancel.label "Cancel">
|
||||
<!ENTITY zotero.rtfScan.cancel.label "Hủy">
|
||||
<!ENTITY zotero.rtfScan.citation.label "Citation">
|
||||
<!ENTITY zotero.rtfScan.itemName.label "Item Name">
|
||||
<!ENTITY zotero.rtfScan.unmappedCitations.label "Unmapped Citations">
|
||||
|
|
|
@ -39,14 +39,14 @@ general.permissionDenied=Permission Denied
|
|||
general.character.singular=character
|
||||
general.character.plural=characters
|
||||
general.create=Create
|
||||
general.delete=Delete
|
||||
general.delete=Xóa
|
||||
general.moreInformation=More Information
|
||||
general.seeForMoreInformation=See %S for more information.
|
||||
general.open=Open %S
|
||||
general.enable=Enable
|
||||
general.disable=Disable
|
||||
general.remove=Remove
|
||||
general.reset=Reset
|
||||
general.reset=Thiết lập lại
|
||||
general.hide=Hide
|
||||
general.quit=Quit
|
||||
general.useDefault=Use Default
|
||||
|
@ -379,7 +379,7 @@ itemFields.codeNumber=Code Number
|
|||
itemFields.artworkMedium=Chất liệu của tác phẩm
|
||||
itemFields.number=Số
|
||||
itemFields.artworkSize=Kích thước tác phẩm
|
||||
itemFields.libraryCatalog=Library Catalog
|
||||
itemFields.libraryCatalog=Loại thư viện
|
||||
itemFields.videoRecordingFormat=Format
|
||||
itemFields.interviewMedium=Phương tiện
|
||||
itemFields.letterType=Kiểu
|
||||
|
@ -436,7 +436,7 @@ itemFields.programTitle=Program Title
|
|||
itemFields.issuingAuthority=Issuing Authority
|
||||
itemFields.filingDate=Filing Date
|
||||
itemFields.genre=Genre
|
||||
itemFields.archive=Archive
|
||||
itemFields.archive=Lưu
|
||||
|
||||
creatorTypes.author=Tác giả
|
||||
creatorTypes.contributor=Cộng tác viên
|
||||
|
@ -686,7 +686,7 @@ citation.locator.chapter=Chapter
|
|||
citation.locator.column=Column
|
||||
citation.locator.figure=Figure
|
||||
citation.locator.folio=Folio
|
||||
citation.locator.issue=Issue
|
||||
citation.locator.issue=Lần phát hành
|
||||
citation.locator.line=Line
|
||||
citation.locator.note=Note
|
||||
citation.locator.opus=Opus
|
||||
|
@ -694,7 +694,7 @@ citation.locator.paragraph=Paragraph
|
|||
citation.locator.part=Part
|
||||
citation.locator.section=Section
|
||||
citation.locator.subverbo=Sub verbo
|
||||
citation.locator.volume=Volume
|
||||
citation.locator.volume=Tập
|
||||
citation.locator.verse=Verse
|
||||
|
||||
report.title.default=Báo cáo Zotero
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
<Description>
|
||||
<em:id>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</em:id>
|
||||
<em:minVersion>31.0</em:minVersion>
|
||||
<em:maxVersion>42.*</em:maxVersion>
|
||||
<em:maxVersion>44.*</em:maxVersion>
|
||||
</Description>
|
||||
</em:targetApplication>
|
||||
|
||||
|
|
|
@ -454,6 +454,7 @@
|
|||
"unisa-harvard": "university-of-south-australia-harvard-2011",
|
||||
"unisa-harvard3": "university-of-south-australia-harvard-2011",
|
||||
"universite-laval-com": "universite-laval-departement-dinformation-et-de-communication",
|
||||
"university-college-lillebaelt-vancouver-en": "university-college-lillebaelt-vancouver",
|
||||
"university-of-melbourne": "harvard-the-university-of-melbourne",
|
||||
"uqam-universite-du-quebec-a-montreal": "universite-du-quebec-a-montreal",
|
||||
"user-modeling-and-useradapted-interaction": "user-modeling-and-user-adapted-interaction",
|
||||
|
|
|
@ -1 +1 @@
|
|||
2015-09-30 16:30:00
|
||||
2015-12-08 12:45:00
|
||||
|
|
2
styles
2
styles
|
@ -1 +1 @@
|
|||
Subproject commit 1ae90e58ecf070eee939752b460fe96d9e80fd89
|
||||
Subproject commit 2aefeff2cc945cbb4c34cf6836f3144655b5053f
|
|
@ -1 +1 @@
|
|||
Subproject commit 48c5c54cd480355d7e43011babcf1161eee31f1f
|
||||
Subproject commit d44b006a27f5ebde7320e49620201c560e135126
|
|
@ -12,7 +12,7 @@
|
|||
<RDF:Description>
|
||||
<id>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</id>
|
||||
<minVersion>31.0</minVersion>
|
||||
<maxVersion>42.*</maxVersion>
|
||||
<maxVersion>44.*</maxVersion>
|
||||
<updateLink>http://download.zotero.org/extension/zotero.xpi</updateLink>
|
||||
<updateHash>sha1:</updateHash>
|
||||
</RDF:Description>
|
||||
|
|
Loading…
Reference in a new issue