blob: 74f6e0cd9af6f1f4c29d8ef15b0eaa6b621693c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
if not modules then modules = { } end modules ['scrn-but'] = {
version = 1.001,
comment = "companion to scrn-but.mkiv",
author = "Hans Hagen, PRAGMA-ADE, Hasselt NL",
copyright = "PRAGMA ADE / ConTeXt Development Team",
license = "see context related readme files"
}
local commands = commands
local context = context
local f_two_colon = string.formatters["%s:%s"]
function commands.registerbuttons(tag,register,language)
local data = sorters.definitions[language]
local orders = daya and data.orders or sorters.definitions.default.orders
local tag = tag == "" and { "" } or { tag }
for i=1,#orders do
local order = orders[i]
context.menubutton(tag,f_two_colon(register,order),order)
end
end
|