mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-16 11:39:18 +00:00
Merge branch 'responsive' of https://github.com/webnotes/erpnext into responsive
This commit is contained in:
@@ -15,8 +15,8 @@ wn.modules_path = 'erpnext';
|
||||
|
||||
// add toolbar icon
|
||||
$(document).bind('toolbar_setup', function() {
|
||||
$('.brand').html((wn.boot.website_settings.brand_html || 'erpnext') +
|
||||
' <i class="icon-home icon-white navbar-icon-home" ></i>')
|
||||
$('.navbar-brand').html('<object data="app/images/splash.svg" \
|
||||
class="toolbar-splash" type="image/svg+xml"></object>erpnext')
|
||||
.css('max-width', '200px').css('overflow', 'hidden')
|
||||
.hover(function() {
|
||||
$(this).find('.icon-home').addClass('navbar-icon-home-hover');
|
||||
|
||||
@@ -1,90 +0,0 @@
|
||||
// ERPNext - web based ERP (http://erpnext.com)
|
||||
// Copyright (C) 2012 Web Notes Technologies Pvt Ltd
|
||||
//
|
||||
// This program is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// This program is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
// gantt chart for project tasks
|
||||
|
||||
wn.require('lib/js/lib/jQuery.Gantt/css/style.css');
|
||||
wn.require('lib/js/lib/jQuery.Gantt/js/jquery.fn.gantt.min.js');
|
||||
|
||||
erpnext.show_task_gantt = function(parent, project) {
|
||||
|
||||
$(parent).css('min-height', '300px').html('<div class="alert">Loading...</div>')
|
||||
|
||||
var get_source = function(r) {
|
||||
var source = [];
|
||||
// projects
|
||||
$.each(r.message, function(i,v) {
|
||||
if(v.exp_start_date && v.exp_end_date) {
|
||||
source.push({
|
||||
name: v.project,
|
||||
desc: v.subject,
|
||||
values: [{
|
||||
label: v.subject,
|
||||
desc: v.description || v.subject,
|
||||
from: '/Date("'+v.exp_start_date+'")/',
|
||||
to: '/Date("'+v.exp_end_date+'")/',
|
||||
customClass: {
|
||||
'Open':'ganttRed',
|
||||
'Pending Review':'ganttOrange',
|
||||
'Working':'',
|
||||
'Completed':'ganttGreen',
|
||||
'Cancelled':'ganttGray'
|
||||
}[v.status],
|
||||
dataObj: v
|
||||
}]
|
||||
})
|
||||
}
|
||||
});
|
||||
return source
|
||||
}
|
||||
wn.call({
|
||||
method: 'projects.page.projects.projects.get_tasks',
|
||||
args: {
|
||||
project: project || ''
|
||||
},
|
||||
callback: function(r) {
|
||||
$(parent).empty();
|
||||
if(!r.message.length) {
|
||||
$(parent).html('<div class="alert">No Tasks Yet.</div>');
|
||||
} else {
|
||||
var gantt_area = $('<div class="gantt">').appendTo(parent);
|
||||
gantt_area.gantt({
|
||||
source: get_source(r),
|
||||
navigate: project ? "button" : "scroll",
|
||||
scale: "weeks",
|
||||
minScale: "day",
|
||||
maxScale: "months",
|
||||
onItemClick: function(data) {
|
||||
wn.set_route('Form', 'Task', data.name);
|
||||
},
|
||||
onAddClick: function(dt, rowId) {
|
||||
newdoc('Task');
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
$('<button class="btn"><i class="icon icon-plus"></i>\
|
||||
Create a new Task</button>').click(function() {
|
||||
wn.model.with_doctype('Task', function() {
|
||||
var new_name = wn.model.make_new_doc_and_get_name('Task');
|
||||
if(project)
|
||||
locals.Task[new_name].project = project;
|
||||
wn.set_route('Form', 'Task', new_name);
|
||||
});
|
||||
}).appendTo(parent);
|
||||
}
|
||||
})
|
||||
}
|
||||
@@ -1,158 +0,0 @@
|
||||
// ERPNext - web based ERP (http://erpnext.com)
|
||||
// Copyright (C) 2012 Web Notes Technologies Pvt Ltd
|
||||
//
|
||||
// This program is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// This program is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
// question toolbar
|
||||
// contains - voting widget / tag list and user info / timestamp
|
||||
// By XXXXXX on YYYYY
|
||||
|
||||
KBItemToolbar = function(args, kb) {
|
||||
$.extend(this, args);
|
||||
var me = this;
|
||||
this.make = function() {
|
||||
this.wrapper = $a(this.parent, 'div', '', {});
|
||||
this.line1 = $a(this.wrapper, 'div', '', {color: '#888', fontSize:'11px', margin:'7px 0px'});
|
||||
this.make_timestamp();
|
||||
this.make_answers();
|
||||
if(this.with_tags)
|
||||
this.make_tags();
|
||||
this.setup_del();
|
||||
}
|
||||
|
||||
this.make_timestamp = function() {
|
||||
this.line1.innerHTML = repl('By %(name)s | %(when)s', {
|
||||
name: wn.user_info(this.det.owner).fullname,
|
||||
when: wn.datetime.comment_when(this.det.modified)
|
||||
});
|
||||
|
||||
// allow system manager to delete questions / answers
|
||||
if(has_common(user_roles, ['Administrator', 'System Manager'])) {
|
||||
this.line1.innerHTML += ' | <a style="cursor:pointer;"\
|
||||
class="del-link">delete</a>';
|
||||
}
|
||||
}
|
||||
|
||||
this.make_answers = function() {
|
||||
if(this.doctype=='Question') {
|
||||
if(this.det.answers==0) {
|
||||
this.line1.innerHTML += ' | no answers';
|
||||
} else if(this.det.answers==1) {
|
||||
this.line1.innerHTML += ' | 1 answer';
|
||||
} else {
|
||||
this.line1.innerHTML += ' | '+this.det.answers+' answers';
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
this.make_tags = function() {
|
||||
this.line1.innerHTML += ' | '
|
||||
this.tags_area = $a(this.line1, 'span', 'kb-tags')
|
||||
this.tags = new TagList(this.tags_area,
|
||||
this.det._user_tags && (this.det._user_tags.split(',')),
|
||||
this.doctype, this.det.name, 0, kb.set_tag_filter)
|
||||
}
|
||||
|
||||
this.setup_del = function() {
|
||||
$(this.line1).find('.del-link').click(function() {
|
||||
this.innerHTML = 'deleting...';
|
||||
this.disabled = 1;
|
||||
$c_page('utilities', 'questions', 'delete', {
|
||||
dt: me.doctype, dn: me.det.name}, function(r,rt) {
|
||||
// reload the list
|
||||
kb.list.run()
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
this.make();
|
||||
}
|
||||
|
||||
|
||||
// displays an editable text,
|
||||
// needs parent, text, disp_class, inp_class
|
||||
// dt, dn
|
||||
|
||||
EditableText = function(args) {
|
||||
$.extend(this, args);
|
||||
var me = this;
|
||||
|
||||
me.$w = $(repl('<div class="ed-text">\
|
||||
<div class="ed-text-display %(disp_class)s"></div>\
|
||||
<a class="ed-text-edit" style="cursor: pointer; float: right; margin-top: -16px;">[edit]</a>\
|
||||
<textarea class="ed-text-input %(inp_class)s hide"></textarea>\
|
||||
<div class="help hide"><br>Formatted as <a href="#markdown-reference"\
|
||||
target="_blank">markdown</a></div>\
|
||||
<button class="btn btn-info hide ed-text-save">Save</button>\
|
||||
<a class="ed-text-cancel hide" style="cursor: pointer;">Cancel</a>\
|
||||
</div>', args)).appendTo(me.parent);
|
||||
|
||||
this.set_display = function(txt) {
|
||||
var display_wrapper = me.$w.find('.ed-text-display');
|
||||
display_wrapper.html(wn.markdown(txt));
|
||||
display_wrapper.find("a").attr("target", "blank");
|
||||
me.text = txt;
|
||||
}
|
||||
|
||||
this.set_display(me.text);
|
||||
|
||||
if(me.height) me.$w.find('.ed-text-input').css('height', me.height);
|
||||
if(me.width) me.$w.find('.ed-text-input').css('width', me.width);
|
||||
|
||||
// edit
|
||||
me.$w.find('.ed-text-edit').click(function() {
|
||||
me.$w.find('.ed-text-input').val(me.text);
|
||||
me.show_as_input();
|
||||
})
|
||||
|
||||
// save button - save the new text
|
||||
me.$w.find('.ed-text-save').click(
|
||||
function() {
|
||||
var v = me.$w.find('.ed-text-input').val();
|
||||
// check if text is written
|
||||
if(!v) {
|
||||
msgprint('Please write something!');
|
||||
return;
|
||||
}
|
||||
var btn = this;
|
||||
$(btn).set_working();
|
||||
$c_page('utilities', 'question_view', 'update_item', {
|
||||
dt: me.dt, dn: me.dn, fn: me.fieldname, text: v
|
||||
},
|
||||
function(r) {
|
||||
$(btn).done_working();
|
||||
if(r.exc) {msgprint(r.exc); return; }
|
||||
me.set_display(v);
|
||||
me.show_as_text();
|
||||
});
|
||||
}
|
||||
)
|
||||
|
||||
|
||||
// cancel button
|
||||
me.$w.find('.ed-text-cancel').click(function() {
|
||||
me.show_as_text();
|
||||
})
|
||||
|
||||
this.show_as_text = function() {
|
||||
me.$w.find('.ed-text-display, .ed-text-edit').toggle(true);
|
||||
me.$w.find('.ed-text-input, .ed-text-save, .ed-text-cancel, .help').toggle(false);
|
||||
}
|
||||
|
||||
this.show_as_input = function() {
|
||||
me.$w.find('.ed-text-display, .ed-text-edit').toggle(false);
|
||||
me.$w.find('.ed-text-input, .ed-text-save, .ed-text-cancel, .help').toggle(true);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,312 +0,0 @@
|
||||
[
|
||||
"BOM Replace Tool",
|
||||
"Product Group",
|
||||
"Period Closing Voucher",
|
||||
"Lead",
|
||||
"Employee Training",
|
||||
"Web Page",
|
||||
"Human Resources",
|
||||
"Item Price",
|
||||
"Sales Invoice Advance",
|
||||
"Role",
|
||||
"BOM",
|
||||
"Branch",
|
||||
"Department",
|
||||
"Territory",
|
||||
"Project Control",
|
||||
"Item Tax",
|
||||
"Bin",
|
||||
"Sales Browser Control",
|
||||
"Appraisal Template",
|
||||
"Default Home Page",
|
||||
"Custom Field",
|
||||
"DocType Mapper",
|
||||
"Unread Messages",
|
||||
"Brand",
|
||||
"Journal Voucher",
|
||||
"Payment to Invoice Matching Tool",
|
||||
"Letter Head",
|
||||
"Job Opening",
|
||||
"Leave Control Panel",
|
||||
"Authorization Rule",
|
||||
"Workflow State",
|
||||
"DocPerm",
|
||||
"Rename Tool",
|
||||
"Attendance Control Panel",
|
||||
"Stock Entry",
|
||||
"Naming Series",
|
||||
"Price List",
|
||||
"Maintenance Schedule Item",
|
||||
"Production Order",
|
||||
"Account",
|
||||
"Budget Detail",
|
||||
"Jobs Email Settings",
|
||||
"Website Script",
|
||||
"Material Request",
|
||||
"Setup",
|
||||
"Timesheet Detail",
|
||||
"Messages",
|
||||
"Batch",
|
||||
"Deduction Type",
|
||||
"Project",
|
||||
"Sales BOM Item",
|
||||
"SMS Center",
|
||||
"Sales Taxes and Charges Master",
|
||||
"DocField",
|
||||
"Packing Slip Item",
|
||||
"GL Control",
|
||||
"Maintenance Visit",
|
||||
"Appraisal",
|
||||
"Expense Claim",
|
||||
"Production Planning Tool",
|
||||
"Stock Ledger",
|
||||
"Budget Control",
|
||||
"Sales Taxes and Charges",
|
||||
"Help",
|
||||
"Campaign",
|
||||
"Maintenance Visit Purpose",
|
||||
"Purchase Invoice",
|
||||
"Item Reorder",
|
||||
"Leave Type",
|
||||
"Sales and Purchase Return Tool",
|
||||
"Global Defaults",
|
||||
"Tag",
|
||||
"Accounts",
|
||||
"Buying",
|
||||
"Project Activity Update",
|
||||
"Quotation Item",
|
||||
"Salary Slip Earning",
|
||||
"Bank Reconciliation Detail",
|
||||
"Sales Order",
|
||||
"Email Digest",
|
||||
"Event",
|
||||
"Leave Allocation",
|
||||
"Supplier Quotation Item",
|
||||
"SMS Receiver",
|
||||
"Attendance",
|
||||
"Landed Cost Item",
|
||||
"Table Mapper Detail",
|
||||
"Quality Inspection Reading",
|
||||
"Installation Note Item",
|
||||
"HR",
|
||||
"Purchase Invoice Advance",
|
||||
"Shipping Address",
|
||||
"Budget Distribution",
|
||||
"Leave Block List",
|
||||
"Packing Slip",
|
||||
"Supplier",
|
||||
"State",
|
||||
"Employee External Work History",
|
||||
"Employee",
|
||||
"Products Settings",
|
||||
"UOM Conversion Detail",
|
||||
"ToDo",
|
||||
"UOM",
|
||||
"Supplier Type",
|
||||
"Serial No",
|
||||
"My Settings",
|
||||
"Landed Cost Purchase Receipt",
|
||||
"Salary Structure Deduction",
|
||||
"Home Control",
|
||||
"Maintenance Schedule Detail",
|
||||
"Budget Distribution Detail",
|
||||
"Print Heading",
|
||||
"Update Delivery Date",
|
||||
"Sales Email Settings",
|
||||
"Utilities",
|
||||
"Warehouse User",
|
||||
"Website Slideshow",
|
||||
"Valuation Control",
|
||||
"Profile Control",
|
||||
"Purchase Taxes and Charges",
|
||||
"Landed Cost Wizard",
|
||||
"Patch Log",
|
||||
"Report",
|
||||
"Sales Invoice",
|
||||
"Website Item Group",
|
||||
"Salary Slip Deduction",
|
||||
"Workflow Rule Detail",
|
||||
"Projects",
|
||||
"Purchase Order Item",
|
||||
"Notification Control",
|
||||
"Workstation",
|
||||
"POS Setting",
|
||||
"Forum",
|
||||
"Support Ticket",
|
||||
"Project Activity",
|
||||
"Documentation",
|
||||
"Purchase Order Item Supplied",
|
||||
"Quotation Lost Reason",
|
||||
"Event Role",
|
||||
"Contact",
|
||||
"Industry Type",
|
||||
"Contact Control",
|
||||
"Market Segment",
|
||||
"Comment",
|
||||
"Sales Person",
|
||||
"Purchase Invoice Item",
|
||||
"Page Role",
|
||||
"BOM Explosion Item",
|
||||
"Grade",
|
||||
"Communication",
|
||||
"Print Format",
|
||||
"Workflow",
|
||||
"Sandbox",
|
||||
"Module Def",
|
||||
"Employee Education",
|
||||
"Currency",
|
||||
"Material Request Item",
|
||||
"Sales Order Item",
|
||||
"Featured Item",
|
||||
"Sales BOM",
|
||||
"Home",
|
||||
"Calendar",
|
||||
"Timesheet",
|
||||
"Company",
|
||||
"Employee Internal Work History",
|
||||
"Appraisal Template Goal",
|
||||
"Sales and Purchase Return Item",
|
||||
"Support",
|
||||
"Activity Type",
|
||||
"Cost Center",
|
||||
"Product Settings",
|
||||
"Delivery Note Item",
|
||||
"Company Control",
|
||||
"Website Settings",
|
||||
"Answer",
|
||||
"Email Settings",
|
||||
"Holiday",
|
||||
"Installation Note",
|
||||
"Workflow Engine",
|
||||
"Website",
|
||||
"Core",
|
||||
"Item Customer Detail",
|
||||
"Selling",
|
||||
"Terms and Conditions",
|
||||
"About Us Team Member",
|
||||
"Target Detail",
|
||||
"Related Page",
|
||||
"Payment to Invoice Matching Tool Detail",
|
||||
"Contact Us Settings",
|
||||
"Expense Claim Detail",
|
||||
"Stock Ledger Entry",
|
||||
"Bank Reconciliation",
|
||||
"Multi Ledger Report Detail",
|
||||
"Delivery Note Packing Item",
|
||||
"Employment Type",
|
||||
"Purchase Receipt Item",
|
||||
"Earning Type",
|
||||
"Designation",
|
||||
"Question",
|
||||
"Sales Common",
|
||||
"Purchase Taxes and Charges Master",
|
||||
"C-Form Invoice Detail",
|
||||
"Workflow Action",
|
||||
"Property Setter",
|
||||
"BOM Operation",
|
||||
"Item Group",
|
||||
"Supplier Quotation",
|
||||
"Workflow Action Detail",
|
||||
"Purchase Common",
|
||||
"File Data",
|
||||
"Knowledge Base",
|
||||
"Sales Partner",
|
||||
"Customer Issue",
|
||||
"Feed",
|
||||
"Scheduler Log",
|
||||
"Salary Slip",
|
||||
"Appraisal Goal",
|
||||
"Customize Form Field",
|
||||
"GL Mapper Detail",
|
||||
"Series Detail",
|
||||
"Blog Subscriber",
|
||||
"Warehouse",
|
||||
"Quality Inspection",
|
||||
"DocType Label",
|
||||
"GL Entry",
|
||||
"Control Panel",
|
||||
"Delivery Note",
|
||||
"Trend Analyzer Control",
|
||||
"Production",
|
||||
"Search Criteria",
|
||||
"Salary Structure",
|
||||
"Purchase Receipt Item Supplied",
|
||||
"Customer Group",
|
||||
"Opportunity Item",
|
||||
"Quotation",
|
||||
"Sales Invoice Item",
|
||||
"GL Mapper",
|
||||
"Workflow Document State",
|
||||
"Item Website Specification",
|
||||
"Mode of Payment",
|
||||
"Leave Block List Date",
|
||||
"System Console",
|
||||
"To Do",
|
||||
"Permission Control",
|
||||
"Workflow Transition",
|
||||
"Features Setup",
|
||||
"Field Mapper Detail",
|
||||
"Bulk Email",
|
||||
"BOM Item",
|
||||
"Blog",
|
||||
"Other Income Detail",
|
||||
"Task",
|
||||
"Setup Control",
|
||||
"Expense Claim Type",
|
||||
"Website Product Category",
|
||||
"Stock",
|
||||
"Profile",
|
||||
"Authorization Control",
|
||||
"Item Quality Inspection Parameter",
|
||||
"MIS Control",
|
||||
"Leave Block List Allow",
|
||||
"Style Settings",
|
||||
"Trash Control",
|
||||
"Salary Structure Earning",
|
||||
"DocType",
|
||||
"SMS Parameter",
|
||||
"Maintenance Schedule",
|
||||
"Event User",
|
||||
"Stock Reconciliation",
|
||||
"Purchase Receipt",
|
||||
"Address",
|
||||
"About Us Settings",
|
||||
"Job Applicant",
|
||||
"Manufacturing",
|
||||
"Opportunity",
|
||||
"Customize Form",
|
||||
"Customer",
|
||||
"Sales Team",
|
||||
"Top Bar Item",
|
||||
"Custom Script",
|
||||
"Country",
|
||||
"DefaultValue",
|
||||
"Modules",
|
||||
"Production Plan Sales Order",
|
||||
"Stock UOM Replace Utility",
|
||||
"Production Plan Item",
|
||||
"Holiday List",
|
||||
"Item",
|
||||
"Fiscal Year",
|
||||
"SMS Control",
|
||||
"Activity",
|
||||
"Journal Voucher Detail",
|
||||
"Project Milestone",
|
||||
"Purchase Order",
|
||||
"Page",
|
||||
"Leave Application",
|
||||
"Stock Entry Detail",
|
||||
"Live Chat",
|
||||
"Item Supplier",
|
||||
"Salary Manager",
|
||||
"Company History",
|
||||
"Website Slideshow Item",
|
||||
"Naming Series Options",
|
||||
"C-Form",
|
||||
"SMS Settings",
|
||||
"SMS Log",
|
||||
"Newsletter",
|
||||
"Warehouse Type",
|
||||
"Workflow Rule",
|
||||
"UserRole"
|
||||
]
|
||||
@@ -1,322 +0,0 @@
|
||||
{
|
||||
"About Us Settings": "\u062d\u0648\u0644 \u0628\u0646\u0627 \u0625\u0639\u062f\u0627\u062f\u0627\u062a",
|
||||
"About Us Team Member": "\u062d\u0648\u0644 \u0639\u0636\u0648 \u0641\u0631\u064a\u0642 \u0628\u0646\u0627",
|
||||
"Account": "\u062d\u0633\u0627\u0628",
|
||||
"Accounts": "\u062d\u0633\u0627\u0628\u0627\u062a",
|
||||
"Activity": "\u0646\u0634\u0627\u0637",
|
||||
"Activity Type": "\u0627\u0644\u0646\u0634\u0627\u0637 \u0646\u0648\u0639",
|
||||
"Address": "\u0639\u0646\u0648\u0627\u0646",
|
||||
"Answer": "\u0625\u062c\u0627\u0628\u0629",
|
||||
"Appraisal": "\u062a\u0642\u064a\u064a\u0645",
|
||||
"Appraisal Goal": "\u062a\u0642\u064a\u064a\u0645 \u0627\u0644\u0647\u062f\u0641",
|
||||
"Appraisal Template": "\u062a\u0642\u064a\u064a\u0645 \u0642\u0627\u0644\u0628",
|
||||
"Appraisal Template Goal": "\u062a\u0642\u064a\u064a\u0645 \u0642\u0627\u0644\u0628 \u0627\u0644\u0647\u062f\u0641",
|
||||
"Attendance": "\u0627\u0644\u062d\u0636\u0648\u0631",
|
||||
"Attendance Control Panel": "\u0627\u0644\u062d\u0636\u0648\u0631 \u0644\u0648\u062d\u0629 \u0627\u0644\u062a\u062d\u0643\u0645",
|
||||
"Authorization Control": "\u0625\u0630\u0646 \u0627\u0644\u062a\u062d\u0643\u0645",
|
||||
"Authorization Rule": "\u0625\u0630\u0646 \u0627\u0644\u0642\u0627\u0639\u062f\u0629",
|
||||
"BOM": "BOM",
|
||||
"BOM Explosion Item": "BOM \u0627\u0646\u0641\u062c\u0627\u0631 \u0627\u0644\u0625\u063a\u0644\u0627\u0642",
|
||||
"BOM Item": "BOM \u0627\u0644\u0645\u062f\u064a\u0646\u0629",
|
||||
"BOM Operation": "BOM \u0639\u0645\u0644\u064a\u0629",
|
||||
"BOM Replace Tool": "BOM \u0627\u0633\u062a\u0628\u062f\u0627\u0644 \u0623\u062f\u0627\u0629",
|
||||
"Bank Reconciliation": "\u0627\u0644\u0628\u0646\u0643 \u0627\u0644\u0645\u0635\u0627\u0644\u062d\u0629",
|
||||
"Bank Reconciliation Detail": "\u0627\u0644\u0628\u0646\u0643 \u0627\u0644\u0645\u0635\u0627\u0644\u062d\u0629 \u062a\u0641\u0627\u0635\u064a\u0644",
|
||||
"Batch": "\u062f\u0641\u0639\u0629",
|
||||
"Bin": "\u0628\u0646",
|
||||
"Blog": "\u0628\u0644\u0648\u0642",
|
||||
"Blog Subscriber": "\u0628\u0644\u0648\u0642 \u0627\u0644\u0645\u0634\u062a\u0631\u0643",
|
||||
"Branch": "\u0641\u0631\u0639",
|
||||
"Brand": "\u0639\u0644\u0627\u0645\u0629 \u062a\u062c\u0627\u0631\u064a\u0629",
|
||||
"Budget Control": "\u0627\u0644\u0645\u064a\u0632\u0627\u0646\u064a\u0629 \u0627\u0644\u062a\u062d\u0643\u0645",
|
||||
"Budget Detail": "\u062a\u0641\u0627\u0635\u064a\u0644 \u0627\u0644\u0645\u064a\u0632\u0627\u0646\u064a\u0629",
|
||||
"Budget Distribution": "\u062a\u0648\u0632\u064a\u0639 \u0627\u0644\u0645\u064a\u0632\u0627\u0646\u064a\u0629",
|
||||
"Budget Distribution Detail": "\u062a\u0648\u0632\u064a\u0639 \u0627\u0644\u0645\u064a\u0632\u0627\u0646\u064a\u0629 \u0627\u0644\u062a\u0641\u0627\u0635\u064a\u0644",
|
||||
"Bulk Email": "\u0627\u0644\u062c\u0632\u0621 \u0627\u0644\u0623\u0643\u0628\u0631 \u0627\u0644\u0628\u0631\u064a\u062f \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a",
|
||||
"Buying": "\u0634\u0631\u0627\u0621",
|
||||
"C-Form": "\u0646\u0645\u0648\u0630\u062c C-",
|
||||
"C-Form Invoice Detail": "C-\u0646\u0645\u0648\u0630\u062c \u062a\u0641\u0627\u0635\u064a\u0644 \u0627\u0644\u0641\u0627\u062a\u0648\u0631\u0629",
|
||||
"Calendar": "\u062a\u0642\u0648\u064a\u0645",
|
||||
"Campaign": "\u062d\u0645\u0644\u0629",
|
||||
"Comment": "\u062a\u0639\u0644\u064a\u0642",
|
||||
"Communication": "\u0627\u062a\u0635\u0627\u0644\u0627\u062a",
|
||||
"Communication Log": "\u0633\u062c\u0644 \u0627\u0644\u0627\u062a\u0635\u0627\u0644\u0627\u062a",
|
||||
"Company": "\u0634\u0631\u0643\u0629",
|
||||
"Company Control": "\u0634\u0631\u0643\u0629 \u0627\u0644\u062a\u062d\u0643\u0645",
|
||||
"Company History": "\u0646\u0628\u0630\u0629 \u0639\u0646 \u062a\u0627\u0631\u064a\u062e \u0627\u0644\u0634\u0631\u0643\u0629",
|
||||
"Contact": "\u0627\u062a\u0635\u0644",
|
||||
"Contact Control": "\u0627\u0644\u0627\u062a\u0635\u0627\u0644 \u0627\u0644\u062a\u062d\u0643\u0645",
|
||||
"Contact Us Settings": "\u0627\u0644\u0627\u062a\u0635\u0627\u0644 \u0628\u0646\u0627 \u0625\u0639\u062f\u0627\u062f\u0627\u062a",
|
||||
"Control Panel": "\u0644\u0648\u062d\u0629 \u0627\u0644\u062a\u062d\u0643\u0645",
|
||||
"Core": "\u062c\u0648\u0647\u0631",
|
||||
"Cost Center": "\u0645\u0631\u0643\u0632 \u0627\u0644\u062a\u0643\u0644\u0641\u0629",
|
||||
"Country": "\u0628\u0644\u062f",
|
||||
"Cross List Item Group": "\u0639\u0628\u0648\u0631 \u0642\u0627\u0626\u0645\u0629 \u0627\u0644\u0641\u0631\u064a\u0642 \u0627\u0644\u0625\u063a\u0644\u0627\u0642",
|
||||
"Currency": "\u0639\u0645\u0644\u0629",
|
||||
"Custom Field": "\u0645\u062e\u0635\u0635 \u0627\u0644\u0645\u064a\u062f\u0627\u0646\u064a\u0629",
|
||||
"Custom Script": "\u0633\u064a\u0646\u0627\u0631\u064a\u0648 \u0645\u062e\u0635\u0635",
|
||||
"Customer": "\u0632\u0628\u0648\u0646",
|
||||
"Customer Group": "\u0645\u062c\u0645\u0648\u0639\u0629 \u0627\u0644\u0639\u0645\u0644\u0627\u0621",
|
||||
"Customer Issue": "\u0627\u0644\u0639\u062f\u062f \u0627\u0644\u0639\u0645\u0644\u0627\u0621",
|
||||
"Customize Form": "\u062a\u062e\u0635\u064a\u0635 \u0646\u0645\u0648\u0630\u062c",
|
||||
"Customize Form Field": "\u062a\u062e\u0635\u064a\u0635 \u062d\u0642\u0644 \u0646\u0645\u0648\u0630\u062c",
|
||||
"Deduction Type": "\u062e\u0635\u0645 \u0646\u0648\u0639",
|
||||
"Default Home Page": "\u0627\u0644\u0635\u0641\u062d\u0629 \u0627\u0644\u0631\u0626\u064a\u0633\u064a\u0629 \u0627\u0644\u0627\u0641\u062a\u0631\u0627\u0636\u064a\u0629",
|
||||
"DefaultValue": "\u0627\u0644\u0627\u0641\u062a\u0631\u0627\u0636\u064a\u0629",
|
||||
"Delivery Note": "\u0645\u0644\u0627\u062d\u0638\u0629 \u0627\u0644\u062a\u0633\u0644\u064a\u0645",
|
||||
"Delivery Note Item": "\u0645\u0644\u0627\u062d\u0638\u0629 \u062a\u0633\u0644\u064a\u0645 \u0627\u0644\u0633\u0644\u0639\u0629",
|
||||
"Delivery Note Packing Item": "\u0645\u0644\u0627\u062d\u0638\u0629 \u0627\u0644\u062a\u0648\u0635\u064a\u0644 \u0627\u0644\u062a\u063a\u0644\u064a\u0641",
|
||||
"Department": "\u0642\u0633\u0645",
|
||||
"Designation": "\u062a\u0639\u064a\u064a\u0646",
|
||||
"DocField": "DocField",
|
||||
"DocPerm": "DocPerm",
|
||||
"DocType": "DOCTYPE",
|
||||
"DocType Label": "DOCTYPE \u062a\u0633\u0645\u064a\u0629",
|
||||
"DocType Mapper": "DOCTYPE \u0645\u062e\u0637\u0637",
|
||||
"Documentation": "\u062a\u0648\u062b\u064a\u0642",
|
||||
"Earning Type": "\u0643\u0633\u0628 \u0646\u0648\u0639",
|
||||
"Email Digest": "\u0627\u0644\u0628\u0631\u064a\u062f \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a \u062f\u0627\u064a\u062c\u0633\u062a",
|
||||
"Email Settings": "\u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u0628\u0631\u064a\u062f \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a",
|
||||
"Employee": "\u0639\u0627\u0645\u0644",
|
||||
"Employee Education": "\u0645\u0648\u0638\u0641 \u0627\u0644\u062a\u0639\u0644\u064a\u0645",
|
||||
"Employee External Work History": "\u0627\u0644\u062a\u0627\u0631\u064a\u062e \u0627\u0644\u0645\u0648\u0638\u0641 \u0627\u0644\u0639\u0645\u0644 \u0627\u0644\u062e\u0627\u0631\u062c\u064a",
|
||||
"Employee Internal Work History": "\u0627\u0644\u062a\u0627\u0631\u064a\u062e \u0627\u0644\u0645\u0648\u0638\u0641 \u0627\u0644\u0639\u0645\u0644 \u0627\u0644\u062f\u0627\u062e\u0644\u064a\u0629",
|
||||
"Employee Training": "\u062a\u062f\u0631\u064a\u0628 \u0627\u0644\u0645\u0648\u0638\u0641\u064a\u0646",
|
||||
"Employment Type": "\u0645\u062c\u0627\u0644 \u0627\u0644\u0639\u0645\u0644",
|
||||
"Event": "\u062d\u062f\u062b",
|
||||
"Event Role": "\u0627\u0644\u062d\u062f\u062b \u0627\u0644\u062f\u0648\u0631",
|
||||
"Event User": "\u062d\u062f\u062b \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645",
|
||||
"Expense Claim": "\u062d\u0633\u0627\u0628 \u0627\u0644\u0645\u0637\u0627\u0644\u0628\u0629",
|
||||
"Expense Claim Detail": "\u062d\u0633\u0627\u0628 \u0627\u0644\u0645\u0637\u0627\u0644\u0628\u0629 \u0627\u0644\u062a\u0641\u0627\u0635\u064a\u0644",
|
||||
"Expense Claim Type": "\u062d\u0633\u0627\u0628 \u0627\u0644\u0645\u0637\u0627\u0644\u0628\u0629 \u0646\u0648\u0639",
|
||||
"Featured Item": "\u0645\u0645\u064a\u0632\u0629",
|
||||
"Features Setup": "\u0645\u064a\u0632\u0627\u062a \u0627\u0644\u0625\u0639\u062f\u0627\u062f",
|
||||
"Feed": "\u0623\u0637\u0639\u0645",
|
||||
"Field Mapper Detail": "\u062a\u0641\u0627\u0635\u064a\u0644 \u0645\u062e\u0637\u0637 \u0627\u0644\u062d\u0642\u0644",
|
||||
"File Data": "\u0645\u0644\u0641 \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a",
|
||||
"Fiscal Year": "\u0627\u0644\u0633\u0646\u0629 \u0627\u0644\u0645\u0627\u0644\u064a\u0629",
|
||||
"Forum": "\u0645\u0646\u062a\u062f\u0649",
|
||||
"GL Control": "GL \u0627\u0644\u062a\u062d\u0643\u0645",
|
||||
"GL Entry": "GL \u0627\u0644\u062f\u062e\u0648\u0644",
|
||||
"GL Mapper": "GL \u0645\u062e\u0637\u0637",
|
||||
"GL Mapper Detail": "GL \u0645\u062e\u0637\u0637 \u062a\u0641\u0635\u064a\u0644\u064a",
|
||||
"Global Defaults": "\u0627\u0641\u062a\u0631\u0627\u0636\u064a\u0627\u062a \u0627\u0644\u0639\u0627\u0644\u0645\u064a\u0629",
|
||||
"Grade": "\u062f\u0631\u062c\u0629",
|
||||
"HR": "HR",
|
||||
"Help": "\u0645\u0633\u0627\u0639\u062f\u0629",
|
||||
"Holiday": "\u0639\u0637\u0644\u0629",
|
||||
"Holiday Block List": "\u0625\u0642\u0627\u0645\u0627\u062a \u0642\u0627\u0626\u0645\u0629",
|
||||
"Holiday Block List Allow": "\u0639\u0637\u0644\u0629 \u0642\u0627\u0626\u0645\u0629 \u0627\u0644\u062d\u0638\u0631 \u0627\u0644\u0633\u0645\u0627\u062d",
|
||||
"Holiday Block List Date": "\u062a\u0627\u0631\u064a\u062e \u0625\u0642\u0627\u0645\u0627\u062a \u0642\u0627\u0626\u0645\u0629",
|
||||
"Holiday List": "\u0639\u0637\u0644\u0629 \u0642\u0627\u0626\u0645\u0629",
|
||||
"Home": "\u0645\u0646\u0632\u0644",
|
||||
"Home Control": "\u0627\u0644\u0635\u0641\u062d\u0629 \u0627\u0644\u0631\u0626\u064a\u0633\u064a\u0629 \u0627\u0644\u062a\u062d\u0643\u0645",
|
||||
"Human Resources": "\u0627\u0644\u0645\u0648\u0627\u0631\u062f \u0627\u0644\u0628\u0634\u0631\u064a\u0629",
|
||||
"Industry Type": "\u0635\u0646\u0627\u0639\u0629 \u0646\u0648\u0639",
|
||||
"Installation Note": "\u0645\u0644\u0627\u062d\u0638\u0629 \u0627\u0644\u062a\u062b\u0628\u064a\u062a",
|
||||
"Installation Note Item": "\u0645\u0644\u0627\u062d\u0638\u0629 \u062a\u062b\u0628\u064a\u062a \u0627\u0644\u0625\u063a\u0644\u0627\u0642",
|
||||
"Item": "\u0628\u0646\u062f",
|
||||
"Item Customer Detail": "\u0627\u0644\u0628\u0646\u062f \u062a\u0641\u0627\u0635\u064a\u0644 \u0627\u0644\u0639\u0645\u0644\u0627\u0621",
|
||||
"Item Group": "\u0627\u0644\u0628\u0646\u062f \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629",
|
||||
"Item Price": "\u0627\u0644\u0628\u0646\u062f \u0627\u0644\u0633\u0639\u0631",
|
||||
"Item Quality Inspection Parameter": "\u0645\u0639\u0644\u0645\u0629 \u0627\u0644\u0628\u0646\u062f \u0627\u0644\u062a\u0641\u062a\u064a\u0634 \u0627\u0644\u062c\u0648\u062f\u0629",
|
||||
"Item Reorder": "\u0627\u0644\u0628\u0646\u062f \u0625\u0639\u0627\u062f\u0629 \u062a\u0631\u062a\u064a\u0628",
|
||||
"Item Supplier": "\u0627\u0644\u0628\u0646\u062f \u0645\u0632\u0648\u062f",
|
||||
"Item Tax": "\u0627\u0644\u0628\u0646\u062f \u0627\u0644\u0636\u0631\u0627\u0626\u0628",
|
||||
"Item Website Specification": "\u0627\u0644\u0628\u0646\u062f \u0645\u0648\u0627\u0635\u0641\u0627\u062a \u0627\u0644\u0645\u0648\u0642\u0639",
|
||||
"Job Applicant": "\u0637\u0627\u0644\u0628 \u0627\u0644\u0639\u0645\u0644",
|
||||
"Job Opening": "\u0627\u0641\u062a\u062a\u0627\u062d \u0627\u0644\u0639\u0645\u0644",
|
||||
"Jobs Email Settings": "\u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u0628\u0631\u064a\u062f \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a \u0648\u0638\u0627\u0626\u0641",
|
||||
"Journal Voucher": "\u0645\u062c\u0644\u0629 \u0642\u0633\u064a\u0645\u0629",
|
||||
"Journal Voucher Detail": "\u0645\u062c\u0644\u0629 \u0642\u0633\u064a\u0645\u0629 \u0627\u0644\u062a\u0641\u0627\u0635\u064a\u0644",
|
||||
"Knowledge Base": "\u0642\u0627\u0639\u062f\u0629 \u0627\u0644\u0645\u0639\u0631\u0641\u0629",
|
||||
"Landed Cost Item": "\u0647\u0628\u0637\u062a \u062a\u0643\u0644\u0641\u0629 \u0627\u0644\u0633\u0644\u0639\u0629",
|
||||
"Landed Cost Purchase Receipt": "\u0647\u0628\u0637\u062a \u0627\u0633\u062a\u0644\u0627\u0645 \u062a\u0643\u0644\u0641\u0629 \u0627\u0644\u0634\u0631\u0627\u0621",
|
||||
"Landed Cost Wizard": "\u0647\u0628\u0637\u062a \u062a\u0643\u0644\u0641\u0629 \u0645\u0639\u0627\u0644\u062c",
|
||||
"Lead": "\u0642\u064a\u0627\u062f\u0629",
|
||||
"Leave Allocation": "\u062a\u0631\u0643 \u062a\u0648\u0632\u064a\u0639",
|
||||
"Leave Application": "\u062a\u0631\u0643 \u0627\u0644\u062a\u0637\u0628\u064a\u0642",
|
||||
"Leave Block List": "\u062a\u0631\u0643 \u0642\u0627\u0626\u0645\u0629 \u0627\u0644\u062d\u0638\u0631",
|
||||
"Leave Block List Allow": "\u062a\u0631\u0643 \u0642\u0627\u0626\u0645\u0629 \u0627\u0644\u062d\u0638\u0631 \u0627\u0644\u0633\u0645\u0627\u062d",
|
||||
"Leave Block List Date": "\u062a\u0631\u0643 \u0628\u0644\u0648\u0643 \u062a\u0627\u0631\u064a\u062e \u0642\u0627\u0626\u0645\u0629",
|
||||
"Leave Control Panel": "\u062a\u0631\u0643 \u0644\u0648\u062d\u0629 \u0627\u0644\u062a\u062d\u0643\u0645",
|
||||
"Leave Type": "\u062a\u0631\u0643 \u0646\u0648\u0639",
|
||||
"Letter Head": "\u0631\u0633\u0627\u0644\u0629 \u0631\u0626\u064a\u0633",
|
||||
"Live Chat": "\u062d\u062c\u0632\u064a",
|
||||
"MIS Control": "MIS \u0627\u0644\u062a\u062d\u0643\u0645",
|
||||
"Maintenance Schedule": "\u0635\u064a\u0627\u0646\u0629 \u062c\u062f\u0648\u0644",
|
||||
"Maintenance Schedule Detail": "\u0635\u064a\u0627\u0646\u0629 \u062c\u062f\u0648\u0644 \u0627\u0644\u062a\u0641\u0627\u0635\u064a\u0644",
|
||||
"Maintenance Schedule Item": "\u0635\u064a\u0627\u0646\u0629 \u062c\u062f\u0648\u0644 \u0627\u0644\u0633\u0644\u0639\u0629",
|
||||
"Maintenance Visit": "\u0635\u064a\u0627\u0646\u0629 \u0632\u064a\u0627\u0631\u0629",
|
||||
"Maintenance Visit Purpose": "\u0635\u064a\u0627\u0646\u0629 \u0632\u064a\u0627\u0631\u0629 \u0627\u0644\u063a\u0631\u0636",
|
||||
"Manufacturing": "\u062a\u0635\u0646\u064a\u0639",
|
||||
"Market Segment": "\u0633\u0648\u0642 \u0627\u0644\u0642\u0637\u0627\u0639",
|
||||
"Material Request": "\u0637\u0644\u0628 \u0627\u0644\u0645\u0648\u0627\u062f",
|
||||
"Material Request Item": "\u0637\u0644\u0628 \u0627\u0644\u0645\u0648\u0627\u062f \u0627\u0644\u0625\u063a\u0644\u0627\u0642",
|
||||
"Messages": "\u0631\u0633\u0627\u0626\u0644",
|
||||
"Mode of Payment": "\u0637\u0631\u064a\u0642\u0629 \u0627\u0644\u062f\u0641\u0639",
|
||||
"Module Def": "\u0648\u062d\u062f\u0629 \u0645\u0648\u0627\u0637\u0646\u0647",
|
||||
"Modules": "\u0648\u062d\u062f\u0627\u062a",
|
||||
"Multi Ledger Report Detail": "\u0645\u0648\u0636\u0648\u0639 \u062a\u0642\u0631\u064a\u0631 \u062a\u0641\u0635\u064a\u0644\u064a \u0644\u064a\u062f\u062c\u0631",
|
||||
"My Settings": "\u0627\u0644\u0625\u0639\u062f\u0627\u062f\u0627\u062a",
|
||||
"Naming Series": "\u062a\u0633\u0645\u064a\u0629 \u0627\u0644\u0633\u0644\u0633\u0644\u0629",
|
||||
"Naming Series Options": "\u062e\u064a\u0627\u0631\u0627\u062a \u062a\u0633\u0645\u064a\u0629 \u0627\u0644\u0633\u0644\u0633\u0644\u0629",
|
||||
"Newsletter": "\u0627\u0644\u0646\u0634\u0631\u0629 \u0627\u0644\u0625\u062e\u0628\u0627\u0631\u064a\u0629",
|
||||
"Notification Control": "\u0625\u0639\u0644\u0627\u0645 \u0627\u0644\u062a\u062d\u0643\u0645",
|
||||
"Opportunity": "\u0641\u0631\u0635\u0629",
|
||||
"Opportunity Item": "\u0641\u0631\u0635\u0629 \u0627\u0644\u0633\u0644\u0639\u0629",
|
||||
"Other Income Detail": "\u062a\u0641\u0627\u0635\u064a\u0644 \u0627\u0644\u0625\u064a\u0631\u0627\u062f\u0627\u062a \u0627\u0644\u0623\u062e\u0631\u0649",
|
||||
"POS Setting": "POS \u0625\u0639\u062f\u0627\u062f",
|
||||
"Packing Slip": "\u0632\u0644\u0629 \u0627\u0644\u062a\u0639\u0628\u0626\u0629",
|
||||
"Packing Slip Item": "\u0627\u0644\u062a\u0639\u0628\u0626\u0629 \u0627\u0644\u0625\u063a\u0644\u0627\u0642 \u0632\u0644\u0629",
|
||||
"Page": "\u0635\u0641\u062d\u0629",
|
||||
"Page Role": "\u0627\u0644\u0635\u0641\u062d\u0629 \u0627\u0644\u062f\u0648\u0631",
|
||||
"Patch Log": "\u0633\u062c\u0644 \u0627\u0644\u062a\u0635\u062d\u064a\u062d",
|
||||
"Payment to Invoice Matching Tool": "\u062f\u0641\u0639 \u0627\u0644\u0641\u0627\u062a\u0648\u0631\u0629 \u0625\u0644\u0649 \u0623\u062f\u0627\u0629 \u0645\u0637\u0627\u0628\u0642\u0629",
|
||||
"Payment to Invoice Matching Tool Detail": "\u062f\u0641\u0639 \u0627\u0644\u0641\u0627\u062a\u0648\u0631\u0629 \u0644\u062a\u0641\u0627\u0635\u064a\u0644 \u0623\u062f\u0627\u0629 \u0645\u0637\u0627\u0628\u0642\u0629",
|
||||
"Period Closing Voucher": "\u0641\u062a\u0631\u0629 \u0627\u0644\u0625\u063a\u0644\u0627\u0642 \u0642\u0633\u064a\u0645\u0629",
|
||||
"Permission Control": "\u0625\u0630\u0646 \u0627\u0644\u062a\u062d\u0643\u0645",
|
||||
"Plot Control": "\u0645\u0624\u0627\u0645\u0631\u0629 \u0627\u0644\u062a\u062d\u0643\u0645",
|
||||
"Price List": "\u0642\u0627\u0626\u0645\u0629 \u0627\u0644\u0623\u0633\u0639\u0627\u0631",
|
||||
"Print Format": "\u0637\u0628\u0627\u0639\u0629 \u0634\u0643\u0644",
|
||||
"Print Heading": "\u0637\u0628\u0627\u0639\u0629 \u0639\u0646\u0648\u0627\u0646",
|
||||
"Product": "\u0646\u062a\u0627\u062c",
|
||||
"Product Group": "\u0645\u062c\u0645\u0648\u0639\u0629 \u0627\u0644\u0645\u0646\u062a\u062c\u0627\u062a",
|
||||
"Product Settings": "\u0627\u0644\u0645\u0646\u062a\u062c \u0625\u0639\u062f\u0627\u062f\u0627\u062a",
|
||||
"Production": "\u0627\u0644\u0625\u0646\u062a\u0627\u062c",
|
||||
"Production Order": "\u0627\u0644\u0625\u0646\u062a\u0627\u062c \u062a\u0631\u062a\u064a\u0628",
|
||||
"Production Plan Item": "\u062e\u0637\u0629 \u0625\u0646\u062a\u0627\u062c \u0627\u0644\u0633\u0644\u0639\u0629",
|
||||
"Production Plan Sales Order": "\u0623\u0645\u0631 \u0627\u0644\u0625\u0646\u062a\u0627\u062c \u062e\u0637\u0629 \u0627\u0644\u0645\u0628\u064a\u0639\u0627\u062a",
|
||||
"Production Planning Tool": "\u0625\u0646\u062a\u0627\u062c \u0623\u062f\u0627\u0629 \u062a\u062e\u0637\u064a\u0637 \u0627\u0644\u0645\u0646\u0632\u0644",
|
||||
"Products Settings": "\u0627\u0644\u0645\u0646\u062a\u062c\u0627\u062a \u0625\u0639\u062f\u0627\u062f\u0627\u062a",
|
||||
"Profile": "\u0627\u0644\u0645\u0644\u0641 \u0627\u0644\u0634\u062e\u0635\u064a",
|
||||
"Profile Control": "\u0627\u0644\u0645\u0644\u0641 \u0627\u0644\u0634\u062e\u0635\u064a \u0627\u0644\u062a\u062d\u0643\u0645",
|
||||
"Project": "\u0645\u0634\u0631\u0648\u0639",
|
||||
"Project Activity": "\u0645\u0634\u0631\u0648\u0639 \u0646\u0634\u0627\u0637",
|
||||
"Project Activity Update": "\u0645\u0634\u0631\u0648\u0639 \u062a\u062d\u062f\u064a\u062b \u0646\u0634\u0627\u0637",
|
||||
"Project Control": "\u0645\u0634\u0631\u0648\u0639 \u0627\u0644\u062a\u062d\u0643\u0645",
|
||||
"Project Milestone": "\u0645\u0634\u0631\u0648\u0639 \u062a\u0635\u0646\u064a\u0641",
|
||||
"Projects": "\u0645\u0634\u0627\u0631\u064a\u0639",
|
||||
"Property Setter": "\u0627\u0644\u0645\u0644\u0643\u064a\u0629 \u0648\u0627\u0636\u0639\u0629",
|
||||
"Purchase Common": "\u0634\u0631\u0627\u0621 \u0627\u0644\u0645\u0634\u062a\u0631\u0643\u0629",
|
||||
"Purchase Invoice": "\u0634\u0631\u0627\u0621 \u0627\u0644\u0641\u0627\u062a\u0648\u0631\u0629",
|
||||
"Purchase Invoice Advance": "\u0641\u0627\u062a\u0648\u0631\u0629 \u0627\u0644\u0634\u0631\u0627\u0621 \u0645\u0642\u062f\u0645\u0627",
|
||||
"Purchase Invoice Item": "\u0634\u0631\u0627\u0621 \u0627\u0644\u0633\u0644\u0639\u0629 \u0627\u0644\u0641\u0627\u062a\u0648\u0631\u0629",
|
||||
"Purchase Order": "\u0623\u0645\u0631 \u0627\u0644\u0634\u0631\u0627\u0621",
|
||||
"Purchase Order Item": "\u0634\u0631\u0627\u0621 \u0627\u0644\u0633\u0644\u0639\u0629 \u062a\u0631\u062a\u064a\u0628",
|
||||
"Purchase Order Item Supplied": "\u0634\u0631\u0627\u0621 \u0627\u0644\u0633\u0644\u0639\u0629 \u062a\u0631\u062a\u064a\u0628 \u0627\u0644\u0645\u0648\u0631\u062f\u0629",
|
||||
"Purchase Receipt": "\u0634\u0631\u0627\u0621 \u0627\u0633\u062a\u0644\u0627\u0645",
|
||||
"Purchase Receipt Item": "\u0634\u0631\u0627\u0621 \u0627\u0644\u0633\u0644\u0639\u0629 \u0627\u0633\u062a\u0644\u0627\u0645",
|
||||
"Purchase Receipt Item Supplied": "\u0634\u0631\u0627\u0621 \u0627\u0644\u0633\u0644\u0639\u0629 \u0627\u0633\u062a\u0644\u0627\u0645 \u0627\u0644\u0645\u0648\u0631\u062f\u0629",
|
||||
"Purchase Request": "\u0637\u0644\u0628 \u0634\u0631\u0627\u0621",
|
||||
"Purchase Request Item": "\u0634\u0631\u0627\u0621 \u0627\u0644\u0633\u0644\u0639\u0629 \u0637\u0644\u0628",
|
||||
"Purchase Taxes and Charges": "\u0627\u0644\u0636\u0631\u0627\u0626\u0628 \u0648\u0627\u0644\u0631\u0633\u0648\u0645 \u0627\u0644\u0634\u0631\u0627\u0621",
|
||||
"Purchase Taxes and Charges Master": "\u0636\u0631\u0627\u0626\u0628 \u0627\u0644\u0645\u0634\u062a\u0631\u064a\u0627\u062a \u0648\u0631\u0633\u0648\u0645 \u0645\u0627\u062c\u0633\u062a\u064a\u0631",
|
||||
"Quality Inspection": "\u0641\u062d\u0635 \u0627\u0644\u062c\u0648\u062f\u0629",
|
||||
"Quality Inspection Reading": "\u062c\u0648\u062f\u0629 \u0627\u0644\u062a\u0641\u062a\u064a\u0634 \u0627\u0644\u0642\u0631\u0627\u0621\u0629",
|
||||
"Question": "\u0633\u0624\u0627\u0644",
|
||||
"Quotation": "\u0627\u0642\u062a\u0628\u0627\u0633",
|
||||
"Quotation Item": "\u0627\u0642\u062a\u0628\u0627\u0633 \u0627\u0644\u0625\u063a\u0644\u0627\u0642",
|
||||
"Quotation Lost Reason": "\u0641\u0642\u062f\u062a \u0627\u0642\u062a\u0628\u0627\u0633 \u0627\u0644\u0633\u0628\u0628",
|
||||
"Related Page": "\u0627\u0644\u0635\u0641\u062d\u0629 \u0630\u0627\u062a \u0627\u0644\u0635\u0644\u0629",
|
||||
"Rename Tool": "\u0625\u0639\u0627\u062f\u0629 \u062a\u0633\u0645\u064a\u0629 \u0623\u062f\u0627\u0629",
|
||||
"Report": "\u062a\u0642\u0631\u064a\u0631",
|
||||
"Role": "\u062f\u0648\u0631",
|
||||
"SMS Center": "\u0645\u0631\u0643\u0632 SMS",
|
||||
"SMS Control": "SMS \u062a\u062d\u0643\u0645",
|
||||
"SMS Log": "SMS \u062f\u062e\u0648\u0644",
|
||||
"SMS Parameter": "SMS \u0645\u0639\u0644\u0645\u0629",
|
||||
"SMS Receiver": "SMS \u0627\u0633\u062a\u0642\u0628\u0627\u0644",
|
||||
"SMS Settings": "SMS \u0625\u0639\u062f\u0627\u062f\u0627\u062a",
|
||||
"Salary Manager": "\u0631\u0627\u062a\u0628 \u0645\u062f\u064a\u0631",
|
||||
"Salary Slip": "\u0627\u0644\u0631\u0627\u062a\u0628 \u0632\u0644\u0629",
|
||||
"Salary Slip Deduction": "\u0632\u0644\u0629 \u0627\u0644\u0631\u0627\u062a\u0628 \u062e\u0635\u0645",
|
||||
"Salary Slip Earning": "\u0632\u0644\u0629 \u0627\u0644\u0631\u0627\u062a\u0628 \u0643\u0633\u0628",
|
||||
"Salary Structure": "\u0647\u064a\u0643\u0644 \u0627\u0644\u0645\u0631\u062a\u0628\u0627\u062a",
|
||||
"Salary Structure Deduction": "\u0647\u064a\u0643\u0644 \u0627\u0644\u0645\u0631\u062a\u0628\u0627\u062a \u062e\u0635\u0645",
|
||||
"Salary Structure Earning": "\u0647\u064a\u0643\u0644 \u0627\u0644\u0631\u0648\u0627\u062a\u0628 \u0643\u0633\u0628",
|
||||
"Sales BOM": "\u0645\u0628\u064a\u0639\u0627\u062a BOM",
|
||||
"Sales BOM Item": "\u0645\u0628\u064a\u0639\u0627\u062a \u0627\u0644\u0633\u0644\u0639\u0629 BOM",
|
||||
"Sales Browser Control": "\u0645\u0628\u064a\u0639\u0627\u062a \u0645\u062a\u0635\u0641\u062d \u0627\u0644\u062a\u062d\u0643\u0645",
|
||||
"Sales Common": "\u0645\u0628\u064a\u0639\u0627\u062a \u0627\u0644\u0645\u0634\u062a\u0631\u0643\u0629",
|
||||
"Sales Email Settings": "\u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u0628\u0631\u064a\u062f \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a \u0645\u0628\u064a\u0639\u0627\u062a",
|
||||
"Sales Invoice": "\u0641\u0627\u062a\u0648\u0631\u0629 \u0645\u0628\u064a\u0639\u0627\u062a",
|
||||
"Sales Invoice Advance": "\u0641\u0627\u062a\u0648\u0631\u0629 \u0645\u0628\u064a\u0639\u0627\u062a \u0627\u0644\u0645\u0642\u062f\u0645\u0629",
|
||||
"Sales Invoice Item": "\u0641\u0627\u062a\u0648\u0631\u0629 \u0645\u0628\u064a\u0639\u0627\u062a \u0627\u0644\u0633\u0644\u0639\u0629",
|
||||
"Sales Order": "\u062a\u0631\u062a\u064a\u0628 \u0627\u0644\u0645\u0628\u064a\u0639\u0627\u062a",
|
||||
"Sales Order Item": "\u062a\u0631\u062a\u064a\u0628 \u0627\u0644\u0645\u0628\u064a\u0639\u0627\u062a \u0627\u0644\u0625\u063a\u0644\u0627\u0642",
|
||||
"Sales Partner": "\u0645\u0628\u064a\u0639\u0627\u062a \u0627\u0644\u0634\u0631\u064a\u0643",
|
||||
"Sales Person": "\u0645\u0628\u064a\u0639\u0627\u062a \u0634\u062e\u0635",
|
||||
"Sales Taxes and Charges": "\u0627\u0644\u0636\u0631\u0627\u0626\u0628 \u0639\u0644\u0649 \u0627\u0644\u0645\u0628\u064a\u0639\u0627\u062a \u0648\u0627\u0644\u0631\u0633\u0648\u0645",
|
||||
"Sales Taxes and Charges Master": "\u0627\u0644\u0636\u0631\u0627\u0626\u0628 \u0639\u0644\u0649 \u0627\u0644\u0645\u0628\u064a\u0639\u0627\u062a \u0648\u0631\u0633\u0648\u0645 \u0645\u0627\u062c\u0633\u062a\u064a\u0631",
|
||||
"Sales Team": "\u0641\u0631\u064a\u0642 \u0627\u0644\u0645\u0628\u064a\u0639\u0627\u062a",
|
||||
"Sales and Purchase Return Item": "\u0645\u0628\u064a\u0639\u0627\u062a \u0648\u0634\u0631\u0627\u0621 \u0627\u0644\u0633\u0644\u0639\u0629 \u0627\u0644\u0639\u0648\u062f\u0629",
|
||||
"Sales and Purchase Return Tool": "\u0645\u0628\u064a\u0639\u0627\u062a \u0648\u0634\u0631\u0627\u0621 \u0623\u062f\u0627\u0629 \u0627\u0644\u0639\u0648\u062f\u0629",
|
||||
"Sandbox": "\u0631\u0645\u0644",
|
||||
"Scheduler Log": "\u062c\u062f\u0648\u0644\u0629 \u062f\u062e\u0648\u0644",
|
||||
"Search Criteria": "\u0645\u0639\u0627\u064a\u064a\u0631 \u0627\u0644\u0628\u062d\u062b",
|
||||
"Selling": "\u0628\u064a\u0639",
|
||||
"Serial No": "\u0627\u0644\u0645\u0633\u0644\u0633\u0644 \u0644\u0627",
|
||||
"Series Detail": "\u0633\u0644\u0633\u0644\u0629 \u0627\u0644\u062a\u0641\u0627\u0635\u064a\u0644",
|
||||
"Setup": "\u0627\u0644\u0625\u0639\u062f\u0627\u062f",
|
||||
"Setup Control": "\u0625\u0639\u062f\u0627\u062f \u0627\u0644\u062a\u062d\u0643\u0645",
|
||||
"Shipping Address": "\u0639\u0646\u0648\u0627\u0646 \u0627\u0644\u0634\u062d\u0646",
|
||||
"State": "\u062f\u0648\u0644\u0629",
|
||||
"Stock": "\u0627\u0644\u0623\u0648\u0631\u0627\u0642 \u0627\u0644\u0645\u0627\u0644\u064a\u0629",
|
||||
"Stock Entry": "\u0627\u0644\u0623\u0633\u0647\u0645 \u0627\u0644\u062f\u062e\u0648\u0644",
|
||||
"Stock Entry Detail": "\u0627\u0644\u0623\u0633\u0647\u0645 \u0625\u062f\u062e\u0627\u0644 \u0627\u0644\u062a\u0641\u0627\u0635\u064a\u0644",
|
||||
"Stock Ledger": "\u0627\u0644\u0623\u0633\u0647\u0645 \u0644\u064a\u062f\u062c\u0631",
|
||||
"Stock Ledger Entry": "\u0627\u0644\u0623\u0633\u0647\u0645 \u0644\u064a\u062f\u062c\u0631 \u0627\u0644\u062f\u062e\u0648\u0644",
|
||||
"Stock Reconciliation": "\u0627\u0644\u0623\u0633\u0647\u0645 \u0627\u0644\u0645\u0635\u0627\u0644\u062d\u0629",
|
||||
"Stock UOM Replace Utility": "\u0627\u0644\u0623\u0633\u0647\u0645 \u0623\u062f\u0627\u0629 \u0627\u0633\u062a\u0628\u062f\u0627\u0644 UOM",
|
||||
"Style Settings": "\u0646\u0645\u0637 \u0627\u0644\u0636\u0628\u0637",
|
||||
"Supplier": "\u0645\u0632\u0648\u062f",
|
||||
"Supplier Quotation": "\u0627\u0642\u062a\u0628\u0627\u0633 \u0627\u0644\u0645\u0648\u0631\u062f",
|
||||
"Supplier Quotation Item": "\u0627\u0644\u0645\u0648\u0631\u062f \u0627\u0642\u062a\u0628\u0627\u0633 \u0627\u0644\u0625\u063a\u0644\u0627\u0642",
|
||||
"Supplier Type": "\u0627\u0644\u0645\u0648\u0631\u062f \u0646\u0648\u0639",
|
||||
"Support": "\u062f\u0639\u0645",
|
||||
"Support Ticket": "\u062a\u0630\u0643\u0631\u0629 \u062f\u0639\u0645",
|
||||
"System Console": "\u0646\u0638\u0627\u0645 \u0648\u062d\u062f\u0629 \u0627\u0644\u062a\u062d\u0643\u0645",
|
||||
"Table Mapper Detail": "\u0627\u0644\u062c\u062f\u0648\u0644 \u0645\u062e\u0637\u0637 \u062a\u0641\u0635\u064a\u0644\u064a",
|
||||
"Tag": "\u0628\u0637\u0627\u0642\u0629",
|
||||
"Target Detail": "\u0627\u0644\u0647\u062f\u0641 \u0627\u0644\u062a\u0641\u0627\u0635\u064a\u0644",
|
||||
"Task": "\u0645\u0647\u0645\u0629",
|
||||
"Terms and Conditions": "\u0627\u0644\u0634\u0631\u0648\u0637 \u0648\u0627\u0644\u0623\u062d\u0643\u0627\u0645",
|
||||
"Territory": "\u0625\u0642\u0644\u064a\u0645",
|
||||
"Timesheet": "\u0633\u0627\u0639\u0627\u062a \u0627\u0644\u0639\u0645\u0644",
|
||||
"Timesheet Detail": "\u0627\u0644\u062c\u062f\u0648\u0644 \u0627\u0644\u0632\u0645\u0646\u064a \u0627\u0644\u062a\u0641\u0627\u0635\u064a\u0644",
|
||||
"To Do": "\u0647\u0644 \u0644",
|
||||
"ToDo": "\u0642\u0627\u0626\u0645\u0629 \u0627\u0644\u0645\u0647\u0627\u0645",
|
||||
"Top Bar Item": "\u0623\u0641\u0636\u0644 \u0634\u0631\u064a\u0637 \u0627\u0644\u0625\u063a\u0644\u0627\u0642",
|
||||
"Trash Control": "\u0627\u0644\u0642\u0645\u0627\u0645\u0629 \u0627\u0644\u062a\u062d\u0643\u0645",
|
||||
"Trend Analyzer Control": "\u0627\u0644\u0627\u062a\u062c\u0627\u0647 \u0645\u062d\u0644\u0644 \u0627\u0644\u062a\u062d\u0643\u0645",
|
||||
"UOM": "UOM",
|
||||
"UOM Conversion Detail": "UOM \u062a\u062d\u0648\u064a\u0644 \u0627\u0644\u062a\u0641\u0627\u0635\u064a\u0644",
|
||||
"Unread Messages": "\u0631\u0633\u0627\u0626\u0644 \u063a\u064a\u0631 \u0645\u0642\u0631\u0648\u0621\u0629",
|
||||
"Update Delivery Date": "\u062a\u062d\u062f\u064a\u062b \u062a\u0627\u0631\u064a\u062e \u0627\u0644\u062a\u0633\u0644\u064a\u0645",
|
||||
"UserRole": "UserRole",
|
||||
"Utilities": "\u062e\u062f\u0645\u0627\u062a",
|
||||
"Valuation Control": "\u062a\u0642\u064a\u064a\u0645 \u0645\u0631\u0627\u0642\u0628\u0629",
|
||||
"Warehouse": "\u0645\u0633\u062a\u0648\u062f\u0639",
|
||||
"Warehouse Type": "\u0645\u0633\u062a\u0648\u062f\u0639 \u0646\u0648\u0639",
|
||||
"Warehouse User": "\u0645\u0633\u062a\u0648\u062f\u0639 \u0627\u0644\u0639\u0636\u0648",
|
||||
"Web Page": "\u0635\u0641\u062d\u0629 \u0639\u0644\u0649 \u0627\u0644\u0625\u0646\u062a\u0631\u0646\u062a",
|
||||
"Website": "\u0627\u0644\u0645\u0648\u0642\u0639",
|
||||
"Website Item Group": "\u0645\u0648\u0642\u0639 \u0627\u0644\u0633\u0644\u0639\u0629 \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629",
|
||||
"Website Product Category": "\u0627\u0644\u0645\u0648\u0642\u0639 \u0641\u0626\u0629 \u0627\u0644\u0645\u0646\u062a\u062c",
|
||||
"Website Script": "\u0627\u0644\u0645\u0648\u0642\u0639 \u0633\u0643\u0631\u0628\u062a",
|
||||
"Website Settings": "\u0645\u0648\u0642\u0639 \u0625\u0639\u062f\u0627\u062f\u0627\u062a",
|
||||
"Website Slideshow": "\u0645\u0648\u0642\u0639 \u0639\u0631\u0636 \u0627\u0644\u0634\u0631\u0627\u0626\u062d",
|
||||
"Website Slideshow Item": "\u0645\u0648\u0642\u0639 \u0627\u0644\u0633\u0644\u0639\u0629 \u0639\u0631\u0636 \u0634\u0631\u0627\u0626\u062d",
|
||||
"Workflow": "\u0633\u064a\u0631 \u0627\u0644\u0639\u0645\u0644",
|
||||
"Workflow Action": "\u0633\u064a\u0631 \u0627\u0644\u0639\u0645\u0644 \u0627\u0644\u0639\u0645\u0644",
|
||||
"Workflow Action Detail": "\u062a\u0641\u0627\u0635\u064a\u0644 \u0633\u064a\u0631 \u0627\u0644\u0639\u0645\u0644 \u0627\u0644\u0639\u0645\u0644",
|
||||
"Workflow Document State": "\u0633\u064a\u0631 \u0627\u0644\u0639\u0645\u0644 \u0627\u0644\u0648\u062b\u064a\u0642\u0629 \u0627\u0644\u062f\u0648\u0644\u0629",
|
||||
"Workflow Engine": "\u0633\u064a\u0631 \u0627\u0644\u0639\u0645\u0644 \u0627\u0644\u0645\u062d\u0631\u0643",
|
||||
"Workflow Rule": "\u0627\u0644\u0642\u0627\u0639\u062f\u0629 \u0633\u064a\u0631 \u0627\u0644\u0639\u0645\u0644",
|
||||
"Workflow Rule Detail": "\u062a\u0641\u0627\u0635\u064a\u0644 \u0633\u064a\u0631 \u0627\u0644\u0639\u0645\u0644 \u0627\u0644\u0642\u0627\u0639\u062f\u0629",
|
||||
"Workflow State": "\u0627\u0644\u062f\u0648\u0644\u0629 \u0633\u064a\u0631 \u0627\u0644\u0639\u0645\u0644",
|
||||
"Workflow Transition": "\u0627\u0644\u0627\u0646\u062a\u0642\u0627\u0644 \u0633\u064a\u0631 \u0627\u0644\u0639\u0645\u0644",
|
||||
"Workstation": "\u0645\u062d\u0637\u0629 \u0627\u0644\u0639\u0645\u0644",
|
||||
"test": "\u0627\u062e\u062a\u0628\u0627\u0631"
|
||||
}
|
||||
@@ -1,315 +0,0 @@
|
||||
{
|
||||
"About Us Settings": "\u00dcber uns Settings",
|
||||
"About Us Team Member": "\u00dcber uns Team Member",
|
||||
"Account": "Konto",
|
||||
"Accounts": "Konten",
|
||||
"Activity": "Aktivit\u00e4t",
|
||||
"Activity Type": "Art der T\u00e4tigkeit",
|
||||
"Address": "Adresse",
|
||||
"Answer": "Beantworten",
|
||||
"Appraisal": "Bewertung",
|
||||
"Appraisal Goal": "Bewertung Goal",
|
||||
"Appraisal Template": "Bewertung Template",
|
||||
"Appraisal Template Goal": "Bewertung Template Goal",
|
||||
"Attendance": "Teilnahme",
|
||||
"Attendance Control Panel": "Teilnahme Control Panel",
|
||||
"Authorization Control": "Authorization Control",
|
||||
"Authorization Rule": "Autorisierungsregel",
|
||||
"BOM": "BOM",
|
||||
"BOM Explosion Item": "St\u00fccklistenaufl\u00f6sung Artikel",
|
||||
"BOM Item": "St\u00fccklistenposition",
|
||||
"BOM Operation": "BOM Betrieb",
|
||||
"BOM Replace Tool": "BOM Replace Tool",
|
||||
"Bank Reconciliation": "Kontenabstimmung",
|
||||
"Bank Reconciliation Detail": "Kontenabstimmung Details",
|
||||
"Batch": "Stapel",
|
||||
"Bin": "Kasten",
|
||||
"Blog": "Blog",
|
||||
"Blog Subscriber": "Blog Subscriber",
|
||||
"Branch": "Zweig",
|
||||
"Brand": "Marke",
|
||||
"Budget Control": "Budget Control",
|
||||
"Budget Detail": "Budget Detailansicht",
|
||||
"Budget Distribution": "Budget Verteilung",
|
||||
"Budget Distribution Detail": "Budget Verteilung Detailansicht",
|
||||
"Bulk Email": "Bulk Email",
|
||||
"Buying": "Kauf",
|
||||
"C-Form": "C-Form",
|
||||
"C-Form Invoice Detail": "C-Form Rechnungsdetails",
|
||||
"Calendar": "Kalender",
|
||||
"Campaign": "Kampagne",
|
||||
"Comment": "Kommentar",
|
||||
"Communication": "Kommunikation",
|
||||
"Communication Log": "Communication Log",
|
||||
"Company": "Firma",
|
||||
"Company Control": "Firma Control",
|
||||
"Company History": "Unternehmensgeschichte",
|
||||
"Contact": "Kontakt",
|
||||
"Contact Control": "Kontakt Kontrolle",
|
||||
"Contact Us Settings": "Kontakt Settings",
|
||||
"Control Panel": "Control Panel",
|
||||
"Core": "Kern",
|
||||
"Cost Center": "Kostenstellenrechnung",
|
||||
"Country": "Land",
|
||||
"Currency": "W\u00e4hrung",
|
||||
"Custom Field": "Custom Field",
|
||||
"Custom Script": "Custom Script",
|
||||
"Customer": "Kunde",
|
||||
"Customer Group": "Customer Group",
|
||||
"Customer Issue": "Das Anliegen des Kunden",
|
||||
"Customize Form": "Formular anpassen",
|
||||
"Customize Form Field": "Passen Form Field",
|
||||
"Deduction Type": "Abzug Typ",
|
||||
"Default Home Page": "Standard Home Page",
|
||||
"DefaultValue": "DefaultValue",
|
||||
"Delivery Note": "Lieferschein",
|
||||
"Delivery Note Item": "Lieferscheinposition",
|
||||
"Delivery Note Packing Item": "Lieferschein Verpackung Artikel",
|
||||
"Department": "Abteilung",
|
||||
"Designation": "Bezeichnung",
|
||||
"DocField": "DocField",
|
||||
"DocPerm": "DocPerm",
|
||||
"DocType": "DOCTYPE",
|
||||
"DocType Label": "DocType Etikett",
|
||||
"DocType Mapper": "DocType Mapper",
|
||||
"Documentation": "Dokumentation",
|
||||
"Earning Type": "Earning Typ",
|
||||
"Email Digest": "Email Digest",
|
||||
"Email Settings": "E-Mail-Einstellungen",
|
||||
"Employee": "Mitarbeiter",
|
||||
"Employee Education": "Mitarbeiterschulung",
|
||||
"Employee External Work History": "Mitarbeiter Externe Arbeit Geschichte",
|
||||
"Employee Internal Work History": "Mitarbeiter Interner Arbeitsbereich Geschichte",
|
||||
"Employee Training": "Mitarbeiterschulung",
|
||||
"Employment Type": "Besch\u00e4ftigungsart",
|
||||
"Event": "Veranstaltung",
|
||||
"Event Role": "Event Rolle",
|
||||
"Event User": "Ereignis Benutzer",
|
||||
"Expense Claim": "Expense Anspruch",
|
||||
"Expense Claim Detail": "Expense Anspruch Details",
|
||||
"Expense Claim Type": "Expense Anspruch Type",
|
||||
"Featured Item": "Feature-Produkt",
|
||||
"Features Setup": "Features Setup",
|
||||
"Feed": "F\u00fcttern",
|
||||
"Field Mapper Detail": "Feld Mapper Details",
|
||||
"File Data": "File Data",
|
||||
"Fiscal Year": "Gesch\u00e4ftsjahr",
|
||||
"Forum": "Forum",
|
||||
"GL Control": "GL Steuerung",
|
||||
"GL Entry": "GL Eintrag",
|
||||
"GL Mapper": "GL Mapper",
|
||||
"GL Mapper Detail": "GL Mapper Details",
|
||||
"Global Defaults": "Globale Defaults",
|
||||
"Grade": "Klasse",
|
||||
"HR": "HR",
|
||||
"Help": "Hilfe",
|
||||
"Holiday": "Urlaub",
|
||||
"Holiday Block List": "Ferienwohnung Block List",
|
||||
"Holiday Block List Allow": "Ferienwohnung Block List zulassen",
|
||||
"Holiday Block List Date": "Ferienwohnung Block List Datum",
|
||||
"Holiday List": "Ferienwohnung Liste",
|
||||
"Home": "Zuhause",
|
||||
"Home Control": "Home Control",
|
||||
"Human Resources": "Human Resources",
|
||||
"Industry Type": "Industry Typ",
|
||||
"Installation Note": "Installation Hinweis",
|
||||
"Installation Note Item": "Installation Hinweis Artikel",
|
||||
"Item": "Artikel",
|
||||
"Item Customer Detail": "Artikel Kundenrezensionen",
|
||||
"Item Group": "Artikel-Gruppe",
|
||||
"Item Price": "Artikel Preis",
|
||||
"Item Quality Inspection Parameter": "Qualit\u00e4tspr\u00fcfung Artikel Parameter",
|
||||
"Item Reorder": "Artikel Reorder",
|
||||
"Item Supplier": "Artikel Lieferant",
|
||||
"Item Tax": "MwSt. Artikel",
|
||||
"Item Website Specification": "Artikelbeschreibung Webseite",
|
||||
"Job Applicant": "Job Applicant",
|
||||
"Job Opening": "Stellenangebot",
|
||||
"Jobs Email Settings": "Jobs per E-Mail Einstellungen",
|
||||
"Journal Voucher": "Journal Gutschein",
|
||||
"Journal Voucher Detail": "Journal Voucher Detail",
|
||||
"Knowledge Base": "Knowledge Base",
|
||||
"Landed Cost Item": "Landed Cost Artikel",
|
||||
"Landed Cost Purchase Receipt": "Landed Cost Kaufbeleg",
|
||||
"Landed Cost Wizard": "Landed Cost Wizard",
|
||||
"Lead": "F\u00fchren",
|
||||
"Leave Allocation": "Lassen Allocation",
|
||||
"Leave Application": "Lassen Anwendung",
|
||||
"Leave Block List": "Lassen Block List",
|
||||
"Leave Block List Allow": "Lassen Lassen Block List",
|
||||
"Leave Block List Date": "Lassen Block List Datum",
|
||||
"Leave Control Panel": "Lassen Sie Control Panel",
|
||||
"Leave Type": "Lassen Typ",
|
||||
"Letter Head": "Briefkopf",
|
||||
"Live Chat": "Live-Chat",
|
||||
"MIS Control": "MIS Kontrolle",
|
||||
"Maintenance Schedule": "Wartungsplan",
|
||||
"Maintenance Schedule Detail": "Wartungsplan Details",
|
||||
"Maintenance Schedule Item": "Wartungsplan Artikel",
|
||||
"Maintenance Visit": "Wartung Besuch",
|
||||
"Maintenance Visit Purpose": "Wartung Visit Zweck",
|
||||
"Manufacturing": "Herstellung",
|
||||
"Market Segment": "Market Segment",
|
||||
"Material Request": "Material anfordern",
|
||||
"Material Request Item": "Material anfordern Artikel",
|
||||
"Messages": "Nachrichten",
|
||||
"Mode of Payment": "Zahlungsweise",
|
||||
"Module Def": "Module Def",
|
||||
"Modules": "Module",
|
||||
"Multi Ledger Report Detail": "Multi Ledger Detail Report",
|
||||
"My Settings": "Meine Einstellungen",
|
||||
"Naming Series": "Benennen Series",
|
||||
"Naming Series Options": "Benennen Optionen Series",
|
||||
"Newsletter": "Mitteilungsblatt",
|
||||
"Notification Control": "Meldungssteuervorrichtung",
|
||||
"Opportunity": "Gelegenheit",
|
||||
"Opportunity Item": "Gelegenheit Artikel",
|
||||
"Other Income Detail": "Sonstige Ertr\u00e4ge Detailansicht",
|
||||
"POS Setting": "POS Setting",
|
||||
"Packing Slip": "Packzettel",
|
||||
"Packing Slip Item": "Packzettel Artikel",
|
||||
"Page": "Seite",
|
||||
"Page Role": "Seite Role",
|
||||
"Patch Log": "Anmelden Patch-",
|
||||
"Payment to Invoice Matching Tool": "Zahlung an Rechnung Matching-Tool",
|
||||
"Payment to Invoice Matching Tool Detail": "Zahlung an Rechnung Matching Werkzeug-Detail",
|
||||
"Period Closing Voucher": "Periodenverschiebung Gutschein",
|
||||
"Permission Control": "Permission Steuerung",
|
||||
"Price List": "Preisliste",
|
||||
"Print Format": "Drucken Format",
|
||||
"Print Heading": "Unterwegs drucken",
|
||||
"Product Group": "Product Group",
|
||||
"Product Settings": "Produkt-Settings",
|
||||
"Production Order": "Fertigungsauftrag",
|
||||
"Production Plan Item": "Production Plan Artikel",
|
||||
"Production Plan Sales Order": "Production Plan Sales Order",
|
||||
"Production Planning Tool": "Production Planning-Tool",
|
||||
"Products Settings": "Produkte Einstellungen",
|
||||
"Profile": "Profil",
|
||||
"Profile Control": "Profile Control",
|
||||
"Project": "Projekt",
|
||||
"Project Activity": "Projekt Activity",
|
||||
"Project Activity Update": "Projekt Activity aktualisieren",
|
||||
"Project Control": "Project Control",
|
||||
"Project Milestone": "Projekt Milestone",
|
||||
"Projects": "Projekte",
|
||||
"Property Setter": "Property Setter",
|
||||
"Purchase Common": "Erwerb Eigener",
|
||||
"Purchase Invoice": "Kaufrechnung",
|
||||
"Purchase Invoice Advance": "Advance Purchase Rechnung",
|
||||
"Purchase Invoice Item": "Kaufrechnung Artikel",
|
||||
"Purchase Order": "Auftragsbest\u00e4tigung",
|
||||
"Purchase Order Item": "Bestellposition",
|
||||
"Purchase Order Item Supplied": "Bestellposition geliefert",
|
||||
"Purchase Receipt": "Kaufbeleg",
|
||||
"Purchase Receipt Item": "Kaufbeleg Artikel",
|
||||
"Purchase Receipt Item Supplied": "Kaufbeleg Liefergegenstand",
|
||||
"Purchase Taxes and Charges": "Purchase Steuern und Abgaben",
|
||||
"Purchase Taxes and Charges Master": "Steuern und Geb\u00fchren Meister Kauf",
|
||||
"Quality Inspection": "Qualit\u00e4tspr\u00fcfung",
|
||||
"Quality Inspection Reading": "Qualit\u00e4tspr\u00fcfung Lesen",
|
||||
"Question": "Frage",
|
||||
"Quotation": "Zitat",
|
||||
"Quotation Item": "Zitat Artikel",
|
||||
"Quotation Lost Reason": "Zitat Passwort Reason",
|
||||
"Related Page": "Verwandte Seite",
|
||||
"Rename Tool": "Umbenennen-Tool",
|
||||
"Report": "Bericht",
|
||||
"Role": "Rolle",
|
||||
"SMS Center": "SMS Center",
|
||||
"SMS Control": "SMS Control",
|
||||
"SMS Log": "SMS Log",
|
||||
"SMS Parameter": "SMS Parameter",
|
||||
"SMS Receiver": "SMS-Empf\u00e4nger",
|
||||
"SMS Settings": "SMS-Einstellungen",
|
||||
"Salary Manager": "Manager Gehalt",
|
||||
"Salary Slip": "Gehaltsabrechnung",
|
||||
"Salary Slip Deduction": "Lohnabzug Rutsch",
|
||||
"Salary Slip Earning": "Earning Gehaltsabrechnung",
|
||||
"Salary Structure": "Gehaltsstruktur",
|
||||
"Salary Structure Deduction": "Gehaltsstruktur Abzug",
|
||||
"Salary Structure Earning": "Earning Gehaltsstruktur",
|
||||
"Sales BOM": "Vertrieb BOM",
|
||||
"Sales BOM Item": "Vertrieb St\u00fccklistenposition",
|
||||
"Sales Browser Control": "Vertrieb Browser Control",
|
||||
"Sales Common": "Vertrieb Gemeinsame",
|
||||
"Sales Email Settings": "Vertrieb E-Mail-Einstellungen",
|
||||
"Sales Invoice": "Sales Invoice",
|
||||
"Sales Invoice Advance": "Sales Invoice Geleistete",
|
||||
"Sales Invoice Item": "Sales Invoice Artikel",
|
||||
"Sales Order": "Sales Order",
|
||||
"Sales Order Item": "Auftragsposition",
|
||||
"Sales Partner": "Vertriebspartner",
|
||||
"Sales Person": "Sales Person",
|
||||
"Sales Taxes and Charges": "Vertrieb Steuern und Abgaben",
|
||||
"Sales Taxes and Charges Master": "Vertrieb Steuern und Abgaben Meister",
|
||||
"Sales Team": "Sales Team",
|
||||
"Sales and Purchase Return Item": "Sales and Purchase Zur\u00fcck Artikel",
|
||||
"Sales and Purchase Return Tool": "Sales and Purchase Return-Tool",
|
||||
"Sandbox": "Sandkasten",
|
||||
"Scheduler Log": "Scheduler Log",
|
||||
"Search Criteria": "Suchkriterien",
|
||||
"Selling": "Verkauf",
|
||||
"Serial No": "Serial In",
|
||||
"Series Detail": "Series Detailansicht",
|
||||
"Setup": "Setup",
|
||||
"Setup Control": "Setup Control",
|
||||
"Shipping Address": "Versandadresse",
|
||||
"State": "Zustand",
|
||||
"Stock": "Lager",
|
||||
"Stock Entry": "Lager Eintrag",
|
||||
"Stock Entry Detail": "Lager Eintrag Details",
|
||||
"Stock Ledger": "Lager Ledger",
|
||||
"Stock Ledger Entry": "Lager Ledger Eintrag",
|
||||
"Stock Reconciliation": "Lager Vers\u00f6hnung",
|
||||
"Stock UOM Replace Utility": "Lager UOM ersetzen Dienstprogramm",
|
||||
"Style Settings": "Style Einstellungen",
|
||||
"Supplier": "Lieferant",
|
||||
"Supplier Quotation": "Lieferant Angebot",
|
||||
"Supplier Quotation Item": "Lieferant Angebotsposition",
|
||||
"Supplier Type": "Lieferant Typ",
|
||||
"Support": "Unterst\u00fctzen",
|
||||
"Support Ticket": "Support Ticket",
|
||||
"System Console": "System Console",
|
||||
"Table Mapper Detail": "Tabelle Mapper Details",
|
||||
"Tag": "Anh\u00e4nger",
|
||||
"Target Detail": "Ziel Detailansicht",
|
||||
"Task": "Aufgabe",
|
||||
"Terms and Conditions": "AGB",
|
||||
"Territory": "Gebiet",
|
||||
"Timesheet": "Timesheet",
|
||||
"Timesheet Detail": "Timesheet Details",
|
||||
"To Do": "To Do",
|
||||
"ToDo": "ToDo",
|
||||
"Top Bar Item": "Top Bar Artikel",
|
||||
"Trash Control": "Trash Steuerung",
|
||||
"Trend Analyzer Control": "Trend Analyzer Steuerung",
|
||||
"UOM": "UOM",
|
||||
"UOM Conversion Detail": "UOM Conversion Details",
|
||||
"Unread Messages": "Ungelesene Nachrichten",
|
||||
"Update Delivery Date": "Aktualisieren Lieferdatum",
|
||||
"UserRole": "UserRole",
|
||||
"Utilities": "Dienstprogramme",
|
||||
"Valuation Control": "Valuation Control-",
|
||||
"Warehouse": "Lager",
|
||||
"Warehouse Type": "Warehouse Typ",
|
||||
"Warehouse User": "Warehouse Benutzer",
|
||||
"Web Page": "Web Page",
|
||||
"Website": "Webseite",
|
||||
"Website Item Group": "Website-Elementgruppe",
|
||||
"Website Product Category": "Website Produktkategorie",
|
||||
"Website Script": "Website Script",
|
||||
"Website Settings": "Website-Einstellungen",
|
||||
"Website Slideshow": "Website Slideshow",
|
||||
"Website Slideshow Item": "Website Slideshow Artikel",
|
||||
"Workflow": "Workflow",
|
||||
"Workflow Action": "Workflow-Aktion",
|
||||
"Workflow Action Detail": "Workflow-Aktion Details",
|
||||
"Workflow Document State": "Workflow Document Staat",
|
||||
"Workflow Engine": "Workflow Engine",
|
||||
"Workflow Rule": "Workflow-Regel",
|
||||
"Workflow Rule Detail": "Workflow Rule Details",
|
||||
"Workflow State": "Workflow-Status",
|
||||
"Workflow Transition": "Workflow Transition",
|
||||
"Workstation": "Arbeitsplatz"
|
||||
}
|
||||
@@ -1,322 +0,0 @@
|
||||
{
|
||||
"About Us Settings": "La Empresa Ajustes",
|
||||
"About Us Team Member": "Acerca de Nosotros Miembro del Equipo",
|
||||
"Account": "Cuenta",
|
||||
"Accounts": "Cuentas",
|
||||
"Activity": "Actividad",
|
||||
"Activity Type": "Tipo de actividad",
|
||||
"Address": "Direcci\u00f3n",
|
||||
"Answer": "Responder",
|
||||
"Appraisal": "Evaluaci\u00f3n",
|
||||
"Appraisal Goal": "Evaluaci\u00f3n Meta",
|
||||
"Appraisal Template": "Evaluaci\u00f3n de plantilla",
|
||||
"Appraisal Template Goal": "Evaluaci\u00f3n Meta plantilla",
|
||||
"Attendance": "Asistencia",
|
||||
"Attendance Control Panel": "La asistencia del Panel de control",
|
||||
"Authorization Control": "Autorizaci\u00f3n de Control",
|
||||
"Authorization Rule": "Autorizaci\u00f3n Regla",
|
||||
"BOM": "BOM",
|
||||
"BOM Explosion Item": "Art\u00edculo BOM Explosion",
|
||||
"BOM Item": "Art\u00edculo BOM",
|
||||
"BOM Operation": "BOM Operaci\u00f3n",
|
||||
"BOM Replace Tool": "BOM Tool Reemplazar",
|
||||
"Bank Reconciliation": "Conciliaci\u00f3n Bancaria",
|
||||
"Bank Reconciliation Detail": "Banco Detalle Reconciliaci\u00f3n",
|
||||
"Batch": "Lote",
|
||||
"Bin": "Papelera",
|
||||
"Blog": "Blog",
|
||||
"Blog Subscriber": "Blog suscriptor",
|
||||
"Branch": "Rama",
|
||||
"Brand": "Marca",
|
||||
"Budget Control": "Control del Presupuesto",
|
||||
"Budget Detail": "Presupuesto Detalle",
|
||||
"Budget Distribution": "Distribuci\u00f3n del presupuesto",
|
||||
"Budget Distribution Detail": "Presupuesto Detalle Distribuci\u00f3n",
|
||||
"Bulk Email": "E-mail a granel",
|
||||
"Buying": "Comprar",
|
||||
"C-Form": "C-Form",
|
||||
"C-Form Invoice Detail": "C-Form Detalle de la factura",
|
||||
"Calendar": "Calendario",
|
||||
"Campaign": "Campa\u00f1a",
|
||||
"Comment": "Comentario",
|
||||
"Communication": "Comunicaci\u00f3n",
|
||||
"Communication Log": "Comunicaci\u00f3n sesi\u00f3n",
|
||||
"Company": "Empresa",
|
||||
"Company Control": "Control Company",
|
||||
"Company History": "Historia de la empresa",
|
||||
"Contact": "Contacto",
|
||||
"Contact Control": "P\u00f3ngase en contacto con el Control",
|
||||
"Contact Us Settings": "Cont\u00e1ctenos Configuraci\u00f3n",
|
||||
"Control Panel": "Panel de control",
|
||||
"Core": "N\u00facleo",
|
||||
"Cost Center": "De centros de coste",
|
||||
"Country": "Pa\u00eds",
|
||||
"Cross List Item Group": "Grupo de la Cruz lista de elementos",
|
||||
"Currency": "Moneda",
|
||||
"Custom Field": "Campo personalizado",
|
||||
"Custom Script": "Secuencia de personalizaci\u00f3n",
|
||||
"Customer": "Cliente",
|
||||
"Customer Group": "Grupo de clientes",
|
||||
"Customer Issue": "Customer Issue",
|
||||
"Customize Form": "Personalizar formulario",
|
||||
"Customize Form Field": "Personalizaci\u00f3n de campos de formulario",
|
||||
"Deduction Type": "Deducci\u00f3n Tipo",
|
||||
"Default Home Page": "P\u00e1gina de inicio por defecto",
|
||||
"DefaultValue": "DefaultValue",
|
||||
"Delivery Note": "Nota de entrega",
|
||||
"Delivery Note Item": "Nota de entrega del art\u00edculo",
|
||||
"Delivery Note Packing Item": "Nota de Entrega Embalaje art\u00edculo",
|
||||
"Department": "Departamento",
|
||||
"Designation": "Designaci\u00f3n",
|
||||
"DocField": "DocField",
|
||||
"DocPerm": "DocPerm",
|
||||
"DocType": "DOCTYPE",
|
||||
"DocType Label": "Etiqueta de tipo de documento",
|
||||
"DocType Mapper": "DocType Mapper",
|
||||
"Documentation": "Documentaci\u00f3n",
|
||||
"Earning Type": "Ganando Tipo",
|
||||
"Email Digest": "Email Resumen",
|
||||
"Email Settings": "Configuraci\u00f3n del correo electr\u00f3nico",
|
||||
"Employee": "Empleado",
|
||||
"Employee Education": "Educaci\u00f3n de los Empleados",
|
||||
"Employee External Work History": "Empleado Historial de trabajo externo",
|
||||
"Employee Internal Work History": "Empleado Historial de trabajo interno",
|
||||
"Employee Training": "Capacitaci\u00f3n de los empleados",
|
||||
"Employment Type": "Tipo de empleo",
|
||||
"Event": "Evento",
|
||||
"Event Role": "Evento Papel",
|
||||
"Event User": "Evento del usuario",
|
||||
"Expense Claim": "Cuenta de gastos",
|
||||
"Expense Claim Detail": "Detalle de Gastos Reclamo",
|
||||
"Expense Claim Type": "Tipo de Reclamaci\u00f3n de Gastos",
|
||||
"Featured Item": "Producto destacado",
|
||||
"Features Setup": "Caracter\u00edsticas del programa de instalaci\u00f3n",
|
||||
"Feed": "Alimentar",
|
||||
"Field Mapper Detail": "Detalle de campo Mapper",
|
||||
"File Data": "Archivo de datos",
|
||||
"Fiscal Year": "A\u00f1o Fiscal",
|
||||
"Forum": "Foro",
|
||||
"GL Control": "GL control",
|
||||
"GL Entry": "GL entrada",
|
||||
"GL Mapper": "GL Mapper",
|
||||
"GL Mapper Detail": "GL Detalle Mapper",
|
||||
"Global Defaults": "Predeterminados globales",
|
||||
"Grade": "Grado",
|
||||
"HR": "HR",
|
||||
"Help": "Ayudar",
|
||||
"Holiday": "Fiesta",
|
||||
"Holiday Block List": "Holiday lista de bloqueo",
|
||||
"Holiday Block List Allow": "Lista Casas Bloquear Permitir",
|
||||
"Holiday Block List Date": "Bloque de vacaciones Lista Fecha",
|
||||
"Holiday List": "Holiday lista",
|
||||
"Home": "Casa",
|
||||
"Home Control": "P\u00e1gina principal Control",
|
||||
"Human Resources": "Recursos Humanos",
|
||||
"Industry Type": "Industria Tipo",
|
||||
"Installation Note": "Instalaci\u00f3n Nota",
|
||||
"Installation Note Item": "Instalaci\u00f3n art\u00edculo Nota",
|
||||
"Item": "Art\u00edculo",
|
||||
"Item Customer Detail": "Art\u00edculo Detalle Cliente",
|
||||
"Item Group": "Grupo de art\u00edculos",
|
||||
"Item Price": "Art\u00edculo Precio",
|
||||
"Item Quality Inspection Parameter": "Calidad Inspecci\u00f3n Tema Par\u00e1metro",
|
||||
"Item Reorder": "Art\u00edculo reorden",
|
||||
"Item Supplier": "Art\u00edculo Proveedor",
|
||||
"Item Tax": "Art\u00edculo Tributaria",
|
||||
"Item Website Specification": "Elemento Especificaci\u00f3n web",
|
||||
"Job Applicant": "Solicitante de empleo",
|
||||
"Job Opening": "Job Opening",
|
||||
"Jobs Email Settings": "Trabajos Configuraci\u00f3n del correo electr\u00f3nico",
|
||||
"Journal Voucher": "Diario Voucher",
|
||||
"Journal Voucher Detail": "Diario Detalle Voucher",
|
||||
"Knowledge Base": "Base de conocimientos",
|
||||
"Landed Cost Item": "Landed Cost art\u00edculo",
|
||||
"Landed Cost Purchase Receipt": "Landed Cost recibo de compra",
|
||||
"Landed Cost Wizard": "Landed Cost Asistente",
|
||||
"Lead": "Conducir",
|
||||
"Leave Allocation": "Deja Asignaci\u00f3n",
|
||||
"Leave Application": "Deja aplicaci\u00f3n",
|
||||
"Leave Block List": "Deja lista de bloqueo",
|
||||
"Leave Block List Allow": "Deja Lista de bloqueo Permitir",
|
||||
"Leave Block List Date": "Deje Fecha Lista de bloqueo",
|
||||
"Leave Control Panel": "Deja Panel de control",
|
||||
"Leave Type": "Deja Tipo",
|
||||
"Letter Head": "Carta Head",
|
||||
"Live Chat": "Chat en Directo",
|
||||
"MIS Control": "MIS control",
|
||||
"Maintenance Schedule": "Programa de mantenimiento",
|
||||
"Maintenance Schedule Detail": "Mantenimiento Detalle Horario",
|
||||
"Maintenance Schedule Item": "Mantenimiento elemento de programaci\u00f3n",
|
||||
"Maintenance Visit": "Mantenimiento Visita",
|
||||
"Maintenance Visit Purpose": "Mantenimiento Prop\u00f3sito Visita",
|
||||
"Manufacturing": "Fabricaci\u00f3n",
|
||||
"Market Segment": "Sector de mercado",
|
||||
"Material Request": "Material de Solicitud",
|
||||
"Material Request Item": "Art\u00edculo Material Request",
|
||||
"Messages": "Mensajes",
|
||||
"Mode of Payment": "Forma de Pago",
|
||||
"Module Def": "M\u00f3dulo Def",
|
||||
"Modules": "M\u00f3dulos",
|
||||
"Multi Ledger Report Detail": "M\u00faltiples Ledger Informe detallado",
|
||||
"My Settings": "Mis Opciones",
|
||||
"Naming Series": "Nombrar Series",
|
||||
"Naming Series Options": "Nombrar Opciones de serie",
|
||||
"Newsletter": "Hoja informativa",
|
||||
"Notification Control": "Notificaci\u00f3n de control",
|
||||
"Opportunity": "Oportunidad",
|
||||
"Opportunity Item": "Oportunidad art\u00edculo",
|
||||
"Other Income Detail": "Detalle de otros ingresos",
|
||||
"POS Setting": "Configuraci\u00f3n POS",
|
||||
"Packing Slip": "Packing Slip",
|
||||
"Packing Slip Item": "Art\u00edculo Embalaje Slip",
|
||||
"Page": "P\u00e1gina",
|
||||
"Page Role": "P\u00e1gina Papel",
|
||||
"Patch Log": "Patch sesi\u00f3n",
|
||||
"Payment to Invoice Matching Tool": "El pago a la herramienta Matching Factura",
|
||||
"Payment to Invoice Matching Tool Detail": "Pago al detalle de la factura Matching Tool",
|
||||
"Period Closing Voucher": "Per\u00edodo de cierre Voucher",
|
||||
"Permission Control": "Permiso de Control",
|
||||
"Plot Control": "Parcela de control",
|
||||
"Price List": "Precio de lista",
|
||||
"Print Format": "Formato de impresi\u00f3n",
|
||||
"Print Heading": "Imprimir Encabezado",
|
||||
"Product": "Producto",
|
||||
"Product Group": "Grupo de productos",
|
||||
"Product Settings": "Configuraci\u00f3n del producto",
|
||||
"Production": "Producci\u00f3n",
|
||||
"Production Order": "Orden de Producci\u00f3n",
|
||||
"Production Plan Item": "Producci\u00f3n del art\u00edculo Plan de",
|
||||
"Production Plan Sales Order": "Plan de Ventas Orden de Producci\u00f3n",
|
||||
"Production Planning Tool": "Production Planning Tool",
|
||||
"Products Settings": "Productos Settings",
|
||||
"Profile": "Perfil",
|
||||
"Profile Control": "Perfil de control",
|
||||
"Project": "Proyecto",
|
||||
"Project Activity": "Actividad del Proyecto",
|
||||
"Project Activity Update": "Actualizaci\u00f3n del Proyecto de Actividad",
|
||||
"Project Control": "Proyecto de Control",
|
||||
"Project Milestone": "Proyecto Hito",
|
||||
"Projects": "Proyectos",
|
||||
"Property Setter": "Propiedad Setter",
|
||||
"Purchase Common": "Compra Com\u00fan",
|
||||
"Purchase Invoice": "Compra de facturas",
|
||||
"Purchase Invoice Advance": "Compra Anticipada Factura",
|
||||
"Purchase Invoice Item": "Compra del art\u00edculo Factura",
|
||||
"Purchase Order": "Orden de Compra",
|
||||
"Purchase Order Item": "Compra Art\u00edculo de Orden",
|
||||
"Purchase Order Item Supplied": "Posici\u00f3n de pedido suministrado",
|
||||
"Purchase Receipt": "Recibo de compra",
|
||||
"Purchase Receipt Item": "Compra Art\u00edculo Receipt",
|
||||
"Purchase Receipt Item Supplied": "Art\u00edculo recibo de compra suministra",
|
||||
"Purchase Request": "Solicitud de compra",
|
||||
"Purchase Request Item": "Compra Solicitar Art\u00edculo",
|
||||
"Purchase Taxes and Charges": "Impuestos y Cargos de compra",
|
||||
"Purchase Taxes and Charges Master": "Impuestos sobre las compras y Master Cargos",
|
||||
"Quality Inspection": "Inspecci\u00f3n de Calidad",
|
||||
"Quality Inspection Reading": "Lectura de Inspecci\u00f3n de Calidad",
|
||||
"Question": "Cuesti\u00f3n",
|
||||
"Quotation": "Cita",
|
||||
"Quotation Item": "Cotizaci\u00f3n del art\u00edculo",
|
||||
"Quotation Lost Reason": "Cita Perdida Raz\u00f3n",
|
||||
"Related Page": "P\u00e1gina Relacionada",
|
||||
"Rename Tool": "Cambiar el nombre de la herramienta",
|
||||
"Report": "Informe",
|
||||
"Role": "Papel",
|
||||
"SMS Center": "Centro SMS",
|
||||
"SMS Control": "SMS Control",
|
||||
"SMS Log": "SMS Log",
|
||||
"SMS Parameter": "Par\u00e1metro SMS",
|
||||
"SMS Receiver": "SMS Receiver",
|
||||
"SMS Settings": "Configuraci\u00f3n de SMS",
|
||||
"Salary Manager": "Manager Salarios",
|
||||
"Salary Slip": "Salario Slip",
|
||||
"Salary Slip Deduction": "Salario Deducci\u00f3n Slip",
|
||||
"Salary Slip Earning": "N\u00f3mina Ganar",
|
||||
"Salary Structure": "Estructura salarial",
|
||||
"Salary Structure Deduction": "Salario Deducci\u00f3n Estructura",
|
||||
"Salary Structure Earning": "Estructura salarial ganar",
|
||||
"Sales BOM": "Ventas BOM",
|
||||
"Sales BOM Item": "Ventas de art\u00edculo de lista de materiales",
|
||||
"Sales Browser Control": "Ventas control de explorador",
|
||||
"Sales Common": "Sales comunes",
|
||||
"Sales Email Settings": "Ventas Configuraci\u00f3n del correo electr\u00f3nico",
|
||||
"Sales Invoice": "Factura de venta",
|
||||
"Sales Invoice Advance": "Venta anticipada de facturas",
|
||||
"Sales Invoice Item": "Ventas art\u00edculo Factura",
|
||||
"Sales Order": "De \u00f3rdenes de venta",
|
||||
"Sales Order Item": "Sales Art\u00edculo de Orden",
|
||||
"Sales Partner": "Sales Partner",
|
||||
"Sales Person": "Sales Person",
|
||||
"Sales Taxes and Charges": "Ventas Impuestos y Cargos",
|
||||
"Sales Taxes and Charges Master": "Impuestos de Ventas y Master Cargos",
|
||||
"Sales Team": "Equipo de ventas",
|
||||
"Sales and Purchase Return Item": "Venta y Compra de art\u00edculo de vuelta",
|
||||
"Sales and Purchase Return Tool": "Herramienta de ventas y devoluci\u00f3n de compra",
|
||||
"Sandbox": "Arenero",
|
||||
"Scheduler Log": "Programador de sesi\u00f3n",
|
||||
"Search Criteria": "Criterios de B\u00fasqueda",
|
||||
"Selling": "De venta",
|
||||
"Serial No": "N\u00famero de orden",
|
||||
"Series Detail": "Serie Detalle",
|
||||
"Setup": "Disposici\u00f3n",
|
||||
"Setup Control": "Control de la instalaci\u00f3n",
|
||||
"Shipping Address": "Direcci\u00f3n de env\u00edo",
|
||||
"State": "Estado",
|
||||
"Stock": "Valores",
|
||||
"Stock Entry": "De la entrada",
|
||||
"Stock Entry Detail": "Detalle de la entrada",
|
||||
"Stock Ledger": "Stock Ledger",
|
||||
"Stock Ledger Entry": "Stock Ledger Entry",
|
||||
"Stock Reconciliation": "De la Reconciliaci\u00f3n",
|
||||
"Stock UOM Replace Utility": "De la UOM utilidad replace",
|
||||
"Style Settings": "Ajustes de estilo",
|
||||
"Supplier": "Proveedor",
|
||||
"Supplier Quotation": "Proveedor Cotizaci\u00f3n",
|
||||
"Supplier Quotation Item": "Proveedor del art\u00edculo Cotizaci\u00f3n",
|
||||
"Supplier Type": "Proveedor Tipo",
|
||||
"Support": "Apoyar",
|
||||
"Support Ticket": "Ticket de soporte",
|
||||
"System Console": "La consola del sistema",
|
||||
"Table Mapper Detail": "Tabla Detalle Mapper",
|
||||
"Tag": "Etiqueta",
|
||||
"Target Detail": "Target Detalle",
|
||||
"Task": "Tarea",
|
||||
"Terms and Conditions": "T\u00e9rminos y Condiciones",
|
||||
"Territory": "Territorio",
|
||||
"Timesheet": "Parte de horas",
|
||||
"Timesheet Detail": "Detalle de parte de horas",
|
||||
"To Do": "Para hacer",
|
||||
"ToDo": "ToDo",
|
||||
"Top Bar Item": "Bar Producto Top",
|
||||
"Trash Control": "Control de Basura",
|
||||
"Trend Analyzer Control": "Trend Control Analizador",
|
||||
"UOM": "UOM",
|
||||
"UOM Conversion Detail": "UOM Detalle de conversi\u00f3n",
|
||||
"Unread Messages": "Los mensajes no le\u00eddos",
|
||||
"Update Delivery Date": "Actualizaci\u00f3n de Fecha de Entrega",
|
||||
"UserRole": "UserRole",
|
||||
"Utilities": "Utilidades",
|
||||
"Valuation Control": "Evaluaci\u00f3n de Control",
|
||||
"Warehouse": "Almac\u00e9n",
|
||||
"Warehouse Type": "Dep\u00f3sito de tipo",
|
||||
"Warehouse User": "Almac\u00e9n del usuario",
|
||||
"Web Page": "P\u00e1gina Web",
|
||||
"Website": "Sitio web",
|
||||
"Website Item Group": "Website grupo de elementos",
|
||||
"Website Product Category": "Sitio web Categor\u00eda de producto",
|
||||
"Website Script": "Sitio Web de secuencias de comandos",
|
||||
"Website Settings": "Ajustes del Sitio Web",
|
||||
"Website Slideshow": "Sitio Web Presentaci\u00f3n",
|
||||
"Website Slideshow Item": "Sitio Web Presentaci\u00f3n del art\u00edculo",
|
||||
"Workflow": "Flujo de trabajo",
|
||||
"Workflow Action": "Acci\u00f3n de flujo de trabajo",
|
||||
"Workflow Action Detail": "Detalle de Acci\u00f3n de flujo de trabajo",
|
||||
"Workflow Document State": "Estado de flujo de trabajo de documentos",
|
||||
"Workflow Engine": "Workflow Engine",
|
||||
"Workflow Rule": "Flujo de trabajo de la Regla",
|
||||
"Workflow Rule Detail": "Detalle de la regla de flujo de trabajo",
|
||||
"Workflow State": "Estado de flujo de trabajo",
|
||||
"Workflow Transition": "La transici\u00f3n de flujo de trabajo",
|
||||
"Workstation": "Puesto de trabajo",
|
||||
"test": "prueba"
|
||||
}
|
||||
@@ -1,322 +0,0 @@
|
||||
{
|
||||
"About Us Settings": "\u00c0 propos de nous R\u00e9glages",
|
||||
"About Us Team Member": "\u00c0 propos membre de l'\u00e9quipe-nous",
|
||||
"Account": "Compte",
|
||||
"Accounts": "Comptes",
|
||||
"Activity": "Activit\u00e9",
|
||||
"Activity Type": "Type d'activit\u00e9",
|
||||
"Address": "Adresse",
|
||||
"Answer": "R\u00e9pondre",
|
||||
"Appraisal": "\u00c9valuation",
|
||||
"Appraisal Goal": "Objectif d'\u00e9valuation",
|
||||
"Appraisal Template": "Mod\u00e8le d'\u00e9valuation",
|
||||
"Appraisal Template Goal": "Objectif mod\u00e8le d'\u00e9valuation",
|
||||
"Attendance": "Pr\u00e9sence",
|
||||
"Attendance Control Panel": "Panneau de configuration de pr\u00e9sence",
|
||||
"Authorization Control": "Contr\u00f4le d'autorisation",
|
||||
"Authorization Rule": "R\u00e8gle d'autorisation",
|
||||
"BOM": "BOM",
|
||||
"BOM Explosion Item": "Article \u00e9clatement de la nomenclature",
|
||||
"BOM Item": "Article BOM",
|
||||
"BOM Operation": "Op\u00e9ration BOM",
|
||||
"BOM Replace Tool": "Outil Remplacer BOM",
|
||||
"Bank Reconciliation": "Rapprochement bancaire",
|
||||
"Bank Reconciliation Detail": "D\u00e9tail de rapprochement bancaire",
|
||||
"Batch": "Lot",
|
||||
"Bin": "Bo\u00eete",
|
||||
"Blog": "Blog",
|
||||
"Blog Subscriber": "Abonn\u00e9 Blog",
|
||||
"Branch": "Branche",
|
||||
"Brand": "Marque",
|
||||
"Budget Control": "Contr\u00f4le budg\u00e9taire",
|
||||
"Budget Detail": "D\u00e9tail du budget",
|
||||
"Budget Distribution": "R\u00e9partition du budget",
|
||||
"Budget Distribution Detail": "D\u00e9tail R\u00e9partition du budget",
|
||||
"Bulk Email": "Bulk Email",
|
||||
"Buying": "Achat",
|
||||
"C-Form": "C-Form",
|
||||
"C-Form Invoice Detail": "C-Form D\u00e9tail Facture",
|
||||
"Calendar": "Calendrier",
|
||||
"Campaign": "Campagne",
|
||||
"Comment": "Commenter",
|
||||
"Communication": "Communication",
|
||||
"Communication Log": "Journal des communications",
|
||||
"Company": "Entreprise",
|
||||
"Company Control": "Control Entreprise",
|
||||
"Company History": "Historique de l'entreprise",
|
||||
"Contact": "Contacter",
|
||||
"Contact Control": "Contactez contr\u00f4le",
|
||||
"Contact Us Settings": "Contactez-nous R\u00e9glages",
|
||||
"Control Panel": "Panneau de configuration",
|
||||
"Core": "C\u0153ur",
|
||||
"Cost Center": "Centre de co\u00fbts",
|
||||
"Country": "Pays",
|
||||
"Cross List Item Group": "Traversez Groupe \u00e9l\u00e9ment de liste",
|
||||
"Currency": "Monnaie",
|
||||
"Custom Field": "Champ personnalis\u00e9",
|
||||
"Custom Script": "Script personnalis\u00e9",
|
||||
"Customer": "Client",
|
||||
"Customer Group": "Groupe de clients",
|
||||
"Customer Issue": "Num\u00e9ro client",
|
||||
"Customize Form": "Personnaliser le formulaire",
|
||||
"Customize Form Field": "Personnaliser un champ de formulaire",
|
||||
"Deduction Type": "Type de d\u00e9duction",
|
||||
"Default Home Page": "Page d'accueil par d\u00e9faut",
|
||||
"DefaultValue": "DefaultValue",
|
||||
"Delivery Note": "Remarque livraison",
|
||||
"Delivery Note Item": "Point de Livraison",
|
||||
"Delivery Note Packing Item": "Article d'emballage de livraison Note",
|
||||
"Department": "D\u00e9partement",
|
||||
"Designation": "D\u00e9signation",
|
||||
"DocField": "DocField",
|
||||
"DocPerm": "DocPerm",
|
||||
"DocType": "DOCTYPE",
|
||||
"DocType Label": "\u00c9tiquette DocType",
|
||||
"DocType Mapper": "Mapper DocType",
|
||||
"Documentation": "Documentation",
|
||||
"Earning Type": "Gagner Type d'",
|
||||
"Email Digest": "Email Digest",
|
||||
"Email Settings": "Param\u00e8tres de messagerie",
|
||||
"Employee": "Employ\u00e9",
|
||||
"Employee Education": "Formation des employ\u00e9s",
|
||||
"Employee External Work History": "Ant\u00e9c\u00e9dents de travail des employ\u00e9s externe",
|
||||
"Employee Internal Work History": "Ant\u00e9c\u00e9dents de travail des employ\u00e9s internes",
|
||||
"Employee Training": "Formation des employ\u00e9s",
|
||||
"Employment Type": "Type d'emploi",
|
||||
"Event": "\u00c9v\u00e9nement",
|
||||
"Event Role": "R\u00f4le de l'\u00e9v\u00e9nement",
|
||||
"Event User": "L'utilisateur d'Event",
|
||||
"Expense Claim": "Demande d'indemnit\u00e9 de",
|
||||
"Expense Claim Detail": "D\u00e9tail remboursement des d\u00e9penses",
|
||||
"Expense Claim Type": "Type de demande d'indemnit\u00e9",
|
||||
"Featured Item": "Produit vedette",
|
||||
"Features Setup": "Features Setup",
|
||||
"Feed": "Nourrir",
|
||||
"Field Mapper Detail": "D\u00e9tail Mapper domaine",
|
||||
"File Data": "Fichier de donn\u00e9es",
|
||||
"Fiscal Year": "Exercice",
|
||||
"Forum": "Forum",
|
||||
"GL Control": "GL contr\u00f4le",
|
||||
"GL Entry": "Entr\u00e9e GL",
|
||||
"GL Mapper": "GL Mapper",
|
||||
"GL Mapper Detail": "D\u00e9tail Mapper GL",
|
||||
"Global Defaults": "Par d\u00e9faut mondiaux",
|
||||
"Grade": "Grade",
|
||||
"HR": "RH",
|
||||
"Help": "Aider",
|
||||
"Holiday": "Vacances",
|
||||
"Holiday Block List": "Block List vacances",
|
||||
"Holiday Block List Allow": "Block List vacances Permettez-",
|
||||
"Holiday Block List Date": "Liste Date vacances Bloquer",
|
||||
"Holiday List": "Liste de vacances",
|
||||
"Home": "Maison",
|
||||
"Home Control": "Home Control",
|
||||
"Human Resources": "Ressources humaines",
|
||||
"Industry Type": "Secteur d'activit\u00e9",
|
||||
"Installation Note": "Note d'installation",
|
||||
"Installation Note Item": "Article Remarque Installation",
|
||||
"Item": "Article",
|
||||
"Item Customer Detail": "D\u00e9tail d'article",
|
||||
"Item Group": "Groupe d'\u00e9l\u00e9ments",
|
||||
"Item Price": "Prix \u200b\u200bde l'article",
|
||||
"Item Quality Inspection Parameter": "Param\u00e8tre d'inspection Article de qualit\u00e9",
|
||||
"Item Reorder": "R\u00e9organiser article",
|
||||
"Item Supplier": "Fournisseur d'article",
|
||||
"Item Tax": "Point d'imp\u00f4t",
|
||||
"Item Website Specification": "Sp\u00e9cification Site \u00e9l\u00e9ment",
|
||||
"Job Applicant": "Demandeur d'emploi",
|
||||
"Job Opening": "Offre d'emploi",
|
||||
"Jobs Email Settings": "Param\u00e8tres de messagerie Emploi",
|
||||
"Journal Voucher": "Bon Journal",
|
||||
"Journal Voucher Detail": "D\u00e9tail pi\u00e8ce de journal",
|
||||
"Knowledge Base": "Base de connaissances",
|
||||
"Landed Cost Item": "Article co\u00fbt en magasin",
|
||||
"Landed Cost Purchase Receipt": "Landed Cost re\u00e7u d'achat",
|
||||
"Landed Cost Wizard": "Assistant co\u00fbt en magasin",
|
||||
"Lead": "Conduire",
|
||||
"Leave Allocation": "Laisser Allocation",
|
||||
"Leave Application": "Demande de cong\u00e9s",
|
||||
"Leave Block List": "Laisser Block List",
|
||||
"Leave Block List Allow": "Laisser Block List Autoriser",
|
||||
"Leave Block List Date": "Laisser Date de Block List",
|
||||
"Leave Control Panel": "Laisser le Panneau de configuration",
|
||||
"Leave Type": "Laisser Type d'",
|
||||
"Letter Head": "A en-t\u00eate",
|
||||
"Live Chat": "Chat en direct",
|
||||
"MIS Control": "MIS contr\u00f4le",
|
||||
"Maintenance Schedule": "Calendrier d'entretien",
|
||||
"Maintenance Schedule Detail": "D\u00e9tail calendrier d'entretien",
|
||||
"Maintenance Schedule Item": "Article calendrier d'entretien",
|
||||
"Maintenance Visit": "Visite de maintenance",
|
||||
"Maintenance Visit Purpose": "But Visite d'entretien",
|
||||
"Manufacturing": "Fabrication",
|
||||
"Market Segment": "Segment de march\u00e9",
|
||||
"Material Request": "Demande de mat\u00e9riel",
|
||||
"Material Request Item": "Article demande de mat\u00e9riel",
|
||||
"Messages": "Messages",
|
||||
"Mode of Payment": "Mode de paiement",
|
||||
"Module Def": "Module Def",
|
||||
"Modules": "Modules",
|
||||
"Multi Ledger Report Detail": "Multi D\u00e9tail Rapport Ledger",
|
||||
"My Settings": "Mes r\u00e9glages",
|
||||
"Naming Series": "Nommer S\u00e9rie",
|
||||
"Naming Series Options": "Nommer Options des s\u00e9ries",
|
||||
"Newsletter": "Bulletin",
|
||||
"Notification Control": "Contr\u00f4le de notification",
|
||||
"Opportunity": "Occasion",
|
||||
"Opportunity Item": "Article occasion",
|
||||
"Other Income Detail": "D\u00e9tail Autres revenus",
|
||||
"POS Setting": "R\u00e9glage POS",
|
||||
"Packing Slip": "Bordereau",
|
||||
"Packing Slip Item": "Emballage article Slip",
|
||||
"Page": "Page",
|
||||
"Page Role": "R\u00f4le page",
|
||||
"Patch Log": "Connexion Patch",
|
||||
"Payment to Invoice Matching Tool": "Paiement \u00e0 l'outil Invoice Matching",
|
||||
"Payment to Invoice Matching Tool Detail": "Paiement \u00e0 l'outil D\u00e9tail Facture Matching",
|
||||
"Period Closing Voucher": "Bon cl\u00f4ture de la p\u00e9riode",
|
||||
"Permission Control": "L'autorisation Contr\u00f4le",
|
||||
"Plot Control": "Contr\u00f4le Terrain",
|
||||
"Price List": "Liste des Prix",
|
||||
"Print Format": "Format d'impression",
|
||||
"Print Heading": "Imprimer Cap",
|
||||
"Product": "Produit",
|
||||
"Product Group": "Groupe de produits",
|
||||
"Product Settings": "Param\u00e8tres du produit",
|
||||
"Production": "Production",
|
||||
"Production Order": "Ordre de fabrication",
|
||||
"Production Plan Item": "\u00c9l\u00e9ment du plan de production",
|
||||
"Production Plan Sales Order": "Plan de Production Ventes Ordre",
|
||||
"Production Planning Tool": "Outil de planification de la production",
|
||||
"Products Settings": "R\u00e9glages Produits",
|
||||
"Profile": "Profil",
|
||||
"Profile Control": "Contr\u00f4le profil",
|
||||
"Project": "Projet",
|
||||
"Project Activity": "Activit\u00e9 du projet",
|
||||
"Project Activity Update": "Mise \u00e0 jour des activit\u00e9s du projet",
|
||||
"Project Control": "Contr\u00f4le de projet",
|
||||
"Project Milestone": "Des \u00e9tapes du projet",
|
||||
"Projects": "Projets",
|
||||
"Property Setter": "Setter propri\u00e9t\u00e9",
|
||||
"Purchase Common": "Achat commune",
|
||||
"Purchase Invoice": "Achetez facture",
|
||||
"Purchase Invoice Advance": "Paiement \u00e0 l'avance Facture",
|
||||
"Purchase Invoice Item": "Achat d'article de facture",
|
||||
"Purchase Order": "Bon de commande",
|
||||
"Purchase Order Item": "Achat Passer commande",
|
||||
"Purchase Order Item Supplied": "Point de commande fourni",
|
||||
"Purchase Receipt": "Achat R\u00e9ception",
|
||||
"Purchase Receipt Item": "Achat d'article de r\u00e9ception",
|
||||
"Purchase Receipt Item Supplied": "Article re\u00e7u d'achat fournis",
|
||||
"Purchase Request": "Demande d'achat",
|
||||
"Purchase Request Item": "Achetez article Demande d'",
|
||||
"Purchase Taxes and Charges": "Imp\u00f4ts achat et les frais",
|
||||
"Purchase Taxes and Charges Master": "Imp\u00f4ts achat et Master frais",
|
||||
"Quality Inspection": "Inspection de la Qualit\u00e9",
|
||||
"Quality Inspection Reading": "Lecture d'inspection de la qualit\u00e9",
|
||||
"Question": "Question",
|
||||
"Quotation": "Citation",
|
||||
"Quotation Item": "Article devis",
|
||||
"Quotation Lost Reason": "Devis perdu la raison",
|
||||
"Related Page": "Associ\u00e9s Page",
|
||||
"Rename Tool": "Renommer l'outil",
|
||||
"Report": "Rapport",
|
||||
"Role": "R\u00f4le",
|
||||
"SMS Center": "Centre SMS",
|
||||
"SMS Control": "SMS Control",
|
||||
"SMS Log": "SMS Log",
|
||||
"SMS Parameter": "Param\u00e8tre SMS",
|
||||
"SMS Receiver": "SMS Receiver",
|
||||
"SMS Settings": "Param\u00e8tres SMS",
|
||||
"Salary Manager": "Salaire Responsable",
|
||||
"Salary Slip": "Glissement des salaires",
|
||||
"Salary Slip Deduction": "D\u00e9duction bulletin de salaire",
|
||||
"Salary Slip Earning": "Slip Salaire Gagner",
|
||||
"Salary Structure": "Grille des salaires",
|
||||
"Salary Structure Deduction": "D\u00e9duction structure salariale",
|
||||
"Salary Structure Earning": "Structure salariale Gagner",
|
||||
"Sales BOM": "BOM ventes",
|
||||
"Sales BOM Item": "Article nomenclature des ventes",
|
||||
"Sales Browser Control": "Contr\u00f4le de navigateur ventes",
|
||||
"Sales Common": "Les ventes courantes",
|
||||
"Sales Email Settings": "R\u00e9glages Courriel Ventes",
|
||||
"Sales Invoice": "Facture de vente",
|
||||
"Sales Invoice Advance": "Advance facture de vente",
|
||||
"Sales Invoice Item": "Article facture de vente",
|
||||
"Sales Order": "Commande",
|
||||
"Sales Order Item": "Poste de commande client",
|
||||
"Sales Partner": "Sales Partner",
|
||||
"Sales Person": "Sales Person",
|
||||
"Sales Taxes and Charges": "Taxes de vente et frais",
|
||||
"Sales Taxes and Charges Master": "Taxes de vente et frais de Master",
|
||||
"Sales Team": "\u00c9quipe des ventes",
|
||||
"Sales and Purchase Return Item": "Vente et achat du lot Retour",
|
||||
"Sales and Purchase Return Tool": "Outil de vente et de retour d'achat",
|
||||
"Sandbox": "Tas de sable",
|
||||
"Scheduler Log": "Scheduler Connexion",
|
||||
"Search Criteria": "Crit\u00e8res de recherche",
|
||||
"Selling": "Vente",
|
||||
"Serial No": "N \u00b0 de s\u00e9rie",
|
||||
"Series Detail": "D\u00e9tail Series",
|
||||
"Setup": "Installation",
|
||||
"Setup Control": "Configuration \u00e0 l'aide",
|
||||
"Shipping Address": "Adresse de livraison",
|
||||
"State": "\u00c9tat",
|
||||
"Stock": "Stock",
|
||||
"Stock Entry": "Entr\u00e9e Stock",
|
||||
"Stock Entry Detail": "D\u00e9tail d'entr\u00e9e Stock",
|
||||
"Stock Ledger": "Stock Ledger",
|
||||
"Stock Ledger Entry": "Stock Ledger Entry",
|
||||
"Stock Reconciliation": "Stock r\u00e9conciliation",
|
||||
"Stock UOM Replace Utility": "Utilitaire Stock Remplacer Emballage",
|
||||
"Style Settings": "Param\u00e8tres de style",
|
||||
"Supplier": "Fournisseur",
|
||||
"Supplier Quotation": "Devis Fournisseur",
|
||||
"Supplier Quotation Item": "Article Devis Fournisseur",
|
||||
"Supplier Type": "Type de fournisseur",
|
||||
"Support": "Soutenir",
|
||||
"Support Ticket": "Support Ticket",
|
||||
"System Console": "Console System",
|
||||
"Table Mapper Detail": "D\u00e9tail Mapper tableau",
|
||||
"Tag": "Balise",
|
||||
"Target Detail": "D\u00e9tail cible",
|
||||
"Task": "T\u00e2che",
|
||||
"Terms and Conditions": "Termes et Conditions",
|
||||
"Territory": "Territoire",
|
||||
"Timesheet": "Feuille de pr\u00e9sence",
|
||||
"Timesheet Detail": "D\u00e9tail des feuilles de temps",
|
||||
"To Do": "To Do",
|
||||
"ToDo": "ToDo",
|
||||
"Top Bar Item": "Point Bar Top",
|
||||
"Trash Control": "Contr\u00f4le Corbeille",
|
||||
"Trend Analyzer Control": "Contr\u00f4le Analyseur de tendance",
|
||||
"UOM": "Emballage",
|
||||
"UOM Conversion Detail": "D\u00e9tail de conversion Emballage",
|
||||
"Unread Messages": "Messages non lus",
|
||||
"Update Delivery Date": "Mettre \u00e0 jour Date de livraison",
|
||||
"UserRole": "UserRole",
|
||||
"Utilities": "Utilitaires",
|
||||
"Valuation Control": "Contr\u00f4le \u00e9valuation",
|
||||
"Warehouse": "Entrep\u00f4t",
|
||||
"Warehouse Type": "Type d'entrep\u00f4t",
|
||||
"Warehouse User": "L'utilisateur d'entrep\u00f4t",
|
||||
"Web Page": "Page Web",
|
||||
"Website": "Site Web",
|
||||
"Website Item Group": "Groupe Article Site",
|
||||
"Website Product Category": "Cat\u00e9gorie de produit site web",
|
||||
"Website Script": "Script site web",
|
||||
"Website Settings": "R\u00e9glages Site web",
|
||||
"Website Slideshow": "Diaporama site web",
|
||||
"Website Slideshow Item": "Point Diaporama site web",
|
||||
"Workflow": "Flux de travail",
|
||||
"Workflow Action": "Action de workflow",
|
||||
"Workflow Action Detail": "D\u00e9tail d'action de workflow",
|
||||
"Workflow Document State": "Etat du document de workflow",
|
||||
"Workflow Engine": "Workflow Engine",
|
||||
"Workflow Rule": "R\u00e8gle de workflow",
|
||||
"Workflow Rule Detail": "D\u00e9tail r\u00e8gle de workflow",
|
||||
"Workflow State": "\u00c9tat de workflow",
|
||||
"Workflow Transition": "Transition de workflow",
|
||||
"Workstation": "Workstation",
|
||||
"test": "test"
|
||||
}
|
||||
@@ -1,335 +0,0 @@
|
||||
{
|
||||
"About Us Settings": "\u0939\u092e\u093e\u0930\u0947 \u092c\u093e\u0930\u0947 \u092e\u0947\u0902 \u0938\u0947\u091f\u093f\u0902\u0917\u094d\u0938",
|
||||
"About Us Team Member": "\u0939\u092e\u093e\u0930\u0947 \u0926\u0932 \u0915\u0947 \u0938\u0926\u0938\u094d\u092f \u0915\u0947 \u092c\u093e\u0930\u0947 \u092e\u0947\u0902",
|
||||
"Account": "\u0916\u093e\u0924\u093e",
|
||||
"Accounts": "\u0932\u0947\u0916\u093e",
|
||||
"Activity": "\u0938\u0915\u094d\u0930\u093f\u092f\u0924\u093e",
|
||||
"Activity Type": "\u0917\u0924\u093f\u0935\u093f\u0927\u093f \u092a\u094d\u0930\u0915\u093e\u0930",
|
||||
"Address": "\u092a\u0924\u093e",
|
||||
"Analysis": "\u0935\u093f\u0936\u094d\u0932\u0947\u0937\u0923",
|
||||
"Answer": "\u091c\u0935\u093e\u092c",
|
||||
"Applied": "\u0932\u093e\u0917\u0942",
|
||||
"Appraisal": "\u092e\u0942\u0932\u094d\u092f\u093e\u0902\u0915\u0928",
|
||||
"Appraisal Goal": "\u092e\u0942\u0932\u094d\u092f\u093e\u0902\u0915\u0928 \u0932\u0915\u094d\u0937\u094d\u092f",
|
||||
"Appraisal Template": "\u092e\u0942\u0932\u094d\u092f\u093e\u0902\u0915\u0928 \u091f\u0947\u092e\u094d\u092a\u0932\u0947\u091f",
|
||||
"Appraisal Template Goal": "\u092e\u0942\u0932\u094d\u092f\u093e\u0902\u0915\u0928 \u091f\u0947\u092e\u094d\u092a\u0932\u0947\u091f \u0932\u0915\u094d\u0937\u094d\u092f",
|
||||
"Approve": "\u0905\u0928\u0941\u092e\u094b\u0926\u0928 \u0915\u0930\u0928\u093e",
|
||||
"Approved": "\u0905\u0928\u0941\u092e\u094b\u0926\u093f\u0924",
|
||||
"Approved by HR": "\u092e\u093e\u0928\u0935 \u0938\u0902\u0938\u093e\u0927\u0928 \u0926\u094d\u0935\u093e\u0930\u093e \u0938\u094d\u0935\u0940\u0915\u0943\u0924",
|
||||
"Attendance": "\u0909\u092a\u0938\u094d\u0925\u093f\u0924\u093f",
|
||||
"Attendance Control Panel": "\u0909\u092a\u0938\u094d\u0925\u093f\u0924\u093f \u0928\u093f\u092f\u0902\u0924\u094d\u0930\u0923 \u0915\u0915\u094d\u0937",
|
||||
"Authorization Control": "\u092a\u094d\u0930\u093e\u0927\u093f\u0915\u0930\u0923 \u0928\u093f\u092f\u0902\u0924\u094d\u0930\u0923",
|
||||
"Authorization Rule": "\u092a\u094d\u0930\u093e\u0927\u093f\u0915\u0930\u0923 \u0928\u093f\u092f\u092e",
|
||||
"BOM": "\u092c\u0940\u0913\u090f\u092e",
|
||||
"BOM Explosion Item": "\u092c\u0940\u0913\u090f\u092e \u0927\u092e\u093e\u0915\u093e \u0906\u0907\u091f\u092e",
|
||||
"BOM Item": "\u092c\u0940\u0913\u090f\u092e \u0906\u0907\u091f\u092e",
|
||||
"BOM Operation": "\u092c\u0940\u0913\u090f\u092e \u0911\u092a\u0930\u0947\u0936\u0928",
|
||||
"BOM Replace Tool": "\u092c\u0940\u0913\u090f\u092e \u092c\u0926\u0932\u0947\u0902 \u0909\u092a\u0915\u0930\u0923",
|
||||
"Bank Reconciliation": "\u092c\u0948\u0902\u0915 \u0938\u092e\u093e\u0927\u093e\u0928",
|
||||
"Bank Reconciliation Detail": "\u092c\u0948\u0902\u0915 \u0938\u0941\u0932\u0939 \u0935\u093f\u0938\u094d\u0924\u093e\u0930",
|
||||
"Batch": "\u092c\u0948\u091a",
|
||||
"Bin": "\u092c\u093f\u0928",
|
||||
"Blog": "\u092c\u094d\u0932\u0949\u0917",
|
||||
"Blog Subscriber": "\u092c\u094d\u0932\u0949\u0917 \u0938\u092c\u094d\u0938\u0915\u094d\u0930\u093e\u0907\u092c\u0930",
|
||||
"Branch": "\u0936\u093e\u0916\u093e",
|
||||
"Brand": "\u092c\u094d\u0930\u093e\u0902\u0921",
|
||||
"Budget Control": "\u092c\u091c\u091f \u0928\u093f\u092f\u0902\u0924\u094d\u0930\u0923",
|
||||
"Budget Detail": "\u092c\u091c\u091f \u0935\u093f\u0938\u094d\u0924\u093e\u0930",
|
||||
"Budget Distribution": "\u092c\u091c\u091f \u0935\u093f\u0924\u0930\u0923",
|
||||
"Budget Distribution Detail": "\u092c\u091c\u091f \u0935\u093f\u0924\u0930\u0923 \u0935\u093f\u0938\u094d\u0924\u093e\u0930",
|
||||
"Bulk Email": "\u0925\u094b\u0915 \u0908\u092e\u0947\u0932",
|
||||
"Buying": "\u0915\u094d\u0930\u092f",
|
||||
"C-Form": "\u0938\u0940 - \u092b\u093e\u0930\u094d\u092e",
|
||||
"C-Form Invoice Detail": "\u0938\u0940 - \u092b\u093e\u0930\u094d\u092e \u0915\u0947 \u091a\u093e\u0932\u093e\u0928 \u0935\u093f\u0938\u094d\u0924\u093e\u0930",
|
||||
"Calendar": "\u0915\u0948\u0932\u0947\u0902\u0921\u0930",
|
||||
"Campaign": "\u0905\u092d\u093f\u092f\u093e\u0928",
|
||||
"Comment": "\u091f\u093f\u092a\u094d\u092a\u0923\u0940",
|
||||
"Communication": "\u0938\u0902\u091a\u093e\u0930",
|
||||
"Communication Log": "\u0938\u0902\u091a\u093e\u0930 \u092a\u094d\u0930\u0935\u0947\u0936 \u0915\u0930\u0947\u0902",
|
||||
"Company": "\u0915\u0902\u092a\u0928\u0940",
|
||||
"Company Control": "\u0915\u0902\u092a\u0928\u0940 \u0915\u0947 \u0928\u093f\u092f\u0902\u0924\u094d\u0930\u0923",
|
||||
"Company History": "\u0915\u0902\u092a\u0928\u0940 \u0907\u0924\u093f\u0939\u093e\u0938",
|
||||
"Contact": "\u0938\u0902\u092a\u0930\u094d\u0915",
|
||||
"Contact Control": "\u0928\u093f\u092f\u0902\u0924\u094d\u0930\u0923 \u0938\u0902\u092a\u0930\u094d\u0915",
|
||||
"Contact Us Settings": "\u0939\u092e\u0938\u0947 \u0938\u0947\u091f\u093f\u0902\u0917\u094d\u0938 \u0938\u0902\u092a\u0930\u094d\u0915",
|
||||
"Control Panel": "\u0928\u093f\u092f\u0902\u0924\u094d\u0930\u0923 \u0915\u0915\u094d\u0937",
|
||||
"Core": "\u092e\u0942\u0932",
|
||||
"Cost Center": "\u0932\u093e\u0917\u0924 \u0915\u0947\u0902\u0926\u094d\u0930",
|
||||
"Country": "\u0926\u0947\u0936",
|
||||
"Cross List Item Group": "\u0915\u094d\u0930\u0949\u0938 \u0938\u0942\u091a\u0940 \u0906\u0907\u091f\u092e \u0938\u092e\u0942\u0939",
|
||||
"Currency": "\u092e\u0941\u0926\u094d\u0930\u093e",
|
||||
"Custom Field": "\u0915\u0938\u094d\u091f\u092e \u092b\u093c\u0940\u0932\u094d\u0921",
|
||||
"Custom Script": "\u0915\u0938\u094d\u091f\u092e \u0938\u094d\u0915\u094d\u0930\u093f\u092a\u094d\u091f",
|
||||
"Customer": "\u0917\u094d\u0930\u093e\u0939\u0915",
|
||||
"Customer Group": "\u0917\u094d\u0930\u093e\u0939\u0915 \u0938\u092e\u0942\u0939",
|
||||
"Customer Issue": "\u0917\u094d\u0930\u093e\u0939\u0915 \u0915\u0947 \u092e\u0941\u0926\u094d\u0926\u0947",
|
||||
"Customize Form": "\u092a\u094d\u0930\u092a\u0924\u094d\u0930 \u0915\u094b \u0905\u0928\u0941\u0915\u0942\u0932\u093f\u0924",
|
||||
"Customize Form Field": "\u092a\u094d\u0930\u092a\u0924\u094d\u0930 \u092b\u093c\u0940\u0932\u094d\u0921 \u0905\u0928\u0941\u0915\u0942\u0932\u093f\u0924",
|
||||
"Deduction Type": "\u0915\u091f\u094c\u0924\u0940 \u0915\u0947 \u092a\u094d\u0930\u0915\u093e\u0930",
|
||||
"Default Home Page": "\u0921\u093f\u092b\u0949\u0932\u094d\u091f \u0939\u094b\u092e \u092a\u0947\u091c",
|
||||
"DefaultValue": "DefaultValue",
|
||||
"Delivery Note": "\u092c\u093f\u0932\u091f\u0940",
|
||||
"Delivery Note Item": "\u0921\u093f\u0932\u093f\u0935\u0930\u0940 \u0928\u094b\u091f \u0906\u0907\u091f\u092e",
|
||||
"Delivery Note Packing Item": "\u0921\u093f\u0932\u093f\u0935\u0930\u0940 \u0928\u094b\u091f \u092a\u0948\u0915\u093f\u0902\u0917 \u0906\u0907\u091f\u092e",
|
||||
"Department": "\u0935\u093f\u092d\u093e\u0917",
|
||||
"Designation": "\u092a\u0926\u0928\u093e\u092e",
|
||||
"Development": "\u0935\u093f\u0915\u093e\u0938",
|
||||
"DocField": "DocField",
|
||||
"DocPerm": "DocPerm",
|
||||
"DocType": "Doctype",
|
||||
"DocType Label": "DOCTYPE \u0932\u0947\u092c\u0932",
|
||||
"DocType Mapper": "DOCTYPE \u092a\u094d\u0930\u0924\u093f\u091a\u093f\u0924\u094d\u0930\u0923",
|
||||
"Documentation": "\u092a\u094d\u0930\u0932\u0947\u0916\u0928",
|
||||
"Earning Type": "\u092a\u094d\u0930\u0915\u093e\u0930 \u0915\u092e\u093e\u0908",
|
||||
"Email Digest": "\u0908\u092e\u0947\u0932 \u0921\u093e\u0907\u091c\u0947\u0938\u094d\u091f",
|
||||
"Email Settings": "\u0908\u092e\u0947\u0932 \u0938\u0947\u091f\u093f\u0902\u0917",
|
||||
"Employee": "\u0915\u0930\u094d\u092e\u091a\u093e\u0930\u0940",
|
||||
"Employee Education": "\u0915\u0930\u094d\u092e\u091a\u093e\u0930\u0940 \u0936\u093f\u0915\u094d\u0937\u093e",
|
||||
"Employee External Work History": "\u0915\u0930\u094d\u092e\u091a\u093e\u0930\u0940 \u092c\u093e\u0939\u0930\u0940 \u0915\u093e\u092e \u0907\u0924\u093f\u0939\u093e\u0938",
|
||||
"Employee Internal Work History": "\u0915\u0930\u094d\u092e\u091a\u093e\u0930\u0940 \u0906\u0902\u0924\u0930\u093f\u0915 \u0915\u093e\u0930\u094d\u092f \u0907\u0924\u093f\u0939\u093e\u0938",
|
||||
"Employee Training": "\u0915\u0930\u094d\u092e\u091a\u093e\u0930\u0940 \u092a\u094d\u0930\u0936\u093f\u0915\u094d\u0937\u0923",
|
||||
"Employment Type": "\u0930\u094b\u091c\u0917\u093e\u0930 \u0915\u0947 \u092a\u094d\u0930\u0915\u093e\u0930",
|
||||
"Event": "\u0918\u091f\u0928\u093e",
|
||||
"Event Role": "\u0918\u091f\u0928\u093e \u0930\u094b\u0932",
|
||||
"Event User": "\u0907\u0935\u0947\u0902\u091f \u0909\u092a\u092f\u094b\u0917\u0915\u0930\u094d\u0924\u093e \u0915\u0947",
|
||||
"Expense Claim": "\u0935\u094d\u092f\u092f \u0926\u093e\u0935\u093e",
|
||||
"Expense Claim Detail": "\u0935\u094d\u092f\u092f \u0926\u093e\u0935\u093e \u0935\u093f\u0935\u0930\u0923",
|
||||
"Expense Claim Type": "\u0935\u094d\u092f\u092f \u0926\u093e\u0935\u093e \u092a\u094d\u0930\u0915\u093e\u0930",
|
||||
"Featured Item": "\u0935\u093f\u0936\u0947\u0937 \u0930\u0941\u092a \u0938\u0947 \u092a\u094d\u0930\u0926\u0930\u094d\u0936\u093f\u0924 \u0906\u0907\u091f\u092e",
|
||||
"Features Setup": "\u0938\u0941\u0935\u093f\u0927\u093e\u090f\u0901 \u0938\u0947\u091f\u0905\u092a",
|
||||
"Feed": "\u0916\u093f\u0932\u093e\u0928\u093e",
|
||||
"Field Mapper Detail": "\u0915\u094d\u0937\u0947\u0924\u094d\u0930 \u092a\u094d\u0930\u0924\u093f\u091a\u093f\u0924\u094d\u0930\u0923 \u0935\u093f\u0938\u094d\u0924\u093e\u0930",
|
||||
"File Data": "\u0921\u0947\u091f\u093e \u092b\u093c\u093e\u0907\u0932",
|
||||
"Fiscal Year": "\u0935\u093f\u0924\u094d\u0924\u0940\u092f \u0935\u0930\u094d\u0937",
|
||||
"Forum": "\u092b\u094b\u0930\u092e",
|
||||
"GL Control": "\u091c\u0940\u090f\u0932 \u0928\u093f\u092f\u0902\u0924\u094d\u0930\u0923",
|
||||
"GL Entry": "\u091c\u0940\u090f\u0932 \u090f\u0902\u091f\u094d\u0930\u0940",
|
||||
"GL Mapper": "\u091c\u0940\u090f\u0932 \u092a\u094d\u0930\u0924\u093f\u091a\u093f\u0924\u094d\u0930\u0923",
|
||||
"GL Mapper Detail": "\u091c\u0940\u090f\u0932 \u092a\u094d\u0930\u0924\u093f\u091a\u093f\u0924\u094d\u0930\u0923 \u0935\u093f\u0938\u094d\u0924\u093e\u0930",
|
||||
"Global Defaults": "\u0935\u0948\u0936\u094d\u0935\u093f\u0915 \u092e\u0942\u0932\u092d\u0942\u0924",
|
||||
"Grade": "\u0917\u094d\u0930\u0947\u0921",
|
||||
"HR": "\u092e\u093e\u0928\u0935 \u0938\u0902\u0938\u093e\u0927\u0928",
|
||||
"Help": "\u092e\u0926\u0926",
|
||||
"Holiday": "\u091b\u0941\u091f\u094d\u091f\u0940",
|
||||
"Holiday Block List": "\u0905\u0935\u0915\u093e\u0936 \u092c\u094d\u0932\u0949\u0915 \u0938\u0942\u091a\u0940",
|
||||
"Holiday Block List Allow": "\u0905\u0935\u0915\u093e\u0936 \u092c\u094d\u0932\u0949\u0915 \u0938\u0942\u091a\u0940 \u0915\u0940 \u0905\u0928\u0941\u092e\u0924\u093f \u0926\u0947\u0902",
|
||||
"Holiday Block List Date": "\u0905\u0935\u0915\u093e\u0936 \u092c\u094d\u0932\u0949\u0915 \u0938\u0942\u091a\u0940 \u0924\u093f\u0925\u093f",
|
||||
"Holiday List": "\u0905\u0935\u0915\u093e\u0936 \u0938\u0942\u091a\u0940",
|
||||
"Home": "\u0918\u0930",
|
||||
"Home Control": "\u0939\u094b\u092e \u0928\u093f\u092f\u0902\u0924\u094d\u0930\u0923",
|
||||
"Human Resources": "\u092e\u093e\u0928\u0935\u0940\u092f \u0938\u0902\u0938\u093e\u0927\u0928",
|
||||
"Industry Type": "\u0909\u0926\u094d\u092f\u094b\u0917 \u0915\u0947 \u092a\u094d\u0930\u0915\u093e\u0930",
|
||||
"Installation Note": "\u0938\u094d\u0925\u093e\u092a\u0928\u093e \u0928\u094b\u091f",
|
||||
"Installation Note Item": "\u0905\u0927\u093f\u0937\u094d\u0920\u093e\u092a\u0928 \u0928\u094b\u091f \u0906\u0907\u091f\u092e",
|
||||
"Item": "\u092e\u0926",
|
||||
"Item Customer Detail": "\u0906\u0907\u091f\u092e \u0917\u094d\u0930\u093e\u0939\u0915 \u0935\u093f\u0938\u094d\u0924\u093e\u0930",
|
||||
"Item Group": "\u0906\u0907\u091f\u092e \u0938\u092e\u0942\u0939",
|
||||
"Item Price": "\u092e\u0926 \u092e\u0942\u0932\u094d\u092f",
|
||||
"Item Quality Inspection Parameter": "\u0906\u0907\u091f\u092e \u0917\u0941\u0923\u0935\u0924\u094d\u0924\u093e \u0928\u093f\u0930\u0940\u0915\u094d\u0937\u0923 \u092a\u0948\u0930\u093e\u092e\u0940\u091f\u0930",
|
||||
"Item Reorder": "\u0906\u0907\u091f\u092e \u092a\u0941\u0928\u0903 \u0915\u094d\u0930\u092e\u093f\u0924 \u0915\u0930\u0947\u0902",
|
||||
"Item Supplier": "\u0906\u0907\u091f\u092e \u092a\u094d\u0930\u0926\u093e\u092f\u0915",
|
||||
"Item Tax": "\u0906\u0907\u091f\u092e \u091f\u0948\u0915\u094d\u0938",
|
||||
"Item Website Specification": "\u0906\u0907\u091f\u092e \u0935\u0947\u092c\u0938\u093e\u0907\u091f \u0935\u093f\u0936\u093f\u0937\u094d\u091f\u0924\u093e",
|
||||
"Job Applicant": "\u0928\u094c\u0915\u0930\u0940 \u0906\u0935\u0947\u0926\u0915",
|
||||
"Job Opening": "\u0928\u094c\u0915\u0930\u0940 \u0916\u094b\u0932\u0928\u0947",
|
||||
"Jobs Email Settings": "\u0928\u094c\u0915\u0930\u093f\u092f\u093e\u0902 \u0908\u092e\u0947\u0932 \u0938\u0947\u091f\u093f\u0902\u0917",
|
||||
"Journal Voucher": "\u091c\u0930\u094d\u0928\u0932 \u0935\u093e\u0909\u091a\u0930",
|
||||
"Journal Voucher Detail": "\u091c\u0930\u094d\u0928\u0932 \u0935\u093e\u0909\u091a\u0930 \u0935\u093f\u0938\u094d\u0924\u093e\u0930",
|
||||
"Knowledge Base": "\u091c\u094d\u091e\u093e\u0928\u0915\u094b\u0936",
|
||||
"Landed Cost Item": "\u0906\u092f\u093e\u0924\u093f\u0924 \u092e\u093e\u0932 \u0915\u0940 \u0932\u093e\u0917\u0924 \u092e\u0926",
|
||||
"Landed Cost Master": "\u0906\u092f\u093e\u0924\u093f\u0924 \u092e\u093e\u0932 \u0915\u0940 \u0932\u093e\u0917\u0924 \u092e\u093e\u0938\u094d\u091f\u0930",
|
||||
"Landed Cost Master Detail": "\u0909\u0924\u0930\u093e \u0932\u093e\u0917\u0924 \u092e\u093e\u0938\u094d\u091f\u0930 \u0935\u093f\u0938\u094d\u0924\u093e\u0930",
|
||||
"Landed Cost Purchase Receipt": "\u0906\u092f\u093e\u0924\u093f\u0924 \u092e\u093e\u0932 \u0915\u0940 \u0932\u093e\u0917\u0924 \u0916\u0930\u0940\u0926 \u0930\u0938\u0940\u0926",
|
||||
"Landed Cost Wizard": "\u0906\u092f\u093e\u0924\u093f\u0924 \u092e\u093e\u0932 \u0915\u0940 \u0932\u093e\u0917\u0924 \u0935\u093f\u091c\u093c\u093e\u0930\u094d\u0921",
|
||||
"Lead": "\u0928\u0947\u0924\u0943\u0924\u094d\u0935",
|
||||
"Leave Allocation": "\u0906\u092c\u0902\u091f\u0928 \u091b\u094b\u0921\u093c \u0926\u094b",
|
||||
"Leave Application": "\u091b\u0941\u091f\u094d\u091f\u0940 \u0915\u0940 \u0905\u0930\u094d\u091c\u093c\u0940",
|
||||
"Leave Block List": "\u092c\u094d\u0932\u0949\u0915 \u0938\u0942\u091a\u0940 \u091b\u094b\u0921\u093c \u0926\u094b",
|
||||
"Leave Block List Allow": "\u091b\u094b\u0921\u093c \u0926\u094b \u092c\u094d\u0932\u0949\u0915 \u0938\u0942\u091a\u0940 \u0915\u0940 \u0905\u0928\u0941\u092e\u0924\u093f \u0926\u0947\u0902",
|
||||
"Leave Block List Date": "\u092c\u094d\u0932\u0949\u0915 \u0938\u0942\u091a\u0940 \u0924\u093f\u0925\u093f \u091b\u094b\u0921\u093c \u0926\u094b",
|
||||
"Leave Control Panel": "\u0928\u093f\u092f\u0902\u0924\u094d\u0930\u0923 \u0915\u0915\u094d\u0937 \u091b\u094b\u0921\u093c \u0926\u094b",
|
||||
"Leave Type": "\u092a\u094d\u0930\u0915\u093e\u0930 \u091b\u094b\u0921\u093c \u0926\u094b",
|
||||
"Letter Head": "\u092a\u0924\u094d\u0930\u0936\u0940\u0930\u094d\u0937",
|
||||
"Live Chat": "\u0932\u093e\u0907\u0935 \u091a\u0948\u091f",
|
||||
"MIS Control": "\u090f\u092e\u0906\u0908\u090f\u0938 \u0928\u093f\u092f\u0902\u0924\u094d\u0930\u0923",
|
||||
"Maintenance Schedule": "\u0930\u0916\u0930\u0916\u093e\u0935 \u0905\u0928\u0941\u0938\u0942\u091a\u0940",
|
||||
"Maintenance Schedule Detail": "\u0930\u0916\u0930\u0916\u093e\u0935 \u0905\u0928\u0941\u0938\u0942\u091a\u0940 \u0935\u093f\u0935\u0930\u0923",
|
||||
"Maintenance Schedule Item": "\u0930\u0916\u0930\u0916\u093e\u0935 \u0905\u0928\u0941\u0938\u0942\u091a\u0940 \u0906\u0907\u091f\u092e",
|
||||
"Maintenance Visit": "\u0930\u0916\u0930\u0916\u093e\u0935 \u092d\u0947\u0902\u091f",
|
||||
"Maintenance Visit Purpose": "\u0930\u0916\u0930\u0916\u093e\u0935 \u092d\u0947\u0902\u091f \u092a\u094d\u0930\u092f\u094b\u091c\u0928",
|
||||
"Manufacturing": "\u0935\u093f\u0928\u093f\u0930\u094d\u092e\u093e\u0923",
|
||||
"Market Segment": "\u092c\u093e\u091c\u093e\u0930 \u0916\u0902\u0921",
|
||||
"Material Request": "\u0938\u093e\u092e\u0917\u094d\u0930\u0940 \u0905\u0928\u0941\u0930\u094b\u0927",
|
||||
"Material Request Item": "\u0938\u093e\u092e\u0917\u094d\u0930\u0940 \u0905\u0928\u0941\u0930\u094b\u0927 \u0906\u0907\u091f\u092e",
|
||||
"Messages": "\u0938\u0902\u0926\u0947\u0936",
|
||||
"Mode of Payment": "\u092d\u0941\u0917\u0924\u093e\u0928 \u0915\u0940 \u0930\u0940\u0924\u093f",
|
||||
"Module Def": "\u092e\u0949\u0921\u094d\u092f\u0942\u0932 Def",
|
||||
"Modules": "\u092e\u0949\u0921\u094d\u092f\u0942\u0932",
|
||||
"Multi Ledger Report Detail": "\u092e\u0932\u094d\u091f\u0940 \u0932\u0947\u091c\u0930 \u0930\u093f\u092a\u094b\u0930\u094d\u091f \u0935\u093f\u0938\u094d\u0924\u093e\u0930",
|
||||
"My Settings": "\u092e\u0947\u0930\u0940 \u0938\u0947\u091f\u093f\u0902\u0917\u094d\u0938",
|
||||
"Naming Series": "\u0936\u094d\u0930\u0943\u0902\u0916\u0932\u093e \u0915\u093e \u0928\u093e\u092e\u0915\u0930\u0923",
|
||||
"Naming Series Options": "\u0936\u094d\u0930\u0943\u0902\u0916\u0932\u093e \u0935\u093f\u0915\u0932\u094d\u092a \u0928\u093e\u092e\u0915\u0930\u0923",
|
||||
"Newsletter": "\u0928\u094d\u092f\u0942\u091c\u093c\u0932\u0948\u091f\u0930",
|
||||
"Notification Control": "\u0905\u0927\u093f\u0938\u0942\u091a\u0928\u093e \u0928\u093f\u092f\u0902\u0924\u094d\u0930\u0923",
|
||||
"Opportunity": "\u0905\u0935\u0938\u0930",
|
||||
"Opportunity Item": "\u0905\u0935\u0938\u0930 \u0906\u0907\u091f\u092e",
|
||||
"Other Income Detail": "\u0905\u0928\u094d\u092f \u0906\u092f \u0935\u093f\u0938\u094d\u0924\u093e\u0930",
|
||||
"POS Setting": "\u0938\u094d\u0925\u093f\u0924\u093f \u0938\u0947\u091f\u093f\u0902\u0917",
|
||||
"Packing Slip": "\u092a\u0930\u094d\u091a\u0940 \u092a\u0948\u0915\u093f\u0902\u0917",
|
||||
"Packing Slip Item": "\u092a\u0948\u0915\u093f\u0902\u0917 \u0938\u094d\u0932\u093f\u092a \u0906\u0907\u091f\u092e",
|
||||
"Page": "\u092a\u0947\u091c",
|
||||
"Page Role": "\u092a\u0943\u0937\u094d\u0920 \u0930\u094b\u0932",
|
||||
"Patch Log": "\u092a\u0948\u091a \u092a\u094d\u0930\u0935\u0947\u0936 \u0915\u0930\u0947\u0902",
|
||||
"Payment to Invoice Matching Tool": "\u091a\u093e\u0932\u093e\u0928 \u092e\u093f\u0932\u093e\u0928 \u0909\u092a\u0915\u0930\u0923 \u0915\u0947 \u0932\u093f\u090f \u092d\u0941\u0917\u0924\u093e\u0928",
|
||||
"Payment to Invoice Matching Tool Detail": "\u091a\u093e\u0932\u093e\u0928 \u092e\u093f\u0932\u093e\u0928 \u0909\u092a\u0915\u0930\u0923 \u0935\u093f\u0938\u094d\u0924\u093e\u0930 \u0915\u0930\u0928\u0947 \u0915\u0947 \u0932\u093f\u090f \u092d\u0941\u0917\u0924\u093e\u0928",
|
||||
"Pending HR Approval": "\u092e\u093e\u0928\u0935 \u0938\u0902\u0938\u093e\u0927\u0928 \u0905\u0928\u0941\u092e\u094b\u0926\u0928 \u0915\u0947 \u0932\u093f\u090f \u0932\u0902\u092c\u093f\u0924",
|
||||
"Period Closing Voucher": "\u0905\u0935\u0927\u093f \u0938\u092e\u093e\u092a\u0928 \u0935\u093e\u0909\u091a\u0930",
|
||||
"Permission Control": "\u0905\u0928\u0941\u092e\u0924\u093f \u0928\u093f\u092f\u0902\u0924\u094d\u0930\u0923",
|
||||
"Plot Control": "\u092a\u094d\u0932\u0949\u091f \u0928\u093f\u092f\u0902\u0924\u094d\u0930\u0923",
|
||||
"Price List": "\u0915\u0940\u092e\u0924 \u0938\u0942\u091a\u0940",
|
||||
"Print Format": "\u092a\u094d\u0930\u093e\u0930\u0942\u092a \u092a\u094d\u0930\u093f\u0902\u091f",
|
||||
"Print Heading": "\u0936\u0940\u0930\u094d\u0937\u0915 \u092a\u094d\u0930\u093f\u0902\u091f",
|
||||
"Product": "\u0909\u0924\u094d\u092a\u093e\u0926",
|
||||
"Product Group": "\u0909\u0924\u094d\u092a\u093e\u0926 \u0938\u092e\u0942\u0939",
|
||||
"Product Settings": "\u0909\u0924\u094d\u092a\u093e\u0926 \u0938\u0947\u091f\u093f\u0902\u0917",
|
||||
"Production": "\u0909\u0924\u094d\u092a\u093e\u0926\u0928",
|
||||
"Production Order": "\u0909\u0924\u094d\u092a\u093e\u0926\u0928 \u0915\u093e \u0906\u0926\u0947\u0936",
|
||||
"Production Plan Item": "\u0909\u0924\u094d\u092a\u093e\u0926\u0928 \u092f\u094b\u091c\u0928\u093e \u092e\u0926",
|
||||
"Production Plan Sales Order": "\u0909\u0924\u094d\u092a\u093e\u0926\u0928 \u092f\u094b\u091c\u0928\u093e \u092c\u093f\u0915\u094d\u0930\u0940 \u0906\u0926\u0947\u0936",
|
||||
"Production Planning Tool": "\u0909\u0924\u094d\u092a\u093e\u0926\u0928 \u092f\u094b\u091c\u0928\u093e \u0909\u092a\u0915\u0930\u0923",
|
||||
"Products Settings": "\u0909\u0924\u094d\u092a\u093e\u0926 \u0938\u0947\u091f\u093f\u0902\u0917\u094d\u0938",
|
||||
"Profile": "\u0930\u0942\u092a\u0930\u0947\u0916\u093e",
|
||||
"Profile Control": "\u092a\u094d\u0930\u094b\u092b\u093c\u093e\u0907\u0932 \u0928\u093f\u092f\u0902\u0924\u094d\u0930\u0923",
|
||||
"Project": "\u092a\u0930\u093f\u092f\u094b\u091c\u0928\u093e",
|
||||
"Project Activity": "\u092a\u0930\u093f\u092f\u094b\u091c\u0928\u093e \u0917\u0924\u093f\u0935\u093f\u0927\u093f",
|
||||
"Project Activity Update": "\u092a\u0930\u093f\u092f\u094b\u091c\u0928\u093e \u0917\u0924\u093f\u0935\u093f\u0927\u093f \u0905\u092a\u0921\u0947\u091f",
|
||||
"Project Control": "\u092a\u0930\u093f\u092f\u094b\u091c\u0928\u093e \u0928\u093f\u092f\u0902\u0924\u094d\u0930\u0923",
|
||||
"Project Milestone": "\u092a\u0930\u093f\u092f\u094b\u091c\u0928\u093e \u092e\u0940\u0932 \u0915\u093e \u092a\u0924\u094d\u0925\u0930",
|
||||
"Projects": "\u092a\u0930\u093f\u092f\u094b\u091c\u0928\u093e\u0913\u0902",
|
||||
"Property Setter": "\u0938\u0902\u092a\u0924\u094d\u0924\u093f \u0938\u0947\u091f\u0930",
|
||||
"Purchase Common": "\u0906\u092e \u0916\u0930\u0940\u0926",
|
||||
"Purchase Invoice": "\u091a\u093e\u0932\u093e\u0928 \u0916\u0930\u0940\u0926",
|
||||
"Purchase Invoice Advance": "\u091a\u093e\u0932\u093e\u0928 \u0905\u0917\u094d\u0930\u093f\u092e \u0916\u0930\u0940\u0926",
|
||||
"Purchase Invoice Item": "\u091a\u093e\u0932\u093e\u0928 \u0906\u0907\u091f\u092e \u0916\u0930\u0940\u0926",
|
||||
"Purchase Order": "\u0906\u0926\u0947\u0936 \u0916\u0930\u0940\u0926",
|
||||
"Purchase Order Item": "\u0916\u0930\u0940\u0926 \u0906\u0926\u0947\u0936 \u0906\u0907\u091f\u092e",
|
||||
"Purchase Order Item Supplied": "\u0916\u0930\u0940\u0926 \u0906\u0926\u0947\u0936 \u0906\u0907\u091f\u092e \u0915\u0940 \u0906\u092a\u0942\u0930\u094d\u0924\u093f",
|
||||
"Purchase Receipt": "\u0930\u0938\u0940\u0926 \u0916\u0930\u0940\u0926",
|
||||
"Purchase Receipt Item": "\u0930\u0938\u0940\u0926 \u0906\u0907\u091f\u092e \u0916\u0930\u0940\u0926",
|
||||
"Purchase Receipt Item Supplied": "\u0916\u0930\u0940\u0926 \u0930\u0938\u0940\u0926 \u0906\u0907\u091f\u092e \u0915\u0940 \u0906\u092a\u0942\u0930\u094d\u0924\u093f",
|
||||
"Purchase Request": "\u0905\u0928\u0941\u0930\u094b\u0927 \u0916\u0930\u0940\u0926",
|
||||
"Purchase Request Item": "\u0905\u0928\u0941\u0930\u094b\u0927 \u0906\u0907\u091f\u092e \u0916\u0930\u0940\u0926",
|
||||
"Purchase Taxes and Charges": "\u0916\u0930\u0940\u0926 \u0915\u0930 \u0914\u0930 \u0936\u0941\u0932\u094d\u0915",
|
||||
"Purchase Taxes and Charges Master": "\u0916\u0930\u0940\u0926 \u0915\u0930 \u0914\u0930 \u0936\u0941\u0932\u094d\u0915 \u092e\u093e\u0938\u094d\u091f\u0930",
|
||||
"Quality Inspection": "\u0917\u0941\u0923\u0935\u0924\u094d\u0924\u093e \u0928\u093f\u0930\u0940\u0915\u094d\u0937\u0923",
|
||||
"Quality Inspection Reading": "\u0917\u0941\u0923\u0935\u0924\u094d\u0924\u093e \u0928\u093f\u0930\u0940\u0915\u094d\u0937\u0923 \u092a\u0922\u093c\u0928\u093e",
|
||||
"Question": "\u0938\u0935\u093e\u0932",
|
||||
"Quotation": "\u0909\u0926\u094d\u0927\u0930\u0923",
|
||||
"Quotation Item": "\u0915\u094b\u091f\u0947\u0936\u0928 \u0906\u0907\u091f\u092e",
|
||||
"Quotation Lost Reason": "\u0915\u094b\u091f\u0947\u0936\u0928 \u0915\u093e\u0930\u0923 \u0916\u094b\u092f\u093e",
|
||||
"Reject": "\u0905\u0938\u094d\u0935\u0940\u0915\u093e\u0930",
|
||||
"Rejected": "\u0905\u0938\u094d\u0935\u0940\u0915\u0943\u0924",
|
||||
"Related Page": "\u0938\u0902\u092c\u0902\u0927\u093f\u0924 \u092a\u0947\u091c",
|
||||
"Rename Tool": "\u0909\u092a\u0915\u0930\u0923 \u0915\u093e \u0928\u093e\u092e \u092c\u0926\u0932\u0947\u0902",
|
||||
"Report": "\u0930\u093f\u092a\u094b\u0930\u094d\u091f",
|
||||
"Role": "\u092d\u0942\u092e\u093f\u0915\u093e",
|
||||
"SMS Center": "\u090f\u0938\u090f\u092e\u090f\u0938 \u0915\u0947\u0902\u0926\u094d\u0930",
|
||||
"SMS Control": "\u090f\u0938\u090f\u092e\u090f\u0938 \u0928\u093f\u092f\u0902\u0924\u094d\u0930\u0923",
|
||||
"SMS Log": "\u090f\u0938\u090f\u092e\u090f\u0938 \u092a\u094d\u0930\u0935\u0947\u0936",
|
||||
"SMS Parameter": "\u090f\u0938\u090f\u092e\u090f\u0938 \u092a\u0948\u0930\u093e\u092e\u0940\u091f\u0930",
|
||||
"SMS Receiver": "\u090f\u0938\u090f\u092e\u090f\u0938 \u0930\u093f\u0938\u0940\u0935\u0930",
|
||||
"SMS Settings": "\u090f\u0938\u090f\u092e\u090f\u0938 \u0938\u0947\u091f\u093f\u0902\u0917\u094d\u0938",
|
||||
"Salary Manager": "\u0935\u0947\u0924\u0928 \u092a\u094d\u0930\u092c\u0902\u0927\u0915",
|
||||
"Salary Slip": "\u0935\u0947\u0924\u0928\u092a\u0930\u094d\u091a\u0940",
|
||||
"Salary Slip Deduction": "\u0935\u0947\u0924\u0928\u092a\u0930\u094d\u091a\u0940 \u0915\u091f\u094c\u0924\u0940",
|
||||
"Salary Slip Earning": "\u0915\u092e\u093e\u0908 \u0935\u0947\u0924\u0928\u092a\u0930\u094d\u091a\u0940",
|
||||
"Salary Structure": "\u0935\u0947\u0924\u0928 \u0938\u0902\u0930\u091a\u0928\u093e",
|
||||
"Salary Structure Deduction": "\u0935\u0947\u0924\u0928 \u0938\u0902\u0930\u091a\u0928\u093e \u0915\u091f\u094c\u0924\u0940",
|
||||
"Salary Structure Earning": "\u0915\u092e\u093e\u0908 \u0935\u0947\u0924\u0928 \u0938\u0902\u0930\u091a\u0928\u093e",
|
||||
"Sales BOM": "\u092c\u093f\u0915\u094d\u0930\u0940 \u092c\u0940\u0913\u090f\u092e",
|
||||
"Sales BOM Item": "\u092c\u093f\u0915\u094d\u0930\u0940 \u092c\u0940\u0913\u090f\u092e \u0906\u0907\u091f\u092e",
|
||||
"Sales Browser Control": "\u092c\u093f\u0915\u094d\u0930\u0940 \u092c\u094d\u0930\u093e\u0909\u091c\u093c\u0930 \u0928\u093f\u092f\u0902\u0924\u094d\u0930\u0923",
|
||||
"Sales Common": "\u0906\u092e \u092c\u093f\u0915\u094d\u0930\u0940",
|
||||
"Sales Email Settings": "\u092c\u093f\u0915\u094d\u0930\u0940 \u0908\u092e\u0947\u0932 \u0938\u0947\u091f\u093f\u0902\u0917",
|
||||
"Sales Invoice": "\u092c\u093f\u0915\u094d\u0930\u0940 \u091a\u093e\u0932\u093e\u0928",
|
||||
"Sales Invoice Advance": "\u092c\u093f\u0915\u094d\u0930\u0940 \u091a\u093e\u0932\u093e\u0928 \u0905\u0917\u094d\u0930\u093f\u092e",
|
||||
"Sales Invoice Item": "\u092c\u093f\u0915\u094d\u0930\u0940 \u091a\u093e\u0932\u093e\u0928 \u0906\u0907\u091f\u092e",
|
||||
"Sales Order": "\u092c\u093f\u0915\u094d\u0930\u0940 \u0906\u0926\u0947\u0936",
|
||||
"Sales Order Item": "\u092c\u093f\u0915\u094d\u0930\u0940 \u0906\u0926\u0947\u0936 \u0906\u0907\u091f\u092e",
|
||||
"Sales Partner": "\u092c\u093f\u0915\u094d\u0930\u0940 \u0938\u093e\u0925\u0940",
|
||||
"Sales Person": "\u092c\u093f\u0915\u094d\u0930\u0940 \u0935\u094d\u092f\u0915\u094d\u0924\u093f",
|
||||
"Sales Taxes and Charges": "\u092c\u093f\u0915\u094d\u0930\u0940 \u0915\u0930 \u0914\u0930 \u0936\u0941\u0932\u094d\u0915",
|
||||
"Sales Taxes and Charges Master": "\u092c\u093f\u0915\u094d\u0930\u0940 \u0915\u0930 \u0914\u0930 \u0936\u0941\u0932\u094d\u0915 \u092e\u093e\u0938\u094d\u091f\u0930",
|
||||
"Sales Team": "\u092c\u093f\u0915\u094d\u0930\u0940 \u091f\u0940\u092e",
|
||||
"Sales and Purchase Return Item": "\u092c\u093f\u0915\u094d\u0930\u0940 \u0914\u0930 \u0916\u0930\u0940\u0926 \u0915\u0947 \u092e\u0926 \u0935\u093e\u092a\u0938\u0940",
|
||||
"Sales and Purchase Return Tool": "\u092c\u093f\u0915\u094d\u0930\u0940 \u0914\u0930 \u0916\u0930\u0940\u0926 \u0915\u0947 \u0930\u093f\u091f\u0930\u094d\u0928 \u091f\u0942\u0932",
|
||||
"Sandbox": "Sandbox",
|
||||
"Scheduler Log": "\u0938\u092e\u092f\u092c\u0926\u094d\u0927\u0915 \u092a\u094d\u0930\u0935\u0947\u0936",
|
||||
"Search Criteria": "\u0916\u094b\u091c \u092e\u093e\u092a\u0926\u0902\u0921",
|
||||
"Selling": "\u0935\u093f\u0915\u094d\u0930\u092f",
|
||||
"Serial No": "\u0928\u0939\u0940\u0902 \u0938\u0940\u0930\u093f\u092f\u0932",
|
||||
"Series Detail": "\u0938\u0940\u0930\u0940\u091c \u0935\u093f\u0938\u094d\u0924\u093e\u0930",
|
||||
"Setup": "\u0935\u094d\u092f\u0935\u0938\u094d\u0925\u093e",
|
||||
"Setup Control": "\u0928\u093f\u092f\u0902\u0924\u094d\u0930\u0923 \u0938\u0947\u091f\u0905\u092a",
|
||||
"Setup Masters": "\u0938\u0947\u091f\u0905\u092a \u092e\u093e\u0938\u094d\u091f\u0930\u094d\u0938",
|
||||
"Shipping Address": "\u0936\u093f\u092a\u093f\u0902\u0917 \u092a\u0924\u093e",
|
||||
"State": "\u0930\u093e\u091c\u094d\u092f",
|
||||
"Stock": "\u0938\u094d\u091f\u0949\u0915",
|
||||
"Stock Entry": "\u0938\u094d\u091f\u0949\u0915 \u090f\u0902\u091f\u094d\u0930\u0940",
|
||||
"Stock Entry Detail": "\u0936\u0947\u092f\u0930 \u090f\u0902\u091f\u094d\u0930\u0940 \u0935\u093f\u0938\u094d\u0924\u093e\u0930",
|
||||
"Stock Ledger": "\u0938\u094d\u091f\u0949\u0915 \u0932\u0947\u091c\u0930",
|
||||
"Stock Ledger Entry": "\u0938\u094d\u091f\u0949\u0915 \u0916\u093e\u0924\u093e \u092a\u094d\u0930\u0935\u093f\u0937\u094d\u091f\u093f",
|
||||
"Stock Reconciliation": "\u0938\u094d\u091f\u0949\u0915 \u0938\u0941\u0932\u0939",
|
||||
"Stock UOM Replace Utility": "\u0938\u094d\u091f\u0949\u0915 UOM \u092c\u0926\u0932\u0947\u0902 \u0909\u092a\u092f\u094b\u0917\u093f\u0924\u093e",
|
||||
"Style Settings": "\u0936\u0948\u0932\u0940 \u0938\u0947\u091f\u093f\u0902\u0917\u094d\u0938",
|
||||
"Supplier": "\u092a\u094d\u0930\u0926\u093e\u092f\u0915",
|
||||
"Supplier Quotation": "\u092a\u094d\u0930\u0926\u093e\u092f\u0915 \u0915\u094b\u091f\u0947\u0936\u0928",
|
||||
"Supplier Quotation Item": "\u092a\u094d\u0930\u0926\u093e\u092f\u0915 \u0915\u094b\u091f\u0947\u0936\u0928 \u0906\u0907\u091f\u092e",
|
||||
"Supplier Type": "\u092a\u094d\u0930\u0926\u093e\u092f\u0915 \u092a\u094d\u0930\u0915\u093e\u0930",
|
||||
"Support": "\u0938\u092e\u0930\u094d\u0925\u0928",
|
||||
"Support Ticket": "\u0938\u092e\u0930\u094d\u0925\u0928 \u091f\u093f\u0915\u091f",
|
||||
"System": "\u092a\u094d\u0930\u0923\u093e\u0932\u0940",
|
||||
"System Console": "\u0938\u093f\u0938\u094d\u091f\u092e \u0915\u0902\u0938\u094b\u0932",
|
||||
"Table Mapper Detail": "\u091f\u0947\u092c\u0932 \u092a\u094d\u0930\u0924\u093f\u091a\u093f\u0924\u094d\u0930\u0923 \u0935\u093f\u0938\u094d\u0924\u093e\u0930",
|
||||
"Tag": "\u091f\u0948\u0917",
|
||||
"Target Detail": "\u0932\u0915\u094d\u0937\u094d\u092f \u0935\u093f\u0938\u094d\u0924\u093e\u0930",
|
||||
"Task": "\u0915\u093e\u0930\u094d\u092f",
|
||||
"Terms and Conditions": "\u0928\u093f\u092f\u092e \u0914\u0930 \u0936\u0930\u094d\u0924\u0947\u0902",
|
||||
"Territory": "\u0915\u094d\u0937\u0947\u0924\u094d\u0930",
|
||||
"Timesheet": "Timesheet",
|
||||
"Timesheet Detail": "Timesheet \u0935\u093f\u0938\u094d\u0924\u093e\u0930",
|
||||
"To Do": "\u0915\u0930\u0928\u0947 \u0915\u0947 \u0932\u093f\u090f \u0915\u094d\u092f\u093e",
|
||||
"ToDo": "ToDo",
|
||||
"Top Bar Item": "\u0936\u0940\u0930\u094d\u0937 \u092c\u093e\u0930 \u0906\u0907\u091f\u092e",
|
||||
"Trash Control": "\u091f\u094d\u0930\u0948\u0936 \u0928\u093f\u092f\u0902\u0924\u094d\u0930\u0923",
|
||||
"Trend Analyzer Control": "\u0930\u0941\u091d\u093e\u0928 \u0935\u093f\u0936\u094d\u0932\u0947\u0937\u0915 \u0928\u093f\u092f\u0902\u0924\u094d\u0930\u0923",
|
||||
"UOM": "UOM",
|
||||
"UOM Conversion Detail": "UOM \u0930\u0942\u092a\u093e\u0902\u0924\u0930\u0923 \u0935\u093f\u0938\u094d\u0924\u093e\u0930",
|
||||
"Unread Messages": "\u0905\u092a\u0920\u093f\u0924 \u0938\u0902\u0926\u0947\u0936\u094b\u0902",
|
||||
"Update Delivery Date": "\u0905\u0926\u094d\u092f\u0924\u0928 \u0921\u093f\u0932\u0940\u0935\u0930\u0940 \u0915\u0940 \u0924\u093e\u0930\u0940\u0916",
|
||||
"UserRole": "UserRole",
|
||||
"Utilities": "\u0909\u092a\u092f\u094b\u0917\u093f\u0924\u093e\u090f\u0901",
|
||||
"Valuation Control": "\u092e\u0942\u0932\u094d\u092f\u093e\u0902\u0915\u0928 \u0928\u093f\u092f\u0902\u0924\u094d\u0930\u0923",
|
||||
"Warehouse": "\u0917\u094b\u0926\u093e\u092e",
|
||||
"Warehouse Type": "\u0935\u0947\u0905\u0930\u0939\u093e\u0909\u0938 \u092a\u094d\u0930\u0915\u093e\u0930",
|
||||
"Warehouse User": "\u0935\u0947\u0905\u0930\u0939\u093e\u0909\u0938 \u0909\u092a\u092f\u094b\u0917\u0915\u0930\u094d\u0924\u093e \u0915\u0947",
|
||||
"Web Page": "\u0935\u0947\u092c \u092a\u0947\u091c",
|
||||
"Website": "\u0935\u0947\u092c\u0938\u093e\u0907\u091f",
|
||||
"Website Item Group": "\u0935\u0947\u092c\u0938\u093e\u0907\u091f \u0906\u0907\u091f\u092e \u0938\u092e\u0942\u0939",
|
||||
"Website Product Category": "\u0935\u0947\u092c\u0938\u093e\u0907\u091f \u0909\u0924\u094d\u092a\u093e\u0926 \u0936\u094d\u0930\u0947\u0923\u0940",
|
||||
"Website Script": "\u0935\u0947\u092c\u0938\u093e\u0907\u091f \u0938\u094d\u0915\u094d\u0930\u093f\u092a\u094d\u091f",
|
||||
"Website Settings": "\u0935\u0947\u092c\u0938\u093e\u0907\u091f \u0938\u0947\u091f\u093f\u0902\u0917",
|
||||
"Website Slideshow": "\u0935\u0947\u092c\u0938\u093e\u0907\u091f \u0938\u094d\u0932\u093e\u0907\u0921 \u0936\u094b",
|
||||
"Website Slideshow Item": "\u0935\u0947\u092c\u0938\u093e\u0907\u091f \u0938\u094d\u0932\u093e\u0907\u0921 \u0936\u094b \u0906\u0907\u091f\u092e",
|
||||
"Workflow": "\u0915\u093e\u0930\u094d\u092f\u092a\u094d\u0930\u0935\u093e\u0939",
|
||||
"Workflow Action": "\u0935\u0930\u094d\u0915\u092b\u093c\u094d\u0932\u094b \u0932\u0921\u093c\u093e\u0908",
|
||||
"Workflow Action Detail": "\u0935\u0930\u094d\u0915\u092b\u093c\u094d\u0932\u094b \u0915\u093e\u0930\u094d\u0930\u0935\u093e\u0908 \u0935\u093f\u0938\u094d\u0924\u093e\u0930",
|
||||
"Workflow Document State": "\u0935\u0930\u094d\u0915\u092b\u093c\u094d\u0932\u094b \u0926\u0938\u094d\u0924\u093e\u0935\u0947\u091c\u093c \u0930\u093e\u091c\u094d\u092f",
|
||||
"Workflow Engine": "\u0915\u093e\u0930\u094d\u092f\u092a\u094d\u0930\u0935\u093e\u0939 \u0907\u0902\u091c\u0928",
|
||||
"Workflow Rule": "\u0935\u0930\u094d\u0915\u092b\u093c\u094d\u0932\u094b \u0928\u093f\u092f\u092e",
|
||||
"Workflow Rule Detail": "\u0935\u0930\u094d\u0915\u092b\u093c\u094d\u0932\u094b \u0928\u093f\u092f\u092e \u0935\u093f\u0938\u094d\u0924\u093e\u0930",
|
||||
"Workflow State": "\u0915\u093e\u0930\u094d\u092f\u092a\u094d\u0930\u0935\u093e\u0939 \u0930\u093e\u091c\u094d\u092f",
|
||||
"Workflow Transition": "\u0935\u0930\u094d\u0915\u092b\u093c\u094d\u0932\u094b \u0938\u0902\u0915\u094d\u0930\u092e\u0923",
|
||||
"Workstation": "\u0935\u0930\u094d\u0915\u0938\u094d\u091f\u0947\u0936\u0928",
|
||||
"test": "\u092a\u0930\u0940\u0915\u094d\u0937\u0923"
|
||||
}
|
||||
@@ -1,321 +0,0 @@
|
||||
{
|
||||
"About Us Settings": "O nama Postavke",
|
||||
"About Us Team Member": "O nama reprezentativka",
|
||||
"Account": "Ra\u010dun",
|
||||
"Accounts": "Ra\u010duni",
|
||||
"Activity": "Djelatnost",
|
||||
"Activity Type": "Aktivnost Tip",
|
||||
"Address": "Adresa",
|
||||
"Answer": "Odgovoriti",
|
||||
"Appraisal": "Procjena",
|
||||
"Appraisal Goal": "Procjena gol",
|
||||
"Appraisal Template": "Procjena Predlo\u017eak",
|
||||
"Appraisal Template Goal": "Procjena Predlo\u017eak cilja",
|
||||
"Attendance": "Poha\u0111anje",
|
||||
"Attendance Control Panel": "Gledatelja Upravlja\u010dka plo\u010da",
|
||||
"Authorization Control": "Odobrenje kontrole",
|
||||
"Authorization Rule": "Autorizacija Pravilo",
|
||||
"BOM": "BOM",
|
||||
"BOM Explosion Item": "BOM eksplozije artikla",
|
||||
"BOM Item": "BOM artikla",
|
||||
"BOM Operation": "BOM Operacija",
|
||||
"BOM Replace Tool": "BOM Zamijenite alat",
|
||||
"Bank Reconciliation": "Banka pomirenje",
|
||||
"Bank Reconciliation Detail": "Banka Pomirenje Detalj",
|
||||
"Batch": "Serija",
|
||||
"Bin": "Kanta",
|
||||
"Blog": "Blog",
|
||||
"Blog Subscriber": "Blog Pretplatnik",
|
||||
"Branch": "Grana",
|
||||
"Brand": "Marka",
|
||||
"Budget Control": "Prora\u010dun kontrola",
|
||||
"Budget Detail": "Prora\u010dun Detalj",
|
||||
"Budget Distribution": "Prora\u010dun Distribucija",
|
||||
"Budget Distribution Detail": "Prora\u010dun Distribucija Detalj",
|
||||
"Bulk Email": "Bulk Email",
|
||||
"Buying": "Kupovina",
|
||||
"C-Form": "C-Form",
|
||||
"C-Form Invoice Detail": "C-Obrazac Ra\u010dun Detalj",
|
||||
"Calendar": "Kalendar",
|
||||
"Campaign": "Kampanja",
|
||||
"Comment": "Komentirati",
|
||||
"Communication": "Komunikacija",
|
||||
"Communication Log": "Komunikacija Prijava",
|
||||
"Company": "Dru\u0161tvo",
|
||||
"Company Control": "Tvrtka Kontrola",
|
||||
"Company History": "Povijest tvrtke",
|
||||
"Contact": "Kontaktirati",
|
||||
"Contact Control": "Kontaktirajte kontrolu",
|
||||
"Contact Us Settings": "Kontaktirajte nas Settings",
|
||||
"Control Panel": "Upravlja\u010dka plo\u010da",
|
||||
"Core": "Sr\u017e",
|
||||
"Cost Center": "Tro\u0161ka",
|
||||
"Country": "Zemlja",
|
||||
"Cross List Item Group": "Kri\u017e Group stavku popisa",
|
||||
"Currency": "Valuta",
|
||||
"Custom Field": "Prilago\u0111ena polja",
|
||||
"Custom Script": "Prilago\u0111ena skripta",
|
||||
"Customer": "Kupac",
|
||||
"Customer Group": "Kupac Grupa",
|
||||
"Customer Issue": "Kupac Issue",
|
||||
"Customize Form": "Prilagodite obrazac",
|
||||
"Customize Form Field": "Prilagodba polja obrasca",
|
||||
"Deduction Type": "Odbitak Tip",
|
||||
"Default Home Page": "Zadani Po\u010detna stranica",
|
||||
"DefaultValue": "DefaultValue",
|
||||
"Delivery Note": "Obavje\u0161tenje o primanji po\u0161iljke",
|
||||
"Delivery Note Item": "Otpremnica artikla",
|
||||
"Delivery Note Packing Item": "Dostava Napomena Pakiranje artikla",
|
||||
"Department": "Odsjek",
|
||||
"Designation": "Oznaka",
|
||||
"DocField": "DocField",
|
||||
"DocPerm": "DocPerm",
|
||||
"DocType": "DOCTYPE",
|
||||
"DocType Label": "DOCTYPE oznaka",
|
||||
"DocType Mapper": "DOCTYPE Mapper",
|
||||
"Documentation": "Dokumentacija",
|
||||
"Earning Type": "Zarada Vid",
|
||||
"Email Digest": "E-po\u0161ta",
|
||||
"Email Settings": "Postavke e-po\u0161te",
|
||||
"Employee": "Zaposlenik",
|
||||
"Employee Education": "Zaposlenik Obrazovanje",
|
||||
"Employee External Work History": "Zaposlenik Vanjski Rad Povijest",
|
||||
"Employee Internal Work History": "Zaposlenik Unutarnji Rad Povijest",
|
||||
"Employee Training": "Zaposlenik Trening",
|
||||
"Employment Type": "Zapo\u0161ljavanje Tip",
|
||||
"Event": "Doga\u0111aj",
|
||||
"Event Role": "Doga\u0111aj Uloga",
|
||||
"Event User": "Doga\u0111aj Upute",
|
||||
"Expense Claim": "Rashodi polaganja",
|
||||
"Expense Claim Detail": "Rashodi Zahtjev Detalj",
|
||||
"Expense Claim Type": "Rashodi Vrsta polaganja",
|
||||
"Featured Item": "Prikazan artikla",
|
||||
"Features Setup": "Zna\u010dajke konfiguracija",
|
||||
"Feed": "Hraniti",
|
||||
"Field Mapper Detail": "Polje Mapper Detalj",
|
||||
"File Data": "File Podaci",
|
||||
"Fiscal Year": "Fiskalna godina",
|
||||
"Forum": "Forum",
|
||||
"GL Control": "GL kontrola",
|
||||
"GL Entry": "GL Stupanje",
|
||||
"GL Mapper": "GL Mapper",
|
||||
"GL Mapper Detail": "GL Mapper Detalj",
|
||||
"Global Defaults": "Globalni Zadano",
|
||||
"Grade": "Razred",
|
||||
"HR": "HR",
|
||||
"Help": "Pomo\u0107i",
|
||||
"Holiday": "Odmor",
|
||||
"Holiday Block List": "Turisti\u010dka Blok Popis",
|
||||
"Holiday Block List Allow": "Turisti\u010dka Popis Blok Dopustite",
|
||||
"Holiday Block List Date": "Turisti\u010dka Blok Popis Datum",
|
||||
"Holiday List": "Turisti\u010dka Popis",
|
||||
"Home": "Dom",
|
||||
"Home Control": "Po\u010detna kontrola",
|
||||
"Human Resources": "Ljudski resursi",
|
||||
"Industry Type": "Industrija Tip",
|
||||
"Installation Note": "Instalacija Napomena",
|
||||
"Installation Note Item": "Instalacija Napomena artikla",
|
||||
"Item": "Stavka",
|
||||
"Item Customer Detail": "Stavka Kupac Detalj",
|
||||
"Item Group": "Stavka Grupa",
|
||||
"Item Price": "Stavka Cijena",
|
||||
"Item Quality Inspection Parameter": "Stavka Provera kvaliteta parametara",
|
||||
"Item Reorder": "Stavka redoslijeda",
|
||||
"Item Supplier": "Stavka Dobavlja\u010d",
|
||||
"Item Tax": "Stavka poreza",
|
||||
"Item Website Specification": "Stavka Web Specifikacija",
|
||||
"Job Applicant": "Posao podnositelj",
|
||||
"Job Opening": "Posao Otvaranje",
|
||||
"Jobs Email Settings": "Poslovi Postavke e-po\u0161te",
|
||||
"Journal Voucher": "\u010casopis bon",
|
||||
"Journal Voucher Detail": "\u010casopis bon Detalj",
|
||||
"Knowledge Base": "Baza znanja",
|
||||
"Landed Cost Item": "Sletio Tro\u0161kovi artikla",
|
||||
"Landed Cost Purchase Receipt": "Sletio Tro\u0161ak Kupnja Potvrda",
|
||||
"Landed Cost Wizard": "Sletio Tro\u0161ak \u010carobnjak",
|
||||
"Lead": "Dovesti",
|
||||
"Leave Allocation": "Ostavite Raspodjela",
|
||||
"Leave Application": "Ostavite aplikaciju",
|
||||
"Leave Block List": "Ostavite Block List",
|
||||
"Leave Block List Allow": "Ostavite Blok Popis Dopustite",
|
||||
"Leave Block List Date": "Ostavite Date Popis Block",
|
||||
"Leave Control Panel": "Ostavite Upravlja\u010dka plo\u010da",
|
||||
"Leave Type": "Ostavite Vid",
|
||||
"Letter Head": "Pismo Head",
|
||||
"Live Chat": "Live Chat",
|
||||
"MIS Control": "MIS kontrola",
|
||||
"Maintenance Schedule": "Odr\u017eavanje Raspored",
|
||||
"Maintenance Schedule Detail": "Odr\u017eavanje Raspored Detalj",
|
||||
"Maintenance Schedule Item": "Odr\u017eavanje Raspored predmeta",
|
||||
"Maintenance Visit": "Odr\u017eavanje Posjetite",
|
||||
"Maintenance Visit Purpose": "Odr\u017eavanje Posjetite Namjena",
|
||||
"Manufacturing": "Proizvodnja",
|
||||
"Market Segment": "Tr\u017ei\u0161ni segment",
|
||||
"Material Request": "Materijal zahtjev",
|
||||
"Material Request Item": "Materijal Zahtjev artikla",
|
||||
"Messages": "Poruke",
|
||||
"Mode of Payment": "Na\u010din pla\u0107anja",
|
||||
"Module Def": "Modul Def",
|
||||
"Modules": "Moduli",
|
||||
"Multi Ledger Report Detail": "Multi knjiga Izvje\u0161\u0107e Detalj",
|
||||
"My Settings": "Moje postavke",
|
||||
"Naming Series": "Imenovanje serije",
|
||||
"Naming Series Options": "Imenovanje Serija isporuke",
|
||||
"Newsletter": "Bilten",
|
||||
"Notification Control": "Obavijest kontrola",
|
||||
"Opportunity": "Prilika",
|
||||
"Opportunity Item": "Prilika artikla",
|
||||
"Other Income Detail": "Ostali prihodi Detalj",
|
||||
"POS Setting": "POS Pode\u0161avanje",
|
||||
"Packing Slip": "Odreskom",
|
||||
"Packing Slip Item": "Odreskom predmet",
|
||||
"Page": "Stranica",
|
||||
"Page Role": "Stranica Uloga",
|
||||
"Patch Log": "Patch Prijava",
|
||||
"Payment to Invoice Matching Tool": "Pla\u0107anje fakture podudaranje alat",
|
||||
"Payment to Invoice Matching Tool Detail": "Pla\u0107anje fakture podudaranje alat Detalj",
|
||||
"Period Closing Voucher": "Razdoblje Zatvaranje bon",
|
||||
"Permission Control": "Dopu\u0161tenje kontrola",
|
||||
"Plot Control": "Zemlji\u0161te kontrola",
|
||||
"Price List": "Cjenik",
|
||||
"Print Format": "Ispis formata",
|
||||
"Print Heading": "Ispis Naslov",
|
||||
"Product": "Proizvod",
|
||||
"Product Group": "Product Group",
|
||||
"Product Settings": "Postavke proizvoda",
|
||||
"Production Order": "Proizvodnja Red",
|
||||
"Production Plan Item": "Proizvodnja plan artikla",
|
||||
"Production Plan Sales Order": "Proizvodnja plan prodajnog naloga",
|
||||
"Production Planning Tool": "Planiranje proizvodnje alat",
|
||||
"Products Settings": "Proizvodi Postavke",
|
||||
"Profile": "Profil",
|
||||
"Profile Control": "Profil kontrola",
|
||||
"Project": "Projekt",
|
||||
"Project Activity": "Projekt aktivnost",
|
||||
"Project Activity Update": "Projekt Aktivnost Update",
|
||||
"Project Control": "Projekt kontrole",
|
||||
"Project Milestone": "Projekt Prekretnica",
|
||||
"Projects": "Projekti",
|
||||
"Property Setter": "Nekretnine seter",
|
||||
"Purchase Common": "Kupnja Zajedni\u010dka",
|
||||
"Purchase Invoice": "Kupnja fakture",
|
||||
"Purchase Invoice Advance": "Kupnja fakture Predujam",
|
||||
"Purchase Invoice Item": "Kupnja fakture predmet",
|
||||
"Purchase Order": "Narud\u017ebenica",
|
||||
"Purchase Order Item": "Narud\u017ebenica predmet",
|
||||
"Purchase Order Item Supplied": "Narud\u017ebenica artikla Isporuka",
|
||||
"Purchase Receipt": "Ra\u010dun kupnje",
|
||||
"Purchase Receipt Item": "Kupnja Potvrda predmet",
|
||||
"Purchase Receipt Item Supplied": "Kupnja Prijem artikla Isporuka",
|
||||
"Purchase Request": "Zahtjev za kupnju",
|
||||
"Purchase Request Item": "Zahtjev za kupnju predmeta",
|
||||
"Purchase Taxes and Charges": "Kupnja Porezi i naknade",
|
||||
"Purchase Taxes and Charges Master": "Kupnja Porezi i naknade Master",
|
||||
"Quality Inspection": "Provera kvaliteta",
|
||||
"Quality Inspection Reading": "Kvaliteta Inspekcija \u010ditanje",
|
||||
"Question": "Pitanje",
|
||||
"Quotation": "Citat",
|
||||
"Quotation Item": "Citat artikla",
|
||||
"Quotation Lost Reason": "Citat Izgubili razlog",
|
||||
"Related Page": "Vezani Stranica",
|
||||
"Rename Tool": "Preimenovanje alat",
|
||||
"Report": "Prijavi",
|
||||
"Role": "Uloga",
|
||||
"SMS Center": "SMS centar",
|
||||
"SMS Control": "SMS kontrola",
|
||||
"SMS Log": "SMS Prijava",
|
||||
"SMS Parameter": "SMS parametra",
|
||||
"SMS Receiver": "SMS-prijemnik",
|
||||
"SMS Settings": "Postavke SMS",
|
||||
"Salary Manager": "Pla\u0107a Manager",
|
||||
"Salary Slip": "Pla\u0107a proklizavanja",
|
||||
"Salary Slip Deduction": "Pla\u0107a proklizavanja Odbitak",
|
||||
"Salary Slip Earning": "Pla\u0107a proklizavanja Zarada",
|
||||
"Salary Structure": "Pla\u0107a Struktura",
|
||||
"Salary Structure Deduction": "Pla\u0107a Struktura Odbitak",
|
||||
"Salary Structure Earning": "Pla\u0107a Struktura Zarada",
|
||||
"Sales BOM": "Prodaja BOM",
|
||||
"Sales BOM Item": "Prodaja BOM artikla",
|
||||
"Sales Browser Control": "Prodaja Preglednik kontrole",
|
||||
"Sales Common": "Prodaja Zajedni\u010dke",
|
||||
"Sales Email Settings": "Prodaja Postavke e-po\u0161te",
|
||||
"Sales Invoice": "Prodaja fakture",
|
||||
"Sales Invoice Advance": "Prodaja Ra\u010dun Predujam",
|
||||
"Sales Invoice Item": "Prodaja Ra\u010dun artikla",
|
||||
"Sales Order": "Prodajnog naloga",
|
||||
"Sales Order Item": "Prodajnog naloga artikla",
|
||||
"Sales Partner": "Prodaja partner",
|
||||
"Sales Person": "Prodaja Osoba",
|
||||
"Sales Taxes and Charges": "Prodaja Porezi i naknade",
|
||||
"Sales Taxes and Charges Master": "Prodaja Porezi i naknade Master",
|
||||
"Sales Team": "Prodaja Team",
|
||||
"Sales and Purchase Return Item": "Prodaja i kupnja Povratak Stavka",
|
||||
"Sales and Purchase Return Tool": "Prodaja i kupnja Povratak Tool",
|
||||
"Sandbox": "Kutija s pijeskom",
|
||||
"Scheduler Log": "Planer Prijava",
|
||||
"Search Criteria": "Tra\u017ei Kriteriji",
|
||||
"Selling": "Prodaja",
|
||||
"Serial No": "Serijski br",
|
||||
"Series Detail": "Serija Detalj",
|
||||
"Setup": "Postavljanje",
|
||||
"Setup Control": "Postavljanje kontrola",
|
||||
"Shipping Address": "Dostava Adresa",
|
||||
"State": "Dr\u017eava",
|
||||
"Stock": "Zaliha",
|
||||
"Stock Entry": "Katalo\u0161ki Stupanje",
|
||||
"Stock Entry Detail": "Katalo\u0161ki Stupanje Detalj",
|
||||
"Stock Ledger": "Stock Ledger",
|
||||
"Stock Ledger Entry": "Stock Ledger Stupanje",
|
||||
"Stock Reconciliation": "Katalo\u0161ki pomirenje",
|
||||
"Stock UOM Replace Utility": "Katalo\u0161ki UOM Zamjena Utility",
|
||||
"Style Settings": "Stil Postavke",
|
||||
"Supplier": "Dobavlja\u010d",
|
||||
"Supplier Quotation": "Dobavlja\u010d Ponuda",
|
||||
"Supplier Quotation Item": "Dobavlja\u010d ponudu artikla",
|
||||
"Supplier Type": "Dobavlja\u010d Tip",
|
||||
"Support": "Podr\u017eati",
|
||||
"Support Ticket": "Podr\u0161ka karata",
|
||||
"System Console": "Sustav konzole",
|
||||
"Table Mapper Detail": "Tablica Mapper Detalj",
|
||||
"Tag": "Privjesak",
|
||||
"Target Detail": "Ciljana Detalj",
|
||||
"Task": "Zadatak",
|
||||
"Terms and Conditions": "Odredbe i uvjeti",
|
||||
"Territory": "Teritorija",
|
||||
"Timesheet": "Kontrolna kartica",
|
||||
"Timesheet Detail": "Timesheet Detalj",
|
||||
"To Do": "Da li",
|
||||
"ToDo": "ToDo",
|
||||
"Top Bar Item": "Najbolje Bar artikla",
|
||||
"Trash Control": "Sme\u0107e kontrola",
|
||||
"Trend Analyzer Control": "Trend Analyzer kontrola",
|
||||
"UOM": "UOM",
|
||||
"UOM Conversion Detail": "UOM pretvorbe Detalj",
|
||||
"Unread Messages": "Nepro\u010ditane poruke",
|
||||
"Update Delivery Date": "A\u017eurirajte datum isporuke",
|
||||
"UserRole": "UserRole",
|
||||
"Utilities": "Komunalne usluge",
|
||||
"Valuation Control": "Vrednovanje kontrola",
|
||||
"Warehouse": "Skladi\u0161te",
|
||||
"Warehouse Type": "Skladi\u0161te Tip",
|
||||
"Warehouse User": "Skladi\u0161te Upute",
|
||||
"Web Page": "Web stranica",
|
||||
"Website": "Website",
|
||||
"Website Item Group": "Web stranica artikla Grupa",
|
||||
"Website Product Category": "Web Kategorija proizvoda",
|
||||
"Website Script": "Web Skripta",
|
||||
"Website Settings": "Website Postavke",
|
||||
"Website Slideshow": "Web Slideshow",
|
||||
"Website Slideshow Item": "Web Slideshow artikla",
|
||||
"Workflow": "Workflow",
|
||||
"Workflow Action": "Workflow Akcija",
|
||||
"Workflow Action Detail": "Workflow Akcija Detalj",
|
||||
"Workflow Document State": "Workflow dokument Dr\u017eava",
|
||||
"Workflow Engine": "Workflow motora",
|
||||
"Workflow Rule": "Workflow Pravilo",
|
||||
"Workflow Rule Detail": "Workflow Pravilo Detalj",
|
||||
"Workflow State": "Workflow dr\u017eava",
|
||||
"Workflow Transition": "Tijek tranzicije",
|
||||
"Workstation": "Workstation",
|
||||
"test": "test"
|
||||
}
|
||||
@@ -1,322 +0,0 @@
|
||||
{
|
||||
"About Us Settings": "Over Ons Instellingen",
|
||||
"About Us Team Member": "Over ons Team Member",
|
||||
"Account": "Rekening",
|
||||
"Accounts": "Accounts",
|
||||
"Activity": "Activiteit",
|
||||
"Activity Type": "Activiteit Type",
|
||||
"Address": "Adres",
|
||||
"Answer": "Beantwoorden",
|
||||
"Appraisal": "Taxatie",
|
||||
"Appraisal Goal": "Beoordeling Doel",
|
||||
"Appraisal Template": "Beoordeling Sjabloon",
|
||||
"Appraisal Template Goal": "Beoordeling Sjabloon Doel",
|
||||
"Attendance": "Opkomst",
|
||||
"Attendance Control Panel": "Aanwezigheid Control Panel",
|
||||
"Authorization Control": "Autorisatie controle",
|
||||
"Authorization Rule": "Autorisatie Rule",
|
||||
"BOM": "BOM",
|
||||
"BOM Explosion Item": "BOM Explosie Item",
|
||||
"BOM Item": "BOM Item",
|
||||
"BOM Operation": "BOM Operatie",
|
||||
"BOM Replace Tool": "BOM Replace Tool",
|
||||
"Bank Reconciliation": "Bank Verzoening",
|
||||
"Bank Reconciliation Detail": "Bank Verzoening Detail",
|
||||
"Batch": "Partij",
|
||||
"Bin": "Bak",
|
||||
"Blog": "Blog",
|
||||
"Blog Subscriber": "Blog Abonnee",
|
||||
"Branch": "Tak",
|
||||
"Brand": "Merk",
|
||||
"Budget Control": "Begrotingscontrole",
|
||||
"Budget Detail": "Budget Detail",
|
||||
"Budget Distribution": "Budget Distributie",
|
||||
"Budget Distribution Detail": "Budget Distributie Detail",
|
||||
"Bulk Email": "Bulk Email",
|
||||
"Buying": "Het kopen",
|
||||
"C-Form": "C-Form",
|
||||
"C-Form Invoice Detail": "C-Form Factuurspecificatie",
|
||||
"Calendar": "Kalender",
|
||||
"Campaign": "Campagne",
|
||||
"Comment": "Commentaar",
|
||||
"Communication": "Verbinding",
|
||||
"Communication Log": "Communicatie Inloggen",
|
||||
"Company": "Vennootschap",
|
||||
"Company Control": "Bedrijf Controle",
|
||||
"Company History": "Bedrijf Geschiedenis",
|
||||
"Contact": "Contact",
|
||||
"Contact Control": "Contact Controle",
|
||||
"Contact Us Settings": "Neem contact met ons op Instellingen",
|
||||
"Control Panel": "Controle Panel",
|
||||
"Core": "Kern",
|
||||
"Cost Center": "Kostenplaats",
|
||||
"Country": "Land",
|
||||
"Cross List Item Group": "Cross List Item Group",
|
||||
"Currency": "Valuta",
|
||||
"Custom Field": "Aangepast veld",
|
||||
"Custom Script": "Aangepaste Script",
|
||||
"Customer": "Klant",
|
||||
"Customer Group": "Klantengroep",
|
||||
"Customer Issue": "Probleem voor de klant",
|
||||
"Customize Form": "Pas Form",
|
||||
"Customize Form Field": "Pas Form Field",
|
||||
"Deduction Type": "Aftrek Type",
|
||||
"Default Home Page": "Standaard startpagina",
|
||||
"DefaultValue": "DefaultValue",
|
||||
"Delivery Note": "Vrachtbrief",
|
||||
"Delivery Note Item": "Levering Note Item",
|
||||
"Delivery Note Packing Item": "Levering Opmerking Verpakking Item",
|
||||
"Department": "Afdeling",
|
||||
"Designation": "Benaming",
|
||||
"DocField": "DocField",
|
||||
"DocPerm": "DocPerm",
|
||||
"DocType": "DOCTYPE",
|
||||
"DocType Label": "DocType Label",
|
||||
"DocType Mapper": "DocType Mapper",
|
||||
"Documentation": "Documentatie",
|
||||
"Earning Type": "Verdienen Type",
|
||||
"Email Digest": "E-mail Digest",
|
||||
"Email Settings": "E-mailinstellingen",
|
||||
"Employee": "Werknemer",
|
||||
"Employee Education": "Medewerker Onderwijs",
|
||||
"Employee External Work History": "Medewerker Buitendienst Medewerker Geschiedenis",
|
||||
"Employee Internal Work History": "Medewerker Interne Werk Geschiedenis",
|
||||
"Employee Training": "Medewerker Training",
|
||||
"Employment Type": "Type baan",
|
||||
"Event": "Evenement",
|
||||
"Event Role": "Event Rol",
|
||||
"Event User": "Evenement Gebruiker",
|
||||
"Expense Claim": "Expense Claim",
|
||||
"Expense Claim Detail": "Expense Claim Detail",
|
||||
"Expense Claim Type": "Expense Claim Type",
|
||||
"Featured Item": "Featured Product",
|
||||
"Features Setup": "Features instelscherm",
|
||||
"Feed": "Voeden",
|
||||
"Field Mapper Detail": "Field Mapper Detail",
|
||||
"File Data": "File Data",
|
||||
"Fiscal Year": "Boekjaar",
|
||||
"Forum": "Forum",
|
||||
"GL Control": "GL Controle",
|
||||
"GL Entry": "GL Entry",
|
||||
"GL Mapper": "GL Mapper",
|
||||
"GL Mapper Detail": "GL Mapper Detail",
|
||||
"Global Defaults": "Global Standaardwaarden",
|
||||
"Grade": "Graad",
|
||||
"HR": "HR",
|
||||
"Help": "Help",
|
||||
"Holiday": "Feestdag",
|
||||
"Holiday Block List": "Holiday Block List",
|
||||
"Holiday Block List Allow": "Holiday Block List Laat",
|
||||
"Holiday Block List Date": "Holiday Block List Datum",
|
||||
"Holiday List": "Holiday Lijst",
|
||||
"Home": "Thuis",
|
||||
"Home Control": "Home Control",
|
||||
"Human Resources": "Human Resources",
|
||||
"Industry Type": "Industry Type",
|
||||
"Installation Note": "Installatie Opmerking",
|
||||
"Installation Note Item": "Installatie Opmerking Item",
|
||||
"Item": "Item",
|
||||
"Item Customer Detail": "Item Klant Detail",
|
||||
"Item Group": "Item Group",
|
||||
"Item Price": "Item Prijs",
|
||||
"Item Quality Inspection Parameter": "Item Kwaliteitscontrole Parameter",
|
||||
"Item Reorder": "Item opnieuw ordenen",
|
||||
"Item Supplier": "Item Leverancier",
|
||||
"Item Tax": "Item Belasting",
|
||||
"Item Website Specification": "Item Website Specificatie",
|
||||
"Job Applicant": "Sollicitant",
|
||||
"Job Opening": "Vacature",
|
||||
"Jobs Email Settings": "Vacatures E-mailinstellingen",
|
||||
"Journal Voucher": "Journal Voucher",
|
||||
"Journal Voucher Detail": "Journal Voucher Detail",
|
||||
"Knowledge Base": "Knowledge Base",
|
||||
"Landed Cost Item": "Landed Cost Item",
|
||||
"Landed Cost Purchase Receipt": "Landed Cost Inkoop Ontvangstbewijs",
|
||||
"Landed Cost Wizard": "Landed Cost Wizard",
|
||||
"Lead": "Leiden",
|
||||
"Leave Allocation": "Laat Toewijzing",
|
||||
"Leave Application": "Verlofaanvraag",
|
||||
"Leave Block List": "Laat Block List",
|
||||
"Leave Block List Allow": "Laat Block List Laat",
|
||||
"Leave Block List Date": "Laat Block List Datum",
|
||||
"Leave Control Panel": "Laat het Configuratiescherm",
|
||||
"Leave Type": "Laat Type",
|
||||
"Letter Head": "Brief Hoofd",
|
||||
"Live Chat": "Live Chat",
|
||||
"MIS Control": "MIS Controle",
|
||||
"Maintenance Schedule": "Onderhoudsschema",
|
||||
"Maintenance Schedule Detail": "Onderhoudsschema Detail",
|
||||
"Maintenance Schedule Item": "Onderhoudsschema Item",
|
||||
"Maintenance Visit": "Onderhoud Bezoek",
|
||||
"Maintenance Visit Purpose": "Onderhoud Bezoek Doel",
|
||||
"Manufacturing": "Productie",
|
||||
"Market Segment": "Marktsegment",
|
||||
"Material Request": "Materiaal aanvragen",
|
||||
"Material Request Item": "Materiaal aanvragen Item",
|
||||
"Messages": "Berichten",
|
||||
"Mode of Payment": "Wijze van betaling",
|
||||
"Module Def": "Module Def",
|
||||
"Modules": "Modules",
|
||||
"Multi Ledger Report Detail": "Multi Ledger Report Detail",
|
||||
"My Settings": "Mijn instellingen",
|
||||
"Naming Series": "Benoemen Series",
|
||||
"Naming Series Options": "Benoemen Reeksopties",
|
||||
"Newsletter": "Nieuwsbrief",
|
||||
"Notification Control": "Kennisgeving Controle",
|
||||
"Opportunity": "Kans",
|
||||
"Opportunity Item": "Opportunity Item",
|
||||
"Other Income Detail": "Overige inkomsten Detail",
|
||||
"POS Setting": "POS-instelling",
|
||||
"Packing Slip": "Pakbon",
|
||||
"Packing Slip Item": "Pakbon Item",
|
||||
"Page": "Pagina",
|
||||
"Page Role": "Pagina Rol",
|
||||
"Patch Log": "Patch Inloggen",
|
||||
"Payment to Invoice Matching Tool": "Betaling aan Factuurvergelijk Tool",
|
||||
"Payment to Invoice Matching Tool Detail": "Betaling aan Factuurvergelijk Tool Detail",
|
||||
"Period Closing Voucher": "Periode Closing Voucher",
|
||||
"Permission Control": "Toestemming Controle",
|
||||
"Plot Control": "Plot Controle",
|
||||
"Price List": "Prijslijst",
|
||||
"Print Format": "Print Formaat",
|
||||
"Print Heading": "Print rubriek",
|
||||
"Product": "Product",
|
||||
"Product Group": "Productgroep",
|
||||
"Product Settings": "Product-instellingen",
|
||||
"Production": "Productie",
|
||||
"Production Order": "Productieorder",
|
||||
"Production Plan Item": "Productie Plan Item",
|
||||
"Production Plan Sales Order": "Productie Plan Verkooporder",
|
||||
"Production Planning Tool": "Productie Planning Tool",
|
||||
"Products Settings": "Producten Instellingen",
|
||||
"Profile": "Profiel",
|
||||
"Profile Control": "Profiel Controle",
|
||||
"Project": "Project",
|
||||
"Project Activity": "Project Activiteit",
|
||||
"Project Activity Update": "Project Activiteit update",
|
||||
"Project Control": "Project Control",
|
||||
"Project Milestone": "Project Milestone",
|
||||
"Projects": "Projecten",
|
||||
"Property Setter": "Onroerend goed Setter",
|
||||
"Purchase Common": "Aankoop Gemeenschappelijke",
|
||||
"Purchase Invoice": "Aankoop Factuur",
|
||||
"Purchase Invoice Advance": "Aankoop Factuur Advance",
|
||||
"Purchase Invoice Item": "Aankoop Factuur Item",
|
||||
"Purchase Order": "Purchase Order",
|
||||
"Purchase Order Item": "Aankoop Bestelling",
|
||||
"Purchase Order Item Supplied": "Aankoop Bestelling ingevoerd",
|
||||
"Purchase Receipt": "Aankoopbewijs",
|
||||
"Purchase Receipt Item": "Aankoopbewijs Item",
|
||||
"Purchase Receipt Item Supplied": "Aankoopbewijs Item ingevoerd",
|
||||
"Purchase Request": "Aankoop Request",
|
||||
"Purchase Request Item": "Aankoop Request Item",
|
||||
"Purchase Taxes and Charges": "Aankoop en-heffingen",
|
||||
"Purchase Taxes and Charges Master": "Aankoop en-heffingen Master",
|
||||
"Quality Inspection": "Kwaliteitscontrole",
|
||||
"Quality Inspection Reading": "Kwaliteitscontrole Reading",
|
||||
"Question": "Vraag",
|
||||
"Quotation": "Citaat",
|
||||
"Quotation Item": "Offerte Item",
|
||||
"Quotation Lost Reason": "Offerte Verloren Reden",
|
||||
"Related Page": "Verwante pagina",
|
||||
"Rename Tool": "Wijzig de naam van Tool",
|
||||
"Report": "Verslag",
|
||||
"Role": "Rol",
|
||||
"SMS Center": "SMS Center",
|
||||
"SMS Control": "SMS Control",
|
||||
"SMS Log": "SMS Log",
|
||||
"SMS Parameter": "SMS Parameter",
|
||||
"SMS Receiver": "SMS-ontvanger",
|
||||
"SMS Settings": "SMS-instellingen",
|
||||
"Salary Manager": "Salaris Manager",
|
||||
"Salary Slip": "Loonstrook",
|
||||
"Salary Slip Deduction": "Loonstrook Aftrek",
|
||||
"Salary Slip Earning": "Loonstrook verdienen",
|
||||
"Salary Structure": "Salarisstructuur",
|
||||
"Salary Structure Deduction": "Salaris Structuur Aftrek",
|
||||
"Salary Structure Earning": "Salaris Structuur verdienen",
|
||||
"Sales BOM": "Verkoop BOM",
|
||||
"Sales BOM Item": "Verkoop BOM Item",
|
||||
"Sales Browser Control": "Verkoop Browser Control",
|
||||
"Sales Common": "Verkoop Gemeenschappelijke",
|
||||
"Sales Email Settings": "Sales E-mailinstellingen",
|
||||
"Sales Invoice": "Sales Invoice",
|
||||
"Sales Invoice Advance": "Sales Invoice Advance",
|
||||
"Sales Invoice Item": "Sales Invoice Item",
|
||||
"Sales Order": "Verkooporder",
|
||||
"Sales Order Item": "Sales Order Item",
|
||||
"Sales Partner": "Sales Partner",
|
||||
"Sales Person": "Sales Person",
|
||||
"Sales Taxes and Charges": "Verkoop en-heffingen",
|
||||
"Sales Taxes and Charges Master": "Verkoop en-heffingen Master",
|
||||
"Sales Team": "Sales Team",
|
||||
"Sales and Purchase Return Item": "Verkoop en Inkoop Return Item",
|
||||
"Sales and Purchase Return Tool": "Verkoop en Inkoop Return Tool",
|
||||
"Sandbox": "Sandbox",
|
||||
"Scheduler Log": "Scheduler Inloggen",
|
||||
"Search Criteria": "Zoekcriteria",
|
||||
"Selling": "Selling",
|
||||
"Serial No": "Serienummer",
|
||||
"Series Detail": "Series Detail",
|
||||
"Setup": "Setup",
|
||||
"Setup Control": "Setup Controle",
|
||||
"Shipping Address": "Verzendadres",
|
||||
"State": "Staat",
|
||||
"Stock": "Voorraad",
|
||||
"Stock Entry": "Stock Entry",
|
||||
"Stock Entry Detail": "Stock Entry Detail",
|
||||
"Stock Ledger": "Stock Ledger",
|
||||
"Stock Ledger Entry": "Stock Ledger Entry",
|
||||
"Stock Reconciliation": "Stock Verzoening",
|
||||
"Stock UOM Replace Utility": "Stock Verpakking Vervang Utility",
|
||||
"Style Settings": "Stijlinstellingen",
|
||||
"Supplier": "Leverancier",
|
||||
"Supplier Quotation": "Leverancier Offerte",
|
||||
"Supplier Quotation Item": "Leverancier Offerte Item",
|
||||
"Supplier Type": "Leverancier Type",
|
||||
"Support": "Ondersteunen",
|
||||
"Support Ticket": "Hulpaanvraag",
|
||||
"System Console": "System Console",
|
||||
"Table Mapper Detail": "Tabel Mapper Detail",
|
||||
"Tag": "Label",
|
||||
"Target Detail": "Doel Detail",
|
||||
"Task": "Taak",
|
||||
"Terms and Conditions": "Algemene Voorwaarden",
|
||||
"Territory": "Grondgebied",
|
||||
"Timesheet": "Rooster",
|
||||
"Timesheet Detail": "Timesheet Detail",
|
||||
"To Do": "To Do",
|
||||
"ToDo": "ToDo",
|
||||
"Top Bar Item": "Top Bar Item",
|
||||
"Trash Control": "Trash Controle",
|
||||
"Trend Analyzer Control": "Trendanalyse Controle",
|
||||
"UOM": "Verpakking",
|
||||
"UOM Conversion Detail": "Verpakking Conversie Detail",
|
||||
"Unread Messages": "Ongelezen berichten",
|
||||
"Update Delivery Date": "Werk Leveringsdatum",
|
||||
"UserRole": "UserRole",
|
||||
"Utilities": "Utilities",
|
||||
"Valuation Control": "Waardering Controle",
|
||||
"Warehouse": "Magazijn",
|
||||
"Warehouse Type": "Warehouse Type",
|
||||
"Warehouse User": "Magazijn Gebruiker",
|
||||
"Web Page": "Webpagina",
|
||||
"Website": "Website",
|
||||
"Website Item Group": "Website Item Group",
|
||||
"Website Product Category": "Website Product Category",
|
||||
"Website Script": "Website Script",
|
||||
"Website Settings": "Website-instellingen",
|
||||
"Website Slideshow": "Website Diashow",
|
||||
"Website Slideshow Item": "Website Diashow Item",
|
||||
"Workflow": "Workflow",
|
||||
"Workflow Action": "Workflow Actie",
|
||||
"Workflow Action Detail": "Workflow Actie Detail",
|
||||
"Workflow Document State": "Workflow Document State",
|
||||
"Workflow Engine": "Workflow Engine",
|
||||
"Workflow Rule": "Workflow Rule",
|
||||
"Workflow Rule Detail": "Workflow Regel Detail",
|
||||
"Workflow State": "Workflow State",
|
||||
"Workflow Transition": "Workflow Transition",
|
||||
"Workstation": "Workstation",
|
||||
"test": "test"
|
||||
}
|
||||
@@ -1,317 +0,0 @@
|
||||
{
|
||||
"About Us Settings": "Configura\u00e7\u00f5es do Quem Somos",
|
||||
"About Us Team Member": "Sobre Membro da Equipe",
|
||||
"Account": "Conta",
|
||||
"Accounts": "Contas",
|
||||
"Activity": "Atividade",
|
||||
"Activity Type": "Tipo da Atividade",
|
||||
"Address": "Endere\u00e7o",
|
||||
"Answer": "Resposta",
|
||||
"Appraisal": "Avalia\u00e7\u00e3o",
|
||||
"Appraisal Goal": "Meta de Avalia\u00e7\u00e3o",
|
||||
"Appraisal Template": "Modelo de Avalia\u00e7\u00e3o",
|
||||
"Appraisal Template Goal": "Meta do Modelo de Avalia\u00e7\u00e3o",
|
||||
"Attendance": "Comparecimento",
|
||||
"Attendance Control Panel": "Painel de Controle de Comparecimento",
|
||||
"Authorization Control": "Controle de autoriza\u00e7\u00e3o",
|
||||
"Authorization Rule": "Regra de autoriza\u00e7\u00e3o",
|
||||
"BOM": "LDM",
|
||||
"BOM Explosion Item": "Item da Explos\u00e3o da LDM",
|
||||
"BOM Item": "Item da LDM",
|
||||
"BOM Operation": "Opera\u00e7\u00e3o da LDM",
|
||||
"BOM Replace Tool": "Ferramenta de Substitui\u00e7\u00e3o da LDM",
|
||||
"Bank Reconciliation": "Reconcilia\u00e7\u00e3o Banc\u00e1ria",
|
||||
"Bank Reconciliation Detail": "Detalhe da Reconcilia\u00e7\u00e3o Banc\u00e1ria",
|
||||
"Batch": "Lote",
|
||||
"Bin": "Caixa",
|
||||
"Blog": "Blog",
|
||||
"Blog Subscriber": "Assinante do Blog",
|
||||
"Branch": "Ramo",
|
||||
"Brand": "Marca",
|
||||
"Budget Control": "Controle de Or\u00e7amento",
|
||||
"Budget Detail": "Detalhe do Or\u00e7amento",
|
||||
"Budget Distribution": "Distribui\u00e7\u00e3o de Or\u00e7amento",
|
||||
"Budget Distribution Detail": "Detalhe da Distribui\u00e7\u00e3o de Or\u00e7amento",
|
||||
"Bulk Email": "E-mail em massa",
|
||||
"Buying": "Compras",
|
||||
"C-Form": "Formul\u00e1rio-C",
|
||||
"C-Form Invoice Detail": "Detalhe Fatura do Formul\u00e1rio-C",
|
||||
"Calendar": "Calend\u00e1rio",
|
||||
"Campaign": "Campanha",
|
||||
"Comment": "Coment\u00e1rio",
|
||||
"Communication": "Comunica\u00e7\u00e3o",
|
||||
"Communication Log": "Log de Comunica\u00e7\u00e3o",
|
||||
"Company": "Empresa",
|
||||
"Company Control": "Controle da Empresa",
|
||||
"Company History": "Hist\u00f3rico da Empresa",
|
||||
"Contact": "Contato",
|
||||
"Contact Control": "Controle de Contato",
|
||||
"Contact Us Settings": "Configura\u00e7\u00f5es do Fale Conosco",
|
||||
"Control Panel": "Painel de Controle",
|
||||
"Core": "N\u00facleo",
|
||||
"Cost Center": "Centro de Custos",
|
||||
"Country": "Pa\u00eds",
|
||||
"Currency": "Moeda",
|
||||
"Custom Field": "Campo personalizado",
|
||||
"Custom Script": "Script personalizado",
|
||||
"Customer": "Cliente",
|
||||
"Customer Group": "Grupo de Clientes",
|
||||
"Customer Issue": "Quest\u00e3o do Cliente",
|
||||
"Customize Form": "Personalize Formul\u00e1rio",
|
||||
"Customize Form Field": "Personalize campo de formul\u00e1rio",
|
||||
"Deduction Type": "Tipo de dedu\u00e7\u00e3o",
|
||||
"Default Home Page": "P\u00e1gina Inicial padr\u00e3o",
|
||||
"DefaultValue": "Valor padr\u00e3o",
|
||||
"Delivery Note": "Guia de Remessa",
|
||||
"Delivery Note Item": "Item da Guia de Remessa",
|
||||
"Delivery Note Packing Item": "Item do Pacote da Guia de Remessa",
|
||||
"Department": "Departamento",
|
||||
"Designation": "Designa\u00e7\u00e3o",
|
||||
"DocField": "DocField",
|
||||
"DocPerm": "DocPerm",
|
||||
"DocType": "DocType",
|
||||
"DocType Label": "Etiqueta do DocType",
|
||||
"DocType Mapper": "Mapeador do DocType",
|
||||
"Documentation": "Documenta\u00e7\u00e3o",
|
||||
"Earning Type": "Tipo de Ganho",
|
||||
"Email Digest": "Resumo por E-mail",
|
||||
"Email Settings": "Configura\u00e7\u00f5es de e-mail",
|
||||
"Employee": "Funcion\u00e1rio",
|
||||
"Employee Education": "Escolaridade do Funcion\u00e1rio",
|
||||
"Employee External Work History": "Hist\u00f3rico de trabalho externo do Funcion\u00e1rio",
|
||||
"Employee Internal Work History": "Hist\u00f3rico de trabalho interno do Funcion\u00e1rio",
|
||||
"Employee Training": "Treinamento de funcion\u00e1rios",
|
||||
"Employment Type": "Tipo de emprego",
|
||||
"Event": "Evento",
|
||||
"Event Role": "Fun\u00e7\u00e3o do Evento",
|
||||
"Event User": "Usu\u00e1rio do Evento",
|
||||
"Expense Claim": "Pedido de Reembolso de Despesas",
|
||||
"Expense Claim Detail": "Detalhe do Pedido de Reembolso de Despesas",
|
||||
"Expense Claim Type": "Tipo de Pedido de Reembolso de Despesas",
|
||||
"Featured Item": "Item Destacado",
|
||||
"Features Setup": "Configura\u00e7\u00e3o de caracter\u00edsticas",
|
||||
"Feed": "Alimentar",
|
||||
"Field Mapper Detail": "Detalhe do Mapeador do Campo",
|
||||
"File Data": "Dados de arquivo",
|
||||
"Fiscal Year": "Exerc\u00edcio fiscal",
|
||||
"Forum": "F\u00f3rum",
|
||||
"GL Control": "GL Controle",
|
||||
"GL Entry": "Lan\u00e7amento GL",
|
||||
"GL Mapper": "Mapeamento GL",
|
||||
"GL Mapper Detail": "Detalhe do Mapeamento GL",
|
||||
"Global Defaults": "Padr\u00f5es globais",
|
||||
"Grade": "Grau",
|
||||
"HR": "RH",
|
||||
"Help": "Ajudar",
|
||||
"Holiday": "Feriado",
|
||||
"Holiday Block List": "Lista de Bloqueios de f\u00e9rias",
|
||||
"Holiday Block List Allow": "Lista de Bloqueios de f\u00e9rias Permitir",
|
||||
"Holiday Block List Date": "Data feriado Lista de Bloqueios",
|
||||
"Holiday List": "Lista de feriado",
|
||||
"Home": "In\u00edcio",
|
||||
"Home Control": "In\u00edcio de Controle",
|
||||
"Human Resources": "Recursos Humanos",
|
||||
"Industry Type": "Tipo de ind\u00fastria",
|
||||
"Installation Note": "Nota de Instala\u00e7\u00e3o",
|
||||
"Installation Note Item": "Item da Nota de Instala\u00e7\u00e3o",
|
||||
"Item": "Item",
|
||||
"Item Customer Detail": "Detalhe do Cliente do Item",
|
||||
"Item Group": "Grupo de Itens",
|
||||
"Item Price": "Pre\u00e7o do Item",
|
||||
"Item Quality Inspection Parameter": "Par\u00e2metro de Inspe\u00e7\u00e3o de Qualidade do Item",
|
||||
"Item Reorder": "Item Reordenar",
|
||||
"Item Supplier": "Fornecedor do Item",
|
||||
"Item Tax": "Imposto do Item",
|
||||
"Item Website Specification": "Especifica\u00e7\u00e3o do Site do Item",
|
||||
"Job Applicant": "Candidato a emprego",
|
||||
"Job Opening": "Vaga de emprego",
|
||||
"Jobs Email Settings": "Configura\u00e7\u00f5es do e-mail de empregos",
|
||||
"Journal Voucher": "Comprovante do livro Di\u00e1rio",
|
||||
"Journal Voucher Detail": "Detalhe do Comprovante do livro Di\u00e1rio",
|
||||
"Knowledge Base": "Base de Conhecimento",
|
||||
"Landed Cost Item": "Custo de desembarque do Item",
|
||||
"Landed Cost Purchase Receipt": "Recibo de compra do custo de desembarque",
|
||||
"Landed Cost Wizard": "Assistente de Custo de Desembarque",
|
||||
"Lead": "Prospecto",
|
||||
"Leave Allocation": "Aloca\u00e7\u00e3o de Licen\u00e7as",
|
||||
"Leave Application": "Solicita\u00e7\u00e3o de Licen\u00e7as",
|
||||
"Leave Block List": "Deixe Lista de Bloqueios",
|
||||
"Leave Block List Allow": "Deixe Lista de Bloqueios Permitir",
|
||||
"Leave Block List Date": "Deixe Data Lista de Bloqueios",
|
||||
"Leave Control Panel": "Painel de Controle de Licen\u00e7as",
|
||||
"Leave Type": "Tipo de Licen\u00e7as",
|
||||
"Letter Head": "Timbrado",
|
||||
"Live Chat": "Chat ao vivo",
|
||||
"MIS Control": "Controle MIS",
|
||||
"Maintenance Schedule": "Programa\u00e7\u00e3o da Manuten\u00e7\u00e3o",
|
||||
"Maintenance Schedule Detail": "Detalhe da Programa\u00e7\u00e3o da Manuten\u00e7\u00e3o",
|
||||
"Maintenance Schedule Item": "Item da Programa\u00e7\u00e3o da Manuten\u00e7\u00e3o",
|
||||
"Maintenance Visit": "Visita de manuten\u00e7\u00e3o",
|
||||
"Maintenance Visit Purpose": "Finalidade da visita de manuten\u00e7\u00e3o",
|
||||
"Manufacturing": "Fabrica\u00e7\u00e3o",
|
||||
"Market Segment": "Segmento de mercado",
|
||||
"Material Request": "Pedido de material",
|
||||
"Material Request Item": "Item de solicita\u00e7\u00e3o de material",
|
||||
"Messages": "Mensagens",
|
||||
"Mode of Payment": "Forma de Pagamento",
|
||||
"Module Def": "M\u00f3dulo Def",
|
||||
"Modules": "M\u00f3dulos",
|
||||
"Multi Ledger Report Detail": "Detalhe do Relat\u00f3rio de m\u00faltiplos Livros-Raz\u00e3o",
|
||||
"My Settings": "Minhas Configura\u00e7\u00f5es",
|
||||
"Naming Series": "S\u00e9ries nomeadas",
|
||||
"Naming Series Options": "Op\u00e7\u00f5es das S\u00e9ries nomeadas",
|
||||
"Newsletter": "Boletim informativo",
|
||||
"Notification Control": "Controle de Notifica\u00e7\u00e3o",
|
||||
"Opportunity": "Oportunidade",
|
||||
"Opportunity Item": "Item da oportunidade",
|
||||
"Other Income Detail": "Detalhe sobre Outras Receitas",
|
||||
"POS Setting": "Configura\u00e7\u00e3o de PDV",
|
||||
"Packing Slip": "Guia de Remessa",
|
||||
"Packing Slip Item": "Item da Guia de Remessa",
|
||||
"Page": "P\u00e1gina",
|
||||
"Page Role": "Fun\u00e7\u00e3o da p\u00e1gina",
|
||||
"Patch Log": "Log de Patches",
|
||||
"Payment to Invoice Matching Tool": "Ferramenta de Pagamento contra Fatura correspondente",
|
||||
"Payment to Invoice Matching Tool Detail": "Detalhe da Ferramenta de Pagamento contra Fatura correspondente",
|
||||
"Period Closing Voucher": "Comprovante de Encerramento per\u00edodo",
|
||||
"Permission Control": "Controle de Permiss\u00e3o",
|
||||
"Price List": "Lista de Pre\u00e7os",
|
||||
"Print Format": "Formato de impress\u00e3o",
|
||||
"Print Heading": "Cabe\u00e7alho de impress\u00e3o",
|
||||
"Product Group": "Grupo de Produtos",
|
||||
"Product Settings": "Configura\u00e7\u00f5es do produto",
|
||||
"Production Order": "Ordem de Produ\u00e7\u00e3o",
|
||||
"Production Plan Item": "Item do plano de produ\u00e7\u00e3o",
|
||||
"Production Plan Sales Order": "Ordem de Venda do Plano de Produ\u00e7\u00e3o",
|
||||
"Production Planning Tool": "Ferramenta de Planejamento da Produ\u00e7\u00e3o",
|
||||
"Products Settings": "Configura\u00e7\u00f5es de produtos",
|
||||
"Profile": "Perfil",
|
||||
"Profile Control": "Controle de Perfil",
|
||||
"Project": "Projeto",
|
||||
"Project Activity": "Atividade do Projeto",
|
||||
"Project Activity Update": "Atualiza\u00e7\u00e3o da Atividade do Projeto",
|
||||
"Project Control": "Controle de Projeto",
|
||||
"Project Milestone": "Marco do Projeto",
|
||||
"Projects": "Projetos",
|
||||
"Property Setter": "Setter propriedade",
|
||||
"Purchase Common": "Compras comum",
|
||||
"Purchase Invoice": "Nota Fiscal de Compra",
|
||||
"Purchase Invoice Advance": "Antecipa\u00e7\u00e3o da Nota Fiscal de Compra",
|
||||
"Purchase Invoice Item": "Item da Nota Fiscal de Compra",
|
||||
"Purchase Order": "Ordem de Compra",
|
||||
"Purchase Order Item": "Item da Ordem de Compra",
|
||||
"Purchase Order Item Supplied": "Item da Ordem de Compra fornecido",
|
||||
"Purchase Receipt": "Recibo de Compra",
|
||||
"Purchase Receipt Item": "Item do Recibo de Compra",
|
||||
"Purchase Receipt Item Supplied": "Item do Recibo de Compra Fornecido",
|
||||
"Purchase Request": "Pedido de Compra",
|
||||
"Purchase Request Item": "Item do Pedido de Compra",
|
||||
"Purchase Taxes and Charges": "Impostos e Encargos sobre Compras",
|
||||
"Purchase Taxes and Charges Master": "Cadastro de Impostos e Encargos sobre Compras",
|
||||
"Quality Inspection": "Inspe\u00e7\u00e3o de Qualidade",
|
||||
"Quality Inspection Reading": "Leitura da Inspe\u00e7\u00e3o de Qualidade",
|
||||
"Question": "Pergunta",
|
||||
"Quotation": "Cota\u00e7\u00e3o",
|
||||
"Quotation Item": "Item da Cota\u00e7\u00e3o",
|
||||
"Quotation Lost Reason": "Raz\u00e3o da perda da Cota\u00e7\u00e3o",
|
||||
"Related Page": "P\u00e1gina Relacionada",
|
||||
"Rename Tool": "Ferramenta de Renomear",
|
||||
"Report": "Relat\u00f3rio",
|
||||
"Role": "Fun\u00e7\u00e3o",
|
||||
"SMS Center": "Centro de SMS",
|
||||
"SMS Control": "Controle de SMS",
|
||||
"SMS Log": "Log de SMS",
|
||||
"SMS Parameter": "Par\u00e2metro de SMS",
|
||||
"SMS Receiver": "Receptor do SMS",
|
||||
"SMS Settings": "Defini\u00e7\u00f5es de SMS",
|
||||
"Salary Manager": "Gerenciador de sal\u00e1rio",
|
||||
"Salary Slip": "Folha de pagamento",
|
||||
"Salary Slip Deduction": "Dedu\u00e7\u00e3o da folha de pagamento",
|
||||
"Salary Slip Earning": "Ganhos da folha de pagamento",
|
||||
"Salary Structure": "Estrutura Salarial",
|
||||
"Salary Structure Deduction": "Dedu\u00e7\u00e3o da Estrutura Salarial",
|
||||
"Salary Structure Earning": "Ganho da Estrutura Salarial",
|
||||
"Sales BOM": "LDM de Vendas",
|
||||
"Sales BOM Item": "Item da LDM de Vendas",
|
||||
"Sales Browser Control": "Controle do Navegador de Vendas",
|
||||
"Sales Common": "Vendas comuns",
|
||||
"Sales Email Settings": "Configura\u00e7\u00f5es do Email de Vendas",
|
||||
"Sales Invoice": "Nota Fiscal de Venda",
|
||||
"Sales Invoice Advance": "Antecipa\u00e7\u00e3o da Nota Fiscal de Venda",
|
||||
"Sales Invoice Item": "Item da Nota Fiscal de Venda",
|
||||
"Sales Order": "Ordem de Venda",
|
||||
"Sales Order Item": "Item da Ordem de Venda",
|
||||
"Sales Partner": "Parceiro de Vendas",
|
||||
"Sales Person": "Vendedor",
|
||||
"Sales Taxes and Charges": "Impostos e Taxas sobre Vendas",
|
||||
"Sales Taxes and Charges Master": "Cadastro de Impostos e Taxas sobre Vendas",
|
||||
"Sales Team": "Equipe de Vendas",
|
||||
"Sales and Purchase Return Item": "Item de retorno de compra e venda",
|
||||
"Sales and Purchase Return Tool": "Ferramenta de retorno de compra e venda",
|
||||
"Sandbox": "Sandbox",
|
||||
"Scheduler Log": "Log do Agendador",
|
||||
"Search Criteria": "Crit\u00e9rios da pesquisa",
|
||||
"Selling": "Vendas",
|
||||
"Serial No": "N\u00ba de S\u00e9rie",
|
||||
"Series Detail": "Detalhe da S\u00e9ries",
|
||||
"Setup": "Configura\u00e7\u00e3o",
|
||||
"Setup Control": "Controle de configura\u00e7\u00e3o",
|
||||
"Shipping Address": "Endere\u00e7o de envio",
|
||||
"State": "Estado",
|
||||
"Stock": "Estoque",
|
||||
"Stock Entry": "Lan\u00e7amento no Estoque",
|
||||
"Stock Entry Detail": "Detalhe do lan\u00e7amento no Estoque",
|
||||
"Stock Ledger": "Livro de Invent\u00e1rio",
|
||||
"Stock Ledger Entry": "Lan\u00e7amento do Livro de Invent\u00e1rio",
|
||||
"Stock Reconciliation": "Reconcilia\u00e7\u00e3o de Estoque",
|
||||
"Stock UOM Replace Utility": "Utilit\u00e1rio para Substituir UDM do Estoque",
|
||||
"Style Settings": "Configura\u00e7\u00f5es de Estilo",
|
||||
"Supplier": "Fornecedor",
|
||||
"Supplier Quotation": "Cota\u00e7\u00e3o do Fornecedor",
|
||||
"Supplier Quotation Item": "Item da Cota\u00e7\u00e3o do Fornecedor",
|
||||
"Supplier Type": "Tipo de Fornecedor",
|
||||
"Support": "Suporte",
|
||||
"Support Ticket": "Ticket de Suporte",
|
||||
"System Console": "Console do Sistema",
|
||||
"Table Mapper Detail": "Detalhe do mapeamento da tabela",
|
||||
"Tag": "Etiqueta",
|
||||
"Target Detail": "Detalhe da meta",
|
||||
"Task": "Tarefa",
|
||||
"Terms and Conditions": "Termos e Condi\u00e7\u00f5es",
|
||||
"Territory": "Territ\u00f3rio",
|
||||
"Timesheet": "Quadro de Hor\u00e1rios",
|
||||
"Timesheet Detail": "Detalhe do Quadro de Hor\u00e1rios",
|
||||
"To Do": "Lista de Tarefas",
|
||||
"ToDo": "Lista de Tarefas",
|
||||
"Top Bar Item": "Item da barra superior",
|
||||
"Trash Control": "Controle de lixo",
|
||||
"Trend Analyzer Control": "Controle do Analisador de tend\u00eancia",
|
||||
"UOM": "UDM",
|
||||
"UOM Conversion Detail": "Detalhe da Convers\u00e3o de UDM",
|
||||
"Unread Messages": "Mensagens n\u00e3o lidas",
|
||||
"Update Delivery Date": "Atualizar Data de Entrega",
|
||||
"UserRole": "Fun\u00e7\u00e3o do Usu\u00e1rio",
|
||||
"Utilities": "Utilit\u00e1rios",
|
||||
"Valuation Control": "Controle de Avalia\u00e7\u00e3o",
|
||||
"Warehouse": "Almoxarifado",
|
||||
"Warehouse Type": "Tipo de Almoxarifado",
|
||||
"Warehouse User": "Usu\u00e1rio Armaz\u00e9m",
|
||||
"Web Page": "P\u00e1gina Web",
|
||||
"Website": "Site",
|
||||
"Website Item Group": "Grupo de Itens do site",
|
||||
"Website Product Category": "Categoria de Produto do site",
|
||||
"Website Script": "Script do site",
|
||||
"Website Settings": "Configura\u00e7\u00f5es do site",
|
||||
"Website Slideshow": "Slideshow do site",
|
||||
"Website Slideshow Item": "Item do Slideshow do site",
|
||||
"Workflow": "Fluxo de Trabalho",
|
||||
"Workflow Action": "A\u00e7\u00e3o do Fluxo de Trabalho",
|
||||
"Workflow Action Detail": "Detalhe da A\u00e7\u00e3o do Fluxo de Trabalho",
|
||||
"Workflow Document State": "Estado do Documento do Fluxo de Trabalho",
|
||||
"Workflow Engine": "Mecanismo do Fluxo de Trabalho",
|
||||
"Workflow Rule": "Regra do Fluxo de Trabalho",
|
||||
"Workflow Rule Detail": "Detalhe da Regra do Fluxo de Trabalho",
|
||||
"Workflow State": "Estado do Fluxo de Trabalho",
|
||||
"Workflow Transition": "Transi\u00e7\u00e3o do Fluxo de Trabalho",
|
||||
"Workstation": "Esta\u00e7\u00e3o de Trabalho"
|
||||
}
|
||||
@@ -1,322 +0,0 @@
|
||||
{
|
||||
"About Us Settings": "Quem Somos Configura\u00e7\u00f5es",
|
||||
"About Us Team Member": "Quem Somos Membro da Equipe",
|
||||
"Account": "Conta",
|
||||
"Accounts": "Contas",
|
||||
"Activity": "Atividade",
|
||||
"Activity Type": "Tipo de Atividade",
|
||||
"Address": "Endere\u00e7o",
|
||||
"Answer": "Responder",
|
||||
"Appraisal": "Avalia\u00e7\u00e3o",
|
||||
"Appraisal Goal": "Meta de avalia\u00e7\u00e3o",
|
||||
"Appraisal Template": "Modelo de avalia\u00e7\u00e3o",
|
||||
"Appraisal Template Goal": "Meta Modelo de avalia\u00e7\u00e3o",
|
||||
"Attendance": "Comparecimento",
|
||||
"Attendance Control Panel": "Painel de Controle de Presen\u00e7a",
|
||||
"Authorization Control": "Controle de autoriza\u00e7\u00e3o",
|
||||
"Authorization Rule": "Regra autoriza\u00e7\u00e3o",
|
||||
"BOM": "BOM",
|
||||
"BOM Explosion Item": "BOM item explos\u00e3o",
|
||||
"BOM Item": "Item BOM",
|
||||
"BOM Operation": "Opera\u00e7\u00e3o BOM",
|
||||
"BOM Replace Tool": "BOM Ferramenta Substituir",
|
||||
"Bank Reconciliation": "Banco Reconcilia\u00e7\u00e3o",
|
||||
"Bank Reconciliation Detail": "Banco Detalhe Reconcilia\u00e7\u00e3o",
|
||||
"Batch": "Fornada",
|
||||
"Bin": "Caixa",
|
||||
"Blog": "Blog",
|
||||
"Blog Subscriber": "Assinante Blog",
|
||||
"Branch": "Ramo",
|
||||
"Brand": "Marca",
|
||||
"Budget Control": "Controle de Or\u00e7amento",
|
||||
"Budget Detail": "Detalhe or\u00e7amento",
|
||||
"Budget Distribution": "Distribui\u00e7\u00e3o or\u00e7amento",
|
||||
"Budget Distribution Detail": "Detalhe Distribui\u00e7\u00e3o or\u00e7amento",
|
||||
"Bulk Email": "E-mail em massa",
|
||||
"Buying": "Comprar",
|
||||
"C-Form": "C-Form",
|
||||
"C-Form Invoice Detail": "C-Form Detalhe Fatura",
|
||||
"Calendar": "Calend\u00e1rio",
|
||||
"Campaign": "Campanha",
|
||||
"Comment": "Coment\u00e1rio",
|
||||
"Communication": "Comunica\u00e7\u00e3o",
|
||||
"Communication Log": "Log Comunica\u00e7\u00e3o",
|
||||
"Company": "Companhia",
|
||||
"Company Control": "Controle da Companhia",
|
||||
"Company History": "Hist\u00f3ria da Empresa",
|
||||
"Contact": "Contato",
|
||||
"Contact Control": "Fale Controle",
|
||||
"Contact Us Settings": "Contato Configura\u00e7\u00f5es",
|
||||
"Control Panel": "Painel de controle",
|
||||
"Core": "N\u00facleo",
|
||||
"Cost Center": "Centro de Custos",
|
||||
"Country": "Pa\u00eds",
|
||||
"Cross List Item Group": "Atravesse Grupo item da lista",
|
||||
"Currency": "Moeda",
|
||||
"Custom Field": "Campo personalizado",
|
||||
"Custom Script": "Script personalizado",
|
||||
"Customer": "Cliente",
|
||||
"Customer Group": "Grupo de Clientes",
|
||||
"Customer Issue": "Edi\u00e7\u00e3o cliente",
|
||||
"Customize Form": "Personalize Forma",
|
||||
"Customize Form Field": "Personalize campo de formul\u00e1rio",
|
||||
"Deduction Type": "Tipo de dedu\u00e7\u00e3o",
|
||||
"Default Home Page": "Home Page padr\u00e3o",
|
||||
"DefaultValue": "DefaultValue",
|
||||
"Delivery Note": "Guia de remessa",
|
||||
"Delivery Note Item": "Item Nota de Entrega",
|
||||
"Delivery Note Packing Item": "Entrega do item embalagem Nota",
|
||||
"Department": "Departamento",
|
||||
"Designation": "Designa\u00e7\u00e3o",
|
||||
"DocField": "DocField",
|
||||
"DocPerm": "DocPerm",
|
||||
"DocType": "DOCTYPE",
|
||||
"DocType Label": "Etiqueta DocType",
|
||||
"DocType Mapper": "Mapper DocType",
|
||||
"Documentation": "Documenta\u00e7\u00e3o",
|
||||
"Earning Type": "Ganhando Tipo",
|
||||
"Email Digest": "E-mail Digest",
|
||||
"Email Settings": "Configura\u00e7\u00f5es de e-mail",
|
||||
"Employee": "Empregado",
|
||||
"Employee Education": "Educa\u00e7\u00e3o empregado",
|
||||
"Employee External Work History": "Empregado hist\u00f3ria de trabalho externo",
|
||||
"Employee Internal Work History": "Empregado Hist\u00f3ria Trabalho Interno",
|
||||
"Employee Training": "Treinamento de funcion\u00e1rios",
|
||||
"Employment Type": "Tipo de emprego",
|
||||
"Event": "Evento",
|
||||
"Event Role": "Papel evento",
|
||||
"Event User": "Usu\u00e1rio evento",
|
||||
"Expense Claim": "Relat\u00f3rio de Despesas",
|
||||
"Expense Claim Detail": "Detalhe de Despesas",
|
||||
"Expense Claim Type": "Tipo de reembolso de despesas",
|
||||
"Featured Item": "Item Destacado",
|
||||
"Features Setup": "Configura\u00e7\u00e3o caracter\u00edsticas",
|
||||
"Feed": "Alimentar",
|
||||
"Field Mapper Detail": "Detalhe Mapper campo",
|
||||
"File Data": "Dados de arquivo",
|
||||
"Fiscal Year": "Exerc\u00edcio fiscal",
|
||||
"Forum": "F\u00f3rum",
|
||||
"GL Control": "GL Controle",
|
||||
"GL Entry": "Entrada GL",
|
||||
"GL Mapper": "GL Mapper",
|
||||
"GL Mapper Detail": "GL Detalhe Mapper",
|
||||
"Global Defaults": "Padr\u00f5es globais",
|
||||
"Grade": "Grau",
|
||||
"HR": "HR",
|
||||
"Help": "Ajudar",
|
||||
"Holiday": "F\u00e9rias",
|
||||
"Holiday Block List": "Lista de Bloqueios de f\u00e9rias",
|
||||
"Holiday Block List Allow": "Lista de Bloqueios de f\u00e9rias Permitir",
|
||||
"Holiday Block List Date": "Data feriado Lista de Bloqueios",
|
||||
"Holiday List": "Lista de feriado",
|
||||
"Home": "Casa",
|
||||
"Home Control": "Home Control",
|
||||
"Human Resources": "Recursos Humanos",
|
||||
"Industry Type": "Tipo ind\u00fastria",
|
||||
"Installation Note": "Nota de Instala\u00e7\u00e3o",
|
||||
"Installation Note Item": "Item Nota de Instala\u00e7\u00e3o",
|
||||
"Item": "Item",
|
||||
"Item Customer Detail": "Detalhe Cliente item",
|
||||
"Item Group": "Grupo Item",
|
||||
"Item Price": "Item Pre\u00e7o",
|
||||
"Item Quality Inspection Parameter": "Item Par\u00e2metro de Inspe\u00e7\u00e3o de Qualidade",
|
||||
"Item Reorder": "Item Reordenar",
|
||||
"Item Supplier": "Fornecedor item",
|
||||
"Item Tax": "Imposto item",
|
||||
"Item Website Specification": "Especifica\u00e7\u00e3o Site item",
|
||||
"Job Applicant": "Candidato a emprego",
|
||||
"Job Opening": "Abertura de emprego",
|
||||
"Jobs Email Settings": "E-mail Configura\u00e7\u00f5es de empregos",
|
||||
"Journal Voucher": "Vale Jornal",
|
||||
"Journal Voucher Detail": "Jornal Detalhe Vale",
|
||||
"Knowledge Base": "Base de Conhecimento",
|
||||
"Landed Cost Item": "Item de custo Landed",
|
||||
"Landed Cost Purchase Receipt": "Recibo de compra Landed Cost",
|
||||
"Landed Cost Wizard": "Assistente de Custo Landed",
|
||||
"Lead": "Conduzir",
|
||||
"Leave Allocation": "Deixe Aloca\u00e7\u00e3o",
|
||||
"Leave Application": "Deixe Aplica\u00e7\u00e3o",
|
||||
"Leave Block List": "Deixe Lista de Bloqueios",
|
||||
"Leave Block List Allow": "Deixe Lista de Bloqueios Permitir",
|
||||
"Leave Block List Date": "Deixe Data Lista de Bloqueios",
|
||||
"Leave Control Panel": "Deixe Painel de Controle",
|
||||
"Leave Type": "Deixar Tipo",
|
||||
"Letter Head": "Cabe\u00e7a letra",
|
||||
"Live Chat": "Live Chat",
|
||||
"MIS Control": "MIS Controle",
|
||||
"Maintenance Schedule": "Programa\u00e7\u00e3o de Manuten\u00e7\u00e3o",
|
||||
"Maintenance Schedule Detail": "Detalhe Programa de Manuten\u00e7\u00e3o",
|
||||
"Maintenance Schedule Item": "Item Programa de Manuten\u00e7\u00e3o",
|
||||
"Maintenance Visit": "Visita de manuten\u00e7\u00e3o",
|
||||
"Maintenance Visit Purpose": "Finalidade visita de manuten\u00e7\u00e3o",
|
||||
"Manufacturing": "Fabrico",
|
||||
"Market Segment": "Segmento de mercado",
|
||||
"Material Request": "Pedido de material",
|
||||
"Material Request Item": "Item de solicita\u00e7\u00e3o de material",
|
||||
"Messages": "Mensagens",
|
||||
"Mode of Payment": "Modo de Pagamento",
|
||||
"Module Def": "M\u00f3dulo Def",
|
||||
"Modules": "M\u00f3dulos",
|
||||
"Multi Ledger Report Detail": "Detalhes do Relat\u00f3rio de multi Ledger",
|
||||
"My Settings": "Minhas Configura\u00e7\u00f5es",
|
||||
"Naming Series": "Nomeando Series",
|
||||
"Naming Series Options": "Nomeando S\u00e9rie Op\u00e7\u00f5es",
|
||||
"Newsletter": "Boletim informativo",
|
||||
"Notification Control": "Controle de Notifica\u00e7\u00e3o",
|
||||
"Opportunity": "Oportunidade",
|
||||
"Opportunity Item": "Item oportunidade",
|
||||
"Other Income Detail": "Detalhe Outras Receitas",
|
||||
"POS Setting": "Defini\u00e7\u00e3o POS",
|
||||
"Packing Slip": "Embalagem deslizamento",
|
||||
"Packing Slip Item": "Embalagem item deslizamento",
|
||||
"Page": "P\u00e1gina",
|
||||
"Page Role": "Papel p\u00e1gina",
|
||||
"Patch Log": "Log remendo",
|
||||
"Payment to Invoice Matching Tool": "Pagamento a ferramenta correspondente fatura",
|
||||
"Payment to Invoice Matching Tool Detail": "Pagamento a Detalhe Ferramenta fatura correspondente",
|
||||
"Period Closing Voucher": "Comprovante de Encerramento per\u00edodo",
|
||||
"Permission Control": "Controle de permiss\u00e3o",
|
||||
"Plot Control": "Controle trama",
|
||||
"Price List": "Lista de Pre\u00e7os",
|
||||
"Print Format": "Imprimir Formato",
|
||||
"Print Heading": "Imprimir t\u00edtulo",
|
||||
"Product": "Produto",
|
||||
"Product Group": "Grupo de Produtos",
|
||||
"Product Settings": "Configura\u00e7\u00f5es do produto",
|
||||
"Production": "Produ\u00e7\u00e3o",
|
||||
"Production Order": "Ordem de Produ\u00e7\u00e3o",
|
||||
"Production Plan Item": "Item do plano de produ\u00e7\u00e3o",
|
||||
"Production Plan Sales Order": "Produ\u00e7\u00e3o Plano de Ordem de Vendas",
|
||||
"Production Planning Tool": "Ferramenta de Planejamento da Produ\u00e7\u00e3o",
|
||||
"Products Settings": "Configura\u00e7\u00f5es de produtos",
|
||||
"Profile": "Perfil",
|
||||
"Profile Control": "Controlo de perfil",
|
||||
"Project": "Projeto",
|
||||
"Project Activity": "Projeto Atividade",
|
||||
"Project Activity Update": "Atualiza\u00e7\u00e3o do Projeto Atividade",
|
||||
"Project Control": "Projeto de Controle de",
|
||||
"Project Milestone": "Projeto Milestone",
|
||||
"Projects": "Projetos",
|
||||
"Property Setter": "Setter propriedade",
|
||||
"Purchase Common": "Compre comum",
|
||||
"Purchase Invoice": "Compre Fatura",
|
||||
"Purchase Invoice Advance": "Compra Antecipada Fatura",
|
||||
"Purchase Invoice Item": "Comprar item Fatura",
|
||||
"Purchase Order": "Ordem de Compra",
|
||||
"Purchase Order Item": "Comprar item Ordem",
|
||||
"Purchase Order Item Supplied": "Item da ordem de compra em actualiza\u00e7\u00e3o",
|
||||
"Purchase Receipt": "Compra recibo",
|
||||
"Purchase Receipt Item": "Comprar item recep\u00e7\u00e3o",
|
||||
"Purchase Receipt Item Supplied": "Recibo de compra do item em actualiza\u00e7\u00e3o",
|
||||
"Purchase Request": "Pedido de Compra",
|
||||
"Purchase Request Item": "Comprar item de solicita\u00e7\u00e3o",
|
||||
"Purchase Taxes and Charges": "Impostos e Encargos de compra",
|
||||
"Purchase Taxes and Charges Master": "Impostos de compra e Master Encargos",
|
||||
"Quality Inspection": "Inspe\u00e7\u00e3o de Qualidade",
|
||||
"Quality Inspection Reading": "Leitura de Inspe\u00e7\u00e3o de Qualidade",
|
||||
"Question": "Pergunta",
|
||||
"Quotation": "Cita\u00e7\u00e3o",
|
||||
"Quotation Item": "Item cita\u00e7\u00e3o",
|
||||
"Quotation Lost Reason": "Cota\u00e7\u00e3o Perdeu Raz\u00e3o",
|
||||
"Related Page": "P\u00e1gina Relacionada",
|
||||
"Rename Tool": "Renomear Ferramenta",
|
||||
"Report": "Relat\u00f3rio",
|
||||
"Role": "Papel",
|
||||
"SMS Center": "SMS Center",
|
||||
"SMS Control": "SMS Controle",
|
||||
"SMS Log": "SMS Log",
|
||||
"SMS Parameter": "Par\u00e2metro SMS",
|
||||
"SMS Receiver": "SMS Receptor",
|
||||
"SMS Settings": "Defini\u00e7\u00f5es SMS",
|
||||
"Salary Manager": "Gerente de sal\u00e1rio",
|
||||
"Salary Slip": "Folha de sal\u00e1rio",
|
||||
"Salary Slip Deduction": "Dedu\u00e7\u00e3o folha de sal\u00e1rio",
|
||||
"Salary Slip Earning": "Folha de sal\u00e1rio Ganhando",
|
||||
"Salary Structure": "Estrutura Salarial",
|
||||
"Salary Structure Deduction": "Dedu\u00e7\u00e3o Estrutura Salarial",
|
||||
"Salary Structure Earning": "Estrutura salarial Ganhando",
|
||||
"Sales BOM": "BOM vendas",
|
||||
"Sales BOM Item": "Vendas item BOM",
|
||||
"Sales Browser Control": "Vendas controle de navegador",
|
||||
"Sales Common": "Vendas comuns",
|
||||
"Sales Email Settings": "Vendas Configura\u00e7\u00f5es de Email",
|
||||
"Sales Invoice": "Fatura de vendas",
|
||||
"Sales Invoice Advance": "Vendas antecipadas Fatura",
|
||||
"Sales Invoice Item": "Vendas item Fatura",
|
||||
"Sales Order": "Ordem de Vendas",
|
||||
"Sales Order Item": "Vendas item Ordem",
|
||||
"Sales Partner": "Parceiro de vendas",
|
||||
"Sales Person": "Vendas Pessoa",
|
||||
"Sales Taxes and Charges": "Vendas Impostos e Taxas",
|
||||
"Sales Taxes and Charges Master": "Vendas Impostos e Encargos mestre",
|
||||
"Sales Team": "Equipe de Vendas",
|
||||
"Sales and Purchase Return Item": "Vendas e item retorno de compra",
|
||||
"Sales and Purchase Return Tool": "Ferramenta de vendas e retorno de compra",
|
||||
"Sandbox": "Sandbox",
|
||||
"Scheduler Log": "Scheduler Log",
|
||||
"Search Criteria": "Crit\u00e9rios da pesquisa",
|
||||
"Selling": "Vendendo",
|
||||
"Serial No": "N \u00ba de S\u00e9rie",
|
||||
"Series Detail": "Detalhe s\u00e9rie",
|
||||
"Setup": "Instala\u00e7\u00e3o",
|
||||
"Setup Control": "Controle de configura\u00e7\u00e3o",
|
||||
"Shipping Address": "Endere\u00e7o para envio",
|
||||
"State": "Estado",
|
||||
"Stock": "Estoque",
|
||||
"Stock Entry": "Entrada estoque",
|
||||
"Stock Entry Detail": "Detalhe Entrada estoque",
|
||||
"Stock Ledger": "Estoque Ledger",
|
||||
"Stock Ledger Entry": "Entrada da Raz\u00e3o",
|
||||
"Stock Reconciliation": "Da Reconcilia\u00e7\u00e3o",
|
||||
"Stock UOM Replace Utility": "Utilit\u00e1rio da Substituir UOM",
|
||||
"Style Settings": "Settings",
|
||||
"Supplier": "Fornecedor",
|
||||
"Supplier Quotation": "Cota\u00e7\u00e3o fornecedor",
|
||||
"Supplier Quotation Item": "Cota\u00e7\u00e3o do item fornecedor",
|
||||
"Supplier Type": "Tipo de fornecedor",
|
||||
"Support": "Apoiar",
|
||||
"Support Ticket": "Ticket de Suporte",
|
||||
"System Console": "Sistema de Console",
|
||||
"Table Mapper Detail": "Detalhe Mapper tabela",
|
||||
"Tag": "Etiqueta",
|
||||
"Target Detail": "Detalhe alvo",
|
||||
"Task": "Tarefa",
|
||||
"Terms and Conditions": "Termos e Condi\u00e7\u00f5es",
|
||||
"Territory": "Territ\u00f3rio",
|
||||
"Timesheet": "Quadro de Hor\u00e1rios",
|
||||
"Timesheet Detail": "Detalhe de quadro de hor\u00e1rios",
|
||||
"To Do": "Que fazer",
|
||||
"ToDo": "ToDo",
|
||||
"Top Bar Item": "Item da barra de topo",
|
||||
"Trash Control": "Controle de lixo",
|
||||
"Trend Analyzer Control": "Controlo Analyzer tend\u00eancia",
|
||||
"UOM": "UOM",
|
||||
"UOM Conversion Detail": "UOM Detalhe Convers\u00e3o",
|
||||
"Unread Messages": "Mensagens n\u00e3o lidas",
|
||||
"Update Delivery Date": "Atualize data de entrega",
|
||||
"UserRole": "UserRole",
|
||||
"Utilities": "Utilit\u00e1rios",
|
||||
"Valuation Control": "Controle de valoriza\u00e7\u00e3o",
|
||||
"Warehouse": "Armaz\u00e9m",
|
||||
"Warehouse Type": "Tipo de armaz\u00e9m",
|
||||
"Warehouse User": "Usu\u00e1rio Armaz\u00e9m",
|
||||
"Web Page": "P\u00e1gina Web",
|
||||
"Website": "Site",
|
||||
"Website Item Group": "Grupo Item site",
|
||||
"Website Product Category": "Categoria de Produto site",
|
||||
"Website Script": "Script site",
|
||||
"Website Settings": "Configura\u00e7\u00f5es do site",
|
||||
"Website Slideshow": "Slideshow site",
|
||||
"Website Slideshow Item": "Item Slideshow site",
|
||||
"Workflow": "Fluxo de trabalho",
|
||||
"Workflow Action": "A\u00e7\u00e3o de fluxo de trabalho",
|
||||
"Workflow Action Detail": "Detalhe A\u00e7\u00e3o de fluxo de trabalho",
|
||||
"Workflow Document State": "Estado Documento de fluxo de trabalho",
|
||||
"Workflow Engine": "Workflow Engine",
|
||||
"Workflow Rule": "Regra de fluxo de trabalho",
|
||||
"Workflow Rule Detail": "Detalhe regra de fluxo de trabalho",
|
||||
"Workflow State": "Estado de fluxo de trabalho",
|
||||
"Workflow Transition": "Transi\u00e7\u00e3o de fluxo de trabalho",
|
||||
"Workstation": "Esta\u00e7\u00e3o de trabalho",
|
||||
"test": "teste"
|
||||
}
|
||||
@@ -1,311 +0,0 @@
|
||||
{
|
||||
"About Us Settings": "\u041e \u043d\u0430\u043c\u0430 \u041f\u043e\u0434\u0435\u0448\u0430\u0432\u0430\u045a\u0430",
|
||||
"About Us Team Member": "\u041e \u043d\u0430\u043c\u0430 \u0447\u043b\u0430\u043d \u0442\u0438\u043c\u0430",
|
||||
"Account": "\u0420\u0430\u0447\u0443\u043d",
|
||||
"Accounts": "\u0420\u0430\u0447\u0443\u043d\u0438",
|
||||
"Activity": "\u0410\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442",
|
||||
"Activity Type": "\u0410\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442 \u0422\u0438\u043f",
|
||||
"Address": "\u0410\u0434\u0440\u0435\u0441\u0430",
|
||||
"Answer": "\u041e\u0434\u0433\u043e\u0432\u043e\u0440",
|
||||
"Appraisal": "\u041f\u0440\u043e\u0446\u0435\u043d\u0430",
|
||||
"Appraisal Goal": "\u041f\u0440\u043e\u0446\u0435\u043d\u0430 \u0413\u043e\u043b",
|
||||
"Appraisal Template": "\u041f\u0440\u043e\u0446\u0435\u043d\u0430 \u0428\u0430\u0431\u043b\u043e\u043d",
|
||||
"Appraisal Template Goal": "\u041f\u0440\u043e\u0446\u0435\u043d\u0430 \u0428\u0430\u0431\u043b\u043e\u043d \u0413\u043e\u043b",
|
||||
"Attendance": "\u041f\u043e\u0445\u0430\u0452\u0430\u045a\u0435",
|
||||
"Attendance Control Panel": "\u0413\u043b\u0435\u0434\u0430\u043b\u0430\u0446\u0430 \u0426\u043e\u043d\u0442\u0440\u043e\u043b \u041f\u0430\u043d\u0435\u043b",
|
||||
"Authorization Control": "\u041e\u0432\u043b\u0430\u0448\u045b\u0435\u045a\u0435 \u0437\u0430 \u043a\u043e\u043d\u0442\u0440\u043e\u043b\u0443",
|
||||
"Authorization Rule": "\u041e\u0432\u043b\u0430\u0448\u045b\u0435\u045a\u0435 \u041f\u0440\u0430\u0432\u0438\u043b\u043e",
|
||||
"BOM": "\u0411\u041e\u041c",
|
||||
"BOM Explosion Item": "\u0411\u041e\u041c \u0415\u043a\u0441\u043f\u043b\u043e\u0437\u0438\u0458\u0430 \u0448\u0438\u0444\u0440\u0430",
|
||||
"BOM Item": "\u0411\u041e\u041c \u0448\u0438\u0444\u0440\u0430",
|
||||
"BOM Operation": "\u0411\u041e\u041c \u041e\u043f\u0435\u0440\u0430\u0446\u0438\u0458\u0430",
|
||||
"BOM Replace Tool": "\u0411\u041e\u041c \u0417\u0430\u043c\u0435\u043d\u0430 \u0430\u043b\u0430\u0442\u0430",
|
||||
"Bank Reconciliation": "\u0411\u0430\u043d\u043a\u0430 \u043f\u043e\u043c\u0438\u0440\u0435\u045a\u0435",
|
||||
"Bank Reconciliation Detail": "\u0411\u0430\u043d\u043a\u0430 \u043f\u043e\u043c\u0438\u0440\u0435\u045a\u0435 \u0414\u0435\u0442\u0430\u0459",
|
||||
"Batch": "\u0421\u0435\u0440\u0438\u0458\u0430",
|
||||
"Bin": "\u0411\u0443\u043d\u043a\u0435\u0440",
|
||||
"Blog": "\u0411\u043b\u043e\u0433",
|
||||
"Blog Subscriber": "\u0411\u043b\u043e\u0433 \u041f\u0440\u0435\u0442\u043f\u043b\u0430\u0442\u043d\u0438\u043a",
|
||||
"Branch": "\u0424\u0438\u043b\u0438\u0458\u0430\u043b\u0430",
|
||||
"Brand": "\u041c\u0430\u0440\u043a\u0430",
|
||||
"Budget Control": "\u0411\u0443\u045f\u0435\u0442 \u043a\u043e\u043d\u0442\u0440\u043e\u043b\u0430",
|
||||
"Budget Detail": "\u0411\u0443\u045f\u0435\u0442 \u0414\u0435\u0442\u0430\u0459",
|
||||
"Budget Distribution": "\u0411\u0443\u045f\u0435\u0442 \u0414\u0438\u0441\u0442\u0440\u0438\u0431\u0443\u0446\u0438\u0458\u0430",
|
||||
"Budget Distribution Detail": "\u0411\u0443\u045f\u0435\u0442 \u0414\u0438\u0441\u0442\u0440\u0438\u0431\u0443\u0446\u0438\u0458\u0430 \u0414\u0435\u0442\u0430\u0459",
|
||||
"Bulk Email": "\u0411\u0443\u043b\u043a \u043c\u0430\u0438\u043b",
|
||||
"Buying": "\u041a\u0443\u043f\u043e\u0432\u0438\u043d\u0430",
|
||||
"C-Form": "\u0426-\u0424\u043e\u0440\u043c",
|
||||
"C-Form Invoice Detail": "\u0426-\u0424\u043e\u0440\u043c \u0420\u0430\u0447\u0443\u043d \u0414\u0435\u0442\u0430\u0459",
|
||||
"Calendar": "\u041a\u0430\u043b\u0435\u043d\u0434\u0430\u0440",
|
||||
"Campaign": "\u041a\u0430\u043c\u043f\u0430\u045a\u0430",
|
||||
"Comment": "\u041a\u043e\u043c\u0435\u043d\u0442\u0430\u0440",
|
||||
"Communication": "\u041a\u043e\u043c\u0443\u043d\u0438\u043a\u0430\u0446\u0438\u0458\u0430",
|
||||
"Communication Log": "\u041a\u043e\u043c\u0443\u043d\u0438\u043a\u0430\u0446\u0438\u0458\u0430 \u041f\u0440\u0438\u0458\u0430\u0432\u0430",
|
||||
"Company": "\u041a\u043e\u043c\u043f\u0430\u043d\u0438\u0458\u0430",
|
||||
"Company Control": "\u041a\u043e\u043c\u043f\u0430\u043d\u0438\u0458\u0430 \u041a\u043e\u043d\u0442\u0440\u043e\u043b\u0430",
|
||||
"Company History": "\u0418\u0441\u0442\u043e\u0440\u0438\u0458\u0430 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0458\u0435",
|
||||
"Contact": "\u041a\u043e\u043d\u0442\u0430\u043a\u0442",
|
||||
"Contact Control": "\u041a\u043e\u043d\u0442\u0430\u043a\u0442 \u0426\u043e\u043d\u0442\u0440\u043e\u043b",
|
||||
"Contact Us Settings": "\u041a\u043e\u043d\u0442\u0430\u043a\u0442 \u0421\u0435\u0442\u0442\u0438\u043d\u0433\u0441",
|
||||
"Control Panel": "\u041a\u043e\u043d\u0442\u0440\u043e\u043b\u043d\u0430 \u0442\u0430\u0431\u043b\u0430",
|
||||
"Core": "\u0408\u0435\u0437\u0433\u0440\u043e",
|
||||
"Cost Center": "\u0422\u0440\u043e\u0448\u043a\u043e\u0432\u0438 \u0446\u0435\u043d\u0442\u0430\u0440",
|
||||
"Country": "\u0417\u0435\u043c\u0459\u0430",
|
||||
"Cross List Item Group": "\u041a\u0440\u0441\u0442 \u0413\u0440\u043e\u0443\u043f \u041b\u0438\u0441\u0442 \u0418\u0442\u0435\u043c",
|
||||
"Currency": "\u0412\u0430\u043b\u0443\u0442\u0430",
|
||||
"Custom Field": "\u041f\u0440\u0438\u043b\u0430\u0433\u043e\u0452\u0435\u043d\u0430 \u043f\u043e\u0459\u0430",
|
||||
"Custom Script": "\u0426\u0443\u0441\u0442\u043e\u043c \u0421\u0446\u0440\u0438\u043f\u0442",
|
||||
"Customer": "\u041a\u0443\u043f\u0430\u0446",
|
||||
"Customer Group": "\u041a\u043e\u0440\u0438\u0441\u043d\u0438\u0447\u043a\u0438 \u0413\u0440\u0443\u043f\u0430",
|
||||
"Customer Issue": "\u041a\u043e\u0440\u0438\u0441\u043d\u0438\u0447\u043a\u0438 \u0438\u0437\u0434\u0430\u045a\u0435",
|
||||
"Customize Form": "\u041f\u0440\u0438\u043b\u0430\u0433\u043e\u0434\u0438\u0442\u0435 \u0444\u043e\u0440\u043c\u0443\u043b\u0430\u0440",
|
||||
"Customize Form Field": "\u041f\u0440\u0438\u043b\u0430\u0433\u043e\u0434\u0438\u0442\u0435 \u043f\u043e\u0459\u0435 \u0424\u043e\u0440\u043c",
|
||||
"Deduction Type": "\u041e\u0434\u0431\u0438\u0442\u0430\u043a \u0422\u0438\u043f",
|
||||
"Default Home Page": "\u0423\u043e\u0431\u0438\u0447\u0430\u0458\u0435\u043d\u043e \u0425\u043e\u043c\u0435 \u041f\u0430\u0433\u0435",
|
||||
"DefaultValue": "\u0414\u0435\u0444\u0430\u0443\u043b\u0442\u0412\u0430\u043b\u0443\u0435",
|
||||
"Delivery Note": "\u041e\u0431\u0430\u0432\u0435\u0448\u0442\u0435\u045a\u0435 \u043e \u043f\u0440\u0438\u0458\u0435\u043c\u0443 \u043f\u043e\u0448\u0438\u0459\u043a\u0435",
|
||||
"Delivery Note Item": "\u0418\u0441\u043f\u043e\u0440\u0443\u043a\u0430 \u041d\u0430\u043f\u043e\u043c\u0435\u043d\u0430 \u0421\u0442\u0430\u0432\u043a\u0430",
|
||||
"Delivery Note Packing Item": "\u0418\u0441\u043f\u043e\u0440\u0443\u043a\u0430 \u041d\u0430\u043f\u043e\u043c\u0435\u043d\u0430 \u041f\u0430\u043a\u043e\u0432\u0430\u045a\u0435 \u0458\u0435\u0434\u0438\u043d\u0438\u0446\u0435",
|
||||
"Department": "\u041e\u0434\u0435\u0459\u0435\u045a\u0435",
|
||||
"Designation": "\u041e\u0437\u043d\u0430\u043a\u0430",
|
||||
"DocField": "\u0414\u043e\u0446\u0424\u0438\u0435\u043b\u0434",
|
||||
"DocPerm": "\u0414\u043e\u0446\u041f\u0435\u0440\u043c",
|
||||
"DocType": "\u0414\u041e\u0426\u0422\u0418\u041f\u0415",
|
||||
"DocType Label": "\u0414\u041e\u0426\u0422\u0418\u041f\u0415 \u041b\u0430\u0431\u0435\u043b",
|
||||
"DocType Mapper": "\u0414\u041e\u0426\u0422\u0418\u041f\u0415 \u041c\u0430\u043f\u043f\u0435\u0440",
|
||||
"Documentation": "\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0458\u0430",
|
||||
"Earning Type": "\u0417\u0430\u0440\u0430\u0434\u0430 \u0412\u0438\u0434",
|
||||
"Email Digest": "\u0415-\u043c\u0430\u0438\u043b \u0414\u0438\u0433\u0435\u0441\u0442",
|
||||
"Email Settings": "\u0415\u043c\u0430\u0438\u043b \u043f\u043e\u0434\u0435\u0448\u0430\u0432\u0430\u045a\u0430",
|
||||
"Employee": "\u0417\u0430\u043f\u043e\u0441\u043b\u0435\u043d\u0438\u043a",
|
||||
"Employee Education": "\u0417\u0430\u043f\u043e\u0441\u043b\u0435\u043d\u0438 \u041e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u045a\u0435",
|
||||
"Employee External Work History": "\u0417\u0430\u043f\u043e\u0441\u043b\u0435\u043d\u0438 \u0421\u043f\u043e\u0459\u043d\u0438 \u0420\u0430\u0434 \u0418\u0441\u0442\u043e\u0440\u0438\u0458\u0430",
|
||||
"Employee Internal Work History": "\u0417\u0430\u043f\u043e\u0441\u043b\u0435\u043d\u0438 \u0418\u043d\u0442\u0435\u0440\u043d\u0430 \u0420\u0430\u0434 \u0418\u0441\u0442\u043e\u0440\u0438\u0458\u0430",
|
||||
"Employee Training": "\u041e\u0431\u0443\u043a\u0430 \u0437\u0430\u043f\u043e\u0441\u043b\u0435\u043d\u0438\u0445",
|
||||
"Employment Type": "\u0422\u0438\u043f \u0437\u0430\u043f\u043e\u0441\u043b\u0435\u045a\u0430",
|
||||
"Event": "\u0414\u043e\u0433\u0430\u0452\u0430\u0458",
|
||||
"Event Role": "\u0414\u043e\u0433\u0430\u0452\u0430\u0458 \u0423\u043b\u043e\u0433\u0430",
|
||||
"Event User": "\u0414\u043e\u0433\u0430\u0452\u0430\u0458 \u041a\u043e\u0440\u0438\u0441\u043d\u0438\u043a",
|
||||
"Expense Claim": "\u0420\u0430\u0441\u0445\u043e\u0434\u0438 \u043f\u043e\u0442\u0440\u0430\u0436\u0438\u0432\u0430\u045a\u0435",
|
||||
"Expense Claim Detail": "\u0420\u0430\u0441\u0445\u043e\u0434\u0438 \u043f\u043e\u0442\u0440\u0430\u0436\u0438\u0432\u0430\u045a\u0435 \u0414\u0435\u0442\u0430\u0459",
|
||||
"Expense Claim Type": "\u0420\u0430\u0441\u0445\u043e\u0434\u0438 \u043f\u043e\u0442\u0440\u0430\u0436\u0438\u0432\u0430\u045a\u0435 \u0422\u0438\u043f",
|
||||
"Featured Item": "\u041f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0459\u0430\u043c\u043e",
|
||||
"Features Setup": "\u0424\u0443\u043d\u043a\u0446\u0438\u0458\u0435 \u0437\u0430 \u043f\u043e\u0434\u0435\u0448\u0430\u0432\u0430\u045a\u0435",
|
||||
"Feed": "\u0425\u0440\u0430\u043d\u0438\u0442\u0438",
|
||||
"Field Mapper Detail": "\u041f\u043e\u0459\u0435 \u041c\u0430\u043f\u043f\u0435\u0440 \u0414\u0435\u0442\u0430\u0459",
|
||||
"File Data": "\u0424\u0438\u043b\u0435 \u043f\u043e\u0434\u0430\u0442\u0430\u043a\u0430",
|
||||
"Fiscal Year": "\u0424\u0438\u0441\u043a\u0430\u043b\u043d\u0430 \u0433\u043e\u0434\u0438\u043d\u0430",
|
||||
"Forum": "\u0424\u043e\u0440\u0443\u043c",
|
||||
"GL Control": "\u0413\u041b \u041a\u043e\u043d\u0442\u0440\u043e\u043b\u0430",
|
||||
"GL Entry": "\u0413\u041b \u0415\u043d\u0442\u0440\u0438",
|
||||
"GL Mapper": "\u0413\u041b \u041c\u0430\u043f\u043f\u0435\u0440",
|
||||
"GL Mapper Detail": "\u0413\u041b \u041c\u0430\u043f\u043f\u0435\u0440 \u0414\u0435\u0442\u0430\u0459",
|
||||
"Global Defaults": "\u0413\u043b\u043e\u0431\u0430\u043b\u043d\u0438 \u0414\u0435\u0444\u0430\u0443\u043b\u0442\u0441",
|
||||
"Grade": "\u0420\u0430\u0437\u0440\u0435\u0434",
|
||||
"HR": "\u0425\u0420",
|
||||
"Help": "\u041f\u043e\u043c\u043e\u045b",
|
||||
"Holiday": "\u041f\u0440\u0430\u0437\u043d\u0438\u043a",
|
||||
"Holiday List": "\u0425\u043e\u043b\u0438\u0434\u0430\u0438 \u041b\u0438\u0441\u0442\u0430",
|
||||
"Home": "\u041a\u0443\u045b\u0438",
|
||||
"Home Control": "\u0425\u043e\u043c\u0435 \u0426\u043e\u043d\u0442\u0440\u043e\u043b",
|
||||
"Human Resources": "\u0409\u0443\u0434\u0441\u043a\u0438 \u0440\u0435\u0441\u0443\u0440\u0441\u0438",
|
||||
"Industry Type": "\u0418\u043d\u0434\u0443\u0441\u0442\u0440\u0438\u0458\u0430 \u0422\u0438\u043f",
|
||||
"Installation Note": "\u0418\u043d\u0441\u0442\u0430\u043b\u0430\u0446\u0438\u0458\u0430 \u041d\u0430\u043f\u043e\u043c\u0435\u043d\u0430",
|
||||
"Installation Note Item": "\u0418\u043d\u0441\u0442\u0430\u043b\u0430\u0446\u0438\u0458\u0430 \u041d\u0430\u043f\u043e\u043c\u0435\u043d\u0430 \u0421\u0442\u0430\u0432\u043a\u0430",
|
||||
"Item": "\u0421\u0442\u0430\u0432\u043a\u0430",
|
||||
"Item Customer Detail": "\u0421\u0442\u0430\u0432\u043a\u0430 \u041a\u043e\u0440\u0438\u0441\u043d\u0438\u0447\u043a\u0438 \u0414\u0435\u0442\u0430\u0459",
|
||||
"Item Group": "\u0421\u0442\u0430\u0432\u043a\u0430 \u0413\u0440\u0443\u043f\u0430",
|
||||
"Item Price": "\u0410\u0440\u0442\u0438\u043a\u0430\u043b \u0426\u0435\u043d\u0430",
|
||||
"Item Quality Inspection Parameter": "\u0421\u0442\u0430\u0432\u043a\u0430 \u041f\u0440\u043e\u0432\u0435\u0440\u0430 \u043a\u0432\u0430\u043b\u0438\u0442\u0435\u0442\u0430 \u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0430\u0440",
|
||||
"Item Supplier": "\u0421\u0442\u0430\u0432\u043a\u0430 \u0421\u043d\u0430\u0431\u0434\u0435\u0432\u0430\u0447",
|
||||
"Item Tax": "\u0421\u0442\u0430\u0432\u043a\u0430 \u041f\u043e\u0440\u0435\u0441\u043a\u0430",
|
||||
"Item Website Specification": "\u0421\u0442\u0430\u0432\u043a\u0430 \u0421\u0430\u0458\u0442 \u0421\u043f\u0435\u0446\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0458\u0430",
|
||||
"Job Applicant": "\u041f\u043e\u0441\u0430\u043e \u0437\u0430\u0445\u0442\u0435\u0432\u0430",
|
||||
"Job Opening": "\u041f\u043e\u0441\u0430\u043e \u041e\u0442\u0432\u0430\u0440\u0430\u045a\u0435",
|
||||
"Jobs Email Settings": "\u041f\u043e\u0441\u043b\u043e\u0432\u0438 \u0415\u043c\u0430\u0438\u043b \u043f\u043e\u0434\u0435\u0448\u0430\u0432\u0430\u045a\u0430",
|
||||
"Journal Voucher": "\u0427\u0430\u0441\u043e\u043f\u0438\u0441 \u0432\u0430\u0443\u0447\u0435\u0440\u0430",
|
||||
"Journal Voucher Detail": "\u0427\u0430\u0441\u043e\u043f\u0438\u0441 \u0412\u0430\u0443\u0447\u0435\u0440 \u0414\u0435\u0442\u0430\u0459",
|
||||
"Knowledge Base": "\u0411\u0430\u0437\u0430 \u0437\u043d\u0430\u045a\u0430",
|
||||
"Landed Cost Item": "\u0421\u043b\u0435\u0442\u0435\u043e \u0426\u0435\u043d\u0430 \u0430\u0440\u0442\u0438\u043a\u043b\u0430",
|
||||
"Landed Cost Purchase Receipt": "\u0421\u043b\u0435\u0442\u0435\u043e \u043d\u0430\u0431\u0430\u0432\u043d\u0443 \u041f\u0440\u0438\u0458\u0435\u043c",
|
||||
"Landed Cost Wizard": "\u0421\u043b\u0435\u0442\u0435\u043e \u0422\u0440\u043e\u0448\u043a\u043e\u0432\u0438 \u0427\u0430\u0440\u043e\u0431\u045a\u0430\u043a",
|
||||
"Lead": "\u0414\u043e\u0432\u0435\u0441\u0442\u0438",
|
||||
"Leave Allocation": "\u041e\u0441\u0442\u0430\u0432\u0438\u0442\u0435 \u0410\u043b\u043e\u043a\u0430\u0446\u0438\u0458\u0430",
|
||||
"Leave Application": "\u041e\u0441\u0442\u0430\u0432\u0438\u0442\u0435 \u0430\u043f\u043b\u0438\u043a\u0430\u0446\u0438\u0458\u0443",
|
||||
"Leave Control Panel": "\u041e\u0441\u0442\u0430\u0432\u0438\u0442\u0435 \u0426\u043e\u043d\u0442\u0440\u043e\u043b \u041f\u0430\u043d\u0435\u043b",
|
||||
"Leave Type": "\u041e\u0441\u0442\u0430\u0432\u0438\u0442\u0435 \u0412\u0438\u0434",
|
||||
"Letter Head": "\u041f\u0438\u0441\u043c\u043e \u0413\u043b\u0430\u0432\u0430",
|
||||
"Live Chat": "\u041b\u0438\u0432\u0435 \u0426\u0445\u0430\u0442",
|
||||
"MIS Control": "\u041c\u0418\u0421 \u041a\u043e\u043d\u0442\u0440\u043e\u043b\u0430",
|
||||
"Maintenance Schedule": "\u041e\u0434\u0440\u0436\u0430\u0432\u0430\u045a\u0435 \u0420\u0430\u0441\u043f\u043e\u0440\u0435\u0434",
|
||||
"Maintenance Schedule Detail": "\u041e\u0434\u0440\u0436\u0430\u0432\u0430\u045a\u0435 \u0420\u0430\u0441\u043f\u043e\u0440\u0435\u0434 \u0414\u0435\u0442\u0430\u0459",
|
||||
"Maintenance Schedule Item": "\u041e\u0434\u0440\u0436\u0430\u0432\u0430\u045a\u0435 \u0420\u0430\u0441\u043f\u043e\u0440\u0435\u0434 \u0448\u0438\u0444\u0440\u0430",
|
||||
"Maintenance Visit": "\u041e\u0434\u0440\u0436\u0430\u0432\u0430\u045a\u0435 \u043f\u043e\u0441\u0435\u0442\u0430",
|
||||
"Maintenance Visit Purpose": "\u041e\u0434\u0440\u0436\u0430\u0432\u0430\u045a\u0435 \u043f\u043e\u0441\u0435\u0442\u0430 \u0421\u0432\u0440\u0445\u0430",
|
||||
"Manufacturing": "\u041f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u045a\u0430",
|
||||
"Market Segment": "\u0421\u0435\u0433\u043c\u0435\u043d\u0442 \u0442\u0440\u0436\u0438\u0448\u0442\u0430",
|
||||
"Messages": "\u041f\u043e\u0440\u0443\u043a\u0435",
|
||||
"Mode of Payment": "\u041d\u0430\u0447\u0438\u043d \u043f\u043b\u0430\u045b\u0430\u045a\u0430",
|
||||
"Module Def": "\u041c\u043e\u0434\u0443\u043b \u0414\u0435\u0444",
|
||||
"Modules": "\u041c\u043e\u0434\u0443\u043b\u0438",
|
||||
"Multi Ledger Report Detail": "\u041c\u0443\u043b\u0442\u0438 \u041b\u0435\u045f\u0435\u0440 \u0418\u0437\u0432\u0435\u0448\u0442\u0430\u0458 \u0414\u0435\u0442\u0430\u0459",
|
||||
"My Settings": "\u041c\u043e\u0458\u0430 \u043f\u043e\u0434\u0435\u0448\u0430\u0432\u0430\u045a\u0430",
|
||||
"Naming Series": "\u0418\u043c\u0435\u043d\u043e\u0432\u0430\u045a\u0435 \u0421\u0435\u0440\u0438\u0435\u0441",
|
||||
"Naming Series Options": "\u0418\u043c\u0435\u043d\u043e\u0432\u0430\u045a\u0435 \u0441\u0435\u0440\u0438\u0458\u0435 \u041e\u043f\u0446\u0438\u0458\u0435",
|
||||
"Newsletter": "\u0411\u0438\u043b\u0442\u0435\u043d",
|
||||
"Notification Control": "\u041e\u0431\u0430\u0432\u0435\u0448\u0442\u0435\u045a\u0435 \u041a\u043e\u043d\u0442\u0440\u043e\u043b\u0430",
|
||||
"Opportunity": "\u041f\u0440\u0438\u043b\u0438\u043a\u0430",
|
||||
"Opportunity Item": "\u041f\u0440\u0438\u043b\u0438\u043a\u0430 \u0448\u0438\u0444\u0440\u0430",
|
||||
"Other Income Detail": "\u041e\u0441\u0442\u0430\u043b\u0438 \u043f\u0440\u0438\u0445\u043e\u0434\u0438 \u0414\u0435\u0442\u0430\u0459",
|
||||
"POS Setting": "\u041f\u041e\u0421 \u041f\u043e\u0434\u0435\u0448\u0430\u0432\u0430\u045a\u0435",
|
||||
"Packing Slip": "\u041f\u0430\u043a\u043e\u0432\u0430\u045a\u0435 \u0421\u043b\u0438\u043f",
|
||||
"Packing Slip Item": "\u041f\u0430\u043a\u043e\u0432\u0430\u045a\u0435 \u0421\u043b\u0438\u043f \u0418\u0442\u0435\u043c",
|
||||
"Page": "\u0421\u0442\u0440\u0430\u043d\u0430",
|
||||
"Page Role": "\u0421\u0442\u0440\u0430\u043d\u0430 \u0423\u043b\u043e\u0433\u0430",
|
||||
"Patch Log": "\u041f\u0430\u0442\u0446\u0445 \u041f\u0440\u0438\u0458\u0430\u0432\u0430",
|
||||
"Payment to Invoice Matching Tool": "\u041f\u043b\u0430\u045b\u0430\u045a\u0435 \u0444\u0430\u043a\u0442\u0443\u0440\u0435 \u041c\u0430\u0442\u0446\u0445\u0438\u043d\u0433 \u0422\u043e\u043e\u043b",
|
||||
"Payment to Invoice Matching Tool Detail": "\u041f\u043b\u0430\u045b\u0430\u045a\u0435 \u0444\u0430\u043a\u0442\u0443\u0440\u0435 \u041c\u0430\u0442\u0446\u0445\u0438\u043d\u0433 \u0422\u043e\u043e\u043b \u0414\u0435\u0442\u0430\u0459",
|
||||
"Period Closing Voucher": "\u041f\u0435\u0440\u0438\u043e\u0434 \u0417\u0430\u0442\u0432\u0430\u0440\u0430\u045a\u0435 \u0432\u0430\u0443\u0447\u0435\u0440\u0430",
|
||||
"Permission Control": "\u0414\u043e\u0437\u0432\u043e\u043b\u0430 \u043a\u043e\u043d\u0442\u0440\u043e\u043b\u0435",
|
||||
"Plot Control": "\u041f\u043b\u0430\u0446 \u041a\u043e\u043d\u0442\u0440\u043e\u043b\u0430",
|
||||
"Price List": "\u0426\u0435\u043d\u043e\u0432\u043d\u0438\u043a",
|
||||
"Print Format": "\u041f\u0440\u0438\u043d\u0442 \u0424\u043e\u0440\u043c\u0430\u0442",
|
||||
"Print Heading": "\u0428\u0442\u0430\u043c\u043f\u0430\u045a\u0435 \u043d\u0430\u0441\u043b\u043e\u0432\u0430",
|
||||
"Product": "\u041f\u0440\u043e\u0438\u0437\u0432\u043e\u0434",
|
||||
"Product Group": "\u0413\u0440\u0443\u043f\u0430 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0430",
|
||||
"Product Settings": "\u041f\u043e\u0434\u0435\u0448\u0430\u0432\u0430\u045a\u0430 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0430",
|
||||
"Production": "\u041f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u045a\u0430",
|
||||
"Production Order": "\u041f\u0440\u043e\u0434\u0443\u0446\u0442\u0438\u043e\u043d \u041e\u0440\u0434\u0435\u0440",
|
||||
"Production Plan Item": "\u041f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u045a\u0430 \u043f\u043b\u0430\u043d \u0448\u0438\u0444\u0440\u0430",
|
||||
"Production Plan Sales Order": "\u041f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u045a\u0430 \u041f\u0440\u043e\u0434\u0430\u0458\u0430 \u043f\u043b\u0430\u043d \u041d\u0430\u0440\u0443\u0447\u0438",
|
||||
"Production Planning Tool": "\u041f\u043b\u0430\u043d\u0438\u0440\u0430\u045a\u0435 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u045a\u0435 \u0430\u043b\u0430\u0442\u0430",
|
||||
"Products Settings": "\u041f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438 \u041f\u043e\u0434\u0435\u0448\u0430\u0432\u0430\u045a\u0430",
|
||||
"Profile": "\u041f\u0440\u043e\u0444\u0438\u043b",
|
||||
"Profile Control": "\u041f\u0440\u043e\u0444\u0438\u043b \u041a\u043e\u043d\u0442\u0440\u043e\u043b\u0430",
|
||||
"Project": "\u041f\u0440\u043e\u0458\u0435\u043a\u0430\u0442",
|
||||
"Project Activity": "\u041f\u0440\u043e\u0458\u0435\u043a\u0430\u0442 \u0410\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442",
|
||||
"Project Activity Update": "\u041f\u0440\u043e\u0458\u0435\u043a\u0430\u0442 \u0410\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442 \u0430\u0436\u0443\u0440\u0438\u0440\u0430\u045a\u0430",
|
||||
"Project Control": "\u041f\u0440\u043e\u0458\u0435\u043a\u0430\u0442 \u041a\u043e\u043d\u0442\u0440\u043e\u043b\u0430",
|
||||
"Project Milestone": "\u041f\u0440\u043e\u0458\u0435\u043a\u0430\u0442 \u041c\u0438\u043b\u0435\u0441\u0442\u043e\u043d\u0435",
|
||||
"Projects": "\u041f\u0440\u043e\u0458\u0435\u043a\u0442\u0438",
|
||||
"Property Setter": "\u0418\u043c\u043e\u0432\u0438\u043d\u0430 \u0441\u0435\u0442\u0435\u0440",
|
||||
"Purchase Common": "\u041a\u0443\u043f\u043e\u0432\u0438\u043d\u0430 \u0417\u0430\u0458\u0435\u0434\u043d\u0438\u0447\u043a\u0438",
|
||||
"Purchase Invoice": "\u0424\u0430\u043a\u0442\u0443\u0440\u0438",
|
||||
"Purchase Invoice Advance": "\u0424\u0430\u043a\u0442\u0443\u0440\u0438 \u0410\u0434\u0432\u0430\u043d\u0446\u0435",
|
||||
"Purchase Invoice Item": "\u0424\u0430\u043a\u0442\u0443\u0440\u0438 \u0418\u0442\u0435\u043c",
|
||||
"Purchase Order": "\u041d\u0430\u043b\u043e\u0433 \u0437\u0430 \u043a\u0443\u043f\u043e\u0432\u0438\u043d\u0443",
|
||||
"Purchase Order Item": "\u041a\u0443\u043f\u043e\u0432\u0438\u043d\u0430 \u0441\u0442\u0430\u0432\u043a\u0435 \u043f\u043e\u0440\u0443\u045f\u0431\u0438\u043d\u0435",
|
||||
"Purchase Order Item Supplied": "\u041d\u0430\u0440\u0443\u045f\u0431\u0435\u043d\u0438\u0446\u0435 \u0430\u0440\u0442\u0438\u043a\u043b\u0430 \u0443 \u043a\u043e\u043c\u043f\u043b\u0435\u0442\u0443",
|
||||
"Purchase Receipt": "\u041a\u0443\u043f\u043e\u0432\u0438\u043d\u0430 \u041f\u0440\u0438\u0458\u0435\u043c",
|
||||
"Purchase Receipt Item": "\u041a\u0443\u043f\u043e\u0432\u0438\u043d\u0430 \u0441\u0442\u0430\u0432\u043a\u0435 \u0420\u0435\u0446\u0435\u0438\u043f\u0442",
|
||||
"Purchase Receipt Item Supplied": "\u041a\u0443\u043f\u043e\u0432\u0438\u043d\u0430 \u041f\u043e\u0442\u0432\u0440\u0434\u0430 \u0458\u0435\u0434\u0438\u043d\u0438\u0446\u0435 \u0443 \u043a\u043e\u043c\u043f\u043b\u0435\u0442\u0443",
|
||||
"Purchase Request": "\u041a\u0443\u043f\u043e\u0432\u0438\u043d\u0430 \u0417\u0430\u0445\u0442\u0435\u0432",
|
||||
"Purchase Request Item": "\u041a\u0443\u043f\u043e\u0432\u0438\u043d\u0430 \u0441\u0442\u0430\u0432\u043a\u0443 \u0417\u0430\u0445\u0442\u0435\u0432",
|
||||
"Purchase Taxes and Charges": "\u041a\u0443\u043f\u043e\u0432\u0438\u043d\u0430 \u041f\u043e\u0440\u0435\u0437\u0438 \u0438 \u043d\u0430\u043a\u043d\u0430\u0434\u0435",
|
||||
"Purchase Taxes and Charges Master": "\u041a\u0443\u043f\u043e\u0432\u0438\u043d\u0430 \u041f\u043e\u0440\u0435\u0437\u0438 \u0438 \u043d\u0430\u043a\u043d\u0430\u0434\u0435 \u041c\u0430\u0441\u0442\u0435\u0440",
|
||||
"Quality Inspection": "\u041f\u0440\u043e\u0432\u0435\u0440\u0430 \u043a\u0432\u0430\u043b\u0438\u0442\u0435\u0442\u0430",
|
||||
"Quality Inspection Reading": "\u041f\u0440\u043e\u0432\u0435\u0440\u0430 \u043a\u0432\u0430\u043b\u0438\u0442\u0435\u0442\u0430 \u0420\u0435\u0434\u0438\u043d\u0433",
|
||||
"Question": "\u041f\u0438\u0442\u0430\u045a\u0435",
|
||||
"Quotation": "\u0426\u0438\u0442\u0430\u0442",
|
||||
"Quotation Item": "\u041f\u043e\u043d\u0443\u0434\u0430 \u0448\u0438\u0444\u0440\u0430",
|
||||
"Quotation Lost Reason": "\u041f\u043e\u043d\u0443\u0434\u0430 \u041b\u043e\u0441\u0442 \u0440\u0430\u0437\u043b\u043e\u0433",
|
||||
"Related Page": "\u0420\u0435\u043b\u0430\u0442\u0435\u0434 \u0421\u0442\u0440\u0430\u043d\u0430",
|
||||
"Rename Tool": "\u041f\u0440\u0435\u0438\u043c\u0435\u043d\u043e\u0432\u0430\u045a\u0435 \u0422\u043e\u043e\u043b",
|
||||
"Report": "\u0418\u0437\u0432\u0435\u0448\u0442\u0430\u0458",
|
||||
"Role": "\u0423\u043b\u043e\u0433\u0430",
|
||||
"SMS Center": "\u0421\u041c\u0421 \u0446\u0435\u043d\u0442\u0430\u0440",
|
||||
"SMS Control": "\u0421\u041c\u0421 \u0426\u043e\u043d\u0442\u0440\u043e\u043b",
|
||||
"SMS Log": "\u0421\u041c\u0421 \u041f\u0440\u0438\u0458\u0430\u0432\u0430",
|
||||
"SMS Parameter": "\u0421\u041c\u0421 \u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0430\u0440",
|
||||
"SMS Receiver": "\u0421\u041c\u0421 \u043f\u0440\u0438\u0458\u0435\u043c\u043d\u0438\u043a",
|
||||
"SMS Settings": "\u0421\u041c\u0421 \u043f\u043e\u0434\u0435\u0448\u0430\u0432\u0430\u045a\u0430",
|
||||
"Salary Manager": "\u041f\u043b\u0430\u0442\u0430 \u041c\u0435\u043d\u0430\u045f\u0435\u0440",
|
||||
"Salary Slip": "\u041f\u043b\u0430\u0442\u0430 \u0421\u043b\u0438\u043f",
|
||||
"Salary Slip Deduction": "\u041f\u043b\u0430\u0442\u0430 \u0421\u043b\u0438\u043f \u041e\u0434\u0431\u0438\u0442\u0430\u043a",
|
||||
"Salary Slip Earning": "\u041f\u043b\u0430\u0442\u0430 \u0421\u043b\u0438\u043f \u0417\u0430\u0440\u0430\u0434\u0430",
|
||||
"Salary Structure": "\u041f\u043b\u0430\u0442\u0430 \u0421\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430",
|
||||
"Salary Structure Deduction": "\u041f\u043b\u0430\u0442\u0430 \u0421\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430 \u041e\u0434\u0431\u0438\u0442\u0430\u043a",
|
||||
"Salary Structure Earning": "\u041f\u043b\u0430\u0442\u0430 \u0421\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430 \u0417\u0430\u0440\u0430\u0434\u0430",
|
||||
"Sales BOM": "\u041f\u0440\u043e\u0434\u0430\u0458\u0430 \u0411\u041e\u041c",
|
||||
"Sales BOM Item": "\u041f\u0440\u043e\u0434\u0430\u0458\u0430 \u0411\u041e\u041c \u0448\u0438\u0444\u0440\u0430",
|
||||
"Sales Browser Control": "\u041f\u0440\u043e\u0434\u0430\u0458\u0430 \u0411\u0440\u043e\u0432\u0441\u0435\u0440 \u041a\u043e\u043d\u0442\u0440\u043e\u043b\u0430",
|
||||
"Sales Common": "\u041f\u0440\u043e\u0434\u0430\u0458\u0430 \u0426\u043e\u043c\u043c\u043e\u043d",
|
||||
"Sales Email Settings": "\u041f\u0440\u043e\u0434\u0430\u0458\u0430 \u0415\u043c\u0430\u0438\u043b \u043f\u043e\u0434\u0435\u0448\u0430\u0432\u0430\u045a\u0430",
|
||||
"Sales Invoice": "\u041f\u0440\u043e\u0434\u0430\u0458\u0430 \u0420\u0430\u0447\u0443\u043d",
|
||||
"Sales Invoice Advance": "\u041f\u0440\u043e\u0434\u0430\u0458\u0430 \u0420\u0430\u0447\u0443\u043d \u0410\u0434\u0432\u0430\u043d\u0446\u0435",
|
||||
"Sales Invoice Item": "\u041f\u0440\u043e\u0434\u0430\u0458\u0430 \u0420\u0430\u0447\u0443\u043d \u0448\u0438\u0444\u0440\u0430",
|
||||
"Sales Order": "\u041f\u0440\u043e\u0434\u0430\u0458\u0430 \u041d\u0430\u0440\u0443\u0447\u0438\u0442\u0435",
|
||||
"Sales Order Item": "\u041f\u0440\u043e\u0434\u0430\u0458\u0430 \u041d\u0430\u0440\u0443\u0447\u0438\u0442\u0435 \u0430\u0440\u0442\u0438\u043a\u043b\u0430",
|
||||
"Sales Partner": "\u041f\u0440\u043e\u0434\u0430\u0458\u0430 \u041f\u0430\u0440\u0442\u043d\u0435\u0440",
|
||||
"Sales Person": "\u041f\u0440\u043e\u0434\u0430\u0458\u0430 \u041e\u0441\u043e\u0431\u0430",
|
||||
"Sales Taxes and Charges": "\u041f\u0440\u043e\u0434\u0430\u0458\u0430 \u041f\u043e\u0440\u0435\u0437\u0438 \u0438 \u043d\u0430\u043a\u043d\u0430\u0434\u0435",
|
||||
"Sales Taxes and Charges Master": "\u041f\u0440\u043e\u0434\u0430\u0458\u0430 \u041f\u043e\u0440\u0435\u0437\u0438 \u0438 \u043d\u0430\u043a\u043d\u0430\u0434\u0435 \u041c\u0430\u0441\u0442\u0435\u0440",
|
||||
"Sales Team": "\u041f\u0440\u043e\u0434\u0430\u0458\u0430 \u0422\u0438\u043c",
|
||||
"Sales and Purchase Return Item": "\u041f\u0440\u043e\u0434\u0430\u0458\u0430 \u0438 \u043a\u0443\u043f\u043e\u0432\u0438\u043d\u0430 \u041f\u043e\u0432\u0440\u0430\u0442\u0430\u043a \u0430\u0443\u043a\u0446\u0438\u0458\u0438",
|
||||
"Sales and Purchase Return Tool": "\u041f\u0440\u043e\u0434\u0430\u0458\u0430 \u0438 \u043a\u0443\u043f\u043e\u0432\u0438\u043d\u0430 \u0430\u043b\u0430\u0442\u0430 \u041f\u043e\u0432\u0440\u0430\u0442\u0430\u043a",
|
||||
"Sandbox": "\u041a\u0443\u0442\u0438\u0458\u0430 \u0441 \u043f\u0435\u0441\u043a\u043e\u043c",
|
||||
"Scheduler Log": "\u041f\u043b\u0430\u043d\u0435\u0440 \u041f\u0440\u0438\u0458\u0430\u0432\u0430",
|
||||
"Search Criteria": "\u041a\u0440\u0438\u0442\u0435\u0440\u0438\u0458\u0443\u043c\u0438 \u043f\u0440\u0435\u0442\u0440\u0430\u0433\u0435",
|
||||
"Selling": "\u041f\u0440\u043e\u0434\u0430\u0458\u0430",
|
||||
"Serial No": "\u0421\u0435\u0440\u0438\u0458\u0441\u043a\u0438 \u0431\u0440\u043e\u0458",
|
||||
"Series Detail": "\u0421\u0435\u0440\u0438\u0458\u0430 \u0414\u0435\u0442\u0430\u0459",
|
||||
"Setup": "\u041d\u0430\u043c\u0435\u0448\u0442\u0430\u0459\u043a\u0430",
|
||||
"Setup Control": "\u041f\u043e\u0434\u0435\u0448\u0430\u0432\u0430\u045a\u0435 \u043a\u043e\u043d\u0442\u0440\u043e\u043b\u0435",
|
||||
"Shipping Address": "\u0410\u0434\u0440\u0435\u0441\u0430 \u0438\u0441\u043f\u043e\u0440\u0443\u043a\u0435",
|
||||
"State": "\u0414\u0440\u0436\u0430\u0432\u0430",
|
||||
"Stock": "\u0417\u0430\u043b\u0438\u0445\u0430",
|
||||
"Stock Entry": "\u0411\u0435\u0440\u0437\u0430 \u0421\u0442\u0443\u043f\u0430\u045a\u0435",
|
||||
"Stock Entry Detail": "\u0411\u0435\u0440\u0437\u0430 \u0423\u043d\u043e\u0441 \u0414\u0435\u0442\u0430\u0459",
|
||||
"Stock Ledger": "\u0411\u0435\u0440\u0437\u0430 \u041b\u0435\u045f\u0435\u0440",
|
||||
"Stock Ledger Entry": "\u0411\u0435\u0440\u0437\u0430 \u041b\u0435\u045f\u0435\u0440 \u0415\u043d\u0442\u0440\u0438",
|
||||
"Stock Reconciliation": "\u0411\u0435\u0440\u0437\u0430 \u043f\u043e\u043c\u0438\u0440\u0435\u045a\u0435",
|
||||
"Stock UOM Replace Utility": "\u0411\u0435\u0440\u0437\u0430 \u0423\u041e\u041c \u0417\u0430\u043c\u0435\u043d\u0438 \u043a\u043e\u043c\u0443\u043d\u0430\u043b\u043d\u043e",
|
||||
"Style Settings": "\u0421\u0442\u0438\u043b\u0435 \u041f\u043e\u0434\u0435\u0448\u0430\u0432\u0430\u045a\u0430",
|
||||
"Supplier": "\u0414\u043e\u0431\u0430\u0432\u0459\u0430\u0447",
|
||||
"Supplier Quotation": "\u0421\u043d\u0430\u0431\u0434\u0435\u0432\u0430\u0447 \u041f\u043e\u043d\u0443\u0434\u0430",
|
||||
"Supplier Quotation Item": "\u0421\u043d\u0430\u0431\u0434\u0435\u0432\u0430\u0447 \u041f\u043e\u043d\u0443\u0434\u0430 \u0448\u0438\u0444\u0440\u0430",
|
||||
"Supplier Type": "\u0421\u043d\u0430\u0431\u0434\u0435\u0432\u0430\u0447 \u0422\u0438\u043f",
|
||||
"Support": "\u041f\u043e\u0434\u0440\u0448\u043a\u0430",
|
||||
"Support Ticket": "\u041f\u043e\u0434\u0440\u0448\u043a\u0430 \u0443\u043b\u0430\u0437\u043d\u0438\u0446\u0430",
|
||||
"System Console": "\u0421\u0438\u0441\u0442\u0435\u043c \u041a\u043e\u043d\u0437\u043e\u043b\u0430",
|
||||
"Table Mapper Detail": "\u0422\u0430\u0431\u0435\u043b\u0430 \u041c\u0430\u043f\u043f\u0435\u0440 \u0414\u0435\u0442\u0430\u0459",
|
||||
"Tag": "\u041d\u0430\u0434\u0438\u043c\u0430\u043a",
|
||||
"Target Detail": "\u0426\u0438\u0459\u043d\u0430 \u0414\u0435\u0442\u0430\u0459",
|
||||
"Task": "\u0417\u0430\u0434\u0430\u0442\u0430\u043a",
|
||||
"Terms and Conditions": "\u0423\u0441\u043b\u043e\u0432\u0438",
|
||||
"Territory": "\u0422\u0435\u0440\u0438\u0442\u043e\u0440\u0438\u0458\u0430",
|
||||
"Timesheet": "\u041a\u043e\u043d\u0442\u0440\u043e\u043b\u043d\u0430 \u043a\u0430\u0440\u0442\u0438\u0446\u0430",
|
||||
"Timesheet Detail": "\u0422\u0438\u043c\u0435\u0441\u0445\u0435\u0435\u0442 \u0414\u0435\u0442\u0430\u0459",
|
||||
"To Do": "\u0414\u0430 \u043b\u0438",
|
||||
"ToDo": "\u0422\u043e\u0414\u043e",
|
||||
"Top Bar Item": "\u0422\u043e\u043f \u0411\u0430\u0440 \u0448\u0438\u0444\u0440\u0430",
|
||||
"Trash Control": "\u0421\u043c\u0435\u045b\u0435 \u041a\u043e\u043d\u0442\u0440\u043e\u043b\u0430",
|
||||
"Trend Analyzer Control": "\u0422\u0440\u0435\u043d\u0434 \u0410\u043d\u0430\u043b\u0438\u0437\u0435\u0440 \u041a\u043e\u043d\u0442\u0440\u043e\u043b\u0430",
|
||||
"UOM": "\u0423\u041e\u041c",
|
||||
"UOM Conversion Detail": "\u0423\u041e\u041c \u041a\u043e\u043d\u0432\u0435\u0440\u0437\u0438\u0458\u0430 \u0414\u0435\u0442\u0430\u0459",
|
||||
"Unread Messages": "\u041d\u0435\u043f\u0440\u043e\u0447\u0438\u0442\u0430\u043d\u0438\u0445 \u043f\u043e\u0440\u0443\u043a\u0430",
|
||||
"Update Delivery Date": "\u0423\u043f\u0434\u0430\u0442\u0435 \u0434\u0430\u0442\u0443\u043c \u0438\u0441\u043f\u043e\u0440\u0443\u043a\u0435",
|
||||
"UserRole": "\u0423\u0441\u0435\u0440\u0420\u043e\u043b\u0435",
|
||||
"Utilities": "\u041a\u043e\u043c\u0443\u043d\u0430\u043b\u043d\u0435 \u0443\u0441\u043b\u0443\u0433\u0435",
|
||||
"Valuation Control": "\u041f\u0440\u043e\u0446\u0435\u043d\u0430 \u043a\u043e\u043d\u0442\u0440\u043e\u043b\u0430",
|
||||
"Warehouse": "\u041c\u0430\u0433\u0430\u0446\u0438\u043d",
|
||||
"Warehouse Type": "\u0421\u043a\u043b\u0430\u0434\u0438\u0448\u0442\u0435 \u0422\u0438\u043f",
|
||||
"Web Page": "\u0412\u0435\u0431 \u0441\u0442\u0440\u0430\u043d\u0430",
|
||||
"Website": "\u0412\u0435\u0431\u0441\u0430\u0458\u0442",
|
||||
"Website Item Group": "\u0421\u0430\u0458\u0442 \u0442\u0430\u0447\u043a\u0430 \u0413\u0440\u0443\u043f\u0430",
|
||||
"Website Product Category": "\u0421\u0430\u0458\u0442 \u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0458\u0430 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0430",
|
||||
"Website Script": "\u0421\u0430\u0458\u0442 \u0441\u043a\u0440\u0438\u043f\u0442\u0435",
|
||||
"Website Settings": "\u0421\u0430\u0458\u0442 \u041f\u043e\u0434\u0435\u0448\u0430\u0432\u0430\u045a\u0430",
|
||||
"Website Slideshow": "\u0421\u0430\u0458\u0442 \u0421\u043b\u0438\u0434\u0435\u0441\u0445\u043e\u0432",
|
||||
"Website Slideshow Item": "\u0421\u0430\u0458\u0442 \u0421\u043b\u0438\u0434\u0435\u0441\u0445\u043e\u0432 \u0448\u0438\u0444\u0440\u0430",
|
||||
"Workflow": "\u0412\u043e\u0440\u043a\u0444\u043b\u043e\u0432",
|
||||
"Workflow Action": "\u0412\u043e\u0440\u043a\u0444\u043b\u043e\u0432 \u0410\u043a\u0446\u0438\u0458\u0430",
|
||||
"Workflow Action Detail": "\u0412\u043e\u0440\u043a\u0444\u043b\u043e\u0432 \u0410\u043a\u0446\u0438\u0458\u0430 \u0414\u0435\u0442\u0430\u0459",
|
||||
"Workflow Document State": "\u0412\u043e\u0440\u043a\u0444\u043b\u043e\u0432 \u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442 \u0434\u0440\u0436\u0430\u0432\u0430",
|
||||
"Workflow Engine": "\u0412\u043e\u0440\u043a\u0444\u043b\u043e\u0432 \u0415\u043d\u0433\u0438\u043d\u0435",
|
||||
"Workflow Rule": "\u0412\u043e\u0440\u043a\u0444\u043b\u043e\u0432 \u041f\u0440\u0430\u0432\u0438\u043b\u043e",
|
||||
"Workflow Rule Detail": "\u0412\u043e\u0440\u043a\u0444\u043b\u043e\u0432 \u041f\u0440\u0430\u0432\u0438\u043b\u043e \u0414\u0435\u0442\u0430\u0459",
|
||||
"Workflow State": "\u0412\u043e\u0440\u043a\u0444\u043b\u043e\u0432 \u0434\u0440\u0436\u0430\u0432\u0430",
|
||||
"Workflow Transition": "\u0412\u043e\u0440\u043a\u0444\u043b\u043e\u0432 \u0422\u0440\u0430\u043d\u0437\u0438\u0446\u0438\u0458\u0430",
|
||||
"Workstation": "\u0412\u043e\u0440\u043a\u0441\u0442\u0430\u0442\u0438\u043e\u043d"
|
||||
}
|
||||
@@ -1,311 +0,0 @@
|
||||
{
|
||||
"About Us Settings": "\u0baa\u0bb1\u0bcd\u0bb1\u0bbf \u0b8e\u0b99\u0bcd\u0b95\u0bb3\u0bc8 \u0b85\u0bae\u0bc8\u0baa\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd",
|
||||
"About Us Team Member": "\u0b8e\u0b99\u0bcd\u0b95\u0bb3\u0bc8 \u0b95\u0bc1\u0bb4\u0bc1 \u0b89\u0bb1\u0bc1\u0baa\u0bcd\u0baa\u0bbf\u0ba9\u0bb0\u0bcd \u0baa\u0bb1\u0bcd\u0bb1\u0bbf",
|
||||
"Account": "\u0b95\u0ba3\u0b95\u0bcd\u0b95\u0bc1",
|
||||
"Accounts": "\u0b95\u0ba3\u0b95\u0bcd\u0b95\u0bc1\u0b95\u0bb3\u0bcd",
|
||||
"Activity": "\u0ba8\u0b9f\u0bb5\u0b9f\u0bbf\u0b95\u0bcd\u0b95\u0bc8",
|
||||
"Activity Type": "\u0ba8\u0b9f\u0bb5\u0b9f\u0bbf\u0b95\u0bcd\u0b95\u0bc8 \u0bb5\u0b95\u0bc8",
|
||||
"Address": "\u0bae\u0bc1\u0b95\u0bb5\u0bb0\u0bbf",
|
||||
"Answer": "\u0baa\u0ba4\u0bbf\u0bb2\u0bcd",
|
||||
"Appraisal": "\u0bae\u0ba4\u0bbf\u0baa\u0bcd\u0baa\u0bbf\u0b9f\u0bc1\u0ba4\u0bb2\u0bcd",
|
||||
"Appraisal Goal": "\u0bae\u0ba4\u0bbf\u0baa\u0bcd\u0baa\u0bc0\u0b9f\u0bcd\u0b9f\u0bc1 \u0b95\u0bc7\u0bbe\u0bb2\u0bcd",
|
||||
"Appraisal Template": "\u0bae\u0ba4\u0bbf\u0baa\u0bcd\u0baa\u0bc0\u0b9f\u0bcd\u0b9f\u0bc1 \u0bb5\u0bbe\u0bb0\u0bcd\u0baa\u0bcd\u0baa\u0bc1\u0bb0\u0bc1",
|
||||
"Appraisal Template Goal": "\u0bae\u0ba4\u0bbf\u0baa\u0bcd\u0baa\u0bc0\u0b9f\u0bcd\u0b9f\u0bc1 \u0bb5\u0bbe\u0bb0\u0bcd\u0baa\u0bcd\u0baa\u0bc1\u0bb0\u0bc1 \u0b95\u0bc7\u0bbe\u0bb2\u0bcd",
|
||||
"Attendance": "\u0b95\u0bb5\u0ba9\u0bae\u0bcd",
|
||||
"Attendance Control Panel": "\u0bb5\u0bb0\u0bc1\u0b95\u0bc8 \u0b95\u0ba3\u0bcd\u0b9f\u0bcd\u0bb0\u0bc7\u0bbe\u0bb2\u0bcd \u0baa\u0bc7\u0ba9\u0bb2\u0bcd",
|
||||
"Authorization Control": "\u0b85\u0b99\u0bcd\u0b95\u0bc0\u0b95\u0bbe\u0bb0\u0bae\u0bcd \u0b95\u0b9f\u0bcd\u0b9f\u0bc1\u0baa\u0bcd\u0baa\u0bbe\u0b9f\u0bc1",
|
||||
"Authorization Rule": "\u0b85\u0b99\u0bcd\u0b95\u0bc0\u0b95\u0bbe\u0bb0 \u0bb5\u0bbf\u0ba4\u0bbf",
|
||||
"BOM": "BOM",
|
||||
"BOM Explosion Item": "BOM \u0bb5\u0bc6\u0b9f\u0bbf\u0baa\u0bcd\u0baa\u0bc1 \u0baa\u0bc6\u0bbe\u0bb0\u0bc1\u0bb3\u0bcd",
|
||||
"BOM Item": "BOM \u0baa\u0bc6\u0bbe\u0bb0\u0bc1\u0bb3\u0bcd",
|
||||
"BOM Operation": "BOM \u0b86\u0baa\u0bb0\u0bc7\u0bb7\u0ba9\u0bcd",
|
||||
"BOM Replace Tool": "BOM \u0baa\u0ba4\u0bbf\u0bb2\u0bbe\u0b95 \u0b95\u0bb0\u0bc1\u0bb5\u0bbf",
|
||||
"Bank Reconciliation": "\u0bb5\u0b99\u0bcd\u0b95\u0bbf \u0ba8\u0bb2\u0bcd\u0bb2\u0bbf\u0ba3\u0b95\u0bcd\u0b95",
|
||||
"Bank Reconciliation Detail": "\u0bb5\u0b99\u0bcd\u0b95\u0bbf \u0ba8\u0bb2\u0bcd\u0bb2\u0bbf\u0ba3\u0b95\u0bcd\u0b95 \u0bb5\u0bbf\u0bb0\u0bbf\u0bb5\u0bbe\u0b95",
|
||||
"Batch": "\u0b95\u0bc2\u0b9f\u0bcd\u0b9f\u0bae\u0bcd",
|
||||
"Bin": "\u0ba4\u0bc6\u0bbe\u0b9f\u0bcd\u0b9f\u0bbf",
|
||||
"Blog": "\u0bb5\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0ba4\u0bbf\u0bb5\u0bc1",
|
||||
"Blog Subscriber": "\u0bb5\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0ba4\u0bbf\u0bb5\u0bc1 \u0b9a\u0ba8\u0bcd\u0ba4\u0bbe\u0ba4\u0bbe\u0bb0\u0bb0\u0bcd",
|
||||
"Branch": "\u0b95\u0bbf\u0bb3\u0bc8",
|
||||
"Brand": "\u0baa\u0bbf\u0bb0\u0bbe\u0ba3\u0bcd\u0b9f\u0bcd",
|
||||
"Budget Control": "\u0bb5\u0bb0\u0bb5\u0bc1 \u0b9a\u0bc6\u0bb2\u0bb5\u0bc1 \u0ba4\u0bbf\u0b9f\u0bcd\u0b9f \u0b95\u0b9f\u0bcd\u0b9f\u0bc1\u0baa\u0bcd\u0baa\u0bbe\u0b9f\u0bc1",
|
||||
"Budget Detail": "\u0bb5\u0bb0\u0bb5\u0bc1 \u0b9a\u0bc6\u0bb2\u0bb5\u0bc1 \u0ba4\u0bbf\u0b9f\u0bcd\u0b9f \u0bb5\u0bbf\u0bb0\u0bbf\u0bb5\u0bbe\u0b95",
|
||||
"Budget Distribution": "\u0baa\u0b9f\u0bcd\u0b9c\u0bc6\u0b9f\u0bcd \u0bb5\u0bbf\u0ba8\u0bbf\u0baf\u0bc7\u0bbe\u0b95\u0bae\u0bcd",
|
||||
"Budget Distribution Detail": "\u0baa\u0b9f\u0bcd\u0b9c\u0bc6\u0b9f\u0bcd \u0bb5\u0bbf\u0ba8\u0bbf\u0baf\u0bc7\u0bbe\u0b95\u0bae\u0bcd \u0bb5\u0bbf\u0bb0\u0bbf\u0bb5\u0bbe\u0b95",
|
||||
"Bulk Email": "\u0bae\u0bc6\u0bbe\u0ba4\u0bcd\u0ba4 \u0bae\u0bbf\u0ba9\u0bcd\u0ba9\u0b9e\u0bcd\u0b9a\u0bb2\u0bcd",
|
||||
"Buying": "\u0bb5\u0bbe\u0b99\u0bcd\u0b95\u0bc1\u0ba4\u0bb2\u0bcd",
|
||||
"C-Form": "\u0b9a\u0bbf \u0baa\u0b9f\u0bbf\u0bb5\u0bae\u0bcd",
|
||||
"C-Form Invoice Detail": "\u0b9a\u0bbf \u0baa\u0b9f\u0bbf\u0bb5\u0bae\u0bcd \u0bb5\u0bbf\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bb2\u0bcd \u0bb5\u0bbf\u0bb0\u0bbf\u0bb5\u0bbe\u0b95",
|
||||
"Calendar": "\u0b85\u0b9f\u0bcd\u0b9f\u0bb5\u0ba3\u0bc8",
|
||||
"Campaign": "\u0baa\u0bbf\u0bb0\u0b9a\u0bcd\u0b9a\u0bbe\u0bb0\u0bae\u0bcd",
|
||||
"Comment": "\u0b95\u0bb0\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1",
|
||||
"Communication": "\u0ba4\u0b95\u0bb5\u0bb2\u0bcd",
|
||||
"Communication Log": "\u0ba4\u0bc6\u0bbe\u0b9f\u0bb0\u0bcd\u0baa\u0bc1 \u0baa\u0bc1\u0b95\u0bc1\u0baa\u0ba4\u0bbf\u0b95\u0bc8",
|
||||
"Company": "\u0ba8\u0bbf\u0bb1\u0bc1\u0bb5\u0ba9\u0bae\u0bcd",
|
||||
"Company Control": "\u0ba8\u0bbf\u0bb1\u0bc1\u0bb5\u0ba9\u0ba4\u0bcd\u0ba4\u0bbf\u0ba9\u0bcd \u0b95\u0b9f\u0bcd\u0b9f\u0bc1\u0baa\u0bcd\u0baa\u0bbe\u0b9f\u0bc1",
|
||||
"Company History": "\u0ba8\u0bbf\u0bb1\u0bc1\u0bb5\u0ba9\u0ba4\u0bcd\u0ba4\u0bbf\u0ba9\u0bcd \u0bb5\u0bb0\u0bb2\u0bbe\u0bb1\u0bc1",
|
||||
"Contact": "\u0ba4\u0bc6\u0bbe\u0b9f\u0bb0\u0bcd\u0baa\u0bc1",
|
||||
"Contact Control": "\u0b95\u0b9f\u0bcd\u0b9f\u0bc1\u0baa\u0bcd\u0baa\u0bbe\u0b9f\u0bc1 \u0ba4\u0bc6\u0bbe\u0b9f\u0bb0\u0bcd\u0baa\u0bc1",
|
||||
"Contact Us Settings": "\u0b8e\u0b99\u0bcd\u0b95\u0bb3\u0bc8 \u0b85\u0bae\u0bc8\u0baa\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd \u0ba4\u0bc6\u0bbe\u0b9f\u0bb0\u0bcd\u0baa\u0bc1",
|
||||
"Control Panel": "\u0b95\u0ba3\u0bcd\u0b9f\u0bcd\u0bb0\u0bc7\u0bbe\u0bb2\u0bcd \u0baa\u0bc7\u0ba9\u0bb2\u0bcd",
|
||||
"Core": "\u0b89\u0bb3\u0bcd\u0bb3\u0b95\u0bae\u0bcd",
|
||||
"Cost Center": "\u0b9a\u0bc6\u0bb2\u0bb5\u0bc1 \u0bae\u0bc8\u0baf\u0bae\u0bcd",
|
||||
"Country": "\u0ba8\u0bbe\u0b9f\u0bc1",
|
||||
"Cross List Item Group": "\u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bb2\u0bcd \u0b89\u0bb0\u0bc1\u0baa\u0bcd\u0baa\u0b9f\u0bbf \u0b95\u0bc1\u0bb4\u0bc1 \u0b95\u0b9f\u0b95\u0bcd\u0b95",
|
||||
"Currency": "\u0ba8\u0bbe\u0ba3\u0baf",
|
||||
"Custom Field": "\u0ba4\u0ba9\u0bbf\u0baa\u0bcd\u0baa\u0baf\u0ba9\u0bcd \u0baa\u0bc1\u0bb2\u0bae\u0bcd",
|
||||
"Custom Script": "\u0ba4\u0ba9\u0bbf\u0baa\u0bcd\u0baa\u0baf\u0ba9\u0bcd \u0b89\u0bb0\u0bc8",
|
||||
"Customer": "\u0bb5\u0bbe\u0b9f\u0bbf\u0b95\u0bcd\u0b95\u0bc8\u0baf\u0bbe\u0bb3\u0bb0\u0bcd",
|
||||
"Customer Group": "\u0bb5\u0bbe\u0b9f\u0bbf\u0b95\u0bcd\u0b95\u0bc8\u0baf\u0bbe\u0bb3\u0bb0\u0bcd \u0baa\u0bbf\u0bb0\u0bbf\u0bb5\u0bc1",
|
||||
"Customer Issue": "\u0bb5\u0bbe\u0b9f\u0bbf\u0b95\u0bcd\u0b95\u0bc8\u0baf\u0bbe\u0bb3\u0bb0\u0bcd \u0bb5\u0bc6\u0bb3\u0bbf\u0baf\u0bc0\u0b9f\u0bc1",
|
||||
"Customize Form": "\u0baa\u0b9f\u0bbf\u0bb5\u0bae\u0bcd \u0ba4\u0ba9\u0bbf\u0baa\u0bcd\u0baa\u0baf\u0ba9\u0bbe\u0b95\u0bcd\u0b95\u0bc1",
|
||||
"Customize Form Field": "\u0baa\u0b9f\u0bbf\u0bb5\u0bae\u0bcd \u0baa\u0bc1\u0bb2\u0bae\u0bcd \u0ba4\u0ba9\u0bbf\u0baa\u0bcd\u0baa\u0baf\u0ba9\u0bbe\u0b95\u0bcd\u0b95\u0bc1",
|
||||
"Deduction Type": "\u0ba4\u0bc1\u0baa\u0bcd\u0baa\u0bb1\u0bbf\u0baf\u0bc1\u0bae\u0bcd \u0bb5\u0b95\u0bc8",
|
||||
"Default Home Page": "\u0b87\u0baf\u0bb2\u0bcd\u0baa\u0bc1\u0ba8\u0bbf\u0bb2\u0bc8 \u0bae\u0bc1\u0b95\u0baa\u0bcd\u0baa\u0bc1 \u0baa\u0b95\u0bcd\u0b95\u0bae\u0bcd",
|
||||
"DefaultValue": "DefaultValue",
|
||||
"Delivery Note": "\u0b9f\u0bc6\u0bb2\u0bbf\u0bb5\u0bb0\u0bbf \u0b95\u0bc1\u0bb1\u0bbf\u0baa\u0bcd\u0baa\u0bc1",
|
||||
"Delivery Note Item": "\u0b9f\u0bc6\u0bb2\u0bbf\u0bb5\u0bb0\u0bbf \u0b95\u0bc1\u0bb1\u0bbf\u0baa\u0bcd\u0baa\u0bc1 \u0baa\u0bc6\u0bbe\u0bb0\u0bc1\u0bb3\u0bcd",
|
||||
"Delivery Note Packing Item": "\u0b9f\u0bc6\u0bb2\u0bbf\u0bb5\u0bb0\u0bbf \u0b95\u0bc1\u0bb1\u0bbf\u0baa\u0bcd\u0baa\u0bc1 \u0ba4\u0b9f\u0bc8\u0b95\u0bcd\u0b95\u0bbe\u0baa\u0bcd\u0baa\u0bc1 \u0baa\u0bc6\u0bbe\u0bb0\u0bc1\u0bb3\u0bcd",
|
||||
"Department": "\u0b87\u0bb2\u0bbe\u0b95\u0bbe",
|
||||
"Designation": "\u0baa\u0ba4\u0bb5\u0bbf",
|
||||
"DocField": "DocField",
|
||||
"DocPerm": "DocPerm",
|
||||
"DocType": "DOCTYPE",
|
||||
"DocType Label": "DOCTYPE \u0bb2\u0bc7\u0baa\u0bbf\u0bb3\u0bcd",
|
||||
"DocType Mapper": "DOCTYPE mapper",
|
||||
"Documentation": "\u0b86\u0bb5\u0ba3\u0bae\u0bbe\u0b95\u0bcd\u0b95\u0bae\u0bcd",
|
||||
"Earning Type": "\u0bb5\u0b95\u0bc8 \u0b9a\u0bae\u0bcd\u0baa\u0bbe\u0ba4\u0bbf\u0ba4\u0bcd\u0ba4\u0bc1",
|
||||
"Email Digest": "\u0bae\u0bbf\u0ba9\u0bcd\u0ba9\u0b9e\u0bcd\u0b9a\u0bb2\u0bcd \u0b9f\u0bc8\u0b9c\u0bb8\u0bcd\u0b9f\u0bcd",
|
||||
"Email Settings": "\u0bae\u0bbf\u0ba9\u0bcd\u0ba9\u0b9e\u0bcd\u0b9a\u0bb2\u0bcd \u0b85\u0bae\u0bc8\u0baa\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd",
|
||||
"Employee": "\u0b8a\u0bb4\u0bbf\u0baf\u0bb0\u0bcd",
|
||||
"Employee Education": "\u0b8a\u0bb4\u0bbf\u0baf\u0bb0\u0bcd \u0b95\u0bb2\u0bcd\u0bb5\u0bbf",
|
||||
"Employee External Work History": "\u0b8a\u0bb4\u0bbf\u0baf\u0bb0\u0bcd \u0baa\u0bc1\u0bb1 \u0bb5\u0bc7\u0bb2\u0bc8 \u0bb5\u0bb0\u0bb2\u0bbe\u0bb1\u0bc1",
|
||||
"Employee Internal Work History": "\u0b8a\u0bb4\u0bbf\u0baf\u0bb0\u0bcd \u0b89\u0bb3\u0bcd\u0ba8\u0bbe\u0b9f\u0bcd\u0b9f\u0bc1 \u0bb5\u0bc7\u0bb2\u0bc8 \u0bb5\u0bb0\u0bb2\u0bbe\u0bb1\u0bc1",
|
||||
"Employee Training": "\u0baa\u0ba3\u0bbf\u0baf\u0bbe\u0bb3\u0bb0\u0bcd \u0baa\u0baf\u0bbf\u0bb1\u0bcd\u0b9a\u0bbf",
|
||||
"Employment Type": "\u0bb5\u0bc7\u0bb2\u0bc8 \u0bb5\u0b95\u0bc8",
|
||||
"Event": "\u0b9a\u0bae\u0bcd\u0baa\u0bb5\u0bae\u0bcd",
|
||||
"Event Role": "\u0ba8\u0bbf\u0b95\u0bb4\u0bcd\u0bb5\u0bc1 \u0baa\u0bbe\u0ba4\u0bcd\u0ba4\u0bbf\u0bb0\u0bae\u0bcd",
|
||||
"Event User": "\u0ba8\u0bbf\u0b95\u0bb4\u0bcd\u0bb5\u0bc1 \u0baa\u0baf\u0ba9\u0bb0\u0bcd",
|
||||
"Expense Claim": "\u0b87\u0bb4\u0baa\u0bcd\u0baa\u0bbf\u0bb2\u0bcd \u0b95\u0bc7\u0bbe\u0bb0\u0bbf\u0b95\u0bcd\u0b95\u0bc8",
|
||||
"Expense Claim Detail": "\u0b87\u0bb4\u0baa\u0bcd\u0baa\u0bbf\u0bb2\u0bcd \u0b89\u0bb0\u0bbf\u0bae\u0bc8\u0b95\u0bc7\u0bbe\u0bb0\u0bb2\u0bcd \u0bb5\u0bbf\u0bb5\u0bb0\u0bae\u0bcd",
|
||||
"Expense Claim Type": "\u0b87\u0bb4\u0baa\u0bcd\u0baa\u0bbf\u0bb2\u0bcd \u0b89\u0bb0\u0bbf\u0bae\u0bc8\u0b95\u0bc7\u0bbe\u0bb0\u0bb2\u0bcd \u0bb5\u0b95\u0bc8",
|
||||
"Featured Item": "\u0b87\u0b9f\u0bae\u0bcd\u0baa\u0bc6\u0bb1\u0bcd\u0bb1\u0bbf\u0bb0\u0bc1\u0ba8\u0bcd\u0ba4\u0ba4\u0bc1 \u0baa\u0bc6\u0bbe\u0bb0\u0bc1\u0bb3\u0bcd",
|
||||
"Features Setup": "\u0b85\u0bae\u0bcd\u0b9a\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b85\u0bae\u0bc8\u0baa\u0bcd\u0baa\u0bc1",
|
||||
"Feed": "\u0b89\u0ba3\u0bb5\u0bc1",
|
||||
"Field Mapper Detail": "\u0baa\u0bc1\u0bb2\u0bae\u0bcd mapper \u0bb5\u0bbf\u0bb0\u0bbf\u0bb5\u0bbe\u0b95",
|
||||
"File Data": "\u0b95\u0bc7\u0bbe\u0baa\u0bcd\u0baa\u0bc1 \u0ba4\u0b95\u0bb5\u0bb2\u0bcd\u0b95\u0bb3\u0bcd",
|
||||
"Fiscal Year": "\u0ba8\u0bbf\u0ba4\u0bbf\u0baf\u0bbe\u0ba3\u0bcd\u0b9f\u0bc1",
|
||||
"Forum": "\u0b95\u0bb0\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95\u0bcd\u0b95\u0bb3\u0bae\u0bcd",
|
||||
"GL Control": "\u0b9c\u0bc0 \u0b95\u0b9f\u0bcd\u0b9f\u0bc1\u0baa\u0bcd\u0baa\u0bbe\u0b9f\u0bc1",
|
||||
"GL Entry": "\u0b9c\u0bc0 \u0ba8\u0bc1\u0bb4\u0bc8\u0bb5\u0bc1",
|
||||
"GL Mapper": "\u0b9c\u0bc0 mapper",
|
||||
"GL Mapper Detail": "\u0b9c\u0bc0 mapper \u0bb5\u0bbf\u0bb0\u0bbf\u0bb5\u0bbe\u0b95",
|
||||
"Global Defaults": "\u0b89\u0bb2\u0b95 \u0b87\u0baf\u0bb2\u0bcd\u0baa\u0bc1\u0ba8\u0bbf\u0bb2\u0bc8\u0b95\u0bb3\u0bc1\u0b95\u0bcd\u0b95\u0bc1",
|
||||
"Grade": "\u0b95\u0bbf\u0bb0\u0bae\u0bae\u0bcd",
|
||||
"HR": "\u0b85\u0bb2\u0bc1\u0bb5\u0bb2\u0b95",
|
||||
"Help": "\u0b89\u0ba4\u0bb5\u0bbf",
|
||||
"Holiday": "\u0bb5\u0bbf\u0b9f\u0bc1\u0bae\u0bc1\u0bb1\u0bc8",
|
||||
"Holiday List": "\u0bb5\u0bbf\u0b9f\u0bc1\u0bae\u0bc1\u0bb1\u0bc8 \u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bb2\u0bcd",
|
||||
"Home": "\u0bae\u0bc1\u0b95\u0baa\u0bcd\u0baa\u0bc1",
|
||||
"Home Control": "\u0bae\u0bc1\u0b95\u0baa\u0bcd\u0baa\u0bc1 \u0b95\u0b9f\u0bcd\u0b9f\u0bc1\u0baa\u0bcd\u0baa\u0bbe\u0b9f\u0bc1",
|
||||
"Human Resources": "\u0bae\u0bbe\u0ba9\u0bbf\u0b9f \u0bb5\u0bb3\u0bae\u0bcd",
|
||||
"Industry Type": "\u0ba4\u0bc6\u0bbe\u0bb4\u0bbf\u0bb2\u0bcd \u0b85\u0bae\u0bc8\u0baa\u0bcd\u0baa\u0bc1",
|
||||
"Installation Note": "\u0ba8\u0bbf\u0bb1\u0bc1\u0bb5\u0bb2\u0bcd \u0b95\u0bc1\u0bb1\u0bbf\u0baa\u0bcd\u0baa\u0bc1",
|
||||
"Installation Note Item": "\u0ba8\u0bbf\u0bb1\u0bc1\u0bb5\u0bb2\u0bcd \u0b95\u0bc1\u0bb1\u0bbf\u0baa\u0bcd\u0baa\u0bc1 \u0baa\u0bc6\u0bbe\u0bb0\u0bc1\u0bb3\u0bcd",
|
||||
"Item": "\u0b89\u0bb0\u0bc1\u0baa\u0bcd\u0baa\u0b9f\u0bbf",
|
||||
"Item Customer Detail": "\u0b89\u0bb0\u0bc1\u0baa\u0bcd\u0baa\u0b9f\u0bbf\u0baf\u0bc8 \u0bb5\u0bbe\u0b9f\u0bbf\u0b95\u0bcd\u0b95\u0bc8\u0baf\u0bbe\u0bb3\u0bb0\u0bcd \u0bb5\u0bbf\u0bb0\u0bbf\u0bb5\u0bbe\u0b95",
|
||||
"Item Group": "\u0b89\u0bb0\u0bc1\u0baa\u0bcd\u0baa\u0b9f\u0bbf\u0baf\u0bc8 \u0b95\u0bc1\u0bb4\u0bc1",
|
||||
"Item Price": "\u0b89\u0bb0\u0bc1\u0baa\u0bcd\u0baa\u0b9f\u0bbf\u0baf\u0bc8 \u0bb5\u0bbf\u0bb2\u0bc8",
|
||||
"Item Quality Inspection Parameter": "\u0b89\u0bb0\u0bc1\u0baa\u0bcd\u0baa\u0b9f\u0bbf\u0baf\u0bc8 \u0ba4\u0bb0 \u0b86\u0baf\u0bcd\u0bb5\u0bc1 \u0b85\u0bb3\u0bb5\u0bc1\u0bb0\u0bc1",
|
||||
"Item Supplier": "\u0b89\u0bb0\u0bc1\u0baa\u0bcd\u0baa\u0b9f\u0bbf\u0baf\u0bc8 \u0b9a\u0baa\u0bcd\u0bb3\u0bc8\u0baf\u0bb0\u0bcd",
|
||||
"Item Tax": "\u0b89\u0bb0\u0bc1\u0baa\u0bcd\u0baa\u0b9f\u0bbf\u0baf\u0bc8 \u0bb5\u0bb0\u0bbf",
|
||||
"Item Website Specification": "\u0b89\u0bb0\u0bc1\u0baa\u0bcd\u0baa\u0b9f\u0bbf\u0baf\u0bc8 \u0bb5\u0bb2\u0bc8\u0ba4\u0bcd\u0ba4\u0bb3\u0bae\u0bcd \u0b95\u0bc1\u0bb1\u0bbf\u0baa\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd",
|
||||
"Job Applicant": "\u0bb5\u0bc7\u0bb2\u0bc8 \u0bb5\u0bbf\u0ba3\u0bcd\u0ba3\u0baa\u0bcd\u0baa\u0ba4\u0bbe\u0bb0\u0bb0\u0bcd",
|
||||
"Job Opening": "\u0bb5\u0bc7\u0bb2\u0bc8 \u0ba4\u0bbf\u0bb1\u0b95\u0bcd\u0b95\u0bbf\u0bb1\u0ba4\u0bc1",
|
||||
"Jobs Email Settings": "\u0bb5\u0bc7\u0bb2\u0bc8\u0b95\u0bb3\u0bcd \u0bae\u0bbf\u0ba9\u0bcd\u0ba9\u0b9e\u0bcd\u0b9a\u0bb2\u0bcd \u0b85\u0bae\u0bc8\u0baa\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd",
|
||||
"Journal Voucher": "\u0baa\u0ba4\u0bcd\u0ba4\u0bbf\u0bb0\u0bbf\u0b95\u0bc8 \u0bb5\u0bb5\u0bc1\u0b9a\u0bcd\u0b9a\u0bb0\u0bcd",
|
||||
"Journal Voucher Detail": "\u0baa\u0ba4\u0bcd\u0ba4\u0bbf\u0bb0\u0bbf\u0b95\u0bc8 \u0bb5\u0bb5\u0bc1\u0b9a\u0bcd\u0b9a\u0bb0\u0bcd \u0bb5\u0bbf\u0bb0\u0bbf\u0bb5\u0bbe\u0b95",
|
||||
"Knowledge Base": "\u0b85\u0bb1\u0bbf\u0bb5\u0bc1 \u0ba4\u0bb3\u0bae\u0bcd",
|
||||
"Landed Cost Item": "\u0b87\u0bb1\u0b99\u0bcd\u0b95\u0bbf\u0ba9\u0bbe\u0bb0\u0bcd \u0b9a\u0bc6\u0bb2\u0bb5\u0bc1 \u0b89\u0bb0\u0bc1\u0baa\u0bcd\u0baa\u0b9f\u0bbf",
|
||||
"Landed Cost Purchase Receipt": "\u0b87\u0bb1\u0b99\u0bcd\u0b95\u0bbf\u0ba9\u0bbe\u0bb0\u0bcd \u0b9a\u0bc6\u0bb2\u0bb5\u0bc1 \u0b95\u0bc6\u0bbe\u0bb3\u0bcd\u0bae\u0bc1\u0ba4\u0bb2\u0bcd \u0bb0\u0b9a\u0bc0\u0ba4\u0bc1",
|
||||
"Landed Cost Wizard": "\u0b87\u0bb1\u0b99\u0bcd\u0b95\u0bbf\u0ba9\u0bbe\u0bb0\u0bcd \u0b9a\u0bc6\u0bb2\u0bb5\u0bc1 \u0b9a\u0bc6\u0baf\u0bcd\u0baf\u0bc1\u0bae\u0bcd \u0bb5\u0bbf\u0b9a\u0bbe\u0bb0\u0bcd\u0b9f\u0bcd",
|
||||
"Lead": "\u0ba4\u0bb2\u0bc8\u0bae\u0bc8",
|
||||
"Leave Allocation": "\u0b92\u0ba4\u0bc1\u0b95\u0bcd\u0b95\u0bc0\u0b9f\u0bc1 \u0bb5\u0bbf\u0b9f\u0bcd\u0b9f\u0bc1",
|
||||
"Leave Application": "\u0bb5\u0bbf\u0ba3\u0bcd\u0ba3\u0baa\u0bcd\u0baa \u0bb5\u0bbf\u0b9f\u0bcd\u0b9f\u0bc1",
|
||||
"Leave Control Panel": "\u0b95\u0ba3\u0bcd\u0b9f\u0bcd\u0bb0\u0bc7\u0bbe\u0bb2\u0bcd \u0baa\u0bc7\u0ba9\u0bb2\u0bcd \u0bb5\u0bbf\u0b9f\u0bcd\u0b9f\u0bc1",
|
||||
"Leave Type": "\u0bb5\u0b95\u0bc8 \u0bb5\u0bbf\u0b9f\u0bcd\u0b9f\u0bc1",
|
||||
"Letter Head": "\u0bae\u0bc1\u0b95\u0bb5\u0bb0\u0bbf\u0baf\u0b9f\u0b99\u0bcd\u0b95\u0bb2\u0bcd",
|
||||
"Live Chat": "\u0b85\u0bb0\u0b9f\u0bcd\u0b9f\u0bc8 \u0bb5\u0bbe\u0bb4",
|
||||
"MIS Control": "MIS \u0b95\u0b9f\u0bcd\u0b9f\u0bc1\u0baa\u0bcd\u0baa\u0bbe\u0b9f\u0bc1",
|
||||
"Maintenance Schedule": "\u0baa\u0bb0\u0bbe\u0bae\u0bb0\u0bbf\u0baa\u0bcd\u0baa\u0bc1 \u0b85\u0b9f\u0bcd\u0b9f\u0bb5\u0ba3\u0bc8",
|
||||
"Maintenance Schedule Detail": "\u0baa\u0bb0\u0bbe\u0bae\u0bb0\u0bbf\u0baa\u0bcd\u0baa\u0bc1 \u0b85\u0b9f\u0bcd\u0b9f\u0bb5\u0ba3\u0bc8 \u0bb5\u0bbf\u0bb0\u0bbf\u0bb5\u0bbe\u0b95",
|
||||
"Maintenance Schedule Item": "\u0baa\u0bb0\u0bbe\u0bae\u0bb0\u0bbf\u0baa\u0bcd\u0baa\u0bc1 \u0b85\u0b9f\u0bcd\u0b9f\u0bb5\u0ba3\u0bc8 \u0b89\u0bb0\u0bc1\u0baa\u0bcd\u0baa\u0b9f\u0bbf",
|
||||
"Maintenance Visit": "\u0baa\u0bb0\u0bbe\u0bae\u0bb0\u0bbf\u0baa\u0bcd\u0baa\u0bc1 \u0bb5\u0bb0\u0bc1\u0b95\u0bc8",
|
||||
"Maintenance Visit Purpose": "\u0baa\u0bb0\u0bbe\u0bae\u0bb0\u0bbf\u0baa\u0bcd\u0baa\u0bc1 \u0b9a\u0bc6\u0ba9\u0bcd\u0bb1\u0bc1 \u0ba8\u0bc7\u0bbe\u0b95\u0bcd\u0b95\u0bae\u0bcd",
|
||||
"Manufacturing": "\u0b89\u0bb0\u0bc1\u0bb5\u0bbe\u0b95\u0bcd\u0b95\u0bae\u0bcd",
|
||||
"Market Segment": "\u0b9a\u0ba8\u0bcd\u0ba4\u0bc8 \u0baa\u0bbf\u0bb0\u0bbf\u0bb5\u0bc1",
|
||||
"Messages": "\u0b9a\u0bc6\u0baf\u0bcd\u0ba4\u0bbf\u0b95\u0bb3\u0bcd",
|
||||
"Mode of Payment": "\u0b95\u0b9f\u0bcd\u0b9f\u0ba3\u0bae\u0bcd \u0b9a\u0bc6\u0bb2\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0bae\u0bcd \u0bae\u0bc1\u0bb1\u0bc8",
|
||||
"Module Def": "\u0ba4\u0bc6\u0bbe\u0b95\u0bc1\u0ba4\u0bbf \u0b9f\u0bc6\u0baa\u0bcd",
|
||||
"Modules": "\u0ba4\u0bc6\u0bbe\u0b95\u0bc1\u0ba4\u0bbf\u0b95\u0bb3\u0bcd",
|
||||
"Multi Ledger Report Detail": "\u0baa\u0bb2 \u0bb2\u0bc6\u0b9f\u0bcd\u0b9c\u0bb0\u0bcd \u0b85\u0bb1\u0bbf\u0b95\u0bcd\u0b95\u0bc8 \u0bb5\u0bbf\u0bb0\u0bbf\u0bb5\u0bbe\u0b95",
|
||||
"My Settings": "\u0b8e\u0ba9\u0bcd \u0b85\u0bae\u0bc8\u0baa\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd",
|
||||
"Naming Series": "\u0ba4\u0bc6\u0bbe\u0b9f\u0bb0\u0bcd \u0baa\u0bc6\u0baf\u0bb0\u0bbf\u0b9f\u0bc1\u0bae\u0bcd",
|
||||
"Naming Series Options": "\u0ba4\u0bc6\u0bbe\u0b9f\u0bb0\u0bcd \u0bb5\u0bbf\u0bb0\u0bc1\u0baa\u0bcd\u0baa\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0baa\u0bc6\u0baf\u0bb0\u0bbf\u0b9f\u0bc1\u0bae\u0bcd",
|
||||
"Newsletter": "\u0b9a\u0bc6\u0baf\u0bcd\u0ba4\u0bbf \u0bae\u0b9f\u0bb2\u0bcd",
|
||||
"Notification Control": "\u0b85\u0bb1\u0bbf\u0bb5\u0bbf\u0baa\u0bcd\u0baa\u0bc1 \u0b95\u0b9f\u0bcd\u0b9f\u0bc1\u0baa\u0bcd\u0baa\u0bbe\u0b9f\u0bc1",
|
||||
"Opportunity": "\u0b9a\u0ba8\u0bcd\u0ba4\u0bb0\u0bcd\u0baa\u0bcd\u0baa\u0bae\u0bcd",
|
||||
"Opportunity Item": "\u0bb5\u0bbe\u0baf\u0bcd\u0baa\u0bcd\u0baa\u0bc1 \u0ba4\u0b95\u0bb5\u0bb2\u0bcd\u0b95\u0bb3\u0bcd",
|
||||
"Other Income Detail": "\u0bae\u0bb1\u0bcd\u0bb1 \u0bb5\u0bb0\u0bc1\u0bae\u0bbe\u0ba9\u0bae\u0bcd \u0bb5\u0bbf\u0bb0\u0bbf\u0bb5\u0bbe\u0b95",
|
||||
"POS Setting": "\u0baa\u0bbf\u0b93\u0b8e\u0bb8\u0bcd \u0b85\u0bae\u0bc8\u0b95\u0bcd\u0b95\u0bbf\u0bb1\u0ba4\u0bc1",
|
||||
"Packing Slip": "\u0bb8\u0bcd\u0bb2\u0bbf\u0baa\u0bcd \u0baa\u0bc6\u0bbe\u0ba4\u0bbf",
|
||||
"Packing Slip Item": "\u0bb8\u0bcd\u0bb2\u0bbf\u0baa\u0bcd \u0baa\u0bc6\u0bbe\u0bb0\u0bc1\u0bb3\u0bcd \u0baa\u0bc6\u0bbe\u0ba4\u0bbf",
|
||||
"Page": "\u0baa\u0b95\u0bcd\u0b95\u0bae\u0bcd",
|
||||
"Page Role": "\u0baa\u0b95\u0bcd\u0b95\u0bae\u0bcd \u0baa\u0bbe\u0ba4\u0bcd\u0ba4\u0bbf\u0bb0\u0bae\u0bcd",
|
||||
"Patch Log": "\u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc1 \u0baa\u0bc1\u0b95\u0bc1\u0baa\u0ba4\u0bbf\u0b95\u0bc8",
|
||||
"Payment to Invoice Matching Tool": "\u0bb5\u0bbf\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bb2\u0bcd \u0baa\u0bc6\u0bbe\u0bb0\u0bc1\u0ba8\u0bcd\u0ba4\u0bc1\u0bae\u0bcd \u0b95\u0bb0\u0bc1\u0bb5\u0bbf \u0baa\u0ba3\u0bae\u0bcd",
|
||||
"Payment to Invoice Matching Tool Detail": "\u0bb5\u0bbf\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bb2\u0bcd \u0baa\u0bc6\u0bbe\u0bb0\u0bc1\u0ba8\u0bcd\u0ba4\u0bc1\u0bae\u0bcd \u0b95\u0bb0\u0bc1\u0bb5\u0bbf \u0bb5\u0bbf\u0bb0\u0bbf\u0bb5\u0bbe\u0b95 \u0baa\u0ba3\u0bae\u0bcd",
|
||||
"Period Closing Voucher": "\u0b95\u0bbe\u0bb2\u0bae\u0bcd \u0bae\u0bc1\u0b9f\u0bbf\u0bb5\u0bc1\u0bb1\u0bc1\u0bae\u0bcd \u0bb5\u0bb5\u0bc1\u0b9a\u0bcd\u0b9a\u0bb0\u0bcd",
|
||||
"Permission Control": "\u0b85\u0ba9\u0bc1\u0bae\u0ba4\u0bbf \u0b95\u0b9f\u0bcd\u0b9f\u0bc1\u0baa\u0bcd\u0baa\u0bbe\u0b9f\u0bc1",
|
||||
"Plot Control": "\u0b9a\u0ba4\u0bbf \u0b95\u0b9f\u0bcd\u0b9f\u0bc1\u0baa\u0bcd\u0baa\u0bbe\u0b9f\u0bc1",
|
||||
"Price List": "\u0bb5\u0bbf\u0bb2\u0bc8 \u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bb2\u0bcd",
|
||||
"Print Format": "\u0bb5\u0b9f\u0bbf\u0bb5\u0bae\u0bc8\u0baa\u0bcd\u0baa\u0bc1 \u0b85\u0b9a\u0bcd\u0b9a\u0bbf\u0b9f",
|
||||
"Print Heading": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 \u0b85\u0b9a\u0bcd\u0b9a\u0bbf\u0b9f",
|
||||
"Product": "\u0bb5\u0bbf\u0bb3\u0bc8\u0baa\u0bc6\u0bbe\u0bb0\u0bc1\u0bb3\u0bcd",
|
||||
"Product Group": "\u0ba4\u0baf\u0bbe\u0bb0\u0bbf\u0baa\u0bcd\u0baa\u0bc1 \u0b95\u0bc1\u0bb4\u0bc1",
|
||||
"Product Settings": "\u0ba4\u0baf\u0bbe\u0bb0\u0bbf\u0baa\u0bcd\u0baa\u0bc1 \u0b85\u0bae\u0bc8\u0baa\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd",
|
||||
"Production": "\u0b89\u0bb1\u0bcd\u0baa\u0ba4\u0bcd\u0ba4\u0bbf",
|
||||
"Production Order": "\u0b89\u0bb1\u0bcd\u0baa\u0ba4\u0bcd\u0ba4\u0bbf \u0b86\u0ba3\u0bc8",
|
||||
"Production Plan Item": "\u0b89\u0bb1\u0bcd\u0baa\u0ba4\u0bcd\u0ba4\u0bbf \u0ba4\u0bbf\u0b9f\u0bcd\u0b9f\u0bae\u0bcd \u0baa\u0bc6\u0bbe\u0bb0\u0bc1\u0bb3\u0bcd",
|
||||
"Production Plan Sales Order": "\u0b89\u0bb1\u0bcd\u0baa\u0ba4\u0bcd\u0ba4\u0bbf \u0ba4\u0bbf\u0b9f\u0bcd\u0b9f\u0bae\u0bcd \u0bb5\u0bbf\u0bb1\u0bcd\u0baa\u0ba9\u0bc8 \u0b86\u0ba3\u0bc8",
|
||||
"Production Planning Tool": "\u0b89\u0bb1\u0bcd\u0baa\u0ba4\u0bcd\u0ba4\u0bbf \u0ba4\u0bbf\u0b9f\u0bcd\u0b9f\u0bae\u0bbf\u0b9f\u0bb2\u0bcd \u0b95\u0bb0\u0bc1\u0bb5\u0bbf",
|
||||
"Products Settings": "\u0baa\u0bc6\u0bbe\u0bb0\u0bc1\u0b9f\u0bcd\u0b95\u0bb3\u0bcd \u0b85\u0bae\u0bc8\u0baa\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd",
|
||||
"Profile": "\u0b9a\u0bc1\u0baf\u0bb5\u0bbf\u0bb5\u0bb0\u0ba4\u0bcd\u0ba4\u0bc8",
|
||||
"Profile Control": "\u0b9a\u0bc1\u0baf\u0bb5\u0bbf\u0bb5\u0bb0\u0ba4\u0bcd\u0ba4\u0bc8 \u0b95\u0b9f\u0bcd\u0b9f\u0bc1\u0baa\u0bcd\u0baa\u0bbe\u0b9f\u0bc1",
|
||||
"Project": "\u0ba4\u0bbf\u0b9f\u0bcd\u0b9f\u0bae\u0bcd",
|
||||
"Project Activity": "\u0ba4\u0bbf\u0b9f\u0bcd\u0b9f \u0b9a\u0bc6\u0baf\u0bb2\u0bcd\u0baa\u0bbe\u0b9f\u0bc1",
|
||||
"Project Activity Update": "\u0ba4\u0bbf\u0b9f\u0bcd\u0b9f \u0b9a\u0bc6\u0baf\u0bb2\u0bcd\u0baa\u0bbe\u0b9f\u0bc1 \u0bae\u0bc7\u0bae\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bb2\u0bcd",
|
||||
"Project Control": "\u0ba4\u0bbf\u0b9f\u0bcd\u0b9f \u0b95\u0b9f\u0bcd\u0b9f\u0bc1\u0baa\u0bcd\u0baa\u0bbe\u0b9f\u0bc1",
|
||||
"Project Milestone": "\u0ba4\u0bbf\u0b9f\u0bcd\u0b9f\u0bae\u0bcd \u0bae\u0bc8\u0bb2\u0bcd\u0b95\u0bb2\u0bcd",
|
||||
"Projects": "\u0ba4\u0bbf\u0b9f\u0bcd\u0b9f\u0b99\u0bcd\u0b95\u0bb3\u0bcd",
|
||||
"Property Setter": "\u0b9a\u0bc6\u0bbe\u0ba4\u0bcd\u0ba4\u0bc1 \u0b9a\u0bc6\u0b9f\u0bcd\u0b9f\u0bb0\u0bcd",
|
||||
"Purchase Common": "\u0baa\u0bc6\u0bbe\u0ba4\u0bc1\u0bb5\u0bbe\u0ba9 \u0bb5\u0bbe\u0b99\u0bcd\u0b95",
|
||||
"Purchase Invoice": "\u0bb5\u0bbf\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bb2\u0bcd \u0b95\u0bc6\u0bbe\u0bb3\u0bcd\u0bb5\u0ba9\u0bb5\u0bc1",
|
||||
"Purchase Invoice Advance": "\u0bb5\u0bbf\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bb2\u0bcd \u0b85\u0b9f\u0bcd\u0bb5\u0bbe\u0ba9\u0bcd\u0bb8\u0bcd \u0bb5\u0bbe\u0b99\u0bcd\u0b95\u0bc1\u0bb5\u0ba4\u0bb1\u0bcd\u0b95\u0bc1",
|
||||
"Purchase Invoice Item": "\u0bb5\u0bbf\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bb2\u0bcd \u0baa\u0bc6\u0bbe\u0bb0\u0bc1\u0bb3\u0bcd \u0bb5\u0bbe\u0b99\u0bcd\u0b95",
|
||||
"Purchase Order": "\u0b86\u0bb0\u0bcd\u0b9f\u0bb0\u0bcd \u0bb5\u0bbe\u0b99\u0bcd\u0b95",
|
||||
"Purchase Order Item": "\u0b86\u0bb0\u0bcd\u0b9f\u0bb0\u0bcd \u0baa\u0bc6\u0bbe\u0bb0\u0bc1\u0bb3\u0bcd \u0bb5\u0bbe\u0b99\u0bcd\u0b95",
|
||||
"Purchase Order Item Supplied": "\u0b95\u0bc6\u0bbe\u0bb3\u0bcd\u0bae\u0bc1\u0ba4\u0bb2\u0bcd \u0b86\u0ba3\u0bc8 \u0baa\u0bc6\u0bbe\u0bb0\u0bc1\u0bb3\u0bcd \u0bb5\u0bb4\u0b99\u0bcd\u0b95\u0bbf\u0baf\u0ba4\u0bc1",
|
||||
"Purchase Receipt": "\u0bb0\u0b9a\u0bc0\u0ba4\u0bc1 \u0bb5\u0bbe\u0b99\u0bcd\u0b95",
|
||||
"Purchase Receipt Item": "\u0bb0\u0b9a\u0bc0\u0ba4\u0bc1 \u0baa\u0bc6\u0bbe\u0bb0\u0bc1\u0bb3\u0bcd \u0bb5\u0bbe\u0b99\u0bcd\u0b95",
|
||||
"Purchase Receipt Item Supplied": "\u0b95\u0bc6\u0bbe\u0bb3\u0bcd\u0bae\u0bc1\u0ba4\u0bb2\u0bcd \u0bb0\u0b9a\u0bc0\u0ba4\u0bc1 \u0baa\u0bc6\u0bbe\u0bb0\u0bc1\u0bb3\u0bcd \u0bb5\u0bb4\u0b99\u0bcd\u0b95\u0bbf\u0baf\u0ba4\u0bc1",
|
||||
"Purchase Request": "\u0b95\u0bc7\u0bbe\u0bb0\u0bbf\u0b95\u0bcd\u0b95\u0bc8 \u0bb5\u0bbe\u0b99\u0bcd\u0b95",
|
||||
"Purchase Request Item": "\u0b95\u0bc7\u0bbe\u0bb0\u0bbf\u0b95\u0bcd\u0b95\u0bc8 \u0baa\u0bc6\u0bbe\u0bb0\u0bc1\u0bb3\u0bcd \u0bb5\u0bbe\u0b99\u0bcd\u0b95",
|
||||
"Purchase Taxes and Charges": "\u0b95\u0bc6\u0bbe\u0bb3\u0bcd\u0bae\u0bc1\u0ba4\u0bb2\u0bcd \u0bb5\u0bb0\u0bbf \u0bae\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0bcd \u0b95\u0b9f\u0bcd\u0b9f\u0ba3\u0b99\u0bcd\u0b95\u0bb3\u0bcd",
|
||||
"Purchase Taxes and Charges Master": "\u0b95\u0bc6\u0bbe\u0bb3\u0bcd\u0bae\u0bc1\u0ba4\u0bb2\u0bcd \u0bb5\u0bb0\u0bbf \u0bae\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0bcd \u0b95\u0b9f\u0bcd\u0b9f\u0ba3\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0bae\u0bbe\u0bb8\u0bcd\u0b9f\u0bb0\u0bcd",
|
||||
"Quality Inspection": "\u0ba4\u0bb0\u0bae\u0bbe\u0ba9 \u0b86\u0baf\u0bcd\u0bb5\u0bc1",
|
||||
"Quality Inspection Reading": "\u0ba4\u0bb0\u0bae\u0bbe\u0ba9 \u0b86\u0baf\u0bcd\u0bb5\u0bc1 \u0baa\u0b9f\u0bbf\u0ba4\u0bcd\u0ba4\u0bb2\u0bcd",
|
||||
"Question": "\u0bb5\u0bbf\u0ba9\u0bbe",
|
||||
"Quotation": "\u0bae\u0bc7\u0bb1\u0bcd\u0b95\u0bc7\u0bbe\u0bb3\u0bcd",
|
||||
"Quotation Item": "\u0bae\u0bc7\u0bb1\u0bcd\u0b95\u0bc7\u0bbe\u0bb3\u0bcd \u0baa\u0bc6\u0bbe\u0bb0\u0bc1\u0bb3\u0bcd",
|
||||
"Quotation Lost Reason": "\u0bae\u0bc7\u0bb1\u0bcd\u0b95\u0bc7\u0bbe\u0bb3\u0bcd \u0b95\u0bbe\u0bb0\u0ba3\u0bae\u0bcd \u0bb2\u0bbe\u0bb8\u0bcd\u0b9f\u0bcd",
|
||||
"Related Page": "\u0ba4\u0bc6\u0bbe\u0b9f\u0bb0\u0bcd\u0baa\u0bc1\u0b9f\u0bc8\u0baf \u0baa\u0b95\u0bcd\u0b95\u0bae\u0bcd",
|
||||
"Rename Tool": "\u0b95\u0bb0\u0bc1\u0bb5\u0bbf \u0bae\u0bb1\u0bc1\u0baa\u0bc6\u0baf\u0bb0\u0bbf\u0b9f\u0bc1",
|
||||
"Report": "\u0baa\u0bc1\u0b95\u0bbe\u0bb0\u0bcd",
|
||||
"Role": "\u0baa\u0b99\u0bcd\u0b95\u0bc1",
|
||||
"SMS Center": "\u0b8e\u0bb8\u0bcd\u0b8e\u0bae\u0bcd\u0b8e\u0bb8\u0bcd \u0bae\u0bc8\u0baf\u0bae\u0bcd",
|
||||
"SMS Control": "\u0b8e\u0bb8\u0bcd\u0b8e\u0bae\u0bcd\u0b8e\u0bb8\u0bcd \u0b95\u0b9f\u0bcd\u0b9f\u0bc1\u0baa\u0bcd\u0baa\u0bbe\u0b9f\u0bc1",
|
||||
"SMS Log": "\u0b8e\u0bb8\u0bcd\u0b8e\u0bae\u0bcd\u0b8e\u0bb8\u0bcd \u0baa\u0bc1\u0b95\u0bc1\u0baa\u0ba4\u0bbf\u0b95\u0bc8",
|
||||
"SMS Parameter": "\u0b8e\u0bb8\u0bcd\u0b8e\u0bae\u0bcd\u0b8e\u0bb8\u0bcd \u0b85\u0bb3\u0bb5\u0bc1\u0bb0\u0bc1",
|
||||
"SMS Receiver": "\u0b8e\u0bb8\u0bcd\u0b8e\u0bae\u0bcd\u0b8e\u0bb8\u0bcd \u0baa\u0bc6\u0bb1\u0bc1\u0ba8\u0bb0\u0bcd",
|
||||
"SMS Settings": "SMS \u0b85\u0bae\u0bc8\u0baa\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd",
|
||||
"Salary Manager": "\u0b9a\u0bae\u0bcd\u0baa\u0bb3\u0bae\u0bcd \u0bae\u0bc7\u0bb2\u0bbe\u0bb3\u0bb0\u0bcd",
|
||||
"Salary Slip": "\u0b9a\u0bae\u0bcd\u0baa\u0bb3\u0bae\u0bcd \u0bb8\u0bcd\u0bb2\u0bbf\u0baa\u0bcd",
|
||||
"Salary Slip Deduction": "\u0b9a\u0bae\u0bcd\u0baa\u0bb3\u0bae\u0bcd \u0bb8\u0bcd\u0bb2\u0bbf\u0baa\u0bcd \u0baa\u0bc6\u0bbe\u0bb0\u0bc1\u0ba4\u0bcd\u0ba4\u0bbf\u0baf\u0bb1\u0bbf\u0ba4\u0bb2\u0bcd",
|
||||
"Salary Slip Earning": "\u0b9a\u0bae\u0bcd\u0baa\u0bb3\u0bae\u0bcd \u0bb8\u0bcd\u0bb2\u0bbf\u0baa\u0bcd \u0b86\u0ba4\u0bbe\u0baf\u0bae\u0bcd",
|
||||
"Salary Structure": "\u0b9a\u0bae\u0bcd\u0baa\u0bb3\u0bae\u0bcd \u0b85\u0bae\u0bc8\u0baa\u0bcd\u0baa\u0bc1",
|
||||
"Salary Structure Deduction": "\u0b9a\u0bae\u0bcd\u0baa\u0bb3\u0bae\u0bcd \u0b85\u0bae\u0bc8\u0baa\u0bcd\u0baa\u0bc1 \u0baa\u0bc6\u0bbe\u0bb0\u0bc1\u0ba4\u0bcd\u0ba4\u0bbf\u0baf\u0bb1\u0bbf\u0ba4\u0bb2\u0bcd",
|
||||
"Salary Structure Earning": "\u0b9a\u0bae\u0bcd\u0baa\u0bb3\u0bae\u0bcd \u0b85\u0bae\u0bc8\u0baa\u0bcd\u0baa\u0bc1 \u0b86\u0ba4\u0bbe\u0baf\u0bae\u0bcd",
|
||||
"Sales BOM": "\u0bb5\u0bbf\u0bb1\u0bcd\u0baa\u0ba9\u0bc8 BOM",
|
||||
"Sales BOM Item": "\u0bb5\u0bbf\u0bb1\u0bcd\u0baa\u0ba9\u0bc8 BOM \u0baa\u0bc6\u0bbe\u0bb0\u0bc1\u0bb3\u0bcd",
|
||||
"Sales Browser Control": "\u0bb5\u0bbf\u0bb1\u0bcd\u0baa\u0ba9\u0bc8 \u0b89\u0bb2\u0bbe\u0bb5\u0bbf \u0b95\u0b9f\u0bcd\u0b9f\u0bc1\u0baa\u0bcd\u0baa\u0bbe\u0b9f\u0bc1",
|
||||
"Sales Common": "\u0baa\u0bc6\u0bbe\u0ba4\u0bc1\u0bb5\u0bbe\u0ba9 \u0bb5\u0bbf\u0bb1\u0bcd\u0baa\u0ba9\u0bc8",
|
||||
"Sales Email Settings": "\u0bb5\u0bbf\u0bb1\u0bcd\u0baa\u0ba9\u0bc8 \u0bae\u0bbf\u0ba9\u0bcd\u0ba9\u0b9e\u0bcd\u0b9a\u0bb2\u0bcd \u0b85\u0bae\u0bc8\u0baa\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd",
|
||||
"Sales Invoice": "\u0bb5\u0bbf\u0bb1\u0bcd\u0baa\u0ba9\u0bc8 \u0bb5\u0bbf\u0bb2\u0bc8 \u0bb5\u0bbf\u0bb5\u0bb0\u0bae\u0bcd",
|
||||
"Sales Invoice Advance": "\u0bb5\u0bbf\u0bb1\u0bcd\u0baa\u0ba9\u0bc8 \u0bb5\u0bbf\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bb2\u0bcd \u0bae\u0bc1\u0ba9\u0bcd\u0baa\u0ba3\u0bae\u0bcd",
|
||||
"Sales Invoice Item": "\u0bb5\u0bbf\u0bb1\u0bcd\u0baa\u0ba9\u0bc8 \u0bb5\u0bbf\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bb2\u0bcd \u0baa\u0bc6\u0bbe\u0bb0\u0bc1\u0bb3\u0bcd",
|
||||
"Sales Order": "\u0bb5\u0bbf\u0bb1\u0bcd\u0baa\u0ba9\u0bc8 \u0b86\u0ba3\u0bc8",
|
||||
"Sales Order Item": "\u0bb5\u0bbf\u0bb1\u0bcd\u0baa\u0ba9\u0bc8 \u0b86\u0ba3\u0bc8 \u0b89\u0bb0\u0bc1\u0baa\u0bcd\u0baa\u0b9f\u0bbf",
|
||||
"Sales Partner": "\u0bb5\u0bbf\u0bb1\u0bcd\u0baa\u0ba9\u0bc8 \u0bb5\u0bb0\u0ba9\u0bcd\u0bb5\u0bbe\u0bb4\u0bcd\u0b95\u0bcd\u0b95\u0bc8 \u0ba4\u0bc1\u0ba3\u0bc8",
|
||||
"Sales Person": "\u0bb5\u0bbf\u0bb1\u0bcd\u0baa\u0ba9\u0bc8 \u0ba8\u0baa\u0bb0\u0bcd",
|
||||
"Sales Taxes and Charges": "\u0bb5\u0bbf\u0bb1\u0bcd\u0baa\u0ba9\u0bc8 \u0bb5\u0bb0\u0bbf \u0bae\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0bcd \u0b95\u0b9f\u0bcd\u0b9f\u0ba3\u0b99\u0bcd\u0b95\u0bb3\u0bcd",
|
||||
"Sales Taxes and Charges Master": "\u0bb5\u0bbf\u0bb1\u0bcd\u0baa\u0ba9\u0bc8 \u0bb5\u0bb0\u0bbf \u0bae\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0bcd \u0b95\u0b9f\u0bcd\u0b9f\u0ba3\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0bae\u0bbe\u0bb8\u0bcd\u0b9f\u0bb0\u0bcd",
|
||||
"Sales Team": "\u0bb5\u0bbf\u0bb1\u0bcd\u0baa\u0ba9\u0bc8 \u0b95\u0bc1\u0bb4\u0bc1",
|
||||
"Sales and Purchase Return Item": "\u0bb5\u0bbf\u0bb1\u0bcd\u0baa\u0ba9\u0bc8 \u0bae\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0bcd \u0b95\u0bc6\u0bbe\u0bb3\u0bcd\u0bae\u0bc1\u0ba4\u0bb2\u0bcd \u0ba4\u0bbf\u0bb0\u0bc1\u0bae\u0bcd\u0baa \u0b89\u0bb0\u0bc1\u0baa\u0bcd\u0baa\u0b9f\u0bbf",
|
||||
"Sales and Purchase Return Tool": "\u0bb5\u0bbf\u0bb1\u0bcd\u0baa\u0ba9\u0bc8 \u0bae\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0bcd \u0b95\u0bc6\u0bbe\u0bb3\u0bcd\u0bae\u0bc1\u0ba4\u0bb2\u0bcd \u0ba4\u0bbf\u0bb0\u0bc1\u0bae\u0bcd\u0baa \u0b95\u0bb0\u0bc1\u0bb5\u0bbf",
|
||||
"Sandbox": "Sandbox",
|
||||
"Scheduler Log": "\u0ba4\u0bbf\u0b9f\u0bcd\u0b9f \u0baa\u0bc1\u0b95\u0bc1\u0baa\u0ba4\u0bbf\u0b95\u0bc8",
|
||||
"Search Criteria": "\u0ba4\u0bc7\u0b9f\u0bb2\u0bcd \u0bb5\u0bb0\u0bc8\u0baf\u0bb1\u0bc8\u0b95\u0bb3\u0bcd",
|
||||
"Selling": "\u0bb5\u0bbf\u0bb1\u0bcd\u0baa\u0ba9\u0bc8",
|
||||
"Serial No": "\u0b87\u0bb2\u0bcd\u0bb2\u0bc8 \u0ba4\u0bc6\u0bbe\u0b9f\u0bb0\u0bcd",
|
||||
"Series Detail": "\u0ba4\u0bc6\u0bbe\u0b9f\u0bb0\u0bcd \u0bb5\u0bbf\u0bb0\u0bbf\u0bb5\u0bbe\u0b95",
|
||||
"Setup": "\u0b85\u0bae\u0bc8\u0baa\u0bcd\u0baa\u0bc1 \u0bae\u0bc1\u0bb1\u0bc8",
|
||||
"Setup Control": "\u0b85\u0bae\u0bc8\u0baa\u0bcd\u0baa\u0bc1 \u0b95\u0b9f\u0bcd\u0b9f\u0bc1\u0baa\u0bcd\u0baa\u0bbe\u0b9f\u0bc1",
|
||||
"Shipping Address": "\u0b95\u0baa\u0bcd\u0baa\u0bb2\u0bcd \u0bae\u0bc1\u0b95\u0bb5\u0bb0\u0bbf",
|
||||
"State": "\u0ba8\u0bbf\u0bb2\u0bc8",
|
||||
"Stock": "\u0baa\u0b99\u0bcd\u0b95\u0bc1",
|
||||
"Stock Entry": "\u0baa\u0b99\u0bcd\u0b95\u0bc1 \u0ba8\u0bc1\u0bb4\u0bc8\u0bb5\u0bc1",
|
||||
"Stock Entry Detail": "\u0baa\u0b99\u0bcd\u0b95\u0bc1 \u0ba8\u0bc1\u0bb4\u0bc8\u0bb5\u0bc1 \u0bb5\u0bbf\u0bb0\u0bbf\u0bb5\u0bbe\u0b95",
|
||||
"Stock Ledger": "\u0baa\u0b99\u0bcd\u0b95\u0bc1 \u0bb2\u0bc6\u0b9f\u0bcd\u0b9c\u0bb0\u0bcd",
|
||||
"Stock Ledger Entry": "\u0baa\u0b99\u0bcd\u0b95\u0bc1 \u0bb2\u0bc6\u0b9f\u0bcd\u0b9c\u0bb0\u0bcd \u0ba8\u0bc1\u0bb4\u0bc8\u0bb5\u0bc1",
|
||||
"Stock Reconciliation": "\u0baa\u0b99\u0bcd\u0b95\u0bc1 \u0ba8\u0bb2\u0bcd\u0bb2\u0bbf\u0ba3\u0b95\u0bcd\u0b95",
|
||||
"Stock UOM Replace Utility": "\u0baa\u0b99\u0bcd\u0b95\u0bc1 \u0bae\u0bc6\u0bbe\u0bb1\u0b9f\u0bcd\u0b9f\u0bc1\u0bb5 \u0baa\u0bb2\u0bcd\u0b95\u0bb2\u0bc8\u0b95\u0bb4\u0b95\u0bae\u0bcd \u0baa\u0ba4\u0bbf\u0bb2\u0bbe\u0b95 \u0baa\u0baf\u0ba9\u0bcd\u0baa\u0bbe\u0b9f\u0bcd\u0b9f\u0bc1",
|
||||
"Style Settings": "\u0b89\u0b9f\u0bc8 \u0b85\u0bae\u0bc8\u0baa\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd",
|
||||
"Supplier": "\u0b95\u0bc6\u0bbe\u0b9f\u0bc1\u0baa\u0bcd\u0baa\u0bb5\u0bb0\u0bcd",
|
||||
"Supplier Quotation": "\u0bb5\u0bb4\u0b99\u0bcd\u0b95\u0bc1\u0baa\u0bb5\u0bb0\u0bcd \u0bb5\u0bbf\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bb2\u0bcd",
|
||||
"Supplier Quotation Item": "\u0bb5\u0bb4\u0b99\u0bcd\u0b95\u0bc1\u0baa\u0bb5\u0bb0\u0bcd \u0bae\u0bc7\u0bb1\u0bcd\u0b95\u0bc7\u0bbe\u0bb3\u0bcd \u0baa\u0bc6\u0bbe\u0bb0\u0bc1\u0bb3\u0bcd",
|
||||
"Supplier Type": "\u0bb5\u0bb4\u0b99\u0bcd\u0b95\u0bc1\u0baa\u0bb5\u0bb0\u0bcd \u0bb5\u0b95\u0bc8",
|
||||
"Support": "\u0b86\u0ba4\u0bb0\u0bb5\u0bc1",
|
||||
"Support Ticket": "\u0b86\u0ba4\u0bb0\u0bb5\u0bc1 \u0b9f\u0bbf\u0b95\u0bcd\u0b95\u0bc6\u0b9f\u0bcd",
|
||||
"System Console": "\u0b95\u0ba3\u0bbf\u0ba9\u0bbf \u0baa\u0ba3\u0bbf\u0baf\u0b95\u0bae\u0bcd",
|
||||
"Table Mapper Detail": "\u0b85\u0b9f\u0bcd\u0b9f\u0bb5\u0ba3\u0bc8 mapper \u0bb5\u0bbf\u0bb0\u0bbf\u0bb5\u0bbe\u0b95",
|
||||
"Tag": "Tag",
|
||||
"Target Detail": "\u0b87\u0bb2\u0b95\u0bcd\u0b95\u0bc1 \u0bb5\u0bbf\u0bb0\u0bbf\u0bb5\u0bbe\u0b95",
|
||||
"Task": "\u0baa\u0ba3\u0bbf",
|
||||
"Terms and Conditions": "\u0ba8\u0bbf\u0baa\u0ba8\u0bcd\u0ba4\u0ba9\u0bc8\u0b95\u0bb3\u0bcd",
|
||||
"Territory": "\u0bae\u0ba3\u0bcd\u0b9f\u0bb2\u0bae\u0bcd",
|
||||
"Timesheet": "Timesheet",
|
||||
"Timesheet Detail": "Timesheet \u0bb5\u0bbf\u0bb0\u0bbf\u0bb5\u0bbe\u0b95",
|
||||
"To Do": "\u0b9a\u0bc6\u0baf\u0bcd",
|
||||
"ToDo": "TODO",
|
||||
"Top Bar Item": "\u0bae\u0bc7\u0bb2\u0bcd \u0baa\u0b9f\u0bcd\u0b9f\u0bbf \u0b89\u0bb0\u0bc1\u0baa\u0bcd\u0baa\u0b9f\u0bbf",
|
||||
"Trash Control": "\u0b95\u0bc1\u0baa\u0bcd\u0baa\u0bc8 \u0b95\u0b9f\u0bcd\u0b9f\u0bc1\u0baa\u0bcd\u0baa\u0bbe\u0b9f\u0bc1",
|
||||
"Trend Analyzer Control": "\u0baa\u0bc7\u0bbe\u0b95\u0bcd\u0b95\u0bc1 \u0baa\u0b95\u0bc1\u0baa\u0bcd\u0baa\u0bbe\u0baf\u0bcd\u0bb5\u0bbf \u0b95\u0b9f\u0bcd\u0b9f\u0bc1\u0baa\u0bcd\u0baa\u0bbe\u0b9f\u0bc1",
|
||||
"UOM": "\u0bae\u0bc6\u0bbe\u0bb1\u0b9f\u0bcd\u0b9f\u0bc1\u0bb5 \u0baa\u0bb2\u0bcd\u0b95\u0bb2\u0bc8\u0b95\u0bb4\u0b95\u0bae\u0bcd",
|
||||
"UOM Conversion Detail": "\u0bae\u0bc6\u0bbe\u0bb1\u0b9f\u0bcd\u0b9f\u0bc1\u0bb5 \u0baa\u0bb2\u0bcd\u0b95\u0bb2\u0bc8\u0b95\u0bb4\u0b95\u0bae\u0bcd \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bae\u0bcd \u0bb5\u0bbf\u0bb0\u0bbf\u0bb5\u0bbe\u0b95",
|
||||
"Unread Messages": "\u0baa\u0b9f\u0bbf\u0b95\u0bcd\u0b95\u0bbe\u0ba4 \u0b9a\u0bc6\u0baf\u0bcd\u0ba4\u0bbf\u0b95\u0bb3\u0bcd",
|
||||
"Update Delivery Date": "\u0b9f\u0bc6\u0bb2\u0bbf\u0bb5\u0bb0\u0bbf \u0ba4\u0bc7\u0ba4\u0bbf \u0baa\u0bc1\u0ba4\u0bc1\u0baa\u0bcd\u0baa\u0bbf\u0b95\u0bcd\u0b95",
|
||||
"UserRole": "UserRole",
|
||||
"Utilities": "\u0baa\u0baf\u0ba9\u0bcd\u0baa\u0bbe\u0b9f\u0bc1\u0b95\u0bb3\u0bcd",
|
||||
"Valuation Control": "\u0bae\u0ba4\u0bbf\u0baa\u0bcd\u0baa\u0bc0\u0b9f\u0bcd\u0b9f\u0bc1 \u0b95\u0b9f\u0bcd\u0b9f\u0bc1\u0baa\u0bcd\u0baa\u0bbe\u0b9f\u0bc1",
|
||||
"Warehouse": "\u0bb5\u0bbf\u0bb1\u0bcd\u0baa\u0ba9\u0bc8 \u0baa\u0bc6\u0bbe\u0bb0\u0bc1\u0bb3\u0bcd\u0b95\u0bb3\u0bcd \u0bb5\u0bc8\u0ba4\u0bcd\u0ba4\u0bbf\u0bb0\u0bc1\u0b95\u0bcd\u0b95\u0bc1\u0bae\u0bcd \u0b87\u0b9f\u0bae\u0bcd",
|
||||
"Warehouse Type": "\u0b9a\u0bc7\u0bae\u0bbf\u0baa\u0bcd\u0baa\u0bc1 \u0b95\u0bbf\u0b9f\u0b99\u0bcd\u0b95\u0bc1 \u0b85\u0bae\u0bc8\u0baa\u0bcd\u0baa\u0bc1",
|
||||
"Web Page": "\u0bb5\u0bb2\u0bc8 \u0baa\u0b95\u0bcd\u0b95\u0bae\u0bcd",
|
||||
"Website": "\u0b87\u0ba3\u0bc8\u0baf\u0ba4\u0bb3\u0bae\u0bcd",
|
||||
"Website Item Group": "\u0b87\u0ba3\u0bc8\u0baf \u0ba4\u0b95\u0bb5\u0bb2\u0bcd\u0b95\u0bb3\u0bcd \u0b95\u0bc1\u0bb4\u0bc1",
|
||||
"Website Product Category": "\u0b87\u0ba3\u0bc8\u0baf \u0ba4\u0baf\u0bbe\u0bb0\u0bbf\u0baa\u0bcd\u0baa\u0bc1 \u0baa\u0bbf\u0bb0\u0bbf\u0bb5\u0bc1",
|
||||
"Website Script": "\u0b87\u0ba3\u0bc8\u0baf \u0b89\u0bb0\u0bc8",
|
||||
"Website Settings": "\u0b87\u0ba3\u0bc8\u0baf \u0b85\u0bae\u0bc8\u0baa\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd",
|
||||
"Website Slideshow": "\u0b87\u0ba3\u0bc8\u0baf \u0baa",
|
||||
"Website Slideshow Item": "\u0b87\u0ba3\u0bc8\u0baf \u0baa \u0baa\u0bc6\u0bbe\u0bb0\u0bc1\u0bb3\u0bcd",
|
||||
"Workflow": "\u0baa\u0ba3\u0bbf\u0baf\u0bc7\u0bbe\u0b9f\u0bcd\u0b9f\u0bae\u0bcd",
|
||||
"Workflow Action": "\u0baa\u0ba3\u0bbf\u0baf\u0bc7\u0bbe\u0b9f\u0bcd\u0b9f\u0bae\u0bcd \u0b85\u0ba4\u0bbf\u0bb0\u0b9f\u0bbf",
|
||||
"Workflow Action Detail": "\u0baa\u0ba3\u0bbf\u0baf\u0bc7\u0bbe\u0b9f\u0bcd\u0b9f\u0bae\u0bcd \u0b85\u0ba4\u0bbf\u0bb0\u0b9f\u0bbf \u0bb5\u0bbf\u0bb0\u0bbf\u0bb5\u0bbe\u0b95",
|
||||
"Workflow Document State": "\u0baa\u0ba3\u0bbf\u0baf\u0bc7\u0bbe\u0b9f\u0bcd\u0b9f\u0bae\u0bcd \u0b86\u0bb5\u0ba3 \u0bae\u0bbe\u0ba8\u0bbf\u0bb2\u0bae\u0bcd",
|
||||
"Workflow Engine": "\u0baa\u0ba3\u0bbf\u0baf\u0bc7\u0bbe\u0b9f\u0bcd\u0b9f\u0bae\u0bcd \u0b8e\u0b9e\u0bcd\u0b9a\u0bbf\u0ba9\u0bcd",
|
||||
"Workflow Rule": "\u0baa\u0ba3\u0bbf\u0baf\u0bc7\u0bbe\u0b9f\u0bcd\u0b9f\u0bae\u0bcd \u0bb5\u0bbf\u0ba4\u0bbf",
|
||||
"Workflow Rule Detail": "\u0baa\u0ba3\u0bbf\u0baf\u0bc7\u0bbe\u0b9f\u0bcd\u0b9f\u0bae\u0bcd \u0bb5\u0bbf\u0ba4\u0bbf \u0bb5\u0bbf\u0bb0\u0bbf\u0bb5\u0bbe\u0b95",
|
||||
"Workflow State": "\u0baa\u0ba3\u0bbf\u0baf\u0bc7\u0bbe\u0b9f\u0bcd\u0b9f\u0bae\u0bcd \u0bae\u0bbe\u0ba8\u0bbf\u0bb2\u0bae\u0bcd",
|
||||
"Workflow Transition": "\u0baa\u0ba3\u0bbf\u0baf\u0bc7\u0bbe\u0b9f\u0bcd\u0b9f\u0bae\u0bcd \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bae\u0bcd",
|
||||
"Workstation": "\u0baa\u0ba3\u0bbf\u0ba8\u0bbf\u0bb2\u0bc8\u0baf\u0bae\u0bcd"
|
||||
}
|
||||
@@ -1,317 +0,0 @@
|
||||
{
|
||||
"About Us Settings": "\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e40\u0e23\u0e32",
|
||||
"About Us Team Member": "\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e2a\u0e21\u0e32\u0e0a\u0e34\u0e01\u0e43\u0e19\u0e17\u0e35\u0e21\u0e40\u0e23\u0e32",
|
||||
"Account": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35",
|
||||
"Accounts": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35",
|
||||
"Activity": "\u0e01\u0e34\u0e08\u0e01\u0e23\u0e23\u0e21",
|
||||
"Activity Type": "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e01\u0e34\u0e08\u0e01\u0e23\u0e23\u0e21",
|
||||
"Address": "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48",
|
||||
"Answer": "\u0e15\u0e2d\u0e1a",
|
||||
"Appraisal": "\u0e01\u0e32\u0e23\u0e15\u0e35\u0e23\u0e32\u0e04\u0e32",
|
||||
"Appraisal Goal": "\u0e40\u0e1b\u0e49\u0e32\u0e2b\u0e21\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1b\u0e23\u0e30\u0e40\u0e21\u0e34\u0e19",
|
||||
"Appraisal Template": "\u0e41\u0e21\u0e48\u0e41\u0e1a\u0e1a\u0e01\u0e32\u0e23\u0e1b\u0e23\u0e30\u0e40\u0e21\u0e34\u0e19",
|
||||
"Appraisal Template Goal": "\u0e40\u0e1b\u0e49\u0e32\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e17\u0e21\u0e40\u0e1e\u0e25\u0e17\u0e1b\u0e23\u0e30\u0e40\u0e21\u0e34\u0e19",
|
||||
"Attendance": "\u0e01\u0e32\u0e23\u0e14\u0e39\u0e41\u0e25\u0e23\u0e31\u0e01\u0e29\u0e32",
|
||||
"Attendance Control Panel": "\u0e41\u0e1c\u0e07\u0e04\u0e27\u0e1a\u0e04\u0e38\u0e21\u0e01\u0e32\u0e23\u0e40\u0e02\u0e49\u0e32\u0e23\u0e48\u0e27\u0e21\u0e1b\u0e23\u0e30\u0e0a\u0e38\u0e21",
|
||||
"Authorization Control": "\u0e04\u0e27\u0e1a\u0e04\u0e38\u0e21\u0e01\u0e32\u0e23\u0e2d\u0e19\u0e38\u0e21\u0e31\u0e15\u0e34",
|
||||
"Authorization Rule": "\u0e01\u0e0e\u0e01\u0e32\u0e23\u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15",
|
||||
"BOM": "BOM",
|
||||
"BOM Explosion Item": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e23\u0e30\u0e40\u0e1a\u0e34\u0e14 BOM",
|
||||
"BOM Item": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23 BOM",
|
||||
"BOM Operation": "\u0e01\u0e32\u0e23\u0e14\u0e33\u0e40\u0e19\u0e34\u0e19\u0e07\u0e32\u0e19 BOM",
|
||||
"BOM Replace Tool": "\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e21\u0e37\u0e2d\u0e41\u0e17\u0e19\u0e17\u0e35\u0e48 BOM",
|
||||
"Bank Reconciliation": "\u0e01\u0e23\u0e30\u0e17\u0e1a\u0e22\u0e2d\u0e14\u0e18\u0e19\u0e32\u0e04\u0e32\u0e23",
|
||||
"Bank Reconciliation Detail": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e01\u0e32\u0e23\u0e01\u0e23\u0e30\u0e17\u0e1a\u0e22\u0e2d\u0e14\u0e18\u0e19\u0e32\u0e04\u0e32\u0e23",
|
||||
"Batch": "\u0e0a\u0e38\u0e14",
|
||||
"Bin": "\u0e16\u0e31\u0e07",
|
||||
"Blog": "\u0e1a\u0e25\u0e47\u0e2d\u0e01",
|
||||
"Blog Subscriber": "\u0e2a\u0e21\u0e32\u0e0a\u0e34\u0e01\u0e1a\u0e25\u0e47\u0e2d\u0e01",
|
||||
"Branch": "\u0e2a\u0e32\u0e02\u0e32",
|
||||
"Brand": "\u0e22\u0e35\u0e48\u0e2b\u0e49\u0e2d",
|
||||
"Budget Control": "\u0e04\u0e27\u0e1a\u0e04\u0e38\u0e21\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13",
|
||||
"Budget Detail": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13",
|
||||
"Budget Distribution": "\u0e01\u0e32\u0e23\u0e41\u0e1e\u0e23\u0e48\u0e01\u0e23\u0e30\u0e08\u0e32\u0e22\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13",
|
||||
"Budget Distribution Detail": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e08\u0e33\u0e2b\u0e19\u0e48\u0e32\u0e22\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13",
|
||||
"Bulk Email": "\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e4c\u0e02\u0e22\u0e30",
|
||||
"Buying": "\u0e01\u0e32\u0e23\u0e0b\u0e37\u0e49\u0e2d",
|
||||
"C-Form": "C-Form",
|
||||
"C-Form Invoice Detail": "C-Form \u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49",
|
||||
"Calendar": "\u0e1b\u0e0f\u0e34\u0e17\u0e34\u0e19",
|
||||
"Campaign": "\u0e23\u0e13\u0e23\u0e07\u0e04\u0e4c",
|
||||
"Comment": "\u0e04\u0e27\u0e32\u0e21\u0e40\u0e2b\u0e47\u0e19",
|
||||
"Communication": "\u0e01\u0e32\u0e23\u0e2a\u0e37\u0e48\u0e2d\u0e2a\u0e32\u0e23",
|
||||
"Communication Log": "\u0e40\u0e02\u0e49\u0e32\u0e2a\u0e39\u0e48\u0e23\u0e30\u0e1a\u0e1a\u0e01\u0e32\u0e23\u0e2a\u0e37\u0e48\u0e2d\u0e2a\u0e32\u0e23",
|
||||
"Company": "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17",
|
||||
"Company Control": "\u0e01\u0e32\u0e23\u0e04\u0e27\u0e1a\u0e04\u0e38\u0e21\u0e02\u0e2d\u0e07 \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17",
|
||||
"Company History": "\u0e1b\u0e23\u0e30\u0e27\u0e31\u0e15\u0e34 \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17",
|
||||
"Contact": "\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d",
|
||||
"Contact Control": "\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d\u0e04\u0e27\u0e1a\u0e04\u0e38\u0e21",
|
||||
"Contact Us Settings": "\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d\u0e40\u0e23\u0e32\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32",
|
||||
"Control Panel": "\u0e41\u0e1c\u0e07\u0e04\u0e27\u0e1a\u0e04\u0e38\u0e21",
|
||||
"Core": "\u0e41\u0e01\u0e19",
|
||||
"Cost Center": "\u0e28\u0e39\u0e19\u0e22\u0e4c\u0e15\u0e49\u0e19\u0e17\u0e38\u0e19",
|
||||
"Country": "\u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28",
|
||||
"Currency": "\u0e40\u0e07\u0e34\u0e19\u0e15\u0e23\u0e32",
|
||||
"Custom Field": "\u0e1f\u0e34\u0e25\u0e14\u0e4c\u0e17\u0e35\u0e48\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e40\u0e2d\u0e07",
|
||||
"Custom Script": "\u0e2a\u0e04\u0e23\u0e34\u0e1b\u0e15\u0e4c\u0e17\u0e35\u0e48\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e40\u0e2d\u0e07",
|
||||
"Customer": "\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32",
|
||||
"Customer Group": "\u0e01\u0e25\u0e38\u0e48\u0e21\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32",
|
||||
"Customer Issue": "\u0e1b\u0e31\u0e0d\u0e2b\u0e32\u0e02\u0e2d\u0e07\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32",
|
||||
"Customize Form": "\u0e1b\u0e23\u0e31\u0e1a\u0e41\u0e15\u0e48\u0e07\u0e23\u0e39\u0e1b\u0e41\u0e1a\u0e1a",
|
||||
"Customize Form Field": "\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e40\u0e02\u0e15\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e1f\u0e2d\u0e23\u0e4c\u0e21",
|
||||
"Deduction Type": "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e2b\u0e31\u0e01",
|
||||
"Default Home Page": "\u0e2b\u0e19\u0e49\u0e32\u0e41\u0e23\u0e01\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19",
|
||||
"DefaultValue": "\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19",
|
||||
"Delivery Note": "\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e2b\u0e15\u0e38\u0e08\u0e31\u0e14\u0e2a\u0e48\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32",
|
||||
"Delivery Note Item": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e2a\u0e48\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e2b\u0e15\u0e38",
|
||||
"Delivery Note Packing Item": "\u0e08\u0e31\u0e14\u0e2a\u0e48\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e1a\u0e23\u0e23\u0e08\u0e38\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e2b\u0e15\u0e38",
|
||||
"Department": "\u0e41\u0e1c\u0e19\u0e01",
|
||||
"Designation": "\u0e01\u0e32\u0e23\u0e41\u0e15\u0e48\u0e07\u0e15\u0e31\u0e49\u0e07",
|
||||
"DocField": "DocField",
|
||||
"DocPerm": "DocPerm",
|
||||
"DocType": "DOCTYPE",
|
||||
"DocType Label": "\u0e1b\u0e49\u0e32\u0e22 DocType",
|
||||
"DocType Mapper": "Mapper DocType",
|
||||
"Documentation": "\u0e40\u0e2d\u0e01\u0e2a\u0e32\u0e23",
|
||||
"Earning Type": "\u0e23\u0e32\u0e22\u0e44\u0e14\u0e49\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17",
|
||||
"Email Digest": "\u0e02\u0e48\u0e32\u0e27\u0e2a\u0e32\u0e23\u0e17\u0e32\u0e07\u0e2d\u0e35\u0e40\u0e21\u0e25",
|
||||
"Email Settings": "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e2d\u0e35\u0e40\u0e21\u0e25",
|
||||
"Employee": "\u0e25\u0e39\u0e01\u0e08\u0e49\u0e32\u0e07",
|
||||
"Employee Education": "\u0e01\u0e32\u0e23\u0e28\u0e36\u0e01\u0e29\u0e32\u0e01\u0e32\u0e23\u0e17\u0e33\u0e07\u0e32\u0e19\u0e02\u0e2d\u0e07\u0e1e\u0e19\u0e31\u0e01\u0e07\u0e32\u0e19",
|
||||
"Employee External Work History": "\u0e1b\u0e23\u0e30\u0e27\u0e31\u0e15\u0e34\u0e01\u0e32\u0e23\u0e17\u0e33\u0e07\u0e32\u0e19\u0e02\u0e2d\u0e07\u0e1e\u0e19\u0e31\u0e01\u0e07\u0e32\u0e19\u0e20\u0e32\u0e22\u0e19\u0e2d\u0e01",
|
||||
"Employee Internal Work History": "\u0e1b\u0e23\u0e30\u0e27\u0e31\u0e15\u0e34\u0e01\u0e32\u0e23\u0e17\u0e33\u0e07\u0e32\u0e19\u0e02\u0e2d\u0e07\u0e1e\u0e19\u0e31\u0e01\u0e07\u0e32\u0e19\u0e20\u0e32\u0e22\u0e43\u0e19",
|
||||
"Employee Training": "\u0e01\u0e32\u0e23\u0e1d\u0e36\u0e01\u0e2d\u0e1a\u0e23\u0e21\u0e1e\u0e19\u0e31\u0e01\u0e07\u0e32\u0e19",
|
||||
"Employment Type": "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e01\u0e32\u0e23\u0e08\u0e49\u0e32\u0e07\u0e07\u0e32\u0e19",
|
||||
"Event": "\u0e40\u0e2b\u0e15\u0e38\u0e01\u0e32\u0e23\u0e13\u0e4c",
|
||||
"Event Role": "\u0e1a\u0e17\u0e1a\u0e32\u0e17\u0e40\u0e2b\u0e15\u0e38\u0e01\u0e32\u0e23\u0e13\u0e4c",
|
||||
"Event User": "\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19",
|
||||
"Expense Claim": "\u0e40\u0e23\u0e35\u0e22\u0e01\u0e23\u0e49\u0e2d\u0e07\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22",
|
||||
"Expense Claim Detail": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e2a\u0e34\u0e19\u0e44\u0e2b\u0e21",
|
||||
"Expense Claim Type": "\u0e40\u0e23\u0e35\u0e22\u0e01\u0e23\u0e49\u0e2d\u0e07\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22",
|
||||
"Featured Item": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e40\u0e14\u0e48\u0e19",
|
||||
"Features Setup": "\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07\u0e2a\u0e34\u0e48\u0e07\u0e2d\u0e33\u0e19\u0e27\u0e22\u0e04\u0e27\u0e32\u0e21\u0e2a\u0e30\u0e14\u0e27\u0e01",
|
||||
"Feed": "\u0e01\u0e34\u0e19",
|
||||
"Field Mapper Detail": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e2a\u0e19\u0e32\u0e21\u0e41\u0e21\u0e1b\u0e40\u0e1b\u0e2d\u0e23\u0e4c",
|
||||
"File Data": "\u0e41\u0e1f\u0e49\u0e21\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25",
|
||||
"Fiscal Year": "\u0e1b\u0e35\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13",
|
||||
"Forum": "\u0e1f\u0e2d\u0e23\u0e31\u0e48\u0e21",
|
||||
"GL Control": "\u0e04\u0e27\u0e1a\u0e04\u0e38\u0e21 GL",
|
||||
"GL Entry": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23 GL",
|
||||
"GL Mapper": "Mapper GL",
|
||||
"GL Mapper Detail": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14 Mapper GL",
|
||||
"Global Defaults": "\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19\u0e17\u0e31\u0e48\u0e27\u0e42\u0e25\u0e01",
|
||||
"Grade": "\u0e40\u0e01\u0e23\u0e14",
|
||||
"HR": "\u0e17\u0e23\u0e31\u0e1e\u0e22\u0e32\u0e01\u0e23\u0e1a\u0e38\u0e04\u0e04\u0e25",
|
||||
"Help": "\u0e0a\u0e48\u0e27\u0e22",
|
||||
"Holiday": "\u0e27\u0e31\u0e19\u0e2b\u0e22\u0e38\u0e14",
|
||||
"Holiday Block List": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1a\u0e25\u0e47\u0e2d\u0e01\u0e27\u0e31\u0e19\u0e2b\u0e22\u0e38\u0e14",
|
||||
"Holiday Block List Allow": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1a\u0e25\u0e47\u0e2d\u0e01 Holiday \u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15\u0e43\u0e2b\u0e49",
|
||||
"Holiday Block List Date": "\u0e27\u0e31\u0e19\u0e2b\u0e22\u0e38\u0e14\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1a\u0e25\u0e47\u0e2d\u0e01",
|
||||
"Holiday List": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e27\u0e31\u0e19\u0e2b\u0e22\u0e38\u0e14",
|
||||
"Home": "\u0e1a\u0e49\u0e32\u0e19",
|
||||
"Home Control": "\u0e04\u0e27\u0e1a\u0e04\u0e38\u0e21\u0e2b\u0e19\u0e49\u0e32\u0e41\u0e23\u0e01",
|
||||
"Human Resources": "\u0e17\u0e23\u0e31\u0e1e\u0e22\u0e32\u0e01\u0e23\u0e21\u0e19\u0e38\u0e29\u0e22\u0e4c",
|
||||
"Industry Type": "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e2d\u0e38\u0e15\u0e2a\u0e32\u0e2b\u0e01\u0e23\u0e23\u0e21",
|
||||
"Installation Note": "\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e2b\u0e15\u0e38\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07",
|
||||
"Installation Note Item": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e2b\u0e15\u0e38\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07",
|
||||
"Item": "\u0e0a\u0e34\u0e49\u0e19",
|
||||
"Item Customer Detail": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23",
|
||||
"Item Group": "\u0e01\u0e25\u0e38\u0e48\u0e21\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32",
|
||||
"Item Price": "\u0e23\u0e32\u0e04\u0e32\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32",
|
||||
"Item Quality Inspection Parameter": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1e\u0e32\u0e23\u0e32\u0e21\u0e34\u0e40\u0e15\u0e2d\u0e23\u0e4c\u0e01\u0e32\u0e23\u0e15\u0e23\u0e27\u0e08\u0e2a\u0e2d\u0e1a\u0e04\u0e38\u0e13\u0e20\u0e32\u0e1e",
|
||||
"Item Reorder": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23 Reorder",
|
||||
"Item Supplier": "\u0e1c\u0e39\u0e49\u0e1c\u0e25\u0e34\u0e15\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23",
|
||||
"Item Tax": "\u0e20\u0e32\u0e29\u0e35\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32",
|
||||
"Item Website Specification": "\u0e2a\u0e40\u0e1b\u0e01\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23",
|
||||
"Job Applicant": "\u0e1c\u0e39\u0e49\u0e2a\u0e21\u0e31\u0e04\u0e23\u0e07\u0e32\u0e19",
|
||||
"Job Opening": "\u0e40\u0e1b\u0e34\u0e14\u0e07\u0e32\u0e19",
|
||||
"Jobs Email Settings": "\u0e07\u0e32\u0e19\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e2d\u0e35\u0e40\u0e21\u0e25",
|
||||
"Journal Voucher": "\u0e1a\u0e31\u0e15\u0e23\u0e01\u0e33\u0e19\u0e31\u0e25\u0e27\u0e32\u0e23\u0e2a\u0e32\u0e23",
|
||||
"Journal Voucher Detail": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e1a\u0e31\u0e15\u0e23\u0e01\u0e33\u0e19\u0e31\u0e25\u0e27\u0e32\u0e23\u0e2a\u0e32\u0e23",
|
||||
"Knowledge Base": "\u0e10\u0e32\u0e19\u0e04\u0e27\u0e32\u0e21\u0e23\u0e39\u0e49",
|
||||
"Landed Cost Item": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e25\u0e07",
|
||||
"Landed Cost Purchase Receipt": "\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e43\u0e1a\u0e40\u0e2a\u0e23\u0e47\u0e08\u0e23\u0e31\u0e1a\u0e40\u0e07\u0e34\u0e19\u0e25\u0e07\u0e0b\u0e37\u0e49\u0e2d",
|
||||
"Landed Cost Wizard": "\u0e15\u0e31\u0e27\u0e0a\u0e48\u0e27\u0e22\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e15\u0e49\u0e19\u0e17\u0e38\u0e19\u0e17\u0e35\u0e48\u0e14\u0e34\u0e19",
|
||||
"Lead": "\u0e19\u0e33",
|
||||
"Leave Allocation": "\u0e1d\u0e32\u0e01\u0e08\u0e31\u0e14\u0e2a\u0e23\u0e23",
|
||||
"Leave Application": "\u0e1d\u0e32\u0e01\u0e41\u0e2d\u0e1e\u0e25\u0e34\u0e40\u0e04\u0e0a\u0e31\u0e19",
|
||||
"Leave Block List": "\u0e1d\u0e32\u0e01\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1a\u0e25\u0e47\u0e2d\u0e01",
|
||||
"Leave Block List Allow": "\u0e1d\u0e32\u0e01\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1a\u0e25\u0e47\u0e2d\u0e01\u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15\u0e43\u0e2b\u0e49",
|
||||
"Leave Block List Date": "\u0e1d\u0e32\u0e01\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1a\u0e25\u0e47\u0e2d\u0e01",
|
||||
"Leave Control Panel": "\u0e1d\u0e32\u0e01\u0e41\u0e1c\u0e07\u0e04\u0e27\u0e1a\u0e04\u0e38\u0e21",
|
||||
"Leave Type": "\u0e1d\u0e32\u0e01\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17",
|
||||
"Letter Head": "\u0e2b\u0e31\u0e27\u0e08\u0e14\u0e2b\u0e21\u0e32\u0e22",
|
||||
"Live Chat": "Live Chat",
|
||||
"MIS Control": "\u0e04\u0e27\u0e1a\u0e04\u0e38\u0e21\u0e23\u0e30\u0e1a\u0e1a\u0e2a\u0e32\u0e23\u0e2a\u0e19\u0e40\u0e17\u0e28",
|
||||
"Maintenance Schedule": "\u0e15\u0e32\u0e23\u0e32\u0e07\u0e01\u0e32\u0e23\u0e1a\u0e33\u0e23\u0e38\u0e07\u0e23\u0e31\u0e01\u0e29\u0e32",
|
||||
"Maintenance Schedule Detail": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e15\u0e32\u0e23\u0e32\u0e07\u0e01\u0e32\u0e23\u0e1a\u0e33\u0e23\u0e38\u0e07\u0e23\u0e31\u0e01\u0e29\u0e32",
|
||||
"Maintenance Schedule Item": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e15\u0e32\u0e23\u0e32\u0e07\u0e01\u0e32\u0e23\u0e1a\u0e33\u0e23\u0e38\u0e07\u0e23\u0e31\u0e01\u0e29\u0e32",
|
||||
"Maintenance Visit": "\u0e0a\u0e21\u0e01\u0e32\u0e23\u0e1a\u0e33\u0e23\u0e38\u0e07\u0e23\u0e31\u0e01\u0e29\u0e32",
|
||||
"Maintenance Visit Purpose": "\u0e27\u0e31\u0e15\u0e16\u0e38\u0e1b\u0e23\u0e30\u0e2a\u0e07\u0e04\u0e4c\u0e0a\u0e21\u0e01\u0e32\u0e23\u0e1a\u0e33\u0e23\u0e38\u0e07\u0e23\u0e31\u0e01\u0e29\u0e32",
|
||||
"Manufacturing": "\u0e01\u0e32\u0e23\u0e1c\u0e25\u0e34\u0e15",
|
||||
"Market Segment": "\u0e2a\u0e48\u0e27\u0e19\u0e15\u0e25\u0e32\u0e14",
|
||||
"Material Request": "\u0e02\u0e2d\u0e27\u0e31\u0e2a\u0e14\u0e38",
|
||||
"Material Request Item": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e27\u0e31\u0e2a\u0e14\u0e38\u0e02\u0e2d",
|
||||
"Messages": "\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21",
|
||||
"Mode of Payment": "\u0e42\u0e2b\u0e21\u0e14\u0e02\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19",
|
||||
"Module Def": "Def \u0e42\u0e21\u0e14\u0e39\u0e25",
|
||||
"Modules": "\u0e42\u0e21\u0e14\u0e39\u0e25",
|
||||
"Multi Ledger Report Detail": "\u0e2b\u0e25\u0e32\u0e22\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e02\u0e2d\u0e07\u0e23\u0e32\u0e22\u0e07\u0e32\u0e19\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e41\u0e22\u0e01\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17",
|
||||
"My Settings": "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e02\u0e2d\u0e07\u0e09\u0e31\u0e19",
|
||||
"Naming Series": "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e0a\u0e37\u0e48\u0e2d\u0e0b\u0e35\u0e23\u0e35\u0e2a\u0e4c",
|
||||
"Naming Series Options": "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e0a\u0e37\u0e48\u0e2d\u0e15\u0e31\u0e27\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e0a\u0e38\u0e14",
|
||||
"Newsletter": "\u0e08\u0e14\u0e2b\u0e21\u0e32\u0e22\u0e02\u0e48\u0e32\u0e27",
|
||||
"Notification Control": "\u0e04\u0e27\u0e1a\u0e04\u0e38\u0e21\u0e01\u0e32\u0e23\u0e41\u0e08\u0e49\u0e07\u0e40\u0e15\u0e37\u0e2d\u0e19",
|
||||
"Opportunity": "\u0e42\u0e2d\u0e01\u0e32\u0e2a",
|
||||
"Opportunity Item": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e42\u0e2d\u0e01\u0e32\u0e2a",
|
||||
"Other Income Detail": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e23\u0e32\u0e22\u200b\u200b\u0e44\u0e14\u0e49\u0e2d\u0e37\u0e48\u0e19 \u0e46",
|
||||
"POS Setting": "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32 POS",
|
||||
"Packing Slip": "\u0e2a\u0e25\u0e34\u0e1b",
|
||||
"Packing Slip Item": "\u0e1a\u0e23\u0e23\u0e08\u0e38\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e2a\u0e25\u0e34\u0e1b",
|
||||
"Page": "\u0e2b\u0e19\u0e49\u0e32",
|
||||
"Page Role": "\u0e1a\u0e17\u0e1a\u0e32\u0e17\u0e2b\u0e19\u0e49\u0e32\u0e17\u0e35\u0e48",
|
||||
"Patch Log": "\u0e40\u0e02\u0e49\u0e32\u0e2a\u0e39\u0e48\u0e23\u0e30\u0e1a\u0e1a\u0e41\u0e1e\u0e17\u0e0a\u0e4c",
|
||||
"Payment to Invoice Matching Tool": "\u0e27\u0e34\u0e18\u0e35\u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19\u0e44\u0e1b\u0e17\u0e35\u0e48\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e21\u0e37\u0e2d\u0e01\u0e32\u0e23\u0e08\u0e31\u0e1a\u0e04\u0e39\u0e48\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49",
|
||||
"Payment to Invoice Matching Tool Detail": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e01\u0e32\u0e23\u0e08\u0e31\u0e1a\u0e04\u0e39\u0e48\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e21\u0e37\u0e2d\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49",
|
||||
"Period Closing Voucher": "\u0e1a\u0e31\u0e15\u0e23\u0e01\u0e33\u0e19\u0e31\u0e25\u0e1b\u0e34\u0e14\u0e07\u0e27\u0e14",
|
||||
"Permission Control": "\u0e01\u0e32\u0e23\u0e04\u0e27\u0e1a\u0e04\u0e38\u0e21\u0e01\u0e32\u0e23\u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15",
|
||||
"Price List": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e41\u0e08\u0e49\u0e07\u0e23\u0e32\u0e04\u0e32\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32",
|
||||
"Print Format": "\u0e1e\u0e34\u0e21\u0e1e\u0e4c\u0e23\u0e39\u0e1b\u0e41\u0e1a\u0e1a",
|
||||
"Print Heading": "\u0e1e\u0e34\u0e21\u0e1e\u0e4c\u0e2b\u0e31\u0e27\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07",
|
||||
"Product Group": "\u0e01\u0e25\u0e38\u0e48\u0e21\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32",
|
||||
"Product Settings": "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e1c\u0e25\u0e34\u0e15\u0e20\u0e31\u0e13\u0e11\u0e4c",
|
||||
"Production Order": "\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e01\u0e32\u0e23\u0e1c\u0e25\u0e34\u0e15",
|
||||
"Production Plan Item": "\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e41\u0e1c\u0e19\u0e01\u0e32\u0e23\u0e1c\u0e25\u0e34\u0e15",
|
||||
"Production Plan Sales Order": "\u0e41\u0e1c\u0e19\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e02\u0e32\u0e22",
|
||||
"Production Planning Tool": "\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e21\u0e37\u0e2d\u0e01\u0e32\u0e23\u0e27\u0e32\u0e07\u0e41\u0e1c\u0e19\u0e01\u0e32\u0e23\u0e1c\u0e25\u0e34\u0e15",
|
||||
"Products Settings": "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e1c\u0e25\u0e34\u0e15\u0e20\u0e31\u0e13\u0e11\u0e4c",
|
||||
"Profile": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14",
|
||||
"Profile Control": "\u0e04\u0e27\u0e1a\u0e04\u0e38\u0e21\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14",
|
||||
"Project": "\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23",
|
||||
"Project Activity": "\u0e01\u0e34\u0e08\u0e01\u0e23\u0e23\u0e21\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23",
|
||||
"Project Activity Update": "\u0e1b\u0e23\u0e31\u0e1a\u0e1b\u0e23\u0e38\u0e07\u0e01\u0e34\u0e08\u0e01\u0e23\u0e23\u0e21\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23",
|
||||
"Project Control": "\u0e01\u0e32\u0e23\u0e04\u0e27\u0e1a\u0e04\u0e38\u0e21\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23",
|
||||
"Project Milestone": "Milestone \u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23",
|
||||
"Projects": "\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23",
|
||||
"Property Setter": "\u0e2a\u0e16\u0e32\u0e19\u0e17\u0e35\u0e48\u0e43\u0e2b\u0e49\u0e1a\u0e23\u0e34\u0e01\u0e32\u0e23 Setter",
|
||||
"Purchase Common": "\u0e0b\u0e37\u0e49\u0e2d\u0e2a\u0e32\u0e21\u0e31\u0e0d",
|
||||
"Purchase Invoice": "\u0e0b\u0e37\u0e49\u0e2d\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49",
|
||||
"Purchase Invoice Advance": "\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e01\u0e32\u0e23\u0e0b\u0e37\u0e49\u0e2d\u0e25\u0e48\u0e27\u0e07\u0e2b\u0e19\u0e49\u0e32",
|
||||
"Purchase Invoice Item": "\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49",
|
||||
"Purchase Order": "\u0e43\u0e1a\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d",
|
||||
"Purchase Order Item": "\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d",
|
||||
"Purchase Order Item Supplied": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e17\u0e35\u0e48\u0e08\u0e33\u0e2b\u0e19\u0e48\u0e32\u0e22",
|
||||
"Purchase Receipt": "\u0e0b\u0e37\u0e49\u0e2d\u0e43\u0e1a\u0e40\u0e2a\u0e23\u0e47\u0e08\u0e23\u0e31\u0e1a\u0e40\u0e07\u0e34\u0e19",
|
||||
"Purchase Receipt Item": "\u0e0b\u0e37\u0e49\u0e2d\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e43\u0e1a\u0e40\u0e2a\u0e23\u0e47\u0e08\u0e23\u0e31\u0e1a\u0e40\u0e07\u0e34\u0e19",
|
||||
"Purchase Receipt Item Supplied": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e23\u0e31\u0e1a\u0e0b\u0e37\u0e49\u0e2d\u0e08\u0e33\u0e2b\u0e19\u0e48\u0e32\u0e22",
|
||||
"Purchase Request": "\u0e0b\u0e37\u0e49\u0e2d\u0e02\u0e2d",
|
||||
"Purchase Request Item": "\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e02\u0e2d",
|
||||
"Purchase Taxes and Charges": "\u0e20\u0e32\u0e29\u0e35\u0e0b\u0e37\u0e49\u0e2d\u0e41\u0e25\u0e30\u0e04\u0e48\u0e32\u0e1a\u0e23\u0e34\u0e01\u0e32\u0e23",
|
||||
"Purchase Taxes and Charges Master": "\u0e20\u0e32\u0e29\u0e35\u0e0b\u0e37\u0e49\u0e2d\u0e41\u0e25\u0e30\u0e1b\u0e23\u0e34\u0e0d\u0e0d\u0e32\u0e42\u0e17\u0e04\u0e48\u0e32",
|
||||
"Quality Inspection": "\u0e01\u0e32\u0e23\u0e15\u0e23\u0e27\u0e08\u0e2a\u0e2d\u0e1a\u0e04\u0e38\u0e13\u0e20\u0e32\u0e1e",
|
||||
"Quality Inspection Reading": "\u0e01\u0e32\u0e23\u0e15\u0e23\u0e27\u0e08\u0e2a\u0e2d\u0e1a\u0e04\u0e38\u0e13\u0e20\u0e32\u0e1e\u0e01\u0e32\u0e23\u0e2d\u0e48\u0e32\u0e19",
|
||||
"Question": "\u0e04\u0e33\u0e16\u0e32\u0e21",
|
||||
"Quotation": "\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32",
|
||||
"Quotation Item": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32",
|
||||
"Quotation Lost Reason": "\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32 Lost \u0e40\u0e2b\u0e15\u0e38\u0e1c\u0e25",
|
||||
"Related Page": "\u0e40\u0e1e\u0e08\u0e17\u0e35\u0e48\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e02\u0e49\u0e2d\u0e07",
|
||||
"Rename Tool": "\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19\u0e0a\u0e37\u0e48\u0e2d\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e21\u0e37\u0e2d",
|
||||
"Report": "\u0e23\u0e32\u0e22\u0e07\u0e32\u0e19",
|
||||
"Role": "\u0e1a\u0e17\u0e1a\u0e32\u0e17",
|
||||
"SMS Center": "\u0e28\u0e39\u0e19\u0e22\u0e4c SMS",
|
||||
"SMS Control": "\u0e04\u0e27\u0e1a\u0e04\u0e38\u0e21\u0e01\u0e32\u0e23\u0e2a\u0e48\u0e07 SMS",
|
||||
"SMS Log": "\u0e40\u0e02\u0e49\u0e32\u0e2a\u0e39\u0e48\u0e23\u0e30\u0e1a\u0e1a SMS",
|
||||
"SMS Parameter": "\u0e1e\u0e32\u0e23\u0e32\u0e21\u0e34\u0e40\u0e15\u0e2d\u0e23\u0e4c SMS",
|
||||
"SMS Receiver": "\u0e23\u0e31\u0e1a SMS",
|
||||
"SMS Settings": "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32 SMS",
|
||||
"Salary Manager": "Manager \u0e40\u0e07\u0e34\u0e19\u0e40\u0e14\u0e37\u0e2d\u0e19\u0e17\u0e35\u0e48\u0e15\u0e49\u0e2d\u0e07\u0e01\u0e32\u0e23",
|
||||
"Salary Slip": "\u0e2a\u0e25\u0e34\u0e1b\u0e40\u0e07\u0e34\u0e19\u0e40\u0e14\u0e37\u0e2d\u0e19",
|
||||
"Salary Slip Deduction": "\u0e2b\u0e31\u0e01\u0e40\u0e07\u0e34\u0e19\u0e40\u0e14\u0e37\u0e2d\u0e19\u0e2a\u0e25\u0e34\u0e1b",
|
||||
"Salary Slip Earning": "\u0e2a\u0e25\u0e34\u0e1b\u0e40\u0e07\u0e34\u0e19\u0e40\u0e14\u0e37\u0e2d\u0e19\u0e23\u0e32\u0e22\u0e44\u0e14\u0e49",
|
||||
"Salary Structure": "\u0e42\u0e04\u0e23\u0e07\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e40\u0e07\u0e34\u0e19\u0e40\u0e14\u0e37\u0e2d\u0e19",
|
||||
"Salary Structure Deduction": "\u0e2b\u0e31\u0e01\u0e42\u0e04\u0e23\u0e07\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e40\u0e07\u0e34\u0e19\u0e40\u0e14\u0e37\u0e2d\u0e19",
|
||||
"Salary Structure Earning": "\u0e42\u0e04\u0e23\u0e07\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e40\u0e07\u0e34\u0e19\u0e40\u0e14\u0e37\u0e2d\u0e19\u0e23\u0e32\u0e22\u0e44\u0e14\u0e49",
|
||||
"Sales BOM": "BOM \u0e02\u0e32\u0e22",
|
||||
"Sales BOM Item": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23 BOM \u0e02\u0e32\u0e22",
|
||||
"Sales Browser Control": "\u0e04\u0e27\u0e1a\u0e04\u0e38\u0e21\u0e40\u0e1a\u0e23\u0e32\u0e27\u0e4c\u0e40\u0e0b\u0e2d\u0e23\u0e4c\u0e22\u0e2d\u0e14\u0e02\u0e32\u0e22",
|
||||
"Sales Common": "\u0e02\u0e32\u0e22\u0e17\u0e31\u0e48\u0e27\u0e44\u0e1b",
|
||||
"Sales Email Settings": "\u0e02\u0e32\u0e22\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e2d\u0e35\u0e40\u0e21\u0e25",
|
||||
"Sales Invoice": "\u0e02\u0e32\u0e22\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49",
|
||||
"Sales Invoice Advance": "\u0e02\u0e32\u0e22\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e25\u0e48\u0e27\u0e07\u0e2b\u0e19\u0e49\u0e32",
|
||||
"Sales Invoice Item": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22",
|
||||
"Sales Order": "\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e02\u0e32\u0e22",
|
||||
"Sales Order Item": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22",
|
||||
"Sales Partner": "\u0e1e\u0e31\u0e19\u0e18\u0e21\u0e34\u0e15\u0e23\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22",
|
||||
"Sales Person": "\u0e04\u0e19\u0e02\u0e32\u0e22",
|
||||
"Sales Taxes and Charges": "\u0e20\u0e32\u0e29\u0e35\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22\u0e41\u0e25\u0e30\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22",
|
||||
"Sales Taxes and Charges Master": "\u0e20\u0e32\u0e29\u0e35\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22\u0e41\u0e25\u0e30\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e1b\u0e23\u0e34\u0e0d\u0e0d\u0e32\u0e42\u0e17",
|
||||
"Sales Team": "\u0e17\u0e35\u0e21\u0e02\u0e32\u0e22",
|
||||
"Sales and Purchase Return Item": "\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22\u0e41\u0e25\u0e30\u0e01\u0e32\u0e23\u0e0b\u0e37\u0e49\u0e2d\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e01\u0e25\u0e31\u0e1a",
|
||||
"Sales and Purchase Return Tool": "\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22\u0e41\u0e25\u0e30\u0e01\u0e32\u0e23\u0e0b\u0e37\u0e49\u0e2d\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e21\u0e37\u0e2d\u0e22\u0e49\u0e2d\u0e19\u0e01\u0e25\u0e31\u0e1a",
|
||||
"Sandbox": "sandbox",
|
||||
"Scheduler Log": "\u0e40\u0e02\u0e49\u0e32\u0e2a\u0e39\u0e48\u0e23\u0e30\u0e1a\u0e1a\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e15\u0e32\u0e23\u0e32\u0e07\u0e40\u0e27\u0e25\u0e32",
|
||||
"Search Criteria": "\u0e40\u0e01\u0e13\u0e11\u0e4c\u0e01\u0e32\u0e23\u0e04\u0e49\u0e19\u0e2b\u0e32",
|
||||
"Selling": "\u0e02\u0e32\u0e22",
|
||||
"Serial No": "\u0e2d\u0e19\u0e38\u0e01\u0e23\u0e21\u0e44\u0e21\u0e48\u0e21\u0e35",
|
||||
"Series Detail": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e0a\u0e38\u0e14",
|
||||
"Setup": "\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07",
|
||||
"Setup Control": "\u0e04\u0e27\u0e1a\u0e04\u0e38\u0e21\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07",
|
||||
"Shipping Address": "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e08\u0e31\u0e14\u0e2a\u0e48\u0e07",
|
||||
"State": "\u0e23\u0e31\u0e10",
|
||||
"Stock": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32",
|
||||
"Stock Entry": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32",
|
||||
"Stock Entry Detail": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e23\u0e32\u0e22\u200b\u200b\u0e01\u0e32\u0e23\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32",
|
||||
"Stock Ledger": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e41\u0e22\u0e01\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32",
|
||||
"Stock Ledger Entry": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e41\u0e22\u0e01\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17",
|
||||
"Stock Reconciliation": "\u0e2a\u0e21\u0e32\u0e19\u0e09\u0e31\u0e19\u0e17\u0e4c\u0e2a\u0e15\u0e47\u0e2d\u0e01",
|
||||
"Stock UOM Replace Utility": "\u0e2a\u0e15\u0e47\u0e2d\u0e01\u0e22\u0e39\u0e17\u0e34\u0e25\u0e34\u0e15\u0e35\u0e49\u0e41\u0e17\u0e19\u0e17\u0e35\u0e48 UOM",
|
||||
"Style Settings": "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e25\u0e31\u0e01\u0e29\u0e13\u0e30",
|
||||
"Supplier": "\u0e1c\u0e39\u0e49\u0e08\u0e31\u0e14\u0e08\u0e33\u0e2b\u0e19\u0e48\u0e32\u0e22",
|
||||
"Supplier Quotation": "\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32\u0e02\u0e2d\u0e07\u0e1c\u0e39\u0e49\u0e1c\u0e25\u0e34\u0e15",
|
||||
"Supplier Quotation Item": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32\u0e02\u0e2d\u0e07\u0e1c\u0e39\u0e49\u0e1c\u0e25\u0e34\u0e15",
|
||||
"Supplier Type": "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e1c\u0e39\u0e49\u0e1c\u0e25\u0e34\u0e15",
|
||||
"Support": "\u0e2a\u0e19\u0e31\u0e1a\u0e2a\u0e19\u0e38\u0e19",
|
||||
"Support Ticket": "\u0e15\u0e31\u0e4b\u0e27\u0e2a\u0e19\u0e31\u0e1a\u0e2a\u0e19\u0e38\u0e19",
|
||||
"System Console": "\u0e23\u0e30\u0e1a\u0e1a\u0e04\u0e2d\u0e19\u0e42\u0e0b\u0e25",
|
||||
"Table Mapper Detail": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e15\u0e32\u0e23\u0e32\u0e07\u0e41\u0e21\u0e1b\u0e40\u0e1b\u0e2d\u0e23\u0e4c",
|
||||
"Tag": "\u0e41\u0e17\u0e47\u0e01",
|
||||
"Target Detail": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e40\u0e1b\u0e49\u0e32\u0e2b\u0e21\u0e32\u0e22",
|
||||
"Task": "\u0e07\u0e32\u0e19",
|
||||
"Terms and Conditions": "\u0e02\u0e49\u0e2d\u0e15\u0e01\u0e25\u0e07\u0e41\u0e25\u0e30\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02",
|
||||
"Territory": "\u0e2d\u0e32\u0e13\u0e32\u0e40\u0e02\u0e15",
|
||||
"Timesheet": "timesheet",
|
||||
"Timesheet Detail": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14 Timesheet",
|
||||
"To Do": "\u0e2a\u0e16\u0e32\u0e19\u0e17\u0e35\u0e48\u0e17\u0e48\u0e2d\u0e07\u0e40\u0e17\u0e35\u0e48\u0e22\u0e27",
|
||||
"ToDo": "\u0e2a\u0e34\u0e48\u0e07\u0e17\u0e35\u0e48\u0e15\u0e49\u0e2d\u0e07\u0e17\u0e33",
|
||||
"Top Bar Item": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23 Bar \u0e2a\u0e16\u0e32\u0e19\u0e17\u0e35\u0e48\u0e22\u0e2d\u0e14",
|
||||
"Trash Control": "\u0e04\u0e27\u0e1a\u0e04\u0e38\u0e21\u0e16\u0e31\u0e07\u0e02\u0e22\u0e30",
|
||||
"Trend Analyzer Control": "\u0e04\u0e27\u0e1a\u0e04\u0e38\u0e21\u0e27\u0e34\u0e40\u0e04\u0e23\u0e32\u0e30\u0e2b\u0e4c\u0e41\u0e19\u0e27\u0e42\u0e19\u0e49\u0e21",
|
||||
"UOM": "UOM",
|
||||
"UOM Conversion Detail": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e01\u0e32\u0e23\u0e41\u0e1b\u0e25\u0e07 UOM",
|
||||
"Unread Messages": "\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e2d\u0e48\u0e32\u0e19\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21",
|
||||
"Update Delivery Date": "\u0e2d\u0e31\u0e1e\u0e40\u0e14\u0e17\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e2a\u0e48\u0e07",
|
||||
"UserRole": "UserRole",
|
||||
"Utilities": "\u0e22\u0e39\u0e17\u0e34\u0e25\u0e34\u0e15\u0e35\u0e49",
|
||||
"Valuation Control": "\u0e04\u0e27\u0e1a\u0e04\u0e38\u0e21\u0e01\u0e32\u0e23\u0e1b\u0e23\u0e30\u0e40\u0e21\u0e34\u0e19",
|
||||
"Warehouse": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32",
|
||||
"Warehouse Type": "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32",
|
||||
"Warehouse User": "\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32",
|
||||
"Web Page": "\u0e2b\u0e19\u0e49\u0e32\u0e40\u0e27\u0e47\u0e1a",
|
||||
"Website": "\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c",
|
||||
"Website Item Group": "\u0e01\u0e25\u0e38\u0e48\u0e21\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c",
|
||||
"Website Product Category": "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c",
|
||||
"Website Script": "\u0e2a\u0e04\u0e23\u0e34\u0e1b\u0e15\u0e4c\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c",
|
||||
"Website Settings": "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c",
|
||||
"Website Slideshow": "\u0e2a\u0e44\u0e25\u0e14\u0e4c\u0e42\u0e0a\u0e27\u0e4c\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c",
|
||||
"Website Slideshow Item": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e2a\u0e44\u0e25\u0e14\u0e4c\u0e42\u0e0a\u0e27\u0e4c\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c",
|
||||
"Workflow": "\u0e40\u0e27\u0e34\u0e23\u0e4c\u0e01\u0e42\u0e1f\u0e25\u0e27\u0e4c",
|
||||
"Workflow Action": "\u0e01\u0e32\u0e23\u0e01\u0e23\u0e30\u0e17\u0e33\u0e40\u0e27\u0e34\u0e23\u0e4c\u0e01\u0e42\u0e1f\u0e25\u0e27\u0e4c",
|
||||
"Workflow Action Detail": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e01\u0e32\u0e23\u0e14\u0e33\u0e40\u0e19\u0e34\u0e19\u0e01\u0e32\u0e23\u0e02\u0e31\u0e49\u0e19\u0e15\u0e2d\u0e19\u0e01\u0e32\u0e23\u0e17\u0e33\u0e07\u0e32\u0e19",
|
||||
"Workflow Document State": "\u0e23\u0e31\u0e10\u0e40\u0e2d\u0e01\u0e2a\u0e32\u0e23\u0e40\u0e27\u0e34\u0e23\u0e4c\u0e01\u0e42\u0e1f\u0e25\u0e27\u0e4c",
|
||||
"Workflow Engine": "\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e22\u0e19\u0e15\u0e4c\u0e40\u0e27\u0e34\u0e23\u0e4c\u0e01\u0e42\u0e1f\u0e25\u0e27\u0e4c",
|
||||
"Workflow Rule": "\u0e01\u0e0e\u0e40\u0e27\u0e34\u0e23\u0e4c\u0e01\u0e42\u0e1f\u0e25\u0e27\u0e4c",
|
||||
"Workflow Rule Detail": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e01\u0e0e\u0e40\u0e27\u0e34\u0e23\u0e4c\u0e01\u0e42\u0e1f\u0e25\u0e27\u0e4c",
|
||||
"Workflow State": "\u0e23\u0e31\u0e10\u0e40\u0e27\u0e34\u0e23\u0e4c\u0e01\u0e42\u0e1f\u0e25\u0e27\u0e4c",
|
||||
"Workflow Transition": "\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19\u0e40\u0e27\u0e34\u0e23\u0e4c\u0e01\u0e42\u0e1f\u0e25\u0e27\u0e4c",
|
||||
"Workstation": "\u0e40\u0e27\u0e34\u0e23\u0e4c\u0e04\u0e2a\u0e40\u0e15\u0e0a\u0e31\u0e48"
|
||||
}
|
||||
@@ -4,7 +4,6 @@ h1, h2, h3, h4, h5 {
|
||||
|
||||
body {
|
||||
font-family: Arial, Helvetica, sans-serif;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
span, div, td, input, textarea, button, select {
|
||||
@@ -20,28 +19,6 @@ span, div, td, input, textarea, button, select {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.navbar-new-comments {
|
||||
margin: -3px 0px;
|
||||
padding: 2px;
|
||||
min-width: 20px;
|
||||
text-align: center;
|
||||
display: inline-block;
|
||||
border-radius: 2px;
|
||||
color: #999999;
|
||||
background-color: #333131;
|
||||
}
|
||||
|
||||
.navbar-new-comments:hover,
|
||||
.navbar-new-comments:active,
|
||||
.navbar-new-comments:focus {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.navbar-new-comments-true {
|
||||
color: #fff;
|
||||
background-color: #B00D07;
|
||||
}
|
||||
|
||||
/*extra size menus for recent*/
|
||||
.dropdown-menu#toolbar-recent, .dropdown-menu#toolbar-options, .dropdown-menu#toolbar-help{
|
||||
min-width: 160px !important;
|
||||
@@ -60,4 +37,11 @@ span, div, td, input, textarea, button, select {
|
||||
.show-all-reports {
|
||||
margin-top: 5px;
|
||||
font-size: 11px;
|
||||
}
|
||||
|
||||
/* toolbar */
|
||||
.toolbar-splash {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
margin: -11px auto;
|
||||
}
|
||||
@@ -35,15 +35,6 @@ erpnext.startup.start = function() {
|
||||
// setup toolbar
|
||||
erpnext.toolbar.setup();
|
||||
|
||||
// set interval for updates
|
||||
erpnext.startup.set_periodic_updates();
|
||||
|
||||
// border to the body
|
||||
// ------------------
|
||||
$('footer').html('<div class="web-footer erpnext-footer">\
|
||||
<a href="#attributions">Attributions and License</a> | \
|
||||
<a href="#latest-updates"><b>Latest Updates</b></a></div>');
|
||||
|
||||
// complete registration
|
||||
if(in_list(user_roles,'System Manager') && (wn.boot.setup_complete=='No')) {
|
||||
wn.require("app/js/complete_setup.js");
|
||||
@@ -73,67 +64,6 @@ erpnext.startup.start = function() {
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// ========== Update Messages ============
|
||||
erpnext.update_messages = function(reset) {
|
||||
// Updates Team Messages
|
||||
|
||||
if(inList(['Guest'], user) || !wn.session_alive) { return; }
|
||||
|
||||
if(!reset) {
|
||||
var set_messages = function(r) {
|
||||
if(!r.exc) {
|
||||
// This function is defined in toolbar.js
|
||||
erpnext.toolbar.set_new_comments(r.message.unread_messages);
|
||||
|
||||
var show_in_circle = function(parent_id, msg) {
|
||||
var parent = $('#'+parent_id);
|
||||
if(parent) {
|
||||
if(msg) {
|
||||
parent.find('span:first').text(msg);
|
||||
parent.toggle(true);
|
||||
} else {
|
||||
parent.toggle(false);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
show_in_circle('unread_messages', r.message.unread_messages);
|
||||
show_in_circle('open_support_tickets', r.message.open_support_tickets);
|
||||
show_in_circle('things_todo', r.message.things_todo);
|
||||
show_in_circle('todays_events', r.message.todays_events);
|
||||
show_in_circle('open_tasks', r.message.open_tasks);
|
||||
show_in_circle('unanswered_questions', r.message.unanswered_questions);
|
||||
show_in_circle('open_leads', r.message.open_leads);
|
||||
|
||||
} else {
|
||||
clearInterval(wn.updates.id);
|
||||
}
|
||||
}
|
||||
|
||||
wn.call({
|
||||
method: 'startup.startup.get_global_status_messages',
|
||||
type:"GET",
|
||||
callback: set_messages
|
||||
});
|
||||
|
||||
} else {
|
||||
erpnext.toolbar.set_new_comments(0);
|
||||
$('#unread_messages').toggle(false);
|
||||
}
|
||||
}
|
||||
|
||||
erpnext.startup.set_periodic_updates = function() {
|
||||
// Set interval for periodic updates of team messages
|
||||
wn.updates = {};
|
||||
|
||||
if(wn.updates.id) {
|
||||
clearInterval(wn.updates.id);
|
||||
}
|
||||
|
||||
wn.updates.id = setInterval(erpnext.update_messages, 60000);
|
||||
}
|
||||
|
||||
erpnext.hide_naming_series = function() {
|
||||
if(cur_frm.fields_dict.naming_series) {
|
||||
cur_frm.toggle_display("naming_series", cur_frm.doc.__islocal?true:false);
|
||||
@@ -141,21 +71,19 @@ erpnext.hide_naming_series = function() {
|
||||
}
|
||||
|
||||
erpnext.setup_mousetrap = function() {
|
||||
Mousetrap.bind(["command+g", "ctrl+g"], function() {
|
||||
$(document).keydown("meta+g ctrl+g", function(e) {
|
||||
wn.ui.toolbar.search.show();
|
||||
return false;
|
||||
});
|
||||
|
||||
Mousetrap.bind(["command+s", "ctrl+s"], function() {
|
||||
if(cur_frm && !cur_frm.save_disabled && cint(cur_frm.doc.docstatus)===0)
|
||||
cur_frm.save();
|
||||
else if(cur_frm && !cur_frm.save_disabled && cint(cur_frm.doc.docstatus)===1
|
||||
&& cur_frm.doc.__unsaved)
|
||||
cur_frm.frm_head.appframe.buttons['Update'].click();
|
||||
|
||||
$(document).keydown("meta+s ctrl+s", function(e) {
|
||||
if(cur_frm) {
|
||||
cur_frm.save_or_update();
|
||||
}
|
||||
else if(wn.container.page.save_action)
|
||||
wn.container.page.save_action();
|
||||
return false;
|
||||
});
|
||||
})
|
||||
}
|
||||
|
||||
// start
|
||||
|
||||
@@ -18,76 +18,23 @@
|
||||
wn.provide('erpnext.toolbar');
|
||||
|
||||
erpnext.toolbar.setup = function() {
|
||||
// modules
|
||||
erpnext.toolbar.add_modules();
|
||||
|
||||
// profile
|
||||
$('#toolbar-user').append('<li><a href="#Form/Profile/'+user+'">'
|
||||
var $user = $('#toolbar-user');
|
||||
$user.append('<li><a href="#Form/Profile/'+user+'">'
|
||||
+wn._("My Settings")+'...</a></li>');
|
||||
|
||||
$('.navbar .pull-right').append('\
|
||||
<li><a href="#!messages" title="'+wn._('Unread Messages')
|
||||
+'"><span class="navbar-new-comments"></span></a></li>');
|
||||
|
||||
// help
|
||||
$('.navbar .pull-right').prepend('<li class="dropdown">\
|
||||
<a class="dropdown-toggle" data-toggle="dropdown" href="#" \
|
||||
onclick="return false;">'+wn._('Help')+'<b class="caret"></b></a>\
|
||||
<ul class="dropdown-menu" id="toolbar-help">\
|
||||
</ul></li>')
|
||||
|
||||
$('#toolbar-help').append('<li><a href="https://erpnext.com/manual" target="_blank">'
|
||||
$user.append('<li class="divider"></li>');
|
||||
$user.append('<li><a href="https://erpnext.com/manual" target="_blank">'
|
||||
+wn._('Documentation')+'</a></li>')
|
||||
|
||||
$('#toolbar-help').append('<li><a href="http://groups.google.com/group/erpnext-user-forum" target="_blank">'
|
||||
$user.append('<li><a href="http://groups.google.com/group/erpnext-user-forum" target="_blank">'
|
||||
+wn._('Forum')+'</a></li>')
|
||||
|
||||
$('#toolbar-help').append('<li><a href="http://www.providesupport.com?messenger=iwebnotes" target="_blank">\
|
||||
$user.append('<li><a href="http://www.providesupport.com?messenger=iwebnotes" target="_blank">\
|
||||
'+wn._('Live Chat')+'</a></li>')
|
||||
|
||||
|
||||
erpnext.toolbar.set_new_comments();
|
||||
}
|
||||
|
||||
erpnext.toolbar.add_modules = function() {
|
||||
$('<li class="dropdown">\
|
||||
<a class="dropdown-toggle" data-toggle="dropdown" href="#"\
|
||||
title="'+wn._("Modules")+'"\
|
||||
onclick="return false;"><i class="icon-th"></i></a>\
|
||||
<ul class="dropdown-menu modules">\
|
||||
</ul>\
|
||||
</li>').prependTo('.navbar .nav:first');
|
||||
|
||||
var modules_list = wn.user.get_desktop_items().sort();
|
||||
|
||||
var _get_list_item = function(m) {
|
||||
args = {
|
||||
module: m,
|
||||
module_page: wn.modules[m].link,
|
||||
module_label: wn._(wn.modules[m].label || m),
|
||||
icon: wn.modules[m].icon
|
||||
}
|
||||
|
||||
return repl('<li><a href="#!%(module_page)s" \
|
||||
data-module="%(module)s"><i class="%(icon)s" style="display: inline-block; \
|
||||
width: 21px; margin-top: -2px; margin-left: -7px;"></i>\
|
||||
%(module_label)s</a></li>', args);
|
||||
}
|
||||
|
||||
// add to dropdown
|
||||
$.each(modules_list,function(i, m) {
|
||||
if(m!='Setup') {
|
||||
$('.navbar .modules').append(_get_list_item(m));
|
||||
}
|
||||
})
|
||||
|
||||
// setup for system manager
|
||||
if(user_roles.indexOf("System Manager")!=-1) {
|
||||
$('.navbar .modules').append('<li class="divider">' + _get_list_item("Setup"));
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
erpnext.toolbar.set_new_comments = function(new_comments) {
|
||||
return;
|
||||
var navbar_nc = $('.navbar-new-comments');
|
||||
if(cint(new_comments)) {
|
||||
navbar_nc.addClass('navbar-new-comments-true')
|
||||
|
||||
572
public/js/transaction.js
Normal file
572
public/js/transaction.js
Normal file
@@ -0,0 +1,572 @@
|
||||
// ERPNext - web based ERP (http://erpnext.com)
|
||||
// Copyright (C) 2012 Web Notes Technologies Pvt Ltd
|
||||
//
|
||||
// This program is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// This program is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
wn.provide("erpnext");
|
||||
|
||||
erpnext.TransactionController = wn.ui.form.Controller.extend({
|
||||
onload: function() {
|
||||
if(this.frm.doc.__islocal) {
|
||||
var me = this,
|
||||
today = get_today(),
|
||||
currency = wn.defaults.get_default("currency");
|
||||
|
||||
$.each({
|
||||
posting_date: today,
|
||||
due_date: today,
|
||||
transaction_date: today,
|
||||
currency: currency,
|
||||
price_list_currency: currency,
|
||||
status: "Draft",
|
||||
company: wn.defaults.get_default("company"),
|
||||
fiscal_year: wn.defaults.get_default("fiscal_year"),
|
||||
is_subcontracted: "No",
|
||||
conversion_rate: 1.0,
|
||||
plc_conversion_rate: 1.0
|
||||
}, function(fieldname, value) {
|
||||
if(me.frm.fields_dict[fieldname] && !me.frm.doc[fieldname])
|
||||
me.frm.set_value(fieldname, value);
|
||||
});
|
||||
}
|
||||
},
|
||||
|
||||
refresh: function() {
|
||||
this.frm.clear_custom_buttons();
|
||||
erpnext.hide_naming_series();
|
||||
this.show_item_wise_taxes();
|
||||
this.frm.fields_dict.currency ? this.currency() : this.set_dynamic_labels();
|
||||
},
|
||||
|
||||
onload_post_render: function() {
|
||||
if(this.frm.doc.__islocal && this.frm.doc.company) {
|
||||
var me = this;
|
||||
this.frm.call({
|
||||
doc: this.frm.doc,
|
||||
method: "onload_post_render",
|
||||
freeze: true,
|
||||
callback: function(r) {
|
||||
// remove this call when using client side mapper
|
||||
me.set_default_values();
|
||||
me.frm.refresh();
|
||||
}
|
||||
});
|
||||
}
|
||||
},
|
||||
|
||||
validate: function() {
|
||||
this.calculate_taxes_and_totals();
|
||||
},
|
||||
|
||||
company: function() {
|
||||
if(this.frm.doc.company && this.frm.fields_dict.currency) {
|
||||
var me = this;
|
||||
var company_currency = this.get_company_currency();
|
||||
$.each(["currency", "price_list_currency"], function(i, fieldname) {
|
||||
if(!me.doc[fieldname]) {
|
||||
me.frm.set_value(fieldname, company_currency);
|
||||
me[fieldname]();
|
||||
}
|
||||
});
|
||||
}
|
||||
},
|
||||
|
||||
get_company_currency: function() {
|
||||
return erpnext.get_currency(this.frm.doc.company);
|
||||
},
|
||||
|
||||
currency: function() {
|
||||
var me = this;
|
||||
this.set_dynamic_labels();
|
||||
|
||||
var company_currency = this.get_company_currency();
|
||||
if(this.frm.doc.currency !== company_currency) {
|
||||
this.get_exchange_rate(this.frm.doc.currency, company_currency,
|
||||
function(exchange_rate) {
|
||||
if(exchange_rate) {
|
||||
me.frm.set_value("conversion_rate", exchange_rate);
|
||||
me.conversion_rate();
|
||||
}
|
||||
});
|
||||
} else {
|
||||
this.conversion_rate();
|
||||
}
|
||||
},
|
||||
|
||||
conversion_rate: function() {
|
||||
if(this.frm.doc.currency === this.get_company_currency() &&
|
||||
this.frm.doc.conversion_rate !== 1.0) {
|
||||
this.frm.set_value("conversion_rate", 1.0);
|
||||
} else if(this.frm.doc.currency === this.frm.doc.price_list_currency &&
|
||||
this.frm.doc.plc_conversion_rate !== this.frm.doc.conversion_rate) {
|
||||
this.frm.set_value("plc_conversion_rate", this.frm.doc.conversion_rate);
|
||||
}
|
||||
|
||||
this.calculate_taxes_and_totals();
|
||||
},
|
||||
|
||||
price_list_name: function(buying_or_selling) {
|
||||
var me = this;
|
||||
if(this.frm.doc.price_list_name) {
|
||||
this.frm.call({
|
||||
method: "setup.utils.get_price_list_currency",
|
||||
args: { args: {
|
||||
price_list_name: this.frm.doc.price_list_name,
|
||||
buying_or_selling: buying_or_selling
|
||||
}},
|
||||
callback: function(r) {
|
||||
if(!r.exc) {
|
||||
me.price_list_currency();
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
},
|
||||
|
||||
get_exchange_rate: function(from_currency, to_currency, callback) {
|
||||
var exchange_name = from_currency + "-" + to_currency;
|
||||
wn.model.with_doc("Currency Exchange", exchange_name, function(name) {
|
||||
var exchange_doc = wn.model.get_doc("Currency Exchange", exchange_name);
|
||||
callback(exchange_doc ? flt(exchange_doc.exchange_rate)) : 0);
|
||||
});
|
||||
},
|
||||
|
||||
price_list_currency: function() {
|
||||
this.set_dynamic_labels();
|
||||
|
||||
var company_currency = this.get_company_currency();
|
||||
if(this.frm.doc.price_list_currency !== company_currency) {
|
||||
this.get_exchange_rate(this.frm.doc.price_list_currency, company_currency,
|
||||
function(exchange_rate) {
|
||||
if(exchange_rate) {
|
||||
me.frm.set_value("price_list_currency", exchange_rate);
|
||||
me.plc_conversion_rate();
|
||||
}
|
||||
});
|
||||
} else {
|
||||
this.plc_conversion_rate();
|
||||
}
|
||||
},
|
||||
|
||||
plc_conversion_rate: function() {
|
||||
if(this.frm.doc.price_list_currency === this.get_company_currency()) {
|
||||
this.frm.set_value("plc_conversion_rate", 1.0);
|
||||
} else if(this.frm.doc.price_list_currency === this.frm.doc.currency) {
|
||||
this.frm.set_value("conversion_rate", this.frm.doc.plc_conversion_rate);
|
||||
this.calculate_taxes_and_totals();
|
||||
}
|
||||
},
|
||||
|
||||
qty: function(doc, cdt, cdn) {
|
||||
this.calculate_taxes_and_totals();
|
||||
},
|
||||
|
||||
tax_rate: function(doc, cdt, cdn) {
|
||||
this.calculate_taxes_and_totals();
|
||||
},
|
||||
|
||||
row_id: function(doc, cdt, cdn) {
|
||||
var tax = wn.model.get_doc(cdt, cdn);
|
||||
try {
|
||||
this.validate_on_previous_row(tax);
|
||||
this.calculate_taxes_and_totals();
|
||||
} catch(e) {
|
||||
tax.row_id = null;
|
||||
refresh_field("row_id", tax.name, tax.parentfield);
|
||||
throw e;
|
||||
}
|
||||
},
|
||||
|
||||
set_dynamic_labels: function() {
|
||||
// What TODO? should we make price list system non-mandatory?
|
||||
this.frm.toggle_reqd("plc_conversion_rate",
|
||||
!!(this.frm.doc.price_list_name && this.frm.doc.price_list_currency));
|
||||
|
||||
var company_currency = this.get_company_currency();
|
||||
this.change_form_labels(company_currency);
|
||||
this.change_grid_labels(company_currency);
|
||||
},
|
||||
|
||||
recalculate: function() {
|
||||
this.calculate_taxes_and_totals();
|
||||
},
|
||||
|
||||
recalculate_values: function() {
|
||||
this.calculate_taxes_and_totals();
|
||||
},
|
||||
|
||||
calculate_charges: function() {
|
||||
this.calculate_taxes_and_totals();
|
||||
},
|
||||
|
||||
included_in_print_rate: function(doc, cdt, cdn) {
|
||||
var tax = wn.model.get_doc(cdt, cdn);
|
||||
try {
|
||||
this.validate_on_previous_row(tax);
|
||||
this.validate_inclusive_tax(tax);
|
||||
this.calculate_taxes_and_totals();
|
||||
} catch(e) {
|
||||
tax.included_in_print_rate = 0;
|
||||
refresh_field("included_in_print_rate", tax.name, tax.parentfield);
|
||||
throw e;
|
||||
}
|
||||
},
|
||||
|
||||
validate_on_previous_row: function(tax) {
|
||||
// validate if a valid row id is mentioned in case of
|
||||
// On Previous Row Amount and On Previous Row Total
|
||||
if((["On Previous Row Amount", "On Previous Row Total"].indexOf(tax.charge_type) != -1) &&
|
||||
(!tax.row_id || cint(tax.row_id) >= tax.idx)) {
|
||||
var msg = repl(wn._("Row") + " # %(idx)s [%(doctype)s]: " +
|
||||
wn._("Please specify a valid") + " %(row_id_label)s", {
|
||||
idx: tax.idx,
|
||||
doctype: tax.doctype,
|
||||
row_id_label: wn.meta.get_label(tax.doctype, "row_id", tax.name)
|
||||
});
|
||||
msgprint(msg);
|
||||
throw msg;
|
||||
}
|
||||
},
|
||||
|
||||
validate_inclusive_tax: function(tax) {
|
||||
if(!this.frm.tax_doclist) this.frm.tax_doclist = this.get_tax_doclist();
|
||||
|
||||
var actual_type_error = function() {
|
||||
var msg = repl(wn._("For row") + " # %(idx)s [%(doctype)s]: " +
|
||||
"%(charge_type_label)s = \"%(charge_type)s\" " +
|
||||
wn._("cannot be included in Item's rate"), {
|
||||
idx: tax.idx,
|
||||
doctype: tax.doctype,
|
||||
charge_type_label: wn.meta.get_label(tax.doctype, "charge_type", tax.name),
|
||||
charge_type: tax.charge_type
|
||||
});
|
||||
msgprint(msg);
|
||||
throw msg;
|
||||
};
|
||||
|
||||
var on_previous_row_error = function(row_range) {
|
||||
var msg = repl(wn._("For row") + " # %(idx)s [%(doctype)s]: " +
|
||||
wn._("to be included in Item's rate, it is required that: ") +
|
||||
" [" + wn._("Row") + " # %(row_range)s] " + wn._("also be included in Item's rate"), {
|
||||
idx: tax.idx,
|
||||
doctype: tax.doctype,
|
||||
charge_type_label: wn.meta.get_label(tax.doctype, "charge_type", tax.name),
|
||||
charge_type: tax.charge_type,
|
||||
inclusive_label: wn.meta.get_label(tax.doctype, "included_in_print_rate", tax.name),
|
||||
row_range: row_range,
|
||||
});
|
||||
|
||||
msgprint(msg);
|
||||
throw msg;
|
||||
};
|
||||
|
||||
if(cint(tax.included_in_print_rate)) {
|
||||
if(tax.charge_type == "Actual") {
|
||||
// inclusive tax cannot be of type Actual
|
||||
actual_type_error();
|
||||
} else if(tax.charge_type == "On Previous Row Amount" &&
|
||||
!cint(this.frm.tax_doclist[tax.row_id - 1].included_in_print_rate)) {
|
||||
// referred row should also be an inclusive tax
|
||||
on_previous_row_error(tax.row_id);
|
||||
} else if(tax.charge_type == "On Previous Row Total") {
|
||||
var taxes_not_included = $.map(this.frm.tax_doclist.slice(0, tax.row_id),
|
||||
function(t) { return cint(t.included_in_print_rate) ? null : t; });
|
||||
if(taxes_not_included.length > 0) {
|
||||
// all rows above this tax should be inclusive
|
||||
on_previous_row_error(tax.row_id == 1 ? "1" : "1 - " + tax.row_id);
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
_load_item_tax_rate: function(item_tax_rate) {
|
||||
return item_tax_rate ? JSON.parse(item_tax_rate) : {};
|
||||
},
|
||||
|
||||
_get_tax_rate: function(tax, item_tax_map) {
|
||||
return (keys(item_tax_map).indexOf(tax.account_head) != -1) ?
|
||||
flt(item_tax_map[tax.account_head], precision("rate", tax)) :
|
||||
tax.rate;
|
||||
},
|
||||
|
||||
get_item_wise_taxes_html: function() {
|
||||
var item_tax = {};
|
||||
var tax_accounts = [];
|
||||
var company_currency = this.get_company_currency();
|
||||
|
||||
$.each(this.get_tax_doclist(), function(i, tax) {
|
||||
var tax_amount_precision = precision("tax_amount", tax);
|
||||
var tax_rate_precision = precision("rate", tax);
|
||||
$.each(JSON.parse(tax.item_wise_tax_detail || '{}'),
|
||||
function(item_code, tax_data) {
|
||||
if(!item_tax[item_code]) item_tax[item_code] = {};
|
||||
if($.isArray(tax_data)) {
|
||||
var tax_rate = tax_data[0] == null ? "" : (flt(tax_data[0], tax_rate_precision) + "%"),
|
||||
tax_amount = format_currency(flt(tax_data[1], tax_amount_precision), company_currency);
|
||||
|
||||
item_tax[item_code][tax.account_head] = [tax_rate, tax_amount];
|
||||
} else {
|
||||
item_tax[item_code][tax.account_head] = [flt(tax_data, tax_rate_precision) + "%", ""];
|
||||
}
|
||||
});
|
||||
tax_accounts.push(tax.account_head);
|
||||
});
|
||||
|
||||
var headings = $.map([wn._("Item Name")].concat(tax_accounts),
|
||||
function(head) { return '<th style="min-width: 100px;">' + (head || "") + "</th>" }).join("\n");
|
||||
|
||||
var rows = $.map(this.get_item_doclist(), function(item) {
|
||||
var item_tax_record = item_tax[item.item_code || item.item_name];
|
||||
if(!item_tax_record) { return null; }
|
||||
return repl("<tr><td>%(item_name)s</td>%(taxes)s</tr>", {
|
||||
item_name: item.item_name,
|
||||
taxes: $.map(tax_accounts, function(head) {
|
||||
return "<td>(" + item_tax_record[head][0] + ") " + item_tax_record[head][1] + "</td>"
|
||||
}).join("\n")
|
||||
});
|
||||
}).join("\n");
|
||||
|
||||
if(!rows) return "";
|
||||
return '<div style="overflow-x: scroll;"><table class="table table-bordered table-hover">\
|
||||
<thead><tr>' + headings + '</tr></thead> \
|
||||
<tbody>' + rows + '</tbody> \
|
||||
</table></div>';
|
||||
},
|
||||
|
||||
set_default_values: function() {
|
||||
$.each(wn.model.get_doclist(this.frm.doctype, this.frm.docname), function(i, doc) {
|
||||
var updated = wn.model.set_default_values(doc);
|
||||
if(doc.parentfield) {
|
||||
refresh_field(doc.parentfield);
|
||||
} else {
|
||||
refresh_field(updated);
|
||||
}
|
||||
});
|
||||
},
|
||||
|
||||
_validate_before_fetch: function(fieldname) {
|
||||
var me = this;
|
||||
if(!me.frm.doc[fieldname]) {
|
||||
return (wn._("Please specify") + ": " +
|
||||
wn.meta.get_label(me.frm.doc.doctype, fieldname, me.frm.doc.name) +
|
||||
". " + wn._("It is needed to fetch Item Details."));
|
||||
}
|
||||
return null;
|
||||
},
|
||||
|
||||
validate_company_and_party: function(party_field) {
|
||||
var me = this;
|
||||
var valid = true;
|
||||
var msg = "";
|
||||
$.each(["company", party_field], function(i, fieldname) {
|
||||
var msg_for_fieldname = me._validate_before_fetch(fieldname);
|
||||
if(msg_for_fieldname) {
|
||||
msgprint(msg_for_fieldname);
|
||||
valid = false;
|
||||
}
|
||||
});
|
||||
return valid;
|
||||
},
|
||||
|
||||
get_item_doclist: function() {
|
||||
return wn.model.get_doclist(this.frm.doc.doctype, this.frm.doc.name,
|
||||
{parentfield: this.fname});
|
||||
},
|
||||
|
||||
get_tax_doclist: function() {
|
||||
return wn.model.get_doclist(this.frm.doc.doctype, this.frm.doc.name,
|
||||
{parentfield: this.other_fname});
|
||||
},
|
||||
|
||||
validate_conversion_rate: function() {
|
||||
this.frm.doc.conversion_rate = flt(this.frm.doc.conversion_rate, precision("conversion_rate"));
|
||||
var conversion_rate_label = wn.meta.get_label(this.frm.doc.doctype, "conversion_rate",
|
||||
this.frm.doc.name);
|
||||
|
||||
if(this.frm.doc.conversion_rate == 0) {
|
||||
wn.throw(wn._(conversion_rate_label) + " " + wn._("cannot be 0"));
|
||||
}
|
||||
|
||||
var company_currency = this.get_company_currency();
|
||||
var valid_conversion_rate = this.frm.doc.conversion_rate ?
|
||||
((this.frm.doc.currency == company_currency && this.frm.doc.conversion_rate == 1.0) ||
|
||||
(this.frm.doc.currency != company_currency && this.frm.doc.conversion_rate != 1.0)) :
|
||||
false;
|
||||
|
||||
if(!valid_conversion_rate) {
|
||||
wn.throw(wn._("Please enter valid") + " " + wn._(conversion_rate_label) +
|
||||
" 1 " + this.frm.doc.currency + " = [?] " + company_currency);
|
||||
}
|
||||
},
|
||||
|
||||
calculate_taxes_and_totals: function() {
|
||||
this.validate_conversion_rate();
|
||||
this.frm.item_doclist = this.get_item_doclist();
|
||||
this.frm.tax_doclist = this.get_tax_doclist();
|
||||
|
||||
this.calculate_item_values();
|
||||
this.initialize_taxes();
|
||||
this.determine_exclusive_rate && this.determine_exclusive_rate();
|
||||
this.calculate_net_total();
|
||||
this.calculate_taxes();
|
||||
this.calculate_totals();
|
||||
this._cleanup();
|
||||
|
||||
this.show_item_wise_taxes();
|
||||
},
|
||||
|
||||
initialize_taxes: function() {
|
||||
var me = this;
|
||||
$.each(this.frm.tax_doclist, function(i, tax) {
|
||||
tax.item_wise_tax_detail = {};
|
||||
$.each(["tax_amount", "total",
|
||||
"tax_amount_for_current_item", "grand_total_for_current_item",
|
||||
"tax_fraction_for_current_item", "grand_total_fraction_for_current_item"],
|
||||
function(i, fieldname) { tax[fieldname] = 0.0 });
|
||||
|
||||
me.validate_on_previous_row(tax);
|
||||
me.validate_inclusive_tax(tax);
|
||||
wn.model.round_floats_in(tax);
|
||||
});
|
||||
},
|
||||
|
||||
calculate_taxes: function() {
|
||||
var me = this;
|
||||
|
||||
$.each(this.frm.item_doclist, function(n, item) {
|
||||
var item_tax_map = me._load_item_tax_rate(item.item_tax_rate);
|
||||
|
||||
$.each(me.frm.tax_doclist, function(i, tax) {
|
||||
// tax_amount represents the amount of tax for the current step
|
||||
var current_tax_amount = me.get_current_tax_amount(item, tax, item_tax_map);
|
||||
|
||||
me.set_item_tax_amount && me.set_item_tax_amount(item, tax, current_tax_amount);
|
||||
|
||||
// case when net total is 0 but there is an actual type charge
|
||||
// in this case add the actual amount to tax.tax_amount
|
||||
// and tax.grand_total_for_current_item for the first such iteration
|
||||
if(tax.charge_type == "Actual" &&
|
||||
!(current_tax_amount || me.frm.doc.net_total || tax.tax_amount)) {
|
||||
var zero_net_total_adjustment = flt(tax.rate, precision("tax_amount", tax));
|
||||
current_tax_amount += zero_net_total_adjustment;
|
||||
}
|
||||
|
||||
// store tax_amount for current item as it will be used for
|
||||
// charge type = 'On Previous Row Amount'
|
||||
tax.tax_amount_for_current_item = current_tax_amount;
|
||||
|
||||
// accumulate tax amount into tax.tax_amount
|
||||
tax.tax_amount += current_tax_amount;
|
||||
|
||||
// for buying
|
||||
if(tax.category) {
|
||||
// if just for valuation, do not add the tax amount in total
|
||||
// hence, setting it as 0 for further steps
|
||||
current_tax_amount = (tax.category == "Valuation") ? 0.0 : current_tax_amount;
|
||||
|
||||
current_tax_amount *= (tax.add_deduct_tax == "Deduct") ? -1.0 : 1.0;
|
||||
}
|
||||
|
||||
// Calculate tax.total viz. grand total till that step
|
||||
// note: grand_total_for_current_item contains the contribution of
|
||||
// item's amount, previously applied tax and the current tax on that item
|
||||
if(i==0) {
|
||||
tax.grand_total_for_current_item = flt(item.amount + current_tax_amount,
|
||||
precision("total", tax));
|
||||
} else {
|
||||
tax.grand_total_for_current_item =
|
||||
flt(me.frm.tax_doclist[i-1].grand_total_for_current_item + current_tax_amount,
|
||||
precision("total", tax));
|
||||
}
|
||||
|
||||
// in tax.total, accumulate grand total for each item
|
||||
tax.total += tax.grand_total_for_current_item;
|
||||
});
|
||||
});
|
||||
},
|
||||
|
||||
get_current_tax_amount: function(item, tax, item_tax_map) {
|
||||
var tax_rate = this._get_tax_rate(tax, item_tax_map);
|
||||
var current_tax_amount = 0.0;
|
||||
|
||||
if(tax.charge_type == "Actual") {
|
||||
// distribute the tax amount proportionally to each item row
|
||||
var actual = flt(tax.rate, precision("tax_amount", tax));
|
||||
current_tax_amount = this.frm.doc.net_total ?
|
||||
((item.amount / this.frm.doc.net_total) * actual) :
|
||||
0.0;
|
||||
|
||||
} else if(tax.charge_type == "On Net Total") {
|
||||
current_tax_amount = (tax_rate / 100.0) * item.amount;
|
||||
|
||||
} else if(tax.charge_type == "On Previous Row Amount") {
|
||||
current_tax_amount = (tax_rate / 100.0) *
|
||||
this.frm.tax_doclist[cint(tax.row_id) - 1].tax_amount_for_current_item;
|
||||
|
||||
} else if(tax.charge_type == "On Previous Row Total") {
|
||||
current_tax_amount = (tax_rate / 100.0) *
|
||||
this.frm.tax_doclist[cint(tax.row_id) - 1].grand_total_for_current_item;
|
||||
|
||||
}
|
||||
|
||||
current_tax_amount = flt(current_tax_amount, precision("tax_amount", tax));
|
||||
|
||||
// store tax breakup for each item
|
||||
tax.item_wise_tax_detail[item.item_code || item.item_name] = [tax_rate, current_tax_amount];
|
||||
|
||||
return current_tax_amount;
|
||||
},
|
||||
|
||||
_cleanup: function() {
|
||||
$.each(this.frm.tax_doclist, function(i, tax) {
|
||||
$.each(["tax_amount_for_current_item", "grand_total_for_current_item",
|
||||
"tax_fraction_for_current_item", "grand_total_fraction_for_current_item"],
|
||||
function(i, fieldname) { delete tax[fieldname]; });
|
||||
|
||||
tax.item_wise_tax_detail = JSON.stringify(tax.item_wise_tax_detail);
|
||||
});
|
||||
},
|
||||
|
||||
calculate_total_advance: function(parenttype, advance_parentfield) {
|
||||
if(this.frm.doc.doctype == parenttype && this.frm.doc.docstatus < 2) {
|
||||
var advance_doclist = wn.model.get_doclist(this.frm.doc.doctype, this.frm.doc.name,
|
||||
{parentfield: advance_parentfield});
|
||||
this.frm.doc.total_advance = flt(wn.utils.sum(
|
||||
$.map(advance_doclist, function(adv) { return adv.allocated_amount })
|
||||
), precision("total_advance"));
|
||||
|
||||
this.calculate_outstanding_amount();
|
||||
}
|
||||
},
|
||||
|
||||
_set_in_company_currency: function(item, print_field, base_field) {
|
||||
// set values in base currency
|
||||
item[base_field] = flt(item[print_field] * this.frm.doc.conversion_rate,
|
||||
precision(base_field, item));
|
||||
},
|
||||
|
||||
get_terms: function() {
|
||||
var me = this;
|
||||
if(this.frm.doc.tc_name) {
|
||||
this.frm.call({
|
||||
method: "webnotes.client.get_value",
|
||||
args: {
|
||||
doctype: "Terms and Conditions",
|
||||
fieldname: "terms",
|
||||
filters: { name: this.frm.doc.tc_name },
|
||||
},
|
||||
});
|
||||
}
|
||||
},
|
||||
});
|
||||
@@ -13,8 +13,7 @@
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
wn.provide('erpnext.utils');
|
||||
wn.provide("erpnext.utils");
|
||||
|
||||
erpnext.get_currency = function(company) {
|
||||
if(!company && cur_frm)
|
||||
@@ -23,4 +22,4 @@ erpnext.get_currency = function(company) {
|
||||
return wn.model.get(":Company", company).default_currency || wn.boot.sysdefaults.currency;
|
||||
else
|
||||
return wn.boot.sysdefaults.currency;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -15,7 +15,6 @@ erpnext.send_message = function(opts) {
|
||||
|
||||
wn.call = function(opts) {
|
||||
if(opts.btn) {
|
||||
var $spinner = $('<img src="lib/images/ui/button-load.gif">').appendTo($(opts.btn).parent())
|
||||
$(opts.btn).attr("disabled", "disabled");
|
||||
}
|
||||
|
||||
@@ -23,6 +22,8 @@ wn.call = function(opts) {
|
||||
$(opts.msg).toggle(false);
|
||||
}
|
||||
|
||||
if(!opts.args) opts.args = {};
|
||||
|
||||
// get or post?
|
||||
if(!opts.args._type) {
|
||||
opts.args._type = opts.type || "GET";
|
||||
@@ -48,10 +49,17 @@ wn.call = function(opts) {
|
||||
success: function(data) {
|
||||
if(opts.btn) {
|
||||
$(opts.btn).attr("disabled", false);
|
||||
$spinner.remove();
|
||||
}
|
||||
if(data.exc) {
|
||||
console.log(data.exc);
|
||||
if(opts.btn) {
|
||||
$(opts.btn).addClass("btn-danger");
|
||||
setTimeout(function() { $(opts.btn).removeClass("btn-danger"); }, 1000);
|
||||
}
|
||||
} else{
|
||||
if(opts.btn) {
|
||||
$(opts.btn).addClass("btn-success");
|
||||
setTimeout(function() { $(opts.btn).removeClass("btn-success"); }, 1000);
|
||||
}
|
||||
}
|
||||
if(opts.msg && data.message) {
|
||||
$(opts.msg).html(data.message).toggle(true);
|
||||
@@ -70,16 +78,14 @@ $(document).ready(function() {
|
||||
// update login
|
||||
var full_name = getCookie("full_name");
|
||||
if(full_name) {
|
||||
$("#user-tools").html(repl('<a href="profile" title="My Profile" id="user-full-name">%(full_name)s</a> | \
|
||||
<a href="account" title="My Account">My Account</a> | \
|
||||
<!--<a href="cart" title="Shopping Cart"><i class="icon-shopping-cart"></i> (%(count)s)</a> | -->\
|
||||
<a href="server.py?cmd=web_logout" title="Sign Out"><i class="icon-signout"></i></a>', {
|
||||
full_name: full_name,
|
||||
count: getCookie("cart_count") || "0"
|
||||
}));
|
||||
$("#user-tools a").tooltip({"placement":"bottom"});
|
||||
$("#user-tools").addClass("hide");
|
||||
$("#user-tools-post-login").removeClass("hide");
|
||||
$("#user-full-name").text(full_name);
|
||||
}
|
||||
})
|
||||
|
||||
$("#user-tools a").tooltip({"placement":"bottom"});
|
||||
$("#user-tools-post-login a").tooltip({"placement":"bottom"});
|
||||
});
|
||||
|
||||
// Utility functions
|
||||
|
||||
@@ -100,6 +106,12 @@ function get_url_arg(name) {
|
||||
return decodeURIComponent(results[1]);
|
||||
}
|
||||
|
||||
function make_query_string(obj) {
|
||||
var query_params = [];
|
||||
$.each(obj, function(k, v) { query_params.push(encodeURIComponent(k) + "=" + encodeURIComponent(v)); });
|
||||
return "?" + query_params.join("&");
|
||||
}
|
||||
|
||||
function repl(s, dict) {
|
||||
if(s==null)return '';
|
||||
for(key in dict) {
|
||||
@@ -162,3 +174,34 @@ if (typeof Array.prototype.map !== "function") {
|
||||
return a;
|
||||
};
|
||||
}
|
||||
|
||||
// shopping cart
|
||||
if(!wn.cart) wn.cart = {};
|
||||
var full_name = getCookie("full_name");
|
||||
|
||||
$.extend(wn.cart, {
|
||||
update_cart: function(opts) {
|
||||
if(!full_name) {
|
||||
if(localStorage) {
|
||||
localStorage.setItem("last_visited", window.location.pathname.slice(1));
|
||||
localStorage.setItem("pending_add_to_cart", opts.item_code);
|
||||
}
|
||||
window.location.href = "login";
|
||||
} else {
|
||||
wn.call({
|
||||
type: "POST",
|
||||
method: "website.helpers.cart.update_cart",
|
||||
args: {
|
||||
item_code: opts.item_code,
|
||||
qty: opts.qty,
|
||||
with_doclist: opts.with_doclist
|
||||
},
|
||||
btn: opts.btn,
|
||||
callback: function(r) {
|
||||
if(opts.callback)
|
||||
opts.callback(r);
|
||||
}
|
||||
});
|
||||
}
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user