From e927fddac4a432c8fbc52aa97d52e4562f44fc90 Mon Sep 17 00:00:00 2001 From: hius07 <62179190+hius07@users.noreply.github.com> Date: Tue, 23 Apr 2024 18:11:09 +0300 Subject: [PATCH] dispatcher: "Sort" -> "Arrange actions" --- frontend/dispatcher.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/dispatcher.lua b/frontend/dispatcher.lua index 134b72354..df476959c 100644 --- a/frontend/dispatcher.lua +++ b/frontend/dispatcher.lua @@ -714,7 +714,7 @@ function Dispatcher:_sortActions(caller, location, settings, touchmenu_instance) local SortWidget = require("ui/widget/sortwidget") local sort_widget sort_widget = SortWidget:new{ - title = _("Sort"), + title = _("Arrange actions"), item_table = display_list, callback = function() if location[settings] and next(location[settings]) ~= nil then @@ -983,7 +983,7 @@ function Dispatcher:addSubMenu(caller, menu, location, settings) end menu[#menu].separator = true table.insert(menu, { - text = _("Sort"), + text = _("Arrange actions"), checked_func = function() return location[settings] ~= nil and location[settings].settings ~= nil