// // umlaute-weg.vdm Christian Ziemski 19.10.2001 // 27.06.2004 // // translates the German umlauts into their 2-character equivalents // if (Font_Charset == 0) { // ANSI Replace("","ae", BEGIN+ALL+CASE+NOERR) Replace("","oe", BEGIN+ALL+CASE+NOERR) Replace("","ue", BEGIN+ALL+CASE+NOERR) Replace("","ss", BEGIN+ALL+CASE+NOERR) Replace("","Ae", BEGIN+ALL+CASE+NOERR) Replace("","Oe", BEGIN+ALL+CASE+NOERR) Replace("","Ue", BEGIN+ALL+CASE+NOERR) } else { // OEM Replace("","ae", BEGIN+ALL+CASE+NOERR) Replace("","oe", BEGIN+ALL+CASE+NOERR) Replace("","ue", BEGIN+ALL+CASE+NOERR) Replace("","ss", BEGIN+ALL+CASE+NOERR) Replace("","Ae", BEGIN+ALL+CASE+NOERR) Replace("","Oe", BEGIN+ALL+CASE+NOERR) Replace("","Ue", BEGIN+ALL+CASE+NOERR) }