From 22e4340a6304b12555a76b7c3301d30083e45da0 Mon Sep 17 00:00:00 2001 From: SomeGuy <97603719+Commodore64user@users.noreply.github.com> Date: Sun, 5 May 2024 13:34:17 +0100 Subject: [PATCH 1/3] rotation gesture renamed --- plugins/gestures.koplugin/main.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/gestures.koplugin/main.lua b/plugins/gestures.koplugin/main.lua index c95274257..4d0785e25 100644 --- a/plugins/gestures.koplugin/main.lua +++ b/plugins/gestures.koplugin/main.lua @@ -760,7 +760,7 @@ function Gestures:addToMainMenu(menu_items) sub_item_table = self:genSubItemTable({"spread_gesture", "pinch_gesture"}), }) table.insert(menu_items.gesture_manager.sub_item_table, { - text = _("Rotation"), + text = _("Two-finger half-moon swipe"), sub_item_table = self:genSubItemTable({"rotate_cw", "rotate_ccw"}), }) end From 6fa95539454b881a924ed1bfc5d81c9ebd39d22a Mon Sep 17 00:00:00 2001 From: SomeGuy <97603719+Commodore64user@users.noreply.github.com> Date: Sun, 5 May 2024 13:39:08 +0100 Subject: [PATCH 2/3] clockwise --- plugins/gestures.koplugin/main.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/gestures.koplugin/main.lua b/plugins/gestures.koplugin/main.lua index 4d0785e25..99663a908 100644 --- a/plugins/gestures.koplugin/main.lua +++ b/plugins/gestures.koplugin/main.lua @@ -76,8 +76,8 @@ local gestures_list = { two_finger_swipe_southwest = "⇙", spread_gesture = _("Spread"), pinch_gesture = _("Pinch"), - rotate_cw = _("Rotate ⤸ 90°"), - rotate_ccw = _("Rotate ⤹ 90°"), + rotate_cw = _("Clockwise ⤸ 90°"), + rotate_ccw = _("Anti-clockwise ⤹ 90°"), multiswipe = "", -- otherwise registerGesture() won't pick up on multiswipes multiswipe_west_east = "⬅ ➡", multiswipe_east_west = "➡ ⬅", From c49fd6b950784f90d819063a5ac1f54cb0b8ac44 Mon Sep 17 00:00:00 2001 From: SomeGuy <97603719+Commodore64user@users.noreply.github.com> Date: Sun, 5 May 2024 21:34:26 +0100 Subject: [PATCH 3/3] Update main.lua Co-authored-by: Frans de Jonge --- plugins/gestures.koplugin/main.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/gestures.koplugin/main.lua b/plugins/gestures.koplugin/main.lua index 99663a908..142c5b5b4 100644 --- a/plugins/gestures.koplugin/main.lua +++ b/plugins/gestures.koplugin/main.lua @@ -76,8 +76,8 @@ local gestures_list = { two_finger_swipe_southwest = "⇙", spread_gesture = _("Spread"), pinch_gesture = _("Pinch"), - rotate_cw = _("Clockwise ⤸ 90°"), - rotate_ccw = _("Anti-clockwise ⤹ 90°"), + rotate_cw = _("Rotate clockwise ⤸ 90°"), + rotate_ccw = _("Rotate counterclockwise ⤹ 90°"), multiswipe = "", -- otherwise registerGesture() won't pick up on multiswipes multiswipe_west_east = "⬅ ➡", multiswipe_east_west = "➡ ⬅",