Merge branch '4.0'
This commit is contained in:
commit
6f06b39cb3
126 changed files with 2068 additions and 198 deletions
|
@ -43,6 +43,7 @@ locale zotero sr-RS chrome/locale/sr-RS/zotero/
|
|||
locale zotero sv-SE chrome/locale/sv-SE/zotero/
|
||||
locale zotero th-TH chrome/locale/th-TH/zotero/
|
||||
locale zotero tr-TR chrome/locale/tr-TR/zotero/
|
||||
locale zotero uk-UA chrome/locale/uk-UA/zotero/
|
||||
locale zotero vi-VN chrome/locale/vi-VN/zotero/
|
||||
locale zotero zh-CN chrome/locale/zh-CN/zotero/
|
||||
locale zotero zh-TW chrome/locale/zh-TW/zotero/
|
||||
|
|
|
@ -128,7 +128,6 @@
|
|||
-moz-box-orient: vertical;
|
||||
-moz-box-align: center;
|
||||
-moz-appearance: toolbarbutton;
|
||||
-moz-user-focus: none;
|
||||
text-align: center;
|
||||
margin: 0;
|
||||
padding: 3px 1px 3px 1px;
|
||||
|
|
|
@ -43,6 +43,7 @@ var ZoteroAdvancedSearch = new function() {
|
|||
var sbc = document.getElementById('zotero-search-box-container');
|
||||
Zotero.setFontSize(sbc);
|
||||
|
||||
_searchBox.onLibraryChange = this.onLibraryChange;
|
||||
var io = window.arguments[0];
|
||||
_searchBox.search = io.dataIn.search;
|
||||
}
|
||||
|
@ -50,24 +51,33 @@ var ZoteroAdvancedSearch = new function() {
|
|||
|
||||
function search() {
|
||||
_searchBox.updateSearch();
|
||||
_searchBox.active = true;
|
||||
|
||||
// A minimal implementation of Zotero.CollectionTreeView
|
||||
var itemGroup = {
|
||||
isSearchMode: function() { return true; },
|
||||
getItems: function () {
|
||||
//var search = _searchBox.search.clone();
|
||||
var search = _searchBox.search.clone();
|
||||
|
||||
var s2 = new Zotero.Search();
|
||||
s2.setScope(_searchBox.search);
|
||||
|
||||
// FIXME: Hack to exclude group libraries for now
|
||||
var groups = Zotero.Groups.getAll();
|
||||
for each(var group in groups) {
|
||||
s2.addCondition('libraryID', 'isNot', group.libraryID);
|
||||
// Hack to create a condition for the search's library --
|
||||
// this logic should really go in the search itself instead of here
|
||||
// and in collectionTreeView.js
|
||||
var conditions = search.getSearchConditions();
|
||||
if (!conditions.some(function (condition) condition.condition == 'libraryID')) {
|
||||
let libraryID = _searchBox.search.libraryID;
|
||||
// TEMP: libraryIDInt
|
||||
if (libraryID) {
|
||||
search.addCondition('libraryID', 'is', libraryID);
|
||||
}
|
||||
else {
|
||||
let groups = Zotero.Groups.getAll();
|
||||
for (let i=0; i<groups.length; i++) {
|
||||
search.addCondition('libraryID', 'isNot', groups[i].libraryID);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
var ids = s2.search();
|
||||
return Zotero.Items.get(ids);
|
||||
return Zotero.Items.get(search.search());
|
||||
},
|
||||
isLibrary: function () { return false; },
|
||||
isCollection: function () { return false; },
|
||||
|
@ -92,8 +102,11 @@ var ZoteroAdvancedSearch = new function() {
|
|||
document.getElementById('zotero-items-tree').view = null;
|
||||
|
||||
var s = new Zotero.Search();
|
||||
// Don't clear the selected library
|
||||
s.libraryID = _searchBox.search.libraryID;
|
||||
s.addCondition('title', 'contains', '');
|
||||
_searchBox.search = s;
|
||||
_searchBox.active = false;
|
||||
}
|
||||
|
||||
|
||||
|
@ -103,8 +116,12 @@ var ZoteroAdvancedSearch = new function() {
|
|||
var promptService = Components.classes["@mozilla.org/embedcomp/prompt-service;1"]
|
||||
.getService(Components.interfaces.nsIPromptService);
|
||||
|
||||
var untitled = Zotero.DB.getNextName('collections', 'collectionName',
|
||||
Zotero.getString('pane.collections.untitled'));
|
||||
var untitled = Zotero.DB.getNextName(
|
||||
_searchBox.search.libraryID,
|
||||
'savedSearches',
|
||||
'savedSearchName',
|
||||
Zotero.getString('pane.collections.untitled')
|
||||
);
|
||||
|
||||
var name = { value: untitled };
|
||||
var result = promptService.prompt(window,
|
||||
|
@ -124,6 +141,13 @@ var ZoteroAdvancedSearch = new function() {
|
|||
var s = _searchBox.search.clone();
|
||||
s.name = name.value;
|
||||
s.save();
|
||||
|
||||
window.close();
|
||||
}
|
||||
|
||||
|
||||
this.onLibraryChange = function (libraryID) {
|
||||
document.getElementById('zotero-search-save').disabled = !Zotero.Libraries.isEditable(libraryID);
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -25,16 +25,15 @@
|
|||
<script src="advancedSearch.js"/>
|
||||
|
||||
<vbox id="zotero-search-box-container" flex="1">
|
||||
|
||||
<hbox>
|
||||
<zoterosearch id="zotero-search-box" oncommand="ZoteroAdvancedSearch.search()" flex="1"/>
|
||||
</hbox>
|
||||
<vbox id="zotero-search-box-controls">
|
||||
<zoterosearch id="zotero-search-box" oncommand="if (this.active) { ZoteroAdvancedSearch.search(); }" flex="1"/>
|
||||
|
||||
<hbox id="zotero-search-buttons">
|
||||
<button label="&zotero.search.search;" default="true" oncommand="ZoteroAdvancedSearch.search()"/>
|
||||
<button label="&zotero.search.clear;" oncommand="ZoteroAdvancedSearch.clear()"/>
|
||||
<button label="&zotero.search.saveSearch;" oncommand="ZoteroAdvancedSearch.save()"/>
|
||||
<button id="zotero-search-save" label="&zotero.search.saveSearch;" oncommand="ZoteroAdvancedSearch.save()"/>
|
||||
</hbox>
|
||||
</vbox>
|
||||
|
||||
<tree id="zotero-items-tree" flex="1" hidecolumnpicker="true" seltype="multiple"
|
||||
ondblclick="ZoteroAdvancedSearch.onDblClick(event, this)"
|
||||
|
@ -53,7 +52,6 @@
|
|||
</treecols>
|
||||
<treechildren alternatingbackground="true"/>
|
||||
</tree>
|
||||
|
||||
</vbox>
|
||||
|
||||
<keyset>
|
||||
|
|
|
@ -54,6 +54,11 @@
|
|||
if(!text) text = Zotero.getString("firstRunGuidance."+about);
|
||||
text = text.split("\n");
|
||||
var descriptionNode = panel.lastChild;
|
||||
|
||||
while (descriptionNode.hasChildNodes()) {
|
||||
descriptionNode.removeChild(descriptionNode.firstChild);
|
||||
}
|
||||
|
||||
while(text.length) {
|
||||
var textLine = text.shift();
|
||||
descriptionNode.appendChild(document.createTextNode(textLine));
|
||||
|
@ -61,9 +66,12 @@
|
|||
"http://www.w3.org/1999/xhtml", "br"));
|
||||
}
|
||||
|
||||
this.setAttribute('onpopuphidden', 'this.hidden = true');
|
||||
|
||||
var me = this;
|
||||
var f = function() {
|
||||
if(me.hasAttribute("foregroundonly") && Services.ww.activeWindow != window) return;
|
||||
me.hidden = false;
|
||||
panel.openPopup(forEl, position ? position : "after_start",
|
||||
x ? parseInt(x, 10) : 0, y ? parseInt(y, 10) : 0, false, false, null);
|
||||
Zotero.Prefs.set(pref, true);
|
||||
|
|
|
@ -42,6 +42,8 @@
|
|||
<![CDATA[
|
||||
this.searchRef = val;
|
||||
|
||||
this.buildLibraryMenu();
|
||||
|
||||
var conditionsBox = this.id('conditions');
|
||||
while(conditionsBox.hasChildNodes())
|
||||
conditionsBox.removeChild(conditionsBox.firstChild);
|
||||
|
@ -74,6 +76,49 @@
|
|||
]]>
|
||||
</setter>
|
||||
</property>
|
||||
|
||||
<method name="buildLibraryMenu">
|
||||
<body><![CDATA[
|
||||
var menulist = this.id('libraryMenu');
|
||||
var menupopup = menulist.firstChild;
|
||||
|
||||
while (menupopup.hasChildNodes()) {
|
||||
menupopup.removeChild(menupopup.firstChild);
|
||||
}
|
||||
|
||||
var libraryID = this.searchRef.libraryID;
|
||||
var libraryIndex = 0;
|
||||
|
||||
// Add My Library
|
||||
var menuitem = document.createElement('menuitem');
|
||||
menuitem.setAttribute('label', Zotero.getString('pane.collections.library'));
|
||||
menuitem.setAttribute('libraryID', 0);
|
||||
menupopup.appendChild(menuitem);
|
||||
|
||||
// Add groups
|
||||
var groups = Zotero.Groups.getAll();
|
||||
for (let i=0; i<groups.length; i++) {
|
||||
let group = groups[i];
|
||||
let menuitem = document.createElement('menuitem');
|
||||
menuitem.setAttribute('label', group.name);
|
||||
menuitem.setAttribute('libraryID', group.libraryID);
|
||||
if (group.libraryID == libraryID) {
|
||||
libraryIndex = i + 1;
|
||||
}
|
||||
menupopup.appendChild(menuitem);
|
||||
}
|
||||
|
||||
menulist.appendChild(menupopup);
|
||||
menulist.selectedIndex = libraryIndex;
|
||||
|
||||
if (this.searchRef.id) {
|
||||
this.id('libraryMenu').disabled = true;
|
||||
}
|
||||
|
||||
this.updateLibrary();
|
||||
]]></body>
|
||||
</method>
|
||||
|
||||
<method name="addCondition">
|
||||
<parameter name="ref"/>
|
||||
<body>
|
||||
|
@ -100,6 +145,7 @@
|
|||
]]>
|
||||
</body>
|
||||
</method>
|
||||
|
||||
<method name="removeCondition">
|
||||
<parameter name="id"/>
|
||||
<body>
|
||||
|
@ -121,6 +167,21 @@
|
|||
]]>
|
||||
</body>
|
||||
</method>
|
||||
|
||||
<method name="updateLibrary">
|
||||
<body><![CDATA[
|
||||
var menu = this.id('libraryMenu');
|
||||
var libraryID = parseInt(menu.selectedItem.getAttribute('libraryID'));
|
||||
|
||||
if (this.onLibraryChange) {
|
||||
this.onLibraryChange(libraryID);
|
||||
}
|
||||
|
||||
// TODO: libraryIDInt
|
||||
this.searchRef.libraryID = libraryID ? libraryID : null;
|
||||
]]></body>
|
||||
</method>
|
||||
|
||||
<method name="updateJoinMode">
|
||||
<body>
|
||||
<![CDATA[
|
||||
|
@ -132,6 +193,7 @@
|
|||
]]>
|
||||
</body>
|
||||
</method>
|
||||
|
||||
<method name="updateCheckbox">
|
||||
<parameter name="condition"/>
|
||||
<body>
|
||||
|
@ -151,12 +213,12 @@
|
|||
]]>
|
||||
</body>
|
||||
</method>
|
||||
|
||||
<!-- Calls updateSearch() on all search conditions -->
|
||||
<method name="updateSearch">
|
||||
<body>
|
||||
<![CDATA[
|
||||
var conditionsBox = this.id('conditions');
|
||||
|
||||
if (conditionsBox.hasChildNodes()) {
|
||||
for(var i = 0, len=conditionsBox.childNodes.length; i < len; i++) {
|
||||
conditionsBox.childNodes[i].updateSearch();
|
||||
|
@ -165,6 +227,7 @@
|
|||
]]>
|
||||
</body>
|
||||
</method>
|
||||
|
||||
<method name="save">
|
||||
<body>
|
||||
<![CDATA[
|
||||
|
@ -181,6 +244,8 @@
|
|||
switch (event.keyCode) {
|
||||
case event.DOM_VK_RETURN:
|
||||
case event.DOM_VK_ENTER:
|
||||
this.active = true;
|
||||
|
||||
if (event.shiftKey) {
|
||||
this.addCondition();
|
||||
}
|
||||
|
@ -193,7 +258,6 @@
|
|||
</body>
|
||||
</method>
|
||||
|
||||
|
||||
<method name="id">
|
||||
<parameter name="id"/>
|
||||
<body>
|
||||
|
@ -205,26 +269,35 @@
|
|||
</implementation>
|
||||
|
||||
<content>
|
||||
<xul:vbox id="search-box" flex="1" onkeypress="document.getBindingParent(this).handleKeyPress(event)">
|
||||
<xul:groupbox xbl:inherits="flex">
|
||||
<xul:caption align="center">
|
||||
<xul:label value="&zotero.search.joinMode.prefix;"/>
|
||||
<xul:menulist id="joinModeMenu" oncommand="document.getBindingParent(this).updateJoinMode(); event.stopPropagation()">
|
||||
<xul:menupopup>
|
||||
<xul:menuitem label="&zotero.search.joinMode.any;" value="any"/>
|
||||
<xul:menuitem label="&zotero.search.joinMode.all;" value="all" selected="true"/>
|
||||
</xul:menupopup>
|
||||
</xul:menulist>
|
||||
<xul:label value="&zotero.search.joinMode.suffix;"/>
|
||||
</xul:caption>
|
||||
<xul:vbox id="conditions"/>
|
||||
</xul:groupbox>
|
||||
<xul:hbox>
|
||||
<xul:checkbox id="recursiveCheckbox" label="&zotero.search.recursive.label;" oncommand="document.getBindingParent(this).updateCheckbox('recursive'); event.stopPropagation()"/>
|
||||
<xul:checkbox id="noChildrenCheckbox" label="&zotero.search.noChildren;" oncommand="document.getBindingParent(this).updateCheckbox('noChildren'); event.stopPropagation()"/>
|
||||
</xul:hbox>
|
||||
<xul:checkbox id="includeParentsAndChildrenCheckbox" label="&zotero.search.includeParentsAndChildren;" oncommand="document.getBindingParent(this).updateCheckbox('includeParentsAndChildren'); event.stopPropagation()"/>
|
||||
</xul:vbox>
|
||||
<vbox xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
||||
id="search-box" flex="1" onkeypress="document.getBindingParent(this).handleKeyPress(event)">
|
||||
<hbox align="center">
|
||||
<label value="&zotero.search.searchInLibrary;" control="libraryMenu"/>
|
||||
<menulist id="libraryMenu" oncommand="document.getBindingParent(this).updateLibrary();">
|
||||
<menupopup/>
|
||||
</menulist>
|
||||
</hbox>
|
||||
<groupbox xbl:inherits="flex">
|
||||
<caption align="center">
|
||||
<label value="&zotero.search.joinMode.prefix;"/>
|
||||
<menulist id="joinModeMenu" oncommand="document.getBindingParent(this).updateJoinMode();">
|
||||
<menupopup>
|
||||
<menuitem label="&zotero.search.joinMode.any;" value="any"/>
|
||||
<menuitem label="&zotero.search.joinMode.all;" value="all" selected="true"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
<label value="&zotero.search.joinMode.suffix;"/>
|
||||
</caption>
|
||||
<vbox id="conditions"/>
|
||||
</groupbox>
|
||||
<hbox>
|
||||
<checkbox id="recursiveCheckbox" label="&zotero.search.recursive.label;" oncommand="document.getBindingParent(this).updateCheckbox('recursive');"/>
|
||||
<checkbox id="noChildrenCheckbox" label="&zotero.search.noChildren;" oncommand="document.getBindingParent(this).updateCheckbox('noChildren');"/>
|
||||
</hbox>
|
||||
<hbox>
|
||||
<checkbox id="includeParentsAndChildrenCheckbox" label="&zotero.search.includeParentsAndChildren;" oncommand="document.getBindingParent(this).updateCheckbox('includeParentsAndChildren');"/>
|
||||
</hbox>
|
||||
</vbox>
|
||||
</content>
|
||||
</binding>
|
||||
|
||||
|
|
|
@ -57,7 +57,7 @@
|
|||
|
||||
<stack id="zotero-pane-stack" persist="savedHeight" savedHeight="300" hidden="true"/>
|
||||
|
||||
<zoteroguidancepanel id="zotero-toolbar-button-guidance" about="toolbarButton" for="zotero-toolbar-button" position="bottomcenter topleft" delay="2000" foregroundonly="true"/>
|
||||
<zoteroguidancepanel id="zotero-toolbar-button-guidance" about="toolbarButton" for="zotero-toolbar-button" position="bottomcenter topleft" delay="2000" foregroundonly="true" hidden="true"/>
|
||||
|
||||
<!-- Annotation Toolbar -->
|
||||
<toolbar id="zotero-annotate-tb" crop="end" insertbefore="content" hidden="true">
|
||||
|
@ -69,6 +69,7 @@
|
|||
</toolbar>
|
||||
</vbox>
|
||||
|
||||
|
||||
<!-- Scrape Code -->
|
||||
<hbox id="urlbar-icons">
|
||||
<popupset>
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
<vbox id="zotero-search-box-container" flex="1">
|
||||
<hbox align="center">
|
||||
<label value="&zotero.search.name;"/>
|
||||
<textbox id="search-name" flex="1"/>
|
||||
<textbox id="search-name" width="275" maxlength="80"/>
|
||||
</hbox>
|
||||
<zoterosearch id="search-box" flex="1"/>
|
||||
</vbox>
|
||||
|
|
|
@ -45,15 +45,33 @@
|
|||
function init() {
|
||||
var cslList = document.getElementById('zotero-csl-list');
|
||||
if (cslList.getAttribute('initialized') == 'true') {
|
||||
if (currentStyle) {
|
||||
loadCSL(currentStyle);
|
||||
refresh();
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
var rawDefaultStyle = Zotero.Prefs.get('export.quickCopy.setting');
|
||||
var defaultStyle = Zotero.QuickCopy.stripContentType(rawDefaultStyle);
|
||||
|
||||
var styles = Zotero.Styles.getAll();
|
||||
var currentStyle = null;
|
||||
var listPos = 0;
|
||||
for each(var style in styles) {
|
||||
if (style.source) {
|
||||
continue;
|
||||
}
|
||||
var item = cslList.appendItem(style.title, style.styleID);
|
||||
if (!currentStyle || defaultStyle == ('bibliography=' + style.styleID)) {
|
||||
currentStyle = style.styleID;
|
||||
cslList.selectedIndex = listPos;
|
||||
}
|
||||
listPos += 1;
|
||||
}
|
||||
if (currentStyle) {
|
||||
loadCSL(currentStyle);
|
||||
refresh();
|
||||
}
|
||||
var pageList = document.getElementById('zotero-csl-page-type');
|
||||
var locators = Zotero.Cite.labels;
|
||||
|
|
|
@ -719,13 +719,28 @@ Zotero.DBConnection.prototype.getNextID = function (table, column) {
|
|||
*
|
||||
* If _name_ alone is available, returns that
|
||||
**/
|
||||
Zotero.DBConnection.prototype.getNextName = function (table, field, name)
|
||||
Zotero.DBConnection.prototype.getNextName = function (libraryID, table, field, name)
|
||||
{
|
||||
if (typeof name == 'undefined') {
|
||||
Zotero.debug("WARNING: The parameters of Zotero.DB.getNextName() have changed -- update your code", 2);
|
||||
[libraryID, table, field, name] = [null, libraryID, table, field];
|
||||
}
|
||||
|
||||
var sql = "SELECT TRIM(SUBSTR(" + field + ", " + (name.length + 1) + ")) "
|
||||
+ "FROM " + table + " "
|
||||
+ "WHERE " + field + " REGEXP '^" + name + "( [0-9]+)?$' "
|
||||
+ "ORDER BY " + field;
|
||||
var suffixes = this.columnQuery(sql);
|
||||
+ "WHERE " + field + " REGEXP '^" + name + "( [0-9]+)?$' ";
|
||||
if (!libraryID) {
|
||||
// DEBUG: Shouldn't this be replaced automatically with "=?"?
|
||||
sql += " AND libraryID IS NULL";
|
||||
var params = undefined
|
||||
}
|
||||
else {
|
||||
sql += " AND libraryID=?";
|
||||
var params = [libraryID];
|
||||
}
|
||||
sql += " ORDER BY " + field;
|
||||
// TEMP: libraryIDInt
|
||||
var suffixes = this.columnQuery(sql, params);
|
||||
// If none found or first one has a suffix, use default name
|
||||
if (!suffixes || suffixes[0]) {
|
||||
return name;
|
||||
|
|
|
@ -107,7 +107,7 @@ Zotero.Search.prototype._set = function (field, val) {
|
|||
}
|
||||
|
||||
if (this._loaded) {
|
||||
throw ("Cannot set " + field + " after object is already loaded in Zotero.Search._set()");
|
||||
throw new Error("Cannot set " + field + " after object is already loaded");
|
||||
}
|
||||
//this._checkValue(field, val);
|
||||
this['_' + field] = val;
|
||||
|
@ -379,6 +379,7 @@ Zotero.Search.prototype.save = function(fixGaps) {
|
|||
|
||||
Zotero.Search.prototype.clone = function() {
|
||||
var s = new Zotero.Search();
|
||||
s.libraryID = this.libraryID;
|
||||
|
||||
var conditions = this.getSearchConditions();
|
||||
|
||||
|
|
|
@ -62,6 +62,7 @@ Zotero.Sync.Storage.ZFS = (function () {
|
|||
var msg = "Hash not found in info response in " + funcName
|
||||
+ " (" + Zotero.Items.getLibraryKeyHash(item) + ")";
|
||||
Zotero.debug(msg, 1);
|
||||
Zotero.debug(req.status);
|
||||
Zotero.debug(req.responseText);
|
||||
Components.utils.reportError(msg);
|
||||
try {
|
||||
|
|
|
@ -329,11 +329,17 @@ Zotero.Translate.ItemSaver.prototype = {
|
|||
var file;
|
||||
|
||||
// First, try to parse as absolute path
|
||||
if(((/[a-zA-Z]:\\/.test(path) && Zotero.isWin) || (path[0] === "/" && !Zotero.isWin))
|
||||
&& (file = this._parseAbsolutePath(path))) {
|
||||
Zotero.debug("Translate: Got file "+path+" as absolute path");
|
||||
if((/^[a-zA-Z]:[\\\/]|^\\\\/.test(path) && Zotero.isWin) // Paths starting with drive letter or network shares starting with \\
|
||||
|| (path[0] === "/" && !Zotero.isWin)) {
|
||||
// Forward slashes on Windows are not allowed in filenames, so we can
|
||||
// assume they're meant to be backslashes. Backslashes are technically
|
||||
// allowed on Linux, so the reverse cannot be done reliably.
|
||||
var nativePath = Zotero.isWin ? path.replace('/', '\\', 'g') : path;
|
||||
if (file = this._parseAbsolutePath(nativePath)) {
|
||||
Zotero.debug("Translate: Got file "+nativePath+" as absolute path");
|
||||
return file;
|
||||
}
|
||||
}
|
||||
|
||||
// Next, try to parse as URI
|
||||
if((file = this._parsePathURI(path))) {
|
||||
|
|
|
@ -1465,13 +1465,14 @@ Zotero.Utilities = {
|
|||
}
|
||||
|
||||
// separate name variables
|
||||
var authorID = Zotero.CreatorTypes.getPrimaryIDForType(item.itemType);
|
||||
var authorID = Zotero.CreatorTypes.getPrimaryIDForType(itemTypeID);
|
||||
var authorFieldName = Zotero.CreatorTypes.getName(authorID);
|
||||
var creators = item.creators;
|
||||
if(creators) {
|
||||
for(var i=0, n=creators.length; i<n; i++) {
|
||||
var creator = creators[i];
|
||||
|
||||
if(creator.creatorTypeID == authorID) {
|
||||
if(creator.creatorType == authorFieldName) {
|
||||
var creatorType = "author";
|
||||
} else {
|
||||
var creatorType = CSL_NAMES_MAPPINGS[creator.creatorType]
|
||||
|
|
|
@ -981,6 +981,7 @@ var ZoteroPane = new function()
|
|||
}
|
||||
|
||||
var s = new Zotero.Search();
|
||||
s.libraryID = this.getSelectedLibraryID();
|
||||
s.addCondition('title', 'contains', '');
|
||||
var io = {dataIn: {search: s}, dataOut: null};
|
||||
window.openDialog('chrome://zotero/content/advancedSearch.xul', '', 'chrome,dialog=no,centerscreen', io);
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
<!ENTITY zotero.search.name "Naam:">
|
||||
|
||||
<!ENTITY zotero.search.searchInLibrary "Search in library:">
|
||||
|
||||
<!ENTITY zotero.search.joinMode.prefix "Pas">
|
||||
<!ENTITY zotero.search.joinMode.any "enige">
|
||||
<!ENTITY zotero.search.joinMode.all "alles">
|
||||
|
|
|
@ -45,7 +45,7 @@
|
|||
<!ENTITY zotero.collections.showUnfiledItems "Wys ongeliaseerde items">
|
||||
|
||||
<!ENTITY zotero.items.itemType "Tipe item">
|
||||
<!ENTITY zotero.items.type_column "Tipe">
|
||||
<!ENTITY zotero.items.type_column "Item Type">
|
||||
<!ENTITY zotero.items.title_column "Titel">
|
||||
<!ENTITY zotero.items.creator_column "Skepper">
|
||||
<!ENTITY zotero.items.date_column "Datum">
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
<!ENTITY zotero.search.name "الإسم:">
|
||||
|
||||
<!ENTITY zotero.search.searchInLibrary "Search in library:">
|
||||
|
||||
<!ENTITY zotero.search.joinMode.prefix "طابق">
|
||||
<!ENTITY zotero.search.joinMode.any "أيّاً من">
|
||||
<!ENTITY zotero.search.joinMode.all "جميع">
|
||||
|
|
|
@ -45,7 +45,7 @@
|
|||
<!ENTITY zotero.collections.showUnfiledItems "عرض العناصر غير المصنفة">
|
||||
|
||||
<!ENTITY zotero.items.itemType "نوع العنصر">
|
||||
<!ENTITY zotero.items.type_column "النوع">
|
||||
<!ENTITY zotero.items.type_column "Item Type">
|
||||
<!ENTITY zotero.items.title_column "العنوان">
|
||||
<!ENTITY zotero.items.creator_column "المؤلف">
|
||||
<!ENTITY zotero.items.date_column "التاريخ">
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
<!ENTITY zotero.search.name "Име:">
|
||||
|
||||
<!ENTITY zotero.search.searchInLibrary "Search in library:">
|
||||
|
||||
<!ENTITY zotero.search.joinMode.prefix "Съвпадение на">
|
||||
<!ENTITY zotero.search.joinMode.any "каквото и да е">
|
||||
<!ENTITY zotero.search.joinMode.all "всички">
|
||||
|
|
|
@ -45,7 +45,7 @@
|
|||
<!ENTITY zotero.collections.showUnfiledItems "Show Unfiled Items">
|
||||
|
||||
<!ENTITY zotero.items.itemType "Вид запис">
|
||||
<!ENTITY zotero.items.type_column "Вид">
|
||||
<!ENTITY zotero.items.type_column "Item Type">
|
||||
<!ENTITY zotero.items.title_column "Заглавие">
|
||||
<!ENTITY zotero.items.creator_column "Създател">
|
||||
<!ENTITY zotero.items.date_column "Дата">
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
<!ENTITY zotero.search.name "Nom:">
|
||||
|
||||
<!ENTITY zotero.search.searchInLibrary "Search in library:">
|
||||
|
||||
<!ENTITY zotero.search.joinMode.prefix "Coincideix">
|
||||
<!ENTITY zotero.search.joinMode.any "qualsevol">
|
||||
<!ENTITY zotero.search.joinMode.all "totes">
|
||||
|
|
|
@ -45,7 +45,7 @@
|
|||
<!ENTITY zotero.collections.showUnfiledItems "Mostra els elements no arxivats">
|
||||
|
||||
<!ENTITY zotero.items.itemType "Tipus d'element">
|
||||
<!ENTITY zotero.items.type_column "Tipus">
|
||||
<!ENTITY zotero.items.type_column "Item Type">
|
||||
<!ENTITY zotero.items.title_column "Títol">
|
||||
<!ENTITY zotero.items.creator_column "Creador">
|
||||
<!ENTITY zotero.items.date_column "Data">
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
<!ENTITY zotero.search.name "Jméno:">
|
||||
|
||||
<!ENTITY zotero.search.searchInLibrary "Search in library:">
|
||||
|
||||
<!ENTITY zotero.search.joinMode.prefix "Odpovídá">
|
||||
<!ENTITY zotero.search.joinMode.any "některému">
|
||||
<!ENTITY zotero.search.joinMode.all "všem">
|
||||
|
|
|
@ -45,7 +45,7 @@
|
|||
<!ENTITY zotero.collections.showUnfiledItems "Zobrazit sjednocené položky">
|
||||
|
||||
<!ENTITY zotero.items.itemType "Typ položky">
|
||||
<!ENTITY zotero.items.type_column "Typ">
|
||||
<!ENTITY zotero.items.type_column "Item Type">
|
||||
<!ENTITY zotero.items.title_column "Název">
|
||||
<!ENTITY zotero.items.creator_column "Tvůrce">
|
||||
<!ENTITY zotero.items.date_column "Datum">
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
<!ENTITY zotero.search.name "Navn:">
|
||||
|
||||
<!ENTITY zotero.search.searchInLibrary "Search in library:">
|
||||
|
||||
<!ENTITY zotero.search.joinMode.prefix "Match">
|
||||
<!ENTITY zotero.search.joinMode.any "enhver">
|
||||
<!ENTITY zotero.search.joinMode.all "alle">
|
||||
|
|
|
@ -45,7 +45,7 @@
|
|||
<!ENTITY zotero.collections.showUnfiledItems "Vis ukategoriserede elementer">
|
||||
|
||||
<!ENTITY zotero.items.itemType "Type">
|
||||
<!ENTITY zotero.items.type_column "Type">
|
||||
<!ENTITY zotero.items.type_column "Item Type">
|
||||
<!ENTITY zotero.items.title_column "Titel">
|
||||
<!ENTITY zotero.items.creator_column "Ophav">
|
||||
<!ENTITY zotero.items.date_column "Dato">
|
||||
|
|
|
@ -965,5 +965,5 @@ firstRunGuidance.saveIcon=Zotero har fundet en reference på denne side. Klik p
|
|||
firstRunGuidance.authorMenu=Zotero lader dig anføre redaktører og oversættere. Du kan ændre en forfatter til en redaktør eller oversætter ved at vælge fra denne menu.
|
||||
firstRunGuidance.quickFormat=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 Ctrl-↓ 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.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=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 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.
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
<!ENTITY zotero.search.name "Name:">
|
||||
|
||||
<!ENTITY zotero.search.searchInLibrary "Search in library:">
|
||||
|
||||
<!ENTITY zotero.search.joinMode.prefix "Ergebnisse finden mit">
|
||||
<!ENTITY zotero.search.joinMode.any "beliebigem">
|
||||
<!ENTITY zotero.search.joinMode.all "allen">
|
||||
|
|
|
@ -45,7 +45,7 @@
|
|||
<!ENTITY zotero.collections.showUnfiledItems "Einträge ohne Sammlung anzeigen">
|
||||
|
||||
<!ENTITY zotero.items.itemType "Eintragsart">
|
||||
<!ENTITY zotero.items.type_column "Typ">
|
||||
<!ENTITY zotero.items.type_column "Item Type">
|
||||
<!ENTITY zotero.items.title_column "Titel">
|
||||
<!ENTITY zotero.items.creator_column "Ersteller">
|
||||
<!ENTITY zotero.items.date_column "Datum">
|
||||
|
|
|
@ -965,5 +965,5 @@ firstRunGuidance.saveIcon=Zotero erkennt einen Eintrag auf dieser Seite. Klicken
|
|||
firstRunGuidance.authorMenu=Zotero ermöglicht es Ihnen, auch Herausgeber und Übersetzer anzugeben. Sie können einen Autor zum Übersetzer machen, indem Sie in diesem Menü die entsprechende Auswahl treffen.
|
||||
firstRunGuidance.quickFormat=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 Strg-\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.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=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=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.
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
<!ENTITY zotero.search.name "Όνομα:">
|
||||
|
||||
<!ENTITY zotero.search.searchInLibrary "Search in library:">
|
||||
|
||||
<!ENTITY zotero.search.joinMode.prefix "Ταίριασμα">
|
||||
<!ENTITY zotero.search.joinMode.any "οποιαδήποτε">
|
||||
<!ENTITY zotero.search.joinMode.all "όλες">
|
||||
|
|
|
@ -45,7 +45,7 @@
|
|||
<!ENTITY zotero.collections.showUnfiledItems "Show Unfiled Items">
|
||||
|
||||
<!ENTITY zotero.items.itemType "Item Type">
|
||||
<!ENTITY zotero.items.type_column "Type">
|
||||
<!ENTITY zotero.items.type_column "Item Type">
|
||||
<!ENTITY zotero.items.title_column "Title">
|
||||
<!ENTITY zotero.items.creator_column "Creator">
|
||||
<!ENTITY zotero.items.date_column "Date">
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
<!ENTITY zotero.search.name "Name:">
|
||||
|
||||
<!ENTITY zotero.search.searchInLibrary "Search in library:">
|
||||
|
||||
<!ENTITY zotero.search.joinMode.prefix "Match">
|
||||
<!ENTITY zotero.search.joinMode.any "any">
|
||||
<!ENTITY zotero.search.joinMode.all "all">
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
<!ENTITY zotero.search.name "Nombre:">
|
||||
|
||||
<!ENTITY zotero.search.searchInLibrary "Search in library:">
|
||||
|
||||
<!ENTITY zotero.search.joinMode.prefix "Patrón">
|
||||
<!ENTITY zotero.search.joinMode.any "cualquiera de">
|
||||
<!ENTITY zotero.search.joinMode.all "todos">
|
||||
|
|
|
@ -45,7 +45,7 @@
|
|||
<!ENTITY zotero.collections.showUnfiledItems "Mostrar ítems unificados">
|
||||
|
||||
<!ENTITY zotero.items.itemType "Tipo de ítem">
|
||||
<!ENTITY zotero.items.type_column "Tipo">
|
||||
<!ENTITY zotero.items.type_column "Item Type">
|
||||
<!ENTITY zotero.items.title_column "Título">
|
||||
<!ENTITY zotero.items.creator_column "Creador">
|
||||
<!ENTITY zotero.items.date_column "Fecha">
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
<!ENTITY zotero.search.name "Nimi:">
|
||||
|
||||
<!ENTITY zotero.search.searchInLibrary "Search in library:">
|
||||
|
||||
<!ENTITY zotero.search.joinMode.prefix "Valik">
|
||||
<!ENTITY zotero.search.joinMode.any "üks">
|
||||
<!ENTITY zotero.search.joinMode.all "kõik">
|
||||
|
|
|
@ -45,7 +45,7 @@
|
|||
<!ENTITY zotero.collections.showUnfiledItems "Teemata kirjed">
|
||||
|
||||
<!ENTITY zotero.items.itemType "Kirje tüüp">
|
||||
<!ENTITY zotero.items.type_column "Tüüp">
|
||||
<!ENTITY zotero.items.type_column "Item Type">
|
||||
<!ENTITY zotero.items.title_column "Pealkiri">
|
||||
<!ENTITY zotero.items.creator_column "Autor">
|
||||
<!ENTITY zotero.items.date_column "Kuupäev">
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
<!ENTITY zotero.search.name "Izena:">
|
||||
|
||||
<!ENTITY zotero.search.searchInLibrary "Search in library:">
|
||||
|
||||
<!ENTITY zotero.search.joinMode.prefix "Bat etortzea">
|
||||
<!ENTITY zotero.search.joinMode.any "edozein">
|
||||
<!ENTITY zotero.search.joinMode.all "guztiak">
|
||||
|
|
|
@ -45,7 +45,7 @@
|
|||
<!ENTITY zotero.collections.showUnfiledItems "Show Unfiled Items">
|
||||
|
||||
<!ENTITY zotero.items.itemType "Item mota">
|
||||
<!ENTITY zotero.items.type_column "Mota">
|
||||
<!ENTITY zotero.items.type_column "Item Type">
|
||||
<!ENTITY zotero.items.title_column "Izenburua">
|
||||
<!ENTITY zotero.items.creator_column "Egilea">
|
||||
<!ENTITY zotero.items.date_column "Data">
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
<!ENTITY zotero.search.name "نام:">
|
||||
|
||||
<!ENTITY zotero.search.searchInLibrary "Search in library:">
|
||||
|
||||
<!ENTITY zotero.search.joinMode.prefix "مطابقت با">
|
||||
<!ENTITY zotero.search.joinMode.any "حداقل یکی از">
|
||||
<!ENTITY zotero.search.joinMode.all "همه">
|
||||
|
|
|
@ -45,7 +45,7 @@
|
|||
<!ENTITY zotero.collections.showUnfiledItems "نمایش آیتمهای دستهبندی نشده">
|
||||
|
||||
<!ENTITY zotero.items.itemType "نوع آیتم">
|
||||
<!ENTITY zotero.items.type_column "نوع">
|
||||
<!ENTITY zotero.items.type_column "Item Type">
|
||||
<!ENTITY zotero.items.title_column "عنوان">
|
||||
<!ENTITY zotero.items.creator_column "پدیدآورنده">
|
||||
<!ENTITY zotero.items.date_column "تاریخ">
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
<!ENTITY zotero.search.name "Nimi:">
|
||||
|
||||
<!ENTITY zotero.search.searchInLibrary "Search in library:">
|
||||
|
||||
<!ENTITY zotero.search.joinMode.prefix "Vertaa">
|
||||
<!ENTITY zotero.search.joinMode.any "joku">
|
||||
<!ENTITY zotero.search.joinMode.all "kaikki">
|
||||
|
|
|
@ -45,7 +45,7 @@
|
|||
<!ENTITY zotero.collections.showUnfiledItems "Näytä arkistoimattomat nimikkeet">
|
||||
|
||||
<!ENTITY zotero.items.itemType "Nimikkeen tyyppi">
|
||||
<!ENTITY zotero.items.type_column "Tyyppi">
|
||||
<!ENTITY zotero.items.type_column "Item Type">
|
||||
<!ENTITY zotero.items.title_column "Otsikko">
|
||||
<!ENTITY zotero.items.creator_column "Luoja">
|
||||
<!ENTITY zotero.items.date_column "Päiväys">
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
<!ENTITY zotero.search.name "Nom :">
|
||||
|
||||
<!ENTITY zotero.search.searchInLibrary "Search in library:">
|
||||
|
||||
<!ENTITY zotero.search.joinMode.prefix "Correspond">
|
||||
<!ENTITY zotero.search.joinMode.any "au moins à une">
|
||||
<!ENTITY zotero.search.joinMode.all "à toutes les">
|
||||
|
|
|
@ -45,7 +45,7 @@
|
|||
<!ENTITY zotero.collections.showUnfiledItems "Afficher les documents sans collection">
|
||||
|
||||
<!ENTITY zotero.items.itemType "Type de document">
|
||||
<!ENTITY zotero.items.type_column "Type">
|
||||
<!ENTITY zotero.items.type_column "Item Type">
|
||||
<!ENTITY zotero.items.title_column "Titre">
|
||||
<!ENTITY zotero.items.creator_column "Créateur">
|
||||
<!ENTITY zotero.items.date_column "Date">
|
||||
|
|
|
@ -965,5 +965,5 @@ firstRunGuidance.saveIcon=Zotero a détecté une référence sur cette page. Cli
|
|||
firstRunGuidance.authorMenu=Zotero vous permet également de préciser les éditeurs scientifiques, directeurs de publication et les traducteurs. Vous pouvez changer un auteur en éditeur ou en traducteur en cliquant sur le triangle à gauche de "Auteur".
|
||||
firstRunGuidance.quickFormat=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 Ctrl-\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.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=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=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.
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
<!ENTITY zotero.search.name "Nome:">
|
||||
|
||||
<!ENTITY zotero.search.searchInLibrary "Search in library:">
|
||||
|
||||
<!ENTITY zotero.search.joinMode.prefix "Comparar con">
|
||||
<!ENTITY zotero.search.joinMode.any "calquera">
|
||||
<!ENTITY zotero.search.joinMode.all "todos">
|
||||
|
|
|
@ -45,7 +45,7 @@
|
|||
<!ENTITY zotero.collections.showUnfiledItems "Mostrar os elementos sen cubrir">
|
||||
|
||||
<!ENTITY zotero.items.itemType "Tipo de elemento">
|
||||
<!ENTITY zotero.items.type_column "Tipo">
|
||||
<!ENTITY zotero.items.type_column "Item Type">
|
||||
<!ENTITY zotero.items.title_column "Título">
|
||||
<!ENTITY zotero.items.creator_column "Creador">
|
||||
<!ENTITY zotero.items.date_column "Data">
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
<!ENTITY zotero.search.name "שם:">
|
||||
|
||||
<!ENTITY zotero.search.searchInLibrary "Search in library:">
|
||||
|
||||
<!ENTITY zotero.search.joinMode.prefix "השווה">
|
||||
<!ENTITY zotero.search.joinMode.any "כל אחד">
|
||||
<!ENTITY zotero.search.joinMode.all "הכל">
|
||||
|
|
|
@ -45,7 +45,7 @@
|
|||
<!ENTITY zotero.collections.showUnfiledItems "Show Unfiled Items">
|
||||
|
||||
<!ENTITY zotero.items.itemType "Item Type">
|
||||
<!ENTITY zotero.items.type_column "סוג">
|
||||
<!ENTITY zotero.items.type_column "Item Type">
|
||||
<!ENTITY zotero.items.title_column "כותרת">
|
||||
<!ENTITY zotero.items.creator_column "יוצר">
|
||||
<!ENTITY zotero.items.date_column "תאריך">
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
<!ENTITY zotero.search.name "Name:">
|
||||
|
||||
<!ENTITY zotero.search.searchInLibrary "Search in library:">
|
||||
|
||||
<!ENTITY zotero.search.joinMode.prefix "Match">
|
||||
<!ENTITY zotero.search.joinMode.any "any">
|
||||
<!ENTITY zotero.search.joinMode.all "all">
|
||||
|
|
|
@ -45,7 +45,7 @@
|
|||
<!ENTITY zotero.collections.showUnfiledItems "Show Unfiled Items">
|
||||
|
||||
<!ENTITY zotero.items.itemType "Item Type">
|
||||
<!ENTITY zotero.items.type_column "Type">
|
||||
<!ENTITY zotero.items.type_column "Item Type">
|
||||
<!ENTITY zotero.items.title_column "Title">
|
||||
<!ENTITY zotero.items.creator_column "Creator">
|
||||
<!ENTITY zotero.items.date_column "Date">
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
<!ENTITY zotero.search.name "Név:">
|
||||
|
||||
<!ENTITY zotero.search.searchInLibrary "Search in library:">
|
||||
|
||||
<!ENTITY zotero.search.joinMode.prefix "Találat">
|
||||
<!ENTITY zotero.search.joinMode.any "bármelyik">
|
||||
<!ENTITY zotero.search.joinMode.all "összes">
|
||||
|
|
|
@ -45,7 +45,7 @@
|
|||
<!ENTITY zotero.collections.showUnfiledItems "Show Unfiled Items">
|
||||
|
||||
<!ENTITY zotero.items.itemType "Item Type">
|
||||
<!ENTITY zotero.items.type_column "Típus">
|
||||
<!ENTITY zotero.items.type_column "Item Type">
|
||||
<!ENTITY zotero.items.title_column "Cím">
|
||||
<!ENTITY zotero.items.creator_column "Létrehozó">
|
||||
<!ENTITY zotero.items.date_column "Dátum">
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
<!ENTITY zotero.search.name "Nama:">
|
||||
|
||||
<!ENTITY zotero.search.searchInLibrary "Search in library:">
|
||||
|
||||
<!ENTITY zotero.search.joinMode.prefix "Cocok">
|
||||
<!ENTITY zotero.search.joinMode.any "apapun">
|
||||
<!ENTITY zotero.search.joinMode.all "semua">
|
||||
|
|
|
@ -45,7 +45,7 @@
|
|||
<!ENTITY zotero.collections.showUnfiledItems "Tunjukkan Item-Item yang Belum Diisikan">
|
||||
|
||||
<!ENTITY zotero.items.itemType "Jenis Item">
|
||||
<!ENTITY zotero.items.type_column "Jenis">
|
||||
<!ENTITY zotero.items.type_column "Item Type">
|
||||
<!ENTITY zotero.items.title_column "Judul">
|
||||
<!ENTITY zotero.items.creator_column "Penyusun">
|
||||
<!ENTITY zotero.items.date_column "Tanggal">
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
<!ENTITY zotero.search.name "Nafn:">
|
||||
|
||||
<!ENTITY zotero.search.searchInLibrary "Search in library:">
|
||||
|
||||
<!ENTITY zotero.search.joinMode.prefix "Leita að">
|
||||
<!ENTITY zotero.search.joinMode.any "einhverju">
|
||||
<!ENTITY zotero.search.joinMode.all "öllum">
|
||||
|
|
|
@ -45,7 +45,7 @@
|
|||
<!ENTITY zotero.collections.showUnfiledItems "Show Unfiled Items">
|
||||
|
||||
<!ENTITY zotero.items.itemType "Item Type">
|
||||
<!ENTITY zotero.items.type_column "Tegund">
|
||||
<!ENTITY zotero.items.type_column "Item Type">
|
||||
<!ENTITY zotero.items.title_column "Titill">
|
||||
<!ENTITY zotero.items.creator_column "Höfundur">
|
||||
<!ENTITY zotero.items.date_column "Date">
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
<!ENTITY zotero.search.name "Nome:">
|
||||
|
||||
<!ENTITY zotero.search.searchInLibrary "Search in library:">
|
||||
|
||||
<!ENTITY zotero.search.joinMode.prefix "Trova">
|
||||
<!ENTITY zotero.search.joinMode.any "le corrispondenze parziali con i criteri">
|
||||
<!ENTITY zotero.search.joinMode.all "le corrispondenze esatte con i criteri">
|
||||
|
|
|
@ -45,7 +45,7 @@
|
|||
<!ENTITY zotero.collections.showUnfiledItems "Mostra gli oggetti non classificati">
|
||||
|
||||
<!ENTITY zotero.items.itemType "Tipo di oggetto">
|
||||
<!ENTITY zotero.items.type_column "Tipo">
|
||||
<!ENTITY zotero.items.type_column "Item Type">
|
||||
<!ENTITY zotero.items.title_column "Titolo">
|
||||
<!ENTITY zotero.items.creator_column "Autore">
|
||||
<!ENTITY zotero.items.date_column "Data">
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
<!ENTITY zotero.search.name "検索式名:">
|
||||
|
||||
<!ENTITY zotero.search.searchInLibrary "Search in library:">
|
||||
|
||||
<!ENTITY zotero.search.joinMode.prefix "次の条件">
|
||||
<!ENTITY zotero.search.joinMode.any "のいずれか">
|
||||
<!ENTITY zotero.search.joinMode.all "すべて">
|
||||
|
|
|
@ -45,7 +45,7 @@
|
|||
<!ENTITY zotero.collections.showUnfiledItems "未整理のアイテムを表示">
|
||||
|
||||
<!ENTITY zotero.items.itemType "アイテムの種類">
|
||||
<!ENTITY zotero.items.type_column "種類">
|
||||
<!ENTITY zotero.items.type_column "Item Type">
|
||||
<!ENTITY zotero.items.title_column "題名">
|
||||
<!ENTITY zotero.items.creator_column "編著者名">
|
||||
<!ENTITY zotero.items.date_column "日時">
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
<!ENTITY zotero.search.name "ឈ្មោះ:">
|
||||
|
||||
<!ENTITY zotero.search.searchInLibrary "Search in library:">
|
||||
|
||||
<!ENTITY zotero.search.joinMode.prefix "ផ្គូរផ្គង">
|
||||
<!ENTITY zotero.search.joinMode.any "មួយផ្នែក">
|
||||
<!ENTITY zotero.search.joinMode.all "ទាំងអស់">
|
||||
|
|
|
@ -45,7 +45,7 @@
|
|||
<!ENTITY zotero.collections.showUnfiledItems "បង្ហាញឯកសារមិនទាន់បានតម្កល់ទុក">
|
||||
|
||||
<!ENTITY zotero.items.itemType "ប្រភេទឯកសារ">
|
||||
<!ENTITY zotero.items.type_column "ប្រភេទ">
|
||||
<!ENTITY zotero.items.type_column "Item Type">
|
||||
<!ENTITY zotero.items.title_column "ចំណងជើង">
|
||||
<!ENTITY zotero.items.creator_column "អ្នកនិពន្ធ">
|
||||
<!ENTITY zotero.items.date_column "កាលបរិច្ឆេទ">
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
<!ENTITY zotero.search.name "이름:">
|
||||
|
||||
<!ENTITY zotero.search.searchInLibrary "Search in library:">
|
||||
|
||||
<!ENTITY zotero.search.joinMode.prefix "다음 조건 중">
|
||||
<!ENTITY zotero.search.joinMode.any "아무거나">
|
||||
<!ENTITY zotero.search.joinMode.all "모두">
|
||||
|
|
|
@ -45,7 +45,7 @@
|
|||
<!ENTITY zotero.collections.showUnfiledItems "미분류 항목 보기">
|
||||
|
||||
<!ENTITY zotero.items.itemType "항목 타입">
|
||||
<!ENTITY zotero.items.type_column "형식">
|
||||
<!ENTITY zotero.items.type_column "Item Type">
|
||||
<!ENTITY zotero.items.title_column "제목">
|
||||
<!ENTITY zotero.items.creator_column "창작자">
|
||||
<!ENTITY zotero.items.date_column "날짜">
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
<!ENTITY zotero.search.name "Pavadinimas:">
|
||||
|
||||
<!ENTITY zotero.search.searchInLibrary "Search in library:">
|
||||
|
||||
<!ENTITY zotero.search.joinMode.prefix "Taikyti">
|
||||
<!ENTITY zotero.search.joinMode.any "bet kuriuos">
|
||||
<!ENTITY zotero.search.joinMode.all "visus">
|
||||
|
|
|
@ -45,7 +45,7 @@
|
|||
<!ENTITY zotero.collections.showUnfiledItems "Rodyti neužpildytus">
|
||||
|
||||
<!ENTITY zotero.items.itemType "Įrašo tipas">
|
||||
<!ENTITY zotero.items.type_column "Tipas">
|
||||
<!ENTITY zotero.items.type_column "Item Type">
|
||||
<!ENTITY zotero.items.title_column "Antraštė">
|
||||
<!ENTITY zotero.items.creator_column "Autorius">
|
||||
<!ENTITY zotero.items.date_column "Data">
|
||||
|
|
|
@ -965,5 +965,5 @@ firstRunGuidance.saveIcon=Šiame puslapyje Zotero aptiko nuorodą. Norėdami nuo
|
|||
firstRunGuidance.authorMenu=Zotero leidžia jums dar nurodyti sudarytojus (redaktorius) ir vertėjus. Šiame meniu žmogų, kuris šiuo metu nurodytas esąs autorius, galite nurodyti esant sudarytoju arba vertėju.
|
||||
firstRunGuidance.quickFormat=Įveskite ieškomą pavadinimą arba autorių.\n\nPasirinkę norimą, paspauskite ties skrituliuku arba nuspauskite Vald+↓ – 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.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=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=Č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.
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
<!ENTITY zotero.search.name "Нэр">
|
||||
|
||||
<!ENTITY zotero.search.searchInLibrary "Search in library:">
|
||||
|
||||
<!ENTITY zotero.search.joinMode.prefix "Үр дүн">
|
||||
<!ENTITY zotero.search.joinMode.any "дурын">
|
||||
<!ENTITY zotero.search.joinMode.all "бүх">
|
||||
|
|
|
@ -45,7 +45,7 @@
|
|||
<!ENTITY zotero.collections.showUnfiledItems "Show Unfiled Items">
|
||||
|
||||
<!ENTITY zotero.items.itemType "Item Type">
|
||||
<!ENTITY zotero.items.type_column "Төрөл">
|
||||
<!ENTITY zotero.items.type_column "Item Type">
|
||||
<!ENTITY zotero.items.title_column "Гарчиг">
|
||||
<!ENTITY zotero.items.creator_column "Creator">
|
||||
<!ENTITY zotero.items.date_column "Хугацаа">
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
<!ENTITY zotero.search.name "Navn:">
|
||||
|
||||
<!ENTITY zotero.search.searchInLibrary "Search in library:">
|
||||
|
||||
<!ENTITY zotero.search.joinMode.prefix "Finn">
|
||||
<!ENTITY zotero.search.joinMode.any "hvilken som helst">
|
||||
<!ENTITY zotero.search.joinMode.all "alle">
|
||||
|
|
|
@ -45,7 +45,7 @@
|
|||
<!ENTITY zotero.collections.showUnfiledItems "Show Unfiled Items">
|
||||
|
||||
<!ENTITY zotero.items.itemType "Item Type">
|
||||
<!ENTITY zotero.items.type_column "Type">
|
||||
<!ENTITY zotero.items.type_column "Item Type">
|
||||
<!ENTITY zotero.items.title_column "Tittel">
|
||||
<!ENTITY zotero.items.creator_column "Navn">
|
||||
<!ENTITY zotero.items.date_column "Dato">
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
<!ENTITY zotero.search.name "Naam:">
|
||||
|
||||
<!ENTITY zotero.search.searchInLibrary "Search in library:">
|
||||
|
||||
<!ENTITY zotero.search.joinMode.prefix "Moet voldoen aan">
|
||||
<!ENTITY zotero.search.joinMode.any "één van de">
|
||||
<!ENTITY zotero.search.joinMode.all "alle">
|
||||
|
|
|
@ -45,7 +45,7 @@
|
|||
<!ENTITY zotero.collections.showUnfiledItems "Ongesorteerde items tonen">
|
||||
|
||||
<!ENTITY zotero.items.itemType "Type item">
|
||||
<!ENTITY zotero.items.type_column "Type">
|
||||
<!ENTITY zotero.items.type_column "Item Type">
|
||||
<!ENTITY zotero.items.title_column "Titel">
|
||||
<!ENTITY zotero.items.creator_column "Maker">
|
||||
<!ENTITY zotero.items.date_column "Datum">
|
||||
|
@ -64,7 +64,7 @@
|
|||
<!ENTITY zotero.items.archive_column "Archief">
|
||||
<!ENTITY zotero.items.archiveLocation_column "Locatie in archief">
|
||||
<!ENTITY zotero.items.place_column "Plaats">
|
||||
<!ENTITY zotero.items.volume_column "Jaargang">
|
||||
<!ENTITY zotero.items.volume_column "# delen">
|
||||
<!ENTITY zotero.items.edition_column "Editie">
|
||||
<!ENTITY zotero.items.pages_column "Pagina's">
|
||||
<!ENTITY zotero.items.issue_column "Editie">
|
||||
|
|
|
@ -331,7 +331,7 @@ itemFields.related=Gerelateerd
|
|||
itemFields.url=URL
|
||||
itemFields.rights=Rechten
|
||||
itemFields.series=Reeks
|
||||
itemFields.volume=Jaargang
|
||||
itemFields.volume=Deel
|
||||
itemFields.issue=Editie
|
||||
itemFields.edition=Druk
|
||||
itemFields.place=Plaats
|
||||
|
@ -360,7 +360,7 @@ itemFields.legislativeBody=(Wetgevend) orgaan
|
|||
itemFields.history=Geschiedenis
|
||||
itemFields.reporter=Jurisprudentietijdschrift
|
||||
itemFields.court=Rechtbank
|
||||
itemFields.numberOfVolumes=Jaargang #
|
||||
itemFields.numberOfVolumes=# delen
|
||||
itemFields.committee=Commissie
|
||||
itemFields.assignee=Rechthebbende
|
||||
itemFields.patentNumber=Patentnummer
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
<!ENTITY zotero.search.name "Namn:">
|
||||
|
||||
<!ENTITY zotero.search.searchInLibrary "Search in library:">
|
||||
|
||||
<!ENTITY zotero.search.joinMode.prefix "Finn">
|
||||
<!ENTITY zotero.search.joinMode.any "minst ein">
|
||||
<!ENTITY zotero.search.joinMode.all "alle">
|
||||
|
|
|
@ -45,7 +45,7 @@
|
|||
<!ENTITY zotero.collections.showUnfiledItems "Vis uplasserte objekt">
|
||||
|
||||
<!ENTITY zotero.items.itemType "Objekttype">
|
||||
<!ENTITY zotero.items.type_column "Type">
|
||||
<!ENTITY zotero.items.type_column "Item Type">
|
||||
<!ENTITY zotero.items.title_column "Tittel">
|
||||
<!ENTITY zotero.items.creator_column "Namn">
|
||||
<!ENTITY zotero.items.date_column "Dato">
|
||||
|
|
|
@ -149,11 +149,11 @@ pane.collections.delete.title=Delete Collection
|
|||
pane.collections.delete=Er du sikker på at du vil sletta den valde samlinga?
|
||||
pane.collections.delete.keepItems=Items within this collection will not be deleted.
|
||||
pane.collections.deleteWithItems.title=Delete Collection and Items
|
||||
pane.collections.deleteWithItems=Are you sure you want to delete the selected collection and move all items within it to the Trash?
|
||||
pane.collections.deleteWithItems=Er du sikker på at du vil sletta den valde samlinga og flytta alle oppføringane i den til søppelkorga?
|
||||
|
||||
pane.collections.deleteSearch.title=Delete Search
|
||||
pane.collections.deleteSearch=Er du sikker på at du vil sletta det valde søket?
|
||||
pane.collections.emptyTrash=Are you sure you want to permanently remove items in the Trash?
|
||||
pane.collections.emptyTrash=Er du sikker på at du vil sletta oppføringane i søppelkorga? Slettinga kan ikkje reverserast.
|
||||
pane.collections.newCollection=Ny samling
|
||||
pane.collections.name=Oppgje eit namn på denne samlinga:
|
||||
pane.collections.newSavedSeach=Nytt lagra søk
|
||||
|
@ -204,8 +204,8 @@ 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.menu.remove=Fjern valt element
|
||||
pane.items.menu.remove.multiple=Fjern valde element
|
||||
pane.items.menu.moveToTrash=Move Item to Trash…
|
||||
pane.items.menu.moveToTrash.multiple=Move Items to Trash…
|
||||
pane.items.menu.moveToTrash=Flytt til søppelkorga
|
||||
pane.items.menu.moveToTrash.multiple=Flytt til søppelkorga
|
||||
pane.items.menu.export=Eksporter valt element …
|
||||
pane.items.menu.export.multiple=Eksporter valde element …
|
||||
pane.items.menu.createBib=Lag bibliografi frå valt element …
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
<!ENTITY zotero.search.name "Nazwa:">
|
||||
|
||||
<!ENTITY zotero.search.searchInLibrary "Search in library:">
|
||||
|
||||
<!ENTITY zotero.search.joinMode.prefix "Zawiera">
|
||||
<!ENTITY zotero.search.joinMode.any "jakikolwiek">
|
||||
<!ENTITY zotero.search.joinMode.all "wszystkie">
|
||||
|
|
|
@ -45,7 +45,7 @@
|
|||
<!ENTITY zotero.collections.showUnfiledItems "Pokaż Niepowiązane pliki">
|
||||
|
||||
<!ENTITY zotero.items.itemType "Typ elementu">
|
||||
<!ENTITY zotero.items.type_column "Typ">
|
||||
<!ENTITY zotero.items.type_column "Item Type">
|
||||
<!ENTITY zotero.items.title_column "Tytuł">
|
||||
<!ENTITY zotero.items.creator_column "Twórca">
|
||||
<!ENTITY zotero.items.date_column "Data">
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
<!ENTITY zotero.search.name "Nome:">
|
||||
|
||||
<!ENTITY zotero.search.searchInLibrary "Search in library:">
|
||||
|
||||
<!ENTITY zotero.search.joinMode.prefix "Comparar">
|
||||
<!ENTITY zotero.search.joinMode.any "qualquer">
|
||||
<!ENTITY zotero.search.joinMode.all "tudo">
|
||||
|
|
|
@ -45,7 +45,7 @@
|
|||
<!ENTITY zotero.collections.showUnfiledItems "Mostrar itens sem coleção">
|
||||
|
||||
<!ENTITY zotero.items.itemType "Tipo do item">
|
||||
<!ENTITY zotero.items.type_column "Tipo">
|
||||
<!ENTITY zotero.items.type_column "Item Type">
|
||||
<!ENTITY zotero.items.title_column "Título">
|
||||
<!ENTITY zotero.items.creator_column "Criador">
|
||||
<!ENTITY zotero.items.date_column "Data">
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
<!ENTITY zotero.search.name "Nome:">
|
||||
|
||||
<!ENTITY zotero.search.searchInLibrary "Search in library:">
|
||||
|
||||
<!ENTITY zotero.search.joinMode.prefix "Fazer corresponder">
|
||||
<!ENTITY zotero.search.joinMode.any "qualquer dos">
|
||||
<!ENTITY zotero.search.joinMode.all "todos os">
|
||||
|
|
|
@ -45,7 +45,7 @@
|
|||
<!ENTITY zotero.collections.showUnfiledItems "Mostrar Itens por Arquivar">
|
||||
|
||||
<!ENTITY zotero.items.itemType "Tipo de Item">
|
||||
<!ENTITY zotero.items.type_column "Tipo">
|
||||
<!ENTITY zotero.items.type_column "Item Type">
|
||||
<!ENTITY zotero.items.title_column "Título">
|
||||
<!ENTITY zotero.items.creator_column "Criador">
|
||||
<!ENTITY zotero.items.date_column "Data">
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
<!ENTITY zotero.search.name "Nume:">
|
||||
|
||||
<!ENTITY zotero.search.searchInLibrary "Search in library:">
|
||||
|
||||
<!ENTITY zotero.search.joinMode.prefix "Potrivire">
|
||||
<!ENTITY zotero.search.joinMode.any "oricare">
|
||||
<!ENTITY zotero.search.joinMode.all "toate">
|
||||
|
|
|
@ -45,7 +45,7 @@
|
|||
<!ENTITY zotero.collections.showUnfiledItems "Arată înregistrările neîndosariate">
|
||||
|
||||
<!ENTITY zotero.items.itemType "Tip înregistrare">
|
||||
<!ENTITY zotero.items.type_column "Tip">
|
||||
<!ENTITY zotero.items.type_column "Item Type">
|
||||
<!ENTITY zotero.items.title_column "Titlu">
|
||||
<!ENTITY zotero.items.creator_column "Creator">
|
||||
<!ENTITY zotero.items.date_column "Dată">
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
<!ENTITY zotero.search.name "Название">
|
||||
|
||||
<!ENTITY zotero.search.searchInLibrary "Search in library:">
|
||||
|
||||
<!ENTITY zotero.search.joinMode.prefix "Совпадающее с">
|
||||
<!ENTITY zotero.search.joinMode.any "любым">
|
||||
<!ENTITY zotero.search.joinMode.all "всеми">
|
||||
|
|
|
@ -45,7 +45,7 @@
|
|||
<!ENTITY zotero.collections.showUnfiledItems "Показать неподшитые документы">
|
||||
|
||||
<!ENTITY zotero.items.itemType "Тип документа">
|
||||
<!ENTITY zotero.items.type_column "Тип">
|
||||
<!ENTITY zotero.items.type_column "Item Type">
|
||||
<!ENTITY zotero.items.title_column "Название">
|
||||
<!ENTITY zotero.items.creator_column "Создатель">
|
||||
<!ENTITY zotero.items.date_column "Дата">
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
<!ENTITY zotero.search.name "Meno:">
|
||||
|
||||
<!ENTITY zotero.search.searchInLibrary "Search in library:">
|
||||
|
||||
<!ENTITY zotero.search.joinMode.prefix "Zodpovedá">
|
||||
<!ENTITY zotero.search.joinMode.any "ktorémukoľvek">
|
||||
<!ENTITY zotero.search.joinMode.all "všetkým">
|
||||
|
|
|
@ -45,7 +45,7 @@
|
|||
<!ENTITY zotero.collections.showUnfiledItems "Zobraziť nezaradené exempláre">
|
||||
|
||||
<!ENTITY zotero.items.itemType "Typ exemplára">
|
||||
<!ENTITY zotero.items.type_column "Typ">
|
||||
<!ENTITY zotero.items.type_column "Item Type">
|
||||
<!ENTITY zotero.items.title_column "Názov">
|
||||
<!ENTITY zotero.items.creator_column "Autor">
|
||||
<!ENTITY zotero.items.date_column "Dátum">
|
||||
|
|
|
@ -965,5 +965,5 @@ firstRunGuidance.saveIcon=Zotero dokáže rozpoznať citáciu na tejto stránke.
|
|||
firstRunGuidance.authorMenu=Zotero vám tiež dovoľuje určiť zostavovateľov a prekladateľov. Autora môžete zmeniť na zostavovateľa alebo prekladateľa pomocou výberu z tejto ponuky.
|
||||
firstRunGuidance.quickFormat=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.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=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=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.
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
<!ENTITY zotero.search.name "Ime:">
|
||||
|
||||
<!ENTITY zotero.search.searchInLibrary "Search in library:">
|
||||
|
||||
<!ENTITY zotero.search.joinMode.prefix "Ujemanje">
|
||||
<!ENTITY zotero.search.joinMode.any "s katerimkoli">
|
||||
<!ENTITY zotero.search.joinMode.all "z vsemi">
|
||||
|
|
|
@ -45,7 +45,7 @@
|
|||
<!ENTITY zotero.collections.showUnfiledItems "Pokaži nerazvrščene vnose">
|
||||
|
||||
<!ENTITY zotero.items.itemType "Vrsta vnosa">
|
||||
<!ENTITY zotero.items.type_column "Vrsta">
|
||||
<!ENTITY zotero.items.type_column "Item Type">
|
||||
<!ENTITY zotero.items.title_column "Naslov">
|
||||
<!ENTITY zotero.items.creator_column "Ustvaril">
|
||||
<!ENTITY zotero.items.date_column "Datum">
|
||||
|
|
|
@ -177,7 +177,7 @@ pane.collections.menu.createBib.collection=Ustvari bibliografijo iz zbirke ...
|
|||
pane.collections.menu.createBib.savedSearch=Ustvari bibliografijo iz shranjenega iskanja ...
|
||||
|
||||
pane.collections.menu.generateReport.collection=Ustvari poročilo iz zbirke ...
|
||||
pane.collections.menu.generateReport.savedSearch=Ustvari poročilo iz shranjenega iskanja
|
||||
pane.collections.menu.generateReport.savedSearch=Ustvari poročilo iz shranjenega iskanja ...
|
||||
|
||||
pane.tagSelector.rename.title=Preimenuj značko
|
||||
pane.tagSelector.rename.message=Vnesite novo ime za to značko.\n\nZnačka bo spremenjena v vseh povezanih vnosih.
|
||||
|
@ -202,22 +202,22 @@ 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.menu.remove=Odstrani izbrani vnos
|
||||
pane.items.menu.remove.multiple=Odstrani izbrane vnose
|
||||
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š ...
|
||||
pane.items.menu.moveToTrash.multiple=Premakni vnose v koš ...
|
||||
pane.items.menu.export=Izvozi izbrani vnos ...
|
||||
pane.items.menu.export.multiple=Izvozi izbrane vnose ...
|
||||
pane.items.menu.createBib=Ustvari bibliografijo iz izbranega vnosa ...
|
||||
pane.items.menu.createBib.multiple=Ustvari bibliografijo iz izbranih vnosov ...
|
||||
pane.items.menu.generateReport=Izdelaj poročilo iz izbranega vnosa ...
|
||||
pane.items.menu.generateReport.multiple=Izdelaj poročilo iz izbranih vnosov ...
|
||||
pane.items.menu.export=Izvozi vnos ...
|
||||
pane.items.menu.export.multiple=Izvozi vnose ...
|
||||
pane.items.menu.createBib=Ustvari bibliografijo iz vnosa ...
|
||||
pane.items.menu.createBib.multiple=Ustvari bibliografijo iz vnosov ...
|
||||
pane.items.menu.generateReport=Izdelaj poročilo iz vnosa ...
|
||||
pane.items.menu.generateReport.multiple=Izdelaj poročilo iz vnosov ...
|
||||
pane.items.menu.reindexItem=Ponovno indeksiraj vnos
|
||||
pane.items.menu.reindexItem.multiple=Ponovno indeksiraj vnose
|
||||
pane.items.menu.recognizePDF=Pridobi metapodatke za PDF
|
||||
pane.items.menu.recognizePDF.multiple=Pridobi metapodatke za PDF-je
|
||||
pane.items.menu.createParent=Ustvari starševski vnos iz izbranega vnosa
|
||||
pane.items.menu.createParent.multiple=Ustvari starševske vnose iz izbranih vnosov
|
||||
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
|
||||
|
||||
|
@ -963,7 +963,7 @@ connector.loadInProgress=Samostojni Zotero je bil zagnan, a ni dosegljiv. Če st
|
|||
|
||||
firstRunGuidance.saveIcon=Zotero lahko prepozna sklic na tej strani. Kliknite to ikono v naslovni vrstici, da shranite sklic v svojo knjižnico Zotero.
|
||||
firstRunGuidance.authorMenu=Zotero omogoča tudi določitev urednikov in prevajalcev. Avtorja lahko spremenite v urednika ali prevajalca z ukazom v tem meniju.
|
||||
firstRunGuidance.quickFormat=Za iskanje sklica vnesite naslov ali avtorja.\n\nKo ste opravili izbor, kliknite oblaček ali pritisnite krmilka-\u2193 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.quickFormatMac=Za iskanje sklica vnesite naslov ali avtorja.\n\nKo ste opravili izbor, kliknite oblaček ali pritisnite Cmd-\u2193 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=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.quickFormat=Za iskanje sklica vnesite naslov ali avtorja.\n\nKo ste opravili izbor, kliknite oblaček ali pritisnite krmilka-↓ 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.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.
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
<!ENTITY zotero.search.name "Име:">
|
||||
|
||||
<!ENTITY zotero.search.searchInLibrary "Search in library:">
|
||||
|
||||
<!ENTITY zotero.search.joinMode.prefix "Преклапај">
|
||||
<!ENTITY zotero.search.joinMode.any "било шта">
|
||||
<!ENTITY zotero.search.joinMode.all "све">
|
||||
|
|
|
@ -45,7 +45,7 @@
|
|||
<!ENTITY zotero.collections.showUnfiledItems "Show Unfiled Items">
|
||||
|
||||
<!ENTITY zotero.items.itemType "Тип ставке">
|
||||
<!ENTITY zotero.items.type_column "Врста">
|
||||
<!ENTITY zotero.items.type_column "Item Type">
|
||||
<!ENTITY zotero.items.title_column "Наслов">
|
||||
<!ENTITY zotero.items.creator_column "Аутор">
|
||||
<!ENTITY zotero.items.date_column "Датум">
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
<!ENTITY zotero.search.name "Namn:">
|
||||
|
||||
<!ENTITY zotero.search.searchInLibrary "Search in library:">
|
||||
|
||||
<!ENTITY zotero.search.joinMode.prefix "Hitta">
|
||||
<!ENTITY zotero.search.joinMode.any "vilken som helst">
|
||||
<!ENTITY zotero.search.joinMode.all "alla">
|
||||
|
|
|
@ -45,7 +45,7 @@
|
|||
<!ENTITY zotero.collections.showUnfiledItems "Visa oregistererade källor">
|
||||
|
||||
<!ENTITY zotero.items.itemType "Källtyp">
|
||||
<!ENTITY zotero.items.type_column "Typ">
|
||||
<!ENTITY zotero.items.type_column "Item Type">
|
||||
<!ENTITY zotero.items.title_column "Titel">
|
||||
<!ENTITY zotero.items.creator_column "Skapare">
|
||||
<!ENTITY zotero.items.date_column "Datum">
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue