From e51b71f463a36c9188f0cb340e73bf8110e4a5fe Mon Sep 17 00:00:00 2001 From: SomeGuy <97603719+Commodore64user@users.noreply.github.com> Date: Mon, 6 May 2024 16:59:00 +0100 Subject: [PATCH] [Gestures.plugin] Clarify some rotation gesture strings (#11753) --- plugins/gestures.koplugin/main.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/gestures.koplugin/main.lua b/plugins/gestures.koplugin/main.lua index c95274257..2cf047b42 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 = _("Rotate clockwise ⤸ 90°"), + rotate_ccw = _("Rotate counterclockwise ⤹ 90°"), multiswipe = "", -- otherwise registerGesture() won't pick up on multiswipes multiswipe_west_east = "⬅ ➡", multiswipe_east_west = "➡ ⬅", @@ -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 rotation"), sub_item_table = self:genSubItemTable({"rotate_cw", "rotate_ccw"}), }) end