mirror of
git://github.com/kovidgoyal/calibre.git
synced 2025-12-21 19:16:07 +01:00
String changes
This commit is contained in:
parent
e307caafe8
commit
09aae8b299
1 changed files with 3 additions and 3 deletions
|
|
@ -79,21 +79,21 @@ def spinner(name, text, **kwargs):
|
|||
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,
|
||||
|
|
|
|||
Loading…
Reference in a new issue