diff --git a/accounts/page/accounts_browser/accounts_browser.js b/accounts/page/accounts_browser/accounts_browser.js
index 6b577959a13..fafe816cd95 100644
--- a/accounts/page/accounts_browser/accounts_browser.js
+++ b/accounts/page/accounts_browser/accounts_browser.js
@@ -20,29 +20,31 @@ pscript['onload_Accounts Browser'] = function(wrapper){
chart_area = $("
")
.css({"margin-bottom": "15px"})
.appendTo(main),
- help_area = $('
\
-
Quick Help
\
-
\
- - To add child nodes, explore tree and click on the node under which you \
- want to add more nodes.\
-
- Accounting Entries can be made against leaf nodes, called Ledgers.\
- Entries against Groups are not allowed.\
-
- Please do NOT create Account (Ledgers) for Customers and Suppliers. \
- They are created directly from the Customer / Supplier masters.\
-
- To create a Bank Account: Go to the appropriate group \
- (usually Application of Funds > Current Assets > Bank Accounts)\
- and create a new Account Ledger (by clicking on Add Child) of \
- type "Bank or Cash"\
-
- To create a Tax Account: Go to the appropriate group \
- (usually Source of Funds > Current Liabilities > Taxes and Duties) \
- and create a new Account Ledger (by clicking on Add Child) of type\
- "Tax" and do mention the Tax rate.\
-
\
-
Please setup your chart of accounts before you start Accounting Entries
\
-
').appendTo(main);
+ help_area = $('
'+
+ '
'+wn._('Quick Help')+'
'+
+ '
'+
+ '- '+wn._('To add child nodes, explore tree and click on the node under which you want to add more nodes.')+'
'+
+ '- '+
+ wn._('Accounting Entries can be made against leaf nodes, called')+
+ '' +wn._('Ledgers')+'.'+ wn._('Entries against') +
+ '' +wn._('Groups') + ''+ wn._('are not allowed.')+
+ '
'+
+ '- '+wn._('Please do NOT create Account (Ledgers) for Customers and Suppliers. They are created directly from the Customer / Supplier masters.')+'
'+
+ '- '+
+ ''+wn._('To create a Bank Account:')+''+
+ wn._('Go to the appropriate group (usually Application of Funds > Current Assets > Bank Accounts)')+
+ wn._('and create a new Account Ledger (by clicking on Add Child) of type "Bank or Cash"')+
+ '
'+
+ '- '+
+ ''+wn._('To create a Tax Account:')+''+
+ wn._('Go to the appropriate group (usually Source of Funds > Current Liabilities > Taxes and Duties)')+
+ wn._('and create a new Account Ledger (by clicking on Add Child) of type "Tax" and do mention the Tax rate.')+
+ '
'+
+ '
'+
+ '
'+wn._('Please setup your chart of accounts before you start Accounting Entries')+'
').appendTo(main);
if (wn.boot.profile.can_create.indexOf("Company") !== -1) {
- wrapper.appframe.add_button('New Company', function() { newdoc('Company'); },
+ wrapper.appframe.add_button(wn._('New Company'), function() { newdoc('Company'); },
'icon-plus');
}
@@ -145,20 +147,20 @@ erpnext.AccountsChart = Class.extend({
var node_links = [];
// edit
if (wn.model.can_read(this.ctype) !== -1) {
- node_links.push('
Edit');
+ node_links.push('
'+wn._('Edit')+'');
}
if (data.expandable && wn.boot.profile.in_create.indexOf(this.ctype) !== -1) {
- node_links.push('
Add Child');
+ node_links.push('
'+wn._('Add Child')+'');
} else if (this.ctype === 'Account' && wn.boot.profile.can_read.indexOf("GL Entry") !== -1) {
- node_links.push('
View Ledger');
+ node_links.push('
'+wn._('View Ledger')+'');
}
if (this.can_write) {
- node_links.push('
Rename');
+ node_links.push('
'+wn._('Rename')+'');
};
if (this.can_delete) {
- node_links.push('
Delete');
+ node_links.push('
'+wn._('Delete')+'');
};
link.toolbar.append(node_links.join(" | "));
@@ -204,20 +206,20 @@ erpnext.AccountsChart = Class.extend({
// the dialog
var d = new wn.ui.Dialog({
- title:'New Account',
+ title:wn._('New Account'),
fields: [
- {fieldtype:'Data', fieldname:'account_name', label:'New Account Name', reqd:true,
- description: "Name of new Account. Note: Please don't create accounts for Customers and Suppliers, \
- they are created automatically from the Customer and Supplier master"},
- {fieldtype:'Select', fieldname:'group_or_ledger', label:'Group or Ledger',
- options:'Group\nLedger', description:'Further accounts can be made under Groups,\
- but entries can be made against Ledger'},
- {fieldtype:'Select', fieldname:'account_type', label:'Account Type',
+ {fieldtype:'Data', fieldname:'account_name', label:wn._('New Account Name'), reqd:true,
+ description: wn._("Name of new Account. Note: Please don't create accounts for Customers and Suppliers,")+
+ wn._("they are created automatically from the Customer and Supplier master")},
+ {fieldtype:'Select', fieldname:'group_or_ledger', label:wn._('Group or Ledger'),
+ options:'Group\nLedger', description: wn._('Further accounts can be made under Groups,')+
+ wn._('but entries can be made against Ledger')},
+ {fieldtype:'Select', fieldname:'account_type', label:wn._('Account Type'),
options: ['', 'Fixed Asset Account', 'Bank or Cash', 'Expense Account', 'Tax',
'Income Account', 'Chargeable'].join('\n'),
- description: "Optional. This setting will be used to filter in various transactions." },
- {fieldtype:'Float', fieldname:'tax_rate', label:'Tax Rate'},
- {fieldtype:'Button', fieldname:'create_new', label:'Create New' }
+ description: wn._("Optional. This setting will be used to filter in various transactions.") },
+ {fieldtype:'Float', fieldname:'tax_rate', label:wn._('Tax Rate')},
+ {fieldtype:'Button', fieldname:'create_new', label:wn._('Create New') }
]
})
@@ -282,13 +284,13 @@ erpnext.AccountsChart = Class.extend({
var me = this;
// the dialog
var d = new wn.ui.Dialog({
- title:'New Cost Center',
+ title:wn._('New Cost Center'),
fields: [
- {fieldtype:'Data', fieldname:'cost_center_name', label:'New Cost Center Name', reqd:true},
- {fieldtype:'Select', fieldname:'group_or_ledger', label:'Group or Ledger',
- options:'Group\nLedger', description:'Further accounts can be made under Groups,\
- but entries can be made against Ledger'},
- {fieldtype:'Button', fieldname:'create_new', label:'Create New' }
+ {fieldtype:'Data', fieldname:'cost_center_name', label:wn._('New Cost Center Name'), reqd:true},
+ {fieldtype:'Select', fieldname:'group_or_ledger', label:wn._('Group or Ledger'),
+ options:'Group\nLedger', description:wn._('Further accounts can be made under Groups,')+
+ wn._('but entries can be made against Ledger')},
+ {fieldtype:'Button', fieldname:'create_new', label:wn._('Create New') }
]
});