t.toml 646 B

123456789101112131415161718192021222324252627282930313233343536
  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. DBType = "sqlite3"
  9. DBPath = "test.db"
  10. # Choose between: sqlite3/toml/md/csv/mongodb
  11. # However toml/md/csv/mongodb are not supported in v1.0
  12. [Database]
  13. type = "sqlite3"
  14. path = "test.db"
  15. # ----- helps -----
  16. # 难道用asicⅡ然后根据系统语言转换?
  17. # 或者是单独的.toml/.txt 文本文件也行
  18. [command-help]
  19. en = """
  20. Help texts in en
  21. """
  22. zh-s = """
  23. Help texts in zh-s
  24. """
  25. [could-not-find]
  26. en = "could not find"
  27. zh-s = "找不到"