From ad3b46f185b726399bb38b42a6ab5afe6f63fa43 Mon Sep 17 00:00:00 2001 From: dzq Date: Wed, 12 Nov 2025 08:39:16 +0800 Subject: [PATCH] =?UTF-8?q?refactor(project-structure):=20=E9=87=8D?= =?UTF-8?q?=E6=9E=84=E9=A1=B9=E7=9B=AE=E7=9B=AE=E5=BD=95=E7=BB=93=E6=9E=84?= =?UTF-8?q?=E5=B9=B6=E6=9B=B4=E6=96=B0=E6=96=87=E6=A1=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 将术语表移动到 references/glossary/ 目录并更新相关文档引用 添加 .gitignore 文件以排除常见不需要版本控制的文件 --- .gitignore | 34 +++++++++++++++++++ CLAUDE.md | 7 ++-- .../glossary/glossary.md | 5 ++- 3 files changed, 42 insertions(+), 4 deletions(-) create mode 100644 .gitignore rename glossary.md => references/glossary/glossary.md (90%) diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2f099f7 --- /dev/null +++ b/.gitignore @@ -0,0 +1,34 @@ +# 编辑器和IDE +# ============ +.vscode/ +.idea/ +*.swp +*.swo +*~ +.vs/ +*.suo +*.user +*.tmp + +# 日志文件 +# ======== +*.log +logs/ + +# 依赖目录(如使用工具管理依赖) +# ============================== +node_modules/ +vendor/ + +# 缓存文件 +# ======== +.cache/ +*.cache + +# 编译输出(如适用) +# ================ +dist/ +build/ +out/ + +.claude/ \ No newline at end of file diff --git a/CLAUDE.md b/CLAUDE.md index 091b0de..17c6d8e 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -25,7 +25,6 @@ translation/ ├── CLAUDE.md # 本文件 ├── README.md # 项目说明 -├── glossary.md # 术语表 ├── source/ # 原文文件 │ ├── documents/ # 文档原文 │ └── assets/ # 图片、表格等资源 @@ -33,6 +32,8 @@ translation/ │ ├── documents/ # 翻译后的文档 │ └── assets/ # 翻译后的资源 ├── references/ # 参考资料 +│ ├── glossary/ # 术语表目录 +│ │ └── glossary.md # 术语表 │ ├── style-guide.md # 风格指南 │ └── resources/ # 翻译参考资料 └── reviews/ # 审校记录 @@ -110,7 +111,7 @@ translation/ 2. **术语查询** ``` - 请在 glossary.md 中查找术语 "[术语]" 的定义 + 请在 references/glossary/glossary.md 中查找术语 "[术语]" 的定义 ``` 3. **一致性检查** @@ -166,7 +167,7 @@ translation/ ## 参考资源 ### 工具推荐 -- 术语管理:维护 `glossary.md` +- 术语管理:维护 `references/glossary/glossary.md` - 格式检查:保持 Markdown 语法正确 - 翻译记忆:记录常用短语和句式 diff --git a/glossary.md b/references/glossary/glossary.md similarity index 90% rename from glossary.md rename to references/glossary/glossary.md index 797fb10..df368c0 100644 --- a/glossary.md +++ b/references/glossary/glossary.md @@ -2,6 +2,8 @@ 本文档记录项目中使用的专业术语及其翻译对照。 +**文件路径**:`references/glossary/glossary.md` + ## 使用说明 - **原文**: 源语言中的术语 @@ -37,4 +39,5 @@ ## 更新记录 -- v1.0 (2025-11-11): 创建初始术语表 \ No newline at end of file +- v1.0 (2025-11-11): 创建初始术语表 +- v1.1 (2025-11-12): 将术语表移动到 `references/glossary/` 目录 \ No newline at end of file