I dont get the following setting:
With this option you can localize in your language the "page" word.
I am using romanian language as default so is this meaning I need to put there "pagina" in romanian or page as it is ?
I will try to make a modification for Romanian language and post it here. Correct me if it is wrong pls.
Code:
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<?php
function remove_accents($string){
return strtr($string,
"&@ă?şţ?",
"eaaista");
}
?>
Unfortunately is not working. I needed to add charset=utf-8 or the ă?şşţ? will not show in the file. I dont know if it is correct php or vb point of view.