mirror of
https://github.com/koreader/koreader.git
synced 2025-08-10 00:52:38 +00:00
Minor language fixes
Unsubscribe from was suggested by Allan Nordhøy (kingu) on Transifex.
This commit is contained in:
committed by
Qingping Hou
parent
ae9261b685
commit
4f64ac4b69
@@ -111,7 +111,7 @@ function CloudStorage:openCloudServer(url)
|
||||
return true
|
||||
elseif not tbl then
|
||||
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,
|
||||
})
|
||||
table.remove(self.paths)
|
||||
@@ -150,7 +150,7 @@ function CloudStorage:downloadFile(item)
|
||||
local path = download_dir .. '/' .. item.text
|
||||
if lfs.attributes(path) then
|
||||
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()
|
||||
self:cloudFile(item, path)
|
||||
end
|
||||
|
||||
@@ -49,7 +49,7 @@ function ZSync:addToMainMenu(tab_item_table)
|
||||
text_func = function()
|
||||
return not self.filemq_client
|
||||
and _("Subscribe to book share")
|
||||
or _("Stop book share subscription")
|
||||
or _("Unsubscribe from book share")
|
||||
end,
|
||||
enabled_func = function()
|
||||
return self.filemq_server == nil
|
||||
|
||||
Reference in New Issue
Block a user