Small fixes in translatios of Assign To dialog
This commit is contained in:
parent
f0d28480c8
commit
7554ff7dd3
1 changed files with 5 additions and 1 deletions
|
|
@ -169,7 +169,11 @@ frappe.ui.to_do_dialog = function(opts){
|
|||
label:__("Notify by Email"), "default":1},
|
||||
{fieldtype: 'Column Break'},
|
||||
{fieldtype:'Select', fieldname:'priority', label: __("Priority"),
|
||||
options:'Low\nMedium\nHigh', 'default':'Medium'},
|
||||
options:[
|
||||
{value: 'Low', label: __('Low')},
|
||||
{value:'Medium', label: __('Medium')},
|
||||
{value: 'High', label: __('High')}],
|
||||
'default':'Medium'},
|
||||
],
|
||||
primary_action: function() { frappe.ui.add_assignment(opts, dialog); },
|
||||
primary_action_label: __("Add")
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue