I'm using version 3.8.9.1 and I´ve got small issue with translation of one word on products list. The "Price" is still on english instead of local translation. I've checked PO file with translation and it seems there is everything ok.
I've checked the wps_products_page.php (on plugin directory and on theme directory) (see bellow) and there is everything good, but there is not written "Price".
Where should I found the "Price" written? On Log?
<div class="wpsc_product_price">
<?php if( wpsc_show_stock_availability() ): ?>
<?php if(wpsc_product_has_stock()) : ?>
<div id="stock_display_<?php echo wpsc_the_product_id(); ?>" class="in_stock"><?php _e('Prod$
<?php else: ?>
<div id="stock_display_<?php echo wpsc_the_product_id(); ?>" class="out_of_stock"><?php _e('$
<?php endif; ?>
<?php endif; ?>
<?php if(wpsc_product_is_donation()) : ?>
<label for="donation_price_<?php echo wpsc_the_product_id(); ?>"><?php _e('Donation', 'wpsc'); ?>: <$
<input type="text" id="donation_price_<?php echo wpsc_the_product_id(); ?>" name="donation_price" va$
<?php else : ?>
<?php wpsc_the_product_price_display(); ?>
<!-- multi currency code -->
<?php if(wpsc_product_has_multicurrency()) : ?>
<?php echo wpsc_display_product_multicurrency(); ?>
<?php endif; ?>
<?php if(wpsc_show_pnp()) : ?>
<p class="pricedisplay"><?php _e('Shipping', 'wpsc'); ?>:<span class="pp_price"><?php echo w$
<?php endif; ?>
<?php endif; ?>
</div><!--close wpsc_product_price-->