dict put 'Name' language 'IT' section 'Common' value "Nome";
dict put 'Color' language 'DE' section 'Common' subkey 'black'
value "schwarz";
dictionary select N*,C* language IT,DE section 'Common' token
xml exportfile "c:/oberon/dict.xml" ;
dict import * section "Common" importfile "c:/oberon/dict.xml"
xml;
dict remove 'Color' language 'DE' section 'Common' subkey
'black' ;
|