|
|
@@ -11,7 +11,7 @@ function add_to_collect_dlg_init() {
|
|
|
let article_id = $(this).parent().attr("a_id");
|
|
|
html += "<div id='add_to_collect_dlg_" + article_id + "'>";
|
|
|
html += "<div >";
|
|
|
- html += "<input type='input' placeholder='搜索文集' />";
|
|
|
+ html += "<input type='input' placeholder='" + gLocal.gui.search + "' />";
|
|
|
html += "</div>";
|
|
|
html += "<div>";
|
|
|
html += "<div class='exist'>";
|
|
|
@@ -20,15 +20,15 @@ function add_to_collect_dlg_init() {
|
|
|
html += "</div>";
|
|
|
html += "</div>";
|
|
|
html += "<div style='display:flex;'>";
|
|
|
- html += "<button onclick='collect_new()'>New Collect</button>";
|
|
|
+ html += "<button onclick='collect_new()'>" + gLocal.gui.new_composition + "</button>";
|
|
|
html +=
|
|
|
- "<button onclick=\"article_add_to_collect_ok('" +
|
|
|
+ "<button onclick=\"article_add_to_collect_cancel('" +
|
|
|
article_id +
|
|
|
- "')\">Finish</button>";
|
|
|
+ "')\">" + gLocal.gui.cancel + "</button>";
|
|
|
html +=
|
|
|
- "<button onclick=\"article_add_to_collect_cancel('" +
|
|
|
+ "<button onclick=\"article_add_to_collect_ok('" +
|
|
|
article_id +
|
|
|
- "')\">Cancel</button>";
|
|
|
+ "')\">" + gLocal.gui.finish + "</button>";
|
|
|
html += "</div>";
|
|
|
html += "</div>";
|
|
|
$(this).siblings(".float_dlg").first().html(html);
|