|
|
@@ -553,7 +553,7 @@ function note_json_html(in_json) {
|
|
|
output += "begin='" + in_json.begin + "' ";
|
|
|
output += "end='" + in_json.end + "' ";
|
|
|
output += " >";
|
|
|
- output += "<span class='' onclick='add_new_tran_button_click(this)'>+添加译文</span>";
|
|
|
+ output += "<span class='' onclick='add_new_tran_button_click(this)'>+"+gLocal.gui.add_tran+"</span>";
|
|
|
output += "<div class='tran_text_tool_bar'>";
|
|
|
output += "</div>";
|
|
|
output += "</span>";
|
|
|
@@ -744,16 +744,16 @@ function render_one_sent_tran_a(iterator) {
|
|
|
if (parseInt(iterator.mypower) >= 30 && parseInt(iterator.status) < 30) {
|
|
|
//我的私有资源 公开发布
|
|
|
commitIcon = "publish";
|
|
|
- commitTipText = "公开发布";
|
|
|
+ commitTipText = gLocal.gui.publish;
|
|
|
} else {
|
|
|
if (parseInt(iterator.mypower) < 20) {
|
|
|
//只读资源 采纳
|
|
|
commitIcon = "accept_copy";
|
|
|
- commitTipText = "采纳";
|
|
|
+ commitTipText = gLocal.gui.accept_copy;
|
|
|
} else {
|
|
|
//其他资源 复制到
|
|
|
commitIcon = "copy";
|
|
|
- commitTipText = "复制到";
|
|
|
+ commitTipText = gLocal.gui.copy_to;
|
|
|
}
|
|
|
}
|
|
|
html += "<button class='icon_btn tooltip' ";
|
|
|
@@ -848,7 +848,7 @@ function render_one_sent_tran_a(iterator) {
|
|
|
if (parseInt(iterator.mypower) < 20) {
|
|
|
html += "<b>提交修改建议</b> ";
|
|
|
}
|
|
|
- html += "点击输入框外面自动<a onclick='sent_tran_edit(this)'>保存</a> 支持markdown语法";
|
|
|
+ html += "点击输入框外面自动<a onclick='sent_tran_edit(this)'>"+gLocal.gui.save+"</a> 支持markdown语法";
|
|
|
html += "</div>";
|
|
|
html += "</div>";
|
|
|
|