[i18n] ReaderSearch: add translation context to "All" button (#11352)

Cf. https://github.com/koreader/koreader/pull/11313/files#r1439406753
reviewable/pr11456/r1
Frans de Jonge 3 months ago committed by GitHub
parent 50fcc04725
commit bdd475f55f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -13,6 +13,7 @@ local Utf8Proc = require("ffi/utf8proc")
local WidgetContainer = require("ui/widget/container/widgetcontainer")
local logger = require("logger")
local _ = require("gettext")
local C_ = _.pgettext
local Screen = Device.screen
local T = require("ffi/util").template
@ -196,8 +197,8 @@ function ReaderSearch:onShowFulltextSearchInput()
end,
},
{
-- @translators Search all entries in entire document
text = _("All"),
-- @translators Find all results in entire document, button displayed on the search bar, should be short.
text = C_("Search text", "All"),
callback = function()
self:searchCallback()
end,

Loading…
Cancel
Save