summaryrefslogtreecommitdiff
path: root/xmake/core/base/option.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2020-02-27 22:48:24 +0800
committerruki <[email protected]>2020-02-27 10:50:25 +0800
commit8516f21d34672ef38f30890c1da41846a7f3a4e8 (patch)
tree746ec3c526af85dbd97d0951e43604d766380002 /xmake/core/base/option.lua
parentf26c0edb8b74cd48a27d833bc75a0cd0ecf6a0a1 (diff)
add xmake service plugin
Diffstat (limited to 'xmake/core/base/option.lua')
-rw-r--r--xmake/core/base/option.lua8
1 files changed, 4 insertions, 4 deletions
diff --git a/xmake/core/base/option.lua b/xmake/core/base/option.lua
index 36ed4b657..4b8157906 100644
--- a/xmake/core/base/option.lua
+++ b/xmake/core/base/option.lua
@@ -569,7 +569,7 @@ function option.show_menu(task)
-- print description
if taskmenu.description then
io.print("")
- io.print(taskmenu.description)
+ io.print(colors.translate(taskmenu.description))
end
-- print options
@@ -611,7 +611,7 @@ function option.show_main()
-- print description
if main.description then
io.print("")
- io.print(main.description)
+ io.print(colors.translate(main.description))
end
-- print tasks
@@ -664,7 +664,7 @@ function option.show_main()
local taskline = string.format(narrow and " %s%s" or " %s%s",
taskinfo.shortname and (taskinfo.shortname .. ", ") or " ",
taskname)
- table.insert(tablecontent, {taskline, taskinfo.description or ""})
+ table.insert(tablecontent, {taskline, colors.translate(taskinfo.description or "")})
end
end
@@ -784,7 +784,7 @@ function option.show_options(options, taskname)
v = v()
end
if type(v) == "string" then
- table.insert(desp_strs, v)
+ table.insert(desp_strs, colors.translate(v))
elseif type(v) == "table" then
table.move(v, 1, #v, #desp_strs + 1, desp_strs)
end