feat(i18n): 21-language pipeline, landing/docs/API wiring, landing+API translations

Shared Claude Code translation pipeline (scripts/i18n, no API key) plus Astro/VitePress/Scalar i18n wiring. Landing and API reference translated into all 20 languages; docs i18n wiring + English source anchors. The translated docs markdown (apps/docs/<locale>/**, 3,620 files) follows in a companion PR because it exceeds GitHub's per-PR CI file limit.
This commit is contained in:
SnapOtter
2026-07-11 13:01:55 +08:00
committed by GitHub
parent 2e91368816
commit 00b651c9f8
353 changed files with 564607 additions and 2594 deletions
+9 -9
View File
@@ -2,11 +2,11 @@
description: AI-powered noise and grain removal with multi-tier quality options.
---
# Noise Removal
# Noise Removal {#noise-removal}
AI-powered noise and grain removal with multi-tier quality options, using the Python sidecar (SCUNet model).
## API Endpoint
## API Endpoint {#api-endpoint}
`POST /api/v1/tools/image/noise-removal`
@@ -14,7 +14,7 @@ AI-powered noise and grain removal with multi-tier quality options, using the Py
**Model bundle:** `upscale-enhance` (5-6 GB)
## Parameters
## Parameters {#parameters}
| Parameter | Type | Required | Default | Description |
|-----------|------|----------|---------|-------------|
@@ -26,7 +26,7 @@ AI-powered noise and grain removal with multi-tier quality options, using the Py
| format | string | No | `"original"` | Output format: `original`, `png`, `jpeg`, `webp`, `avif`, `jxl` |
| quality | number | No | `90` | Output encoding quality (1-100) |
## Example Request
## Example Request {#example-request}
```bash
curl -X POST http://localhost:1349/api/v1/tools/image/noise-removal \
@@ -34,9 +34,9 @@ curl -X POST http://localhost:1349/api/v1/tools/image/noise-removal \
-F 'settings={"tier":"quality","strength":60,"detailPreservation":70,"colorNoise":40}'
```
## Response
## Response {#response}
### Initial Response (202 Accepted)
### Initial Response (202 Accepted) {#initial-response-202-accepted}
```json
{
@@ -45,14 +45,14 @@ curl -X POST http://localhost:1349/api/v1/tools/image/noise-removal \
}
```
### Progress (SSE at `/api/v1/jobs/{jobId}/progress`)
### Progress (SSE at `/api/v1/jobs/{jobId}/progress`) {#progress-sse-at-api-v1-jobs-jobid-progress}
```
event: progress
data: {"phase":"processing","stage":"Denoising...","percent":65}
```
### Final Result (via SSE)
### Final Result (via SSE) {#final-result-via-sse}
```json
{
@@ -67,7 +67,7 @@ data: {"phase":"processing","stage":"Denoising...","percent":65}
}
```
## Notes
## Notes {#notes}
- Requires the `upscale-enhance` model bundle to be installed (5-6 GB).
- Quality tiers trade speed for quality: `quick` is fastest with basic denoising, `maximum` uses the most thorough multi-pass approach.