Hi,
I have done a manual insert for this in the file “print-content.php”.
Go to line 51 where the div container starts
<div class=”order-info”>
and insert after that as next line:
<div id=”date” style=”margin-left: 500px;”><? echo date(‘d.m.Y’); ?>
</div>
I have fixed it manually by adding the following to the file “wp-menu-cart.php” in the plugin directory :
Line 414
$cart_contents = sprintf(_n(‘%d [:en]item[:de]Artikel’, ‘%d [:en]items[:de]Artikel‘, $item_data[‘cart_contents_count’], ‘wpmenucart’), $item_data[‘cart_contents_count’]);
As you can see I have added English [:en] and German [:de] language words with the q-translate label.
Works if you have only a couple of languages to support.