diff --git a/frontend/ui/widget/dictquicklookup.lua b/frontend/ui/widget/dictquicklookup.lua index d184ea4ed..db3f9eba9 100644 --- a/frontend/ui/widget/dictquicklookup.lua +++ b/frontend/ui/widget/dictquicklookup.lua @@ -126,14 +126,14 @@ function DictQuickLookup:update() buttons = { { { - text = _("<<"), + text = "<<", enabled = self:isPrevDictAvaiable(), callback = function() self:changeToPrevDict() end, }, { - text = _(">>"), + text = ">>", enabled = self:isNextDictAvaiable(), callback = function() self:changeToNextDict() diff --git a/plugins/evernote.koplugin/main.lua b/plugins/evernote.koplugin/main.lua index 69a8aa6ba..30fa5d5fa 100644 --- a/plugins/evernote.koplugin/main.lua +++ b/plugins/evernote.koplugin/main.lua @@ -40,17 +40,17 @@ end function EvernoteExporter:addToMainMenu(tab_item_table) table.insert(tab_item_table.plugins, { - text = _("Evernote"), + text = "Evernote", sub_item_table = { { text_func = function() local domain = nil if self.evernote_domain == "sandbox" then - domain = _("Sandbox") + domain = "Sandbox" elseif self.evernote_domain == "yinxiang" then - domain = _("Yinxiang") + domain = "Yinxiang" else - domain = _("Evernote") + domain = "Evernote" end return self.evernote_token and (_("Logout") .. " " .. domain) or _("Login") diff --git a/plugins/zsync.koplugin/main.lua b/plugins/zsync.koplugin/main.lua index a31985e85..63c42e735 100644 --- a/plugins/zsync.koplugin/main.lua +++ b/plugins/zsync.koplugin/main.lua @@ -39,7 +39,7 @@ end function ZSync:addToMainMenu(tab_item_table) table.insert(tab_item_table.plugins, { - text = _("ZSync"), + text = "ZSync", sub_item_table = { { text_func = function()