From 7d006ba2eedc88d355e8528a0c0323e9df06df54 Mon Sep 17 00:00:00 2001 From: Hannes Rudolph Date: Wed, 3 Sep 2025 15:56:06 -0600 Subject: [PATCH] chore(i18n): sentence case error titles ('File not found', 'File already exists') --- src/i18n/locales/en/tools.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/i18n/locales/en/tools.json b/src/i18n/locales/en/tools.json index 2d44601427..61a8af8a9a 100644 --- a/src/i18n/locales/en/tools.json +++ b/src/i18n/locales/en/tools.json @@ -16,7 +16,7 @@ } }, "errors": { - "fileNotFound": "File Not Found", + "fileNotFound": "File not found", "parseError": "Parse Error", "commandTimeout": "Command Timeout", "permissionDenied": "Permission Denied", @@ -27,7 +27,7 @@ "configurationError": "Configuration Error", "authenticationFailed": "Authentication Failed", "invalidLineNumber": "Invalid Line Number", - "fileAlreadyExists": "File Already Exists", + "fileAlreadyExists": "File already exists", "directoryNotFound": "Directory Not Found", "invalidPath": "Invalid Path", "readError": "Read Error",