We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9531b04 commit e7550aaCopy full SHA for e7550aa
src/assets/tag.db
1.02 KB
src/data/ui-data.ts
@@ -53,11 +53,11 @@ const uiData: readonly DataMap[] = [
53
'Score ': '分数 ',
54
'Uploader Comment': '上传者评论',
55
56
- 'Vote+': '👍',
57
- 'Vote-': '👎',
+ 'Vote+': '赞',
+ 'Vote-': '踩',
58
59
- 'Vote Up': '👍',
60
- 'Vote Down': '👎',
+ 'Vote Up': '赞',
+ 'Vote Down': '踩',
61
62
'Show Tagged Galleries': '含有该标签的图库',
63
'Show Tag Definition': '显示标签介绍',
src/plugin/syringe/syringe.ts
@@ -169,7 +169,7 @@ class Syringe {
169
}
170
171
translateTag(node: Node): boolean {
172
- if (node.nodeName !== '#text' || !node.parentElement) {
+ if (!isText(node) || !node.parentElement) {
173
return false;
174
175
const parentElement = node.parentElement;
0 commit comments