From a158386e5681641d8624acf74eed957416c84730 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 27 Dec 2019 14:07:54 +0530 Subject: [PATCH] String changes --- src/pyj/read_book/overlay.pyj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pyj/read_book/overlay.pyj b/src/pyj/read_book/overlay.pyj index 54e27ace36..5957255f3f 100644 --- a/src/pyj/read_book/overlay.pyj +++ b/src/pyj/read_book/overlay.pyj @@ -291,7 +291,7 @@ class MainOverlay: # {{{ if not full_screen_element() and not is_ios: # No fullscreen on iOS, see http://caniuse.com/#search=fullscreen full_screen_actions.push( - ac(_('Full screen'), _('Enter full screen mode'), def(): self.overlay.hide(), ui_operations.toggle_full_screen();, 'full-screen') + ac(_('Toggle full screen'), _('Toggle full screen mode'), def(): self.overlay.hide(), ui_operations.toggle_full_screen();, 'full-screen') ) if full_screen_actions.length: actions_div.appendChild(E.ul(*full_screen_actions))