Skip to content

Commit

Permalink
874: Remove empty line
Browse files Browse the repository at this point in the history
  • Loading branch information
Ruben van Leeuwen committed Oct 29, 2024
1 parent aa07791 commit 78378a6
Showing 1 changed file with 27 additions and 0 deletions.
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
}
}
}
```

0 comments on commit 78378a6

Please sign in to comment.