From bd829ba1c38a2269ad8c20f9a66f2f313ef99b3c Mon Sep 17 00:00:00 2001 From: nntrivi2001 Date: Thu, 6 Aug 2026 16:14:55 +0700 Subject: [PATCH] fix(lanes): capitalize Vietnamese action-button labels, gitignore .ccam/ MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit action.start/stop/clear/forget/purge/remove/reset in lanes.json (vi) were lowercase (bắt đầu, dừng...) while every other button label in the app capitalizes its first letter. Also gitignore /.ccam/ - the local lane profile that appears in a repo's own working tree only when that repo is adopted as its own lane (machine-specific runtime config, not source). --- .gitignore | 4 ++++ client/src/i18n/locales/vi/lanes.json | 14 +++++++------- 2 files changed, 11 insertions(+), 7 deletions(-) diff --git a/.gitignore b/.gitignore index bfad93c..cb57437 100644 --- a/.gitignore +++ b/.gitignore @@ -18,6 +18,10 @@ desktop/assets/icon.iconset/ *.db-wal *.db-shm +# Local lane profile - only present when this repo itself is adopted as a +# lane (`ccam lanes add --cwd`); machine-specific runtime config, not source. +/.ccam/ + # Environment variables .env .env.local diff --git a/client/src/i18n/locales/vi/lanes.json b/client/src/i18n/locales/vi/lanes.json index cc48a0d..2c3ec09 100644 --- a/client/src/i18n/locales/vi/lanes.json +++ b/client/src/i18n/locales/vi/lanes.json @@ -1,11 +1,11 @@ { - "action.clear": "dọn trạng thái", - "action.forget": "xóa làn", - "action.purge": "xóa lịch sử", - "action.remove": "xóa làn + worktree", - "action.reset": "đặt lại worktree", - "action.start": "bắt đầu", - "action.stop": "dừng", + "action.clear": "Dọn trạng thái", + "action.forget": "Xóa làn", + "action.purge": "Xóa lịch sử", + "action.remove": "Xóa làn + worktree", + "action.reset": "Đặt lại worktree", + "action.start": "Bắt đầu", + "action.stop": "Dừng", "actionError": "Thao tác làn đường thất bại: {{message}}", "actionErrorUnknown": "Lỗi không xác định", "actions.agentsInstall": "Cài agent",