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: Repair scratches, tears, and damage on old photos with an AI pipeline for restoration, face enhancement, and color.
---
# Photo Restoration
# Photo Restoration {#photo-restoration}
Fix scratches, tears, and damage on old photos using a multi-step AI pipeline. Combines scratch repair, face enhancement, denoising, and optional colorization.
## API Endpoint
## API Endpoint {#api-endpoint}
`POST /api/v1/tools/image/restore-photo`
@@ -14,7 +14,7 @@ Fix scratches, tears, and damage on old photos using a multi-step AI pipeline. C
**Model bundle:** `photo-restoration` (4-5 GB)
## Parameters
## Parameters {#parameters}
| Parameter | Type | Required | Default | Description |
|-----------|------|----------|---------|-------------|
@@ -27,7 +27,7 @@ Fix scratches, tears, and damage on old photos using a multi-step AI pipeline. C
| colorize | boolean | No | `false` | Colorize the restored photo (for grayscale images) |
| colorizeStrength | number | No | `85` | Colorization intensity (0-100) |
## Example Request
## Example Request {#example-request}
```bash
curl -X POST http://localhost:1349/api/v1/tools/image/restore-photo \
@@ -35,9 +35,9 @@ curl -X POST http://localhost:1349/api/v1/tools/image/restore-photo \
-F 'settings={"scratchRemoval":true,"faceEnhancement":true,"fidelity":0.6,"colorize":true}'
```
## Response
## Response {#response}
### Initial Response (202 Accepted)
### Initial Response (202 Accepted) {#initial-response-202-accepted}
```json
{
@@ -46,7 +46,7 @@ curl -X POST http://localhost:1349/api/v1/tools/image/restore-photo \
}
```
### 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
@@ -58,7 +58,7 @@ event: progress
data: {"phase":"processing","stage":"Enhancing faces...","percent":60}
```
### Final Result (via SSE)
### Final Result (via SSE) {#final-result-via-sse}
```json
{
@@ -81,7 +81,7 @@ data: {"phase":"processing","stage":"Enhancing faces...","percent":60}
}
```
## Notes
## Notes {#notes}
- Requires the `photo-restoration` model bundle to be installed (4-5 GB).
- The pipeline runs multiple AI steps sequentially: scratch repair, face enhancement (GFPGAN), denoising, and optionally colorization.