Compare commits

...

11 Commits

Author SHA1 Message Date
Georges Dupéron
6cda5c3922 WIP: keep the selected collection in the search results, and make sure it is still selected afterwards. 2018-06-24 23:23:05 +02:00
Georges Dupéron
47f415e523 WIP: cleanup (remove backup MESSAGE) 2018-06-19 21:45:28 +02:00
Georges Dupéron
01849cb2d9 WIP: focus the search field after it is displayed. 2018-06-19 21:44:54 +02:00
Georges Dupéron
b22ddf9180 WIP: search for collections now works, but is inefficient (it re-traverses the subtree every time) 2018-06-19 21:38:56 +02:00
Georges Dupéron
24768cdf1b WIP: post on GitHub 2018-06-16 17:31:11 +02:00
Georges Dupéron
f8d4230cfd WIP: Toggling works 2018-06-16 17:31:04 +02:00
Georges Dupéron
eab2ba3cea WIP: Renamed &zotero.toolbar.searchCollections.label; to &zotero.toolbar.showCollectionLookup.label; 2018-06-16 15:53:17 +02:00
Georges Dupéron
932197e06d WIP: typo 2018-06-16 14:51:34 +02:00
Georges Dupéron
debd2dc5f9 WIP: Pre-instantiated all translations 2018-06-16 14:49:44 +02:00
Georges Dupéron
f627937b48 WIP... 2018-06-16 14:41:45 +02:00
Georges Dupéron
353e64e531 WIP: search collections 2018-06-16 14:08:54 +02:00
50 changed files with 999 additions and 857 deletions

View File

@ -41,6 +41,8 @@ Zotero.CollectionTreeView = function()
this.itemTreeView = null;
this.itemToSelect = null;
this.hideSources = [];
this._searchCache = { searchText: '' };
this.selectedBeforeSearch = Zotero.Prefs.get('lastViewedFolder');
this._highlightedRows = {};
this._unregisterID = Zotero.Notifier.registerObserver(
@ -1088,6 +1090,15 @@ Zotero.CollectionTreeView.prototype.selectByID = Zotero.Promise.coroutine(functi
return true;
});
Zotero.CollectionTreeView.prototype.setSearch = Zotero.Promise.coroutine(function* (val) {
this._searchCache = { searchText: val ? val : '' };
var selectedBeforeSearch = this.getSelectedCollection(true);
if (selectedBeforeSearch) { this.selectedBeforeSearch = 'C' + selectedBeforeSearch; }
this.collapseLibrary(Zotero.Libraries.userLibraryID);
yield this.expandLibrary(Zotero.Libraries.userLibraryID, true);
this._refreshRowMap();
this.selection.select(this._rowMap[this.selectedBeforeSearch]);
});
/**
* @param {Integer} libraryID Library to select
@ -1344,15 +1355,46 @@ Zotero.CollectionTreeView.prototype._expandRow = Zotero.Promise.coroutine(functi
// Add collections
for (var i = 0, len = collections.length; i < len; i++) {
let beforeRow = row + 1 + newRows;
this._addRowToArray(
rows,
new Zotero.CollectionTreeRow(this, 'collection', collections[i], level + 1),
beforeRow
);
newRows++;
// Recursively expand child collections that should be open
newRows += yield this._expandRow(rows, beforeRow);
// This function checks whether this collection or one of its descendandts is a search result.
var that = this;
var isSearchResult = function (collection) {
if (that._searchCache.hasOwnProperty(collection.id)) {
return that._searchCache[collection.id];
} else {
if (that.selectedBeforeSearch == 'C' + collection.id) {
// To avoid most bugs that could happen if the selected row is invisible,
// and to make things more practical when searching for a collection to which
// one wants to add an item, we keep the selected collection visible.
that._searchCache[collection.id] = true;
return true;
} else if (collection.name.toLowerCase().indexOf(that._searchCache.searchText) >= 0) {
that._searchCache[collection.id] = true;
return true;
}
else {
var rcollections = collection.getChildCollections();
for (var j = 0, jlen = rcollections.length; j < jlen; j++) {
if (isSearchResult(rcollections[j])) {
that._searchCache[collection.id] = true;
return true;
}
}
that._searchCache[collection.id] = false;
return false;
}
}
};
if (isSearchResult(collections[i])) {
let beforeRow = row + 1 + newRows;
this._addRowToArray(
rows,
new Zotero.CollectionTreeRow(this, 'collection', collections[i], level + 1),
beforeRow
);
newRows++;
// Recursively expand child collections that should be open
newRows += yield this._expandRow(rows, beforeRow);
}
}
if (isCollection) {

View File

@ -406,6 +406,7 @@ var ZoteroPane = new function()
_madeVisible = true;
this.unserializePersist();
this.updateCollectionLookupToolbarButton();
this.updateLayout();
this.updateToolbarPosition();
this.updateTagSelectorSize();
@ -947,6 +948,41 @@ var ZoteroPane = new function()
return collection.saveTx();
});
this.showCollectionLookup = Zotero.Promise.coroutine(function* (parentKey) {
var collectionsLookupTextbox = document.getElementById('zotero-collection-lookup-textbox');
collectionsLookupTextbox.hidden = !collectionsLookupTextbox.hidden;
if (!collectionsLookupTextbox.hidden) {
collectionsLookupTextbox.focus();
}
this.updateCollectionLookupToolbarButton();
});
this.updateCollectionLookupToolbarButton = function () {
var collectionsLookupTextbox = document.getElementById('zotero-collection-lookup-textbox');
var toolbarButton = document.getElementById('zotero-tb-show-collection-lookup');
toolbarButton.checked = !collectionsLookupTextbox.hidden;
};
this._collectionSearch = false;
this.onCollectionLookup = function (clear) {
var setSearch = function(val) {
this._collectionSearch = val
? val.toLowerCase().normalize()
: false;
ZoteroPane_Local.collectionsView.setSearch(_collectionSearch);
};
var collectionsLookupTextbox = document.getElementById('zotero-collection-lookup-textbox');
if (typeof clear != 'undefined') {
if (clear){
collectionsLookupTextbox.value = '';
setSearch('');
return false;
}
else {
return true;
}
}
setSearch(collectionsLookupTextbox.value);
};
this.importFeedsFromOPML = Zotero.Promise.coroutine(function* (event) {
var nsIFilePicker = Components.interfaces.nsIFilePicker;
while (true) {
@ -2445,6 +2481,10 @@ var ZoteroPane = new function()
id: "newCollection",
command: "cmd_zotero_newCollection"
},
{
id: "showCollectionLookup",
command: "cmd_zotero_showCollectionLookup"
},
{
id: "newSavedSearch",
command: "cmd_zotero_newSavedSearch"
@ -4947,6 +4987,9 @@ var ZoteroPane = new function()
var serializedValues = Zotero.Prefs.get("pane.persist");
if(!serializedValues) return;
serializedValues = JSON.parse(serializedValues);
if (!serializedValues["zotero-collection-lookup-textbox"]) {
serializedValues["zotero-collection-lookup-textbox"] = { hidden: true }; // hidden by default.
}
for(var id in serializedValues) {
var el = document.getElementById(id);
if(!el) return;

View File

@ -62,6 +62,7 @@
<command id="cmd_zotero_createTimeline" oncommand="Zotero_Timeline_Interface.loadTimeline();"/>
<command id="cmd_zotero_rtfScan" oncommand="window.openDialog('chrome://zotero/content/rtfScan.xul', 'rtfScan', 'chrome,centerscreen')"/>
<command id="cmd_zotero_newCollection" oncommand="ZoteroPane_Local.newCollection()"/>
<command id="cmd_zotero_showCollectionLookup" oncommand="ZoteroPane_Local.showCollectionLookup()"/>
<command id="cmd_zotero_newFeed_fromURL" oncommand="ZoteroPane_Local.newFeedFromURL()"/>
<command id="cmd_zotero_newSavedSearch" oncommand="ZoteroPane_Local.newSearch()"/>
<command id="cmd_zotero_newStandaloneNote" oncommand="ZoteroPane_Local.newNote(event.shiftKey);"/>
@ -107,6 +108,7 @@
<toolbar id="zotero-toolbar" class="toolbar toolbar-primary">
<hbox id="zotero-collections-toolbar" align="center">
<toolbarbutton id="zotero-tb-collection-add" class="zotero-tb-button" tooltiptext="&zotero.toolbar.newCollection.label;" command="cmd_zotero_newCollection"/>
<toolbarbutton id="zotero-tb-show-collection-lookup" class="zotero-tb-button" tooltiptext="&zotero.toolbar.showCollectionLookup.label;" command="cmd_zotero_showCollectionLookup"/>
<toolbarbutton id="zotero-tb-library-add-menu" class="zotero-tb-button" tooltiptext="&zotero.toolbar.newLibrary.label;" type="menu">
<menupopup id="zotero-tb-library-add-popup">
<menuitem id="zotero-tb-group-add" label="&zotero.toolbar.newGroup;" oncommand="ZoteroPane_Local.newGroup()"/>
@ -284,6 +286,7 @@
<menuseparator/>
<menuitem class="zotero-menuitem-show-duplicates" label="&zotero.toolbar.duplicate.label;"/>
<menuitem class="zotero-menuitem-show-unfiled" label="&zotero.collections.showUnfiledItems;"/>
<menuitem class="zotero-menuitem-show-collection-lookup" label="&zotero.toolbar.showCollectionLookup.label;"/>
<menuitem class="zotero-menuitem-edit-collection"/>
<menuitem class="zotero-menuitem-mark-read-feed" label="&zotero.toolbar.markFeedRead.label;"/>
<menuitem class="zotero-menuitem-edit-feed" label="&zotero.toolbar.feeds.edit;"/>
@ -343,6 +346,10 @@
<box id="zotero-collections-tree-shim"/>
<!-- This extra vbox prevents the toolbar from getting compressed when resizing
the tag selector to max height -->
<textbox id="zotero-collection-lookup-textbox" flex="0" type="search" timeout="250" dir="reverse"
zotero-persist="hidden"
oncommand="ZoteroPane.onCollectionLookup(); event.stopPropagation()"
onkeypress="if (event.keyCode == event.DOM_VK_ESCAPE) { ZoteroPane.onCollectionLookup(true); }"/>
<tree id="zotero-collections-tree"
hidecolumnpicker="true"
oncontextmenu="ZoteroPane.onCollectionsContextMenuOpen(event)"

View File

@ -114,6 +114,7 @@
<!ENTITY zotero.toolbar.removeItem.label "Remove Item...">
<!ENTITY zotero.toolbar.newLibrary.label "New Library">
<!ENTITY zotero.toolbar.newCollection.label "New Collection...">
<!ENTITY zotero.toolbar.showCollectionLookup.label "[TODO:TRANSLATE] Filtrer the list of collections…">
<!ENTITY zotero.toolbar.markFeedRead.label "Mark Feed as Read">
<!ENTITY zotero.toolbar.newGroup "New Group...">
<!ENTITY zotero.toolbar.newSubcollection.label "New Subcollection...">

View File

@ -114,6 +114,7 @@
<!ENTITY zotero.toolbar.removeItem.label "ازالة العنصر...">
<!ENTITY zotero.toolbar.newLibrary.label "مكتبة جديدة">
<!ENTITY zotero.toolbar.newCollection.label "مجموعة عناصر جديدة...">
<!ENTITY zotero.toolbar.showCollectionLookup.label "[TODO:TRANSLATE] Filtrer the list of collections…">
<!ENTITY zotero.toolbar.markFeedRead.label "علم الخلاصة كمقروءة">
<!ENTITY zotero.toolbar.newGroup "مجموعة مشاركة جديدة...">
<!ENTITY zotero.toolbar.newSubcollection.label "مجموعة عناصر فرعية جديدة...">

View File

@ -114,6 +114,7 @@
<!ENTITY zotero.toolbar.removeItem.label "Остранява запис...">
<!ENTITY zotero.toolbar.newLibrary.label "New Library">
<!ENTITY zotero.toolbar.newCollection.label "Нова колекция...">
<!ENTITY zotero.toolbar.showCollectionLookup.label "[TODO:TRANSLATE] Filtrer the list of collections…">
<!ENTITY zotero.toolbar.markFeedRead.label "Mark Feed as Read">
<!ENTITY zotero.toolbar.newGroup "Нова група...">
<!ENTITY zotero.toolbar.newSubcollection.label "Нова подколекция...">

View File

@ -114,6 +114,7 @@
<!ENTITY zotero.toolbar.removeItem.label "Esborra l'element...">
<!ENTITY zotero.toolbar.newLibrary.label "New Library">
<!ENTITY zotero.toolbar.newCollection.label "Col·lecció nova...">
<!ENTITY zotero.toolbar.showCollectionLookup.label "[TODO:TRANSLATE] Filtrer the list of collections…">
<!ENTITY zotero.toolbar.markFeedRead.label "Mark Feed as Read">
<!ENTITY zotero.toolbar.newGroup "Grup nou...">
<!ENTITY zotero.toolbar.newSubcollection.label "Subcol·lecció nova...">

View File

@ -114,6 +114,7 @@
<!ENTITY zotero.toolbar.removeItem.label "Odstranit položku...">
<!ENTITY zotero.toolbar.newLibrary.label "Nová knihovna">
<!ENTITY zotero.toolbar.newCollection.label "Nová kolekce...">
<!ENTITY zotero.toolbar.showCollectionLookup.label "[TODO:TRANSLATE] Filtrer the list of collections…">
<!ENTITY zotero.toolbar.markFeedRead.label "Označit vlákno jako přečtené">
<!ENTITY zotero.toolbar.newGroup "Nová skupina...">
<!ENTITY zotero.toolbar.newSubcollection.label "Nová podkolekce...">

View File

@ -114,6 +114,7 @@
<!ENTITY zotero.toolbar.removeItem.label "Fjern ...">
<!ENTITY zotero.toolbar.newLibrary.label "Nyt bibliotek">
<!ENTITY zotero.toolbar.newCollection.label "Ny Samling...">
<!ENTITY zotero.toolbar.showCollectionLookup.label "[TODO:TRANSLATE] Filtrer the list of collections…">
<!ENTITY zotero.toolbar.markFeedRead.label "Markér nyhedsstrøm som læst">
<!ENTITY zotero.toolbar.newGroup "Ny Gruppe ...">
<!ENTITY zotero.toolbar.newSubcollection.label "Ny delsamling">

View File

@ -114,6 +114,7 @@
<!ENTITY zotero.toolbar.removeItem.label "Eintrag entfernen...">
<!ENTITY zotero.toolbar.newLibrary.label "Neue Bibliothek">
<!ENTITY zotero.toolbar.newCollection.label "Neue Sammlung...">
<!ENTITY zotero.toolbar.showCollectionLookup.label "Filter die Sammlungliste...">
<!ENTITY zotero.toolbar.markFeedRead.label "Feed as gelesen markieren">
<!ENTITY zotero.toolbar.newGroup "Neue Gruppe...">
<!ENTITY zotero.toolbar.newSubcollection.label "Neue Untersammlung...">

View File

@ -114,6 +114,7 @@
<!ENTITY zotero.toolbar.removeItem.label "Απομάκρυνση στοιχείου...">
<!ENTITY zotero.toolbar.newLibrary.label "New Library">
<!ENTITY zotero.toolbar.newCollection.label "Νέα συλλογή...">
<!ENTITY zotero.toolbar.showCollectionLookup.label "[TODO:TRANSLATE] Filtrer the list of collections…">
<!ENTITY zotero.toolbar.markFeedRead.label "Mark Feed as Read">
<!ENTITY zotero.toolbar.newGroup "Νέα ομάδα...">
<!ENTITY zotero.toolbar.newSubcollection.label "Νέα δευτερεύουσα συλλογή...">

View File

@ -114,6 +114,7 @@
<!ENTITY zotero.toolbar.removeItem.label "Remove Item…">
<!ENTITY zotero.toolbar.newLibrary.label "New Library">
<!ENTITY zotero.toolbar.newCollection.label "New Collection…">
<!ENTITY zotero.toolbar.showCollectionLookup.label "Filtrer the list of collections…">
<!ENTITY zotero.toolbar.markFeedRead.label "Mark Feed as Read">
<!ENTITY zotero.toolbar.newGroup "New Group…">
<!ENTITY zotero.toolbar.newSubcollection.label "New Subcollection…">

View File

@ -114,6 +114,7 @@
<!ENTITY zotero.toolbar.removeItem.label "Eliminar ítem...">
<!ENTITY zotero.toolbar.newLibrary.label "Nueva Biblioteca">
<!ENTITY zotero.toolbar.newCollection.label "Nueva colección...">
<!ENTITY zotero.toolbar.showCollectionLookup.label "[TODO:TRANSLATE] Filtrer the list of collections…">
<!ENTITY zotero.toolbar.markFeedRead.label "Marcar Fuente RSS como leída">
<!ENTITY zotero.toolbar.newGroup "Nuevo grupo...">
<!ENTITY zotero.toolbar.newSubcollection.label "Nueva subcolección...">

View File

@ -114,6 +114,7 @@
<!ENTITY zotero.toolbar.removeItem.label "Kirje eemaldamine...">
<!ENTITY zotero.toolbar.newLibrary.label "New Library">
<!ENTITY zotero.toolbar.newCollection.label "Uus teema...">
<!ENTITY zotero.toolbar.showCollectionLookup.label "[TODO:TRANSLATE] Filtrer the list of collections…">
<!ENTITY zotero.toolbar.markFeedRead.label "Mark Feed as Read">
<!ENTITY zotero.toolbar.newGroup "Uus grupp...">
<!ENTITY zotero.toolbar.newSubcollection.label "Uus alamteema...">

View File

@ -114,6 +114,7 @@
<!ENTITY zotero.toolbar.removeItem.label "Itema bildumatik kendu">
<!ENTITY zotero.toolbar.newLibrary.label "New Library">
<!ENTITY zotero.toolbar.newCollection.label "Bilduma berria...">
<!ENTITY zotero.toolbar.showCollectionLookup.label "[TODO:TRANSLATE] Filtrer the list of collections…">
<!ENTITY zotero.toolbar.markFeedRead.label "Mark Feed as Read">
<!ENTITY zotero.toolbar.newGroup "Talde berria...">
<!ENTITY zotero.toolbar.newSubcollection.label "Azpi-bilduma berria...">

View File

@ -114,6 +114,7 @@
<!ENTITY zotero.toolbar.removeItem.label "حذف آیتم‌...">
<!ENTITY zotero.toolbar.newLibrary.label "New Library">
<!ENTITY zotero.toolbar.newCollection.label "مجموعه جدید...">
<!ENTITY zotero.toolbar.showCollectionLookup.label "[TODO:TRANSLATE] Filtrer the list of collections…">
<!ENTITY zotero.toolbar.markFeedRead.label "Mark Feed as Read">
<!ENTITY zotero.toolbar.newGroup "گروه جدید...">
<!ENTITY zotero.toolbar.newSubcollection.label "زیرمجموعه جدید...">

View File

@ -114,6 +114,7 @@
<!ENTITY zotero.toolbar.removeItem.label "Poista nimike...">
<!ENTITY zotero.toolbar.newLibrary.label "Uusi kirjasto">
<!ENTITY zotero.toolbar.newCollection.label "Uusi kokoelma...">
<!ENTITY zotero.toolbar.showCollectionLookup.label "[TODO:TRANSLATE] Filtrer the list of collections…">
<!ENTITY zotero.toolbar.markFeedRead.label "Merkitse syöte luetuksi">
<!ENTITY zotero.toolbar.newGroup "Uusi ryhmä...">
<!ENTITY zotero.toolbar.newSubcollection.label "Uusi alakokoelma...">

View File

@ -114,6 +114,7 @@
<!ENTITY zotero.toolbar.removeItem.label "Supprimer le document…">
<!ENTITY zotero.toolbar.newLibrary.label "Nouvelle bibliothèque">
<!ENTITY zotero.toolbar.newCollection.label "Nouvelle collection…">
<!ENTITY zotero.toolbar.showCollectionLookup.label "Filtrer la liste de collections…">
<!ENTITY zotero.toolbar.markFeedRead.label "Marquer le flux comme lu">
<!ENTITY zotero.toolbar.newGroup "Nouveau groupe…">
<!ENTITY zotero.toolbar.newSubcollection.label "Nouvelle sous-collection…">

View File

@ -114,6 +114,7 @@
<!ENTITY zotero.toolbar.removeItem.label "Eliminar...">
<!ENTITY zotero.toolbar.newLibrary.label "Nova biblioteca">
<!ENTITY zotero.toolbar.newCollection.label "Colección nova">
<!ENTITY zotero.toolbar.showCollectionLookup.label "[TODO:TRANSLATE] Filtrer the list of collections…">
<!ENTITY zotero.toolbar.markFeedRead.label "Marcar a fonte de novas como lida">
<!ENTITY zotero.toolbar.newGroup "Grupo novo...">
<!ENTITY zotero.toolbar.newSubcollection.label "Subcolección nova">

View File

@ -114,6 +114,7 @@
<!ENTITY zotero.toolbar.removeItem.label "הסר פריט">
<!ENTITY zotero.toolbar.newLibrary.label "New Library">
<!ENTITY zotero.toolbar.newCollection.label "...אוסף חדש">
<!ENTITY zotero.toolbar.showCollectionLookup.label "[TODO:TRANSLATE] Filtrer the list of collections…">
<!ENTITY zotero.toolbar.markFeedRead.label "Mark Feed as Read">
<!ENTITY zotero.toolbar.newGroup "New Group...">
<!ENTITY zotero.toolbar.newSubcollection.label "New Subcollection...">

View File

@ -114,6 +114,7 @@
<!ENTITY zotero.toolbar.removeItem.label "Remove Item...">
<!ENTITY zotero.toolbar.newLibrary.label "New Library">
<!ENTITY zotero.toolbar.newCollection.label "New Collection...">
<!ENTITY zotero.toolbar.showCollectionLookup.label "[TODO:TRANSLATE] Filtrer the list of collections…">
<!ENTITY zotero.toolbar.markFeedRead.label "Mark Feed as Read">
<!ENTITY zotero.toolbar.newGroup "New Group...">
<!ENTITY zotero.toolbar.newSubcollection.label "New Subcollection...">

View File

@ -114,6 +114,7 @@
<!ENTITY zotero.toolbar.removeItem.label "Elem törlése...">
<!ENTITY zotero.toolbar.newLibrary.label "New Library">
<!ENTITY zotero.toolbar.newCollection.label "Új gyűjtemény...">
<!ENTITY zotero.toolbar.showCollectionLookup.label "[TODO:TRANSLATE] Filtrer the list of collections…">
<!ENTITY zotero.toolbar.markFeedRead.label "Mark Feed as Read">
<!ENTITY zotero.toolbar.newGroup "Új csoport...">
<!ENTITY zotero.toolbar.newSubcollection.label "Új algyűjtemény...">

View File

@ -114,6 +114,7 @@
<!ENTITY zotero.toolbar.removeItem.label "Buang Item...">
<!ENTITY zotero.toolbar.newLibrary.label "New Library">
<!ENTITY zotero.toolbar.newCollection.label "Koleksi Baru...">
<!ENTITY zotero.toolbar.showCollectionLookup.label "[TODO:TRANSLATE] Filtrer the list of collections…">
<!ENTITY zotero.toolbar.markFeedRead.label "Mark Feed as Read">
<!ENTITY zotero.toolbar.newGroup "Grup Baru...">
<!ENTITY zotero.toolbar.newSubcollection.label "Subkoleksi Baru...">

View File

@ -114,6 +114,7 @@
<!ENTITY zotero.toolbar.removeItem.label "Fjarlægja færslu…">
<!ENTITY zotero.toolbar.newLibrary.label "Nýtt færslusafn">
<!ENTITY zotero.toolbar.newCollection.label "Nýtt safn…">
<!ENTITY zotero.toolbar.showCollectionLookup.label "[TODO:TRANSLATE] Filtrer the list of collections…">
<!ENTITY zotero.toolbar.markFeedRead.label "Merkja streymi sem lesið">
<!ENTITY zotero.toolbar.newGroup "Nýr hópur…">
<!ENTITY zotero.toolbar.newSubcollection.label "Nýtt undirsafn…">

View File

@ -114,6 +114,7 @@
<!ENTITY zotero.toolbar.removeItem.label "Elimina elemento...">
<!ENTITY zotero.toolbar.newLibrary.label "Nuova Libreria">
<!ENTITY zotero.toolbar.newCollection.label "Nuova collezione...">
<!ENTITY zotero.toolbar.showCollectionLookup.label "[TODO:TRANSLATE] Filtrer the list of collections…">
<!ENTITY zotero.toolbar.markFeedRead.label "Segna come già letto">
<!ENTITY zotero.toolbar.newGroup "Nuovo Gruppo...">
<!ENTITY zotero.toolbar.newSubcollection.label "Nuova collezione secondaria...">

View File

@ -114,6 +114,7 @@
<!ENTITY zotero.toolbar.removeItem.label "アイテムを削除...">
<!ENTITY zotero.toolbar.newLibrary.label "新しいライブラリ">
<!ENTITY zotero.toolbar.newCollection.label "新規コレクション...">
<!ENTITY zotero.toolbar.showCollectionLookup.label "[TODO:TRANSLATE] Filtrer the list of collections…">
<!ENTITY zotero.toolbar.markFeedRead.label "フィードを既読にする">
<!ENTITY zotero.toolbar.newGroup "新規グループ...">
<!ENTITY zotero.toolbar.newSubcollection.label "新規サブコレクション...">

View File

@ -114,6 +114,7 @@
<!ENTITY zotero.toolbar.removeItem.label "លុបឯកសារ...">
<!ENTITY zotero.toolbar.newLibrary.label "New Library">
<!ENTITY zotero.toolbar.newCollection.label "បង្កើតកម្រងឯកសារថ្មី...">
<!ENTITY zotero.toolbar.showCollectionLookup.label "[TODO:TRANSLATE] Filtrer the list of collections…">
<!ENTITY zotero.toolbar.markFeedRead.label "Mark Feed as Read">
<!ENTITY zotero.toolbar.newGroup "ក្រុមថ្មី...">
<!ENTITY zotero.toolbar.newSubcollection.label "បង្កើតអនុកម្រងឯកសារថ្មី...">

View File

@ -114,6 +114,7 @@
<!ENTITY zotero.toolbar.removeItem.label "항목 삭제...">
<!ENTITY zotero.toolbar.newLibrary.label "새 라이브러리">
<!ENTITY zotero.toolbar.newCollection.label "새 컬렉션...">
<!ENTITY zotero.toolbar.showCollectionLookup.label "[TODO:TRANSLATE] Filtrer the list of collections…">
<!ENTITY zotero.toolbar.markFeedRead.label "피드를 읽은 것으로 표시">
<!ENTITY zotero.toolbar.newGroup "새 그룹...">
<!ENTITY zotero.toolbar.newSubcollection.label "새 하위 컬렉션...">

View File

@ -114,6 +114,7 @@
<!ENTITY zotero.toolbar.removeItem.label "Pašalinti įrašą...">
<!ENTITY zotero.toolbar.newLibrary.label "Nauja biblioteka">
<!ENTITY zotero.toolbar.newCollection.label "Naujas rinkinys...">
<!ENTITY zotero.toolbar.showCollectionLookup.label "[TODO:TRANSLATE] Filtrer the list of collections…">
<!ENTITY zotero.toolbar.markFeedRead.label "Žymėti naujienų kanalą skaitytu">
<!ENTITY zotero.toolbar.newGroup "Nauja grupė...">
<!ENTITY zotero.toolbar.newSubcollection.label "Naujas poaplankis...">

View File

@ -114,6 +114,7 @@
<!ENTITY zotero.toolbar.removeItem.label "Remove Item...">
<!ENTITY zotero.toolbar.newLibrary.label "New Library">
<!ENTITY zotero.toolbar.newCollection.label "New Collection...">
<!ENTITY zotero.toolbar.showCollectionLookup.label "[TODO:TRANSLATE] Filtrer the list of collections…">
<!ENTITY zotero.toolbar.markFeedRead.label "Mark Feed as Read">
<!ENTITY zotero.toolbar.newGroup "New Group...">
<!ENTITY zotero.toolbar.newSubcollection.label "New Subcollection...">

View File

@ -114,6 +114,7 @@
<!ENTITY zotero.toolbar.removeItem.label "Fjern element...">
<!ENTITY zotero.toolbar.newLibrary.label "New Library">
<!ENTITY zotero.toolbar.newCollection.label "Ny samling...">
<!ENTITY zotero.toolbar.showCollectionLookup.label "[TODO:TRANSLATE] Filtrer the list of collections…">
<!ENTITY zotero.toolbar.markFeedRead.label "Mark Feed as Read">
<!ENTITY zotero.toolbar.newGroup "New Group...">
<!ENTITY zotero.toolbar.newSubcollection.label "Ny undersamling...">

View File

@ -114,6 +114,7 @@
<!ENTITY zotero.toolbar.removeItem.label "Item verwijderen…">
<!ENTITY zotero.toolbar.newLibrary.label "Nieuwe bibliotheek">
<!ENTITY zotero.toolbar.newCollection.label "Nieuwe verzameling…">
<!ENTITY zotero.toolbar.showCollectionLookup.label "[TODO:TRANSLATE] Filtrer the list of collections…">
<!ENTITY zotero.toolbar.markFeedRead.label "Markeer feed als gelezen">
<!ENTITY zotero.toolbar.newGroup "Nieuwe groep…">
<!ENTITY zotero.toolbar.newSubcollection.label "Nieuwe deelverzameling…">

View File

@ -114,6 +114,7 @@
<!ENTITY zotero.toolbar.removeItem.label "Fjern element …">
<!ENTITY zotero.toolbar.newLibrary.label "Nytt bibliotek ">
<!ENTITY zotero.toolbar.newCollection.label "Ny samling …">
<!ENTITY zotero.toolbar.showCollectionLookup.label "[TODO:TRANSLATE] Filtrer the list of collections…">
<!ENTITY zotero.toolbar.markFeedRead.label "Mark Feed as Read">
<!ENTITY zotero.toolbar.newGroup "New Group …">
<!ENTITY zotero.toolbar.newSubcollection.label "Ny undersamling …">

View File

@ -114,6 +114,7 @@
<!ENTITY zotero.toolbar.removeItem.label "Usuń element...">
<!ENTITY zotero.toolbar.newLibrary.label "Nowa biblioteka">
<!ENTITY zotero.toolbar.newCollection.label "Nowa kolekcja...">
<!ENTITY zotero.toolbar.showCollectionLookup.label "[TODO:TRANSLATE] Filtrer the list of collections…">
<!ENTITY zotero.toolbar.markFeedRead.label "Oznacz kanał jako przeczytany">
<!ENTITY zotero.toolbar.newGroup "Nowa grupa...">
<!ENTITY zotero.toolbar.newSubcollection.label "Nowa subkolekcja...">

View File

@ -114,6 +114,7 @@
<!ENTITY zotero.toolbar.removeItem.label "Remover item...">
<!ENTITY zotero.toolbar.newLibrary.label "Nova biblioteca">
<!ENTITY zotero.toolbar.newCollection.label "Nova coleção...">
<!ENTITY zotero.toolbar.showCollectionLookup.label "[TODO:TRANSLATE] Filtrer the list of collections…">
<!ENTITY zotero.toolbar.markFeedRead.label "Marcar a fonte como lida">
<!ENTITY zotero.toolbar.newGroup "Novo grupo...">
<!ENTITY zotero.toolbar.newSubcollection.label "Nova subcoleção...">

View File

@ -114,6 +114,7 @@
<!ENTITY zotero.toolbar.removeItem.label "Remover Item...">
<!ENTITY zotero.toolbar.newLibrary.label "Nova Biblioteca">
<!ENTITY zotero.toolbar.newCollection.label "Nova Colecção...">
<!ENTITY zotero.toolbar.showCollectionLookup.label "[TODO:TRANSLATE] Filtrer the list of collections…">
<!ENTITY zotero.toolbar.markFeedRead.label "Marcar Feed como Lido">
<!ENTITY zotero.toolbar.newGroup "Novo Grupo...">
<!ENTITY zotero.toolbar.newSubcollection.label "Nova Subcolecção...">

View File

@ -114,6 +114,7 @@
<!ENTITY zotero.toolbar.removeItem.label "Șterge înregistrare...">
<!ENTITY zotero.toolbar.newLibrary.label "Bibliotecă nouă">
<!ENTITY zotero.toolbar.newCollection.label "Colecție nouă...">
<!ENTITY zotero.toolbar.showCollectionLookup.label "Filtrează lista de colecții...">
<!ENTITY zotero.toolbar.markFeedRead.label "Marchează fluxul ca citit">
<!ENTITY zotero.toolbar.newGroup "Grup nou...">
<!ENTITY zotero.toolbar.newSubcollection.label "Subcolecție nouă...">

View File

@ -114,6 +114,7 @@
<!ENTITY zotero.toolbar.removeItem.label "Удалить документ">
<!ENTITY zotero.toolbar.newLibrary.label "Новая библиотека">
<!ENTITY zotero.toolbar.newCollection.label "Новая подборка…">
<!ENTITY zotero.toolbar.showCollectionLookup.label "[TODO:TRANSLATE] Filtrer the list of collections…">
<!ENTITY zotero.toolbar.markFeedRead.label "Пометить все новости прочитанными">
<!ENTITY zotero.toolbar.newGroup "Новая группа…">
<!ENTITY zotero.toolbar.newSubcollection.label "Новая субподборка…">

View File

@ -114,6 +114,7 @@
<!ENTITY zotero.toolbar.removeItem.label "Odstrániť záznam...">
<!ENTITY zotero.toolbar.newLibrary.label "Nová knižnica">
<!ENTITY zotero.toolbar.newCollection.label "Nová kolekcia...">
<!ENTITY zotero.toolbar.showCollectionLookup.label "[TODO:TRANSLATE] Filtrer the list of collections…">
<!ENTITY zotero.toolbar.markFeedRead.label "Označiť RSS správy ako prečítané">
<!ENTITY zotero.toolbar.newGroup "Nová skupina...">
<!ENTITY zotero.toolbar.newSubcollection.label "Nová sub-kolekcia...">

View File

@ -114,6 +114,7 @@
<!ENTITY zotero.toolbar.removeItem.label "Odstrani vnos ...">
<!ENTITY zotero.toolbar.newLibrary.label "Nova knjižnica ">
<!ENTITY zotero.toolbar.newCollection.label "Nova zbirka ...">
<!ENTITY zotero.toolbar.showCollectionLookup.label "[TODO:TRANSLATE] Filtrer the list of collections…">
<!ENTITY zotero.toolbar.markFeedRead.label "Označi vir kot prebran">
<!ENTITY zotero.toolbar.newGroup "Nova skupina ...">
<!ENTITY zotero.toolbar.newSubcollection.label "Nova podzbirka ...">

View File

@ -114,6 +114,7 @@
<!ENTITY zotero.toolbar.removeItem.label "Уклони ставку…">
<!ENTITY zotero.toolbar.newLibrary.label "Нова библиотека">
<!ENTITY zotero.toolbar.newCollection.label "Нова збирка…">
<!ENTITY zotero.toolbar.showCollectionLookup.label "[TODO:TRANSLATE] Filtrer the list of collections…">
<!ENTITY zotero.toolbar.markFeedRead.label "Означи довод прочитаним…">
<!ENTITY zotero.toolbar.newGroup "Нова група…">
<!ENTITY zotero.toolbar.newSubcollection.label "Нова подзбирка…">

View File

@ -114,6 +114,7 @@
<!ENTITY zotero.toolbar.removeItem.label "Radera källa...">
<!ENTITY zotero.toolbar.newLibrary.label "Nytt bibliotek">
<!ENTITY zotero.toolbar.newCollection.label "Ny samling...">
<!ENTITY zotero.toolbar.showCollectionLookup.label "[TODO:TRANSLATE] Filtrer the list of collections…">
<!ENTITY zotero.toolbar.markFeedRead.label "Markera matning som läst">
<!ENTITY zotero.toolbar.newGroup "Ny grupp...">
<!ENTITY zotero.toolbar.newSubcollection.label "Ny undersamling...">

View File

@ -114,6 +114,7 @@
<!ENTITY zotero.toolbar.removeItem.label "ลบรายการ...">
<!ENTITY zotero.toolbar.newLibrary.label "New Library">
<!ENTITY zotero.toolbar.newCollection.label "คอลเล็กชั่นใหม่...">
<!ENTITY zotero.toolbar.showCollectionLookup.label "[TODO:TRANSLATE] Filtrer the list of collections…">
<!ENTITY zotero.toolbar.markFeedRead.label "Mark Feed as Read">
<!ENTITY zotero.toolbar.newGroup "กลุ่มใหม่...">
<!ENTITY zotero.toolbar.newSubcollection.label "คอลเล็กชั่นย่อยใหม่...">

View File

@ -114,6 +114,7 @@
<!ENTITY zotero.toolbar.removeItem.label "Eseri Kaldır...">
<!ENTITY zotero.toolbar.newLibrary.label "Yeni Kitaplık">
<!ENTITY zotero.toolbar.newCollection.label "Yeni Derme...">
<!ENTITY zotero.toolbar.showCollectionLookup.label "[TODO:TRANSLATE] Filtrer the list of collections…">
<!ENTITY zotero.toolbar.markFeedRead.label "Beslemeyi Okunmuş İşaretle">
<!ENTITY zotero.toolbar.newGroup "Yeni Grup...">
<!ENTITY zotero.toolbar.newSubcollection.label "Yeni Alt Derme...">

View File

@ -114,6 +114,7 @@
<!ENTITY zotero.toolbar.removeItem.label "Видалити документ...">
<!ENTITY zotero.toolbar.newLibrary.label "Нова бібліотека">
<!ENTITY zotero.toolbar.newCollection.label "Нова колекція...">
<!ENTITY zotero.toolbar.showCollectionLookup.label "[TODO:TRANSLATE] Filtrer the list of collections…">
<!ENTITY zotero.toolbar.markFeedRead.label "Позначити стрічку як прочитану">
<!ENTITY zotero.toolbar.newGroup "Нова група...">
<!ENTITY zotero.toolbar.newSubcollection.label "Нова підколекція...">

View File

@ -114,6 +114,7 @@
<!ENTITY zotero.toolbar.removeItem.label "Xóa mục...">
<!ENTITY zotero.toolbar.newLibrary.label "Thư viện mới">
<!ENTITY zotero.toolbar.newCollection.label "Bộ sưu tập mới...">
<!ENTITY zotero.toolbar.showCollectionLookup.label "[TODO:TRANSLATE] Filtrer the list of collections…">
<!ENTITY zotero.toolbar.markFeedRead.label "Đánh dấu là đã đọc">
<!ENTITY zotero.toolbar.newGroup "Nhóm mới...">
<!ENTITY zotero.toolbar.newSubcollection.label "Bô sưu tập con mới...">

View File

@ -114,6 +114,7 @@
<!ENTITY zotero.toolbar.removeItem.label "移除条目...">
<!ENTITY zotero.toolbar.newLibrary.label "新建文献库">
<!ENTITY zotero.toolbar.newCollection.label "新建分类…">
<!ENTITY zotero.toolbar.showCollectionLookup.label "[TODO:TRANSLATE] Filtrer the list of collections…">
<!ENTITY zotero.toolbar.markFeedRead.label "标记订阅为已读">
<!ENTITY zotero.toolbar.newGroup "新建群组...">
<!ENTITY zotero.toolbar.newSubcollection.label "新建子分类…">

View File

@ -114,6 +114,7 @@
<!ENTITY zotero.toolbar.removeItem.label "移除項目…">
<!ENTITY zotero.toolbar.newLibrary.label "新的文獻庫">
<!ENTITY zotero.toolbar.newCollection.label "新增文獻庫">
<!ENTITY zotero.toolbar.showCollectionLookup.label "[TODO:TRANSLATE] Filtrer the list of collections…">
<!ENTITY zotero.toolbar.markFeedRead.label "標示 Feed 為已讀">
<!ENTITY zotero.toolbar.newGroup "新增群組…">
<!ENTITY zotero.toolbar.newSubcollection.label "新增子文獻庫…">

View File

@ -375,6 +375,11 @@
list-style-image: url('chrome://zotero/skin/library_add.png');
}
#zotero-tb-show-collection-lookup
{
list-style-image: url('chrome://zotero/skin/toolbar-advanced-search.png');
}
#zotero-collections-tree, #zotero-items-tree, #zotero-item-pane > groupbox
{

1696
package-lock.json generated

File diff suppressed because it is too large Load Diff