From 567a9ca5b32a2fcc677cc5a01a527750940b32be Mon Sep 17 00:00:00 2001 From: Naheel Muhammed Date: Wed, 25 Mar 2026 10:06:21 +0530 Subject: [PATCH] Remove multilingual support details from README Removed the multilingual support section and its examples from the README. --- README.md | 38 -------------------------------------- 1 file changed, 38 deletions(-) diff --git a/README.md b/README.md index ab45925..d488c25 100644 --- a/README.md +++ b/README.md @@ -174,7 +174,6 @@ Exit codes (useful for CI): This follows Unix conventions where `0` means success and non-zero means failure. If you prefer success-on-detection in CI, invert the check in your pipeline logic (for example, treat exit code `1` from `analyze ` as a pass condition). ---- --- ### 4️⃣ Multilingual Support @@ -209,43 +208,6 @@ errlens run app.js --lang ja > 💡 **Tip:** Combine with `--json` for multilingual CI/CD pipeline output: > ```bash > errlens analyze "is not a function" --lang fr --json ---- ---- - -### 4️⃣ Multilingual Support - -ErrLens supports error explanations in multiple languages using the `--lang` flag. - -**Default behavior:** English (`en`) is used when `--lang` is not specified. -```bash -# Run a file and get explanation in Hindi -errlens run app.js --lang hi - -# Analyze an error string in Spanish -errlens analyze "Cannot read properties of undefined" --lang es - -# Run a file and get explanation in Japanese -errlens run app.js --lang ja -``` - -#### 🌍 Supported Languages - -| Language | Code | -|------------|------| -| English | `en` | -| Hindi | `hi` | -| Spanish | `es` | -| French | `fr` | -| German | `de` | -| Chinese | `zh` | -| Japanese | `ja` | -| Portuguese | `pt` | - -> 💡 **Tip:** Combine with `--json` for multilingual CI/CD pipeline output: -> ```bash -> errlens analyze "is not a function" --lang fr --json -> ``` - --- ## 🧠 System Architecture