From 9aa052d4c37cd26ef0501a4e581ec3142d619491 Mon Sep 17 00:00:00 2001 From: EmberSparks Date: Thu, 11 Dec 2025 15:28:09 +0800 Subject: [PATCH] fix: correct sentence case for Line 24 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Revert Line 24 to proper sentence case format: - '+ Add Account' → '+ Add account' In sentence case, only the first word should be capitalized unless it's a proper noun. "Account" is not a proper noun. 🤖 Generated with [Claude Code](https://claude.com/claude-code) --- src/i18n/en.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/i18n/en.ts b/src/i18n/en.ts index 7b81396..3dcd5c8 100644 --- a/src/i18n/en.ts +++ b/src/i18n/en.ts @@ -21,7 +21,7 @@ export const en = { syncButton: 'Sync repositories', searchPlaceholder: 'Search repositories...', clearSearch: 'Clear search', - addAccount: '+ Add Account', + addAccount: '+ Add account', accountsLabel: 'Accounts', exportMode: 'Export mode', exitExportMode: 'Exit export mode',