fix translation variable

This commit is contained in:
Luiz Costa 2024-06-03 11:38:16 +01:00
parent 7d5a11d606
commit fdbb539a10

View File

@ -3,11 +3,11 @@ frappe.ui.form.on('IT Object', {
if (frm.doc.link) { if (frm.doc.link) {
frm.add_custom_button(__('RDP'), function () { frm.add_custom_button(__('RDP'), function () {
connect_remote(frm, 'RDP'); connect_remote(frm, 'RDP');
}, '__("Connect")'); }, __("Connect"));
frm.add_custom_button(__('SSH'), function () { frm.add_custom_button(__('SSH'), function () {
connect_remote(frm, 'SSH'); connect_remote(frm, 'SSH');
}, '__("Connect")'); }, __("Connect"));
} }
} }