blob: e27b7cd04f936f1776f6b67885ec26214020243f [file] [log] [blame]
Charles-Henri Decultotbc7a5492018-03-01 06:29:21 +01001from __future__ import unicode_literals
2from frappe import _
3
4def get_data():
5 return [
6 {
7 "label": _("Payments"),
8 "icon": "fa fa-star",
9 "items": [
10 {
11 "type": "doctype",
12 "name": "GoCardless Settings",
13 "description": _("GoCardless payment gateway settings"),
14 },
15 {
16 "type": "doctype",
17 "name": "GoCardless Mandate",
18 "description": _("GoCardless SEPA Mandate"),
19 }
20 ]
Vinayak Jethedf831482018-04-03 11:17:03 +053021 },
22 {
23 "label": _("Settings"),
24 "items": [
25 {
26 "type": "doctype",
27 "name": "Woocommerce Settings"
Saurabhd60c0f22018-05-16 11:33:47 +053028 },
29 {
30 "type": "doctype",
31 "name": "Shopify Settings",
32 "description": _("Connect Shopify with ERPNext"),
Vinayak Jethedf831482018-04-03 11:17:03 +053033 }
34 ]
Charles-Henri Decultotbc7a5492018-03-01 06:29:21 +010035 }
36 ]