You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

99 rivejä
2.2 KiB

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