Thank you also fot the update v0.98 version. I have made the translation in Dutch.
There are two slight problems.
1) In admin\includes\modules\product_auction\collect_info.php is smaal problem with the FCKeditor this was also a problen in the former versions,
There is no FCKeditor only a fold in rule 464.
I give you here by mine solution.
462 <?php if (HTML_EDITOR_PREFERENCE=="FCKEDITOR") {
463// if (HTML_EDITOR_PREFERENCE=="FCKEDITOR") require(DIR_WS_INCLUDES.'fckeditor.php');
464 $oFCKeditor = new FCKeditor ('products_description[' . $languages[$i]['id'] . ']') ; // problem sold
465 $oFCKeditor->Value = (isset($products_description[$languages[$i]['id']])) ? stripslashes($products_description[$languages[$i]['id']]) : zen_get_products_description($pInfo->products_id, $languages[$i]['id']) ;
466// $oFCKeditor->Create() ;
467 $oFCKeditor->Width = '99%' ;
468 $oFCKeditor->Height = '300' ;
469// $output = $oFCKeditor->CreateHtml() ; echo $output;
470 $oFCKeditor->Create( 'products_description[' . $languages[$i]['id'] . ']' ) ; //instanceName, width, height (px or %)
471
472
473 } else { // using HTMLAREA or just raw "source"
474
475 echo zen_draw_textarea_field('products_description[' . $languages[$i]['id'] . ']', 'soft', '100%', '20', (isset($products_description[$languages[$i]['id']])) ? stripslashes($products_description[$languages[$i]['id']]) : zen_get_products_description($pInfo->products_id, $languages[$i]['id'])); //,'id="'.'products_description' . $languages[$i]['id'] . '"');
476 } ?>

If I did it on this way I get the FCKeditor perfect.

2) When you make a bid and submit It you cann't overbid yourself.
That is a problem when you make use of reserved price.
When someone make a bid and get the massage Reserved Price is Not Met, he can make no other bid till someone else has made a bid.

sorry for my language gr wilbroek