From bebda873f6bd9be94606d2a8dd12116c9d815805 Mon Sep 17 00:00:00 2001 From: sokumon Date: Sun, 7 Dec 2025 20:48:08 +0530 Subject: [PATCH] fix: translate standard sidebar items --- frappe/public/js/frappe/ui/sidebar/sidebar.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frappe/public/js/frappe/ui/sidebar/sidebar.js b/frappe/public/js/frappe/ui/sidebar/sidebar.js index af17fa3b06..a101dfddf4 100644 --- a/frappe/public/js/frappe/ui/sidebar/sidebar.js +++ b/frappe/public/js/frappe/ui/sidebar/sidebar.js @@ -240,7 +240,7 @@ frappe.ui.Sidebar = class Sidebar { this.standard_items = []; if (!frappe.is_mobile()) { this.standard_items.push({ - label: "Search", + label: __("Search"), icon: "search", type: "Button", id: "navbar-modal-search", @@ -251,7 +251,7 @@ frappe.ui.Sidebar = class Sidebar { }); } this.standard_items.push({ - label: "Notification", + label: __("Notification"), icon: "bell", type: "Button", class: "sidebar-notification hidden",