@@ -1478,7 +1478,7 @@ public function addFilters() {
1478
1478
default :
1479
1479
// default type is string
1480
1480
$ this ->addElement ('select ' , "{$ fieldName }_op " , ts ('Operator: ' ), $ operations ,
1481
- ['onchange ' => "return showHideMaxMinVal( ' $ fieldName', this.value ); " ]
1481
+ ['onchange ' => "return showHideMaxMinVal( ' $ fieldName', this.value ); " , ' title ' => ts ( ' %1 Filter Operator ' , [ 1 => $ field [ ' title ' ]]) ]
1482
1482
);
1483
1483
// we need text box for value input
1484
1484
$ this ->add ('text ' , "{$ fieldName }_value " , NULL , ['class ' => 'huge ' ]);
@@ -1695,8 +1695,8 @@ public function addOrderBys() {
1695
1695
'ASC ' => ts ('Ascending ' ),
1696
1696
'DESC ' => ts ('Descending ' ),
1697
1697
]);
1698
- $ this ->addElement ('checkbox ' , "order_bys[ {$ i }][section] " , ts ('Order by Section ' ), FALSE , ['id ' => "order_by_section_ $ i " ]);
1699
- $ this ->addElement ('checkbox ' , "order_bys[ {$ i }][pageBreak] " , ts ('Page Break ' ), FALSE , ['id ' => "order_by_pagebreak_ $ i " ]);
1698
+ $ this ->addElement ('checkbox ' , "order_bys[ {$ i }][section] " , ts ('Order by Section ' ), FALSE , ['id ' => "order_by_section_ $ i " , ' title ' => ts ( ' Order by Section %1 ' , [ 1 => $ i ]) ]);
1699
+ $ this ->addElement ('checkbox ' , "order_bys[ {$ i }][pageBreak] " , ts ('Page Break ' ), FALSE , ['id ' => "order_by_pagebreak_ $ i " , ' title ' => ts ( ' Page Break %1 ' , [ 1 => $ i ]) ]);
1700
1700
}
1701
1701
}
1702
1702
}
@@ -1723,7 +1723,7 @@ public function buildInstanceAndButtons() {
1723
1723
$ this ->addElement ('select ' , 'groups ' , ts ('Group ' ),
1724
1724
['' => ts ('Add Contacts to Group ' )] +
1725
1725
CRM_Core_PseudoConstant::nestedGroup (),
1726
- ['class ' => 'crm-select2 crm-action-menu fa-plus huge ' ]
1726
+ ['class ' => 'crm-select2 crm-action-menu fa-plus huge ' , ' title ' => ts ( ' Add Contacts to Group ' ) ]
1727
1727
);
1728
1728
$ this ->assign ('group ' , TRUE );
1729
1729
}
0 commit comments