This commit is contained in:
Liang Ding 2022-09-03 23:54:26 +08:00
parent fcfbab3652
commit 9bc71a9f2c
No known key found for this signature in database
GPG key ID: 136F30F901A2231D
15 changed files with 49 additions and 38 deletions

View file

@ -95,6 +95,7 @@
"netImg2LocalAsset": "Convert network images to local images",
"releaseDate": "Release Date",
"pkgSize": "Package size",
"installSize": "Install Size",
"optimizeTypography": "Optimize typography",
"dragPosition": "Drag image to reposition",
"exportPDF0": "Page Size",

View file

@ -95,6 +95,7 @@
"netImg2LocalAsset": "Convertir imágenes de red en imágenes locales",
"releaseDate": "Fecha de lanzamiento",
"pkgSize": "Tamaño del paquete",
"installSize": "Tamaño de instalación",
"optimizeTypography": "Insertar un espacio entre el chino y el occidental",
"dragPosition": "Arrastrar imagen para reposicionarla",
"exportPDF0": "Tamaño de la página",

View file

@ -95,6 +95,7 @@
"netImg2LocalAsset": "Convertir des images réseau en images locales",
"releaseDate": "Date de sortie",
"pkgSize": "Taille du package",
"installSize": "Taille d'installation",
"optimizeTypography": "Optimiser la typographie",
"dragPosition": "Faites glisser l'image pour la repositionner",
"exportPDF0": "Taille de la page",

View file

@ -95,6 +95,7 @@
"netImg2LocalAsset": "網絡圖片轉換為本地圖片",
"releaseDate": "發布日期",
"pkgSize": "包大小",
"installSize": "安裝大小",
"optimizeTypography": "優化排版",
"dragPosition": "拖動圖像重新定位",
"exportPDF0": "頁面大小",

View file

@ -95,6 +95,7 @@
"netImg2LocalAsset": "网络图片转换为本地图片",
"releaseDate": "发布日期",
"pkgSize": "包大小",
"installSize": "安装大小",
"optimizeTypography": "优化排版",
"dragPosition": "上下拖动图片以调整位置",
"exportPDF0": "页面大小",

View file

@ -266,7 +266,7 @@ export const bazaar = {
<div class="fn__hr"></div>
<div class="ft__on-surface ft__smaller" style="line-height: 20px;">${window.siyuan.languages.releaseDate}<br>${data.hUpdated}</div>
<div class="fn__hr"></div>
<div class="ft__on-surface ft__smaller" style="line-height: 20px;">${window.siyuan.languages.pkgSize}<br>${data.hSize}</div>
<div class="ft__on-surface ft__smaller" style="line-height: 20px;">${isDownloaded ? window.siyuan.languages.installSize : window.siyuan.languages.pkgSize}<br>${isDownloaded ? data.hInstallSize : data.hSize}</div>
<div class="fn__hr--b"></div>
<div class="fn__hr--b"></div>
<div class="${(data.installed || isDownloaded) ? "fn__none" : ""}" data-type="${data.modes?.toString()}">

View file

@ -495,5 +495,6 @@ declare interface IBazaarItem {
version: string
modes: string[]
hSize: string
hInstallSize: string
hUpdated: string
}