@focus-reactive/payload-plugin-translator 0.7.0 → 0.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -370,6 +370,9 @@ import type {
|
|
|
370
370
|
FieldTranslationConfig,
|
|
371
371
|
AccessGuard,
|
|
372
372
|
AccessGuardRequest,
|
|
373
|
+
TranslationTask, // descriptor passed to the lifecycle callbacks — Since v0.7.0
|
|
374
|
+
TranslationLifecycleCallbacks, // shape of the `lifecycle` config — Since v0.7.0
|
|
375
|
+
TranslationProvenanceRecord, // a stored provenance row — Since v0.7.0
|
|
373
376
|
} from "@focus-reactive/payload-plugin-translator";
|
|
374
377
|
```
|
|
375
378
|
|
|
@@ -379,9 +382,11 @@ Every public API is annotated with `@since x.y.z` in its JSDoc, and features car
|
|
|
379
382
|
|
|
380
383
|
## Roadmap
|
|
381
384
|
|
|
385
|
+
Planned features building on the v0.7.0 provenance foundation:
|
|
386
|
+
|
|
387
|
+
- **Stale-translation detection** — surface which target locales are out of sync with their source, using the recorded provenance fingerprint.
|
|
382
388
|
- **Global translation dashboard** — translate across all collections from one place, with project-wide progress.
|
|
383
|
-
- **
|
|
384
|
-
- **Auto-translate on source change** — trigger translation automatically when default-locale content changes.
|
|
389
|
+
- **Auto-translate on source change** — retranslate automatically when default-locale content changes.
|
|
385
390
|
|
|
386
391
|
## License
|
|
387
392
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@focus-reactive/payload-plugin-translator",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.1",
|
|
4
4
|
"description": "Translation plugin for Payload CMS 3.x. Automatically translate your localized content using any translation provider.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|