Merge branch 'i18n' of git://github.com/bperretti/erpnext into bperretti-i18n

This commit is contained in:
Nabin Hait
2013-10-24 11:40:32 +05:30
112 changed files with 677 additions and 617 deletions

View File

@@ -5,7 +5,7 @@ wn.query_reports["Customers Not Buying Since Long Time"] = {
"filters": [
{
"fieldname":"days_since_last_order",
"label": "Days Since Last Order",
"label": wn._("Days Since Last Order"),
"fieldtype": "Int",
"default": 60
}

View File

@@ -5,21 +5,21 @@ wn.query_reports["Sales Person Target Variance Item Group-Wise"] = {
"filters": [
{
fieldname: "fiscal_year",
label: "Fiscal Year",
label: wn._("Fiscal Year"),
fieldtype: "Link",
options: "Fiscal Year",
default: sys_defaults.fiscal_year
},
{
fieldname: "period",
label: "Period",
label: wn._("Period"),
fieldtype: "Select",
options: "Monthly\nQuarterly\nHalf-Yearly\nYearly",
default: "Monthly"
},
{
fieldname: "target_on",
label: "Target On",
label: wn._("Target On"),
fieldtype: "Select",
options: "Quantity\nAmount",
default: "Quantity"

View File

@@ -5,57 +5,57 @@ wn.query_reports["Sales Person-wise Transaction Summary"] = {
"filters": [
{
fieldname: "sales_person",
label: "Sales Person",
label: wn._("Sales Person"),
fieldtype: "Link",
options: "Sales Person"
},
{
fieldname: "doc_type",
label: "Document Type",
label: wn._("Document Type"),
fieldtype: "Select",
options: "Sales Order\nDelivery Note\nSales Invoice",
default: "Sales Order"
},
{
fieldname: "from_date",
label: "From Date",
label: wn._("From Date"),
fieldtype: "Date",
default: wn.defaults.get_user_default("year_start_date"),
},
{
fieldname:"to_date",
label: "To Date",
label: wn._("To Date"),
fieldtype: "Date",
default: get_today()
},
{
fieldname:"company",
label: "Company",
label: wn._("Company"),
fieldtype: "Link",
options: "Company",
default: wn.defaults.get_default("company")
},
{
fieldname:"item_group",
label: "Item Group",
label: wn._("Item Group"),
fieldtype: "Link",
options: "Item Group",
},
{
fieldname:"brand",
label: "Brand",
label: wn._("Brand"),
fieldtype: "Link",
options: "Brand",
},
{
fieldname:"customer",
label: "Customer",
label: wn._("Customer"),
fieldtype: "Link",
options: "Customer",
},
{
fieldname:"territory",
label: "Territory",
label: wn._("Territory"),
fieldtype: "Link",
options: "Territory",
},

View File

@@ -5,21 +5,21 @@ wn.query_reports["Territory Target Variance Item Group-Wise"] = {
"filters": [
{
fieldname: "fiscal_year",
label: "Fiscal Year",
label: wn._("Fiscal Year"),
fieldtype: "Link",
options: "Fiscal Year",
default: sys_defaults.fiscal_year
},
{
fieldname: "period",
label: "Period",
label: wn._("Period"),
fieldtype: "Select",
options: "Monthly\nQuarterly\nHalf-Yearly\nYearly",
default: "Monthly"
},
{
fieldname: "target_on",
label: "Target On",
label: wn._("Target On"),
fieldtype: "Select",
options: "Quantity\nAmount",
default: "Quantity"