omlouvám se, že zase otravuji, ale dovolil jsem si úpravu kódu, aby se zobrazoval plurál ve statice na ovládacím panelu. Jedná se o soubor default.php v adresáři administrator\components\com_phocacart\views\phocacartcp\tmpl. Jsou tam 4 změny:
38. řádek
Code: Select all
<div class="ph-cpanel-color-header"><?php echo JText::_('COM_PHOCACART_TODAY'); ?></div>
<div class="ph-cpanel-stat-value"><?php echo $cUsersD; ?></div>
<div class="ph-cpanel-color-header"><?php echo JText::plural( 'COM_PHOCACART_CUSTOMERS', $cUsersD); ?></div>
Code: Select all
<div class="ph-cpanel-color-header"><?php echo JText::_('COM_PHOCACART_TODAY'); ?></div>
<div class="ph-cpanel-stat-value"><?php echo $cOrdersD; ?></div>
<div class="ph-cpanel-color-header"><?php echo JText::plural( 'COM_PHOCACART_ORDERS', $cOrdersD); ?></div>
Code: Select all
<div class="ph-cpanel-color-header"><?php echo JText::_('COM_PHOCACART_THIS_WEEK'); ?></div>
<div class="ph-cpanel-stat-value"><?php echo $cUsersW; ?></div>
<div class="ph-cpanel-color-header"><?php echo JText::plural( 'COM_PHOCACART_CUSTOMERS', $cUsersW); ?></div>
Code: Select all
<div class="ph-cpanel-color-header"><?php echo JText::_('COM_PHOCACART_THIS_WEEK'); ?></div>
<div class="ph-cpanel-stat-value"><?php echo $cOrdersW; ?></div>
<div class="ph-cpanel-color-header"><?php echo JText::plural( 'COM_PHOCACART_ORDERS', $cOrdersW); ?></div>
COM_PHOCACART_CUSTOMERS_0="Customers"
COM_PHOCACART_CUSTOMERS_1="Customers"
COM_PHOCACART_CUSTOMERS_2="Customers"
COM_PHOCACART_CUSTOMERS_3="Customers"
COM_PHOCACART_CUSTOMERS_4="Customers"
COM_PHOCACART_ORDERS_0="Orders"
COM_PHOCACART_ORDERS_1="Orders"
COM_PHOCACART_ORDERS_2="Orders"
COM_PHOCACART_ORDERS_3="Orders"
COM_PHOCACART_ORDERS_4="Orders"
HonzaKr