Reputation: 11
I want to add new word to prestashop language. For example I need to use word which is not defined yet in english language. I want to add new word alias 'mouse' translation 'mouse'. How to add it?
Upvotes: 1
Views: 265
Reputation: 1078
In your theme's template (.tpl) where you want this term, go to the element where you need it and add {l s='Mouse'}
.
You'll then be able to translate the "Mouse" word using the theme translations in backoffice.
Note: you can add this word to a specific module like this {l s='Mouse' mod='specific_module'}
then translate it using the Module translations.
Upvotes: 1