123456789101112131415161718192021222324252627282930313233343536 |
- # Choose between: zh-s/zh-f/en
- # zh-s == 简体中文; zh-f == 繁体中文(暫未支持)
- lang = "en"
- # tree/expand
- listStyle = "tree"
- # >>>need some guidance here<<<
- EnableGlobalCommand = false
- DBType = "sqlite3"
- DBPath = "test.db"
- # Choose between: sqlite3/toml/md/csv/mongodb
- # However toml/md/csv/mongodb are not supported in v1.0
- [Database]
- type = "sqlite3"
- path = "test.db"
- # ----- helps -----
- # 难道用asicⅡ然后根据系统语言转换?
- # 或者是单独的.toml/.txt 文本文件也行
- [command-help]
- en = """
- Help texts in en
- """
- zh-s = """
- Help texts in zh-s
- """
- [could-not-find]
- en = "could not find"
- zh-s = "找不到"
|