選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 
 

93 行
2.1 KiB

  1. from frappe import _
  2. def get_data():
  3. return [
  4. {
  5. "label": _("Documents"),
  6. "icon": "icon-star",
  7. "items": [
  8. {
  9. "type": "doctype",
  10. "name": "Web Page",
  11. "description": _("Content web page."),
  12. },
  13. {
  14. "type": "doctype",
  15. "name": "Blog Post",
  16. "description": _("Single Post (article)."),
  17. },
  18. {
  19. "type": "doctype",
  20. "name": "Blogger",
  21. "description": _("User ID of a blog writer."),
  22. },
  23. {
  24. "type": "doctype",
  25. "name": "Website Group",
  26. "description": _("Web Site Forum Page."),
  27. },
  28. {
  29. "type": "doctype",
  30. "name": "Post",
  31. "description": _("List of Web Site Forum's Posts."),
  32. },
  33. {
  34. "type": "doctype",
  35. "name": "Website Slideshow",
  36. "description": _("Embed image slideshows in website pages."),
  37. },
  38. ]
  39. },
  40. {
  41. "label": _("Setup"),
  42. "icon": "icon-cog",
  43. "items": [
  44. {
  45. "type": "doctype",
  46. "name": "Website Settings",
  47. "description": _("Setup of top navigation bar, footer and logo."),
  48. },
  49. {
  50. "type": "doctype",
  51. "name": "Style Settings",
  52. "description": _("Setup of fonts and background."),
  53. },
  54. {
  55. "type": "doctype",
  56. "name": "Website Script",
  57. "description": _("Javascript to append to the head section of the page."),
  58. },
  59. {
  60. "type": "doctype",
  61. "name": "Blog Settings",
  62. "description": _("Write titles and introductions to your blog."),
  63. },
  64. {
  65. "type": "doctype",
  66. "name": "Blog Category",
  67. "description": _("Categorize blog posts."),
  68. },
  69. {
  70. "type": "doctype",
  71. "name": "About Us Settings",
  72. "description": _("Settings for About Us Page."),
  73. },
  74. {
  75. "type": "doctype",
  76. "name": "Contact Us Settings",
  77. "description": _("Settings for Contact Us Page."),
  78. },
  79. {
  80. "type": "doctype",
  81. "name": "Website Page Permission",
  82. "description": _("Define read, write, admin permissions for a Website Page."),
  83. },
  84. {
  85. "type": "doctype",
  86. "name": "Social Login Keys",
  87. "description": _("Enter keys to enable login via Facebook, Google, GitHub."),
  88. }
  89. ]
  90. },
  91. ]