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.
This commit is contained in:
Siddharth Kumar Sah
2026-03-26 16:02:12 +08:00
parent f15102c632
commit 0401900a69
5 changed files with 10 additions and 11 deletions
@@ -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"
}`}
>
<div>{opt.label}</div>
<div className="text-[10px] opacity-60 mt-0.5">{opt.hint}</div>
{opt.label}
</button>
))}
</div>