2023-07-26 10:06:20 +00:00
A `metadata.toml` , which uses [toml ](https://toml.io ) format, can be used to customize or override some properties of a certain dictionary. It is also used in [auto grouping by metadata ](manage_groups.md )
2023-05-20 14:33:20 +00:00
2023-07-26 10:06:20 +00:00
The `metadata.toml` should be placed on each dictionary's root folder (beside dictionary files) like
2023-05-20 14:33:20 +00:00
```
.
├── Cambridge
2023-07-26 10:06:20 +00:00
│ ├── metadata.toml < here
2023-05-20 14:33:20 +00:00
│ ├── Cambridge.idx
│ ├── Cambridge.info
│ ├── Cambridge.syn
│ └── Cambridge.dict.dz
└── Collins
2023-07-26 10:06:20 +00:00
├── metadata.toml < here
2023-05-20 14:33:20 +00:00
├── res.zip
2023-07-26 10:06:20 +00:00
└── Collins.dsl
```
## Override display name
2023-05-20 14:33:20 +00:00
2023-07-26 10:06:20 +00:00
Some dictionary formats' display is embedded inside the dictionary, which cannot be easily changed, but you can add the following to override it.
```toml
[metadata]
name = "New Name"
2023-05-20 14:33:20 +00:00
```
2023-07-26 10:06:20 +00:00
This `New Name` will be appeared as the dictionary name.
## Disable full-text search
2023-07-26 02:03:20 +00:00
```toml
fts=false
[metadata]
name="New Name"
```
2023-07-26 09:58:11 +00:00
The `fts` field's value can be `on/off` , `1/0` ,`true/false` etc.
2023-07-26 02:03:20 +00:00
```
fts=false
```
will disable the current dictionary's full-text search.
2023-07-26 10:06:20 +00:00
You can check the full-text search status on each dictionary's info dialog.
2023-07-26 02:03:20 +00:00
2023-07-26 09:58:11 +00:00
![](img/dictionary-info-fullindex.png)