Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions translations/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,30 @@ The resulting translation keys and messages that are used is
}
}
```

### Form label translations

Forms provide translations that are used when displaying form elements. They are retrieved dynamically by calling
the `translations/${locale}` endpoint. From the json result of this call the data in the `forms.fields` key is merged into
the translations under the `pydanticForms.backendTranslations` key. These translations are referenced when rendering form input
elements.

The final translation dictionary will look like this

```
{
metadata: {
product: {
name: 'A better name',
description: 'Description'
}
}
pydanticForms: {
...
backendTranslations: {
... `form.fields` result from `translations/${locale}` call

}
}
}
```
Loading