(minor, lang) improve text clarity for downloadmgr dialogs (#2897)

It's not necessarily clear that you need to long-press, see https://www.mobileread.com/forums/showpost.php?p=3520376&postcount=7
pull/2901/head
Frans de Jonge 7 years ago committed by Hzj_jie
parent 474c011f21
commit 3492b8b117

@ -202,7 +202,7 @@ function CloudStorage:cloudFile(item, path)
},
{
{
text = _("Set download directory"),
text = _("Choose download directory by long-pressing"),
callback = function()
require("ui/downloadmgr"):new{
title = _("Choose download directory"),

@ -571,7 +571,7 @@ function OPDSBrowser:showDownloads(item)
-- set download directory button
table.insert(buttons, {
{
text = gettext("Set download directory"),
text = gettext("Choose download directory by long-pressing"),
callback = function()
require("ui/downloadmgr"):new{
title = gettext("Choose download directory"),

@ -125,7 +125,7 @@ end
function CalibreCompanion:setInboxDir(host, port)
local calibre_device = self
require("ui/downloadmgr"):new{
title = _("Choose inbox"),
title = _("Choose inbox by long-pressing"),
onConfirm = function(inbox)
DEBUG("set inbox directory", inbox)
G_reader_settings:saveSetting("inbox_dir", inbox)

@ -223,7 +223,7 @@ function ZSync:subscribe()
self.received = {}
local zsync = self
require("ui/downloadmgr"):new{
title = _("Choose inbox"),
title = _("Choose inbox by long-pressing"),
onConfirm = function(inbox)
G_reader_settings:saveSetting("inbox_dir", inbox)
zsync:onChooseInbox(inbox)

Loading…
Cancel
Save