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
13 changes: 12 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -618,7 +618,18 @@ The value of each option can be a reference to another field or preset's name. F

##### `stringsCrossReference`

An optional property to reference to the strings of another field, indicated by using that field's name contained in brackets, like `{field}`. This is for example useful when there are multiple variants of fields for the same tag, which should all use the same strings.
An optional property to reference to the strings of another field, indicated by using that field's name contained in brackets, like `{field}`. This is for example useful when there are multiple variants of fields for the same tag, which should all use the same strings. For example:

```json
"stringsCrossReference": "{sport}",
"options": [
"ice_skating",
"ice_hockey",
"curling"
]
```

This would inherit all translations from the `gender` field but keep only the defined options.

##### `autoSuggestions`

Expand Down