config.toml 557 B

1234567891011121314151617181920212223242526272829303132
  1. # Choose between: zh-s/zh-f/en
  2. # zh-s == 简体中文; zh-f == 繁体中文(暫未支持)
  3. lang = "en"
  4. # tree/expand
  5. listStyle = "tree"
  6. # >>>need some guidance here<<<
  7. EnableGlobalCommand = false
  8. # Choose between: sqlite3/toml/md/csv/mongodb
  9. # However toml/md/csv/mongodb are not supported in v1.0
  10. [Database]
  11. type = "sqlite3"
  12. path = "test.db"
  13. # ----- helps -----
  14. # 难道用asicⅡ然后根据系统语言转换?
  15. [command-help]
  16. en = """
  17. Help texts in en
  18. """
  19. zh-s = """
  20. Help texts in zh-s
  21. """
  22. [could-not-find]
  23. en = "could not find"
  24. zh-s = "找不到"