Vanessa 2024-03-01 16:19:59 +08:00
parent 7fc80ed570
commit b7ce0259d8
6 changed files with 28 additions and 4 deletions

View file

@ -1,4 +1,10 @@
{
"current": "This",
"week": "week",
"month": "month",
"year": "year",
"pastDate": "Past",
"nextDate": "Next",
"listInvalidRefBlocks": "List blocks with invalid references",
"listItemDotNumberClickFocus": "List item dot/number click to focus",
"listItemDotNumberClickFocusTip": "After enabling, clicking the list item dot/number will focus on the list item",

View file

@ -1,4 +1,10 @@
{
"current": "Esto",
"week": "semana",
"month": "mes",
"year": "año",
"pastDate": "Pasado",
"nextDate": "Siguiente",
"listInvalidRefBlocks": "Listar bloques con referencias no válidas",
"listItemDotNumberClickFocus": "Punto/número de elemento de lista, haga clic para enfocar",
"listItemDotNumberClickFocusTip": "Después de habilitarlo, hacer clic en el punto/número del elemento de la lista se centrará en el elemento de la lista",

View file

@ -1,4 +1,10 @@
{
"current": "Ceci",
"week": "semaine",
"month": "mois",
"year": "année",
"pastDate": "Passé",
"nextDate": "Suivant",
"listInvalidRefBlocks": "Liste des blocs avec des références invalides",
"listItemDotNumberClickFocus": "Cliquez sur le point/numéro de l'élément de la liste pour vous concentrer",
"listItemDotNumberClickFocusTip": "Après activation, cliquer sur le point/numéro de l'élément de liste se concentrera sur l'élément de liste",

View file

@ -1,4 +1,10 @@
{
"current": "當前",
"week": "週",
"month": "月",
"year": "年",
"pastDate": "前",
"nextDate": "後",
"listInvalidRefBlocks": "列出引用失效的區塊",
"listItemDotNumberClickFocus": "清單項目圓點/數字點選聚焦",
"listItemDotNumberClickFocusTip": "啟用後點選清單項目的圓點/數字將進入聚焦",

View file

@ -3,8 +3,8 @@
"week": "周",
"month": "月",
"year": "年",
"before": "前",
"after": "后",
"pastDate": "前",
"nextDate": "后",
"listInvalidRefBlocks": "列出引用失效的块",
"listItemDotNumberClickFocus": "列表项圆点/数字单击聚焦",
"listItemDotNumberClickFocusTip": "启用后单击列表项的圆点/数字将进入聚焦",

View file

@ -341,8 +341,8 @@ export const setFilter = async (options: {
</div>
<div class="fn__flex fn__size200 ${options.filter.relativeDate ? "" : "fn__none"}">
<select class="b3-select" data-type="dataDirection">
<option value="-1"${options.filter.relativeDate?.direction === -1 ? " selected" : ""}>${window.siyuan.languages.before}</option>
<option value="1"${options.filter.relativeDate?.direction === 1 ? " selected" : ""}>${window.siyuan.languages.after}</option>
<option value="-1"${options.filter.relativeDate?.direction === -1 ? " selected" : ""}>${window.siyuan.languages.pastDate}</option>
<option value="1"${options.filter.relativeDate?.direction === 1 ? " selected" : ""}>${window.siyuan.languages.nextDate}</option>
<option value="0" data-type="current"${!options.filter.relativeDate?.direction ? " selected" : ""}>${window.siyuan.languages.current}</option>
</select>
<span class="fn__space"></span>