I satisfy with copy option in contextmenu of hansontable but my users would like to see translated name for this item('копировать'). Is any simple way to rename a contextmenu item in handsontable?
In order to rename the items in your context menu, you need to customize it as described in the documentation.
Following their example, you need to use the parameter 'name' of the "copy" item :
hot3.updateSettings({
contextMenu: {
items: {
"copy": {name: 'копировать'},
}
}
})
You cand find an example here.