Stop using the "calibre catalog" wording (#5813)

It's extremely confusing, as it has nothing to do with calibre catalogs,
which are actual things the user can generate manually.

What it's using instead is actually a metadata cache in a flatfile db
that's always present, as long as "Send To Device" was used to upload
the content to the device.
reviewable/pr5816/r1
NiLuJe 4 years ago committed by GitHub
parent 44c69dadb6
commit 3c2353e439
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -477,7 +477,7 @@ function FileManagerMenu:setUpdateItemTable()
-- search tab
self.menu_items.find_book_in_calibre_catalog = {
text = _("Find a book in calibre catalog"),
text = _("Find a book via calibre metadata"),
callback = function()
Search:getCalibre()
Search:ShowSearch()

@ -190,7 +190,7 @@ function Search:ShowSearch()
end,
},
{
-- @translators Search for books in calibre catalog.
-- @translators Search for books in calibre Library, via on-device metadata (as setup by Calibre's 'Send To Device').
text = _("Find books"),
enabled = true,
callback = function()

@ -37,7 +37,7 @@ local CatalogCache = Cache:new{
local OPDSBrowser = Menu:extend{
opds_servers = {},
calibre_name = _("Local calibre catalog"),
calibre_name = _("Local calibre library"),
catalog_type = "application/atom%+xml",
search_type = "application/opensearchdescription%+xml",

Loading…
Cancel
Save