Fix translate complete_setup.js
This commit is contained in:
parent
4de55b4f6e
commit
f48ae14594
@ -15,24 +15,24 @@ $.extend(erpnext.complete_setup, {
|
||||
var d = new wn.ui.Dialog({
|
||||
title: "Setup",
|
||||
fields: [
|
||||
{fieldname:'first_name', label:'Your First Name', fieldtype:'Data', reqd: 1},
|
||||
{fieldname:'last_name', label:'Your Last Name', fieldtype:'Data'},
|
||||
{fieldname:'company_name', label:'Company Name', fieldtype:'Data', reqd:1,
|
||||
description: 'e.g. "My Company LLC"'},
|
||||
{fieldname:'company_abbr', label:'Company Abbreviation', fieldtype:'Data',
|
||||
description:'e.g. "MC"',reqd:1},
|
||||
{fieldname:'fy_start', label:'Financial Year Start Date', fieldtype:'Select',
|
||||
description:'Your financial year begins on"', reqd:1,
|
||||
{fieldname:'first_name', label:wn._('Your First Name'), fieldtype:'Data', reqd: 1},
|
||||
{fieldname:'last_name', label: wn._('Your Last Name'), fieldtype:'Data'},
|
||||
{fieldname:'company_name', label:wn._('Company Name'), fieldtype:'Data', reqd:1,
|
||||
description: wn._('e.g. "My Company LLC"')},
|
||||
{fieldname:'company_abbr', label:wn._('Company Abbreviation'), fieldtype:'Data',
|
||||
description:wn._('e.g. "MC"'),reqd:1},
|
||||
{fieldname:'fy_start', label:wn._('Financial Year Start Date'), fieldtype:'Select',
|
||||
description:wn._('Your financial year begins on"'), reqd:1,
|
||||
options: erpnext.complete_setup.fy_start_list.join('\n')},
|
||||
{fieldname:'country', label: 'Country', reqd:1,
|
||||
{fieldname:'country', label: wn._('Country'), reqd:1,
|
||||
options: "", fieldtype: 'Select'},
|
||||
{fieldname:'currency', label: 'Default Currency', reqd:1,
|
||||
{fieldname:'currency', label: wn._('Default Currency'), reqd:1,
|
||||
options: "", fieldtype: 'Select'},
|
||||
{fieldname:'timezone', label: 'Time Zone', reqd:1,
|
||||
{fieldname:'timezone', label: wn._('Time Zone'), reqd:1,
|
||||
options: "", fieldtype: 'Select'},
|
||||
{fieldname:'industry', label: 'Industry', reqd:1,
|
||||
{fieldname:'industry', label: wn._('Industry'), reqd:1,
|
||||
options: erpnext.complete_setup.domains.join('\n'), fieldtype: 'Select'},
|
||||
{fieldname:'update', label:'Setup',fieldtype:'Button'},
|
||||
{fieldname:'update', label:wn._('Setup'),fieldtype:'Button'},
|
||||
],
|
||||
});
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user