mirror of
https://github.com/koreader/koreader.git
synced 2025-12-13 20:36:53 +01:00
(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:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user