Minor language fixes

Unsubscribe from was suggested by Allan Nordhøy (kingu) on Transifex.
pull/2450/head
Frans de Jonge 8 years ago committed by Qingping Hou
parent ae9261b685
commit 4f64ac4b69

@ -111,7 +111,7 @@ function CloudStorage:openCloudServer(url)
return true return true
elseif not tbl then elseif not tbl then
UIManager:show(InfoMessage:new{ UIManager:show(InfoMessage:new{
text = _("Cannot fetch list folder!\nCheck configuration or network connection."), text = _("Cannot fetch list of folder contents\nPlease check your configuration or network connection."),
timeout = 3, timeout = 3,
}) })
table.remove(self.paths) table.remove(self.paths)
@ -150,7 +150,7 @@ function CloudStorage:downloadFile(item)
local path = download_dir .. '/' .. item.text local path = download_dir .. '/' .. item.text
if lfs.attributes(path) then if lfs.attributes(path) then
UIManager:show(ConfirmBox:new{ UIManager:show(ConfirmBox:new{
text = _("File exist! Would you like to override it?"), text = _("File already exists. Would you like to overwrite it?"),
ok_callback = function() ok_callback = function()
self:cloudFile(item, path) self:cloudFile(item, path)
end end

@ -49,7 +49,7 @@ function ZSync:addToMainMenu(tab_item_table)
text_func = function() text_func = function()
return not self.filemq_client return not self.filemq_client
and _("Subscribe to book share") and _("Subscribe to book share")
or _("Stop book share subscription") or _("Unsubscribe from book share")
end, end,
enabled_func = function() enabled_func = function()
return self.filemq_server == nil return self.filemq_server == nil

Loading…
Cancel
Save