Hi Guys
I am using Magento 2.4 having an issue in the subtotal, subtotal not translating to ES
You can have a look at the snapshot: https://prnt.sc/12yabu3 I have marked in red color
Please advise me if anyone knows why its not working
Solved! Go to Solution.
Hi @Ansarul146,
Have you put the subtotal in your ES translation directory? If you have already imported it, run the deploy command again and include your translation code.
Hope this can help you! Let me know if you need further assistance.
__________
If issue solved, Click Kudos & Accept as Solution.
If you are using a Theme then there will be a file inside app\design\frontend\<themeparent>\<theme>\i18n
Inside this i18n directory you will find files name for example for French it will be fr_FR.csv . For your language open the respective file and check if there is "subtotal" in it.
If exists
then check what value it hold if its "subtotal", "subtotal" then make it like this "subtotal", "<your language>"
If "subtotal" doesn't exists
Then add "subtotal", "<your language>" this in it.
If file doesn't exists
Then create the respect file base on your language (I had given an example of French) and
add this in it "subtotal", "<your language>"
save the file and run the magento setup upgrade and content deploy commands
Hi @Ansarul146,
Have you put the subtotal in your ES translation directory? If you have already imported it, run the deploy command again and include your translation code.
Hope this can help you! Let me know if you need further assistance.
__________
If issue solved, Click Kudos & Accept as Solution.