🎨 Update text

This commit is contained in:
Daniel 2024-02-05 22:07:50 +08:00
parent 28ff8ad292
commit ddd04cb669
No known key found for this signature in database
GPG key ID: 86211BA83DF03017
6 changed files with 8 additions and 3 deletions

View file

@ -214,6 +214,7 @@
"scrollGetMore": "Don't panic... scroll up and down to load more",
"flashcardNewCard": "New",
"flashcardReviewCard": "Review",
"flashcardDueCard": "Due",
"flashcardCard": "Total",
"plugin": "Plugin",
"attrBookmarkTip": "Associate this block with a bookmark for subsequent viewing through the bookmark panel",

View file

@ -214,6 +214,7 @@
"scrollGetMore": "No se asuste... desplácese hacia arriba y hacia abajo para cargar más",
"flashcardNewCard": "Nueva Tarjeta",
"flashcardReviewCard": "Revisar Tarjeta",
"flashcardDueCard": "Tarjeta debida",
"flashcardCard": "Todos",
"plugin": "Complemento",
"attrBookmarkTip": "Asociar este bloque con un marcador para verlo posteriormente a través del panel de marcadores",

View file

@ -214,6 +214,7 @@
"scrollGetMore": "Ne paniquez pas... faites défiler de haut en bas pour en charger plus",
"flashcardNewCard": "Nouvelle carte",
"flashcardReviewCard": "Revoir la carte",
"flashcardDueCard": "Carte due",
"flashcardCard": "Tous",
"plugin": "Plugin",
"attrBookmarkTip": "Associez ce bloc à un signet pour un affichage ultérieur via le panneau des signets",

View file

@ -214,6 +214,7 @@
"scrollGetMore": "不要驚慌...上下滾動即可加載更多內容",
"flashcardNewCard": "新卡",
"flashcardReviewCard": "複習卡",
"flashcardDueCard": "到期卡",
"flashcardCard": "所有",
"plugin": "插件",
"attrBookmarkTip": "將該塊和一個書籤進行關聯,以便後續通過書籤面板查看",

View file

@ -214,6 +214,7 @@
"scrollGetMore": "不要惊慌...上下滚动即可加载更多内容",
"flashcardNewCard": "新卡",
"flashcardReviewCard": "复习卡",
"flashcardDueCard": "到期卡",
"flashcardCard": "所有",
"plugin": "插件",
"attrBookmarkTip": "将该块和一个书签进行关联,以便后续通过书签面板查看",

View file

@ -187,7 +187,7 @@ export const movePathTo = (cb: (toPath: string[], toNotebook: string[]) => void,
let countHTML = "";
if (flashcard) {
countHTML = `<span class="counter counter--right b3-tooltips b3-tooltips__w" aria-label="${window.siyuan.languages.flashcardNewCard}">${item.newFlashcardCount}</span>
<span class="counter counter--right b3-tooltips b3-tooltips__w" aria-label="${window.siyuan.languages.flashcardReviewCard}">${item.dueFlashcardCount}</span>
<span class="counter counter--right b3-tooltips b3-tooltips__w" aria-label="${window.siyuan.languages.flashcardDueCard}">${item.dueFlashcardCount}</span>
<span class="counter counter--right b3-tooltips b3-tooltips__w" aria-label="${window.siyuan.languages.flashcardCard}">${item.flashcardCount}</span>`;
}
html += `<ul class="b3-list b3-list--background">
@ -236,7 +236,7 @@ export const movePathTo = (cb: (toPath: string[], toNotebook: string[]) => void,
if (flashcard) {
countHTML = `<span class="fn__flex-1"></span>
<span class="counter counter--right b3-tooltips b3-tooltips__w" aria-label="${window.siyuan.languages.flashcardNewCard}">${item.newFlashcardCount}</span>
<span class="counter counter--right b3-tooltips b3-tooltips__w" aria-label="${window.siyuan.languages.flashcardReviewCard}">${item.dueFlashcardCount}</span>
<span class="counter counter--right b3-tooltips b3-tooltips__w" aria-label="${window.siyuan.languages.flashcardDueCard}">${item.dueFlashcardCount}</span>
<span class="counter counter--right b3-tooltips b3-tooltips__w" aria-label="${window.siyuan.languages.flashcardCard}">${item.flashcardCount}</span>`;
}
fileHTML += `<li class="b3-list-item${fileHTML === "" ? " b3-list-item--focus" : ""}" data-path="${item.path}" data-box="${item.box}">
@ -503,7 +503,7 @@ const getLeaf = (liElement: HTMLElement, flashcard: boolean) => {
let countHTML = "";
if (flashcard) {
countHTML = `<span class="counter counter--right b3-tooltips b3-tooltips__w" aria-label="${window.siyuan.languages.flashcardNewCard}">${item.newFlashcardCount}</span>
<span class="counter counter--right b3-tooltips b3-tooltips__w" aria-label="${window.siyuan.languages.flashcardReviewCard}">${item.dueFlashcardCount}</span>
<span class="counter counter--right b3-tooltips b3-tooltips__w" aria-label="${window.siyuan.languages.flashcardDueCard}">${item.dueFlashcardCount}</span>
<span class="counter counter--right b3-tooltips b3-tooltips__w" aria-label="${window.siyuan.languages.flashcardCard}">${item.flashcardCount}</span>`;
} else if (item.count && item.count > 0) {
countHTML = `<span class="popover__block counter b3-tooltips b3-tooltips__w" aria-label="${window.siyuan.languages.ref}">${item.count}</span>`;