Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

874 development flag #55

Merged
merged 1 commit into from
Nov 12, 2024
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