From 09aae8b2994e328a94c80fd10c9c9e25707cee63 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 8 Jan 2020 08:01:33 +0530 Subject: [PATCH] String changes --- src/pyj/read_book/prefs/scrolling.pyj | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/pyj/read_book/prefs/scrolling.pyj b/src/pyj/read_book/prefs/scrolling.pyj index 9165e6084b..d7ffc3a137 100644 --- a/src/pyj/read_book/prefs/scrolling.pyj +++ b/src/pyj/read_book/prefs/scrolling.pyj @@ -79,21 +79,21 @@ def create_scrolling_panel(container, apply_func, cancel_func): E.div(style='display:grid;margin-top:1ex;align-items:center;grid-template-columns:auto min-content;grid-gap:1ex; max-width: 30em', *spinner( 'lines_per_sec_smooth', - _('Smooth scrolling speed in lines/sec'), + _('Smooth scrolling speed in lines/sec:'), step=5, min=MIN_SCROLL_SPEED_SMOOTH, max=MAX_SCROLL_SPEED_SMOOTH ), *spinner( 'lines_per_sec_auto', - _('Auto scrolling speed in lines/sec'), + _('Auto scrolling speed in lines/sec:'), step=MIN_SCROLL_SPEED_AUTO, min=MIN_SCROLL_SPEED_AUTO, max=MAX_SCROLL_SPEED_AUTO ), *spinner( 'scroll_auto_boundary_delay', - _('Seconds to pause before auto-scrolling past internal file boundaries'), + _('Seconds to pause before auto-scrolling past internal file boundaries:'), title=_('Use negative values to not auto-scroll past internal file boundaries'), step=0.25, min=MIN_SCROLL_AUTO_DELAY,