diff --git a/index.html b/index.html
index 28c7094..25bc1a7 100644
--- a/index.html
+++ b/index.html
@@ -1,9 +1,9 @@
-
+
- Review Videos
+ 视频审核工具
diff --git a/src-tauri/src/lib.rs b/src-tauri/src/lib.rs
index 2e6af24..14b6a38 100644
--- a/src-tauri/src/lib.rs
+++ b/src-tauri/src/lib.rs
@@ -24,7 +24,7 @@ fn copy_directory(template_path: String, target_path: String, new_folder_name: S
let destination = target_parent.join(&new_folder_name);
if !template.exists() {
- return Err("Template directory does not exist".to_string());
+ return Err("模板目录不存在".to_string());
}
// Remove the check for existing destination to allow merging/overwriting
@@ -155,7 +155,7 @@ fn check_dir_exists(path: String) -> bool {
#[tauri::command]
fn rename_videos(files: Vec, prefix: String, base_name: String) -> Result {
if files.is_empty() {
- return Err("No files provided".to_string());
+ return Err("未提供文件".to_string());
}
// 1. Group files by parent directory to ensure index uniqueness per directory
@@ -244,7 +244,7 @@ fn rename_videos(files: Vec, prefix: String, base_name: String) -> Resul
}
}
- Ok(format!("Successfully renamed {} files.", renamed_count))
+ Ok(format!("成功重命名 {} 个文件。", renamed_count))
}
// --- Check Logic ---
@@ -281,7 +281,7 @@ fn remove_empty_dirs_recursive(path: &Path, deleted_list: &mut Vec) -> s
fn delete_empty_dirs(path: String) -> Result, String> {
let root_path = Path::new(&path);
if !root_path.exists() || !root_path.is_dir() {
- return Err("Path is not a valid directory".to_string());
+ return Err("路径不是有效的目录".to_string());
}
let mut deleted = Vec::new();
@@ -305,7 +305,7 @@ fn delete_empty_dirs(path: String) -> Result, String> {
fn check_file_naming(path: String, prefix: String) -> Result, String> {
let root_path = Path::new(&path);
if !root_path.exists() || !root_path.is_dir() {
- return Err("Path is not a valid directory".to_string());
+ return Err("路径不是有效的目录".to_string());
}
let mut mismatches = Vec::new();
diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json
index 21d3eb2..d12b69d 100644
--- a/src-tauri/tauri.conf.json
+++ b/src-tauri/tauri.conf.json
@@ -12,7 +12,7 @@
"app": {
"windows": [
{
- "title": "review-videos",
+ "title": "视频审核工具",
"width": 1200,
"height": 840
}
diff --git a/src/App.vue b/src/App.vue
index 8038110..04e0dec 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -108,7 +108,7 @@ const loadConfig = async () => {
if (config.working_dir) workingDir.value = config.working_dir;
if (config.template_dir) templateDir.value = config.template_dir;
} catch (e) {
- console.error("Failed to load config:", e);
+ console.error("加载配置失败:", e);
}
}
@@ -121,7 +121,7 @@ const saveConfig = async () => {
}
});
} catch (e) {
- console.error("Failed to save config:", e);
+ console.error("保存配置失败:", e);
}
}
@@ -147,7 +147,7 @@ const loadHistory = async () => {
const history = await invoke>('load_history');
historyMap.value = history || {};
} catch (e) {
- console.error("Failed to load history", e);
+ console.error("加载历史记录失败", e);
}
}
@@ -214,7 +214,7 @@ const handleRename = async () => {
historyMap.value = newMap;
updateHistoryList();
} catch (e) {
- console.error("History save failed", e);
+ console.error("保存历史记录失败", e);
}
}
@@ -602,7 +602,7 @@ watch(currentDir, (newPath) => {
-
+
{{ videoNamePrefix }}
命名