frappe._ to __

This commit is contained in:
Pratik Vyas
2014-04-14 16:25:30 +05:30
parent 7da01d6007
commit b52618c142
121 changed files with 700 additions and 700 deletions

View File

@@ -5,14 +5,14 @@ frappe.query_reports["Accounts Payable"] = {
"filters": [
{
"fieldname":"company",
"label": frappe._("Company"),
"label": __("Company"),
"fieldtype": "Link",
"options": "Company",
"default": frappe.defaults.get_user_default("company")
},
{
"fieldname":"account",
"label": frappe._("Account"),
"label": __("Account"),
"fieldtype": "Link",
"options": "Account",
"get_query": function() {
@@ -29,13 +29,13 @@ frappe.query_reports["Accounts Payable"] = {
},
{
"fieldname":"report_date",
"label": frappe._("Date"),
"label": __("Date"),
"fieldtype": "Date",
"default": get_today()
},
{
"fieldname":"ageing_based_on",
"label": frappe._("Ageing Based On"),
"label": __("Ageing Based On"),
"fieldtype": "Select",
"options": 'Posting Date' + NEWLINE + 'Due Date',
"default": "Posting Date"