You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+17Lines changed: 17 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,23 @@
3
3
**Wagtail Translate** adds machine translations to your Wagtail site, with built-in support for [DeepL](https://www.deepl.com) and the flexibility to integrate other translation services.
4
4
It automatically detects when a page is copied to a new locale and initiates the translation process.
5
5
6
+
```mermaid
7
+
sequenceDiagram
8
+
actor User
9
+
box Your web-application
10
+
participant Wagtail
11
+
participant Wagtail Translate
12
+
end
13
+
participant Translation Service
14
+
15
+
User->>Wagtail: Translate page
16
+
Wagtail->>Wagtail Translate: Fire 'copy for translation done' signal
Translation Service->>Wagtail Translate: Return translated text
19
+
Wagtail Translate->>Wagtail: Save revision
20
+
User->>Wagtail: Publish page
21
+
```
22
+
6
23
[Wagtail Localize](https://wagtail-localize.org/) and [Wagtail Simple Translation](https://docs.wagtail.org/en/stable/reference/contrib/simple_translation.html) are the go-to solutions for multi-language Wagtail projects.
7
24
Wagtail Localize offers advanced features that may be excessive for many projects, while Wagtail Simple Translation only copies pages to new locales, requiring manual translation.
0 commit comments