ReaderLink: fix capitalization typo in "Go Forward" (#10399)

reviewable/pr10418/r1
Frans de Jonge 1 year ago committed by GitHub
parent 3da24046c0
commit 46f0bba74b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -308,12 +308,12 @@ function ReaderLink:addToMainMenu(menu_items)
end,
}
menu_items.go_to_next_location = {
text = _("Go Forward to next location"),
text = _("Go forward to next location"),
enabled_func = function() return self.forward_location_stack and #self.forward_location_stack > 0 end,
callback = function() self:onGoForwardLink() end,
hold_callback = function(touchmenu_instance)
UIManager:show(ConfirmBox:new{
text = _("Clear Forward location history?"),
text = _("Clear forward location history?"),
ok_text = _("Clear"),
ok_callback = function()
self:onClearForwardLocationStack()

Loading…
Cancel
Save