Merge pull request #778 from pazos/master

clean the pot file
pull/783/head
Huang Xin 10 years ago
commit 81f2d4b668

@ -126,14 +126,14 @@ function DictQuickLookup:update()
buttons = { buttons = {
{ {
{ {
text = _("<<"), text = "<<",
enabled = self:isPrevDictAvaiable(), enabled = self:isPrevDictAvaiable(),
callback = function() callback = function()
self:changeToPrevDict() self:changeToPrevDict()
end, end,
}, },
{ {
text = _(">>"), text = ">>",
enabled = self:isNextDictAvaiable(), enabled = self:isNextDictAvaiable(),
callback = function() callback = function()
self:changeToNextDict() self:changeToNextDict()

@ -44,16 +44,6 @@ msgid ""
"5 deg" "5 deg"
msgstr "" msgstr ""
#: frontend/ui/widget/dictquicklookup.lua:129
msgid ""
"<<"
msgstr ""
#: frontend/ui/widget/dictquicklookup.lua:136
msgid ""
">>"
msgstr ""
#: frontend/apps/reader/modules/readerhighlight.lua:302 #: frontend/apps/reader/modules/readerhighlight.lua:302
#: frontend/ui/widget/dictquicklookup.lua:152 #: frontend/ui/widget/dictquicklookup.lua:152
msgid "" msgid ""
@ -237,7 +227,6 @@ msgid ""
msgstr "" msgstr ""
#: plugins/evernote.koplugin/main.lua:43 #: plugins/evernote.koplugin/main.lua:43
#: plugins/evernote.koplugin/main.lua:53
msgid "" msgid ""
"Evernote" "Evernote"
msgstr "" msgstr ""
@ -808,21 +797,11 @@ msgid ""
"Writing screen to " "Writing screen to "
msgstr "" msgstr ""
#: plugins/evernote.koplugin/main.lua:51
msgid ""
"Yinxiang"
msgstr ""
#: frontend/ui/otamanager.lua:143 #: frontend/ui/otamanager.lua:143
msgid "" msgid ""
"Your koreader is updated." "Your koreader is updated."
msgstr "" msgstr ""
#: plugins/zsync.koplugin/main.lua:42
msgid ""
"ZSync"
msgstr ""
#: frontend/apps/reader/modules/readerzooming.lua:320 #: frontend/apps/reader/modules/readerzooming.lua:320
msgid "" msgid ""
"Zoom to fit content" "Zoom to fit content"

@ -46,11 +46,11 @@ function EvernoteExporter:addToMainMenu(tab_item_table)
text_func = function() text_func = function()
local domain = nil local domain = nil
if self.evernote_domain == "sandbox" then if self.evernote_domain == "sandbox" then
domain = _("Sandbox") domain = "Sandbox"
elseif self.evernote_domain == "yinxiang" then elseif self.evernote_domain == "yinxiang" then
domain = _("Yinxiang") domain = "Yinxiang"
else else
domain = _("Evernote") domain = "Evernote"
end end
return self.evernote_token and (_("Logout") .. " " .. domain) return self.evernote_token and (_("Logout") .. " " .. domain)
or _("Login") or _("Login")

Loading…
Cancel
Save