diff --git a/frappe/public/js/frappe/ui/sort_selector.html b/frappe/public/js/frappe/ui/sort_selector.html index 6f79f986a1..4e1945c46c 100644 --- a/frappe/public/js/frappe/ui/sort_selector.html +++ b/frappe/public/js/frappe/ui/sort_selector.html @@ -2,7 +2,7 @@
`; @@ -24,10 +24,12 @@ frappe.dashboard_utils = { if (filter.fieldnames) { options_html = filter.options.map((option, i) => + // TODO: Make option translatable - be careful, since the text of the a tag is later used to perform some action `
  • ${option}
  • `).join(''); } else { + // TODO: Make option translatable - be careful, since the text of the a tag is later used to perform some action options_html = filter.options.map( option => `
  • ${option}
  • `).join(''); } diff --git a/frappe/public/js/frappe/views/kanban/kanban_column.html b/frappe/public/js/frappe/views/kanban/kanban_column.html index 9c9f1eede0..5e6b6e1e7b 100644 --- a/frappe/public/js/frappe/views/kanban/kanban_column.html +++ b/frappe/public/js/frappe/views/kanban/kanban_column.html @@ -17,7 +17,7 @@
    - + {{ __("Add " + doctype) }} + + {{ __("Add {0}", [__(doctype)]) }}