Fixed moduleview language issue
This commit is contained in:
parent
7e1b75a705
commit
08ef467fc6
@ -1,6 +1,7 @@
|
||||
from frappe import _
|
||||
|
||||
data = [
|
||||
def get_data():
|
||||
return [
|
||||
{
|
||||
"label": _("Documents"),
|
||||
"icon": "icon-star",
|
||||
@ -304,4 +305,4 @@ data = [
|
||||
},
|
||||
]
|
||||
},
|
||||
]
|
||||
]
|
||||
|
@ -1,6 +1,7 @@
|
||||
from frappe import _
|
||||
|
||||
data = [
|
||||
def get_data():
|
||||
return [
|
||||
{
|
||||
"label": _("Documents"),
|
||||
"icon": "icon-star",
|
||||
@ -166,4 +167,4 @@ data = [
|
||||
}
|
||||
]
|
||||
},
|
||||
]
|
||||
]
|
||||
|
@ -1,6 +1,7 @@
|
||||
from frappe import _
|
||||
|
||||
data = [
|
||||
def get_data():
|
||||
return [
|
||||
{
|
||||
"label": _("Documents"),
|
||||
"icon": "icon-star",
|
||||
@ -194,4 +195,4 @@ data = [
|
||||
},
|
||||
]
|
||||
},
|
||||
]
|
||||
]
|
||||
|
@ -1,6 +1,7 @@
|
||||
from frappe import _
|
||||
|
||||
data = [
|
||||
def get_data():
|
||||
return [
|
||||
{
|
||||
"label": _("Documents"),
|
||||
"icon": "icon-star",
|
||||
@ -75,4 +76,4 @@ data = [
|
||||
},
|
||||
]
|
||||
},
|
||||
]
|
||||
]
|
||||
|
@ -1,6 +1,7 @@
|
||||
from frappe import _
|
||||
|
||||
data = [
|
||||
def get_data():
|
||||
return [
|
||||
{
|
||||
"label": _("Documents"),
|
||||
"icon": "icon-star",
|
||||
@ -63,4 +64,4 @@ data = [
|
||||
},
|
||||
]
|
||||
},
|
||||
]
|
||||
]
|
||||
|
@ -1,6 +1,7 @@
|
||||
from frappe import _
|
||||
|
||||
data = [
|
||||
def get_data():
|
||||
return [
|
||||
{
|
||||
"label": _("Documents"),
|
||||
"icon": "icon-star",
|
||||
@ -262,4 +263,4 @@ data = [
|
||||
},
|
||||
]
|
||||
},
|
||||
]
|
||||
]
|
||||
|
@ -1,7 +1,8 @@
|
||||
from frappe import _
|
||||
from frappe.widgets.moduleview import add_setup_section
|
||||
|
||||
data = [
|
||||
def get_data():
|
||||
data = [
|
||||
{
|
||||
"label": _("Settings"),
|
||||
"icon": "icon-wrench",
|
||||
@ -120,10 +121,7 @@ data = [
|
||||
},
|
||||
]
|
||||
},
|
||||
]
|
||||
|
||||
def get_data():
|
||||
out = list(data)
|
||||
]
|
||||
|
||||
for module, label, icon in (
|
||||
("accounts", _("Accounts"), "icon-money"),
|
||||
@ -133,6 +131,6 @@ def get_data():
|
||||
("hr", _("Human Resources"), "icon-group"),
|
||||
("support", _("Support"), "icon-phone")):
|
||||
|
||||
add_setup_section(out, "erpnext", module, label, icon)
|
||||
add_setup_section(data, "erpnext", module, label, icon)
|
||||
|
||||
return out
|
||||
return data
|
||||
|
@ -1,6 +1,7 @@
|
||||
from frappe import _
|
||||
|
||||
data = [
|
||||
def get_data():
|
||||
return [
|
||||
{
|
||||
"label": _("Documents"),
|
||||
"icon": "icon-star",
|
||||
@ -260,4 +261,4 @@ data = [
|
||||
},
|
||||
]
|
||||
},
|
||||
]
|
||||
]
|
||||
|
@ -1,6 +1,7 @@
|
||||
from frappe import _
|
||||
|
||||
data = [
|
||||
def get_data():
|
||||
return [
|
||||
{
|
||||
"label": _("Documents"),
|
||||
"icon": "icon-star",
|
||||
@ -71,4 +72,4 @@ data = [
|
||||
},
|
||||
]
|
||||
},
|
||||
]
|
||||
]
|
||||
|
Loading…
x
Reference in New Issue
Block a user