Skip to content

Commit

Permalink
chore(context-pad): user friendly titles
Browse files Browse the repository at this point in the history
  • Loading branch information
smbea committed Jan 17, 2024
1 parent 7416c10 commit 5cadca9
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -222,14 +222,15 @@ ContextPadProvider.prototype.getContextPadEntries = function(element) {
assign(actions, {
'append.text-annotation': appendAction(
'dmn:TextAnnotation',
'dmn-icon-text-annotation'
'dmn-icon-text-annotation',
translate('Add text annotation')
),

'connect': {
group: 'connect',
className: 'dmn-icon-connection-multi',
title: translate(
'Connect using authority/information/knowledge requirement or association'
'Connect to other element'
),
action: {
click: startConnect,
Expand All @@ -245,7 +246,7 @@ ContextPadProvider.prototype.getContextPadEntries = function(element) {
group: 'connect',
className: 'dmn-icon-connection-multi',
title: translate(
'Connect using association'
'Connect to other element'
),
action: {
click: startConnect,
Expand Down Expand Up @@ -292,7 +293,7 @@ ContextPadProvider.prototype.getContextPadEntries = function(element) {
'delete': {
group: 'edit',
className: 'dmn-icon-trash',
title: translate('Remove'),
title: translate('Delete'),
action: {
click: removeElement
}
Expand Down

0 comments on commit 5cadca9

Please sign in to comment.