Browse Source

fix: Make strings translatable (#12877)

Make strings translatable.
version-14
Ernesto Ruiz 4 years ago
committed by Suraj Shetty
parent
commit
1d98651976
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      frappe/desk/doctype/notification_settings/notification_settings.js

+ 1
- 1
frappe/desk/doctype/notification_settings/notification_settings.js View File

@@ -19,7 +19,7 @@ frappe.ui.form.on('Notification Settings', {

refresh: (frm) => {
if (frappe.user.has_role('System Manager')) {
frm.add_custom_button('Go to Notification Settings List', () => {
frm.add_custom_button(__('Go to Notification Settings List'), () => {
frappe.set_route('List', 'Notification Settings');
});
}


Loading…
Cancel
Save