[fix] Typo miliseconds → milliseconds (#5145)

Follow-up to https://github.com/koreader/koreader/pull/5138
pull/5146/head
Frans de Jonge 5 years ago committed by GitHub
parent 1f6af80817
commit f763839577
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -369,7 +369,7 @@ function ReaderGesture:addToMainMenu(menu_items)
local GestureDetector = require("device/gesturedetector")
local items = SpinWidget:new{
text = T(_([[
Set double tap interval in miliseconds.
Set double tap interval in milliseconds.
The interval value can range from 100 (0.1 seconds) to 2000 (2 seconds).
Default value: %1]]), GestureDetector.DOUBLE_TAP_INTERVAL/1000),
width = Screen:getWidth() * 0.6,
@ -396,7 +396,7 @@ Default value: %1]]), GestureDetector.DOUBLE_TAP_INTERVAL/1000),
local GestureDetector = require("device/gesturedetector")
local items = SpinWidget:new{
text = T(_([[
Set two finger tap duration in miliseconds.
Set two finger tap duration in milliseconds.
The duration value can range from 100 (0.1 seconds) to 2000 (2 seconds).
Default value: %1]]), GestureDetector.TWO_FINGER_TAP_DURATION/1000),
width = Screen:getWidth() * 0.6,
@ -423,7 +423,7 @@ Default value: %1]]), GestureDetector.TWO_FINGER_TAP_DURATION/1000),
local GestureDetector = require("device/gesturedetector")
local items = SpinWidget:new{
text = T(_([[
Set hold interval in miliseconds.
Set hold interval in milliseconds.
The interval value can range from 100 (0.1 seconds) to 2000 (2 seconds).
Default value: %1]]), GestureDetector.HOLD_INTERVAL/1000),
width = Screen:getWidth() * 0.6,
@ -450,7 +450,7 @@ Default value: %1]]), GestureDetector.HOLD_INTERVAL/1000),
local GestureDetector = require("device/gesturedetector")
local items = SpinWidget:new{
text = T(_([[
Set pan delay interval in miliseconds.
Set pan delay interval in milliseconds.
The interval value can range from 100 (0.1 seconds) to 2000 (2 seconds).
Default value: %1]]), GestureDetector.PAN_DELAYED_INTERVAL/1000),
width = Screen:getWidth() * 0.6,
@ -477,7 +477,7 @@ Default value: %1]]), GestureDetector.PAN_DELAYED_INTERVAL/1000),
local GestureDetector = require("device/gesturedetector")
local items = SpinWidget:new{
text = T(_([[
Set swipe interval in miliseconds.
Set swipe interval in milliseconds.
The interval value can range from 100 (0.1 seconds) to 2000 (2 seconds).
Default value: %1]]), GestureDetector.SWIPE_INTERVAL/1000),
width = Screen:getWidth() * 0.6,

Loading…
Cancel
Save