以下のphp構文について助けが必要です。私は magento でいくつかのストアビューを持っているので、太字の単語Warenkorbを次のようなものに置き換える必要があります。
<?php echo $this->__('My Cart') ?>
他のストアビューで Warenkorb という単語が翻訳されるようにします。
誰もこれを行う方法を知っていますか?
<?php
//get total items in cart
$count = $this->helper('checkout/cart')->getSummaryCount();
//get total price
$total = $this->helper('checkout/cart')->getQuote()->getGrandTotal();
if( $count == 0 ) {
echo $this->__(' <a href="http://www.cococana.de/index.php/checkout/cart/"> Warenkorb: <br />   %s',$count);
}
if( $count == 1 ) {
echo $this->__(' <a href="http://www.cococana.de/index.php/checkout/cart/"> Warenkorb <br />  ',$count);
}
if( $count > 1 ) {
echo $this->__(' <a href="http://www.cococana.de/index.php/checkout/cart/"> Warenkorb: <br />   %s',$count);
}
echo $this->__(' Artikel: %s', $this->helper('core')->formatPrice($total, false));
?>