diff --git a/frontend/apps/reader/modules/readerhighlight.lua b/frontend/apps/reader/modules/readerhighlight.lua index 60c70c2c7..aa234968c 100644 --- a/frontend/apps/reader/modules/readerhighlight.lua +++ b/frontend/apps/reader/modules/readerhighlight.lua @@ -618,7 +618,7 @@ function ReaderHighlight:onTapSelectModeIcon() if not self.select_mode then return end UIManager:show(ConfirmBox:new{ text = _("You are currently in SELECT mode.\nTo finish highlighting, long press where the highlight should end and press the HIGHLIGHT button.\nYou can also exit select mode by tapping on the start of the highlight."), - icon = "format-quote-close", + icon = "texture-box", ok_text = _("Exit select mode"), cancel_text = _("Close"), ok_callback = function() diff --git a/frontend/apps/reader/readerui.lua b/frontend/apps/reader/readerui.lua index 952ac4cab..fa98db798 100644 --- a/frontend/apps/reader/readerui.lua +++ b/frontend/apps/reader/readerui.lua @@ -756,9 +756,9 @@ function ReaderUI:notifyCloseDocument() self:closeDocument() else UIManager:show(ConfirmBox:new{ - text = _("Do you want to save this document?"), - ok_text = _("Save"), - cancel_text = _("Don't save"), + text = _("Write highlights into this PDF??"), + ok_text = _("Write"), + dismissable = false, ok_callback = function() self:closeDocument() end,