From fdbb539a10d6a9782acc48f0722fb7605cb806cf Mon Sep 17 00:00:00 2001 From: Luiz Costa Date: Mon, 3 Jun 2024 11:38:16 +0100 Subject: [PATCH] fix translation variable --- msp_remoteadmin/public/js/msp_remote.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/msp_remoteadmin/public/js/msp_remote.js b/msp_remoteadmin/public/js/msp_remote.js index 106d930..9e92138 100644 --- a/msp_remoteadmin/public/js/msp_remote.js +++ b/msp_remoteadmin/public/js/msp_remote.js @@ -3,11 +3,11 @@ frappe.ui.form.on('IT Object', { if (frm.doc.link) { frm.add_custom_button(__('RDP'), function () { connect_remote(frm, 'RDP'); - }, '__("Connect")'); + }, __("Connect")); frm.add_custom_button(__('SSH'), function () { connect_remote(frm, 'SSH'); - }, '__("Connect")'); + }, __("Connect")); } }