我正在尝试翻译我购买的自定义插件。 现在我需要在js中翻译一些文本。我该怎么做?
我想翻译两行:
if(data){
if(data.success){
var result_html='<div class="alert alert-success"><strong>Success!</strong> Please wait for the page to reload.</div>';
jQuery("#result_msg").html(result_html);
refresh_table_entry();
setTimeout(function(){// wait for 5 secs(2)
“成功!请等待页面重新加载。”我想在这里翻译。
和
if(data) {
var tblhtml='<thead> <tr> <th> <label for="selectAll">#</label></th> <th>Product Key</th><th>Created at</th> </tr> </thead>'; // loop the array, and do whatever you want to do
var i=1;
jQuery.each(data.result, function(key, value){
“产品密钥”和“创建于”也应该是可翻译的。
我是一个使用js和PHP的完整菜鸟,这就是为什么我将非常感谢任何帮助的原因!
谢谢!