Hi!
I would like to translate the "Next page" and "Previous page" to the right language for my customers. I have been searching for this line of code for some while now and I havent found where to translate this.
Does anyone know where I do this?
Thanks in advance!
Language change, Next and previous page
-
westis
Re: Language change, Next and previous page
Hi Teddy,
You can use the parameter label='Nästa: ' for the {cms_selflink} tags in the template. It will then look like {cms_selflink dir="next" label='Nästa: '}
Hope that helps.
You can use the parameter label='Nästa: ' for the {cms_selflink} tags in the template. It will then look like {cms_selflink dir="next" label='Nästa: '}
Hope that helps.
-
cyberman
Re: Language change, Next and previous page
There's an other option tooTeddy wrote: I would like to translate the "Next page" and "Previous page" to the right language for my customers. I have been searching for this line of code for some while now and I havent found where to translate this.
Code: Select all
case 'dk':
case 'da':
$Prev_label = "Forrige side: ";
$Next_label = "Næste side: ";
break;
case 'en':
$Prev_label = "Previous page: ";
$Next_label = "Next page: ";
break;
case '0':
$Prev_label = "";
$Next_label = "";
break;
default:
$Prev_label = "Previous page: ";
$Next_label = "Next page: ";Code: Select all
case 'en':
$Prev_label = "Previous page: ";
$Next_label = "Next page: ";
break;
case 'se':
$Prev_label = "Your translation for Previous page: ";
$Next_label = "Your translation for Next page: ";Code: Select all
{cms_selflink dir="next" lang='se'}
Last edited by cyberman on Fri Aug 04, 2006 6:47 am, edited 1 time in total.
