You could create mapping table and use that to go back and forth with Recode
Columns can also have multiple names but no idea how to access those expect by changing the language (x-id seems the most interesting here)
New Column(["en" => "name", "ja" => "名前", "x-id" => "S_name_Col", "zh-CN" => "姓名"],
Character,
"Nominal",
Set Property(
"Notes",
["en" => "...usually used as a label variable in plots",
"ja" => "散布図のラベル変数として使用する。",
"x-id" => "S_usually_used_as_a_label_variable_Not",
"zh-CN" => "...通常用作图中的标签变量"]
),
Set Selected,
Set Display Width(0)
)
You can also add your own, but again no idea how to access those (except from the column script)
Names Default To Here(1);
dt = New Table("");
dt << New Column(["en" => "test", "x-id" => "TEST2", "AAA" => "BBB"]);
Show(Arg(column(1) << get script));
-Jarmo