Доброго времени суток не могу найти как переводить вкладки личного кабинета читал все что есть на форуме все поверхностно указанно у меня стоит wpml плагин перевода но он не видит этих строк вторую ночь пляшу с бубном вокруг последнее что осталось перевести и не в какую( помогите пожалуйста !!!
1
2
3
4
5
6
7
8
9
10
11
12
//this is a special function so we can add strings to the WPML system in WordPress
function insert_new_wpml_string($name, $context, $string ) {
//first we need to check if there is a string and context for the string to be inserted
$sql="SELECT * from wp_icl_strings where language = 'en' and context = '".$context."' and value = '".$string."' ";
$result=mysql_query($sql) or die(mysql_error());
$rows=mysql_num_rows($result);
//if there is no record of the string in the context then add a new one
if(!$rows){
$guid = md5(uniqid(mt_rand(0,1000)));
icl_register_string($context, $name . ' - ' .$guid, $string);
}
}