mirror of
https://github.com/koreader/koreader.git
synced 2025-08-10 00:52:38 +00:00
[fix] Highlight moving button text shouldn't be translated (#4597)
This commit is contained in:
@@ -340,7 +340,7 @@ function ReaderHighlight:onShowHighlightDialog(page, index)
|
||||
if not self.ui.document.info.has_pages then
|
||||
table.insert(buttons, {
|
||||
{
|
||||
text = _("◁⇱"),
|
||||
text = "◁⇱",
|
||||
callback = function()
|
||||
self:updateHighlight(page, index, 0, -1, false)
|
||||
end,
|
||||
@@ -350,7 +350,7 @@ function ReaderHighlight:onShowHighlightDialog(page, index)
|
||||
end
|
||||
},
|
||||
{
|
||||
text = _("⇱▷"),
|
||||
text = "⇱▷",
|
||||
callback = function()
|
||||
self:updateHighlight(page, index, 0, 1, false)
|
||||
end,
|
||||
@@ -360,7 +360,7 @@ function ReaderHighlight:onShowHighlightDialog(page, index)
|
||||
end
|
||||
},
|
||||
{
|
||||
text = _("◁⇲"),
|
||||
text = "◁⇲",
|
||||
callback = function()
|
||||
self:updateHighlight(page, index, 1, -1, false)
|
||||
end,
|
||||
@@ -369,7 +369,7 @@ function ReaderHighlight:onShowHighlightDialog(page, index)
|
||||
end
|
||||
},
|
||||
{
|
||||
text = _("⇲▷"),
|
||||
text = "⇲▷",
|
||||
callback = function()
|
||||
self:updateHighlight(page, index, 1, 1, false)
|
||||
end,
|
||||
|
||||
Reference in New Issue
Block a user