mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-24 08:34:08 +00:00
715512eda3
* feat: allow to customize dictionary name * 🎨 apply clang-format changes * fix: code smell * feat: allow to set custom dictionary name * 🎨 apply clang-format changes * feat: add doc for customizing dictionary name * 🎨 apply clang-format changes * 🎨 apply clang-format changes --------- Co-authored-by: xiaoyifang <xiaoyifang@users.noreply.github.com>
35 lines
754 B
Markdown
35 lines
754 B
Markdown
You can customize the dictionary name by the metadata.toml which is also used in [metadata grouping](manage_groups.md)
|
|
|
|
## About the configuration of metadata.toml
|
|
|
|
```toml
|
|
[metadata]
|
|
name = "New Name"
|
|
```
|
|
|
|
this `New Name` will be appeared as the dictionary name.
|
|
|
|
|
|
The `metadata.toml` should be placed beside dictionary files. One `metadata.toml` for each dictionary.
|
|
|
|
The metadata file uses [TOML](https://toml.io) format.
|
|
|
|
|
|
For example,
|
|
|
|
```
|
|
.
|
|
├── Cambridge
|
|
│ ├── metadata.toml (A)
|
|
│ ├── Cambridge.idx
|
|
│ ├── Cambridge.info
|
|
│ ├── Cambridge.syn
|
|
│ └── Cambridge.dict.dz
|
|
└── Collins
|
|
├── metadata.toml
|
|
├── res.zip
|
|
└── Collins.dsl (B)
|
|
|
|
```
|
|
|