Skip to content

Commit 954205e

Browse files
committed
fix: enhance localization for app titles in Apps Switcher
- Wrapped app titles in translation function to ensure proper localization in the Apps Switcher component. - Improved consistency in displaying app titles across the UI.
1 parent 9e4680a commit 954205e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

frappe/public/js/frappe/ui/apps_switcher.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ frappe.ui.AppsSwitcher = class AppsSwitcher {
5757
alt="${__("App Logo")}"
5858
>
5959
</div>
60-
<span class="app-item-title">${app.app_title}</span>
60+
<span class="app-item-title">${__(app.app_title)}</span>
6161
</a>
6262
</div>`).appendTo(this.app_switcher_menu);
6363
}
@@ -86,7 +86,7 @@ frappe.ui.AppsSwitcher = class AppsSwitcher {
8686
alt="${__("App Logo")}"
8787
>
8888
</div>
89-
<span class="app-item-title">${app.app_title}</span>
89+
<span class="app-item-title">${__(app.app_title)}</span>
9090
</a>
9191
</div>`).prependTo(this.app_switcher_menu);
9292
}

0 commit comments

Comments
 (0)