我正在努力将一些翻译文件实施到我的网站中。这笔交易是用一个包含将要使用的语言名称的php翻译整个网站(例如en.php,es.php,pt.php ...)并将变量设置到这个将被调用的文件中只要用户将diferente语言名称单击到网页中。直到那时没问题。
这些语言变量在这些php文件中定义,如...
关于pt.php:
define('TEXTO_69','Gostaria de se identificar?');
在en.php上:
define('TEXTO_69','Would you like to identify yourself?');
等每个php语言文件......
当我编辑脚本部分时,我遇到的主要问题是不能在我的index.php文件中访问这些变量,看看:
if($('input[name="agree"]').is(':checked')) {
//alert('Checkbox is checked!!');
return true;
} else {
jAlert('Para efetuar o cadastro você deve estar de acordo com os termos de uso e politica de privacidade','Aviso');
return false;
}
return true;
我想替换字符串'Para efetuar ocadastrovocêdeveestar de acordo com os termos de uso e politica de privacidade'和字符串'Aviso' with我定义的变量中的文本(例如TEXTO_69)返回语言文件。
在javascript函数中打开一个php JAlert并且回显该变量不会返回该字符串。
非常感谢你!