置顶公告:【置顶】关于临时开启评论区所有功能的公告(2022.10.22) | 【置顶】关于本站Widget恢复使用的公告
  • 你好~!欢迎来到萌娘百科镜像站!如需查看或编辑,请联系本站管理员注册账号。
  • 本镜像站和其他萌娘百科的镜像站无关,请注意分别。

Module:Namespace detect/config

猛汉♂百科,万男皆可猛的百科全书!转载请标注来源页面的网页链接,并声明引自猛汉百科。内容不可商用。
跳到导航 跳到搜索
Template-info.svg 模块文档  [创建] [刷新]
  1. --------------------------------------------------------------------------------
  2. -- Namespace detect configuration data --
  3. -- --
  4. -- This module stores configuration data for Module:Namespace detect. Here --
  5. -- you can localise the module to your wiki's language. --
  6. -- --
  7. -- To activate a configuration item, you need to uncomment it. This means --
  8. -- that you need to remove the text "-- " at the start of the line. --
  9. --------------------------------------------------------------------------------
  10. local cfg = {} -- Don't edit this line.
  11. --------------------------------------------------------------------------------
  12. -- Parameter names --
  13. -- These configuration items specify custom parameter names. Values added --
  14. -- here will work in addition to the default English parameter names. --
  15. -- To add one extra name, you can use this format: --
  16. -- --
  17. -- cfg.foo = 'parameter name' --
  18. -- --
  19. -- To add multiple names, you can use this format: --
  20. -- --
  21. -- cfg.foo = {'parameter name 1', 'parameter name 2', 'parameter name 3'} --
  22. --------------------------------------------------------------------------------
  23. ---- This parameter displays content for the main namespace:
  24. -- cfg.main = 'main'
  25. ---- This parameter displays in talk namespaces:
  26. -- cfg.talk = 'talk'
  27. ---- This parameter displays content for "other" namespaces (namespaces for which
  28. ---- parameters have not been specified):
  29. -- cfg.other = 'other'
  30. ---- This parameter makes talk pages behave as though they are the corresponding
  31. ---- subject namespace. Note that this parameter is used with [[Module:Yesno]].
  32. ---- Edit that module to change the default values of "yes", "no", etc.
  33. -- cfg.subjectns = 'subjectns'
  34. ---- This parameter sets a demonstration namespace:
  35. -- cfg.demospace = 'demospace'
  36. ---- This parameter sets a specific page to compare:
  37. cfg.demopage = 'page'
  38. --------------------------------------------------------------------------------
  39. -- Table configuration --
  40. -- These configuration items allow customisation of the "table" function, --
  41. -- used to generate a table of possible parameters in the module --
  42. -- documentation. --
  43. --------------------------------------------------------------------------------
  44. ---- The header for the namespace column in the wikitable containing the list of
  45. ---- possible subject-space parameters.
  46. -- cfg.wikitableNamespaceHeader = 'Namespace'
  47. ---- The header for the wikitable containing the list of possible subject-space
  48. ---- parameters.
  49. -- cfg.wikitableAliasesHeader = 'Aliases'
  50. --------------------------------------------------------------------------------
  51. -- End of configuration data --
  52. --------------------------------------------------------------------------------
  53. return cfg -- Don't edit this line.