ReaderTypeset: Minor reword after #7759

c.f., https://github.com/koreader/koreader/pull/7759#discussion_r638929468
This commit is contained in:
NiLuJe
2021-05-26 18:54:53 +02:00
committed by Frans de Jonge
parent 1ded7c3907
commit d2ad6a83e1

View File

@@ -139,9 +139,9 @@ end
function ReaderTypeset:onToggleEmbeddedStyleSheet(toggle)
self:toggleEmbeddedStyleSheet(toggle)
if toggle then
Notification:notify(_("Embedded styles are on."))
Notification:notify(_("Enabled embedded styles."))
else
Notification:notify(_("Embedded styles are off."))
Notification:notify(_("Disabled embedded styles."))
end
return true
end
@@ -149,9 +149,9 @@ end
function ReaderTypeset:onToggleEmbeddedFonts(toggle)
self:toggleEmbeddedFonts(toggle)
if toggle then
Notification:notify(_("Embedded fonts are on."))
Notification:notify(_("Enabled embedded fonts."))
else
Notification:notify(_("Embedded fonts are off."))
Notification:notify(_("Disabled embedded fonts."))
end
return true
end