Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
1 change: 1 addition & 0 deletions 17/umbraco-cms/reference/configuration/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ A complete list of all the configuration sections included in Umbraco, by defaul
* [Connection strings settings](connectionstringssettings.md)
* [Content settings](contentsettings.md)
* [Debug settings](debugsettings.md)
* [Dictionary settings](dictionarysettings.md)
* [Distributed jobs settings](distributedjobssettings.md)
* [Examine settings](examinesettings.md)
* [Exception filter settings](exceptionfiltersettings.md)
Expand Down
42 changes: 42 additions & 0 deletions 17/umbraco-cms/reference/configuration/dictionarysettings.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
---
description: "Information on the dictionary settings section."
---

# Dictionary Settings

Dictionary settings allow you to configure how dictionary items are searched in the Umbraco backoffice.

The following snippet contains all the available options with their default values:

```json
{
"Umbraco": {
"CMS": {
"Dictionary": {
"UseDictionaryValueSearch": false
}
}
}
}
```

## UseDictionaryValueSearch

Key: `UseDictionaryValueSearch`

Type: `bool` (default: `false`)

Enables searching dictionary items by their **translation values** in addition to **keys** in the backoffice.

When set to `false` (default), only dictionary keys are searched using prefix matching.

When set to `true`, both dictionary keys and translation values are searched. Keys use prefix matching while values use substring matching, allowing editors to find dictionary items by their translated content.

{% hint style="info" %}
This feature is **disabled by default** to preserve backward compatibility and performance. It is recommended to enable the setting only when your editors need to search by translation values.
{% endhint %}

## Related Links

- [Dictionary Items](../../fundamentals/data/dictionary-items.md)
- [Creating a Multilingual Site](../../tutorials/multilanguage-setup.md)