From 053ee6686f4b1a66efc95691e8e32ca2e94e1dfe Mon Sep 17 00:00:00 2001 From: Julian Freeman Date: Thu, 26 Feb 2026 11:58:35 -0400 Subject: [PATCH] upgrade html viewer --- Report_Viewer.html | 164 ++++++++++++++++++++++++++------------------- languages.js | 18 +++++ 2 files changed, 114 insertions(+), 68 deletions(-) create mode 100644 languages.js diff --git a/Report_Viewer.html b/Report_Viewer.html index e023514..d357e01 100644 --- a/Report_Viewer.html +++ b/Report_Viewer.html @@ -2,72 +2,79 @@ - Rclone 校验报告在线查看器 + Rclone 报告查看器 + + +
+ +
+
-

📂 拖入生成的 report.txt 文件到这里

- 或者 点击此处手动选择 +

+
-
0一致 (Match)
-
0损坏 (Mismatch)
-
0缺失 (Missing)
-
0多余 (Extra)
+
0
+
0
+
0
+
0
- - - + + +
@@ -77,35 +84,62 @@
\ No newline at end of file diff --git a/languages.js b/languages.js new file mode 100644 index 0000000..d3c3016 --- /dev/null +++ b/languages.js @@ -0,0 +1,18 @@ +// languages.js +window.externalI18n = { + "es": { + "name": "Español", + "dropHint": "📂 Arrastre el archivo aquí", + "clickHint": "o haga clic para seleccionar manualmente", + "labelMatch": "Coincidencia (Match)", + "labelMismatch": "Error (Mismatch)", + "labelMissing": "Faltante (Missing)", + "labelExtra": "Extra", + "btnExpand": "Expandir todo", + "btnCollapse": "Contraer todo", + "modeFull": "Vista: Todos los archivos", + "modeError": "Vista: Solo errores", + "loadSuccess": "✅ Informe cargado: ", + "files": " archivos" + } +}; \ No newline at end of file