OpenOffice.
it seems I have found the problem solving:
class.addressbook_merge.inc.php
…
function merge($document,$ids,&$err)
{
…
if ($this->contacts->prefs[‘csv_charset’]) // if we have an export-charset defined, use it here to
{
$replacements = $GLOBALS[‘egw’]->translation->convert($replacements,$GLOBALS[‘egw’]->translation->charset(),$this->contacts->prefs[‘csv_charset’]);
}
foreach ($replacements as $r=>$rr)
{
$replacements[$r]=iconv(“utf-8”,“cp1251”,$rr);
}
…
maybe it is not very clever mode and I will be glad to hear another way:)
thanks for response:)