Перевод на другой язык

в templates/nexshops/module/main_tabs_products.html

меняем

            {if $item.type === 'tab_new'}<i class="icon-new"></i>{/if}
            {if $item.type === 'tab_specials'}<i class="icon-sale"></i>{/if}
            {if $item.type === 'tab_best_sellers'}<i class="icon-star-empty"></i>{/if}
            {if $item.type === 'tab_recomend'}<i class="icon-thumb-up"></i>{/if}
            <span class="dotted_tab_text">{$item.name}</span>

на

		{if $smarty.session.language_code == 'ru'}
            {if $item.type === 'tab_new'}<i class="icon-new"></i>{/if}
            {if $item.type === 'tab_specials'}<i class="icon-sale"></i>{/if}
            {if $item.type === 'tab_best_sellers'}<i class="icon-star-empty"></i>{/if}
            {if $item.type === 'tab_recomend'}<i class="icon-thumb-up"></i>{/if}
            <span class="dotted_tab_text">{$item.name}</span>
		{/if}
		{if $smarty.session.language_code == 'uk'}
            {if $item.type === 'tab_new'}
				<i class="icon-new"></i>
				<span class="dotted_tab_text">Новинки</span>
			{/if}
            {if $item.type === 'tab_specials'}
				<i class="icon-sale"></i>
				<span class="dotted_tab_text">Знижки</span>
			{/if}
            {if $item.type === 'tab_best_sellers'}
				<i class="icon-star-empty"></i>
				<span class="dotted_tab_text">Лідери продажу</span>
			{/if}
            {if $item.type === 'tab_recomend'}
				<i class="icon-thumb-up"></i>
				<span class="dotted_tab_text">Рекомендовані</span>
			{/if}
        {/if}
1 лайк