Skip to content
Snippets Groups Projects
Commit ccc0db8c authored by Kurund Jalmi's avatar Kurund Jalmi
Browse files

fixed wrong usage of ts(), CRM-13329

----------------------------------------
* CRM-13329: Add 2 more rows to the Badge Layout form (for a total of 6 rows)
  http://issues.civicrm.org/jira/browse/CRM-13329
parent f5ea9580
No related branches found
No related tags found
No related merge requests found
......@@ -195,8 +195,8 @@ class CRM_Core_BAO_LabelFormat extends CRM_Core_DAO_OptionValue {
*/
public static function getFontSizes() {
$fontSizes = array();
for ($i=6; $i<=60; $i++) {
$fontSizes[$i] = ts('%1 pt', $i);
for ($i = 6; $i <= 60; $i++) {
$fontSizes[$i] = ts('%1 pt', array(1 => $i));
}
return $fontSizes;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment