diff --git a/dictionaries/ui/application/links/en.dictionary.itop.links.php b/dictionaries/ui/application/links/en.dictionary.itop.links.php index cf86b1fd2..17694e155 100644 --- a/dictionaries/ui/application/links/en.dictionary.itop.links.php +++ b/dictionaries/ui/application/links/en.dictionary.itop.links.php @@ -25,6 +25,8 @@ Dict::Add('EN US', 'English', 'English', array( 'UI:Links:ActionRow:Delete' => 'Delete', 'UI:Links:ActionRow:Delete+' => 'Delete this object', 'UI:Links:ActionRow:Delete:Confirmation' => 'Do you really want to delete {item} from current object ?', + 'UI:Links:ActionRow:Modify' => 'Modify', + 'UI:Links:ActionRow:Modify+' => 'Modify this object', 'UI:Links:ActionRow:Modify:Modal:Title' => 'Modify a link', 'UI:Links:New:Modal:Title' => 'Creation of a link', 'UI:Links:New:Button:Tooltip' => 'Add a new link', diff --git a/sources/Application/UI/Links/Indirect/BlockIndirectLinksViewTable.php b/sources/Application/UI/Links/Indirect/BlockIndirectLinksViewTable.php index d32abbfcc..ed3b8b5c3 100644 --- a/sources/Application/UI/Links/Indirect/BlockIndirectLinksViewTable.php +++ b/sources/Application/UI/Links/Indirect/BlockIndirectLinksViewTable.php @@ -81,7 +81,8 @@ class BlockIndirectLinksViewTable extends AbstractBlockLinksViewTable ); $aRowActions[] = array( - 'tooltip' => 'UI:Links:ActionRow:Modify', + 'label' => 'UI:Links:ActionRow:Modify', + 'tooltip' => 'UI:Links:ActionRow:Modify+', 'icon_classes' => 'fas fa-pen', 'js_row_action' => "LinkSetWorker.ModifyLinkedObject('{$this->oAttDef->GetLinkedClass()}', aRowData['Link/_key_/raw'], '{$this->GetTableId()}');", );