From 0401900a69b860233a5a08b1e654c75358958e09 Mon Sep 17 00:00:00 2001 From: Siddharth Kumar Sah Date: Thu, 26 Mar 2026 16:02:12 +0800 Subject: [PATCH] chore(ui): remove technical jargon and update tool count Remove approximate processing times from remove-bg quality options. Update tool count from 37 to 33 across README, settings dialog, login page, and i18n strings to reflect the accurate count. --- README.md | 4 ++-- apps/web/src/components/settings/settings-dialog.tsx | 2 +- apps/web/src/components/tools/remove-bg-settings.tsx | 11 +++++------ apps/web/src/pages/login-page.tsx | 2 +- packages/shared/src/i18n/en.ts | 2 +- 5 files changed, 10 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 64551020..ba32615c 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ --- -Self-hosted image processing with 37+ tools in a single Docker container. Resize, compress, convert, watermark, remove backgrounds, run OCR, and more. Nothing leaves your server. +Self-hosted image processing with 33+ tools in a single Docker container. Resize, compress, convert, watermark, remove backgrounds, run OCR, and more. Nothing leaves your server. Inspired by [Stirling-PDF](https://github.com/Stirling-Tools/Stirling-PDF), built for images. @@ -29,7 +29,7 @@ Open [http://localhost:1349](http://localhost:1349). Default login is `admin` / ## What it does -- **37+ image tools** in one place — resize, crop, rotate, compress, convert, watermark, color adjustments, and the rest. +- **33+ image tools** in one place — resize, crop, rotate, compress, convert, watermark, color adjustments, and the rest. - **AI tools that run locally** — background removal (rembg), upscaling (Real-ESRGAN), OCR (PaddleOCR), face blurring (MediaPipe), object erasing (LaMa). No external API calls. diff --git a/apps/web/src/components/settings/settings-dialog.tsx b/apps/web/src/components/settings/settings-dialog.tsx index f243cad4..c9498295 100644 --- a/apps/web/src/components/settings/settings-dialog.tsx +++ b/apps/web/src/components/settings/settings-dialog.tsx @@ -1734,7 +1734,7 @@ function AboutSection() {

- A self-hosted, privacy-first image processing suite with 37+ tools. Resize, compress, + A self-hosted, privacy-first image processing suite with 33+ tools. Resize, compress, convert, watermark, and automate your image workflows without sending data to the cloud.

diff --git a/apps/web/src/components/tools/remove-bg-settings.tsx b/apps/web/src/components/tools/remove-bg-settings.tsx index 3c282695..c55e177f 100644 --- a/apps/web/src/components/tools/remove-bg-settings.tsx +++ b/apps/web/src/components/tools/remove-bg-settings.tsx @@ -26,10 +26,10 @@ const SUBJECT_OPTIONS: { value: SubjectType; label: string; icon: typeof User }[ { value: "general", label: "General", icon: ImageIcon }, ]; -const QUALITY_OPTIONS: { value: Quality; label: string; hint: string }[] = [ - { value: "fast", label: "Fast", hint: "~2s" }, - { value: "balanced", label: "Balanced", hint: "~15s" }, - { value: "best", label: "Best", hint: "~60s" }, +const QUALITY_OPTIONS: { value: Quality; label: string }[] = [ + { value: "fast", label: "Fast" }, + { value: "balanced", label: "Balanced" }, + { value: "best", label: "Best" }, ]; const BG_PRESETS = [ @@ -119,8 +119,7 @@ export function RemoveBgSettings() { : "border-border text-muted-foreground hover:border-primary/50" }`} > -
{opt.label}
-
{opt.hint}
+ {opt.label} ))}
diff --git a/apps/web/src/pages/login-page.tsx b/apps/web/src/pages/login-page.tsx index 0599a20b..730e29d1 100644 --- a/apps/web/src/pages/login-page.tsx +++ b/apps/web/src/pages/login-page.tsx @@ -90,7 +90,7 @@ export function LoginPage() {

Your one-stop-shop for all your image needs.

A privacy-first image suite that lets you resize, compress, convert, and process images - with 30+ powerful tools. + with 33+ powerful tools.

diff --git a/packages/shared/src/i18n/en.ts b/packages/shared/src/i18n/en.ts index b2e9f3ed..904bd8a3 100644 --- a/packages/shared/src/i18n/en.ts +++ b/packages/shared/src/i18n/en.ts @@ -123,7 +123,7 @@ export const en = { regenerateKey: "Regenerate", copyKey: "Copy Key", aboutDescription: - "Stirling Image is a self-hosted, privacy-first image processing suite with 37+ tools.", + "Stirling Image is a self-hosted, privacy-first image processing suite with 33+ tools.", aboutLinks: "Links", github: "GitHub", documentation: "Documentation",