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

This commit is contained in:
Frans de Jonge
2023-05-07 18:36:28 +02:00
committed by GitHub
parent 3da24046c0
commit 46f0bba74b

View File

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