config.toml 607 B

123456789101112131415161718192021222324252627282930313233
  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. # 或者是单独的.toml/.txt 文本文件也行
  16. [command-help]
  17. en = """
  18. Help texts in en
  19. """
  20. zh-s = """
  21. Help texts in zh-s
  22. """
  23. [could-not-find]
  24. en = "could not find"
  25. zh-s = "找不到"