Bhikkhu-Kosalla 5 anni fa
parent
commit
0c751ca5b1

+ 1 - 0
app/public/lang/default.json

@@ -625,6 +625,7 @@
 		"months_ago": "months ago",
 		"year_ago": "year ago",
 		"years_ago": "years ago",
+		"similar": "similar",
 		"": ""
 	},
 	"grammastr": [

+ 1 - 0
app/public/lang/en.json

@@ -624,6 +624,7 @@
 		"months_ago": " months ago",
 		"year_ago": " year ago",
 		"years_ago": " years ago",
+		"similar": "similar",
 		"": ""
 	},
 	"grammastr": [

+ 1 - 0
app/public/lang/my.json

@@ -624,6 +624,7 @@
 		"months_ago": " months ago",
 		"year_ago": " year ago",
 		"years_ago": " years ago",
+		"similar": "similar",
 		"": ""
 	},
 	"grammastr": [

+ 1 - 0
app/public/lang/si.json

@@ -629,6 +629,7 @@
 		"months_ago": " months ago",
 		"year_ago": " year ago",
 		"years_ago": " years ago",
+		"similar": "similar",
 		"": ""
 	},
 	"grammastr": [

+ 3 - 2
app/public/lang/zh-cn.json

@@ -328,7 +328,7 @@
 		"to_user_dictionary": "保存并添加到单词本",
 		"user_id": "账号",
 		"userdict": "单词本",
-		"vannana": "注",
+		"vannana": "注释书",
 		"view": "可见",
 		"vikala": "不适当的时间",
 		"vocabulary": "词汇总量:",
@@ -387,7 +387,7 @@
 		"add_folder": "新建文件夹",
 		"add_to_folder": "放入文件夹",
 		"rename": "重命名",
-		"collaborate": "协作文档",
+		"collaborate": "协作",
 		"help": "帮助",
 		"function_introduce": "Wikipāḷi功能介绍",
 		"vedio_link": "视频链接",
@@ -627,6 +627,7 @@
 		"months_ago": "月前",
 		"year_ago": "年前",
 		"years_ago": "年前",
+		"similar": "相似",
 		"": ""
 	},
 	"grammastr": [

+ 2 - 1
app/public/lang/zh-tw.json

@@ -387,7 +387,7 @@
 		"add_folder": "新建資料夾",
 		"add_to_folder": "加入資料夾",
 		"rename": "重新命名",
-		"collaborate": "協作檔案",
+		"collaborate": "協作",
 		"help": "幫助",
 		"function_introduce": "Wikipāḷi功能介紹",
 		"vedio_link": "視訊連結",
@@ -626,6 +626,7 @@
 		"months_ago": "月前",
 		"year_ago": "年前",
 		"years_ago": "年前",
+		"similar": "相似",
 		"": ""
 	},
 	"grammastr": [

+ 3 - 3
app/share/share.php

@@ -97,7 +97,7 @@ input[type="text"], input[type="input"], input[type="password"], textarea{
 			</span>
 			-->
 			<span style="max-width:200px;">
-			<input id="search_user" type="input" name="" placeholder="输入用户名或组名" onkeyup="username_search_keyup(event,this)" />
+			<input id="search_user" type="input" name="" placeholder="🔍输入用户名或组名" onkeyup="username_search_keyup(event,this)" />
 			</span>
 
 			</div>
@@ -108,8 +108,8 @@ input[type="text"], input[type="input"], input[type="password"], textarea{
 				</div>
 				<div id="coop_new_tools">
 					<select id="coop_new_power">
-						<option value="10">查看者</option>
-						<option value="20">编辑者</option>
+						<option value="10">👁‍🗨查看者</option>
+						<option value="20">📝编辑者</option>
 					</select>
 					<button onclick="add_coop()">添加</button>
 					<button onclick="cancel_coop()">取消</button>

+ 4 - 5
app/term/note.js

@@ -563,14 +563,14 @@ function note_json_html(in_json) {
 	output += "<span class='more_tran icon_expand'></span>";
 	//其他译文工具条
 	output += "<span class='other_bar'  >";
-	output += "<span class='other_tran_span' title='" + gLocal.gui.other + gLocal.gui.translation + "'>🧲</span>";
+	output += "<span class='other_tran_span' title='" + gLocal.gui.other + gLocal.gui.translation + "'>🧲"+gLocal.gui.translation+"</span>";
 	output += "<span class='other_tran_num'></span>";
 	output += "</span>";
 	output += "<span class='separate_line'></span>";
 
 	//手工义注
 	output += "<span class='other_bar'  >";
-	output += "<span class='other_tran_span commentray' >commentray</span>";
+	output += "<span class='other_tran_span commentray' title='📔" + gLocal.gui.vannana + "'>🪔"+gLocal.gui.commentary+"</span>";
 	output += "<span class='other_tran_num'></span>";
 	output += "</span>";
 	output += "<span class='separate_line'></span>";
@@ -583,7 +583,7 @@ function note_json_html(in_json) {
 			in_json.pali_sent_id +
 			"')\" title='" +
 			gLocal.gui.similar_sentences +
-			"'>🔗</span>";
+			"'>🧬"+gLocal.gui.similar+"</span>";
 		output += "<span class='similar_sent_num'>" + in_json.sim + "</span>";
 		output += "</span>";
 		output += "<span class='separate_line'></span>";
@@ -1154,8 +1154,7 @@ function set_more_button_display() {
 			//$(this).hide();
 			$(this)
 				.find(".other_tran_span")
-				.addClass("disable")
-				.html("🧲");//gLocal.gui.no + gLocal.gui.other + gLocal.gui.translation
+				.addClass("disable");//gLocal.gui.no + gLocal.gui.other + gLocal.gui.translation
 			//$(this).find(".more_tran").hide();
 		}
 	});