(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
This commit is contained in:
Frans de Jonge
2017-05-16 06:48:18 +02:00
committed by Hzj_jie
parent 474c011f21
commit 3492b8b117
4 changed files with 4 additions and 4 deletions

View File

@@ -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"),

View File

@@ -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"),

View File

@@ -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)

View File

@@ -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)