feat: 添加初始项目结构和基础文件
CI - 构建、测试和质量检查 / Rust 代码检查 (push) Has been cancelled
CI - 构建、测试和质量检查 / 单元测试 (push) Has been cancelled
CI - 构建、测试和质量检查 / 代码格式检查 (push) Has been cancelled
CI - 构建、测试和质量检查 / Clippy 代码质量检查 (push) Has been cancelled
CI - 构建、测试和质量检查 / 构建可执行文件 (claude_code_rs, macos-latest, x86_64-apple-darwin) (push) Has been cancelled
CI - 构建、测试和质量检查 / 构建可执行文件 (claude_code_rs, ubuntu-latest, x86_64-unknown-linux-gnu) (push) Has been cancelled
CI - 构建、测试和质量检查 / 构建可执行文件 (claude_code_rs.exe, windows-latest, x86_64-pc-windows-msvc) (push) Has been cancelled
CI - 构建、测试和质量检查 / Rust 代码检查 (push) Has been cancelled
CI - 构建、测试和质量检查 / 单元测试 (push) Has been cancelled
CI - 构建、测试和质量检查 / 代码格式检查 (push) Has been cancelled
CI - 构建、测试和质量检查 / Clippy 代码质量检查 (push) Has been cancelled
CI - 构建、测试和质量检查 / 构建可执行文件 (claude_code_rs, macos-latest, x86_64-apple-darwin) (push) Has been cancelled
CI - 构建、测试和质量检查 / 构建可执行文件 (claude_code_rs, ubuntu-latest, x86_64-unknown-linux-gnu) (push) Has been cancelled
CI - 构建、测试和质量检查 / 构建可执行文件 (claude_code_rs.exe, windows-latest, x86_64-pc-windows-msvc) (push) Has been cancelled
- 添加 Rust GUI 桌面应用程序入口点 - 添加 TypeScript/JavaScript 项目基础结构文件 - 包含组件、工具、命令、服务和工具定义 - 添加配置文件如 .gitignore、.gitattributes 和 LICENSE - 包含图片资源和演示文件 - 为各种功能模块添加占位符和类型定义
This commit is contained in:
@@ -0,0 +1,53 @@
|
||||
# English locale for Claude Code
|
||||
|
||||
app-name = Claude Code
|
||||
app-description = AI-powered coding assistant
|
||||
app-version = Version { $version }
|
||||
|
||||
menu-file = File
|
||||
menu-edit = Edit
|
||||
menu-view = View
|
||||
menu-help = Help
|
||||
|
||||
action-new = New
|
||||
action-open = Open
|
||||
action-save = Save
|
||||
action-save-as = Save As
|
||||
action-exit = Exit
|
||||
|
||||
dialog-confirm = Are you sure?
|
||||
dialog-yes = Yes
|
||||
dialog-no = No
|
||||
dialog-cancel = Cancel
|
||||
dialog-ok = OK
|
||||
|
||||
error-generic = An error occurred
|
||||
error-not-found = Not found
|
||||
error-permission-denied = Permission denied
|
||||
|
||||
status-ready = Ready
|
||||
status-loading = Loading...
|
||||
status-saving = Saving...
|
||||
status-done = Done
|
||||
|
||||
welcome-message = Welcome to Claude Code!
|
||||
welcome-user = Welcome, { $name }!
|
||||
|
||||
plugin-install = Install
|
||||
plugin-uninstall = Uninstall
|
||||
plugin-update = Update
|
||||
plugin-installed = Installed
|
||||
plugin-not-installed = Not installed
|
||||
|
||||
settings-title = Settings
|
||||
settings-language = Language
|
||||
settings-theme = Theme
|
||||
settings-save = Save Settings
|
||||
|
||||
chat-send = Send
|
||||
chat-placeholder = Type your message...
|
||||
chat-thinking = Thinking...
|
||||
|
||||
file-reading = Reading file...
|
||||
file-writing = Writing file...
|
||||
file-saved = File saved
|
||||
@@ -0,0 +1,53 @@
|
||||
# Chinese locale for Claude Code
|
||||
|
||||
app-name = Claude Code
|
||||
app-description = AI驱动的编程助手
|
||||
app-version = 版本 { $version }
|
||||
|
||||
menu-file = 文件
|
||||
menu-edit = 编辑
|
||||
menu-view = 视图
|
||||
menu-help = 帮助
|
||||
|
||||
action-new = 新建
|
||||
action-open = 打开
|
||||
action-save = 保存
|
||||
action-save-as = 另存为
|
||||
action-exit = 退出
|
||||
|
||||
dialog-confirm = 您确定吗?
|
||||
dialog-yes = 是
|
||||
dialog-no = 否
|
||||
dialog-cancel = 取消
|
||||
dialog-ok = 确定
|
||||
|
||||
error-generic = 发生错误
|
||||
error-not-found = 未找到
|
||||
error-permission-denied = 权限被拒绝
|
||||
|
||||
status-ready = 就绪
|
||||
status-loading = 加载中...
|
||||
status-saving = 保存中...
|
||||
status-done = 完成
|
||||
|
||||
welcome-message = 欢迎使用 Claude Code!
|
||||
welcome-user = 欢迎,{ $name }!
|
||||
|
||||
plugin-install = 安装
|
||||
plugin-uninstall = 卸载
|
||||
plugin-update = 更新
|
||||
plugin-installed = 已安装
|
||||
plugin-not-installed = 未安装
|
||||
|
||||
settings-title = 设置
|
||||
settings-language = 语言
|
||||
settings-theme = 主题
|
||||
settings-save = 保存设置
|
||||
|
||||
chat-send = 发送
|
||||
chat-placeholder = 输入您的消息...
|
||||
chat-thinking = 思考中...
|
||||
|
||||
file-reading = 读取文件中...
|
||||
file-writing = 写入文件中...
|
||||
file-saved = 文件已保存
|
||||
Reference in New Issue
Block a user