EduPerea737 Posted April 1, 2017 Share Posted April 1, 2017 Hi, I have set spanish for my site but I was sending an order and I see when I selected hosting, there is a "/yr" next to the price, I want to change it for "Año" but I cant find where change it, in the Lang file it doesn't. So, where can I translate it? Thanks 0 Quote Link to comment Share on other sites More sharing options...
brian! Posted April 1, 2017 Share Posted April 1, 2017 it is in the lang file - in spanish.php is uses.... $_LANG['shoppingCartProductPerMonth'] = "<span>:price</span>/:countmo"; $_LANG['shoppingCartProductPerYear'] = "<span>:price</span>/:countyr"; so the top line is for months (mes), and the second line is for year (Año)... therefore, you should only need to create a Language Overrides folder, add a new file there (if it doesn't exist already), call it spanish.php and add the following to it... <?php $_LANG['shoppingCartProductPerYear'] = "<span>:price</span>/:countAño"; 0 Quote Link to comment Share on other sites More sharing options...
EduPerea737 Posted April 3, 2017 Author Share Posted April 3, 2017 Thanks a lot! 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.