diff --git a/web/src/App.vue b/web/src/App.vue index e2cf4e24..77019da9 100644 --- a/web/src/App.vue +++ b/web/src/App.vue @@ -23,4 +23,23 @@ export default { -moz-osx-font-smoothing: grayscale; color: #2c3e50; } + +.customScrollbar { + &::-webkit-scrollbar { + width: 7px; + height: 7px; + } + + &::-webkit-scrollbar-thumb { + border-radius: 7px; + background-color: rgba(0, 0, 0, 0.3); + cursor: pointer; + } + + &::-webkit-scrollbar-track { + box-shadow: none; + background: transparent; + display: none; + } +} diff --git a/web/src/config/en.js b/web/src/config/en.js index e946bab5..dae1310f 100644 --- a/web/src/config/en.js +++ b/web/src/config/en.js @@ -457,19 +457,20 @@ export const downTypeList = [ name: 'Dedicated file', type: 'smm', icon: 'iconwenjian', - desc: 'Available for import' + desc: + 'SimpleMindMap private format, can be used for re import, and the client can directly edit it' }, { name: 'JSON', type: 'json', icon: 'iconjson', - desc: 'Popular data exchange formats, Available for import' + desc: 'Popular data exchange format that can be used for re importing' }, { name: 'Image', type: 'png', icon: 'iconPNG', - desc: 'Suitable for viewing and sharing' + desc: 'Common image formats, suitable for viewing and sharing' }, { name: 'SVG', @@ -481,19 +482,19 @@ export const downTypeList = [ name: 'PDF', type: 'pdf', icon: 'iconpdf', - desc: 'Suitable for printing' + desc: 'Suitable for viewing, browsing, and printing' }, { name: 'Markdown', type: 'md', icon: 'iconmarkdown', - desc: 'Easy for other software to open' + desc: 'MD text format, easy for other software to open' }, { name: 'XMind', type: 'xmind', icon: 'iconxmind', - desc: 'XMind file' + desc: 'XMind software file' }, { name: 'Txt', @@ -511,7 +512,7 @@ export const downTypeList = [ name: 'Excel', type: 'xlsx', icon: 'iconfile-excel', - desc: 'Excel software format' + desc: 'Table text format, editable with Excel software' } ] @@ -641,4 +642,4 @@ export const alignList = [ name: 'Align right', value: 'right' } -] \ No newline at end of file +] diff --git a/web/src/config/zh.js b/web/src/config/zh.js index 2794eb40..75793ad9 100644 --- a/web/src/config/zh.js +++ b/web/src/config/zh.js @@ -552,19 +552,19 @@ export const downTypeList = [ name: '专有文件', type: 'smm', icon: 'iconwenjian', - desc: '可用于导入' + desc: 'SimpleMindMap私有格式,可用于再次导入,客户端可直接编辑' }, { name: 'JSON', type: 'json', icon: 'iconjson', - desc: '流行的数据交换格式,可用于导入' + desc: '流行的数据交换格式,可用于再次导入' }, { name: '图片', type: 'png', icon: 'iconPNG', - desc: '适合查看分享' + desc: '常用图片格式,适合查看分享' }, { name: 'SVG', @@ -576,19 +576,19 @@ export const downTypeList = [ name: 'PDF', type: 'pdf', icon: 'iconpdf', - desc: '适合打印' + desc: '适合查看浏览和打印' }, { name: 'Markdown', type: 'md', icon: 'iconmarkdown', - desc: '便于其他软件打开' + desc: 'md文本格式,便于其他软件打开' }, { name: 'XMind', type: 'xmind', icon: 'iconxmind', - desc: 'XMind格式' + desc: 'XMind软件格式' }, { name: 'Txt', @@ -606,7 +606,7 @@ export const downTypeList = [ name: 'Excel', type: 'xlsx', icon: 'iconfile-excel', - desc: 'Excel软件格式' + desc: '表格文本形式,可用Excel软件编辑' } ] diff --git a/web/src/config/zhtw.js b/web/src/config/zhtw.js index 342949a0..56dff3d1 100644 --- a/web/src/config/zhtw.js +++ b/web/src/config/zhtw.js @@ -457,61 +457,61 @@ export const downTypeList = [ name: '專用檔案', type: 'smm', icon: 'iconwenjian', - desc: '可用於匯入' + desc: 'SimpleMindMap私有格式,可用于再次導入,客戶端可直接編輯' }, { name: 'JSON', type: 'json', icon: 'iconjson', - desc: '常見的資料交換格式,可用於匯入' + desc: '流行的數據交換格式,可用于再次導入' }, { name: '圖片', type: 'png', icon: 'iconPNG', - desc: '適合檢視與分享' + desc: '常用圖片格式,適合查看分享' }, { name: 'SVG', type: 'svg', icon: 'iconSVG', - desc: '可縮放向量圖形' + desc: '可縮放矢量圖形' }, { name: 'PDF', type: 'pdf', icon: 'iconpdf', - desc: '適合列印' + desc: '適合查看浏覽和打印' }, { name: 'Markdown', type: 'md', icon: 'iconmarkdown', - desc: '方便其他軟體開啟' + desc: 'md文本格式,便于其他軟件打開' }, { name: 'XMind', type: 'xmind', icon: 'iconxmind', - desc: 'XMind 檔案' + desc: 'XMind軟件格式' }, { name: 'Txt', type: 'txt', icon: 'iconTXT', - desc: '純文字檔案' + desc: '純文本文件' }, { name: 'FreeMind', type: 'mm', icon: 'iconfreemind', - desc: 'FreeMind軟體格式' + desc: 'FreeMind軟件格式' }, { name: 'Excel', type: 'xlsx', icon: 'iconfile-excel', - desc: 'Excel軟體格式' + desc: '表格文本形式,可用Excel軟件編輯' } ] diff --git a/web/src/lang/en_us.js b/web/src/lang/en_us.js index 875cfd20..95c7c6bd 100644 --- a/web/src/lang/en_us.js +++ b/web/src/lang/en_us.js @@ -152,11 +152,7 @@ export default { svgFile: 'svg file', pdfFile: 'pdf file', markdownFile: 'markdown file', - tips: 'tips: .smm and .json file can be import', isTransparent: 'Background is transparent', - pngTips: - 'tips: Exporting pictures in rich text mode is time-consuming. It is recommended to export to svg format', - svgTips: 'tips: Exporting pictures in rich text mode is time-consuming', transformingDomToImages: 'Converting nodes: ', notifyTitle: 'Info', notifyMessage: @@ -166,7 +162,9 @@ export default { useMultiPageExport: 'Export multi page', defaultFileName: 'Mind map', addFooterTextPlaceholder: 'For example: From simple-mind-map', - addFooterText: 'Add text at the footer' + addFooterText: 'Add text at the footer', + desc: 'Desc', + options: 'Options' }, fullscreen: { fullscreenShow: 'Full screen show', diff --git a/web/src/lang/zh_cn.js b/web/src/lang/zh_cn.js index fa23e30a..b8e17232 100644 --- a/web/src/lang/zh_cn.js +++ b/web/src/lang/zh_cn.js @@ -77,7 +77,8 @@ export default { enableAutoEnterTextEditWhenKeydown: '键盘输入时自动进入文本编辑', confirm: '确定', cancel: '取消', - changeRichTextTip: '该操作会清空所有历史修改记录,并且修改思维导图数据,是否继续?', + changeRichTextTip: + '该操作会清空所有历史修改记录,并且修改思维导图数据,是否继续?', changeRichTextTip2: '是否切换为富文本模式?', changeRichTextTip3: '是否切换为非富文本模式?', enableDragImport: '是否允许直接拖拽文件到页面进行导入', @@ -150,10 +151,7 @@ export default { svgFile: 'svg文件', pdfFile: 'pdf文件', markdownFile: 'markdown文件', - tips: 'tips:.smm和.json文件可用于导入', isTransparent: '背景是否透明', - pngTips: 'tips:富文本模式导出图片非常耗时,建议导出为svg格式', - svgTips: 'tips:富文本模式导出图片非常耗时', transformingDomToImages: '正在转换节点:', notifyTitle: '消息', notifyMessage: '如果没有触发下载,请检查是否被浏览器拦截了', @@ -162,7 +160,9 @@ export default { useMultiPageExport: '是否多页导出', defaultFileName: '思维导图', addFooterText: '底部添加文字', - addFooterTextPlaceholder: '比如:来自simple-mind-map' + addFooterTextPlaceholder: '比如:来自simple-mind-map', + desc: '说明', + options: '选项' }, fullscreen: { fullscreenShow: '全屏查看', @@ -270,7 +270,7 @@ export default { bottom: '下', left: '左', right: '右', - tag: '标签', + tag: '标签' }, theme: { title: '主题', diff --git a/web/src/lang/zh_tw.js b/web/src/lang/zh_tw.js index db516066..99a578b3 100644 --- a/web/src/lang/zh_tw.js +++ b/web/src/lang/zh_tw.js @@ -152,10 +152,7 @@ export default { svgFile: 'SVG 檔案', pdfFile: 'PDF 檔案', markdownFile: 'Markdown 檔案', - tips: '提示:.smm 和 .json 檔案可以匯入', isTransparent: '背景透明', - pngTips: '提示:在豐富文字模式下匯出圖片非常耗時,建議匯出為 SVG 格式', - svgTips: '提示:在豐富文字模式下匯出圖片非常耗時', transformingDomToImages: '正在轉換節點:', notifyTitle: '訊息', notifyMessage: '如果沒有觸發下載,請檢查是否被瀏覽器封鎖', @@ -164,7 +161,9 @@ export default { useMultiPageExport: '多頁匯出', defaultFileName: '心智圖', addFooterText: '在底部新增文字', - addFooterTextPlaceholder: '例如:來自 simple-mind-map' + addFooterTextPlaceholder: '例如:來自 simple-mind-map', + desc: '說明', + options: '選項' }, fullscreen: { fullscreenShow: '全螢幕檢視', diff --git a/web/src/pages/Edit/components/Export.vue b/web/src/pages/Edit/components/Export.vue index f7994256..512d8e82 100644 --- a/web/src/pages/Edit/components/Export.vue +++ b/web/src/pages/Edit/components/Export.vue @@ -1,16 +1,18 @@