From e5029b54c11cba13b0cb9a2d95f7aa70bb34ef89 Mon Sep 17 00:00:00 2001 From: Frans de Jonge Date: Wed, 12 Nov 2014 13:10:48 +0100 Subject: [PATCH] Capitalization: change a few mentions of calibre to lowercase The author likes it that way. See http://calibre-ebook.com/about --- frontend/ui/widget/opdsbrowser.lua | 2 +- plugins/calibrecompanion.koplugin/main.lua | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/frontend/ui/widget/opdsbrowser.lua b/frontend/ui/widget/opdsbrowser.lua index 277af2258..f22ccaa2a 100644 --- a/frontend/ui/widget/opdsbrowser.lua +++ b/frontend/ui/widget/opdsbrowser.lua @@ -35,7 +35,7 @@ local CatalogCache = Cache:new{ local OPDSBrowser = Menu:extend{ opds_servers = {}, - calibre_name = _("Local Calibre catalog"), + calibre_name = _("Local calibre catalog"), catalog_type = "application/atom%+xml", search_type = "application/opensearchdescription%+xml", diff --git a/plugins/calibrecompanion.koplugin/main.lua b/plugins/calibrecompanion.koplugin/main.lua index 1778d4ee0..7c643fd61 100644 --- a/plugins/calibrecompanion.koplugin/main.lua +++ b/plugins/calibrecompanion.koplugin/main.lua @@ -114,9 +114,9 @@ function CalibreCompanion:initCalibreMQ(host, port) self.calibre_socket:start() self.calibre_messagequeue = UIManager:insertZMQ(self.calibre_socket) end - DEBUG("connected to Calibre", host, port) + DEBUG("connected to calibre", host, port) UIManager:show(InfoMessage:new{ - text = _("Connected to Calibre server at ") .. host .. ":" .. port, + text = _("Connected to calibre server at ") .. host .. ":" .. port, timeout = 1, }) end @@ -147,14 +147,14 @@ function CalibreCompanion:connect() else DEBUG("cannot connect to calibre") UIManager:show(InfoMessage:new{ - text = _("Cannot connect to Calibre."), + text = _("Cannot connect to calibre."), }) return end end function CalibreCompanion:disconnect() - DEBUG("disconnect from Calibre") + DEBUG("disconnect from calibre") self.calibre_socket:stop() UIManager:removeZMQ(self.calibre_messagequeue) self.calibre_socket = nil