mirror of
https://github.com/frappe/erpnext.git
synced 2026-09-17 02:26:33 +00:00
fix: Add missing translation function (#22813)
* fix: Add missing translation function Add missing translation function * fix: Add missing function for translation * fix: Add missing translation function * fix: Add missing translation function
This commit is contained in:
@@ -213,7 +213,7 @@ frappe.ui.form.on('Payroll Entry', {
|
||||
},
|
||||
doc: frm.doc,
|
||||
freeze: true,
|
||||
freeze_message: 'Validating Employee Attendance...'
|
||||
freeze_message: __('Validating Employee Attendance...')
|
||||
});
|
||||
}else{
|
||||
frm.fields_dict.attendance_detail_html.html("");
|
||||
@@ -237,7 +237,7 @@ const submit_salary_slip = function (frm) {
|
||||
callback: function() {frm.events.refresh(frm);},
|
||||
doc: frm.doc,
|
||||
freeze: true,
|
||||
freeze_message: 'Submitting Salary Slips and creating Journal Entry...'
|
||||
freeze_message: __('Submitting Salary Slips and creating Journal Entry...')
|
||||
});
|
||||
},
|
||||
function() {
|
||||
|
||||
Reference in New Issue
Block a user