mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-05-21 19:41:05 +08:00
📝 Improve text
This commit is contained in:
parent
30237e2c1b
commit
4c02f211b5
@ -432,6 +432,9 @@
|
||||
"merge": "Merge",
|
||||
"wordCount": "Words",
|
||||
"runeCount": "Characters",
|
||||
"linkCount": "Links",
|
||||
"imgCount": "Images",
|
||||
"refCount": "Refs",
|
||||
"kbd": "Keyboard",
|
||||
"errorStyle": "Error Style",
|
||||
"successStyle": "Success Style",
|
||||
|
@ -432,6 +432,9 @@
|
||||
"merge": "Fusionar",
|
||||
"wordCount": "Palabras",
|
||||
"runeCount": "Caracteres",
|
||||
"linkCount": "Enlaces",
|
||||
"imgCount": "Imágenes",
|
||||
"refCount": "Referencias",
|
||||
"kbd": "Teclado",
|
||||
"errorStyle": "Estilo de error",
|
||||
"successStyle": "Estilo de éxito",
|
||||
|
@ -1,6 +1,7 @@
|
||||
{
|
||||
"onlySearchForDoc": "<code class='fn__code'>[[</code> rechercher uniquement les documents",
|
||||
"onlySearchForDocTip": "Après l'activation, [[ ou 【【 pour rechercher des références de bloc uniquement dans les blocs doc",
|
||||
"ocrResult": "Texte du résultat OCR",
|
||||
"reOCR": "ReOCR",
|
||||
"continueReview1": "Continuer la révision",
|
||||
"continueReview2": "Il reste encore des fiches <code class='fn__code'>${count}</code> à examiner, continuer ?",
|
||||
@ -431,6 +432,9 @@
|
||||
"merge": "Merge",
|
||||
"wordCount": "Mots",
|
||||
"runeCount": "Caractères",
|
||||
"linkCount": "Liens",
|
||||
"imgCount": "Images",
|
||||
"refCount": "Réfs",
|
||||
"kbd": "Clavier",
|
||||
"errorStyle": "Style d'Erreur",
|
||||
"successStyle": "Style de Réussite",
|
||||
|
@ -432,6 +432,9 @@
|
||||
"merge": "合併",
|
||||
"wordCount": "詞數",
|
||||
"runeCount": "字數",
|
||||
"linkCount": "鏈接",
|
||||
"imgCount": "圖片",
|
||||
"refCount": "引用",
|
||||
"kbd": "鍵盤",
|
||||
"errorStyle": "錯誤樣式",
|
||||
"successStyle": "成功樣式",
|
||||
|
@ -432,6 +432,9 @@
|
||||
"merge": "合并",
|
||||
"wordCount": "词数",
|
||||
"runeCount": "字数",
|
||||
"linkCount": "链接",
|
||||
"imgCount": "图片",
|
||||
"refCount": "引用",
|
||||
"kbd": "键盘",
|
||||
"errorStyle": "错误样式",
|
||||
"successStyle": "成功样式",
|
||||
|
@ -206,13 +206,13 @@ export const renderStatusbarCounter = (stat: {
|
||||
let html = `<span class="ft__on-surface">${window.siyuan.languages.runeCount}</span> ${stat.runeCount}<span class="fn__space"></span>
|
||||
<span class="ft__on-surface">${window.siyuan.languages.wordCount}</span> ${stat.wordCount}<span class="fn__space"></span>`;
|
||||
if (0 < stat.linkCount) {
|
||||
html += `<span class="ft__on-surface">${window.siyuan.languages.link}</span> ${stat.linkCount}<span class="fn__space"></span>`;
|
||||
html += `<span class="ft__on-surface">${window.siyuan.languages.linkCount}</span> ${stat.linkCount}<span class="fn__space"></span>`;
|
||||
}
|
||||
if (0 < stat.imageCount) {
|
||||
html += `<span class="ft__on-surface">${window.siyuan.languages.image}</span> ${stat.imageCount}<span class="fn__space"></span>`;
|
||||
html += `<span class="ft__on-surface">${window.siyuan.languages.imgCount}</span> ${stat.imageCount}<span class="fn__space"></span>`;
|
||||
}
|
||||
if (0 < stat.refCount) {
|
||||
html += `<span class="ft__on-surface">${window.siyuan.languages.ref}</span> ${stat.refCount}<span class="fn__space"></span>`;
|
||||
html += `<span class="ft__on-surface">${window.siyuan.languages.refCount}</span> ${stat.refCount}<span class="fn__space"></span>`;
|
||||
}
|
||||
document.querySelector("#status .status__counter").innerHTML = html;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user