Fixed moduleview language issue

This commit is contained in:
Anand Doshi 2014-05-08 11:43:18 +05:30
parent 7e1b75a705
commit 08ef467fc6
9 changed files with 1532 additions and 1526 deletions

View File

@ -1,6 +1,7 @@
from frappe import _ from frappe import _
data = [ def get_data():
return [
{ {
"label": _("Documents"), "label": _("Documents"),
"icon": "icon-star", "icon": "icon-star",
@ -304,4 +305,4 @@ data = [
}, },
] ]
}, },
] ]

View File

@ -1,6 +1,7 @@
from frappe import _ from frappe import _
data = [ def get_data():
return [
{ {
"label": _("Documents"), "label": _("Documents"),
"icon": "icon-star", "icon": "icon-star",
@ -166,4 +167,4 @@ data = [
} }
] ]
}, },
] ]

View File

@ -1,6 +1,7 @@
from frappe import _ from frappe import _
data = [ def get_data():
return [
{ {
"label": _("Documents"), "label": _("Documents"),
"icon": "icon-star", "icon": "icon-star",
@ -194,4 +195,4 @@ data = [
}, },
] ]
}, },
] ]

View File

@ -1,6 +1,7 @@
from frappe import _ from frappe import _
data = [ def get_data():
return [
{ {
"label": _("Documents"), "label": _("Documents"),
"icon": "icon-star", "icon": "icon-star",
@ -75,4 +76,4 @@ data = [
}, },
] ]
}, },
] ]

View File

@ -1,6 +1,7 @@
from frappe import _ from frappe import _
data = [ def get_data():
return [
{ {
"label": _("Documents"), "label": _("Documents"),
"icon": "icon-star", "icon": "icon-star",
@ -63,4 +64,4 @@ data = [
}, },
] ]
}, },
] ]

View File

@ -1,6 +1,7 @@
from frappe import _ from frappe import _
data = [ def get_data():
return [
{ {
"label": _("Documents"), "label": _("Documents"),
"icon": "icon-star", "icon": "icon-star",
@ -262,4 +263,4 @@ data = [
}, },
] ]
}, },
] ]

View File

@ -1,7 +1,8 @@
from frappe import _ from frappe import _
from frappe.widgets.moduleview import add_setup_section from frappe.widgets.moduleview import add_setup_section
data = [ def get_data():
data = [
{ {
"label": _("Settings"), "label": _("Settings"),
"icon": "icon-wrench", "icon": "icon-wrench",
@ -120,10 +121,7 @@ data = [
}, },
] ]
}, },
] ]
def get_data():
out = list(data)
for module, label, icon in ( for module, label, icon in (
("accounts", _("Accounts"), "icon-money"), ("accounts", _("Accounts"), "icon-money"),
@ -133,6 +131,6 @@ def get_data():
("hr", _("Human Resources"), "icon-group"), ("hr", _("Human Resources"), "icon-group"),
("support", _("Support"), "icon-phone")): ("support", _("Support"), "icon-phone")):
add_setup_section(out, "erpnext", module, label, icon) add_setup_section(data, "erpnext", module, label, icon)
return out return data

View File

@ -1,6 +1,7 @@
from frappe import _ from frappe import _
data = [ def get_data():
return [
{ {
"label": _("Documents"), "label": _("Documents"),
"icon": "icon-star", "icon": "icon-star",
@ -260,4 +261,4 @@ data = [
}, },
] ]
}, },
] ]

View File

@ -1,6 +1,7 @@
from frappe import _ from frappe import _
data = [ def get_data():
return [
{ {
"label": _("Documents"), "label": _("Documents"),
"icon": "icon-star", "icon": "icon-star",
@ -71,4 +72,4 @@ data = [
}, },
] ]
}, },
] ]